Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- PlatformRegistry
- Optimization enabled
- true
- Compiler version
- v0.8.19+commit.7dd6d404
- Optimization runs
- 200
- EVM Version
- default
- Verified at
- 2024-05-02T01:45:02.216281Z
Constructor Arguments
0x000000000000000000000000307e7a9713dbf6f19a2d2a2b670544f4791c4ec2
Arg [0] (address) : 0x307e7a9713dbf6f19a2d2a2b670544f4791c4ec2
contracts/sbinft/market/v1/platform/PlatformRegistry.sol
// SPDX-License-Identifier: MITpragma solidity ^0.8.17;import "@sbinft/contracts/upgradeable/access/AdminUpgradeable.sol";import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";import "@openzeppelin/contracts-upgradeable/interfaces/IERC165Upgradeable.sol";import {EIP712Upgradeable} from "@openzeppelin/contracts-upgradeable/utils/cryptography/draft-EIP712Upgradeable.sol";import "@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol";import "@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol";import "@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol";import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";import "contracts/sbinft/market/v1/interface/IPlatformRegistry.sol";/*** @dev SBINFT Platform Registry*/contract PlatformRegistry isInitializable,IPlatformRegistry,EIP712Upgradeable,ERC2771ContextUpgradeable,AdminUpgradeable,ERC165Upgradeable,UUPSUpgradeable{using AddressUpgradeable for address;using ECDSAUpgradeable for bytes32;// Fired when PlatformFeeReceiver is changedevent PlatformFeeReceiverUpdated(address indexed _pfFeeReceiver);// Address of PlatformFeeReceiveraddress payable private _pfFeeReceiver;// Fired when PartnerFeeReceiverUpdated is changedevent PartnerFeeReceiverUpdated(address indexed collection,address indexed partner);
@openzeppelin/contracts-upgradeable/interfaces/IERC165Upgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)pragma solidity ^0.8.0;import "../utils/introspection/IERC165Upgradeable.sol";
@openzeppelin/contracts-upgradeable/interfaces/draft-IERC1822Upgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)pragma solidity ^0.8.0;/*** @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified* proxy whose upgrades are fully controlled by the current implementation.*/interface IERC1822ProxiableUpgradeable {/*** @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation* address.** IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks* bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this* function revert if invoked through a proxy.*/function proxiableUUID() external view returns (bytes32);}
@openzeppelin/contracts-upgradeable/metatx/ERC2771ContextUpgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (metatx/ERC2771Context.sol)pragma solidity ^0.8.9;import "../utils/ContextUpgradeable.sol";import "../proxy/utils/Initializable.sol";/*** @dev Context variant with ERC2771 support.*/abstract contract ERC2771ContextUpgradeable is Initializable, ContextUpgradeable {/// @custom:oz-upgrades-unsafe-allow state-variable-immutableaddress private immutable _trustedForwarder;/// @custom:oz-upgrades-unsafe-allow constructorconstructor(address trustedForwarder) {_trustedForwarder = trustedForwarder;}function isTrustedForwarder(address forwarder) public view virtual returns (bool) {return forwarder == _trustedForwarder;}function _msgSender() internal view virtual override returns (address sender) {if (isTrustedForwarder(msg.sender)) {// The assembly code is more direct than the Solidity version using `abi.decode`./// @solidity memory-safe-assemblyassembly {sender := shr(96, calldataload(sub(calldatasize(), 20)))}} else {return super._msgSender();}}function _msgData() internal view virtual override returns (bytes calldata) {if (isTrustedForwarder(msg.sender)) {return msg.data[:msg.data.length - 20];} else {return super._msgData();
@openzeppelin/contracts-upgradeable/proxy/ERC1967/ERC1967UpgradeUpgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (proxy/ERC1967/ERC1967Upgrade.sol)pragma solidity ^0.8.2;import "../beacon/IBeaconUpgradeable.sol";import "../../interfaces/draft-IERC1822Upgradeable.sol";import "../../utils/AddressUpgradeable.sol";import "../../utils/StorageSlotUpgradeable.sol";import "../utils/Initializable.sol";/*** @dev This abstract contract provides getters and event emitting update functions for* https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.** _Available since v4.1._** @custom:oz-upgrades-unsafe-allow delegatecall*/abstract contract ERC1967UpgradeUpgradeable is Initializable {function __ERC1967Upgrade_init() internal onlyInitializing {}function __ERC1967Upgrade_init_unchained() internal onlyInitializing {}// This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;/*** @dev Storage slot with the address of the current implementation.* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is* validated in the constructor.*/bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;/*** @dev Emitted when the implementation is upgraded.*/event Upgraded(address indexed implementation);/**
@openzeppelin/contracts-upgradeable/proxy/beacon/IBeaconUpgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)pragma solidity ^0.8.0;/*** @dev This is the interface that {BeaconProxy} expects of its beacon.*/interface IBeaconUpgradeable {/*** @dev Must return an address that can be used as a delegate call target.** {BeaconProxy} will check that this address is a contract.*/function implementation() external view returns (address);}
@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol)pragma solidity ^0.8.2;import "../../utils/AddressUpgradeable.sol";/*** @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.** The initialization functions use a version number. Once a version number is used, it is consumed and cannot be* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in* case an upgrade adds a module that needs to be initialized.** For example:** [.hljs-theme-light.nopadding]* ```* contract MyToken is ERC20Upgradeable {* function initialize() initializer public {* __ERC20_init("MyToken", "MTK");* }* }* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {* function initializeV2() reinitializer(2) public {* __ERC20Permit_init("MyToken");* }* }* ```** TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.** CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.** [CAUTION]* ====
@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (proxy/utils/UUPSUpgradeable.sol)pragma solidity ^0.8.0;import "../../interfaces/draft-IERC1822Upgradeable.sol";import "../ERC1967/ERC1967UpgradeUpgradeable.sol";import "./Initializable.sol";/*** @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an* {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.** A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is* reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing* `UUPSUpgradeable` with a custom implementation of upgrades.** The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.** _Available since v4.1._*/abstract contract UUPSUpgradeable is Initializable, IERC1822ProxiableUpgradeable, ERC1967UpgradeUpgradeable {function __UUPSUpgradeable_init() internal onlyInitializing {}function __UUPSUpgradeable_init_unchained() internal onlyInitializing {}/// @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignmentaddress private immutable __self = address(this);/*** @dev Check that the execution is being performed through a delegatecall call and that the execution context is* a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case* for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a* function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to* fail.*/modifier onlyProxy() {require(address(this) != __self, "Function must be called through delegatecall");require(_getImplementation() == __self, "Function must be called through active proxy");_;
@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @dev Collection of functions related to the address type*/library AddressUpgradeable {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed* ====** [IMPORTANT]* ====* You shouldn't rely on `isContract` to protect against flash loan attacks!** Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract* constructor.* ====*/function isContract(address account) internal view returns (bool) {// This method relies on extcodesize/address.code.length, which returns 0// for contracts in construction, since the code is only stored at the end// of the constructor execution.return account.code.length > 0;
@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.0;import "../proxy/utils/Initializable.sol";/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract ContextUpgradeable is Initializable {function __Context_init() internal onlyInitializing {}function __Context_init_unchained() internal onlyInitializing {}function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}/*** @dev This empty reserved space is put in place to allow future versions to add new* variables without shifting down storage in the inheritance chain.* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps*/uint256[50] private __gap;}
@openzeppelin/contracts-upgradeable/utils/StorageSlotUpgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol)pragma solidity ^0.8.0;/*** @dev Library for reading and writing primitive types to specific storage slots.** Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.* This library helps with reading and writing to such slots without the need for inline assembly.** The functions in this library return Slot structs that contain a `value` member that can be used to read or write.** Example usage to set ERC1967 implementation slot:* ```* contract ERC1967 {* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;** function _getImplementation() internal view returns (address) {* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;* }** function _setImplementation(address newImplementation) internal {* require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;* }* }* ```** _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._*/library StorageSlotUpgradeable {struct AddressSlot {address value;}struct BooleanSlot {bool value;}struct Bytes32Slot {
@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)pragma solidity ^0.8.0;/*** @dev String operations.*/library StringsUpgradeable {bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";uint8 private constant _ADDRESS_LENGTH = 20;/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {// Inspired by OraclizeAPI's implementation - MIT licence// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.solif (value == 0) {return "0";}uint256 temp = value;uint256 digits;while (temp != 0) {digits++;temp /= 10;}bytes memory buffer = new bytes(digits);while (value != 0) {digits -= 1;buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));value /= 10;}return string(buffer);}/*** @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.*/function toHexString(uint256 value) internal pure returns (string memory) {
@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)pragma solidity ^0.8.0;import "../StringsUpgradeable.sol";/*** @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.** These functions can be used to verify that a message was signed by the holder* of the private keys of a given address.*/library ECDSAUpgradeable {enum RecoverError {NoError,InvalidSignature,InvalidSignatureLength,InvalidSignatureS,InvalidSignatureV}function _throwError(RecoverError error) private pure {if (error == RecoverError.NoError) {return; // no error: do nothing} else if (error == RecoverError.InvalidSignature) {revert("ECDSA: invalid signature");} else if (error == RecoverError.InvalidSignatureLength) {revert("ECDSA: invalid signature length");} else if (error == RecoverError.InvalidSignatureS) {revert("ECDSA: invalid signature 's' value");} else if (error == RecoverError.InvalidSignatureV) {revert("ECDSA: invalid signature 'v' value");}}/*** @dev Returns the address that signed a hashed message (`hash`) with* `signature` or error string. This address can then be used for verification purposes.** The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
@openzeppelin/contracts-upgradeable/utils/cryptography/draft-EIP712Upgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)pragma solidity ^0.8.0;import "./ECDSAUpgradeable.sol";import "../../proxy/utils/Initializable.sol";/*** @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.** The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,* thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding* they need in their contracts using a combination of `abi.encode` and `keccak256`.** This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA* ({_hashTypedDataV4}).** The implementation of the domain separator was designed to be as efficient as possible while still properly updating* the chain id to protect against replay attacks on an eventual fork of the chain.** NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].** _Available since v3.4._** @custom:storage-size 52*/abstract contract EIP712Upgradeable is Initializable {/* solhint-disable var-name-mixedcase */bytes32 private _HASHED_NAME;bytes32 private _HASHED_VERSION;bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");/* solhint-enable var-name-mixedcase *//*** @dev Initializes the domain separator and parameter caches.** The meaning of `name` and `version` is specified in
@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)pragma solidity ^0.8.0;import "./IERC165Upgradeable.sol";import "../../proxy/utils/Initializable.sol";/*** @dev Implementation of the {IERC165} interface.** Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check* for the additional interface id that will be supported. For example:** ```solidity* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);* }* ```** Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.*/abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable {function __ERC165_init() internal onlyInitializing {}function __ERC165_init_unchained() internal onlyInitializing {}/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {return interfaceId == type(IERC165Upgradeable).interfaceId;}/*** @dev This empty reserved space is put in place to allow future versions to add new* variables without shifting down storage in the inheritance chain.* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps*/uint256[50] private __gap;
@openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC165 standard, as defined in the* https://eips.ethereum.org/EIPS/eip-165[EIP].** Implementers can declare support of contract interfaces, which can then be* queried by others ({ERC165Checker}).** For an implementation, see {ERC165}.*/interface IERC165Upgradeable {/*** @dev Returns true if this contract implements the interface defined by* `interfaceId`. See the corresponding* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]* to learn more about how these ids are created.** This function call must use less than 30 000 gas.*/function supportsInterface(bytes4 interfaceId) external view returns (bool);}
@sbinft/contracts/upgradeable/access/AdminUpgradeable.sol
//SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol";/*** @notice deprecated use AdminUpgradeableV2* @title AdminUpgradeable Contract to manage access** @author SBINFT Co., Ltd.*/abstract contract AdminUpgradeable is ContextUpgradeable {event AdminAdded(address);event AdminRemoved(address);/*** @dev 管理者のマッピング。管理者でないならばfalseを返す。*/mapping(address => bool) private _admin;function __Admin_init() internal onlyInitializing {__Context_init();// 初期化時にデプロイ者を管理者に追加する。_addAdmin(_msgSender());}/*** @dev 管理者を複数追加*/function addAdmin(address[] calldata newAdmin) public virtual onlyAdmin {for (uint256 idx = 0; idx < newAdmin.length; idx++) {_addAdmin(newAdmin[idx]);}}/*** @dev 管理者を一人追加*/function addAdmin(address newAdmin) public virtual onlyAdmin {_addAdmin(newAdmin);}
contracts/sbinft/market/v1/interface/IPlatformRegistry.sol
// SPDX-License-Identifier: MITpragma solidity ^0.8.17;import "@openzeppelin/contracts-upgradeable/interfaces/IERC165Upgradeable.sol";/*** @title SBINFT Platform Registry*/interface IPlatformRegistry is IERC165Upgradeable {/*** @dev Update to new PlatformFeeRateLowerLimit** @param _new new PlatformFeeRateLowerLimit*/function updatePlatformFeeLowerLimit(uint16 _new) external;/*** @dev Update to new PlatformFeeReceiver** @param _new new PlatformFeeReceiver*/function updatePlatformFeeReceiver(address payable _new) external;/*** @dev Update to new PartnerFeeReceiver for partner's collection** @param collection partner's collection* @param partnerFeeReceiver new partner's FeeReceiver* @param sign bytes calldata signature of platform signer*/function updatePartnerFeeReceiver(address collection,address payable partnerFeeReceiver,bytes calldata sign) external;/*** @dev Checks if partner fee receiver** @param _collection address of token
Compiler Settings
{"outputSelection":{"*":{"*":["*"],"":["*"]}},"optimizer":{"runs":200,"enabled":true},"libraries":{}}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"trustedForwarder","internalType":"address"}]},{"type":"event","name":"AdminAdded","inputs":[{"type":"address","name":"","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"AdminChanged","inputs":[{"type":"address","name":"previousAdmin","internalType":"address","indexed":false},{"type":"address","name":"newAdmin","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"AdminRemoved","inputs":[{"type":"address","name":"","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"BeaconUpgraded","inputs":[{"type":"address","name":"beacon","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"ERC20AddedToWhitelist","inputs":[{"type":"address","name":"addedToken","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"ERC20RemovedFromWhitelist","inputs":[{"type":"address","name":"removedToken","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"ExternalPlatformFeeReceiverUpdated","inputs":[{"type":"address","name":"platformSigner","internalType":"address","indexed":true},{"type":"address","name":"partnerPf","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Initialized","inputs":[{"type":"uint8","name":"version","internalType":"uint8","indexed":false}],"anonymous":false},{"type":"event","name":"PartnerFeeReceiverUpdated","inputs":[{"type":"address","name":"collection","internalType":"address","indexed":true},{"type":"address","name":"partner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"PlatformFeeLowerRateUpdated","inputs":[{"type":"uint16","name":"pfFeelowerlimit","internalType":"uint16","indexed":false}],"anonymous":false},{"type":"event","name":"PlatformFeeReceiverUpdated","inputs":[{"type":"address","name":"_pfFeeReceiver","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"PlatformSignerAdded","inputs":[{"type":"address","name":"addedAddress","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"PlatformSignerRemoved","inputs":[{"type":"address","name":"removedAddress","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Upgraded","inputs":[{"type":"address","name":"implementation","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"__PlatformRegistry_init","inputs":[{"type":"address","name":"_pfFeeReceiver_","internalType":"address payable"},{"type":"address[]","name":"_platformSignerList","internalType":"address[]"},{"type":"address[]","name":"_whitelistERC20List","internalType":"address[]"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addAdmin","inputs":[{"type":"address[]","name":"newAdmin","internalType":"address[]"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addAdmin","inputs":[{"type":"address","name":"newAdmin","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addPlatformSigner","inputs":[{"type":"address[]","name":"_platformSignerList","internalType":"address[]"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addToERC20Whitelist","inputs":[{"type":"address[]","name":"_addTokenList","internalType":"address[]"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address payable"}],"name":"getExternalPlatformFeeReceiver","inputs":[{"type":"address","name":"_token","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address payable"}],"name":"getPartnerFeeReceiver","inputs":[{"type":"address","name":"_token","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint16","name":"","internalType":"uint16"}],"name":"getPlatformFeeRateLowerLimit","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address payable"}],"name":"getPlatformFeeReceiver","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isAdmin","inputs":[{"type":"address","name":"checkAdmin","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isPartnerFeeReceiver","inputs":[{"type":"address","name":"_collection","internalType":"address"},{"type":"address","name":"_partnerFeeReceiver","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isPlatformSigner","inputs":[{"type":"address","name":"_signer","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isTrustedForwarder","inputs":[{"type":"address","name":"forwarder","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isWhitelistedERC20","inputs":[{"type":"address","name":"_token","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"proxiableUUID","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removeAdmin","inputs":[{"type":"address","name":"admin","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removeFromERC20Whitelist","inputs":[{"type":"address[]","name":"_removeTokenList","internalType":"address[]"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removePlatformSigner","inputs":[{"type":"address[]","name":"_platformSignerList","internalType":"address[]"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"_interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateExternalPlatformFeeReceiver","inputs":[{"type":"address","name":"_externalPlatformToken","internalType":"address"},{"type":"address","name":"_partnerPfFeeReceiver","internalType":"address payable"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updatePartnerFeeReceiver","inputs":[{"type":"address","name":"collection","internalType":"address"},{"type":"address","name":"partnerFeeReceiver","internalType":"address payable"},{"type":"bytes","name":"sign","internalType":"bytes"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updatePlatformFeeLowerLimit","inputs":[{"type":"uint16","name":"_platformFeeLowerLimit","internalType":"uint16"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updatePlatformFeeReceiver","inputs":[{"type":"address","name":"_newPlatformFeeReceiver","internalType":"address payable"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"upgradeTo","inputs":[{"type":"address","name":"newImplementation","internalType":"address"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"upgradeToAndCall","inputs":[{"type":"address","name":"newImplementation","internalType":"address"},{"type":"bytes","name":"data","internalType":"bytes"}]}]
Contract Creation Code
0x60c06040523060a0523480156200001557600080fd5b50604051620025ac380380620025ac833981016040819052620000389162000118565b6001600160a01b0381166080526200004f62000056565b506200014a565b600054610100900460ff1615620000c35760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b60005460ff908116101562000116576000805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b6000602082840312156200012b57600080fd5b81516001600160a01b03811681146200014357600080fd5b9392505050565b60805160a0516124196200019360003960008181610682015281816106c2015281816108ea0152818161092a01526109bd015260008181610394015261187e01526124196000f3fe6080604052600436106101665760003560e01c8063572b6c05116100d15780639d72db521161008a578063a5366ecb11610064578063a5366ecb146104dd578063cd4a0f34146104fd578063da5f2d921461051d578063f815d6cf1461053d57600080fd5b80639d72db521461047d5780639df095641461049d5780639fac71ad146104bd57600080fd5b8063572b6c05146103775780636859c996146103c457806370480275146103fe578063707d18481461041e5780637d4bc8b71461043d5780638ef59b7c1461045d57600080fd5b806344057f631161012357806344057f631461028d5780634d4ed32c146102ad5780634f1ef286146102e75780635247385c146102fa57806352d1902d14610334578063552f41e01461035757600080fd5b806301ffc9a71461016b5780631785f53c146101a057806324d7806c146101c25780632888241b146101fb5780633659cfe61461024d5780633d0950a81461026d575b600080fd5b34801561017757600080fd5b5061018b610186366004611e65565b610561565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101c06101bb366004611ea4565b610598565b005b3480156101ce57600080fd5b5061018b6101dd366004611ea4565b6001600160a01b031660009081526099602052604090205460ff1690565b34801561020757600080fd5b50610235610216366004611ea4565b6001600160a01b03908116600090815261013560205260409020541690565b6040516001600160a01b039091168152602001610197565b34801561025957600080fd5b506101c0610268366004611ea4565b610678565b34801561027957600080fd5b506101c0610288366004611f06565b610754565b34801561029957600080fd5b506101c06102a8366004611f06565b6107ea565b3480156102b957600080fd5b5061018b6102c8366004611ea4565b6001600160a01b03166000908152610133602052604090205460ff1690565b6101c06102f5366004611f5e565b6108e0565b34801561030657600080fd5b5061018b610315366004611ea4565b6001600160a01b03166000908152610132602052604090205460ff1690565b34801561034057600080fd5b506103496109b0565b604051908152602001610197565b34801561036357600080fd5b506101c0610372366004611ea4565b610a63565b34801561038357600080fd5b5061018b610392366004611ea4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b3480156103d057600080fd5b506102356103df366004611ea4565b6001600160a01b03908116600090815261013160205260409020541690565b34801561040a57600080fd5b506101c0610419366004611ea4565b610b36565b34801561042a57600080fd5b50610130546001600160a01b0316610235565b34801561044957600080fd5b506101c0610458366004611f06565b610b84565b34801561046957600080fd5b506101c0610478366004612022565b610c91565b34801561048957600080fd5b506101c0610498366004612046565b610d22565b3480156104a957600080fd5b506101c06104b83660046120d8565b610f67565b3480156104c957600080fd5b5061018b6104d836600461215b565b611104565b3480156104e957600080fd5b506101c06104f8366004611f06565b6111b2565b34801561050957600080fd5b506101c0610518366004611f06565b6112a5565b34801561052957600080fd5b506101c061053836600461215b565b611398565b34801561054957600080fd5b506101345460405161ffff9091168152602001610197565b60006001600160e01b0319821663042eca1d60e51b148061059257506301ffc9a760e01b6001600160e01b03198316145b92915050565b609960006105a46114bd565b6001600160a01b0316815260208101919091526040016000205460ff166105e65760405162461bcd60e51b81526004016105dd90612194565b60405180910390fd5b6001600160a01b03811660009081526099602052604090205460ff1661066c5760405162461bcd60e51b815260206004820152603560248201527f41646d696e3a72656d6f766541646d696e20747279696e6720746f2072656d6f6044820152743b32903737b71032bc34b9ba34b7339020b236b4b760591b60648201526084016105dd565b610675816114cc565b50565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001630036106c05760405162461bcd60e51b81526004016105dd906121da565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661070960008051602061239d833981519152546001600160a01b031690565b6001600160a01b03161461072f5760405162461bcd60e51b81526004016105dd90612226565b6107388161151d565b6040805160008082526020820190925261067591839190611562565b609960006107606114bd565b6001600160a01b0316815260208101919091526040016000205460ff166107995760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e5576107d38383838181106107b9576107b9612272565b90506020020160208101906107ce9190611ea4565b6116cd565b806107dd81612288565b91505061079c565b505050565b609960006107f66114bd565b6001600160a01b0316815260208101919091526040016000205460ff1661082f5760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e557600083838381811061084e5761084e612272565b90506020020160208101906108639190611ea4565b90506001600160a01b038116156108cd576001600160a01b03811660008181526101336020908152604091829020805460ff1916600117905590519182527f64493f6b58fecf0b5963bd190327c4b5551e5774b83eb602f868be392da8a782910160405180910390a15b50806108d881612288565b915050610832565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001630036109285760405162461bcd60e51b81526004016105dd906121da565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661097160008051602061239d833981519152546001600160a01b031690565b6001600160a01b0316146109975760405162461bcd60e51b81526004016105dd90612226565b6109a08261151d565b6109ac82826001611562565b5050565b6000306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610a505760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c000000000000000060648201526084016105dd565b5060008051602061239d83398151915290565b60996000610a6f6114bd565b6001600160a01b0316815260208101919091526040016000205460ff16610aa85760405162461bcd60e51b81526004016105dd90612194565b6001600160a01b038116610aeb5760405162461bcd60e51b815260206004820152600a602482015269503a555046523a505a4160b01b60448201526064016105dd565b61013080546001600160a01b0319166001600160a01b0383169081179091556040517f5424f6f81faafe9238c4d58ac76299338deab37460d10288e02776c68c8d5b6390600090a250565b60996000610b426114bd565b6001600160a01b0316815260208101919091526040016000205460ff16610b7b5760405162461bcd60e51b81526004016105dd90612194565b610675816116cd565b60996000610b906114bd565b6001600160a01b0316815260208101919091526040016000205460ff16610bc95760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e5576000838383818110610be857610be8612272565b9050602002016020810190610bfd9190611ea4565b90506001600160a01b03811615801590610c2057506001600160a01b0381163b15155b15610c7e576001600160a01b03811660008181526101326020908152604091829020805460ff1916600117905590519182527f45f42530e679dbd12f34bd60947483f7fc4d07a0cb66ededb2261c4206d4563a910160405180910390a15b5080610c8981612288565b915050610bcc565b60996000610c9d6114bd565b6001600160a01b0316815260208101919091526040016000205460ff16610cd65760405162461bcd60e51b81526004016105dd90612194565b610134805461ffff191661ffff83169081179091556040519081527f9b5540d1b8eea14606b74b2167809eda8828fb3cb906886fa9b42f34d78f43db906020015b60405180910390a150565b6001600160a01b0384163b610d675760405162461bcd60e51b815260206004820152600b60248201526a503a555046523a5043434160a81b60448201526064016105dd565b6001600160a01b038316610dab5760405162461bcd60e51b815260206004820152600b60248201526a503a555046523a4e505a4160a81b60448201526064016105dd565b610db66101dd6114bd565b1515600003610f0d57604080517f393608ae61d9f6d4e890b36cfab0c4641cb9cffc350d2e38e827935c783fbc1460208201526001600160a01b038087169282019290925290841660608201526000906080016040516020818303038152906040528051906020012090506000610eac84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610ea69250869150610e6b905061178b565b6040805161190160f01b6020808301919091526022820193909352604280820194909452815180820390940184526062019052815191012090565b906117c2565b9050610ed1816001600160a01b03166000908152610133602052604090205460ff1690565b610f0a5760405162461bcd60e51b815260206004820152600a602482015269503a555046523a49505360b01b60448201526064016105dd565b50505b6001600160a01b038481166000818152610131602052604080822080546001600160a01b0319169488169485179055517f589ee4ae06bae381d455f1c3ce0c6724aee594ddbcab920f9a5a504de9943d989190a350505050565b600054610100900460ff1615808015610f875750600054600160ff909116105b80610fa15750303b158015610fa1575060005460ff166001145b6110045760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016105dd565b6000805460ff191660011790558015611027576000805461ff0019166101001790555b61102f6117e6565b61103761180f565b6110916040518060400160405280601881526020017f5342494e465420506c6174666f726d2052656769737472790000000000000000815250604051806040016040528060038152602001620312e360ec1b815250611849565b6110996117e6565b6110a286610a63565b6110ac85856107ea565b6110b68383610b84565b80156110fc576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050505050565b60006001600160a01b03831661114a5760405162461bcd60e51b815260206004820152600b60248201526a503a495046523a434e5a4160a81b60448201526064016105dd565b6001600160a01b03821661118e5760405162461bcd60e51b815260206004820152600b60248201526a503a495046523a504e5a4160a81b60448201526064016105dd565b506001600160a01b0391821660009081526101316020526040902054821691161490565b609960006111be6114bd565b6001600160a01b0316815260208101919091526040016000205460ff166111f75760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e557600083838381811061121657611216612272565b905060200201602081019061122b9190611ea4565b90506001600160a01b03811615611292576001600160a01b03811660008181526101326020908152604091829020805460ff1916905590519182527f72a26be94b6f8ff29d401781a1851d009dae9befe1bfe300fabf2e03146ea763910160405180910390a15b508061129d81612288565b9150506111fa565b609960006112b16114bd565b6001600160a01b0316815260208101919091526040016000205460ff166112ea5760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e557600083838381811061130957611309612272565b905060200201602081019061131e9190611ea4565b90506001600160a01b03811615611385576001600160a01b03811660008181526101336020908152604091829020805460ff1916905590519182527f81bf64040664fa99957e018a931d568ee336fb32f976e4c36b27b331906e5167910160405180910390a15b508061139081612288565b9150506112ed565b609960006113a46114bd565b6001600160a01b0316815260208101919091526040016000205460ff166113dd5760405162461bcd60e51b81526004016105dd90612194565b6001600160a01b0382166114215760405162461bcd60e51b815260206004820152600b60248201526a413a555046523a4e505a4160a81b60448201526064016105dd565b6001600160a01b0381166114655760405162461bcd60e51b815260206004820152600b60248201526a413a555046523a4e505a4160a81b60448201526064016105dd565b6001600160a01b038281166000818152610135602052604080822080546001600160a01b0319169486169485179055517ffae5b4c04d3cf2324d5fb190022c792c8c5577d9e743cb88a04bca4aaca08a219190a35050565b60006114c761187a565b905090565b6001600160a01b038116600081815260996020908152604091829020805460ff1916905590519182527fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f9101610d17565b609960006115296114bd565b6001600160a01b0316815260208101919091526040016000205460ff166106755760405162461bcd60e51b81526004016105dd90612194565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff1615611595576107e5836118be565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156115ef575060408051601f3d908101601f191682019092526115ec918101906122af565b60015b6116525760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201526d6f6e206973206e6f74205555505360901b60648201526084016105dd565b60008051602061239d83398151915281146116c15760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f786044820152681a58589b195555525160ba1b60648201526084016105dd565b506107e583838361195a565b6001600160a01b0381166117375760405162461bcd60e51b815260206004820152602b60248201527f41646d696e3a61646441646d696e206e657741646d696e20697320746865207a60448201526a65726f206164647265737360a81b60648201526084016105dd565b6001600160a01b038116600081815260996020908152604091829020805460ff1916600117905590519182527f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e3399101610d17565b60006114c77f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6117ba60015490565b600254611985565b60008060006117d185856119cf565b915091506117de81611a14565b509392505050565b600054610100900460ff1661180d5760405162461bcd60e51b81526004016105dd906122c8565b565b600054610100900460ff166118365760405162461bcd60e51b81526004016105dd906122c8565b61183e6117e6565b61180d6107ce6114bd565b600054610100900460ff166118705760405162461bcd60e51b81526004016105dd906122c8565b6109ac8282611bca565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036118b9575060131936013560601c90565b503390565b6001600160a01b0381163b61192b5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b60648201526084016105dd565b60008051602061239d83398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b61196383611c0b565b6000825111806119705750805b156107e55761197f8383611c4b565b50505050565b6040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090505b9392505050565b6000808251604103611a055760208301516040840151606085015160001a6119f987828585611d3f565b94509450505050611a0d565b506000905060025b9250929050565b6000816004811115611a2857611a28612313565b03611a305750565b6001816004811115611a4457611a44612313565b03611a915760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016105dd565b6002816004811115611aa557611aa5612313565b03611af25760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016105dd565b6003816004811115611b0657611b06612313565b03611b5e5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016105dd565b6004816004811115611b7257611b72612313565b036106755760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016105dd565b600054610100900460ff16611bf15760405162461bcd60e51b81526004016105dd906122c8565b815160209283012081519190920120600191909155600255565b611c14816118be565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60606001600160a01b0383163b611cb35760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b60648201526084016105dd565b600080846001600160a01b031684604051611cce919061234d565b600060405180830381855af49150503d8060008114611d09576040519150601f19603f3d011682016040523d82523d6000602084013e611d0e565b606091505b5091509150611d3682826040518060600160405280602781526020016123bd60279139611e2c565b95945050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611d765750600090506003611e23565b8460ff16601b14158015611d8e57508460ff16601c14155b15611d9f5750600090506004611e23565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611df3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611e1c57600060019250925050611e23565b9150600090505b94509492505050565b60608315611e3b5750816119c8565b825115611e4b5782518084602001fd5b8160405162461bcd60e51b81526004016105dd9190612369565b600060208284031215611e7757600080fd5b81356001600160e01b0319811681146119c857600080fd5b6001600160a01b038116811461067557600080fd5b600060208284031215611eb657600080fd5b81356119c881611e8f565b60008083601f840112611ed357600080fd5b50813567ffffffffffffffff811115611eeb57600080fd5b6020830191508360208260051b8501011115611a0d57600080fd5b60008060208385031215611f1957600080fd5b823567ffffffffffffffff811115611f3057600080fd5b611f3c85828601611ec1565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215611f7157600080fd5b8235611f7c81611e8f565b9150602083013567ffffffffffffffff80821115611f9957600080fd5b818501915085601f830112611fad57600080fd5b813581811115611fbf57611fbf611f48565b604051601f8201601f19908116603f01168101908382118183101715611fe757611fe7611f48565b8160405282815288602084870101111561200057600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b60006020828403121561203457600080fd5b813561ffff811681146119c857600080fd5b6000806000806060858703121561205c57600080fd5b843561206781611e8f565b9350602085013561207781611e8f565b9250604085013567ffffffffffffffff8082111561209457600080fd5b818701915087601f8301126120a857600080fd5b8135818111156120b757600080fd5b8860208285010111156120c957600080fd5b95989497505060200194505050565b6000806000806000606086880312156120f057600080fd5b85356120fb81611e8f565b9450602086013567ffffffffffffffff8082111561211857600080fd5b61212489838a01611ec1565b9096509450604088013591508082111561213d57600080fd5b5061214a88828901611ec1565b969995985093965092949392505050565b6000806040838503121561216e57600080fd5b823561217981611e8f565b9150602083013561218981611e8f565b809150509250929050565b60208082526026908201527f41646d696e3a6f6e6c7941646d696e2063616c6c6572206973206e6f7420616e6040820152651020b236b4b760d11b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b19195b1959d85d1958d85b1b60a21b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b6163746976652070726f787960a01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600182016122a857634e487b7160e01b600052601160045260246000fd5b5060010190565b6000602082840312156122c157600080fd5b5051919050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b634e487b7160e01b600052602160045260246000fd5b60005b8381101561234457818101518382015260200161232c565b50506000910152565b6000825161235f818460208701612329565b9190910192915050565b6020815260008251806020840152612388816040850160208701612329565b601f01601f1916919091016040019291505056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220048d7e1f592337712bcf56f94913d43f6b8e185b67ed5f3f854781a2a686ecad64736f6c63430008130033000000000000000000000000307e7a9713dbf6f19a2d2a2b670544f4791c4ec2
Deployed ByteCode
0x6080604052600436106101665760003560e01c8063572b6c05116100d15780639d72db521161008a578063a5366ecb11610064578063a5366ecb146104dd578063cd4a0f34146104fd578063da5f2d921461051d578063f815d6cf1461053d57600080fd5b80639d72db521461047d5780639df095641461049d5780639fac71ad146104bd57600080fd5b8063572b6c05146103775780636859c996146103c457806370480275146103fe578063707d18481461041e5780637d4bc8b71461043d5780638ef59b7c1461045d57600080fd5b806344057f631161012357806344057f631461028d5780634d4ed32c146102ad5780634f1ef286146102e75780635247385c146102fa57806352d1902d14610334578063552f41e01461035757600080fd5b806301ffc9a71461016b5780631785f53c146101a057806324d7806c146101c25780632888241b146101fb5780633659cfe61461024d5780633d0950a81461026d575b600080fd5b34801561017757600080fd5b5061018b610186366004611e65565b610561565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101c06101bb366004611ea4565b610598565b005b3480156101ce57600080fd5b5061018b6101dd366004611ea4565b6001600160a01b031660009081526099602052604090205460ff1690565b34801561020757600080fd5b50610235610216366004611ea4565b6001600160a01b03908116600090815261013560205260409020541690565b6040516001600160a01b039091168152602001610197565b34801561025957600080fd5b506101c0610268366004611ea4565b610678565b34801561027957600080fd5b506101c0610288366004611f06565b610754565b34801561029957600080fd5b506101c06102a8366004611f06565b6107ea565b3480156102b957600080fd5b5061018b6102c8366004611ea4565b6001600160a01b03166000908152610133602052604090205460ff1690565b6101c06102f5366004611f5e565b6108e0565b34801561030657600080fd5b5061018b610315366004611ea4565b6001600160a01b03166000908152610132602052604090205460ff1690565b34801561034057600080fd5b506103496109b0565b604051908152602001610197565b34801561036357600080fd5b506101c0610372366004611ea4565b610a63565b34801561038357600080fd5b5061018b610392366004611ea4565b7f000000000000000000000000307e7a9713dbf6f19a2d2a2b670544f4791c4ec26001600160a01b0390811691161490565b3480156103d057600080fd5b506102356103df366004611ea4565b6001600160a01b03908116600090815261013160205260409020541690565b34801561040a57600080fd5b506101c0610419366004611ea4565b610b36565b34801561042a57600080fd5b50610130546001600160a01b0316610235565b34801561044957600080fd5b506101c0610458366004611f06565b610b84565b34801561046957600080fd5b506101c0610478366004612022565b610c91565b34801561048957600080fd5b506101c0610498366004612046565b610d22565b3480156104a957600080fd5b506101c06104b83660046120d8565b610f67565b3480156104c957600080fd5b5061018b6104d836600461215b565b611104565b3480156104e957600080fd5b506101c06104f8366004611f06565b6111b2565b34801561050957600080fd5b506101c0610518366004611f06565b6112a5565b34801561052957600080fd5b506101c061053836600461215b565b611398565b34801561054957600080fd5b506101345460405161ffff9091168152602001610197565b60006001600160e01b0319821663042eca1d60e51b148061059257506301ffc9a760e01b6001600160e01b03198316145b92915050565b609960006105a46114bd565b6001600160a01b0316815260208101919091526040016000205460ff166105e65760405162461bcd60e51b81526004016105dd90612194565b60405180910390fd5b6001600160a01b03811660009081526099602052604090205460ff1661066c5760405162461bcd60e51b815260206004820152603560248201527f41646d696e3a72656d6f766541646d696e20747279696e6720746f2072656d6f6044820152743b32903737b71032bc34b9ba34b7339020b236b4b760591b60648201526084016105dd565b610675816114cc565b50565b6001600160a01b037f000000000000000000000000dfc37b2e739598077d08f6fb3d6baae24913954d1630036106c05760405162461bcd60e51b81526004016105dd906121da565b7f000000000000000000000000dfc37b2e739598077d08f6fb3d6baae24913954d6001600160a01b031661070960008051602061239d833981519152546001600160a01b031690565b6001600160a01b03161461072f5760405162461bcd60e51b81526004016105dd90612226565b6107388161151d565b6040805160008082526020820190925261067591839190611562565b609960006107606114bd565b6001600160a01b0316815260208101919091526040016000205460ff166107995760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e5576107d38383838181106107b9576107b9612272565b90506020020160208101906107ce9190611ea4565b6116cd565b806107dd81612288565b91505061079c565b505050565b609960006107f66114bd565b6001600160a01b0316815260208101919091526040016000205460ff1661082f5760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e557600083838381811061084e5761084e612272565b90506020020160208101906108639190611ea4565b90506001600160a01b038116156108cd576001600160a01b03811660008181526101336020908152604091829020805460ff1916600117905590519182527f64493f6b58fecf0b5963bd190327c4b5551e5774b83eb602f868be392da8a782910160405180910390a15b50806108d881612288565b915050610832565b6001600160a01b037f000000000000000000000000dfc37b2e739598077d08f6fb3d6baae24913954d1630036109285760405162461bcd60e51b81526004016105dd906121da565b7f000000000000000000000000dfc37b2e739598077d08f6fb3d6baae24913954d6001600160a01b031661097160008051602061239d833981519152546001600160a01b031690565b6001600160a01b0316146109975760405162461bcd60e51b81526004016105dd90612226565b6109a08261151d565b6109ac82826001611562565b5050565b6000306001600160a01b037f000000000000000000000000dfc37b2e739598077d08f6fb3d6baae24913954d1614610a505760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c000000000000000060648201526084016105dd565b5060008051602061239d83398151915290565b60996000610a6f6114bd565b6001600160a01b0316815260208101919091526040016000205460ff16610aa85760405162461bcd60e51b81526004016105dd90612194565b6001600160a01b038116610aeb5760405162461bcd60e51b815260206004820152600a602482015269503a555046523a505a4160b01b60448201526064016105dd565b61013080546001600160a01b0319166001600160a01b0383169081179091556040517f5424f6f81faafe9238c4d58ac76299338deab37460d10288e02776c68c8d5b6390600090a250565b60996000610b426114bd565b6001600160a01b0316815260208101919091526040016000205460ff16610b7b5760405162461bcd60e51b81526004016105dd90612194565b610675816116cd565b60996000610b906114bd565b6001600160a01b0316815260208101919091526040016000205460ff16610bc95760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e5576000838383818110610be857610be8612272565b9050602002016020810190610bfd9190611ea4565b90506001600160a01b03811615801590610c2057506001600160a01b0381163b15155b15610c7e576001600160a01b03811660008181526101326020908152604091829020805460ff1916600117905590519182527f45f42530e679dbd12f34bd60947483f7fc4d07a0cb66ededb2261c4206d4563a910160405180910390a15b5080610c8981612288565b915050610bcc565b60996000610c9d6114bd565b6001600160a01b0316815260208101919091526040016000205460ff16610cd65760405162461bcd60e51b81526004016105dd90612194565b610134805461ffff191661ffff83169081179091556040519081527f9b5540d1b8eea14606b74b2167809eda8828fb3cb906886fa9b42f34d78f43db906020015b60405180910390a150565b6001600160a01b0384163b610d675760405162461bcd60e51b815260206004820152600b60248201526a503a555046523a5043434160a81b60448201526064016105dd565b6001600160a01b038316610dab5760405162461bcd60e51b815260206004820152600b60248201526a503a555046523a4e505a4160a81b60448201526064016105dd565b610db66101dd6114bd565b1515600003610f0d57604080517f393608ae61d9f6d4e890b36cfab0c4641cb9cffc350d2e38e827935c783fbc1460208201526001600160a01b038087169282019290925290841660608201526000906080016040516020818303038152906040528051906020012090506000610eac84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610ea69250869150610e6b905061178b565b6040805161190160f01b6020808301919091526022820193909352604280820194909452815180820390940184526062019052815191012090565b906117c2565b9050610ed1816001600160a01b03166000908152610133602052604090205460ff1690565b610f0a5760405162461bcd60e51b815260206004820152600a602482015269503a555046523a49505360b01b60448201526064016105dd565b50505b6001600160a01b038481166000818152610131602052604080822080546001600160a01b0319169488169485179055517f589ee4ae06bae381d455f1c3ce0c6724aee594ddbcab920f9a5a504de9943d989190a350505050565b600054610100900460ff1615808015610f875750600054600160ff909116105b80610fa15750303b158015610fa1575060005460ff166001145b6110045760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016105dd565b6000805460ff191660011790558015611027576000805461ff0019166101001790555b61102f6117e6565b61103761180f565b6110916040518060400160405280601881526020017f5342494e465420506c6174666f726d2052656769737472790000000000000000815250604051806040016040528060038152602001620312e360ec1b815250611849565b6110996117e6565b6110a286610a63565b6110ac85856107ea565b6110b68383610b84565b80156110fc576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050505050565b60006001600160a01b03831661114a5760405162461bcd60e51b815260206004820152600b60248201526a503a495046523a434e5a4160a81b60448201526064016105dd565b6001600160a01b03821661118e5760405162461bcd60e51b815260206004820152600b60248201526a503a495046523a504e5a4160a81b60448201526064016105dd565b506001600160a01b0391821660009081526101316020526040902054821691161490565b609960006111be6114bd565b6001600160a01b0316815260208101919091526040016000205460ff166111f75760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e557600083838381811061121657611216612272565b905060200201602081019061122b9190611ea4565b90506001600160a01b03811615611292576001600160a01b03811660008181526101326020908152604091829020805460ff1916905590519182527f72a26be94b6f8ff29d401781a1851d009dae9befe1bfe300fabf2e03146ea763910160405180910390a15b508061129d81612288565b9150506111fa565b609960006112b16114bd565b6001600160a01b0316815260208101919091526040016000205460ff166112ea5760405162461bcd60e51b81526004016105dd90612194565b60005b818110156107e557600083838381811061130957611309612272565b905060200201602081019061131e9190611ea4565b90506001600160a01b03811615611385576001600160a01b03811660008181526101336020908152604091829020805460ff1916905590519182527f81bf64040664fa99957e018a931d568ee336fb32f976e4c36b27b331906e5167910160405180910390a15b508061139081612288565b9150506112ed565b609960006113a46114bd565b6001600160a01b0316815260208101919091526040016000205460ff166113dd5760405162461bcd60e51b81526004016105dd90612194565b6001600160a01b0382166114215760405162461bcd60e51b815260206004820152600b60248201526a413a555046523a4e505a4160a81b60448201526064016105dd565b6001600160a01b0381166114655760405162461bcd60e51b815260206004820152600b60248201526a413a555046523a4e505a4160a81b60448201526064016105dd565b6001600160a01b038281166000818152610135602052604080822080546001600160a01b0319169486169485179055517ffae5b4c04d3cf2324d5fb190022c792c8c5577d9e743cb88a04bca4aaca08a219190a35050565b60006114c761187a565b905090565b6001600160a01b038116600081815260996020908152604091829020805460ff1916905590519182527fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f9101610d17565b609960006115296114bd565b6001600160a01b0316815260208101919091526040016000205460ff166106755760405162461bcd60e51b81526004016105dd90612194565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff1615611595576107e5836118be565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156115ef575060408051601f3d908101601f191682019092526115ec918101906122af565b60015b6116525760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201526d6f6e206973206e6f74205555505360901b60648201526084016105dd565b60008051602061239d83398151915281146116c15760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f786044820152681a58589b195555525160ba1b60648201526084016105dd565b506107e583838361195a565b6001600160a01b0381166117375760405162461bcd60e51b815260206004820152602b60248201527f41646d696e3a61646441646d696e206e657741646d696e20697320746865207a60448201526a65726f206164647265737360a81b60648201526084016105dd565b6001600160a01b038116600081815260996020908152604091829020805460ff1916600117905590519182527f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e3399101610d17565b60006114c77f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6117ba60015490565b600254611985565b60008060006117d185856119cf565b915091506117de81611a14565b509392505050565b600054610100900460ff1661180d5760405162461bcd60e51b81526004016105dd906122c8565b565b600054610100900460ff166118365760405162461bcd60e51b81526004016105dd906122c8565b61183e6117e6565b61180d6107ce6114bd565b600054610100900460ff166118705760405162461bcd60e51b81526004016105dd906122c8565b6109ac8282611bca565b60007f000000000000000000000000307e7a9713dbf6f19a2d2a2b670544f4791c4ec26001600160a01b031633036118b9575060131936013560601c90565b503390565b6001600160a01b0381163b61192b5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b60648201526084016105dd565b60008051602061239d83398151915280546001600160a01b0319166001600160a01b0392909216919091179055565b61196383611c0b565b6000825111806119705750805b156107e55761197f8383611c4b565b50505050565b6040805160208101859052908101839052606081018290524660808201523060a082015260009060c0016040516020818303038152906040528051906020012090505b9392505050565b6000808251604103611a055760208301516040840151606085015160001a6119f987828585611d3f565b94509450505050611a0d565b506000905060025b9250929050565b6000816004811115611a2857611a28612313565b03611a305750565b6001816004811115611a4457611a44612313565b03611a915760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016105dd565b6002816004811115611aa557611aa5612313565b03611af25760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016105dd565b6003816004811115611b0657611b06612313565b03611b5e5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016105dd565b6004816004811115611b7257611b72612313565b036106755760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016105dd565b600054610100900460ff16611bf15760405162461bcd60e51b81526004016105dd906122c8565b815160209283012081519190920120600191909155600255565b611c14816118be565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60606001600160a01b0383163b611cb35760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b60648201526084016105dd565b600080846001600160a01b031684604051611cce919061234d565b600060405180830381855af49150503d8060008114611d09576040519150601f19603f3d011682016040523d82523d6000602084013e611d0e565b606091505b5091509150611d3682826040518060600160405280602781526020016123bd60279139611e2c565b95945050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611d765750600090506003611e23565b8460ff16601b14158015611d8e57508460ff16601c14155b15611d9f5750600090506004611e23565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611df3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611e1c57600060019250925050611e23565b9150600090505b94509492505050565b60608315611e3b5750816119c8565b825115611e4b5782518084602001fd5b8160405162461bcd60e51b81526004016105dd9190612369565b600060208284031215611e7757600080fd5b81356001600160e01b0319811681146119c857600080fd5b6001600160a01b038116811461067557600080fd5b600060208284031215611eb657600080fd5b81356119c881611e8f565b60008083601f840112611ed357600080fd5b50813567ffffffffffffffff811115611eeb57600080fd5b6020830191508360208260051b8501011115611a0d57600080fd5b60008060208385031215611f1957600080fd5b823567ffffffffffffffff811115611f3057600080fd5b611f3c85828601611ec1565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215611f7157600080fd5b8235611f7c81611e8f565b9150602083013567ffffffffffffffff80821115611f9957600080fd5b818501915085601f830112611fad57600080fd5b813581811115611fbf57611fbf611f48565b604051601f8201601f19908116603f01168101908382118183101715611fe757611fe7611f48565b8160405282815288602084870101111561200057600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b60006020828403121561203457600080fd5b813561ffff811681146119c857600080fd5b6000806000806060858703121561205c57600080fd5b843561206781611e8f565b9350602085013561207781611e8f565b9250604085013567ffffffffffffffff8082111561209457600080fd5b818701915087601f8301126120a857600080fd5b8135818111156120b757600080fd5b8860208285010111156120c957600080fd5b95989497505060200194505050565b6000806000806000606086880312156120f057600080fd5b85356120fb81611e8f565b9450602086013567ffffffffffffffff8082111561211857600080fd5b61212489838a01611ec1565b9096509450604088013591508082111561213d57600080fd5b5061214a88828901611ec1565b969995985093965092949392505050565b6000806040838503121561216e57600080fd5b823561217981611e8f565b9150602083013561218981611e8f565b809150509250929050565b60208082526026908201527f41646d696e3a6f6e6c7941646d696e2063616c6c6572206973206e6f7420616e6040820152651020b236b4b760d11b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b19195b1959d85d1958d85b1b60a21b606082015260800190565b6020808252602c908201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060408201526b6163746976652070726f787960a01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6000600182016122a857634e487b7160e01b600052601160045260246000fd5b5060010190565b6000602082840312156122c157600080fd5b5051919050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b634e487b7160e01b600052602160045260246000fd5b60005b8381101561234457818101518382015260200161232c565b50506000910152565b6000825161235f818460208701612329565b9190910192915050565b6020815260008251806020840152612388816040850160208701612329565b601f01601f1916919091016040019291505056fe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220048d7e1f592337712bcf56f94913d43f6b8e185b67ed5f3f854781a2a686ecad64736f6c63430008130033