Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
347
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
z00tzAnchorClub
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.15;import "erc721a/contracts/extensions/ERC721AQueryable.sol";import "erc721a/contracts/interfaces/IERC721AQueryable.sol";import "@openzeppelin/contracts/access/AccessControl.sol";import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";import "operator-filter-registry/src/DefaultOperatorFilterer.sol";contract z00tzAnchorClub is DefaultOperatorFilterer, ERC721Enumerable, AccessControl {using Strings for uint256;bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");string public _URI;constructor() ERC721("z00tz Anchor Club", "ZAC") {_grantRole(DEFAULT_ADMIN_ROLE, msg.sender);_grantRole(MINTER_ROLE, msg.sender);}
1234567891011121314// SPDX-License-Identifier: MITpragma solidity ^0.8.13;import {OperatorFilterer} from "./OperatorFilterer.sol";/*** @title DefaultOperatorFilterer* @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.*/abstract contract DefaultOperatorFilterer is OperatorFilterer {address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)pragma solidity ^0.8.0;import "../ERC721.sol";import "./IERC721Enumerable.sol";/*** @dev This implements an optional extension of {ERC721} defined in the EIP that adds* enumerability of all the token ids in the contract as well as all token ids owned by each* account.*/abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {// Mapping from owner to list of owned token IDsmapping(address => mapping(uint256 => uint256)) private _ownedTokens;// Mapping from token ID to index of the owner tokens listmapping(uint256 => uint256) private _ownedTokensIndex;// Array with all token ids, used for enumerationuint256[] private _allTokens;// Mapping from token id to position in the allTokens arraymapping(uint256 => uint256) private _allTokensIndex;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.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
1234567// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.3// Creator: Chiru Labspragma solidity ^0.8.4;import '../extensions/IERC721AQueryable.sol';
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.3// Creator: Chiru Labspragma solidity ^0.8.4;import './IERC721AQueryable.sol';import '../ERC721A.sol';/*** @title ERC721AQueryable.** @dev ERC721A subclass with convenience query functions.*/abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {/*** @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.** If the `tokenId` is out of bounds:** - `addr = address(0)`* - `startTimestamp = 0`* - `burned = false`* - `extraData = 0`** If the `tokenId` is burned:
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.13;import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";/*** @title OperatorFilterer* @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another* registrant's entries in the OperatorFilterRegistry.* @dev This smart contract is meant to be inherited by token contracts so they can use the following:* - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.* - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.*/abstract contract OperatorFilterer {error OperatorNotAllowed(address operator);IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {// If an inheriting token contract is deployed to a network without the registry deployed, the modifier// will not revert, but the contract will need to be registered with the registry once it is deployed in// order for the modifier to filter addresses.if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {if (subscribe) {OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.3// Creator: Chiru Labspragma solidity ^0.8.4;import '../IERC721A.sol';/*** @dev Interface of ERC721AQueryable.*/interface IERC721AQueryable is IERC721A {/*** Invalid query range (`start` >= `stop`).*/error InvalidQueryRange();/*** @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.** If the `tokenId` is out of bounds:** - `addr = address(0)`* - `startTimestamp = 0`* - `burned = false`* - `extraData = 0`
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.3// Creator: Chiru Labspragma solidity ^0.8.4;import './IERC721A.sol';/*** @dev Interface of ERC721 token receiver.*/interface ERC721A__IERC721Receiver {function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data) external returns (bytes4);}/*** @title ERC721A** @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)* Non-Fungible Token Standard, including the Metadata extension.* Optimized for lower gas during batch mints.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)pragma solidity ^0.8.0;import "../IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional enumeration extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Enumerable is IERC721 {/*** @dev Returns the total amount of tokens stored by the contract.*/function totalSupply() external view returns (uint256);/*** @dev Returns a token ID owned by `owner` at a given `index` of its token list.* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.*/function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);/*** @dev Returns a token ID at a given `index` of all the tokens stored by the contract.* Use along with {totalSupply} to enumerate all tokens.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.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 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) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)pragma solidity ^0.8.0;import "./math/Math.sol";/*** @dev String operations.*/library Strings {bytes16 private constant _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) {unchecked {uint256 length = Math.log10(value) + 1;string memory buffer = new string(length);uint256 ptr;/// @solidity memory-safe-assemblyassembly {ptr := add(buffer, add(32, length))}
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 (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);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.13;interface IOperatorFilterRegistry {function isOperatorAllowed(address registrant, address operator) external view returns (bool);function register(address registrant) external;function registerAndSubscribe(address registrant, address subscription) external;function registerAndCopyEntries(address registrant, address registrantToCopy) external;function unregister(address addr) external;function updateOperator(address registrant, address operator, bool filtered) external;function updateOperators(address registrant, address[] calldata operators, bool filtered) external;function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;function subscribe(address registrant, address registrantToSubscribe) external;function unsubscribe(address registrant, bool copyExistingEntries) external;function subscriptionOf(address addr) external returns (address registrant);function subscribers(address registrant) external returns (address[] memory);function subscriberAt(address registrant, uint256 index) external returns (address);function copyEntriesOf(address registrant, address registrantToCopy) external;function isOperatorFiltered(address registrant, address operator) external returns (bool);function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);function filteredOperators(address addr) external returns (address[] memory);function filteredCodeHashes(address addr) external returns (bytes32[] memory);function filteredOperatorAt(address registrant, uint256 index) external returns (address);function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// ERC721A Contracts v4.2.3// Creator: Chiru Labspragma solidity ^0.8.4;/*** @dev Interface of ERC721A.*/interface IERC721A {/*** The caller must own the token or be an approved operator.*/error ApprovalCallerNotOwnerNorApproved();/*** The token does not exist.*/error ApprovalQueryForNonexistentToken();/*** Cannot query the balance for the zero address.*/error BalanceQueryForZeroAddress();/**
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.8.0) (utils/math/Math.sol)pragma solidity ^0.8.0;/*** @dev Standard math utilities missing in the Solidity language.*/library Math {enum Rounding {Down, // Toward negative infinityUp, // Toward infinityZero // Toward zero}/*** @dev Returns the largest of two numbers.*/function max(uint256 a, uint256 b) internal pure returns (uint256) {return a > b ? a : b;}/*** @dev Returns the smallest of two numbers.*/function min(uint256 a, uint256 b) internal pure returns (uint256) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.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.8.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 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);
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);
123456789101112131415161718{"optimizer": {"enabled": true,"runs": 10000},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"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":"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":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"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","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":"uint256","name":"tokenId","type":"uint256"}],"name":"safeBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeMint","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":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060408051808201825260118152703d18183a3d1020b731b437b91021b63ab160791b602080830191909152825180840190935260038352625a414360e81b9083015290733cc6cdda760b79bafa08df41ecfa224f810dceb660016daaeb6d7670e522a718067333cd4e3b15620001b1578015620000ff57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620000e057600080fd5b505af1158015620000f5573d6000803e3d6000fd5b50505050620001b1565b6001600160a01b03821615620001505760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000c5565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200019757600080fd5b505af1158015620001ac573d6000803e3d6000fd5b505050505b5060009050620001c283826200035f565b506001620001d182826200035f565b50620001e39150600090503362000215565b6200020f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63362000215565b6200042b565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff16620002b6576000828152600a602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620002753390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002e557607f821691505b6020821081036200030657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200035a57600081815260208120601f850160051c81016020861015620003355750805b601f850160051c820191505b81811015620003565782815560010162000341565b5050505b505050565b81516001600160401b038111156200037b576200037b620002ba565b62000393816200038c8454620002d0565b846200030c565b602080601f831160018114620003cb5760008415620003b25750858301515b600019600386901b1c1916600185901b17855562000356565b600085815260208120601f198616915b82811015620003fc57888601518255948401946001909101908401620003db565b50858210156200041b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612aa6806200043b6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063b4e87e8f11610097578063d539139311610071578063d5391393146103d8578063d547741f146103ff578063dbf5132514610412578063e985e9c51461042557600080fd5b8063b4e87e8f146103aa578063b88d4fde146103b2578063c87b56dd146103c557600080fd5b806395d89b41116100d357806395d89b4114610374578063a14481941461037c578063a217fddf1461038f578063a22cb4651461039757600080fd5b80636352211e1461031557806370a082311461032857806391d148541461033b57600080fd5b80632f2ff15d1161016657806341f434341161014057806341f43434146102c757806342842e0e146102dc5780634f6ccce7146102ef57806355f804b31461030257600080fd5b80632f2ff15d1461028e5780632f745c59146102a157806336568abe146102b457600080fd5b8063095ea7b3116101a2578063095ea7b31461023157806318160ddd1461024657806323b872dd14610258578063248a9ca31461026b57600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004612332565b610461565b60405190151581526020015b60405180910390f35b6101f9610472565b6040516101e891906123c5565b6102196102143660046123d8565b610504565b6040516001600160a01b0390911681526020016101e8565b61024461023f36600461240d565b61052b565b005b6008545b6040519081526020016101e8565b610244610266366004612437565b610544565b61024a6102793660046123d8565b6000908152600a602052604090206001015490565b61024461029c366004612473565b61056f565b61024a6102af36600461240d565b610594565b6102446102c2366004612473565b610641565b6102196daaeb6d7670e522a718067333cd4e81565b6102446102ea366004612437565b6106cd565b61024a6102fd3660046123d8565b6106f2565b610244610310366004612562565b610796565b6102196103233660046123d8565b6107ad565b61024a6103363660046125ab565b610812565b6101dc610349366004612473565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6101f96108ac565b61024461038a36600461240d565b6108bb565b61024a600081565b6102446103a53660046125d4565b6108ef565b6101f9610903565b6102446103c036600461260b565b610991565b6101f96103d33660046123d8565b6109be565b61024a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61024461040d366004612473565b610ab1565b6102446104203660046123d8565b610ad6565b6101dc610433366004612687565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600061046c82610b09565b92915050565b606060008054610481906126b1565b80601f01602080910402602001604051908101604052809291908181526020018280546104ad906126b1565b80156104fa5780601f106104cf576101008083540402835291602001916104fa565b820191906000526020600020905b8154815290600101906020018083116104dd57829003601f168201915b5050505050905090565b600061050f82610b5f565b506000908152600460205260409020546001600160a01b031690565b8161053581610bc6565b61053f8383610cb1565b505050565b826001600160a01b038116331461055e5761055e33610bc6565b610569848484610ddd565b50505050565b6000828152600a602052604090206001015461058a81610e64565b61053f8383610e6e565b600061059f83610812565b82106106185760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b03811633146106bf5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c660000000000000000000000000000000000606482015260840161060f565b6106c98282610f2e565b5050565b826001600160a01b03811633146106e7576106e733610bc6565b610569848484610fcf565b60006106fd60085490565b82106107715760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161060f565b6008828154811061078457610784612704565b90600052602060002001549050919050565b60006107a181610e64565b600b61053f8382612781565b6000818152600260205260408120546001600160a01b03168061046c5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604482015260640161060f565b60006001600160a01b0382166108905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e65720000000000000000000000000000000000000000000000606482015260840161060f565b506001600160a01b031660009081526003602052604090205490565b606060018054610481906126b1565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66108e581610e64565b61053f8383610fea565b816108f981610bc6565b61053f8383611004565b600b8054610910906126b1565b80601f016020809104026020016040519081016040528092919081815260200182805461093c906126b1565b80156109895780601f1061095e57610100808354040283529160200191610989565b820191906000526020600020905b81548152906001019060200180831161096c57829003601f168201915b505050505081565b836001600160a01b03811633146109ab576109ab33610bc6565b6109b78585858561100f565b5050505050565b6000818152600260205260409020546060906001600160a01b0316610a4b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161060f565b6000610a55611097565b90506000815111610a755760405180602001604052806000815250610aaa565b80610a89610a8485600161288e565b6110a6565b604051602001610a9a9291906128a6565b6040516020818303038152906040525b9392505050565b6000828152600a6020526040902060010154610acc81610e64565b61053f8383610f2e565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610b0081610e64565b6106c982611146565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061046c575061046c82611201565b6000818152600260205260409020546001600160a01b0316610bc35760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604482015260640161060f565b50565b6daaeb6d7670e522a718067333cd4e3b15610bc3576040517fc61711340000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610c4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7091906128fd565b610bc3576040517fede71dcc0000000000000000000000000000000000000000000000000000000081526001600160a01b038216600482015260240161060f565b6000610cbc826107ad565b9050806001600160a01b0316836001600160a01b031603610d455760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161060f565b336001600160a01b0382161480610d615750610d618133610433565b610dd35760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161060f565b61053f8383611257565b610de733826112dd565b610e595760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f76656400000000000000000000000000000000000000606482015260840161060f565b61053f83838361135c565b610bc381336115aa565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff166106c9576000828152600a602090815260408083206001600160a01b0385168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055610eea3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff16156106c9576000828152600a602090815260408083206001600160a01b038516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b61053f83838360405180602001604052806000815250610991565b6106c982826040518060200160405280600081525061163d565b6106c93383836116c6565b61101933836112dd565b61108b5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f76656400000000000000000000000000000000000000606482015260840161060f565b610569848484846117b2565b6060600b8054610481906126b1565b606060006110b38361183b565b600101905060008167ffffffffffffffff8111156110d3576110d361249f565b6040519080825280601f01601f1916602001820160405280156110fd576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461110757509392505050565b6000611151826107ad565b905061116181600084600161191d565b61116a826107ad565b600083815260046020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000148061046c575061046c82611a5e565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906112a4826107ad565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806112e9836107ad565b9050806001600160a01b0316846001600160a01b0316148061133057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806113545750836001600160a01b031661134984610504565b6001600160a01b0316145b949350505050565b826001600160a01b031661136f826107ad565b6001600160a01b0316146113eb5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e6572000000000000000000000000000000000000000000000000000000606482015260840161060f565b6001600160a01b0382166114665760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161060f565b611473838383600161191d565b826001600160a01b0316611486826107ad565b6001600160a01b0316146115025760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e6572000000000000000000000000000000000000000000000000000000606482015260840161060f565b600081815260046020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff166106c9576115dd81611b41565b6115e8836020611b53565b6040516020016115f992919061291a565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905262461bcd60e51b825261060f916004016123c5565b6116478383611d7c565b6116546000848484611f2d565b61053f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161060f565b816001600160a01b0316836001600160a01b0316036117275760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161060f565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117bd84848461135c565b6117c984848484611f2d565b6105695760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161060f565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611884577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106118b0576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106118ce57662386f26fc10000830492506010015b6305f5e10083106118e6576305f5e100830492506008015b61271083106118fa57612710830492506004015b6064831061190c576064830492506002015b600a831061046c5760010192915050565b611929848484846120ec565b60018111156119a05760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f727465640000000000000000000000606482015260840161060f565b816001600160a01b0385166119fc576119f781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a1f565b836001600160a01b0316856001600160a01b031614611a1f57611a1f8582612174565b6001600160a01b038416611a3b57611a3681612211565b6109b7565b846001600160a01b0316846001600160a01b0316146109b7576109b784826122c0565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480611af157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061046c57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461046c565b606061046c6001600160a01b03831660145b60606000611b6283600261299b565b611b6d90600261288e565b67ffffffffffffffff811115611b8557611b8561249f565b6040519080825280601f01601f191660200182016040528015611baf576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611be657611be6612704565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611c4957611c49612704565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000611c8584600261299b565b611c9090600161288e565b90505b6001811115611d2d577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110611cd157611cd1612704565b1a60f81b828281518110611ce757611ce7612704565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93611d26816129ba565b9050611c93565b508315610aaa5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161060f565b6001600160a01b038216611dd25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161060f565b6000818152600260205260409020546001600160a01b031615611e375760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161060f565b611e4560008383600161191d565b6000818152600260205260409020546001600160a01b031615611eaa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161060f565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156120e1576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611f8a9033908990889088906004016129d1565b6020604051808303816000875af1925050508015611fe3575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611fe091810190612a0d565b60015b612096573d808015612011576040519150601f19603f3d011682016040523d82523d6000602084013e612016565b606091505b50805160000361208e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161060f565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611354565b506001949350505050565b6001811115610569576001600160a01b03841615612132576001600160a01b0384166000908152600360205260408120805483929061212c908490612a2a565b90915550505b6001600160a01b03831615610569576001600160a01b0383166000908152600360205260408120805483929061216990849061288e565b909155505050505050565b6000600161218184610812565b61218b9190612a2a565b6000838152600760205260409020549091508082146121de576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061222390600190612a2a565b6000838152600960205260408120546008805493945090928490811061224b5761224b612704565b90600052602060002001549050806008838154811061226c5761226c612704565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122a4576122a4612a41565b6001900381819060005260206000200160009055905550505050565b60006122cb83610812565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610bc357600080fd5b60006020828403121561234457600080fd5b8135610aaa81612304565b60005b8381101561236a578181015183820152602001612352565b838111156105695750506000910152565b6000815180845261239381602086016020860161234f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000610aaa602083018461237b565b6000602082840312156123ea57600080fd5b5035919050565b80356001600160a01b038116811461240857600080fd5b919050565b6000806040838503121561242057600080fd5b612429836123f1565b946020939093013593505050565b60008060006060848603121561244c57600080fd5b612455846123f1565b9250612463602085016123f1565b9150604084013590509250925092565b6000806040838503121561248657600080fd5b82359150612496602084016123f1565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156124e9576124e961249f565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561252f5761252f61249f565b8160405280935085815286868601111561254857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561257457600080fd5b813567ffffffffffffffff81111561258b57600080fd5b8201601f8101841361259c57600080fd5b611354848235602084016124ce565b6000602082840312156125bd57600080fd5b610aaa826123f1565b8015158114610bc357600080fd5b600080604083850312156125e757600080fd5b6125f0836123f1565b91506020830135612600816125c6565b809150509250929050565b6000806000806080858703121561262157600080fd5b61262a856123f1565b9350612638602086016123f1565b925060408501359150606085013567ffffffffffffffff81111561265b57600080fd5b8501601f8101871361266c57600080fd5b61267b878235602084016124ce565b91505092959194509250565b6000806040838503121561269a57600080fd5b6126a3836123f1565b9150612496602084016123f1565b600181811c908216806126c557607f821691505b6020821081036126fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b601f82111561053f57600081815260208120601f850160051c8101602086101561275a5750805b601f850160051c820191505b8181101561277957828155600101612766565b505050505050565b815167ffffffffffffffff81111561279b5761279b61249f565b6127af816127a984546126b1565b84612733565b602080601f8311600181146127e457600084156127cc5750858301515b600019600386901b1c1916600185901b178555612779565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b8281101561283157888601518255948401946001909101908401612812565b508582101561284f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082198211156128a1576128a161285f565b500190565b600083516128b881846020880161234f565b8351908301906128cc81836020880161234f565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006020828403121561290f57600080fd5b8151610aaa816125c6565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161295281601785016020880161234f565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000601791840191820152835161298f81602884016020880161234f565b01602801949350505050565b60008160001904831182151516156129b5576129b561285f565b500290565b6000816129c9576129c961285f565b506000190190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612a03608083018461237b565b9695505050505050565b600060208284031215612a1f57600080fd5b8151610aaa81612304565b600082821015612a3c57612a3c61285f565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220c2e610c52ae9b6a2921d7e3331c16d539fa89284cbbfa0ab49e49a62c80750a064736f6c634300080f0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063b4e87e8f11610097578063d539139311610071578063d5391393146103d8578063d547741f146103ff578063dbf5132514610412578063e985e9c51461042557600080fd5b8063b4e87e8f146103aa578063b88d4fde146103b2578063c87b56dd146103c557600080fd5b806395d89b41116100d357806395d89b4114610374578063a14481941461037c578063a217fddf1461038f578063a22cb4651461039757600080fd5b80636352211e1461031557806370a082311461032857806391d148541461033b57600080fd5b80632f2ff15d1161016657806341f434341161014057806341f43434146102c757806342842e0e146102dc5780634f6ccce7146102ef57806355f804b31461030257600080fd5b80632f2ff15d1461028e5780632f745c59146102a157806336568abe146102b457600080fd5b8063095ea7b3116101a2578063095ea7b31461023157806318160ddd1461024657806323b872dd14610258578063248a9ca31461026b57600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004612332565b610461565b60405190151581526020015b60405180910390f35b6101f9610472565b6040516101e891906123c5565b6102196102143660046123d8565b610504565b6040516001600160a01b0390911681526020016101e8565b61024461023f36600461240d565b61052b565b005b6008545b6040519081526020016101e8565b610244610266366004612437565b610544565b61024a6102793660046123d8565b6000908152600a602052604090206001015490565b61024461029c366004612473565b61056f565b61024a6102af36600461240d565b610594565b6102446102c2366004612473565b610641565b6102196daaeb6d7670e522a718067333cd4e81565b6102446102ea366004612437565b6106cd565b61024a6102fd3660046123d8565b6106f2565b610244610310366004612562565b610796565b6102196103233660046123d8565b6107ad565b61024a6103363660046125ab565b610812565b6101dc610349366004612473565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6101f96108ac565b61024461038a36600461240d565b6108bb565b61024a600081565b6102446103a53660046125d4565b6108ef565b6101f9610903565b6102446103c036600461260b565b610991565b6101f96103d33660046123d8565b6109be565b61024a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61024461040d366004612473565b610ab1565b6102446104203660046123d8565b610ad6565b6101dc610433366004612687565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600061046c82610b09565b92915050565b606060008054610481906126b1565b80601f01602080910402602001604051908101604052809291908181526020018280546104ad906126b1565b80156104fa5780601f106104cf576101008083540402835291602001916104fa565b820191906000526020600020905b8154815290600101906020018083116104dd57829003601f168201915b5050505050905090565b600061050f82610b5f565b506000908152600460205260409020546001600160a01b031690565b8161053581610bc6565b61053f8383610cb1565b505050565b826001600160a01b038116331461055e5761055e33610bc6565b610569848484610ddd565b50505050565b6000828152600a602052604090206001015461058a81610e64565b61053f8383610e6e565b600061059f83610812565b82106106185760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b03811633146106bf5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c660000000000000000000000000000000000606482015260840161060f565b6106c98282610f2e565b5050565b826001600160a01b03811633146106e7576106e733610bc6565b610569848484610fcf565b60006106fd60085490565b82106107715760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161060f565b6008828154811061078457610784612704565b90600052602060002001549050919050565b60006107a181610e64565b600b61053f8382612781565b6000818152600260205260408120546001600160a01b03168061046c5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604482015260640161060f565b60006001600160a01b0382166108905760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e65720000000000000000000000000000000000000000000000606482015260840161060f565b506001600160a01b031660009081526003602052604090205490565b606060018054610481906126b1565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66108e581610e64565b61053f8383610fea565b816108f981610bc6565b61053f8383611004565b600b8054610910906126b1565b80601f016020809104026020016040519081016040528092919081815260200182805461093c906126b1565b80156109895780601f1061095e57610100808354040283529160200191610989565b820191906000526020600020905b81548152906001019060200180831161096c57829003601f168201915b505050505081565b836001600160a01b03811633146109ab576109ab33610bc6565b6109b78585858561100f565b5050505050565b6000818152600260205260409020546060906001600160a01b0316610a4b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161060f565b6000610a55611097565b90506000815111610a755760405180602001604052806000815250610aaa565b80610a89610a8485600161288e565b6110a6565b604051602001610a9a9291906128a6565b6040516020818303038152906040525b9392505050565b6000828152600a6020526040902060010154610acc81610e64565b61053f8383610f2e565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610b0081610e64565b6106c982611146565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061046c575061046c82611201565b6000818152600260205260409020546001600160a01b0316610bc35760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604482015260640161060f565b50565b6daaeb6d7670e522a718067333cd4e3b15610bc3576040517fc61711340000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610c4c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7091906128fd565b610bc3576040517fede71dcc0000000000000000000000000000000000000000000000000000000081526001600160a01b038216600482015260240161060f565b6000610cbc826107ad565b9050806001600160a01b0316836001600160a01b031603610d455760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161060f565b336001600160a01b0382161480610d615750610d618133610433565b610dd35760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161060f565b61053f8383611257565b610de733826112dd565b610e595760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f76656400000000000000000000000000000000000000606482015260840161060f565b61053f83838361135c565b610bc381336115aa565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff166106c9576000828152600a602090815260408083206001600160a01b0385168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055610eea3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff16156106c9576000828152600a602090815260408083206001600160a01b038516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b61053f83838360405180602001604052806000815250610991565b6106c982826040518060200160405280600081525061163d565b6106c93383836116c6565b61101933836112dd565b61108b5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f76656400000000000000000000000000000000000000606482015260840161060f565b610569848484846117b2565b6060600b8054610481906126b1565b606060006110b38361183b565b600101905060008167ffffffffffffffff8111156110d3576110d361249f565b6040519080825280601f01601f1916602001820160405280156110fd576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461110757509392505050565b6000611151826107ad565b905061116181600084600161191d565b61116a826107ad565b600083815260046020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000148061046c575061046c82611a5e565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906112a4826107ad565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806112e9836107ad565b9050806001600160a01b0316846001600160a01b0316148061133057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806113545750836001600160a01b031661134984610504565b6001600160a01b0316145b949350505050565b826001600160a01b031661136f826107ad565b6001600160a01b0316146113eb5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e6572000000000000000000000000000000000000000000000000000000606482015260840161060f565b6001600160a01b0382166114665760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161060f565b611473838383600161191d565b826001600160a01b0316611486826107ad565b6001600160a01b0316146115025760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e6572000000000000000000000000000000000000000000000000000000606482015260840161060f565b600081815260046020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff166106c9576115dd81611b41565b6115e8836020611b53565b6040516020016115f992919061291a565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905262461bcd60e51b825261060f916004016123c5565b6116478383611d7c565b6116546000848484611f2d565b61053f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161060f565b816001600160a01b0316836001600160a01b0316036117275760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161060f565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117bd84848461135c565b6117c984848484611f2d565b6105695760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161060f565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611884577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106118b0576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106118ce57662386f26fc10000830492506010015b6305f5e10083106118e6576305f5e100830492506008015b61271083106118fa57612710830492506004015b6064831061190c576064830492506002015b600a831061046c5760010192915050565b611929848484846120ec565b60018111156119a05760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f727465640000000000000000000000606482015260840161060f565b816001600160a01b0385166119fc576119f781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a1f565b836001600160a01b0316856001600160a01b031614611a1f57611a1f8582612174565b6001600160a01b038416611a3b57611a3681612211565b6109b7565b846001600160a01b0316846001600160a01b0316146109b7576109b784826122c0565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480611af157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061046c57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461046c565b606061046c6001600160a01b03831660145b60606000611b6283600261299b565b611b6d90600261288e565b67ffffffffffffffff811115611b8557611b8561249f565b6040519080825280601f01601f191660200182016040528015611baf576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611be657611be6612704565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611c4957611c49612704565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000611c8584600261299b565b611c9090600161288e565b90505b6001811115611d2d577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110611cd157611cd1612704565b1a60f81b828281518110611ce757611ce7612704565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93611d26816129ba565b9050611c93565b508315610aaa5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161060f565b6001600160a01b038216611dd25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161060f565b6000818152600260205260409020546001600160a01b031615611e375760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161060f565b611e4560008383600161191d565b6000818152600260205260409020546001600160a01b031615611eaa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161060f565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156120e1576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611f8a9033908990889088906004016129d1565b6020604051808303816000875af1925050508015611fe3575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611fe091810190612a0d565b60015b612096573d808015612011576040519150601f19603f3d011682016040523d82523d6000602084013e612016565b606091505b50805160000361208e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161060f565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611354565b506001949350505050565b6001811115610569576001600160a01b03841615612132576001600160a01b0384166000908152600360205260408120805483929061212c908490612a2a565b90915550505b6001600160a01b03831615610569576001600160a01b0383166000908152600360205260408120805483929061216990849061288e565b909155505050505050565b6000600161218184610812565b61218b9190612a2a565b6000838152600760205260409020549091508082146121de576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061222390600190612a2a565b6000838152600960205260408120546008805493945090928490811061224b5761224b612704565b90600052602060002001549050806008838154811061226c5761226c612704565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122a4576122a4612a41565b6001900381819060005260206000200160009055905550505050565b60006122cb83610812565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610bc357600080fd5b60006020828403121561234457600080fd5b8135610aaa81612304565b60005b8381101561236a578181015183820152602001612352565b838111156105695750506000910152565b6000815180845261239381602086016020860161234f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000610aaa602083018461237b565b6000602082840312156123ea57600080fd5b5035919050565b80356001600160a01b038116811461240857600080fd5b919050565b6000806040838503121561242057600080fd5b612429836123f1565b946020939093013593505050565b60008060006060848603121561244c57600080fd5b612455846123f1565b9250612463602085016123f1565b9150604084013590509250925092565b6000806040838503121561248657600080fd5b82359150612496602084016123f1565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156124e9576124e961249f565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561252f5761252f61249f565b8160405280935085815286868601111561254857600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561257457600080fd5b813567ffffffffffffffff81111561258b57600080fd5b8201601f8101841361259c57600080fd5b611354848235602084016124ce565b6000602082840312156125bd57600080fd5b610aaa826123f1565b8015158114610bc357600080fd5b600080604083850312156125e757600080fd5b6125f0836123f1565b91506020830135612600816125c6565b809150509250929050565b6000806000806080858703121561262157600080fd5b61262a856123f1565b9350612638602086016123f1565b925060408501359150606085013567ffffffffffffffff81111561265b57600080fd5b8501601f8101871361266c57600080fd5b61267b878235602084016124ce565b91505092959194509250565b6000806040838503121561269a57600080fd5b6126a3836123f1565b9150612496602084016123f1565b600181811c908216806126c557607f821691505b6020821081036126fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b601f82111561053f57600081815260208120601f850160051c8101602086101561275a5750805b601f850160051c820191505b8181101561277957828155600101612766565b505050505050565b815167ffffffffffffffff81111561279b5761279b61249f565b6127af816127a984546126b1565b84612733565b602080601f8311600181146127e457600084156127cc5750858301515b600019600386901b1c1916600185901b178555612779565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b8281101561283157888601518255948401946001909101908401612812565b508582101561284f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082198211156128a1576128a161285f565b500190565b600083516128b881846020880161234f565b8351908301906128cc81836020880161234f565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006020828403121561290f57600080fd5b8151610aaa816125c6565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161295281601785016020880161234f565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000601791840191820152835161298f81602884016020880161234f565b01602801949350505050565b60008160001904831182151516156129b5576129b561285f565b500290565b6000816129c9576129c961285f565b506000190190565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612a03608083018461237b565b9695505050505050565b600060208284031215612a1f57600080fd5b8151610aaa81612304565b600082821015612a3c57612a3c61285f565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220c2e610c52ae9b6a2921d7e3331c16d539fa89284cbbfa0ab49e49a62c80750a064736f6c634300080f0033
Loading...
Loading
Loading...
Loading
[ 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.