ERC-721
NFT
Overview
Max Total Supply
4,444 ATSNFT
Holders
410
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 ATSNFTLoading...
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 0x35256793...f17689f4A The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
ERC721AContract
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 20 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.9;import "@openzeppelin/contracts/access/Ownable.sol";import "@openzeppelin/contracts/finance/PaymentSplitter.sol";import "erc721a/contracts/ERC721A.sol";contract ERC721AContract is ERC721A, Ownable, PaymentSplitter {struct InitialParameters {uint256 launchpassId;string name;string symbol;string uri;uint24 maxSupply;uint24 maxPerWallet;uint24 maxPerTransaction;uint72 preSalePrice;uint72 pubSalePrice;}mapping(address => uint) public hasMinted;uint24 public maxSupply;uint24 public maxPerWallet;uint24 public maxPerTransaction;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (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 v4.4.1 (finance/PaymentSplitter.sol)pragma solidity ^0.8.0;import "../token/ERC20/utils/SafeERC20.sol";import "../utils/Address.sol";import "../utils/Context.sol";/*** @title PaymentSplitter* @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware* that the Ether will be split in this way, since it is handled transparently by the contract.** The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each* account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim* an amount proportional to the percentage of total shares they were assigned.** `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the* accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}* function.** NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and* tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you* to run tests before sending real value to this contract.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @dev Returns the amount of tokens in existence.*/function totalSupply() external view returns (uint256);/*** @dev Returns the amount of tokens owned by `account`.*/function balanceOf(address account) external view returns (uint256);/*** @dev Moves `amount` tokens from the caller's account to `recipient`.** Returns a boolean value indicating whether the operation succeeded.** Emits a {Transfer} event.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)pragma solidity ^0.8.0;import "../IERC20.sol";import "../../../utils/Address.sol";/*** @title SafeERC20* @dev Wrappers around ERC20 operations that throw on failure (when the token* contract returns false). Tokens that return no value (and instead revert or* throw on failure) are also supported, non-reverting calls are assumed to be* successful.* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.*/library SafeERC20 {using Address for address;function safeTransfer(IERC20 token,address to,uint256 value) internal {_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (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 v4.4.1 (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 `IERC721.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/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 tokenId);/*** @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 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 v4.4.1 (utils/Address.sol)pragma solidity ^0.8.0;/*** @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* ====*/
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/Strings.sol)pragma solidity ^0.8.0;/*** @dev String operations.*/library Strings {bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {// Inspired by OraclizeAPI's implementation - MIT licence// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.solif (value == 0) {return "0";}uint256 temp = value;uint256 digits;while (temp != 0) {digits++;temp /= 10;
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// Creator: Chiru Labspragma solidity ^0.8.4;import '@openzeppelin/contracts/token/ERC721/IERC721.sol';import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';import '@openzeppelin/contracts/utils/Address.sol';import '@openzeppelin/contracts/utils/Context.sol';import '@openzeppelin/contracts/utils/Strings.sol';import '@openzeppelin/contracts/utils/introspection/ERC165.sol';error ApprovalCallerNotOwnerNorApproved();error ApprovalQueryForNonexistentToken();error ApproveToCaller();error ApprovalToCurrentOwner();error BalanceQueryForZeroAddress();error MintedQueryForZeroAddress();error BurnedQueryForZeroAddress();error MintToZeroAddress();error MintZeroQuantity();error OwnerIndexOutOfBounds();error OwnerQueryForNonexistentToken();error TokenIndexOutOfBounds();
123456789101112131415161718192021{"remappings": [],"optimizer": {"enabled": true,"runs": 20},"evmVersion": "london","libraries": {},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"_payees","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"},{"internalType":"address","name":"_owner","type":"address"},{"components":[{"internalType":"uint256","name":"launchpassId","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint24","name":"maxSupply","type":"uint24"},{"internalType":"uint24","name":"maxPerWallet","type":"uint24"},{"internalType":"uint24","name":"maxPerTransaction","type":"uint24"},{"internalType":"uint72","name":"preSalePrice","type":"uint72"},{"internalType":"uint72","name":"pubSalePrice","type":"uint72"}],"internalType":"struct ERC721AContract.InitialParameters","name":"initialParameters","type":"tuple"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":[{"internalType":"address","name":"to","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":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"","type":"address"}],"name":"hasMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"launchpassId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32","name":"_root","type":"bytes32"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"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":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSalePrice","outputs":[{"internalType":"uint72","name":"","type":"uint72"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pubSalePrice","outputs":[{"internalType":"uint72","name":"","type":"uint72"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"reserve","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint24","name":"_quantity","type":"uint24"}],"name":"setMaxPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint24","name":"_quantity","type":"uint24"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint24","name":"_supply","type":"uint24"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint72","name":"_price","type":"uint72"}],"name":"setPreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setPubSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint72","name":"_price","type":"uint72"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32","name":"_root","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526010805462ffffff60d81b191690553480156200002057600080fd5b506040516200395f3803806200395f83398101604081905262000043916200095d565b838382602001518360400151816001908051906020019062000067929190620005c0565b5080516200007d906002906020840190620005c0565b5050506200009a62000094620002ab60201b60201c565b620002af565b80518251146200010c5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b60008251116200015f5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000103565b60005b8251811015620001cb57620001b683828151811062000185576200018562000a67565b6020026020010151838381518110620001a257620001a262000a67565b60200260200101516200030160201b60201c565b80620001c28162000a93565b91505062000162565b505081516011555060608101518051620001ee91601291602090910190620005c0565b5060808101516010805460a084015160c085015160e08601516101008701516001600160481b03908116600160901b02600160901b600160d81b031991909216690100000000000000000002600160481b600160901b031962ffffff94851666010000000000000216600160301b600160901b031995851663010000000265ffffffffffff1990971694909816939093179490941792909216949094179390931716919091179055620002a182620004ef565b5050505062000b06565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200036e5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000103565b60008111620003c05760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000103565b6001600160a01b0382166000908152600a6020526040902054156200043c5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000103565b600c8054600181019091557fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b0384169081179091556000908152600a60205260409020819055600854620004a690829062000aaf565b600855604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6007546001600160a01b031633146200054b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000103565b6001600160a01b038116620005b25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000103565b620005bd81620002af565b50565b828054620005ce9062000aca565b90600052602060002090601f016020900481019282620005f257600085556200063d565b82601f106200060d57805160ff19168380011785556200063d565b828001600101855582156200063d579182015b828111156200063d57825182559160200191906001019062000620565b506200064b9291506200064f565b5090565b5b808211156200064b576000815560010162000650565b634e487b7160e01b600052604160045260246000fd5b60405161012081016001600160401b0381118282101715620006a257620006a262000666565b60405290565b604051601f8201601f191681016001600160401b0381118282101715620006d357620006d362000666565b604052919050565b60006001600160401b03821115620006f757620006f762000666565b5060051b60200190565b80516001600160a01b03811681146200071957600080fd5b919050565b600082601f8301126200073057600080fd5b81516020620007496200074383620006db565b620006a8565b82815260059290921b840181019181810190868411156200076957600080fd5b8286015b848110156200078657805183529183019183016200076d565b509695505050505050565b600082601f830112620007a357600080fd5b81516001600160401b03811115620007bf57620007bf62000666565b6020620007d5601f8301601f19168201620006a8565b8281528582848701011115620007ea57600080fd5b60005b838110156200080a578581018301518282018401528201620007ed565b838111156200081c5760008385840101525b5095945050505050565b805162ffffff811681146200071957600080fd5b80516001600160481b03811681146200071957600080fd5b600061012082840312156200086657600080fd5b620008706200067c565b8251815260208301519091506001600160401b03808211156200089257600080fd5b620008a08583860162000791565b60208401526040840151915080821115620008ba57600080fd5b620008c88583860162000791565b60408401526060840151915080821115620008e257600080fd5b50620008f18482850162000791565b606083015250620009056080830162000826565b60808201526200091860a0830162000826565b60a08201526200092b60c0830162000826565b60c08201526200093e60e083016200083a565b60e0820152610100620009538184016200083a565b9082015292915050565b600080600080608085870312156200097457600080fd5b84516001600160401b03808211156200098c57600080fd5b818701915087601f830112620009a157600080fd5b81516020620009b46200074383620006db565b82815260059290921b8401810191818101908b841115620009d457600080fd5b948201945b83861015620009fd57620009ed8662000701565b82529482019490820190620009d9565b918a015191985090935050508082111562000a1757600080fd5b62000a25888389016200071e565b945062000a356040880162000701565b9350606087015191508082111562000a4c57600080fd5b5062000a5b8782880162000852565b91505092959194509250565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820162000aa85762000aa862000a7d565b5060010190565b6000821982111562000ac55762000ac562000a7d565b500190565b600181811c9082168062000adf57607f821691505b60208210810362000b0057634e487b7160e01b600052602260045260246000fd5b50919050565b612e498062000b166000396000f3fe6080604052600436106102585760003560e01c80636352211e116101405780636352211e1461061857806370a0823114610638578063715018a6146106585780637e1889611461066d57806381eaf99b1461068e5780638734418b146106a35780638b83209b146106b65780638da5cb5b146106d657806395d89b41146106eb5780639852595c14610700578063a22cb46514610720578063aeffc27d14610740578063b88d4fde14610760578063c87b56dd14610780578063cc47a40b146107a0578063ce7c2ac2146107c0578063d547cfb7146107f6578063d5abeb011461080b578063d79779b214610827578063dd26965814610847578063e33b7de314610867578063e757c17d1461087c578063e985e9c5146108a3578063eb8d2444146108ec578063f2fde38b1461090d578063fe0d8aac1461092d57600080fd5b806301ffc9a71461029d57806306fdde03146102d25780630784383e146102f4578063081812fc14610316578063095ea7b31461034357806318160ddd1461036357806319165587146103865780631bafcf6b146103a65780631f0234d8146103bc57806323b872dd146103dd5780632f745c59146103fd57806330176e131461041d5780633318e2771461043d5780633423e5481461047c57806338e21cce1461049c5780633a98ef39146104c95780633ca6fb8c146104de578063406072a9146104fe57806342842e0e1461051e578063453c23101461053e57806348b75044146105755780634b980d67146105955780634f6ccce7146105b85780635f7e265d146105d857806361f197fa146105f857600080fd5b36610298577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770333460405161028e9291906126ad565b60405180910390a1005b600080fd5b3480156102a957600080fd5b506102bd6102b83660046126dc565b61094d565b60405190151581526020015b60405180910390f35b3480156102de57600080fd5b506102e76109ba565b6040516102c99190612751565b34801561030057600080fd5b5061031461030f366004612772565b610a4c565b005b34801561032257600080fd5b5061033661033136600461278f565b610aa2565b6040516102c991906127a8565b34801561034f57600080fd5b5061031461035e3660046127d1565b610ae6565b34801561036f57600080fd5b50610378610b73565b6040519081526020016102c9565b34801561039257600080fd5b506103146103a13660046127fd565b610b92565b3480156103b257600080fd5b5061037860115481565b3480156103c857600080fd5b506010546102bd90600160d81b900460ff1681565b3480156103e957600080fd5b506103146103f836600461281a565b610ca4565b34801561040957600080fd5b506103786104183660046127d1565b610caf565b34801561042957600080fd5b506103146104383660046128f8565b610da9565b34801561044957600080fd5b5060105461046490600160901b90046001600160481b031681565b6040516001600160481b0390911681526020016102c9565b34801561048857600080fd5b506102bd6104973660046129b4565b610def565b3480156104a857600080fd5b506103786104b73660046127fd565b600f6020526000908152604090205481565b3480156104d557600080fd5b50600854610378565b3480156104ea57600080fd5b506103146104f9366004612772565b610ea0565b34801561050a57600080fd5b50610378610519366004612a03565b610eed565b34801561052a57600080fd5b5061031461053936600461281a565b610f18565b34801561054a57600080fd5b50601054610561906301000000900462ffffff1681565b60405162ffffff90911681526020016102c9565b34801561058157600080fd5b50610314610590366004612a03565b610f33565b3480156105a157600080fd5b5060105461056190600160301b900462ffffff1681565b3480156105c457600080fd5b506103786105d336600461278f565b6110dd565b3480156105e457600080fd5b506103146105f3366004612a3c565b611186565b34801561060457600080fd5b50610314610613366004612a61565b6111d9565b34801561062457600080fd5b5061033661063336600461278f565b611234565b34801561064457600080fd5b506103786106533660046127fd565b611246565b34801561066457600080fd5b50610314611294565b34801561067957600080fd5b506010546102bd90600160e81b900460ff1681565b34801561069a57600080fd5b506103146112cf565b6103146106b13660046129b4565b611313565b3480156106c257600080fd5b506103366106d136600461278f565b611698565b3480156106e257600080fd5b506103366116c8565b3480156106f757600080fd5b506102e76116d7565b34801561070c57600080fd5b5061037861071b3660046127fd565b6116e6565b34801561072c57600080fd5b5061031461073b366004612a8a565b611701565b34801561074c57600080fd5b5061031461075b366004612a61565b611796565b34801561076c57600080fd5b5061031461077b366004612ab8565b6117f1565b34801561078c57600080fd5b506102e761079b36600461278f565b61182b565b3480156107ac57600080fd5b506103146107bb3660046127d1565b611865565b3480156107cc57600080fd5b506103786107db3660046127fd565b6001600160a01b03166000908152600a602052604090205490565b34801561080257600080fd5b506102e761189e565b34801561081757600080fd5b506010546105619062ffffff1681565b34801561083357600080fd5b506103786108423660046127fd565b6118ad565b34801561085357600080fd5b50610314610862366004612a3c565b6118c8565b34801561087357600080fd5b50600954610378565b34801561088857600080fd5b5060105461046490600160481b90046001600160481b031681565b3480156108af57600080fd5b506102bd6108be366004612a03565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108f857600080fd5b506010546102bd90600160e01b900460ff1681565b34801561091957600080fd5b506103146109283660046127fd565b61191b565b34801561093957600080fd5b50610314610948366004612a3c565b6119bb565b60006001600160e01b031982166380ac58cd60e01b148061097e57506001600160e01b03198216635b5e139f60e01b145b8061099957506001600160e01b0319821663780e9d6360e01b145b806109b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546109c990612b37565b80601f01602080910402602001604051908101604052809291908181526020018280546109f590612b37565b8015610a425780601f10610a1757610100808354040283529160200191610a42565b820191906000526020600020905b815481529060010190602001808311610a2557829003601f168201915b5050505050905090565b33610a556116c8565b6001600160a01b031614610a845760405162461bcd60e51b8152600401610a7b90612b71565b60405180910390fd5b60108054911515600160e01b0260ff60e01b19909216919091179055565b6000610aad82611a52565b610aca576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610af182611234565b9050806001600160a01b0316836001600160a01b031603610b255760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b455750610b4381336108be565b155b15610b63576040516367d9dca160e11b815260040160405180910390fd5b610b6e838383611a86565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b6001600160a01b0381166000908152600a6020526040902054610bc75760405162461bcd60e51b8152600401610a7b90612ba6565b6000610bd260095490565b610bdc9047612c02565b90506000610bf38383610bee866116e6565b611ae2565b905080600003610c155760405162461bcd60e51b8152600401610a7b90612c1a565b6001600160a01b0383166000908152600b602052604081208054839290610c3d908490612c02565b925050819055508060096000828254610c569190612c02565b90915550610c6690508382611b28565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610c979291906126ad565b60405180910390a1505050565b610b6e838383611c3e565b6000610cba83611246565b8210610cd9576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610da357600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610d515750610d9b565b80516001600160a01b031615610d6657805192505b876001600160a01b0316836001600160a01b031603610d9957868403610d92575093506109b492505050565b6001909301925b505b600101610cea565b50600080fd5b33610db26116c8565b6001600160a01b031614610dd85760405162461bcd60e51b8152600401610a7b90612b71565b8051610deb906012906020840190612614565b5050565b600083815b8351811015610e93576000848281518110610e1157610e11612c65565b60200260200101519050808311610e53576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250610e80565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080610e8b81612c7b565b915050610df4565b50831490505b9392505050565b33610ea96116c8565b6001600160a01b031614610ecf5760405162461bcd60e51b8152600401610a7b90612b71565b60108054911515600160d81b0260ff60d81b19909216919091179055565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b610b6e838383604051806020016040528060008152506117f1565b6001600160a01b0381166000908152600a6020526040902054610f685760405162461bcd60e51b8152600401610a7b90612ba6565b6000610f73836118ad565b6040516370a0823160e01b81526001600160a01b038516906370a0823190610f9f9030906004016127a8565b602060405180830381865afa158015610fbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe09190612c94565b610fea9190612c02565b90506000610ffd8383610bee8787610eed565b90508060000361101f5760405162461bcd60e51b8152600401610a7b90612c1a565b6001600160a01b038085166000908152600e6020908152604080832093871683529290529081208054839290611056908490612c02565b90915550506001600160a01b0384166000908152600d602052604081208054839290611083908490612c02565b909155506110949050848483611e5a565b836001600160a01b03167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a84836040516110cf9291906126ad565b60405180910390a250505050565b600080546001600160801b031681805b8281101561116c57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906111635785830361115c5750949350505050565b6001909201915b506001016110ed565b506040516329c8c00760e21b815260040160405180910390fd5b3361118f6116c8565b6001600160a01b0316146111b55760405162461bcd60e51b8152600401610a7b90612b71565b6010805462ffffff909216600160301b0262ffffff60301b19909216919091179055565b336111e26116c8565b6001600160a01b0316146112085760405162461bcd60e51b8152600401610a7b90612b71565b601080546001600160481b03909216600160481b02600160481b600160901b0319909216919091179055565b600061123f82611eb0565b5192915050565b60006001600160a01b03821661126f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b3361129d6116c8565b6001600160a01b0316146112c35760405162461bcd60e51b8152600401610a7b90612b71565b6112cd6000611fd2565b565b336112d86116c8565b6001600160a01b0316146112fe5760405162461bcd60e51b8152600401610a7b90612b71565b6010805460ff60e81b1916600160e81b179055565b60105462ffffff8082169163010000008104821691600160301b820416906001600160481b03600160481b8204811691600160901b81049091169060ff600160e01b8204811691600160d81b900416600061136c610b73565b9050826113b15760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9903737ba1030b1ba34bb329760691b6044820152606401610a7b565b878111156113ed5760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b6044820152606401610a7b565b876113f88c83612c02565b111561145c5760405162461bcd60e51b815260206004820152602d60248201527f526571756573746564207175616e7469747920776f756c64206578636565642060448201526c3a37ba30b61039bab838363c9760991b6064820152608401610a7b565b81156115f1573461146d8c87612cad565b111561148b5760405162461bcd60e51b8152600401610a7b90612ccc565b868b11156114db5760405162461bcd60e51b815260206004820152601d60248201527f457863656564732077616c6c65742070726573616c65206c696d69742e0000006044820152606401610a7b565b336000908152600f60205260408120546114f6908d90612c02565b9050878111156115525760405162461bcd60e51b815260206004820152602160248201527f45786365656473207065722077616c6c65742070726573616c65206c696d69746044820152601760f91b6064820152608401610a7b565b336000818152600f602090815260408083208590555160609390931b6001600160601b03191690830152906034016040516020818303038152906040528051906020012090506115a3818d8d610def565b6115ea5760405162461bcd60e51b81526020600482015260186024820152772cb7ba9030b932903737ba103bb434ba32b634b9ba32b21760411b6044820152606401610a7b565b5050611681565b346115fc8c86612cad565b111561161a5760405162461bcd60e51b8152600401610a7b90612ccc565b858b11156116815760405162461bcd60e51b815260206004820152602e60248201527f4578636565647320706572207472616e73616374696f6e206c696d697420666f60448201526d3910383ab13634b19039b0b6329760911b6064820152608401610a7b565b61168b338c612024565b5050505050505050505050565b6000600c82815481106116ad576116ad612c65565b6000918252602090912001546001600160a01b031692915050565b6007546001600160a01b031690565b6060600280546109c990612b37565b6001600160a01b03166000908152600b602052604090205490565b336001600160a01b0383160361172a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3361179f6116c8565b6001600160a01b0316146117c55760405162461bcd60e51b8152600401610a7b90612b71565b601080546001600160481b03909216600160901b02600160901b600160d81b0319909216919091179055565b6117fc848484611c3e565b6118088484848461203e565b611825576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061183561189e565b61183e83612140565b60405160200161184f929190612cfc565b6040516020818303038152906040529050919050565b3361186e6116c8565b6001600160a01b0316146118945760405162461bcd60e51b8152600401610a7b90612b71565b610deb8282612024565b6060601280546109c990612b37565b6001600160a01b03166000908152600d602052604090205490565b336118d16116c8565b6001600160a01b0316146118f75760405162461bcd60e51b8152600401610a7b90612b71565b6010805462ffffff90921663010000000265ffffff00000019909216919091179055565b336119246116c8565b6001600160a01b03161461194a5760405162461bcd60e51b8152600401610a7b90612b71565b6001600160a01b0381166119af5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a7b565b6119b881611fd2565b50565b336119c46116c8565b6001600160a01b0316146119ea5760405162461bcd60e51b8152600401610a7b90612b71565b601054600160e81b900460ff1615611a385760405162461bcd60e51b815260206004820152601160248201527029bab838363c9034b9903637b1b5b2b21760791b6044820152606401610a7b565b6010805462ffffff191662ffffff92909216919091179055565b600080546001600160801b0316821080156109b4575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0384166000908152600a602052604081205490918391611b0c9086612cad565b611b169190612d41565b611b209190612d55565b949350505050565b80471015611b785760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a7b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611bc5576040519150601f19603f3d011682016040523d82523d6000602084013e611bca565b606091505b5050905080610b6e5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c20726044820152791958da5c1a595b9d081b585e481a185d99481c995d995c9d195960321b6064820152608401610a7b565b6000611c4982611eb0565b80519091506000906001600160a01b0316336001600160a01b03161480611c7757508151611c7790336108be565b80611c92575033611c8784610aa2565b6001600160a01b0316145b905080611cb257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611ce75760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611d0e57604051633a954ecd60e21b815260040160405180910390fd5b611d1e6000848460000151611a86565b6001600160a01b03858116600090815260046020908152604080832080546001600160401b03198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611e10576000546001600160801b0316811015611e1057825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610b6e8363a9059cbb60e01b8484604051602401611e799291906126ad565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612240565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611fb957600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611fb75780516001600160a01b031615611f4e579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611fb2579392505050565b611f4e565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610deb828260405180602001604052806000815250612312565b60006001600160a01b0384163b1561213557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612082903390899088908890600401612d6c565b6020604051808303816000875af19250505080156120bd575060408051601f3d908101601f191682019092526120ba91810190612da9565b60015b61211b573d8080156120eb576040519150601f19603f3d011682016040523d82523d6000602084013e6120f0565b606091505b508051600003612113576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b20565b506001949350505050565b6060816000036121675750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612191578061217b81612c7b565b915061218a9050600a83612d41565b915061216b565b6000816001600160401b038111156121ab576121ab61285b565b6040519080825280601f01601f1916602001820160405280156121d5576020820181803683370190505b5090505b8415611b20576121ea600183612d55565b91506121f7600a86612dc6565b612202906030612c02565b60f81b81838151811061221757612217612c65565b60200101906001600160f81b031916908160001a905350612239600a86612d41565b94506121d9565b6000612295826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661231f9092919063ffffffff16565b805190915015610b6e57808060200190518101906122b39190612dda565b610b6e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a7b565b610b6e838383600161232e565b6060611b2084846000856124b3565b6000546001600160801b03166001600160a01b03851661236057604051622e076360e81b815260040160405180910390fd5b836000036123815760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c018116918217600160401b6001600160401b031990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561248d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156124635750612461600088848861203e565b155b15612481576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161240c565b50600080546001600160801b0319166001600160801b0392909216919091179055611e53565b6060824710156125145760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610a7b565b843b6125625760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a7b565b600080866001600160a01b0316858760405161257e9190612df7565b60006040518083038185875af1925050503d80600081146125bb576040519150601f19603f3d011682016040523d82523d6000602084013e6125c0565b606091505b50915091506125d08282866125db565b979650505050505050565b606083156125ea575081610e99565b8251156125fa5782518084602001fd5b8160405162461bcd60e51b8152600401610a7b9190612751565b82805461262090612b37565b90600052602060002090601f0160209004810192826126425760008555612688565b82601f1061265b57805160ff1916838001178555612688565b82800160010185558215612688579182015b8281111561268857825182559160200191906001019061266d565b50612694929150612698565b5090565b5b808211156126945760008155600101612699565b6001600160a01b03929092168252602082015260400190565b6001600160e01b0319811681146119b857600080fd5b6000602082840312156126ee57600080fd5b8135610e99816126c6565b60005b838110156127145781810151838201526020016126fc565b838111156118255750506000910152565b6000815180845261273d8160208601602086016126f9565b601f01601f19169290920160200192915050565b602081526000610e996020830184612725565b80151581146119b857600080fd5b60006020828403121561278457600080fd5b8135610e9981612764565b6000602082840312156127a157600080fd5b5035919050565b6001600160a01b0391909116815260200190565b6001600160a01b03811681146119b857600080fd5b600080604083850312156127e457600080fd5b82356127ef816127bc565b946020939093013593505050565b60006020828403121561280f57600080fd5b8135610e99816127bc565b60008060006060848603121561282f57600080fd5b833561283a816127bc565b9250602084013561284a816127bc565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156128995761289961285b565b604052919050565b60006001600160401b038311156128ba576128ba61285b565b6128cd601f8401601f1916602001612871565b90508281528383830111156128e157600080fd5b828260208301376000602084830101529392505050565b60006020828403121561290a57600080fd5b81356001600160401b0381111561292057600080fd5b8201601f8101841361293157600080fd5b611b20848235602084016128a1565b600082601f83011261295157600080fd5b813560206001600160401b0382111561296c5761296c61285b565b8160051b61297b828201612871565b928352848101820192828101908785111561299557600080fd5b83870192505b848310156125d05782358252918301919083019061299b565b6000806000606084860312156129c957600080fd5b833592506020840135915060408401356001600160401b038111156129ed57600080fd5b6129f986828701612940565b9150509250925092565b60008060408385031215612a1657600080fd5b8235612a21816127bc565b91506020830135612a31816127bc565b809150509250929050565b600060208284031215612a4e57600080fd5b813562ffffff81168114610e9957600080fd5b600060208284031215612a7357600080fd5b81356001600160481b0381168114610e9957600080fd5b60008060408385031215612a9d57600080fd5b8235612aa8816127bc565b91506020830135612a3181612764565b60008060008060808587031215612ace57600080fd5b8435612ad9816127bc565b93506020850135612ae9816127bc565b92506040850135915060608501356001600160401b03811115612b0b57600080fd5b8501601f81018713612b1c57600080fd5b612b2b878235602084016128a1565b91505092959194509250565b600181811c90821680612b4b57607f821691505b602082108103612b6b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612c1557612c15612bec565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060018201612c8d57612c8d612bec565b5060010190565b600060208284031215612ca657600080fd5b5051919050565b6000816000190483118215151615612cc757612cc7612bec565b500290565b60208082526016908201527522aa241039b2b73a1034b99034b731b7b93932b1ba1760511b604082015260600190565b60008351612d0e8184602088016126f9565b835190830190612d228183602088016126f9565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b600082612d5057612d50612d2b565b500490565b600082821015612d6757612d67612bec565b500390565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d9f90830184612725565b9695505050505050565b600060208284031215612dbb57600080fd5b8151610e99816126c6565b600082612dd557612dd5612d2b565b500690565b600060208284031215612dec57600080fd5b8151610e9981612764565b60008251612e098184602087016126f9565b919091019291505056fea2646970667358221220c595cdd0899cc37abccaf139930788aa915c9aecfca0aaeb94db3691fd7bd92e64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000ffe5cbcddf2bd1b4dc3c00455d4cdccf20f77587000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000010000000000000000000000006e25cfa7e590b0d2a86c3f3d60c78e2816b74df00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000005a000000000000000000000000000000000000000000000000000000000000001b0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f5465737420436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045445535400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f6170692e77656e6d696e742e636f6d2f746f6b656e2f0000
Deployed Bytecode
0x6080604052600436106102585760003560e01c80636352211e116101405780636352211e1461061857806370a0823114610638578063715018a6146106585780637e1889611461066d57806381eaf99b1461068e5780638734418b146106a35780638b83209b146106b65780638da5cb5b146106d657806395d89b41146106eb5780639852595c14610700578063a22cb46514610720578063aeffc27d14610740578063b88d4fde14610760578063c87b56dd14610780578063cc47a40b146107a0578063ce7c2ac2146107c0578063d547cfb7146107f6578063d5abeb011461080b578063d79779b214610827578063dd26965814610847578063e33b7de314610867578063e757c17d1461087c578063e985e9c5146108a3578063eb8d2444146108ec578063f2fde38b1461090d578063fe0d8aac1461092d57600080fd5b806301ffc9a71461029d57806306fdde03146102d25780630784383e146102f4578063081812fc14610316578063095ea7b31461034357806318160ddd1461036357806319165587146103865780631bafcf6b146103a65780631f0234d8146103bc57806323b872dd146103dd5780632f745c59146103fd57806330176e131461041d5780633318e2771461043d5780633423e5481461047c57806338e21cce1461049c5780633a98ef39146104c95780633ca6fb8c146104de578063406072a9146104fe57806342842e0e1461051e578063453c23101461053e57806348b75044146105755780634b980d67146105955780634f6ccce7146105b85780635f7e265d146105d857806361f197fa146105f857600080fd5b36610298577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770333460405161028e9291906126ad565b60405180910390a1005b600080fd5b3480156102a957600080fd5b506102bd6102b83660046126dc565b61094d565b60405190151581526020015b60405180910390f35b3480156102de57600080fd5b506102e76109ba565b6040516102c99190612751565b34801561030057600080fd5b5061031461030f366004612772565b610a4c565b005b34801561032257600080fd5b5061033661033136600461278f565b610aa2565b6040516102c991906127a8565b34801561034f57600080fd5b5061031461035e3660046127d1565b610ae6565b34801561036f57600080fd5b50610378610b73565b6040519081526020016102c9565b34801561039257600080fd5b506103146103a13660046127fd565b610b92565b3480156103b257600080fd5b5061037860115481565b3480156103c857600080fd5b506010546102bd90600160d81b900460ff1681565b3480156103e957600080fd5b506103146103f836600461281a565b610ca4565b34801561040957600080fd5b506103786104183660046127d1565b610caf565b34801561042957600080fd5b506103146104383660046128f8565b610da9565b34801561044957600080fd5b5060105461046490600160901b90046001600160481b031681565b6040516001600160481b0390911681526020016102c9565b34801561048857600080fd5b506102bd6104973660046129b4565b610def565b3480156104a857600080fd5b506103786104b73660046127fd565b600f6020526000908152604090205481565b3480156104d557600080fd5b50600854610378565b3480156104ea57600080fd5b506103146104f9366004612772565b610ea0565b34801561050a57600080fd5b50610378610519366004612a03565b610eed565b34801561052a57600080fd5b5061031461053936600461281a565b610f18565b34801561054a57600080fd5b50601054610561906301000000900462ffffff1681565b60405162ffffff90911681526020016102c9565b34801561058157600080fd5b50610314610590366004612a03565b610f33565b3480156105a157600080fd5b5060105461056190600160301b900462ffffff1681565b3480156105c457600080fd5b506103786105d336600461278f565b6110dd565b3480156105e457600080fd5b506103146105f3366004612a3c565b611186565b34801561060457600080fd5b50610314610613366004612a61565b6111d9565b34801561062457600080fd5b5061033661063336600461278f565b611234565b34801561064457600080fd5b506103786106533660046127fd565b611246565b34801561066457600080fd5b50610314611294565b34801561067957600080fd5b506010546102bd90600160e81b900460ff1681565b34801561069a57600080fd5b506103146112cf565b6103146106b13660046129b4565b611313565b3480156106c257600080fd5b506103366106d136600461278f565b611698565b3480156106e257600080fd5b506103366116c8565b3480156106f757600080fd5b506102e76116d7565b34801561070c57600080fd5b5061037861071b3660046127fd565b6116e6565b34801561072c57600080fd5b5061031461073b366004612a8a565b611701565b34801561074c57600080fd5b5061031461075b366004612a61565b611796565b34801561076c57600080fd5b5061031461077b366004612ab8565b6117f1565b34801561078c57600080fd5b506102e761079b36600461278f565b61182b565b3480156107ac57600080fd5b506103146107bb3660046127d1565b611865565b3480156107cc57600080fd5b506103786107db3660046127fd565b6001600160a01b03166000908152600a602052604090205490565b34801561080257600080fd5b506102e761189e565b34801561081757600080fd5b506010546105619062ffffff1681565b34801561083357600080fd5b506103786108423660046127fd565b6118ad565b34801561085357600080fd5b50610314610862366004612a3c565b6118c8565b34801561087357600080fd5b50600954610378565b34801561088857600080fd5b5060105461046490600160481b90046001600160481b031681565b3480156108af57600080fd5b506102bd6108be366004612a03565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156108f857600080fd5b506010546102bd90600160e01b900460ff1681565b34801561091957600080fd5b506103146109283660046127fd565b61191b565b34801561093957600080fd5b50610314610948366004612a3c565b6119bb565b60006001600160e01b031982166380ac58cd60e01b148061097e57506001600160e01b03198216635b5e139f60e01b145b8061099957506001600160e01b0319821663780e9d6360e01b145b806109b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546109c990612b37565b80601f01602080910402602001604051908101604052809291908181526020018280546109f590612b37565b8015610a425780601f10610a1757610100808354040283529160200191610a42565b820191906000526020600020905b815481529060010190602001808311610a2557829003601f168201915b5050505050905090565b33610a556116c8565b6001600160a01b031614610a845760405162461bcd60e51b8152600401610a7b90612b71565b60405180910390fd5b60108054911515600160e01b0260ff60e01b19909216919091179055565b6000610aad82611a52565b610aca576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610af182611234565b9050806001600160a01b0316836001600160a01b031603610b255760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610b455750610b4381336108be565b155b15610b63576040516367d9dca160e11b815260040160405180910390fd5b610b6e838383611a86565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b6001600160a01b0381166000908152600a6020526040902054610bc75760405162461bcd60e51b8152600401610a7b90612ba6565b6000610bd260095490565b610bdc9047612c02565b90506000610bf38383610bee866116e6565b611ae2565b905080600003610c155760405162461bcd60e51b8152600401610a7b90612c1a565b6001600160a01b0383166000908152600b602052604081208054839290610c3d908490612c02565b925050819055508060096000828254610c569190612c02565b90915550610c6690508382611b28565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610c979291906126ad565b60405180910390a1505050565b610b6e838383611c3e565b6000610cba83611246565b8210610cd9576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610da357600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610d515750610d9b565b80516001600160a01b031615610d6657805192505b876001600160a01b0316836001600160a01b031603610d9957868403610d92575093506109b492505050565b6001909301925b505b600101610cea565b50600080fd5b33610db26116c8565b6001600160a01b031614610dd85760405162461bcd60e51b8152600401610a7b90612b71565b8051610deb906012906020840190612614565b5050565b600083815b8351811015610e93576000848281518110610e1157610e11612c65565b60200260200101519050808311610e53576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250610e80565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080610e8b81612c7b565b915050610df4565b50831490505b9392505050565b33610ea96116c8565b6001600160a01b031614610ecf5760405162461bcd60e51b8152600401610a7b90612b71565b60108054911515600160d81b0260ff60d81b19909216919091179055565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b610b6e838383604051806020016040528060008152506117f1565b6001600160a01b0381166000908152600a6020526040902054610f685760405162461bcd60e51b8152600401610a7b90612ba6565b6000610f73836118ad565b6040516370a0823160e01b81526001600160a01b038516906370a0823190610f9f9030906004016127a8565b602060405180830381865afa158015610fbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe09190612c94565b610fea9190612c02565b90506000610ffd8383610bee8787610eed565b90508060000361101f5760405162461bcd60e51b8152600401610a7b90612c1a565b6001600160a01b038085166000908152600e6020908152604080832093871683529290529081208054839290611056908490612c02565b90915550506001600160a01b0384166000908152600d602052604081208054839290611083908490612c02565b909155506110949050848483611e5a565b836001600160a01b03167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a84836040516110cf9291906126ad565b60405180910390a250505050565b600080546001600160801b031681805b8281101561116c57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906111635785830361115c5750949350505050565b6001909201915b506001016110ed565b506040516329c8c00760e21b815260040160405180910390fd5b3361118f6116c8565b6001600160a01b0316146111b55760405162461bcd60e51b8152600401610a7b90612b71565b6010805462ffffff909216600160301b0262ffffff60301b19909216919091179055565b336111e26116c8565b6001600160a01b0316146112085760405162461bcd60e51b8152600401610a7b90612b71565b601080546001600160481b03909216600160481b02600160481b600160901b0319909216919091179055565b600061123f82611eb0565b5192915050565b60006001600160a01b03821661126f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b3361129d6116c8565b6001600160a01b0316146112c35760405162461bcd60e51b8152600401610a7b90612b71565b6112cd6000611fd2565b565b336112d86116c8565b6001600160a01b0316146112fe5760405162461bcd60e51b8152600401610a7b90612b71565b6010805460ff60e81b1916600160e81b179055565b60105462ffffff8082169163010000008104821691600160301b820416906001600160481b03600160481b8204811691600160901b81049091169060ff600160e01b8204811691600160d81b900416600061136c610b73565b9050826113b15760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9903737ba1030b1ba34bb329760691b6044820152606401610a7b565b878111156113ed5760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b6044820152606401610a7b565b876113f88c83612c02565b111561145c5760405162461bcd60e51b815260206004820152602d60248201527f526571756573746564207175616e7469747920776f756c64206578636565642060448201526c3a37ba30b61039bab838363c9760991b6064820152608401610a7b565b81156115f1573461146d8c87612cad565b111561148b5760405162461bcd60e51b8152600401610a7b90612ccc565b868b11156114db5760405162461bcd60e51b815260206004820152601d60248201527f457863656564732077616c6c65742070726573616c65206c696d69742e0000006044820152606401610a7b565b336000908152600f60205260408120546114f6908d90612c02565b9050878111156115525760405162461bcd60e51b815260206004820152602160248201527f45786365656473207065722077616c6c65742070726573616c65206c696d69746044820152601760f91b6064820152608401610a7b565b336000818152600f602090815260408083208590555160609390931b6001600160601b03191690830152906034016040516020818303038152906040528051906020012090506115a3818d8d610def565b6115ea5760405162461bcd60e51b81526020600482015260186024820152772cb7ba9030b932903737ba103bb434ba32b634b9ba32b21760411b6044820152606401610a7b565b5050611681565b346115fc8c86612cad565b111561161a5760405162461bcd60e51b8152600401610a7b90612ccc565b858b11156116815760405162461bcd60e51b815260206004820152602e60248201527f4578636565647320706572207472616e73616374696f6e206c696d697420666f60448201526d3910383ab13634b19039b0b6329760911b6064820152608401610a7b565b61168b338c612024565b5050505050505050505050565b6000600c82815481106116ad576116ad612c65565b6000918252602090912001546001600160a01b031692915050565b6007546001600160a01b031690565b6060600280546109c990612b37565b6001600160a01b03166000908152600b602052604090205490565b336001600160a01b0383160361172a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3361179f6116c8565b6001600160a01b0316146117c55760405162461bcd60e51b8152600401610a7b90612b71565b601080546001600160481b03909216600160901b02600160901b600160d81b0319909216919091179055565b6117fc848484611c3e565b6118088484848461203e565b611825576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061183561189e565b61183e83612140565b60405160200161184f929190612cfc565b6040516020818303038152906040529050919050565b3361186e6116c8565b6001600160a01b0316146118945760405162461bcd60e51b8152600401610a7b90612b71565b610deb8282612024565b6060601280546109c990612b37565b6001600160a01b03166000908152600d602052604090205490565b336118d16116c8565b6001600160a01b0316146118f75760405162461bcd60e51b8152600401610a7b90612b71565b6010805462ffffff90921663010000000265ffffff00000019909216919091179055565b336119246116c8565b6001600160a01b03161461194a5760405162461bcd60e51b8152600401610a7b90612b71565b6001600160a01b0381166119af5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a7b565b6119b881611fd2565b50565b336119c46116c8565b6001600160a01b0316146119ea5760405162461bcd60e51b8152600401610a7b90612b71565b601054600160e81b900460ff1615611a385760405162461bcd60e51b815260206004820152601160248201527029bab838363c9034b9903637b1b5b2b21760791b6044820152606401610a7b565b6010805462ffffff191662ffffff92909216919091179055565b600080546001600160801b0316821080156109b4575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0384166000908152600a602052604081205490918391611b0c9086612cad565b611b169190612d41565b611b209190612d55565b949350505050565b80471015611b785760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a7b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611bc5576040519150601f19603f3d011682016040523d82523d6000602084013e611bca565b606091505b5050905080610b6e5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c20726044820152791958da5c1a595b9d081b585e481a185d99481c995d995c9d195960321b6064820152608401610a7b565b6000611c4982611eb0565b80519091506000906001600160a01b0316336001600160a01b03161480611c7757508151611c7790336108be565b80611c92575033611c8784610aa2565b6001600160a01b0316145b905080611cb257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611ce75760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611d0e57604051633a954ecd60e21b815260040160405180910390fd5b611d1e6000848460000151611a86565b6001600160a01b03858116600090815260046020908152604080832080546001600160401b03198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611e10576000546001600160801b0316811015611e1057825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610b6e8363a9059cbb60e01b8484604051602401611e799291906126ad565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612240565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611fb957600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611fb75780516001600160a01b031615611f4e579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611fb2579392505050565b611f4e565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610deb828260405180602001604052806000815250612312565b60006001600160a01b0384163b1561213557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612082903390899088908890600401612d6c565b6020604051808303816000875af19250505080156120bd575060408051601f3d908101601f191682019092526120ba91810190612da9565b60015b61211b573d8080156120eb576040519150601f19603f3d011682016040523d82523d6000602084013e6120f0565b606091505b508051600003612113576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b20565b506001949350505050565b6060816000036121675750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612191578061217b81612c7b565b915061218a9050600a83612d41565b915061216b565b6000816001600160401b038111156121ab576121ab61285b565b6040519080825280601f01601f1916602001820160405280156121d5576020820181803683370190505b5090505b8415611b20576121ea600183612d55565b91506121f7600a86612dc6565b612202906030612c02565b60f81b81838151811061221757612217612c65565b60200101906001600160f81b031916908160001a905350612239600a86612d41565b94506121d9565b6000612295826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661231f9092919063ffffffff16565b805190915015610b6e57808060200190518101906122b39190612dda565b610b6e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a7b565b610b6e838383600161232e565b6060611b2084846000856124b3565b6000546001600160801b03166001600160a01b03851661236057604051622e076360e81b815260040160405180910390fd5b836000036123815760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c018116918217600160401b6001600160401b031990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561248d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156124635750612461600088848861203e565b155b15612481576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161240c565b50600080546001600160801b0319166001600160801b0392909216919091179055611e53565b6060824710156125145760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610a7b565b843b6125625760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a7b565b600080866001600160a01b0316858760405161257e9190612df7565b60006040518083038185875af1925050503d80600081146125bb576040519150601f19603f3d011682016040523d82523d6000602084013e6125c0565b606091505b50915091506125d08282866125db565b979650505050505050565b606083156125ea575081610e99565b8251156125fa5782518084602001fd5b8160405162461bcd60e51b8152600401610a7b9190612751565b82805461262090612b37565b90600052602060002090601f0160209004810192826126425760008555612688565b82601f1061265b57805160ff1916838001178555612688565b82800160010185558215612688579182015b8281111561268857825182559160200191906001019061266d565b50612694929150612698565b5090565b5b808211156126945760008155600101612699565b6001600160a01b03929092168252602082015260400190565b6001600160e01b0319811681146119b857600080fd5b6000602082840312156126ee57600080fd5b8135610e99816126c6565b60005b838110156127145781810151838201526020016126fc565b838111156118255750506000910152565b6000815180845261273d8160208601602086016126f9565b601f01601f19169290920160200192915050565b602081526000610e996020830184612725565b80151581146119b857600080fd5b60006020828403121561278457600080fd5b8135610e9981612764565b6000602082840312156127a157600080fd5b5035919050565b6001600160a01b0391909116815260200190565b6001600160a01b03811681146119b857600080fd5b600080604083850312156127e457600080fd5b82356127ef816127bc565b946020939093013593505050565b60006020828403121561280f57600080fd5b8135610e99816127bc565b60008060006060848603121561282f57600080fd5b833561283a816127bc565b9250602084013561284a816127bc565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156128995761289961285b565b604052919050565b60006001600160401b038311156128ba576128ba61285b565b6128cd601f8401601f1916602001612871565b90508281528383830111156128e157600080fd5b828260208301376000602084830101529392505050565b60006020828403121561290a57600080fd5b81356001600160401b0381111561292057600080fd5b8201601f8101841361293157600080fd5b611b20848235602084016128a1565b600082601f83011261295157600080fd5b813560206001600160401b0382111561296c5761296c61285b565b8160051b61297b828201612871565b928352848101820192828101908785111561299557600080fd5b83870192505b848310156125d05782358252918301919083019061299b565b6000806000606084860312156129c957600080fd5b833592506020840135915060408401356001600160401b038111156129ed57600080fd5b6129f986828701612940565b9150509250925092565b60008060408385031215612a1657600080fd5b8235612a21816127bc565b91506020830135612a31816127bc565b809150509250929050565b600060208284031215612a4e57600080fd5b813562ffffff81168114610e9957600080fd5b600060208284031215612a7357600080fd5b81356001600160481b0381168114610e9957600080fd5b60008060408385031215612a9d57600080fd5b8235612aa8816127bc565b91506020830135612a3181612764565b60008060008060808587031215612ace57600080fd5b8435612ad9816127bc565b93506020850135612ae9816127bc565b92506040850135915060608501356001600160401b03811115612b0b57600080fd5b8501601f81018713612b1c57600080fd5b612b2b878235602084016128a1565b91505092959194509250565b600181811c90821680612b4b57607f821691505b602082108103612b6b57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612c1557612c15612bec565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060018201612c8d57612c8d612bec565b5060010190565b600060208284031215612ca657600080fd5b5051919050565b6000816000190483118215151615612cc757612cc7612bec565b500290565b60208082526016908201527522aa241039b2b73a1034b99034b731b7b93932b1ba1760511b604082015260600190565b60008351612d0e8184602088016126f9565b835190830190612d228183602088016126f9565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b600082612d5057612d50612d2b565b500490565b600082821015612d6757612d67612bec565b500390565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d9f90830184612725565b9695505050505050565b600060208284031215612dbb57600080fd5b8151610e99816126c6565b600082612dd557612dd5612d2b565b500690565b600060208284031215612dec57600080fd5b8151610e9981612764565b60008251612e098184602087016126f9565b919091019291505056fea2646970667358221220c595cdd0899cc37abccaf139930788aa915c9aecfca0aaeb94db3691fd7bd92e64736f6c634300080d0033
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.