ERC-721
Overview
Max Total Supply
277 NSP
Holders
277
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x4CC8DAE9...b850EC3Af The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
NPassport
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
Yes with 800 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity >=0.8.0 <0.9.0;import "@openzeppelin/contracts/access/AccessControl.sol";import "@openzeppelin/contracts/token/ERC721/ERC721.sol";import "@openzeppelin/contracts/access/Ownable.sol";import "@openzeppelin/contracts/security/Pausable.sol";import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";import "@openzeppelin/contracts/utils/Strings.sol";contract NPassport is AccessControl, ERC721, Ownable, Pausable {bytes32 public constant ADMIN = "ADMIN";uint256 public subscribeTermSec = 180 days;address public withdrawAddress;string public baseURI;string public baseExtension;bytes32 merkleRoot;uint256 public totalSupply = 0;// Planuint8 public planNoForPublic;uint8 public planNoForAllowlist;mapping(uint8 => uint256) public planCosts;// PassportInfo
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)pragma solidity ^0.8.0;import "./IAccessControl.sol";import "../utils/Context.sol";import "../utils/Strings.sol";import "../utils/introspection/ERC165.sol";/*** @dev Contract module that allows children to implement role-based access* control mechanisms. This is a lightweight version that doesn't allow enumerating role* members except through off-chain means by accessing the contract event logs. Some* applications may benefit from on-chain enumerability, for those cases see* {AccessControlEnumerable}.** Roles are referred to by their `bytes32` identifier. These should be exposed* in the external API and be unique. The best way to achieve this is by* using `public constant` hash digests:** ```* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");* ```** Roles can be used to represent a set of permissions. To restrict access to a
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which allows children to implement an emergency stop* mechanism that can be triggered by an authorized account.** This module is used through inheritance. It will make available the* modifiers `whenNotPaused` and `whenPaused`, which can be applied to* the functions of your contract. Note that they will not be pausable by* simply including this module, only once the modifiers are put in place.*/abstract contract Pausable is Context {/*** @dev Emitted when the pause is triggered by `account`.*/event Paused(address account);/*** @dev Emitted when the pause is lifted by `account`.*/event Unpaused(address account);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)pragma solidity ^0.8.0;import "./IERC721.sol";import "./IERC721Receiver.sol";import "./extensions/IERC721Metadata.sol";import "../../utils/Address.sol";import "../../utils/Context.sol";import "../../utils/Strings.sol";import "../../utils/introspection/ERC165.sol";/*** @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including* the Metadata extension, but not including the Enumerable extension, which is available separately as* {ERC721Enumerable}.*/contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {using Address for address;using Strings for uint256;// Token namestring private _name;// Token symbol
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)pragma solidity ^0.8.0;/*** @dev String operations.*/library Strings {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++;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)pragma solidity ^0.8.0;/*** @dev These functions deal with verification of Merkle Tree proofs.** The proofs can be generated using the JavaScript library* https://github.com/miguelmota/merkletreejs[merkletreejs].* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.** See `test/utils/cryptography/MerkleProof.test.js` for some examples.** WARNING: You should avoid using leaf values that are 64 bytes long prior to* hashing, or use a hash function other than keccak256 for hashing leaves.* This is because the concatenation of a sorted pair of internal nodes in* the merkle tree could be reinterpreted as a leaf value.*/library MerkleProof {/*** @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree* defined by `root`. For this, a `proof` must be provided, containing* sibling hashes on the branch from the leaf to the root of the tree. Each* pair of leaves and each pair of pre-images are assumed to be sorted.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)pragma solidity ^0.8.0;/*** @dev External interface of AccessControl declared to support ERC165 detection.*/interface IAccessControl {/*** @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`** `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite* {RoleAdminChanged} not being emitted signaling this.** _Available since v3.1._*/event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);/*** @dev Emitted when `account` is granted `role`.** `sender` is the account that originated the contract call, an admin role* bearer except when using {AccessControl-_setupRole}.*/event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
123456789101112131415161718192021222324// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.0;/*** @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 Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)pragma solidity ^0.8.0;import "./IERC165.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 ERC165 is IERC165 {/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
12345678910111213141516171819202122232425// 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 IERC165 {/*** @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);}
1234567891011121314151617181920212223242526// 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 Address {/*** @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* ====*
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)pragma solidity ^0.8.0;import "../../utils/introspection/IERC165.sol";/*** @dev Required interface of an ERC721 compliant contract.*/interface IERC721 is IERC165 {/*** @dev Emitted when `tokenId` token is transferred from `from` to `to`.*/event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.*/event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.*/event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)pragma solidity ^0.8.0;/*** @title ERC721 token receiver interface* @dev Interface for any contract that wants to support safeTransfers* from ERC721 asset contracts.*/interface IERC721Receiver {/*** @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}* by `operator` from `from`, this function is called.** It must return its Solidity selector to confirm the token transfer.* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.** The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.*/function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data) external returns (bytes4);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)pragma solidity ^0.8.0;import "../IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional metadata extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Metadata is IERC721 {/*** @dev Returns the token collection name.*/function name() external view returns (string memory);/*** @dev Returns the token collection symbol.*/function symbol() external view returns (string memory);/*** @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.*/function tokenURI(uint256 tokenId) external view returns (string memory);
1234567891011121314151617181920212223{"metadata": {"bytecodeHash": "none"},"optimizer": {"enabled": true,"runs": 800},"viaIR": true,"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_withdrawAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"_owner","type":"address"},{"indexed":false,"internalType":"uint8","name":"_planNo","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Subscribe","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"planNo","type":"uint8"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintCostForAllowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintCostForPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getMintCostForSubscribe","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getPassportInfo","outputs":[{"components":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint8","name":"planNo","type":"uint8"},{"internalType":"uint256","name":"expiredTimestamp","type":"uint256"}],"internalType":"struct NPassport.PassportInfo","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"passportIsValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"planCosts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"planNoForAllowlist","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"planNoForPublic","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"resetExpiredTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bool","name":"","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_value","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_value","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_value","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_planNo","type":"uint8"},{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_value","type":"uint8"}],"name":"setPlanNoForAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_value","type":"uint8"}],"name":"setPlanNoForPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setSubscribeTermSec","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_value","type":"address"}],"name":"setWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"subscribe","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"subscribeTermSec","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6040608081523462000411576200327f90813803806200001f8162000416565b9384398201606083820312620004115782516001600160401b039290838111620004115782620000519186016200043c565b906020928386015185811162000411578291620000709188016200043c565b9501516001600160a01b03958682169591869003620004115783519382851162000326576001948554918683811c9316801562000406575b8884101462000305578190601f93848111620003b0575b50889084831160011462000348576000926200033c575b5050600019600383901b1c191690861b1785555b81519283116200032657600254918583811c931680156200031b575b8784101462000305578282859411620002ac575b5086918311600114620002425760009262000236575b5050600019600383901b1c191690831b176002555b600754815195339082167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600089a36001600160a81b0319163360ff60a01b1981169190911760075562ed4e006008556000600d8190556420a226a4a760d91b8082528186528382209282529185528290205490939060ff1615620001e4575b600980546001600160a01b03191686179055612dbf8681620004c08239f35b8360005260008152816000209033600052526000209060ff19825416179055339033907f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d600086a438808080620001c5565b01519050388062000130565b90859350601f198316916002600052876000209260005b898282106200029557505084116200027b575b505050811b0160025562000145565b015160001960f88460031b161c191690553880806200026c565b838501518655899790950194938401930162000259565b909192506002600052866000208380860160051c820192898710620002fb575b91869589929594930160051c01915b828110620002eb5750506200011a565b60008155869550889101620002db565b92508192620002cc565b634e487b7160e01b600052602260045260246000fd5b92607f169262000106565b634e487b7160e01b600052604160045260246000fd5b015190503880620000d6565b90889350601f19831691846000528a6000209260005b8c8282106200039957505084116200037f575b505050811b018555620000ea565b015160001960f88460031b161c1916905538808062000371565b8385015186558c979095019493840193016200035e565b90915087600052886000208480850160051c8201928b8610620003fc575b918a91869594930160051c01915b828110620003ec575050620000bf565b600081558594508a9101620003dc565b92508192620003ce565b92607f1692620000a8565b600080fd5b6040519190601f01601f191682016001600160401b038111838210176200032657604052565b81601f8201121562000411578051906001600160401b038211620003265760209062000471601f8401601f1916830162000416565b93838552828483010111620004115782906000905b83838310620004a6575050116200049c57505090565b6000918301015290565b819350828193920101518282880101520183916200048656fe608080604052600436101561001357600080fd5b60003560e01c90816301ffc9a714611da15750806306fdde0314611cfe578063081812fc14611ce0578063093d381614611c78578063095ea7b314611c1957806311fecb4e1461193e5780631249c58b146118ca5780631341adc0146118965780631581b6001461186f578063174a37281461184b57806318160ddd1461182d57806323acdd68146117fe57806323b872dd146117da578063248a9ca3146117ab5780632a0acc6a146117885780632c65cd54146117525780632f2ff15d146116ae57806336568abe1461160e5780633ab1a494146115cc5780633ccfd60b146115915780633d2493bf146115705780633f4ba83a146114cd57806342842e0e1461149a578063469c02251461144c5780634f558e791461140d578063537924ef146110c45780635468166f1461103657806355f804b314610eef578063560b789114610eaf5780635c975abb14610e895780635f1b1b8614610e105780636352211e14610de15780636c0360eb14610d3b57806370a0823114610d10578063715018a614610cb057806372aba23414610c7e5780637cb6475914610c5d5780638456cb5914610bec5780638da5cb5b14610bc55780638f449a0514610a8c57806391d1485414610a3e57806395d89b4114610998578063a217fddf1461097c578063a22cb46514610912578063a4ca6802146108d5578063b88d4fde1461084f578063c4be715314610813578063c668286214610731578063c87b56dd1461058c578063d547741f14610560578063d6dc6f5514610542578063da3ef23f146103d9578063e985e9c514610382578063ecc70697146103615763f2fde38b1461027c57600080fd5b3461035c57602036600319011261035c57610295611e7f565b61029d6120da565b6001600160a01b038091169081156102f15760009160075491816001600160a01b031984161760075560405192167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08484a3f35b60405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608490fd5b600080fd5b3461035c57602036600319011261035c5761037a6127c9565b600435600855005b3461035c57604036600319011261035c5761039b611e7f565b6103a3611e95565b906001600160a01b03809116600052600660205260406000209116600052602052602060ff604060002054166040519015158152f35b3461035c576103e736611fea565b6103ef6127c9565b805167ffffffffffffffff811161052c5761040b600b54612029565b601f81116104d2575b50602080601f831160011461045157508192600092610446575b50508160011b916000199060031b1c191617600b555b005b01519050828061042e565b90601f19831693600b6000527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9926000905b8682106104ba57505083600195106104a1575b505050811b01600b55005b015160001960f88460031b161c19169055828080610496565b80600185968294968601518155019501930190610483565b61051c90600b6000527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9601f840160051c81019160208510610522575b601f0160051c0190612b84565b82610414565b909150819061050f565b634e487b7160e01b600052604160045260246000fd5b3461035c57600036600319011261035c576020600854604051908152f35b3461035c57604036600319011261035c5761044461057c611e95565b6105846120da565b600435612063565b3461035c5760208060031936011261035c576105a9600435612cb2565b906040519182826000600a54936105bf85612029565b6001958487821691826000146107125750506001146106b4575b5080826105ea925194859201611e25565b01600090600b54936105fb85612029565b94818116908115610698575060011461063c575b5050610624925003601f198101845283611f75565b610638604051928284938452830190611e5a565b0390f35b939150600b6000527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9936000905b8684831061068257505050610624935001858061060f565b865483850152958101958895509091019061066a565b9150506106249491925060ff191682528015150201858061060f565b909150600a6000527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8856000915b8383106106f95750505083018201906105ea6105d9565b80548a84018701528996508895909201918791016106e2565b60ff191687820152821515909202860190910192506105ea90506105d9565b3461035c57600036600319011261035c576040516000600b5461075381612029565b808452906001908181169081156107ec5750600114610791575b6106388461077d81860382611f75565b604051918291602083526020830190611e5a565b600b600090815292507f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db95b8284106107d457505050810160200161077d8261076d565b805460208587018101919091529093019281016107bc565b60ff191660208087019190915292151560051b8501909201925061077d915083905061076d565b3461035c57604036600319011261035c5760ff61082e611edc565b6108366127c9565b16600052600f6020526024356040600020556000604051f35b3461035c57608036600319011261035c57610868611e7f565b610870611e95565b906064359060443567ffffffffffffffff831161035c573660238401121561035c57610444936108ad6108d0943690602481600401359101611fb3565b926108c06108bb8433612355565b61226d565b6108cb8383836123cf565b612768565b6122df565b3461035c57602036600319011261035c576108ee611edc565b6108f66127c9565b61ff00600e549160081b169061ff00191617600e556000604051f35b3461035c57604036600319011261035c5761092b611e7f565b506024358015150361035c5760405162461bcd60e51b815260206004820152601260248201527f5468697320746f6b656e206973205342542e00000000000000000000000000006044820152606490fd5b3461035c57600036600319011261035c57602060405160008152f35b3461035c57600036600319011261035c5760405160006002546109ba81612029565b808452906001908181169081156107ec57506001146109e3576106388461077d81860382611f75565b6002600090815292507f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace5b828410610a2657505050810160200161077d8261076d565b80546020858701810191909152909301928101610a0e565b3461035c57604036600319011261035c57610a57611e95565b60043560005260006020526001600160a01b0360406000209116600052602052602060ff604060002054166040519015158152f35b600036600319011261035c57336000527ff8003d821d733a08b1886da1bfe920806afecc2a49f051a88b3dbb79d59c557f60806010602090808252610ad76040600020541515612b9b565b336000528082526002604060002001544210600014610b6e573360005280825260ff60016040600020015416600052600f8252610b1b604060002054341015612c33565b60085433600052818352610b3860026040600020019182546123c3565b90555b3360005281526040600020549060ff600160406000200154169060405192835233908301526040820152346060820152a1005b60ff600e5416600052600f8252610b8c604060002054341015612c33565b610b98600854426123c3565b3360005281835260026040600020015560ff600e541660016040600020019060ff19825416179055610b3b565b3461035c57600036600319011261035c5760206001600160a01b0360075416604051908152f35b3461035c57600036600319011261035c57610c056127c9565b610c0d612b09565b7401000000000000000000000000000000000000000060ff60a01b1960075416176007557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586020604051338152a1005b3461035c57602036600319011261035c57610c766127c9565b600435600c55005b3461035c57600036600319011261035c5760ff600e5460081c16600052600f6020526020604060002054604051908152f35b3461035c57600036600319011261035c57610cc96120da565b60006007546001600160a01b03198116600755816001600160a01b0360405192167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08284a3f35b3461035c57602036600319011261035c576020610d33610d2e611e7f565b612132565b604051908152f35b3461035c57600036600319011261035c576040516000600a54610d5d81612029565b808452906001908181169081156107ec5750600114610d86576106388461077d81860382611f75565b600a600090815292507fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a85b828410610dc957505050810160200161077d8261076d565b80546020858701810191909152909301928101610db1565b3461035c57602036600319011261035c576020610dff600435612209565b6001600160a01b0360405191168152f35b3461035c57600036600319011261035c57610e296127c9565b610e34600b54612029565b601f8111610e44575b6000600b55005b601f7f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9910160051c8101905b818110610e7d5750610e3d565b60008155600101610e70565b3461035c57600036600319011261035c57602060ff60075460a01c166040519015158152f35b3461035c57602036600319011261035c576001600160a01b03610ed0611e7f565b1660005260106020526020600260406000200154604051904211158152f35b3461035c57610efd36611fea565b610f056127c9565b805167ffffffffffffffff811161052c57610f21600a54612029565b601f8111610fe7575b50602080601f8311600114610f6657508192600092610f5b575b50508160011b916000199060031b1c191617600a55005b015190508280610f44565b90601f19831693600a6000527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8926000905b868210610fcf5750508360019510610fb6575b505050811b01600a55005b015160001960f88460031b161c19169055828080610fab565b80600185968294968601518155019501930190610f98565b61103090600a6000527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8601f840160051c8101916020851061052257601f0160051c0190612b84565b82610f2a565b3461035c57602036600319011261035c576001600160a01b03611057611e7f565b60006040805161106681611f21565b82815282602082015201521660005260106020526060604060002060405161108d81611f21565b60ff825492838352604060028360018401541692602086019384520154930192835260405193845251166020830152516040820152f35b60208060031936011261035c5760043567ffffffffffffffff811161035c576110f1903690600401611eab565b6110fc929192612b09565b61110e61110833612132565b15612be7565b60ff600e5460081c169283600052600f8352611131604060002054341015612c33565b604051838101903360601b82526014815261114b81611f59565b51902091600c5492916000915b8083106113c757505050036113835781600052600f81526040600020541561133f57600d5460011991908281116112a157600101926040519261119a84611f3d565b6000845233156112fc576111c48560005260036020526001600160a01b0360406000205416151590565b6112b757336000526004835260406000209081549081116112a15760029461123d9260016108d09301905586600052600385526040600020336001600160a01b0319825416179055863360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef81604051a4863361261b565b611248600d54612c7f565b600d556010611259600854426123c3565b926040519561126787611f21565b865280860192835260408601938452336000525260406000209351845560ff6001850191511660ff19825416179055519101556000604051f35b634e487b7160e01b600052601160045260246000fd5b60405162461bcd60e51b815260048101849052601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606490fd5b6064836040519062461bcd60e51b825280600483015260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152fd5b6064906040519062461bcd60e51b82526004820152601860248201527f53616c6520506c616e20446f6573204e6f7420457869737400000000000000006044820152fd5b6064906040519062461bcd60e51b82526004820152600d60248201527f496e76616c69642070726f6f66000000000000000000000000000000000000006044820152fd5b9091926113d5848385612c8e565b3590818110156113fa5760005285526113f360406000205b93612c7f565b9190611158565b9060005285526113f360406000206113ed565b3461035c57602036600319011261035c57602061144260043560005260036020526001600160a01b0360406000205416151590565b6040519015158152f35b3461035c57602036600319011261035c576001600160a01b0361146d611e7f565b16600052601060205260ff60016040600020015416600052600f6020526020604060002054604051908152f35b3461035c576104446108d06114ae36611eec565b90604051926114bc84611f3d565b600084526108c06108bb8433612355565b3461035c57600036600319011261035c576114e66127c9565b60075460ff8160a01c161561152b5760ff60a01b19166007557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6020604051338152a1005b60405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606490fd5b3461035c57600036600319011261035c57602060ff600e5416604051908152f35b600036600319011261035c576115a56127c9565b600080806001600160a01b036009541647604051915af16115c46125eb565b501561035c57005b3461035c57602036600319011261035c576001600160a01b036115ed611e7f565b6115f56127c9565b166001600160a01b031960095416176009556000604051f35b3461035c57604036600319011261035c57611627611e95565b336001600160a01b038216036116435761044490600435612063565b60405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608490fd5b3461035c57604036600319011261035c576004356116ca611e95565b6116d26120da565b8160005260006020526001600160a01b0360406000209116908160005260205260ff604060002054161561170257005b8160005260006020526040600020816000526020526040600020600160ff1982541617905533917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d6000604051a4005b3461035c57602036600319011261035c5760ff61176d611edc565b6117756127c9565b1660ff19600e541617600e556000604051f35b3461035c57600036600319011261035c5760206040516420a226a4a760d91b8152f35b3461035c57602036600319011261035c5760043560005260006020526020600160406000200154604051908152f35b3461035c576104446117eb36611eec565b916117f96108bb8433612355565b6123cf565b3461035c57600036600319011261035c5760ff600e5416600052600f6020526020604060002054604051908152f35b3461035c57600036600319011261035c576020600d54604051908152f35b3461035c57600036600319011261035c57602060ff600e5460081c16604051908152f35b3461035c57600036600319011261035c5760206001600160a01b0360095416604051908152f35b3461035c57602036600319011261035c5760ff6118b1611edc565b16600052600f6020526020604060002054604051908152f35b600036600319011261035c576118de612b09565b6118ea61110833612132565b60ff600e5416806000526020600f815261190b604060002054341015612c33565b81600052600f81526040600020541561133f57600d5460011991908281116112a157600101926040519261119a84611f3d565b3461035c57604036600319011261035c5760043567ffffffffffffffff811161035c5761196f903690600401611eab565b906024359160ff8316830361035c576119866127c9565b60005b81811061199257005b6119a8610d2e6119a3838587612c8e565b612c9e565b156119bc575b6119b790612c7f565b611989565b6119ca6119a3828486612c8e565b9060ff8516600052600f60205260406000205415611bd457600d5460011981116112a1576040516119fa81611f3d565b600081526001600160a01b03841615611b9057611a306001830160005260036020526001600160a01b0360406000205416151590565b611b4b576001600160a01b038416600052600460205260406000209384549460011986116112a1576108d0600293611ad59260016119b79901905560018601600052600360205260406000206001600160a01b0385166001600160a01b0319825416179055600186016001600160a01b03851660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef81604051a4600186018461261b565b611ae0600d54612c7f565b600d55611aef600854426123c3565b90600160405194611aff86611f21565b0184526001600160a01b03602085019160ff8b1683526040860193845216600052601060205260406000209351845560ff6001850191511660ff198254161790555191015590506119ae565b60405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606490fd5b606460405162461bcd60e51b815260206004820152602060248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152fd5b60405162461bcd60e51b815260206004820152601860248201527f53616c6520506c616e20446f6573204e6f7420457869737400000000000000006044820152606490fd5b3461035c57604036600319011261035c57611c32611e7f565b5060405162461bcd60e51b815260206004820152601260248201527f5468697320746f6b656e206973205342542e00000000000000000000000000006044820152606490fd5b3461035c57602036600319011261035c576001600160a01b03611c99611e7f565b611ca16127c9565b16806000526010602052611cbb6040600020541515612b9b565b600142106112a157600052601060205260001942016002604060002001556000604051f35b3461035c57602036600319011261035c576020610dff60043561222b565b3461035c57600036600319011261035c5760405160006001805490611d2282612029565b808552918181169081156107ec5750600114611d48576106388461077d81860382611f75565b600081815292507fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf65b828410611d8957505050810160200161077d8261076d565b80546020858701810191909152909301928101611d71565b3461035c57602036600319011261035c57600435906001600160e01b0319821680830361035c576020926380ac58cd60e01b8214918215611e14575b508115611e03575b8115611df3575b5015158152f35b611dfd9150612d86565b83611dec565b9050611e0e81612d86565b90611de5565b635b5e139f60e01b14915084611ddd565b918091926000905b828210611e45575011611e3e575050565b6000910152565b91508060209183015181860152018291611e2d565b90602091611e7381518092818552858086019101611e25565b601f01601f1916010190565b600435906001600160a01b038216820361035c57565b602435906001600160a01b038216820361035c57565b9181601f8401121561035c5782359167ffffffffffffffff831161035c576020808501948460051b01011161035c57565b6004359060ff8216820361035c57565b606090600319011261035c576001600160a01b0390600435828116810361035c5791602435908116810361035c579060443590565b6060810190811067ffffffffffffffff82111761052c57604052565b6020810190811067ffffffffffffffff82111761052c57604052565b6040810190811067ffffffffffffffff82111761052c57604052565b90601f8019910116810190811067ffffffffffffffff82111761052c57604052565b67ffffffffffffffff811161052c57601f01601f191660200190565b929192611fbf82611f97565b91611fcd6040519384611f75565b82948184528183011161035c578281602093846000960137010152565b602060031982011261035c576004359067ffffffffffffffff821161035c578060238301121561035c5781602461202693600401359101611fb3565b90565b90600182811c92168015612059575b602083101461204357565b634e487b7160e01b600052602260045260246000fd5b91607f1691612038565b90600091808352826020526001600160a01b036040842092169182845260205260ff60408420541661209457505050565b80835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b3393604051a4565b6001600160a01b036007541633036120ee57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b6001600160a01b0316801561215257600052600460205260406000205490565b60405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608490fd5b156121c457565b60405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606490fd5b60005260036020526001600160a01b03604060002054166120268115156121bd565b61225361224e8260005260036020526001600160a01b0360406000205416151590565b6121bd565b60005260056020526001600160a01b036040600020541690565b1561227457565b60405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608490fd5b156122e657565b60405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608490fd5b0390fd5b906001600160a01b03808061236984612209565b1693169183831493841561239c575b508315612386575b50505090565b6123929192935061222b565b1614388080612380565b909350600052600660205260406000208260005260205260ff604060002054169238612378565b811981116112a1570190565b6123d883612209565b916001600160a01b039283809316928391160361258057821691821561252f5781158015612527575b156124e257600090848252600560205260408220906001600160a01b03199182815416905561242f86612209565b16908583604051937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258286a48383526004602052604083208054600181106124ce57600019019055848352600460205260408320805460011981116124ce5760010190558583526003602052604083208054909116851790557fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4565b634e487b7160e01b85526011600452602485fd5b60405162461bcd60e51b815260206004820152601160248201527f5468697320746f6b656e206973205342540000000000000000000000000000006044820152606490fd5b506000612401565b60405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608490fd5b3d15612616573d906125fc82611f97565b9161260a6040519384611f75565b82523d6000602084013e565b606090565b9091600091803b1561275f5761266e6020916001600160a01b039385604051958680958194630a85bd0160e11b9b8c84523360048501528560248501526044840152608060648401526084830190611e5a565b0393165af190829082612710575b50506127025761268a6125eb565b805190816126fd5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608490fd5b602001fd5b6001600160e01b0319161490565b909192506020813d8211612757575b8161272c60209383611f75565b810103126127535751906001600160e01b031982168203612750575090388061267c565b80fd5b5080fd5b3d915061271f565b50505050600190565b91926000929190813b156127bf5760209161266e9185604051958680958194630a85bd0160e11b9b8c84523360048501526001600160a01b0380951660248501526044840152608060648401526084830190611e5a565b5050505050600190565b3360009081527fff164f808567eb9100129b1d5aead1611f532533c7a4cedced7e7f0a6271f531602090815260408083205490926420a226a4a760d91b9160ff16156128155750505050565b3384519261282284611f21565b602a84528484019086368337845115612af55760308253845192600193841015612ae1576078602187015360295b848111612a775750612a35578651926080840184811067ffffffffffffffff821117612a2157885260428452868401946060368737845115612a0d57603086538451821015612a0d5790607860218601536041915b81831161299f5750505061295d57612351938693612941936129326048946128fd9a519a8b957f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008c8801525180926037880190611e25565b8401917f206973206d697373696e6720726f6c6520000000000000000000000000000000603784015251809386840190611e25565b01036028810187520185611f75565b5192839262461bcd60e51b845260048401526024830190611e5a565b60648587519062461bcd60e51b825280600483015260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152fd5b909192600f811660108110156129f9576f181899199a1a9b1b9c1cb0b131b232b360811b901a6129cf8588612b5d565b5360041c9280156129e5576000190191906128a5565b634e487b7160e01b82526011600452602482fd5b634e487b7160e01b83526032600452602483fd5b634e487b7160e01b81526032600452602490fd5b634e487b7160e01b86526041600452602486fd5b60648688519062461bcd60e51b825280600483015260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152fd5b90600f81166010811015612acd576f181899199a1a9b1b9c1cb0b131b232b360811b901a612aa58389612b5d565b5360041c908015612ab95760001901612850565b634e487b7160e01b86526011600452602486fd5b634e487b7160e01b87526032600452602487fd5b634e487b7160e01b85526032600452602485fd5b634e487b7160e01b84526032600452602484fd5b60ff60075460a01c16612b1857565b60405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606490fd5b908151811015612b6e570160200190565b634e487b7160e01b600052603260045260246000fd5b818110612b8f575050565b60008155600101612b84565b15612ba257565b60405162461bcd60e51b815260206004820152601c60248201527f50617373706f727420496e666f20446f6573204e6f74204578697374000000006044820152606490fd5b15612bee57565b60405162461bcd60e51b815260206004820152600e60248201527f416c7265616479204d696e7465640000000000000000000000000000000000006044820152606490fd5b15612c3a57565b60405162461bcd60e51b815260206004820152600e60248201527f4e6f7420456e6f756768204574680000000000000000000000000000000000006044820152606490fd5b60001981146112a15760010190565b9190811015612b6e5760051b0190565b356001600160a01b038116810361035c5790565b8015612d685780816000925b612d545750612ccc82611f97565b91612cda6040519384611f75565b80835281601f19612cea83611f97565b013660208601375b612cfb57505090565b600181106112a1576000190190600a906030828206801982116112a1570160f81b7fff000000000000000000000000000000000000000000000000000000000000001660001a612d4b8486612b5d565b53049081612cf2565b91612d60600a91612c7f565b920480612cbe565b50604051612d7581611f59565b60018152600360fc1b602082015290565b63ffffffff60e01b16637965db0b60e01b8114908115612da4575090565b6301ffc9a760e01b1491905056fea164736f6c634300080f000a000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000078c3fe26a5df8347c1b1225aa5f85058f3da8a1900000000000000000000000000000000000000000000000000000000000000104e5072656d69756d50617373706f72740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e50500000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608080604052600436101561001357600080fd5b60003560e01c90816301ffc9a714611da15750806306fdde0314611cfe578063081812fc14611ce0578063093d381614611c78578063095ea7b314611c1957806311fecb4e1461193e5780631249c58b146118ca5780631341adc0146118965780631581b6001461186f578063174a37281461184b57806318160ddd1461182d57806323acdd68146117fe57806323b872dd146117da578063248a9ca3146117ab5780632a0acc6a146117885780632c65cd54146117525780632f2ff15d146116ae57806336568abe1461160e5780633ab1a494146115cc5780633ccfd60b146115915780633d2493bf146115705780633f4ba83a146114cd57806342842e0e1461149a578063469c02251461144c5780634f558e791461140d578063537924ef146110c45780635468166f1461103657806355f804b314610eef578063560b789114610eaf5780635c975abb14610e895780635f1b1b8614610e105780636352211e14610de15780636c0360eb14610d3b57806370a0823114610d10578063715018a614610cb057806372aba23414610c7e5780637cb6475914610c5d5780638456cb5914610bec5780638da5cb5b14610bc55780638f449a0514610a8c57806391d1485414610a3e57806395d89b4114610998578063a217fddf1461097c578063a22cb46514610912578063a4ca6802146108d5578063b88d4fde1461084f578063c4be715314610813578063c668286214610731578063c87b56dd1461058c578063d547741f14610560578063d6dc6f5514610542578063da3ef23f146103d9578063e985e9c514610382578063ecc70697146103615763f2fde38b1461027c57600080fd5b3461035c57602036600319011261035c57610295611e7f565b61029d6120da565b6001600160a01b038091169081156102f15760009160075491816001600160a01b031984161760075560405192167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08484a3f35b60405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608490fd5b600080fd5b3461035c57602036600319011261035c5761037a6127c9565b600435600855005b3461035c57604036600319011261035c5761039b611e7f565b6103a3611e95565b906001600160a01b03809116600052600660205260406000209116600052602052602060ff604060002054166040519015158152f35b3461035c576103e736611fea565b6103ef6127c9565b805167ffffffffffffffff811161052c5761040b600b54612029565b601f81116104d2575b50602080601f831160011461045157508192600092610446575b50508160011b916000199060031b1c191617600b555b005b01519050828061042e565b90601f19831693600b6000527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9926000905b8682106104ba57505083600195106104a1575b505050811b01600b55005b015160001960f88460031b161c19169055828080610496565b80600185968294968601518155019501930190610483565b61051c90600b6000527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9601f840160051c81019160208510610522575b601f0160051c0190612b84565b82610414565b909150819061050f565b634e487b7160e01b600052604160045260246000fd5b3461035c57600036600319011261035c576020600854604051908152f35b3461035c57604036600319011261035c5761044461057c611e95565b6105846120da565b600435612063565b3461035c5760208060031936011261035c576105a9600435612cb2565b906040519182826000600a54936105bf85612029565b6001958487821691826000146107125750506001146106b4575b5080826105ea925194859201611e25565b01600090600b54936105fb85612029565b94818116908115610698575060011461063c575b5050610624925003601f198101845283611f75565b610638604051928284938452830190611e5a565b0390f35b939150600b6000527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9936000905b8684831061068257505050610624935001858061060f565b865483850152958101958895509091019061066a565b9150506106249491925060ff191682528015150201858061060f565b909150600a6000527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8856000915b8383106106f95750505083018201906105ea6105d9565b80548a84018701528996508895909201918791016106e2565b60ff191687820152821515909202860190910192506105ea90506105d9565b3461035c57600036600319011261035c576040516000600b5461075381612029565b808452906001908181169081156107ec5750600114610791575b6106388461077d81860382611f75565b604051918291602083526020830190611e5a565b600b600090815292507f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db95b8284106107d457505050810160200161077d8261076d565b805460208587018101919091529093019281016107bc565b60ff191660208087019190915292151560051b8501909201925061077d915083905061076d565b3461035c57604036600319011261035c5760ff61082e611edc565b6108366127c9565b16600052600f6020526024356040600020556000604051f35b3461035c57608036600319011261035c57610868611e7f565b610870611e95565b906064359060443567ffffffffffffffff831161035c573660238401121561035c57610444936108ad6108d0943690602481600401359101611fb3565b926108c06108bb8433612355565b61226d565b6108cb8383836123cf565b612768565b6122df565b3461035c57602036600319011261035c576108ee611edc565b6108f66127c9565b61ff00600e549160081b169061ff00191617600e556000604051f35b3461035c57604036600319011261035c5761092b611e7f565b506024358015150361035c5760405162461bcd60e51b815260206004820152601260248201527f5468697320746f6b656e206973205342542e00000000000000000000000000006044820152606490fd5b3461035c57600036600319011261035c57602060405160008152f35b3461035c57600036600319011261035c5760405160006002546109ba81612029565b808452906001908181169081156107ec57506001146109e3576106388461077d81860382611f75565b6002600090815292507f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace5b828410610a2657505050810160200161077d8261076d565b80546020858701810191909152909301928101610a0e565b3461035c57604036600319011261035c57610a57611e95565b60043560005260006020526001600160a01b0360406000209116600052602052602060ff604060002054166040519015158152f35b600036600319011261035c57336000527ff8003d821d733a08b1886da1bfe920806afecc2a49f051a88b3dbb79d59c557f60806010602090808252610ad76040600020541515612b9b565b336000528082526002604060002001544210600014610b6e573360005280825260ff60016040600020015416600052600f8252610b1b604060002054341015612c33565b60085433600052818352610b3860026040600020019182546123c3565b90555b3360005281526040600020549060ff600160406000200154169060405192835233908301526040820152346060820152a1005b60ff600e5416600052600f8252610b8c604060002054341015612c33565b610b98600854426123c3565b3360005281835260026040600020015560ff600e541660016040600020019060ff19825416179055610b3b565b3461035c57600036600319011261035c5760206001600160a01b0360075416604051908152f35b3461035c57600036600319011261035c57610c056127c9565b610c0d612b09565b7401000000000000000000000000000000000000000060ff60a01b1960075416176007557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586020604051338152a1005b3461035c57602036600319011261035c57610c766127c9565b600435600c55005b3461035c57600036600319011261035c5760ff600e5460081c16600052600f6020526020604060002054604051908152f35b3461035c57600036600319011261035c57610cc96120da565b60006007546001600160a01b03198116600755816001600160a01b0360405192167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08284a3f35b3461035c57602036600319011261035c576020610d33610d2e611e7f565b612132565b604051908152f35b3461035c57600036600319011261035c576040516000600a54610d5d81612029565b808452906001908181169081156107ec5750600114610d86576106388461077d81860382611f75565b600a600090815292507fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a85b828410610dc957505050810160200161077d8261076d565b80546020858701810191909152909301928101610db1565b3461035c57602036600319011261035c576020610dff600435612209565b6001600160a01b0360405191168152f35b3461035c57600036600319011261035c57610e296127c9565b610e34600b54612029565b601f8111610e44575b6000600b55005b601f7f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db9910160051c8101905b818110610e7d5750610e3d565b60008155600101610e70565b3461035c57600036600319011261035c57602060ff60075460a01c166040519015158152f35b3461035c57602036600319011261035c576001600160a01b03610ed0611e7f565b1660005260106020526020600260406000200154604051904211158152f35b3461035c57610efd36611fea565b610f056127c9565b805167ffffffffffffffff811161052c57610f21600a54612029565b601f8111610fe7575b50602080601f8311600114610f6657508192600092610f5b575b50508160011b916000199060031b1c191617600a55005b015190508280610f44565b90601f19831693600a6000527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8926000905b868210610fcf5750508360019510610fb6575b505050811b01600a55005b015160001960f88460031b161c19169055828080610fab565b80600185968294968601518155019501930190610f98565b61103090600a6000527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8601f840160051c8101916020851061052257601f0160051c0190612b84565b82610f2a565b3461035c57602036600319011261035c576001600160a01b03611057611e7f565b60006040805161106681611f21565b82815282602082015201521660005260106020526060604060002060405161108d81611f21565b60ff825492838352604060028360018401541692602086019384520154930192835260405193845251166020830152516040820152f35b60208060031936011261035c5760043567ffffffffffffffff811161035c576110f1903690600401611eab565b6110fc929192612b09565b61110e61110833612132565b15612be7565b60ff600e5460081c169283600052600f8352611131604060002054341015612c33565b604051838101903360601b82526014815261114b81611f59565b51902091600c5492916000915b8083106113c757505050036113835781600052600f81526040600020541561133f57600d5460011991908281116112a157600101926040519261119a84611f3d565b6000845233156112fc576111c48560005260036020526001600160a01b0360406000205416151590565b6112b757336000526004835260406000209081549081116112a15760029461123d9260016108d09301905586600052600385526040600020336001600160a01b0319825416179055863360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef81604051a4863361261b565b611248600d54612c7f565b600d556010611259600854426123c3565b926040519561126787611f21565b865280860192835260408601938452336000525260406000209351845560ff6001850191511660ff19825416179055519101556000604051f35b634e487b7160e01b600052601160045260246000fd5b60405162461bcd60e51b815260048101849052601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606490fd5b6064836040519062461bcd60e51b825280600483015260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152fd5b6064906040519062461bcd60e51b82526004820152601860248201527f53616c6520506c616e20446f6573204e6f7420457869737400000000000000006044820152fd5b6064906040519062461bcd60e51b82526004820152600d60248201527f496e76616c69642070726f6f66000000000000000000000000000000000000006044820152fd5b9091926113d5848385612c8e565b3590818110156113fa5760005285526113f360406000205b93612c7f565b9190611158565b9060005285526113f360406000206113ed565b3461035c57602036600319011261035c57602061144260043560005260036020526001600160a01b0360406000205416151590565b6040519015158152f35b3461035c57602036600319011261035c576001600160a01b0361146d611e7f565b16600052601060205260ff60016040600020015416600052600f6020526020604060002054604051908152f35b3461035c576104446108d06114ae36611eec565b90604051926114bc84611f3d565b600084526108c06108bb8433612355565b3461035c57600036600319011261035c576114e66127c9565b60075460ff8160a01c161561152b5760ff60a01b19166007557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6020604051338152a1005b60405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606490fd5b3461035c57600036600319011261035c57602060ff600e5416604051908152f35b600036600319011261035c576115a56127c9565b600080806001600160a01b036009541647604051915af16115c46125eb565b501561035c57005b3461035c57602036600319011261035c576001600160a01b036115ed611e7f565b6115f56127c9565b166001600160a01b031960095416176009556000604051f35b3461035c57604036600319011261035c57611627611e95565b336001600160a01b038216036116435761044490600435612063565b60405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608490fd5b3461035c57604036600319011261035c576004356116ca611e95565b6116d26120da565b8160005260006020526001600160a01b0360406000209116908160005260205260ff604060002054161561170257005b8160005260006020526040600020816000526020526040600020600160ff1982541617905533917f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d6000604051a4005b3461035c57602036600319011261035c5760ff61176d611edc565b6117756127c9565b1660ff19600e541617600e556000604051f35b3461035c57600036600319011261035c5760206040516420a226a4a760d91b8152f35b3461035c57602036600319011261035c5760043560005260006020526020600160406000200154604051908152f35b3461035c576104446117eb36611eec565b916117f96108bb8433612355565b6123cf565b3461035c57600036600319011261035c5760ff600e5416600052600f6020526020604060002054604051908152f35b3461035c57600036600319011261035c576020600d54604051908152f35b3461035c57600036600319011261035c57602060ff600e5460081c16604051908152f35b3461035c57600036600319011261035c5760206001600160a01b0360095416604051908152f35b3461035c57602036600319011261035c5760ff6118b1611edc565b16600052600f6020526020604060002054604051908152f35b600036600319011261035c576118de612b09565b6118ea61110833612132565b60ff600e5416806000526020600f815261190b604060002054341015612c33565b81600052600f81526040600020541561133f57600d5460011991908281116112a157600101926040519261119a84611f3d565b3461035c57604036600319011261035c5760043567ffffffffffffffff811161035c5761196f903690600401611eab565b906024359160ff8316830361035c576119866127c9565b60005b81811061199257005b6119a8610d2e6119a3838587612c8e565b612c9e565b156119bc575b6119b790612c7f565b611989565b6119ca6119a3828486612c8e565b9060ff8516600052600f60205260406000205415611bd457600d5460011981116112a1576040516119fa81611f3d565b600081526001600160a01b03841615611b9057611a306001830160005260036020526001600160a01b0360406000205416151590565b611b4b576001600160a01b038416600052600460205260406000209384549460011986116112a1576108d0600293611ad59260016119b79901905560018601600052600360205260406000206001600160a01b0385166001600160a01b0319825416179055600186016001600160a01b03851660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef81604051a4600186018461261b565b611ae0600d54612c7f565b600d55611aef600854426123c3565b90600160405194611aff86611f21565b0184526001600160a01b03602085019160ff8b1683526040860193845216600052601060205260406000209351845560ff6001850191511660ff198254161790555191015590506119ae565b60405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606490fd5b606460405162461bcd60e51b815260206004820152602060248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152fd5b60405162461bcd60e51b815260206004820152601860248201527f53616c6520506c616e20446f6573204e6f7420457869737400000000000000006044820152606490fd5b3461035c57604036600319011261035c57611c32611e7f565b5060405162461bcd60e51b815260206004820152601260248201527f5468697320746f6b656e206973205342542e00000000000000000000000000006044820152606490fd5b3461035c57602036600319011261035c576001600160a01b03611c99611e7f565b611ca16127c9565b16806000526010602052611cbb6040600020541515612b9b565b600142106112a157600052601060205260001942016002604060002001556000604051f35b3461035c57602036600319011261035c576020610dff60043561222b565b3461035c57600036600319011261035c5760405160006001805490611d2282612029565b808552918181169081156107ec5750600114611d48576106388461077d81860382611f75565b600081815292507fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf65b828410611d8957505050810160200161077d8261076d565b80546020858701810191909152909301928101611d71565b3461035c57602036600319011261035c57600435906001600160e01b0319821680830361035c576020926380ac58cd60e01b8214918215611e14575b508115611e03575b8115611df3575b5015158152f35b611dfd9150612d86565b83611dec565b9050611e0e81612d86565b90611de5565b635b5e139f60e01b14915084611ddd565b918091926000905b828210611e45575011611e3e575050565b6000910152565b91508060209183015181860152018291611e2d565b90602091611e7381518092818552858086019101611e25565b601f01601f1916010190565b600435906001600160a01b038216820361035c57565b602435906001600160a01b038216820361035c57565b9181601f8401121561035c5782359167ffffffffffffffff831161035c576020808501948460051b01011161035c57565b6004359060ff8216820361035c57565b606090600319011261035c576001600160a01b0390600435828116810361035c5791602435908116810361035c579060443590565b6060810190811067ffffffffffffffff82111761052c57604052565b6020810190811067ffffffffffffffff82111761052c57604052565b6040810190811067ffffffffffffffff82111761052c57604052565b90601f8019910116810190811067ffffffffffffffff82111761052c57604052565b67ffffffffffffffff811161052c57601f01601f191660200190565b929192611fbf82611f97565b91611fcd6040519384611f75565b82948184528183011161035c578281602093846000960137010152565b602060031982011261035c576004359067ffffffffffffffff821161035c578060238301121561035c5781602461202693600401359101611fb3565b90565b90600182811c92168015612059575b602083101461204357565b634e487b7160e01b600052602260045260246000fd5b91607f1691612038565b90600091808352826020526001600160a01b036040842092169182845260205260ff60408420541661209457505050565b80835282602052604083208284526020526040832060ff1981541690557ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b3393604051a4565b6001600160a01b036007541633036120ee57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b6001600160a01b0316801561215257600052600460205260406000205490565b60405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608490fd5b156121c457565b60405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606490fd5b60005260036020526001600160a01b03604060002054166120268115156121bd565b61225361224e8260005260036020526001600160a01b0360406000205416151590565b6121bd565b60005260056020526001600160a01b036040600020541690565b1561227457565b60405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608490fd5b156122e657565b60405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608490fd5b0390fd5b906001600160a01b03808061236984612209565b1693169183831493841561239c575b508315612386575b50505090565b6123929192935061222b565b1614388080612380565b909350600052600660205260406000208260005260205260ff604060002054169238612378565b811981116112a1570190565b6123d883612209565b916001600160a01b039283809316928391160361258057821691821561252f5781158015612527575b156124e257600090848252600560205260408220906001600160a01b03199182815416905561242f86612209565b16908583604051937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258286a48383526004602052604083208054600181106124ce57600019019055848352600460205260408320805460011981116124ce5760010190558583526003602052604083208054909116851790557fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4565b634e487b7160e01b85526011600452602485fd5b60405162461bcd60e51b815260206004820152601160248201527f5468697320746f6b656e206973205342540000000000000000000000000000006044820152606490fd5b506000612401565b60405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b60405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608490fd5b3d15612616573d906125fc82611f97565b9161260a6040519384611f75565b82523d6000602084013e565b606090565b9091600091803b1561275f5761266e6020916001600160a01b039385604051958680958194630a85bd0160e11b9b8c84523360048501528560248501526044840152608060648401526084830190611e5a565b0393165af190829082612710575b50506127025761268a6125eb565b805190816126fd5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608490fd5b602001fd5b6001600160e01b0319161490565b909192506020813d8211612757575b8161272c60209383611f75565b810103126127535751906001600160e01b031982168203612750575090388061267c565b80fd5b5080fd5b3d915061271f565b50505050600190565b91926000929190813b156127bf5760209161266e9185604051958680958194630a85bd0160e11b9b8c84523360048501526001600160a01b0380951660248501526044840152608060648401526084830190611e5a565b5050505050600190565b3360009081527fff164f808567eb9100129b1d5aead1611f532533c7a4cedced7e7f0a6271f531602090815260408083205490926420a226a4a760d91b9160ff16156128155750505050565b3384519261282284611f21565b602a84528484019086368337845115612af55760308253845192600193841015612ae1576078602187015360295b848111612a775750612a35578651926080840184811067ffffffffffffffff821117612a2157885260428452868401946060368737845115612a0d57603086538451821015612a0d5790607860218601536041915b81831161299f5750505061295d57612351938693612941936129326048946128fd9a519a8b957f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008c8801525180926037880190611e25565b8401917f206973206d697373696e6720726f6c6520000000000000000000000000000000603784015251809386840190611e25565b01036028810187520185611f75565b5192839262461bcd60e51b845260048401526024830190611e5a565b60648587519062461bcd60e51b825280600483015260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152fd5b909192600f811660108110156129f9576f181899199a1a9b1b9c1cb0b131b232b360811b901a6129cf8588612b5d565b5360041c9280156129e5576000190191906128a5565b634e487b7160e01b82526011600452602482fd5b634e487b7160e01b83526032600452602483fd5b634e487b7160e01b81526032600452602490fd5b634e487b7160e01b86526041600452602486fd5b60648688519062461bcd60e51b825280600483015260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152fd5b90600f81166010811015612acd576f181899199a1a9b1b9c1cb0b131b232b360811b901a612aa58389612b5d565b5360041c908015612ab95760001901612850565b634e487b7160e01b86526011600452602486fd5b634e487b7160e01b87526032600452602487fd5b634e487b7160e01b85526032600452602485fd5b634e487b7160e01b84526032600452602484fd5b60ff60075460a01c16612b1857565b60405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606490fd5b908151811015612b6e570160200190565b634e487b7160e01b600052603260045260246000fd5b818110612b8f575050565b60008155600101612b84565b15612ba257565b60405162461bcd60e51b815260206004820152601c60248201527f50617373706f727420496e666f20446f6573204e6f74204578697374000000006044820152606490fd5b15612bee57565b60405162461bcd60e51b815260206004820152600e60248201527f416c7265616479204d696e7465640000000000000000000000000000000000006044820152606490fd5b15612c3a57565b60405162461bcd60e51b815260206004820152600e60248201527f4e6f7420456e6f756768204574680000000000000000000000000000000000006044820152606490fd5b60001981146112a15760010190565b9190811015612b6e5760051b0190565b356001600160a01b038116810361035c5790565b8015612d685780816000925b612d545750612ccc82611f97565b91612cda6040519384611f75565b80835281601f19612cea83611f97565b013660208601375b612cfb57505090565b600181106112a1576000190190600a906030828206801982116112a1570160f81b7fff000000000000000000000000000000000000000000000000000000000000001660001a612d4b8486612b5d565b53049081612cf2565b91612d60600a91612c7f565b920480612cbe565b50604051612d7581611f59565b60018152600360fc1b602082015290565b63ffffffff60e01b16637965db0b60e01b8114908115612da4575090565b6301ffc9a760e01b1491905056fea164736f6c634300080f000a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.