ERC-721
NFT
Overview
Max Total Supply
9,999 OTK
Holders
4,873
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 OTKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OTK
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-08 */ /** *Submitted for verification at Etherscan.io on 2022-08-02 */ // File: @openzeppelin/contracts/utils/Strings.sol // 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.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @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); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @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); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract OTK is ERC721A, Ownable, Pausable { using Strings for uint256; uint256 public collectionSize; mapping(address => uint256) public mintList; uint256 public walletMintLimit; string private baseTokenURI; string private preRevealTokenURI; bool public revealed = false; address payable private seller = payable(0xAfebd04310a4A3f5Cbe3178B8054FC5C978a49b2); uint256 public currentId = 0; uint256 public startingPrice = 10000; uint public discount = 10; uint256 private startAt = 1659884400; constructor ( string memory _name, string memory _symbol, uint256 _collectionSize, uint256 _walletMintLimit, string memory _preRevealTokenURI ) ERC721A(_name, _symbol) { collectionSize = _collectionSize; walletMintLimit = _walletMintLimit; preRevealTokenURI = _preRevealTokenURI; } modifier callerIsUser() { require(tx.origin == msg.sender, "Caller is contract"); _; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "Token not existed"); return !revealed ? preRevealTokenURI : string(abi.encodePacked(baseTokenURI, _tokenId.toString(),".json")); } function reveal(string calldata _baseTokenURI) external onlyOwner { revealed = true; baseTokenURI = _baseTokenURI; } function _startTokenId() internal pure override returns (uint256) { return 0; } function mint() external payable callerIsUser { require(mintList[msg.sender] + 1 <= walletMintLimit, "Up to 3 mint allowed per wallet"); require(totalSupply() + 1 < collectionSize, "EXCEED_COL_SIZE"); uint256 timeElapsed = block.timestamp - startAt; require(timeElapsed >= 0, "Auction has not started"); uint timeMinutes = timeElapsed / 60; if(timeMinutes >= discount && startingPrice > 0){ uint x = timeMinutes / discount; for(uint i=0;i<x;i++){ startingPrice = startingPrice * 80 / 100; } if(startingPrice < 1){ startingPrice = 0; } } if(startingPrice > 0){ require(msg.value >= startingPrice * 10**14, "The amount of ETH sent is less than the price of token"); } mintList[msg.sender] += 1; _safeMint(msg.sender, 1); currentId += 1; if(startingPrice > 0){ uint refund = msg.value - startingPrice * 10**14; if (refund > 0) { payable(msg.sender).transfer(refund); } uint256 balance = address(this).balance; (bool success, ) = seller.call{value: balance}(""); require(success, "Address: unable to send value, recipient may have reverted"); } } function airdrop(address toAdd,uint256 quantity) external payable onlyOwner { require(quantity > 0, "Invalid quantity"); require(totalSupply() + quantity <= collectionSize, "EXCEED_COL_SIZE"); currentId += quantity; _safeMint(toAdd, quantity); } function pause() external onlyOwner { _pause(); } function unpause() external onlyOwner { _unpause(); } //The remaining amount that has not been mint function remaining() public view returns (uint256) { unchecked { return collectionSize - totalSupply(); } } function getNowMintPrice() public view returns (uint) { uint256 timeElapsed = block.timestamp - startAt; require(timeElapsed >= 0, "Auction has not started"); if(startingPrice == 0){ return startingPrice; } uint price = startingPrice; uint timeMinutes = timeElapsed / 60; if(timeMinutes >= discount && startingPrice > 0){ uint x = timeMinutes / discount; for(uint i=0;i<x;i++){ price = price * 80 / 100; } if(price < 1){ price = 0; } } return price; } function nowMintTokenId() public view returns (uint256) { return currentId; } function setPriceFree() external onlyOwner { startingPrice = 0; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_collectionSize","type":"uint256"},{"internalType":"uint256","name":"_walletMintLimit","type":"uint256"},{"internalType":"string","name":"_preRevealTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"toAdd","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"payable","type":"function"},{"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":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"discount","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":[],"name":"getNowMintPrice","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":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nowMintTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"setPriceFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526000600e60006101000a81548160ff02191690831515021790555073afebd04310a4a3f5cbe3178b8054fc5c978a49b2600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600f55612710601055600a6011556362efd3706012553480156200009957600080fd5b5060405162003ee238038062003ee28339818101604052810190620000bf919062000384565b84848160029080519060200190620000d99291906200024b565b508060039080519060200190620000f29291906200024b565b50620001036200017860201b60201c565b60008190555050506200012b6200011f6200017d60201b60201c565b6200018560201b60201c565b6000600860146101000a81548160ff0219169083151502179055508260098190555081600b8190555080600d90805190602001906200016c9291906200024b565b505050505050620005e5565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200025990620004f0565b90600052602060002090601f0160209004810192826200027d5760008555620002c9565b82601f106200029857805160ff1916838001178555620002c9565b82800160010185558215620002c9579182015b82811115620002c8578251825591602001919060010190620002ab565b5b509050620002d89190620002dc565b5090565b5b80821115620002f7576000816000905550600101620002dd565b5090565b6000620003126200030c846200047a565b62000451565b9050828152602081018484840111156200032b57600080fd5b62000338848285620004ba565b509392505050565b600082601f8301126200035257600080fd5b815162000364848260208601620002fb565b91505092915050565b6000815190506200037e81620005cb565b92915050565b600080600080600060a086880312156200039d57600080fd5b600086015167ffffffffffffffff811115620003b857600080fd5b620003c68882890162000340565b955050602086015167ffffffffffffffff811115620003e457600080fd5b620003f28882890162000340565b945050604062000405888289016200036d565b935050606062000418888289016200036d565b925050608086015167ffffffffffffffff8111156200043657600080fd5b620004448882890162000340565b9150509295509295909350565b60006200045d62000470565b90506200046b828262000526565b919050565b6000604051905090565b600067ffffffffffffffff8211156200049857620004976200058b565b5b620004a382620005ba565b9050602081019050919050565b6000819050919050565b60005b83811015620004da578082015181840152602081019050620004bd565b83811115620004ea576000848401525b50505050565b600060028204905060018216806200050957607f821691505b6020821081141562000520576200051f6200055c565b5b50919050565b6200053182620005ba565b810181811067ffffffffffffffff821117156200055357620005526200058b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005d681620004b0565b8114620005e257600080fd5b50565b6138ed80620005f56000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106ab578063d6fbf202146106e8578063e00dd16114610713578063e985e9c51461073e578063f2fde38b1461077b576101f9565b8063a22cb465146105f1578063b5190c421461061a578063b88d4fde14610645578063bef432c61461066e576101f9565b80638456cb59116100dc5780638456cb59146105685780638ba4cc3c1461057f5780638da5cb5b1461059b57806395d89b41146105c6576101f9565b806370a08231146104be578063715018a6146104fb57806374c2856114610512578063778777011461053d576101f9565b80633f4ba83a11610190578063518302271161015f57806351830227146103d557806355234ec0146104005780635c975abb1461042b5780636352211e146104565780636b6f4a9d14610493576101f9565b80633f4ba83a1461034157806342842e0e1461035857806345c0f533146103815780634c261247146103ac576101f9565b8063095ea7b3116101cc578063095ea7b3146102ba5780631249c58b146102e357806318160ddd146102ed57806323b872dd14610318576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc1461026657806308b852db146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612b27565b6107a4565b6040516102329190612fcb565b60405180910390f35b34801561024757600080fd5b50610250610836565b60405161025d9190612fe6565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612bbe565b6108c8565b60405161029a9190612f64565b60405180910390f35b3480156102af57600080fd5b506102b8610944565b005b3480156102c657600080fd5b506102e160048036038101906102dc9190612aeb565b6109ca565b005b6102eb610b0b565b005b3480156102f957600080fd5b50610302610f80565b60405161030f9190613188565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a91906129e5565b610f97565b005b34801561034d57600080fd5b506103566112bc565b005b34801561036457600080fd5b5061037f600480360381019061037a91906129e5565b611342565b005b34801561038d57600080fd5b50610396611362565b6040516103a39190613188565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce9190612b79565b611368565b005b3480156103e157600080fd5b506103ea611415565b6040516103f79190612fcb565b60405180910390f35b34801561040c57600080fd5b50610415611428565b6040516104229190613188565b60405180910390f35b34801561043757600080fd5b5061044061143b565b60405161044d9190612fcb565b60405180910390f35b34801561046257600080fd5b5061047d60048036038101906104789190612bbe565b611452565b60405161048a9190612f64565b60405180910390f35b34801561049f57600080fd5b506104a8611464565b6040516104b59190613188565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190612980565b61146a565b6040516104f29190613188565b60405180910390f35b34801561050757600080fd5b50610510611523565b005b34801561051e57600080fd5b506105276115ab565b6040516105349190613188565b60405180910390f35b34801561054957600080fd5b506105526115b1565b60405161055f9190613188565b60405180910390f35b34801561057457600080fd5b5061057d6116b5565b005b61059960048036038101906105949190612aeb565b61173b565b005b3480156105a757600080fd5b506105b0611878565b6040516105bd9190612f64565b60405180910390f35b3480156105d257600080fd5b506105db6118a2565b6040516105e89190612fe6565b60405180910390f35b3480156105fd57600080fd5b5061061860048036038101906106139190612aaf565b611934565b005b34801561062657600080fd5b5061062f611aac565b60405161063c9190613188565b60405180910390f35b34801561065157600080fd5b5061066c60048036038101906106679190612a34565b611ab6565b005b34801561067a57600080fd5b5061069560048036038101906106909190612980565b611b29565b6040516106a29190613188565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190612bbe565b611b41565b6040516106df9190612fe6565b60405180910390f35b3480156106f457600080fd5b506106fd611c63565b60405161070a9190613188565b60405180910390f35b34801561071f57600080fd5b50610728611c69565b6040516107359190613188565b60405180910390f35b34801561074a57600080fd5b50610765600480360381019061076091906129a9565b611c6f565b6040516107729190612fcb565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d9190612980565b611d03565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ff57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061082f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461084590613427565b80601f016020809104026020016040519081016040528092919081815260200182805461087190613427565b80156108be5780601f10610893576101008083540402835291602001916108be565b820191906000526020600020905b8154815290600101906020018083116108a157829003601f168201915b5050505050905090565b60006108d382611dfb565b610909576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61094c611e5a565b73ffffffffffffffffffffffffffffffffffffffff1661096a611878565b73ffffffffffffffffffffffffffffffffffffffff16146109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790613148565b60405180910390fd5b6000601081905550565b60006109d582611452565b90508073ffffffffffffffffffffffffffffffffffffffff166109f6611e62565b73ffffffffffffffffffffffffffffffffffffffff1614610a5957610a2281610a1d611e62565b611c6f565b610a58576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090613168565b60405180910390fd5b600b546001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bc8919061325c565b1115610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090613108565b60405180910390fd5b6009546001610c16610f80565b610c20919061325c565b10610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5790613028565b60405180910390fd5b600060125442610c70919061333d565b90506000811015610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90613128565b60405180910390fd5b6000603c82610cc591906132b2565b90506011548110158015610cdb57506000601054115b15610d4857600060115482610cf091906132b2565b905060005b81811015610d315760646050601054610d0e91906132e3565b610d1891906132b2565b6010819055508080610d299061348a565b915050610cf5565b5060016010541015610d465760006010819055505b505b60006010541115610daa57655af3107a4000601054610d6791906132e3565b341015610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da0906130e8565b60405180910390fd5b5b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dfa919061325c565b92505081905550610e0c336001611e6a565b6001600f6000828254610e1f919061325c565b9250508190555060006010541115610f7c576000655af3107a4000601054610e4791906132e3565b34610e52919061333d565b90506000811115610ea5573373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ea3573d6000803e3d6000fd5b505b60004790506000600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610ef290612f4f565b60006040518083038185875af1925050503d8060008114610f2f576040519150601f19603f3d011682016040523d82523d6000602084013e610f34565b606091505b5050905080610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f90613068565b60405180910390fd5b5050505b5050565b6000610f8a611e88565b6001546000540303905090565b6000610fa282611e8d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611009576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061101584611f5b565b9150915061102b8187611026611e62565b611f7d565b611077576110408661103b611e62565b611c6f565b611076576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156110de576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110eb8686866001611fc1565b80156110f657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506111c4856111a0888887611fc7565b7c020000000000000000000000000000000000000000000000000000000017611fef565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561124c57600060018501905060006004600083815260200190815260200160002054141561124a576000548114611249578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112b4868686600161201a565b505050505050565b6112c4611e5a565b73ffffffffffffffffffffffffffffffffffffffff166112e2611878565b73ffffffffffffffffffffffffffffffffffffffff1614611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613148565b60405180910390fd5b611340612020565b565b61135d83838360405180602001604052806000815250611ab6565b505050565b60095481565b611370611e5a565b73ffffffffffffffffffffffffffffffffffffffff1661138e611878565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db90613148565b60405180910390fd5b6001600e60006101000a81548160ff0219169083151502179055508181600c91906114109291906127c2565b505050565b600e60009054906101000a900460ff1681565b6000611432610f80565b60095403905090565b6000600860149054906101000a900460ff16905090565b600061145d82611e8d565b9050919050565b60115481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61152b611e5a565b73ffffffffffffffffffffffffffffffffffffffff16611549611878565b73ffffffffffffffffffffffffffffffffffffffff161461159f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159690613148565b60405180910390fd5b6115a960006120c2565b565b600b5481565b600080601254426115c2919061333d565b90506000811015611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90613128565b60405180910390fd5b6000601054141561161e576010549150506116b2565b600060105490506000603c8361163491906132b2565b9050601154811015801561164a57506000601054115b156116ab5760006011548261165f91906132b2565b905060005b8181101561169a57606460508561167b91906132e3565b61168591906132b2565b935080806116929061348a565b915050611664565b5060018310156116a957600092505b505b8193505050505b90565b6116bd611e5a565b73ffffffffffffffffffffffffffffffffffffffff166116db611878565b73ffffffffffffffffffffffffffffffffffffffff1614611731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172890613148565b60405180910390fd5b611739612188565b565b611743611e5a565b73ffffffffffffffffffffffffffffffffffffffff16611761611878565b73ffffffffffffffffffffffffffffffffffffffff16146117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae90613148565b60405180910390fd5b600081116117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f1906130c8565b60405180910390fd5b60095481611806610f80565b611810919061325c565b1115611851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184890613028565b60405180910390fd5b80600f6000828254611863919061325c565b925050819055506118748282611e6a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546118b190613427565b80601f01602080910402602001604051908101604052809291908181526020018280546118dd90613427565b801561192a5780601f106118ff5761010080835404028352916020019161192a565b820191906000526020600020905b81548152906001019060200180831161190d57829003601f168201915b5050505050905090565b61193c611e62565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119ae611e62565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5b611e62565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aa09190612fcb565b60405180910390a35050565b6000600f54905090565b611ac1848484610f97565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b2357611aec8484848461222b565b611b22576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a6020528060005260406000206000915090505481565b6060611b4c82611dfb565b611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b82906130a8565b60405180910390fd5b600e60009054906101000a900460ff1615611bd057600c611bab8361238b565b604051602001611bbc929190612f20565b604051602081830303815290604052611c5c565b600d8054611bdd90613427565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0990613427565b8015611c565780601f10611c2b57610100808354040283529160200191611c56565b820191906000526020600020905b815481529060010190602001808311611c3957829003601f168201915b50505050505b9050919050565b60105481565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d0b611e5a565b73ffffffffffffffffffffffffffffffffffffffff16611d29611878565b73ffffffffffffffffffffffffffffffffffffffff1614611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7690613148565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de690613048565b60405180910390fd5b611df8816120c2565b50565b600081611e06611e88565b11158015611e15575060005482105b8015611e53575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b611e84828260405180602001604052806000815250612538565b5050565b600090565b60008082905080611e9c611e88565b11611f2457600054811015611f235760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611f21575b6000811415611f17576004600083600190039350838152602001908152602001600020549050611eec565b8092505050611f56565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611fde8686846125d5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61202861143b565b612067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205e90613008565b60405180910390fd5b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6120ab611e5a565b6040516120b89190612f64565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61219061143b565b156121d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c790613088565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612214611e5a565b6040516122219190612f64565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612251611e62565b8786866040518563ffffffff1660e01b81526004016122739493929190612f7f565b602060405180830381600087803b15801561228d57600080fd5b505af19250505080156122be57506040513d601f19601f820116820180604052508101906122bb9190612b50565b60015b612338573d80600081146122ee576040519150601f19603f3d011682016040523d82523d6000602084013e6122f3565b606091505b50600081511415612330576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156123d3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612533565b600082905060005b600082146124055780806123ee9061348a565b915050600a826123fe91906132b2565b91506123db565b60008167ffffffffffffffff811115612447577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124795781602001600182028036833780820191505090505b5090505b6000851461252c57600182612492919061333d565b9150600a856124a191906134d3565b60306124ad919061325c565b60f81b8183815181106124e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561252591906132b2565b945061247d565b8093505050505b919050565b61254283836125de565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125d057600080549050600083820390505b612582600086838060010194508661222b565b6125b8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061256f5781600054146125cd57600080fd5b50505b505050565b60009392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561264b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612686576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126936000848385611fc1565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061270a836126fb6000866000611fc7565b612704856127b2565b17611fef565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061272e578060008190555050506127ad600084838561201a565b505050565b60006001821460e11b9050919050565b8280546127ce90613427565b90600052602060002090601f0160209004810192826127f05760008555612837565b82601f1061280957803560ff1916838001178555612837565b82800160010185558215612837579182015b8281111561283657823582559160200191906001019061281b565b5b5090506128449190612848565b5090565b5b80821115612861576000816000905550600101612849565b5090565b6000612878612873846131c8565b6131a3565b90508281526020810184848401111561289057600080fd5b61289b8482856133e5565b509392505050565b6000813590506128b28161385b565b92915050565b6000813590506128c781613872565b92915050565b6000813590506128dc81613889565b92915050565b6000815190506128f181613889565b92915050565b600082601f83011261290857600080fd5b8135612918848260208601612865565b91505092915050565b60008083601f84011261293357600080fd5b8235905067ffffffffffffffff81111561294c57600080fd5b60208301915083600182028301111561296457600080fd5b9250929050565b60008135905061297a816138a0565b92915050565b60006020828403121561299257600080fd5b60006129a0848285016128a3565b91505092915050565b600080604083850312156129bc57600080fd5b60006129ca858286016128a3565b92505060206129db858286016128a3565b9150509250929050565b6000806000606084860312156129fa57600080fd5b6000612a08868287016128a3565b9350506020612a19868287016128a3565b9250506040612a2a8682870161296b565b9150509250925092565b60008060008060808587031215612a4a57600080fd5b6000612a58878288016128a3565b9450506020612a69878288016128a3565b9350506040612a7a8782880161296b565b925050606085013567ffffffffffffffff811115612a9757600080fd5b612aa3878288016128f7565b91505092959194509250565b60008060408385031215612ac257600080fd5b6000612ad0858286016128a3565b9250506020612ae1858286016128b8565b9150509250929050565b60008060408385031215612afe57600080fd5b6000612b0c858286016128a3565b9250506020612b1d8582860161296b565b9150509250929050565b600060208284031215612b3957600080fd5b6000612b47848285016128cd565b91505092915050565b600060208284031215612b6257600080fd5b6000612b70848285016128e2565b91505092915050565b60008060208385031215612b8c57600080fd5b600083013567ffffffffffffffff811115612ba657600080fd5b612bb285828601612921565b92509250509250929050565b600060208284031215612bd057600080fd5b6000612bde8482850161296b565b91505092915050565b612bf081613371565b82525050565b612bff81613383565b82525050565b6000612c108261320e565b612c1a8185613224565b9350612c2a8185602086016133f4565b612c33816135c0565b840191505092915050565b6000612c4982613219565b612c538185613240565b9350612c638185602086016133f4565b612c6c816135c0565b840191505092915050565b6000612c8282613219565b612c8c8185613251565b9350612c9c8185602086016133f4565b80840191505092915050565b60008154612cb581613427565b612cbf8186613251565b94506001821660008114612cda5760018114612ceb57612d1e565b60ff19831686528186019350612d1e565b612cf4856131f9565b60005b83811015612d1657815481890152600182019150602081019050612cf7565b838801955050505b50505092915050565b6000612d34601483613240565b9150612d3f826135d1565b602082019050919050565b6000612d57600f83613240565b9150612d62826135fa565b602082019050919050565b6000612d7a602683613240565b9150612d8582613623565b604082019050919050565b6000612d9d603a83613240565b9150612da882613672565b604082019050919050565b6000612dc0601083613240565b9150612dcb826136c1565b602082019050919050565b6000612de3601183613240565b9150612dee826136ea565b602082019050919050565b6000612e06601083613240565b9150612e1182613713565b602082019050919050565b6000612e29603683613240565b9150612e348261373c565b604082019050919050565b6000612e4c601f83613240565b9150612e578261378b565b602082019050919050565b6000612e6f601783613240565b9150612e7a826137b4565b602082019050919050565b6000612e92600583613251565b9150612e9d826137dd565b600582019050919050565b6000612eb5602083613240565b9150612ec082613806565b602082019050919050565b6000612ed8601283613240565b9150612ee38261382f565b602082019050919050565b6000612efb600083613235565b9150612f0682613858565b600082019050919050565b612f1a816133db565b82525050565b6000612f2c8285612ca8565b9150612f388284612c77565b9150612f4382612e85565b91508190509392505050565b6000612f5a82612eee565b9150819050919050565b6000602082019050612f796000830184612be7565b92915050565b6000608082019050612f946000830187612be7565b612fa16020830186612be7565b612fae6040830185612f11565b8181036060830152612fc08184612c05565b905095945050505050565b6000602082019050612fe06000830184612bf6565b92915050565b600060208201905081810360008301526130008184612c3e565b905092915050565b6000602082019050818103600083015261302181612d27565b9050919050565b6000602082019050818103600083015261304181612d4a565b9050919050565b6000602082019050818103600083015261306181612d6d565b9050919050565b6000602082019050818103600083015261308181612d90565b9050919050565b600060208201905081810360008301526130a181612db3565b9050919050565b600060208201905081810360008301526130c181612dd6565b9050919050565b600060208201905081810360008301526130e181612df9565b9050919050565b6000602082019050818103600083015261310181612e1c565b9050919050565b6000602082019050818103600083015261312181612e3f565b9050919050565b6000602082019050818103600083015261314181612e62565b9050919050565b6000602082019050818103600083015261316181612ea8565b9050919050565b6000602082019050818103600083015261318181612ecb565b9050919050565b600060208201905061319d6000830184612f11565b92915050565b60006131ad6131be565b90506131b98282613459565b919050565b6000604051905090565b600067ffffffffffffffff8211156131e3576131e2613591565b5b6131ec826135c0565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613267826133db565b9150613272836133db565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132a7576132a6613504565b5b828201905092915050565b60006132bd826133db565b91506132c8836133db565b9250826132d8576132d7613533565b5b828204905092915050565b60006132ee826133db565b91506132f9836133db565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561333257613331613504565b5b828202905092915050565b6000613348826133db565b9150613353836133db565b92508282101561336657613365613504565b5b828203905092915050565b600061337c826133bb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134125780820151818401526020810190506133f7565b83811115613421576000848401525b50505050565b6000600282049050600182168061343f57607f821691505b6020821081141561345357613452613562565b5b50919050565b613462826135c0565b810181811067ffffffffffffffff8211171561348157613480613591565b5b80604052505050565b6000613495826133db565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134c8576134c7613504565b5b600182019050919050565b60006134de826133db565b91506134e9836133db565b9250826134f9576134f8613533565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4558434545445f434f4c5f53495a450000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f6b656e206e6f742065786973746564000000000000000000000000000000600082015250565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f54686520616d6f756e74206f66204554482073656e74206973206c657373207460008201527f68616e20746865207072696365206f6620746f6b656e00000000000000000000602082015250565b7f557020746f2033206d696e7420616c6c6f776564207065722077616c6c657400600082015250565b7f41756374696f6e20686173206e6f742073746172746564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616c6c657220697320636f6e74726163740000000000000000000000000000600082015250565b50565b61386481613371565b811461386f57600080fd5b50565b61387b81613383565b811461388657600080fd5b50565b6138928161338f565b811461389d57600080fd5b50565b6138a9816133db565b81146138b457600080fd5b5056fea26469706673582212206dabb0ae14c15fd0dcef2fb72be1b1f9a110df6dbf2bacf5ff8c3fec6f4b551f64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000054f746f6b6f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034f544b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5533327045683133566761477569664e3773726f70734865773437744543513845396f567931757a3850337a2f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106ab578063d6fbf202146106e8578063e00dd16114610713578063e985e9c51461073e578063f2fde38b1461077b576101f9565b8063a22cb465146105f1578063b5190c421461061a578063b88d4fde14610645578063bef432c61461066e576101f9565b80638456cb59116100dc5780638456cb59146105685780638ba4cc3c1461057f5780638da5cb5b1461059b57806395d89b41146105c6576101f9565b806370a08231146104be578063715018a6146104fb57806374c2856114610512578063778777011461053d576101f9565b80633f4ba83a11610190578063518302271161015f57806351830227146103d557806355234ec0146104005780635c975abb1461042b5780636352211e146104565780636b6f4a9d14610493576101f9565b80633f4ba83a1461034157806342842e0e1461035857806345c0f533146103815780634c261247146103ac576101f9565b8063095ea7b3116101cc578063095ea7b3146102ba5780631249c58b146102e357806318160ddd146102ed57806323b872dd14610318576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc1461026657806308b852db146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612b27565b6107a4565b6040516102329190612fcb565b60405180910390f35b34801561024757600080fd5b50610250610836565b60405161025d9190612fe6565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612bbe565b6108c8565b60405161029a9190612f64565b60405180910390f35b3480156102af57600080fd5b506102b8610944565b005b3480156102c657600080fd5b506102e160048036038101906102dc9190612aeb565b6109ca565b005b6102eb610b0b565b005b3480156102f957600080fd5b50610302610f80565b60405161030f9190613188565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a91906129e5565b610f97565b005b34801561034d57600080fd5b506103566112bc565b005b34801561036457600080fd5b5061037f600480360381019061037a91906129e5565b611342565b005b34801561038d57600080fd5b50610396611362565b6040516103a39190613188565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce9190612b79565b611368565b005b3480156103e157600080fd5b506103ea611415565b6040516103f79190612fcb565b60405180910390f35b34801561040c57600080fd5b50610415611428565b6040516104229190613188565b60405180910390f35b34801561043757600080fd5b5061044061143b565b60405161044d9190612fcb565b60405180910390f35b34801561046257600080fd5b5061047d60048036038101906104789190612bbe565b611452565b60405161048a9190612f64565b60405180910390f35b34801561049f57600080fd5b506104a8611464565b6040516104b59190613188565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190612980565b61146a565b6040516104f29190613188565b60405180910390f35b34801561050757600080fd5b50610510611523565b005b34801561051e57600080fd5b506105276115ab565b6040516105349190613188565b60405180910390f35b34801561054957600080fd5b506105526115b1565b60405161055f9190613188565b60405180910390f35b34801561057457600080fd5b5061057d6116b5565b005b61059960048036038101906105949190612aeb565b61173b565b005b3480156105a757600080fd5b506105b0611878565b6040516105bd9190612f64565b60405180910390f35b3480156105d257600080fd5b506105db6118a2565b6040516105e89190612fe6565b60405180910390f35b3480156105fd57600080fd5b5061061860048036038101906106139190612aaf565b611934565b005b34801561062657600080fd5b5061062f611aac565b60405161063c9190613188565b60405180910390f35b34801561065157600080fd5b5061066c60048036038101906106679190612a34565b611ab6565b005b34801561067a57600080fd5b5061069560048036038101906106909190612980565b611b29565b6040516106a29190613188565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190612bbe565b611b41565b6040516106df9190612fe6565b60405180910390f35b3480156106f457600080fd5b506106fd611c63565b60405161070a9190613188565b60405180910390f35b34801561071f57600080fd5b50610728611c69565b6040516107359190613188565b60405180910390f35b34801561074a57600080fd5b50610765600480360381019061076091906129a9565b611c6f565b6040516107729190612fcb565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d9190612980565b611d03565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ff57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061082f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461084590613427565b80601f016020809104026020016040519081016040528092919081815260200182805461087190613427565b80156108be5780601f10610893576101008083540402835291602001916108be565b820191906000526020600020905b8154815290600101906020018083116108a157829003601f168201915b5050505050905090565b60006108d382611dfb565b610909576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61094c611e5a565b73ffffffffffffffffffffffffffffffffffffffff1661096a611878565b73ffffffffffffffffffffffffffffffffffffffff16146109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790613148565b60405180910390fd5b6000601081905550565b60006109d582611452565b90508073ffffffffffffffffffffffffffffffffffffffff166109f6611e62565b73ffffffffffffffffffffffffffffffffffffffff1614610a5957610a2281610a1d611e62565b611c6f565b610a58576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090613168565b60405180910390fd5b600b546001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610bc8919061325c565b1115610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090613108565b60405180910390fd5b6009546001610c16610f80565b610c20919061325c565b10610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5790613028565b60405180910390fd5b600060125442610c70919061333d565b90506000811015610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90613128565b60405180910390fd5b6000603c82610cc591906132b2565b90506011548110158015610cdb57506000601054115b15610d4857600060115482610cf091906132b2565b905060005b81811015610d315760646050601054610d0e91906132e3565b610d1891906132b2565b6010819055508080610d299061348a565b915050610cf5565b5060016010541015610d465760006010819055505b505b60006010541115610daa57655af3107a4000601054610d6791906132e3565b341015610da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da0906130e8565b60405180910390fd5b5b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dfa919061325c565b92505081905550610e0c336001611e6a565b6001600f6000828254610e1f919061325c565b9250508190555060006010541115610f7c576000655af3107a4000601054610e4791906132e3565b34610e52919061333d565b90506000811115610ea5573373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ea3573d6000803e3d6000fd5b505b60004790506000600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610ef290612f4f565b60006040518083038185875af1925050503d8060008114610f2f576040519150601f19603f3d011682016040523d82523d6000602084013e610f34565b606091505b5050905080610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f90613068565b60405180910390fd5b5050505b5050565b6000610f8a611e88565b6001546000540303905090565b6000610fa282611e8d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611009576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061101584611f5b565b9150915061102b8187611026611e62565b611f7d565b611077576110408661103b611e62565b611c6f565b611076576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156110de576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110eb8686866001611fc1565b80156110f657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506111c4856111a0888887611fc7565b7c020000000000000000000000000000000000000000000000000000000017611fef565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561124c57600060018501905060006004600083815260200190815260200160002054141561124a576000548114611249578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112b4868686600161201a565b505050505050565b6112c4611e5a565b73ffffffffffffffffffffffffffffffffffffffff166112e2611878565b73ffffffffffffffffffffffffffffffffffffffff1614611338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132f90613148565b60405180910390fd5b611340612020565b565b61135d83838360405180602001604052806000815250611ab6565b505050565b60095481565b611370611e5a565b73ffffffffffffffffffffffffffffffffffffffff1661138e611878565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db90613148565b60405180910390fd5b6001600e60006101000a81548160ff0219169083151502179055508181600c91906114109291906127c2565b505050565b600e60009054906101000a900460ff1681565b6000611432610f80565b60095403905090565b6000600860149054906101000a900460ff16905090565b600061145d82611e8d565b9050919050565b60115481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61152b611e5a565b73ffffffffffffffffffffffffffffffffffffffff16611549611878565b73ffffffffffffffffffffffffffffffffffffffff161461159f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159690613148565b60405180910390fd5b6115a960006120c2565b565b600b5481565b600080601254426115c2919061333d565b90506000811015611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90613128565b60405180910390fd5b6000601054141561161e576010549150506116b2565b600060105490506000603c8361163491906132b2565b9050601154811015801561164a57506000601054115b156116ab5760006011548261165f91906132b2565b905060005b8181101561169a57606460508561167b91906132e3565b61168591906132b2565b935080806116929061348a565b915050611664565b5060018310156116a957600092505b505b8193505050505b90565b6116bd611e5a565b73ffffffffffffffffffffffffffffffffffffffff166116db611878565b73ffffffffffffffffffffffffffffffffffffffff1614611731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172890613148565b60405180910390fd5b611739612188565b565b611743611e5a565b73ffffffffffffffffffffffffffffffffffffffff16611761611878565b73ffffffffffffffffffffffffffffffffffffffff16146117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae90613148565b60405180910390fd5b600081116117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f1906130c8565b60405180910390fd5b60095481611806610f80565b611810919061325c565b1115611851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184890613028565b60405180910390fd5b80600f6000828254611863919061325c565b925050819055506118748282611e6a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546118b190613427565b80601f01602080910402602001604051908101604052809291908181526020018280546118dd90613427565b801561192a5780601f106118ff5761010080835404028352916020019161192a565b820191906000526020600020905b81548152906001019060200180831161190d57829003601f168201915b5050505050905090565b61193c611e62565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119ae611e62565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5b611e62565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aa09190612fcb565b60405180910390a35050565b6000600f54905090565b611ac1848484610f97565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b2357611aec8484848461222b565b611b22576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a6020528060005260406000206000915090505481565b6060611b4c82611dfb565b611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b82906130a8565b60405180910390fd5b600e60009054906101000a900460ff1615611bd057600c611bab8361238b565b604051602001611bbc929190612f20565b604051602081830303815290604052611c5c565b600d8054611bdd90613427565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0990613427565b8015611c565780601f10611c2b57610100808354040283529160200191611c56565b820191906000526020600020905b815481529060010190602001808311611c3957829003601f168201915b50505050505b9050919050565b60105481565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d0b611e5a565b73ffffffffffffffffffffffffffffffffffffffff16611d29611878565b73ffffffffffffffffffffffffffffffffffffffff1614611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7690613148565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de690613048565b60405180910390fd5b611df8816120c2565b50565b600081611e06611e88565b11158015611e15575060005482105b8015611e53575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b611e84828260405180602001604052806000815250612538565b5050565b600090565b60008082905080611e9c611e88565b11611f2457600054811015611f235760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611f21575b6000811415611f17576004600083600190039350838152602001908152602001600020549050611eec565b8092505050611f56565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611fde8686846125d5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61202861143b565b612067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205e90613008565b60405180910390fd5b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6120ab611e5a565b6040516120b89190612f64565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61219061143b565b156121d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c790613088565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612214611e5a565b6040516122219190612f64565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612251611e62565b8786866040518563ffffffff1660e01b81526004016122739493929190612f7f565b602060405180830381600087803b15801561228d57600080fd5b505af19250505080156122be57506040513d601f19601f820116820180604052508101906122bb9190612b50565b60015b612338573d80600081146122ee576040519150601f19603f3d011682016040523d82523d6000602084013e6122f3565b606091505b50600081511415612330576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156123d3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612533565b600082905060005b600082146124055780806123ee9061348a565b915050600a826123fe91906132b2565b91506123db565b60008167ffffffffffffffff811115612447577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124795781602001600182028036833780820191505090505b5090505b6000851461252c57600182612492919061333d565b9150600a856124a191906134d3565b60306124ad919061325c565b60f81b8183815181106124e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561252591906132b2565b945061247d565b8093505050505b919050565b61254283836125de565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125d057600080549050600083820390505b612582600086838060010194508661222b565b6125b8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061256f5781600054146125cd57600080fd5b50505b505050565b60009392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561264b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612686576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126936000848385611fc1565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061270a836126fb6000866000611fc7565b612704856127b2565b17611fef565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061272e578060008190555050506127ad600084838561201a565b505050565b60006001821460e11b9050919050565b8280546127ce90613427565b90600052602060002090601f0160209004810192826127f05760008555612837565b82601f1061280957803560ff1916838001178555612837565b82800160010185558215612837579182015b8281111561283657823582559160200191906001019061281b565b5b5090506128449190612848565b5090565b5b80821115612861576000816000905550600101612849565b5090565b6000612878612873846131c8565b6131a3565b90508281526020810184848401111561289057600080fd5b61289b8482856133e5565b509392505050565b6000813590506128b28161385b565b92915050565b6000813590506128c781613872565b92915050565b6000813590506128dc81613889565b92915050565b6000815190506128f181613889565b92915050565b600082601f83011261290857600080fd5b8135612918848260208601612865565b91505092915050565b60008083601f84011261293357600080fd5b8235905067ffffffffffffffff81111561294c57600080fd5b60208301915083600182028301111561296457600080fd5b9250929050565b60008135905061297a816138a0565b92915050565b60006020828403121561299257600080fd5b60006129a0848285016128a3565b91505092915050565b600080604083850312156129bc57600080fd5b60006129ca858286016128a3565b92505060206129db858286016128a3565b9150509250929050565b6000806000606084860312156129fa57600080fd5b6000612a08868287016128a3565b9350506020612a19868287016128a3565b9250506040612a2a8682870161296b565b9150509250925092565b60008060008060808587031215612a4a57600080fd5b6000612a58878288016128a3565b9450506020612a69878288016128a3565b9350506040612a7a8782880161296b565b925050606085013567ffffffffffffffff811115612a9757600080fd5b612aa3878288016128f7565b91505092959194509250565b60008060408385031215612ac257600080fd5b6000612ad0858286016128a3565b9250506020612ae1858286016128b8565b9150509250929050565b60008060408385031215612afe57600080fd5b6000612b0c858286016128a3565b9250506020612b1d8582860161296b565b9150509250929050565b600060208284031215612b3957600080fd5b6000612b47848285016128cd565b91505092915050565b600060208284031215612b6257600080fd5b6000612b70848285016128e2565b91505092915050565b60008060208385031215612b8c57600080fd5b600083013567ffffffffffffffff811115612ba657600080fd5b612bb285828601612921565b92509250509250929050565b600060208284031215612bd057600080fd5b6000612bde8482850161296b565b91505092915050565b612bf081613371565b82525050565b612bff81613383565b82525050565b6000612c108261320e565b612c1a8185613224565b9350612c2a8185602086016133f4565b612c33816135c0565b840191505092915050565b6000612c4982613219565b612c538185613240565b9350612c638185602086016133f4565b612c6c816135c0565b840191505092915050565b6000612c8282613219565b612c8c8185613251565b9350612c9c8185602086016133f4565b80840191505092915050565b60008154612cb581613427565b612cbf8186613251565b94506001821660008114612cda5760018114612ceb57612d1e565b60ff19831686528186019350612d1e565b612cf4856131f9565b60005b83811015612d1657815481890152600182019150602081019050612cf7565b838801955050505b50505092915050565b6000612d34601483613240565b9150612d3f826135d1565b602082019050919050565b6000612d57600f83613240565b9150612d62826135fa565b602082019050919050565b6000612d7a602683613240565b9150612d8582613623565b604082019050919050565b6000612d9d603a83613240565b9150612da882613672565b604082019050919050565b6000612dc0601083613240565b9150612dcb826136c1565b602082019050919050565b6000612de3601183613240565b9150612dee826136ea565b602082019050919050565b6000612e06601083613240565b9150612e1182613713565b602082019050919050565b6000612e29603683613240565b9150612e348261373c565b604082019050919050565b6000612e4c601f83613240565b9150612e578261378b565b602082019050919050565b6000612e6f601783613240565b9150612e7a826137b4565b602082019050919050565b6000612e92600583613251565b9150612e9d826137dd565b600582019050919050565b6000612eb5602083613240565b9150612ec082613806565b602082019050919050565b6000612ed8601283613240565b9150612ee38261382f565b602082019050919050565b6000612efb600083613235565b9150612f0682613858565b600082019050919050565b612f1a816133db565b82525050565b6000612f2c8285612ca8565b9150612f388284612c77565b9150612f4382612e85565b91508190509392505050565b6000612f5a82612eee565b9150819050919050565b6000602082019050612f796000830184612be7565b92915050565b6000608082019050612f946000830187612be7565b612fa16020830186612be7565b612fae6040830185612f11565b8181036060830152612fc08184612c05565b905095945050505050565b6000602082019050612fe06000830184612bf6565b92915050565b600060208201905081810360008301526130008184612c3e565b905092915050565b6000602082019050818103600083015261302181612d27565b9050919050565b6000602082019050818103600083015261304181612d4a565b9050919050565b6000602082019050818103600083015261306181612d6d565b9050919050565b6000602082019050818103600083015261308181612d90565b9050919050565b600060208201905081810360008301526130a181612db3565b9050919050565b600060208201905081810360008301526130c181612dd6565b9050919050565b600060208201905081810360008301526130e181612df9565b9050919050565b6000602082019050818103600083015261310181612e1c565b9050919050565b6000602082019050818103600083015261312181612e3f565b9050919050565b6000602082019050818103600083015261314181612e62565b9050919050565b6000602082019050818103600083015261316181612ea8565b9050919050565b6000602082019050818103600083015261318181612ecb565b9050919050565b600060208201905061319d6000830184612f11565b92915050565b60006131ad6131be565b90506131b98282613459565b919050565b6000604051905090565b600067ffffffffffffffff8211156131e3576131e2613591565b5b6131ec826135c0565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613267826133db565b9150613272836133db565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132a7576132a6613504565b5b828201905092915050565b60006132bd826133db565b91506132c8836133db565b9250826132d8576132d7613533565b5b828204905092915050565b60006132ee826133db565b91506132f9836133db565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561333257613331613504565b5b828202905092915050565b6000613348826133db565b9150613353836133db565b92508282101561336657613365613504565b5b828203905092915050565b600061337c826133bb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134125780820151818401526020810190506133f7565b83811115613421576000848401525b50505050565b6000600282049050600182168061343f57607f821691505b6020821081141561345357613452613562565b5b50919050565b613462826135c0565b810181811067ffffffffffffffff8211171561348157613480613591565b5b80604052505050565b6000613495826133db565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134c8576134c7613504565b5b600182019050919050565b60006134de826133db565b91506134e9836133db565b9250826134f9576134f8613533565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4558434545445f434f4c5f53495a450000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f6b656e206e6f742065786973746564000000000000000000000000000000600082015250565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f54686520616d6f756e74206f66204554482073656e74206973206c657373207460008201527f68616e20746865207072696365206f6620746f6b656e00000000000000000000602082015250565b7f557020746f2033206d696e7420616c6c6f776564207065722077616c6c657400600082015250565b7f41756374696f6e20686173206e6f742073746172746564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f43616c6c657220697320636f6e74726163740000000000000000000000000000600082015250565b50565b61386481613371565b811461386f57600080fd5b50565b61387b81613383565b811461388657600080fd5b50565b6138928161338f565b811461389d57600080fd5b50565b6138a9816133db565b81146138b457600080fd5b5056fea26469706673582212206dabb0ae14c15fd0dcef2fb72be1b1f9a110df6dbf2bacf5ff8c3fec6f4b551f64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000054f746f6b6f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034f544b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d5533327045683133566761477569664e3773726f70734865773437744543513845396f567931757a3850337a2f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Otoko
Arg [1] : _symbol (string): OTK
Arg [2] : _collectionSize (uint256): 10000
Arg [3] : _walletMintLimit (uint256): 3
Arg [4] : _preRevealTokenURI (string): https://ipfs.io/ipfs/QmU32pEh13VgaGuifN7sropsHew47tECQ8E9oVy1uz8P3z/
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4f746f6b6f000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 4f544b0000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [10] : 68747470733a2f2f697066732e696f2f697066732f516d553332704568313356
Arg [11] : 6761477569664e3773726f70734865773437744543513845396f567931757a38
Arg [12] : 50337a2f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
55405:4590:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25213:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30860:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32806:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59905:85;;;;;;;;;;;;;:::i;:::-;;32354:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57077:1383;;;:::i;:::-;;24267:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42071:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58875:67;;;;;;;;;;;;;:::i;:::-;;33696:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55495:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56821:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55691:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58997:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6905:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30649:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55896:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25892:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9804:103;;;;;;;;;;;;;:::i;:::-;;55581:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59148:650;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58804:63;;;;;;;;;;;;;:::i;:::-;;58472:322;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9153:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31029:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33082:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59806:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33952:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55531:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56479:324;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55853:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55818:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33461:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10062:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25213:615;25298:4;25613:10;25598:25;;:11;:25;;;;:102;;;;25690:10;25675:25;;:11;:25;;;;25598:102;:179;;;;25767:10;25752:25;;:11;:25;;;;25598:179;25578:199;;25213:615;;;:::o;30860:100::-;30914:13;30947:5;30940:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30860:100;:::o;32806:204::-;32874:7;32899:16;32907:7;32899;:16::i;:::-;32894:64;;32924:34;;;;;;;;;;;;;;32894:64;32978:15;:24;32994:7;32978:24;;;;;;;;;;;;;;;;;;;;;32971:31;;32806:204;;;:::o;59905:85::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59981:1:::1;59965:13;:17;;;;59905:85::o:0;32354:386::-;32427:13;32443:16;32451:7;32443;:16::i;:::-;32427:32;;32499:5;32476:28;;:19;:17;:19::i;:::-;:28;;;32472:175;;32524:44;32541:5;32548:19;:17;:19::i;:::-;32524:16;:44::i;:::-;32519:128;;32596:35;;;;;;;;;;;;;;32519:128;32472:175;32686:2;32659:15;:24;32675:7;32659:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32724:7;32720:2;32704:28;;32713:5;32704:28;;;;;;;;;;;;32354:386;;;:::o;57077:1383::-;56418:10;56405:23;;:9;:23;;;56397:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57170:15:::1;;57165:1;57142:8;:20;57151:10;57142:20;;;;;;;;;;;;;;;;:24;;;;:::i;:::-;:43;;57134:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;57260:14;;57256:1;57240:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:34;57232:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;57305:19;57345:7;;57327:15;:25;;;;:::i;:::-;57305:47;;57386:1;57371:11;:16;;57363:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;57426:16;57459:2;57445:11;:16;;;;:::i;:::-;57426:35;;57490:8;;57475:11;:23;;:44;;;;;57518:1;57502:13;;:17;57475:44;57472:303;;;57535:6;57558:8;;57544:11;:22;;;;:::i;:::-;57535:31;;57585:6;57581:96;57596:1;57594;:3;57581:96;;;57658:3;57653:2;57637:13;;:18;;;;:::i;:::-;:24;;;;:::i;:::-;57621:13;:40;;;;57598:3;;;;;:::i;:::-;;;;57581:96;;;;57710:1;57694:13;;:17;57691:73;;;57747:1;57731:13;:17;;;;57691:73;57472:303;;57804:1;57788:13;;:17;57785:147;;;57855:6;57839:13;;:22;;;;:::i;:::-;57826:9;:35;;57818:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;57785:147;57968:1;57944:8;:20;57953:10;57944:20;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;57980:24;57990:10;58002:1;57980:9;:24::i;:::-;58028:1;58015:9;;:14;;;;;;;:::i;:::-;;;;;;;;58061:1;58045:13;;:17;58042:409;;;58078:11;58120:6;58104:13;;:22;;;;:::i;:::-;58092:9;:34;;;;:::i;:::-;58078:48;;58154:1;58145:6;:10;58141:87;;;58184:10;58176:28;;:36;58205:6;58176:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58141:87;58242:15;58260:21;58242:39;;58297:12;58315:6;;;;;;;;;;;:11;;58334:7;58315:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58296:50;;;58369:7;58361:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;58042:409;;;;56462:1;;57077:1383::o:0;24267:315::-;24320:7;24548:15;:13;:15::i;:::-;24533:12;;24517:13;;:28;:46;24510:53;;24267:315;:::o;42071:2800::-;42205:27;42235;42254:7;42235:18;:27::i;:::-;42205:57;;42320:4;42279:45;;42295:19;42279:45;;;42275:86;;42333:28;;;;;;;;;;;;;;42275:86;42375:27;42404:23;42431:28;42451:7;42431:19;:28::i;:::-;42374:85;;;;42559:62;42578:15;42595:4;42601:19;:17;:19::i;:::-;42559:18;:62::i;:::-;42554:174;;42641:43;42658:4;42664:19;:17;:19::i;:::-;42641:16;:43::i;:::-;42636:92;;42693:35;;;;;;;;;;;;;;42636:92;42554:174;42759:1;42745:16;;:2;:16;;;42741:52;;;42770:23;;;;;;;;;;;;;;42741:52;42806:43;42828:4;42834:2;42838:7;42847:1;42806:21;:43::i;:::-;42942:15;42939:2;;;43082:1;43061:19;43054:30;42939:2;43477:18;:24;43496:4;43477:24;;;;;;;;;;;;;;;;43475:26;;;;;;;;;;;;43546:18;:22;43565:2;43546:22;;;;;;;;;;;;;;;;43544:24;;;;;;;;;;;43868:145;43905:2;43953:45;43968:4;43974:2;43978:19;43953:14;:45::i;:::-;21495:8;43926:72;43868:18;:145::i;:::-;43839:17;:26;43857:7;43839:26;;;;;;;;;;;:174;;;;44183:1;21495:8;44133:19;:46;:51;44129:626;;;44205:19;44237:1;44227:7;:11;44205:33;;44394:1;44360:17;:30;44378:11;44360:30;;;;;;;;;;;;:35;44356:384;;;44498:13;;44483:11;:28;44479:242;;44678:19;44645:17;:30;44663:11;44645:30;;;;;;;;;;;:52;;;;44479:242;44356:384;44129:626;;44802:7;44798:2;44783:27;;44792:4;44783:27;;;;;;;;;;;;44821:42;44842:4;44848:2;44852:7;44861:1;44821:20;:42::i;:::-;42071:2800;;;;;;:::o;58875:67::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58924:10:::1;:8;:10::i;:::-;58875:67::o:0;33696:185::-;33834:39;33851:4;33857:2;33861:7;33834:39;;;;;;;;;;;;:16;:39::i;:::-;33696:185;;;:::o;55495:29::-;;;;:::o;56821:145::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56915:4:::1;56904:8;;:15;;;;;;;;;;;;;;;;;;56945:13;;56930:12;:28;;;;;;;:::i;:::-;;56821:145:::0;;:::o;55691:28::-;;;;;;;;;;;;;:::o;58997:143::-;59039:7;59108:13;:11;:13::i;:::-;59091:14;;:30;59084:37;;58997:143;:::o;6905:86::-;6952:4;6976:7;;;;;;;;;;;6969:14;;6905:86;:::o;30649:144::-;30713:7;30756:27;30775:7;30756:18;:27::i;:::-;30733:52;;30649:144;;;:::o;55896:26::-;;;;:::o;25892:224::-;25956:7;25997:1;25980:19;;:5;:19;;;25976:60;;;26008:28;;;;;;;;;;;;;;25976:60;20447:13;26054:18;:25;26073:5;26054:25;;;;;;;;;;;;;;;;:54;26047:61;;25892:224;;;:::o;9804:103::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9869:30:::1;9896:1;9869:18;:30::i;:::-;9804:103::o:0;55581:30::-;;;;:::o;59148:650::-;59196:4;59213:19;59253:7;;59235:15;:25;;;;:::i;:::-;59213:47;;59294:1;59279:11;:16;;59271:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;59354:1;59337:13;;:18;59334:69;;;59378:13;;59371:20;;;;;59334:69;59413:10;59426:13;;59413:26;;59450:16;59483:2;59469:11;:16;;;;:::i;:::-;59450:35;;59515:8;;59500:11;:23;;:44;;;;;59543:1;59527:13;;:17;59500:44;59497:271;;;59560:6;59583:8;;59569:11;:22;;;;:::i;:::-;59560:31;;59610:6;59606:80;59621:1;59619;:3;59606:80;;;59667:3;59662:2;59654:5;:10;;;;:::i;:::-;:16;;;;:::i;:::-;59646:24;;59623:3;;;;;:::i;:::-;;;;59606:80;;;;59711:1;59703:5;:9;59700:57;;;59740:1;59732:9;;59700:57;59497:271;;59785:5;59778:12;;;;;59148:650;;:::o;58804:63::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58851:8:::1;:6;:8::i;:::-;58804:63::o:0;58472:322::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58610:1:::1;58599:8;:12;58591:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;58679:14;;58667:8;58651:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;58643:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;58739:8;58726:9;;:21;;;;;;;:::i;:::-;;;;;;;;58758:26;58768:5;58775:8;58758:9;:26::i;:::-;58472:322:::0;;:::o;9153:87::-;9199:7;9226:6;;;;;;;;;;;9219:13;;9153:87;:::o;31029:104::-;31085:13;31118:7;31111:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31029:104;:::o;33082:308::-;33193:19;:17;:19::i;:::-;33181:31;;:8;:31;;;33177:61;;;33221:17;;;;;;;;;;;;;;33177:61;33303:8;33251:18;:39;33270:19;:17;:19::i;:::-;33251:39;;;;;;;;;;;;;;;:49;33291:8;33251:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33363:8;33327:55;;33342:19;:17;:19::i;:::-;33327:55;;;33373:8;33327:55;;;;;;:::i;:::-;;;;;;;;33082:308;;:::o;59806:91::-;59853:7;59880:9;;59873:16;;59806:91;:::o;33952:399::-;34119:31;34132:4;34138:2;34142:7;34119:12;:31::i;:::-;34183:1;34165:2;:14;;;:19;34161:183;;34204:56;34235:4;34241:2;34245:7;34254:5;34204:30;:56::i;:::-;34199:145;;34288:40;;;;;;;;;;;;;;34199:145;34161:183;33952:399;;;;:::o;55531:43::-;;;;;;;;;;;;;;;;;:::o;56479:324::-;56598:13;56637:17;56645:8;56637:7;:17::i;:::-;56629:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;56697:8;;;;;;;;;;;56696:9;:99;;56752:12;56766:19;:8;:17;:19::i;:::-;56735:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56696:99;;;56708:17;56696:99;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56689:106;;56479:324;;;:::o;55853:36::-;;;;:::o;55818:28::-;;;;:::o;33461:164::-;33558:4;33582:18;:25;33601:5;33582:25;;;;;;;;;;;;;;;:35;33608:8;33582:35;;;;;;;;;;;;;;;;;;;;;;;;;33575:42;;33461:164;;;;:::o;10062:201::-;9384:12;:10;:12::i;:::-;9373:23;;:7;:5;:7::i;:::-;:23;;;9365:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10171:1:::1;10151:22;;:8;:22;;;;10143:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10227:28;10246:8;10227:18;:28::i;:::-;10062:201:::0;:::o;34606:273::-;34663:4;34719:7;34700:15;:13;:15::i;:::-;:26;;:66;;;;;34753:13;;34743:7;:23;34700:66;:152;;;;;34851:1;21217:8;34804:17;:26;34822:7;34804:26;;;;;;;;;;;;:43;:48;34700:152;34680:172;;34606:273;;;:::o;5559:98::-;5612:7;5639:10;5632:17;;5559:98;:::o;53167:105::-;53227:7;53254:10;53247:17;;53167:105;:::o;34963:104::-;35032:27;35042:2;35046:8;35032:27;;;;;;;;;;;;:9;:27::i;:::-;34963:104;;:::o;56976:93::-;57033:7;56976:93;:::o;27566:1129::-;27633:7;27653:12;27668:7;27653:22;;27736:4;27717:15;:13;:15::i;:::-;:23;27713:915;;27770:13;;27763:4;:20;27759:869;;;27808:14;27825:17;:23;27843:4;27825:23;;;;;;;;;;;;27808:40;;27941:1;21217:8;27914:6;:23;:28;27910:699;;;28433:113;28450:1;28440:6;:11;28433:113;;;28493:17;:25;28511:6;;;;;;;28493:25;;;;;;;;;;;;28484:34;;28433:113;;;28579:6;28572:13;;;;;;27910:699;27759:869;;27713:915;28656:31;;;;;;;;;;;;;;27566:1129;;;;:::o;40407:652::-;40502:27;40531:23;40572:53;40628:15;40572:71;;40814:7;40808:4;40801:21;40849:22;40843:4;40836:36;40925:4;40919;40909:21;40886:44;;41021:19;41015:26;40996:45;;40752:300;;;;:::o;41172:645::-;41314:11;41476:15;41470:4;41466:26;41458:34;;41635:15;41624:9;41620:31;41607:44;;41782:15;41771:9;41768:30;41761:4;41750:9;41747:19;41744:55;41734:65;;41347:463;;;;;:::o;52000:159::-;;;;;:::o;50312:309::-;50447:7;50467:16;21618:3;50493:19;:40;;50467:67;;21618:3;50560:31;50571:4;50577:2;50581:9;50560:10;:31::i;:::-;50552:40;;:61;;50545:68;;;50312:309;;;;;:::o;30140:447::-;30220:14;30388:15;30381:5;30377:27;30368:36;;30562:5;30548:11;30524:22;30520:40;30517:51;30510:5;30507:62;30497:72;;30256:324;;;;:::o;52818:158::-;;;;;:::o;7964:120::-;7508:8;:6;:8::i;:::-;7500:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;8033:5:::1;8023:7;;:15;;;;;;;;;;;;;;;;;;8054:22;8063:12;:10;:12::i;:::-;8054:22;;;;;;:::i;:::-;;;;;;;;7964:120::o:0;10423:191::-;10497:16;10516:6;;;;;;;;;;;10497:25;;10542:8;10533:6;;:17;;;;;;;;;;;;;;;;;;10597:8;10566:40;;10587:8;10566:40;;;;;;;;;;;;10423:191;;:::o;7705:118::-;7231:8;:6;:8::i;:::-;7230:9;7222:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;7775:4:::1;7765:7;;:14;;;;;;;;;;;;;;;;;;7795:20;7802:12;:10;:12::i;:::-;7795:20;;;;;;:::i;:::-;;;;;;;;7705:118::o:0;48822:716::-;48985:4;49031:2;49006:45;;;49052:19;:17;:19::i;:::-;49073:4;49079:7;49088:5;49006:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49002:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49306:1;49289:6;:13;:18;49285:235;;;49335:40;;;;;;;;;;;;;;49285:235;49478:6;49472:13;49463:6;49459:2;49455:15;49448:38;49002:529;49175:54;;;49165:64;;;:6;:64;;;;49158:71;;;48822:716;;;;;;:::o;436:723::-;492:13;722:1;713:5;:10;709:53;;;740:10;;;;;;;;;;;;;;;;;;;;;709:53;772:12;787:5;772:20;;803:14;828:78;843:1;835:4;:9;828:78;;861:8;;;;;:::i;:::-;;;;892:2;884:10;;;;;:::i;:::-;;;828:78;;;916:19;948:6;938:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;916:39;;966:154;982:1;973:5;:10;966:154;;1010:1;1000:11;;;;;:::i;:::-;;;1077:2;1069:5;:10;;;;:::i;:::-;1056:2;:24;;;;:::i;:::-;1043:39;;1026:6;1033;1026:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1106:2;1097:11;;;;;:::i;:::-;;;966:154;;;1144:6;1130:21;;;;;436:723;;;;:::o;35483:681::-;35606:19;35612:2;35616:8;35606:5;:19::i;:::-;35685:1;35667:2;:14;;;:19;35663:483;;35707:11;35721:13;;35707:27;;35753:13;35775:8;35769:3;:14;35753:30;;35802:233;35833:62;35872:1;35876:2;35880:7;;;;;;35889:5;35833:30;:62::i;:::-;35828:167;;35931:40;;;;;;;;;;;;;;35828:167;36030:3;36022:5;:11;35802:233;;36117:3;36100:13;;:20;36096:34;;36122:8;;;36096:34;35663:483;;;35483:681;;;:::o;51197:147::-;51334:6;51197:147;;;;;:::o;36437:1529::-;36502:20;36525:13;;36502:36;;36567:1;36553:16;;:2;:16;;;36549:48;;;36578:19;;;;;;;;;;;;;;36549:48;36624:1;36612:8;:13;36608:44;;;36634:18;;;;;;;;;;;;;;36608:44;36665:61;36695:1;36699:2;36703:12;36717:8;36665:21;:61::i;:::-;37208:1;20584:2;37179:1;:25;;37178:31;37166:8;:44;37140:18;:22;37159:2;37140:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;37487:139;37524:2;37578:33;37601:1;37605:2;37609:1;37578:14;:33::i;:::-;37545:30;37566:8;37545:20;:30::i;:::-;:66;37487:18;:139::i;:::-;37453:17;:31;37471:12;37453:31;;;;;;;;;;;:173;;;;37643:15;37661:12;37643:30;;37688:11;37717:8;37702:12;:23;37688:37;;37740:101;37792:9;;;;;;37788:2;37767:35;;37784:1;37767:35;;;;;;;;;;;;37836:3;37826:7;:13;37740:101;;37873:3;37857:13;:19;;;;36437:1529;;37898:60;37927:1;37931:2;37935:12;37949:8;37898:20;:60::i;:::-;36437:1529;;;:::o;31970:322::-;32040:14;32271:1;32261:8;32258:15;32233:23;32229:45;32219:55;;32142:143;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:133::-;544:5;582:6;569:20;560:29;;598:30;622:5;598:30;:::i;:::-;550:84;;;;:::o;640:137::-;685:5;723:6;710:20;701:29;;739:32;765:5;739:32;:::i;:::-;691:86;;;;:::o;783:141::-;839:5;870:6;864:13;855:22;;886:32;912:5;886:32;:::i;:::-;845:79;;;;:::o;943:271::-;998:5;1047:3;1040:4;1032:6;1028:17;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105:6;1092:20;1130:78;1204:3;1196:6;1189:4;1181:6;1177:17;1130:78;:::i;:::-;1121:87;;1004:210;;;;;:::o;1234:352::-;1292:8;1302:6;1352:3;1345:4;1337:6;1333:17;1329:27;1319:2;;1370:1;1367;1360:12;1319:2;1406:6;1393:20;1383:30;;1436:18;1428:6;1425:30;1422:2;;;1468:1;1465;1458:12;1422:2;1505:4;1497:6;1493:17;1481:29;;1559:3;1551:4;1543:6;1539:17;1529:8;1525:32;1522:41;1519:2;;;1576:1;1573;1566:12;1519:2;1309:277;;;;;:::o;1592:139::-;1638:5;1676:6;1663:20;1654:29;;1692:33;1719:5;1692:33;:::i;:::-;1644:87;;;;:::o;1737:262::-;1796:6;1845:2;1833:9;1824:7;1820:23;1816:32;1813:2;;;1861:1;1858;1851:12;1813:2;1904:1;1929:53;1974:7;1965:6;1954:9;1950:22;1929:53;:::i;:::-;1919:63;;1875:117;1803:196;;;;:::o;2005:407::-;2073:6;2081;2130:2;2118:9;2109:7;2105:23;2101:32;2098:2;;;2146:1;2143;2136:12;2098:2;2189:1;2214:53;2259:7;2250:6;2239:9;2235:22;2214:53;:::i;:::-;2204:63;;2160:117;2316:2;2342:53;2387:7;2378:6;2367:9;2363:22;2342:53;:::i;:::-;2332:63;;2287:118;2088:324;;;;;:::o;2418:552::-;2495:6;2503;2511;2560:2;2548:9;2539:7;2535:23;2531:32;2528:2;;;2576:1;2573;2566:12;2528:2;2619:1;2644:53;2689:7;2680:6;2669:9;2665:22;2644:53;:::i;:::-;2634:63;;2590:117;2746:2;2772:53;2817:7;2808:6;2797:9;2793:22;2772:53;:::i;:::-;2762:63;;2717:118;2874:2;2900:53;2945:7;2936:6;2925:9;2921:22;2900:53;:::i;:::-;2890:63;;2845:118;2518:452;;;;;:::o;2976:809::-;3071:6;3079;3087;3095;3144:3;3132:9;3123:7;3119:23;3115:33;3112:2;;;3161:1;3158;3151:12;3112:2;3204:1;3229:53;3274:7;3265:6;3254:9;3250:22;3229:53;:::i;:::-;3219:63;;3175:117;3331:2;3357:53;3402:7;3393:6;3382:9;3378:22;3357:53;:::i;:::-;3347:63;;3302:118;3459:2;3485:53;3530:7;3521:6;3510:9;3506:22;3485:53;:::i;:::-;3475:63;;3430:118;3615:2;3604:9;3600:18;3587:32;3646:18;3638:6;3635:30;3632:2;;;3678:1;3675;3668:12;3632:2;3706:62;3760:7;3751:6;3740:9;3736:22;3706:62;:::i;:::-;3696:72;;3558:220;3102:683;;;;;;;:::o;3791:401::-;3856:6;3864;3913:2;3901:9;3892:7;3888:23;3884:32;3881:2;;;3929:1;3926;3919:12;3881:2;3972:1;3997:53;4042:7;4033:6;4022:9;4018:22;3997:53;:::i;:::-;3987:63;;3943:117;4099:2;4125:50;4167:7;4158:6;4147:9;4143:22;4125:50;:::i;:::-;4115:60;;4070:115;3871:321;;;;;:::o;4198:407::-;4266:6;4274;4323:2;4311:9;4302:7;4298:23;4294:32;4291:2;;;4339:1;4336;4329:12;4291:2;4382:1;4407:53;4452:7;4443:6;4432:9;4428:22;4407:53;:::i;:::-;4397:63;;4353:117;4509:2;4535:53;4580:7;4571:6;4560:9;4556:22;4535:53;:::i;:::-;4525:63;;4480:118;4281:324;;;;;:::o;4611:260::-;4669:6;4718:2;4706:9;4697:7;4693:23;4689:32;4686:2;;;4734:1;4731;4724:12;4686:2;4777:1;4802:52;4846:7;4837:6;4826:9;4822:22;4802:52;:::i;:::-;4792:62;;4748:116;4676:195;;;;:::o;4877:282::-;4946:6;4995:2;4983:9;4974:7;4970:23;4966:32;4963:2;;;5011:1;5008;5001:12;4963:2;5054:1;5079:63;5134:7;5125:6;5114:9;5110:22;5079:63;:::i;:::-;5069:73;;5025:127;4953:206;;;;:::o;5165:395::-;5236:6;5244;5293:2;5281:9;5272:7;5268:23;5264:32;5261:2;;;5309:1;5306;5299:12;5261:2;5380:1;5369:9;5365:17;5352:31;5410:18;5402:6;5399:30;5396:2;;;5442:1;5439;5432:12;5396:2;5478:65;5535:7;5526:6;5515:9;5511:22;5478:65;:::i;:::-;5460:83;;;;5323:230;5251:309;;;;;:::o;5566:262::-;5625:6;5674:2;5662:9;5653:7;5649:23;5645:32;5642:2;;;5690:1;5687;5680:12;5642:2;5733:1;5758:53;5803:7;5794:6;5783:9;5779:22;5758:53;:::i;:::-;5748:63;;5704:117;5632:196;;;;:::o;5834:118::-;5921:24;5939:5;5921:24;:::i;:::-;5916:3;5909:37;5899:53;;:::o;5958:109::-;6039:21;6054:5;6039:21;:::i;:::-;6034:3;6027:34;6017:50;;:::o;6073:360::-;6159:3;6187:38;6219:5;6187:38;:::i;:::-;6241:70;6304:6;6299:3;6241:70;:::i;:::-;6234:77;;6320:52;6365:6;6360:3;6353:4;6346:5;6342:16;6320:52;:::i;:::-;6397:29;6419:6;6397:29;:::i;:::-;6392:3;6388:39;6381:46;;6163:270;;;;;:::o;6439:364::-;6527:3;6555:39;6588:5;6555:39;:::i;:::-;6610:71;6674:6;6669:3;6610:71;:::i;:::-;6603:78;;6690:52;6735:6;6730:3;6723:4;6716:5;6712:16;6690:52;:::i;:::-;6767:29;6789:6;6767:29;:::i;:::-;6762:3;6758:39;6751:46;;6531:272;;;;;:::o;6809:377::-;6915:3;6943:39;6976:5;6943:39;:::i;:::-;6998:89;7080:6;7075:3;6998:89;:::i;:::-;6991:96;;7096:52;7141:6;7136:3;7129:4;7122:5;7118:16;7096:52;:::i;:::-;7173:6;7168:3;7164:16;7157:23;;6919:267;;;;;:::o;7216:845::-;7319:3;7356:5;7350:12;7385:36;7411:9;7385:36;:::i;:::-;7437:89;7519:6;7514:3;7437:89;:::i;:::-;7430:96;;7557:1;7546:9;7542:17;7573:1;7568:137;;;;7719:1;7714:341;;;;7535:520;;7568:137;7652:4;7648:9;7637;7633:25;7628:3;7621:38;7688:6;7683:3;7679:16;7672:23;;7568:137;;7714:341;7781:38;7813:5;7781:38;:::i;:::-;7841:1;7855:154;7869:6;7866:1;7863:13;7855:154;;;7943:7;7937:14;7933:1;7928:3;7924:11;7917:35;7993:1;7984:7;7980:15;7969:26;;7891:4;7888:1;7884:12;7879:17;;7855:154;;;8038:6;8033:3;8029:16;8022:23;;7721:334;;7535:520;;7323:738;;;;;;:::o;8067:366::-;8209:3;8230:67;8294:2;8289:3;8230:67;:::i;:::-;8223:74;;8306:93;8395:3;8306:93;:::i;:::-;8424:2;8419:3;8415:12;8408:19;;8213:220;;;:::o;8439:366::-;8581:3;8602:67;8666:2;8661:3;8602:67;:::i;:::-;8595:74;;8678:93;8767:3;8678:93;:::i;:::-;8796:2;8791:3;8787:12;8780:19;;8585:220;;;:::o;8811:366::-;8953:3;8974:67;9038:2;9033:3;8974:67;:::i;:::-;8967:74;;9050:93;9139:3;9050:93;:::i;:::-;9168:2;9163:3;9159:12;9152:19;;8957:220;;;:::o;9183:366::-;9325:3;9346:67;9410:2;9405:3;9346:67;:::i;:::-;9339:74;;9422:93;9511:3;9422:93;:::i;:::-;9540:2;9535:3;9531:12;9524:19;;9329:220;;;:::o;9555:366::-;9697:3;9718:67;9782:2;9777:3;9718:67;:::i;:::-;9711:74;;9794:93;9883:3;9794:93;:::i;:::-;9912:2;9907:3;9903:12;9896:19;;9701:220;;;:::o;9927:366::-;10069:3;10090:67;10154:2;10149:3;10090:67;:::i;:::-;10083:74;;10166:93;10255:3;10166:93;:::i;:::-;10284:2;10279:3;10275:12;10268:19;;10073:220;;;:::o;10299:366::-;10441:3;10462:67;10526:2;10521:3;10462:67;:::i;:::-;10455:74;;10538:93;10627:3;10538:93;:::i;:::-;10656:2;10651:3;10647:12;10640:19;;10445:220;;;:::o;10671:366::-;10813:3;10834:67;10898:2;10893:3;10834:67;:::i;:::-;10827:74;;10910:93;10999:3;10910:93;:::i;:::-;11028:2;11023:3;11019:12;11012:19;;10817:220;;;:::o;11043:366::-;11185:3;11206:67;11270:2;11265:3;11206:67;:::i;:::-;11199:74;;11282:93;11371:3;11282:93;:::i;:::-;11400:2;11395:3;11391:12;11384:19;;11189:220;;;:::o;11415:366::-;11557:3;11578:67;11642:2;11637:3;11578:67;:::i;:::-;11571:74;;11654:93;11743:3;11654:93;:::i;:::-;11772:2;11767:3;11763:12;11756:19;;11561:220;;;:::o;11787:400::-;11947:3;11968:84;12050:1;12045:3;11968:84;:::i;:::-;11961:91;;12061:93;12150:3;12061:93;:::i;:::-;12179:1;12174:3;12170:11;12163:18;;11951:236;;;:::o;12193:366::-;12335:3;12356:67;12420:2;12415:3;12356:67;:::i;:::-;12349:74;;12432:93;12521:3;12432:93;:::i;:::-;12550:2;12545:3;12541:12;12534:19;;12339:220;;;:::o;12565:366::-;12707:3;12728:67;12792:2;12787:3;12728:67;:::i;:::-;12721:74;;12804:93;12893:3;12804:93;:::i;:::-;12922:2;12917:3;12913:12;12906:19;;12711:220;;;:::o;12937:398::-;13096:3;13117:83;13198:1;13193:3;13117:83;:::i;:::-;13110:90;;13209:93;13298:3;13209:93;:::i;:::-;13327:1;13322:3;13318:11;13311:18;;13100:235;;;:::o;13341:118::-;13428:24;13446:5;13428:24;:::i;:::-;13423:3;13416:37;13406:53;;:::o;13465:695::-;13743:3;13765:92;13853:3;13844:6;13765:92;:::i;:::-;13758:99;;13874:95;13965:3;13956:6;13874:95;:::i;:::-;13867:102;;13986:148;14130:3;13986:148;:::i;:::-;13979:155;;14151:3;14144:10;;13747:413;;;;;:::o;14166:379::-;14350:3;14372:147;14515:3;14372:147;:::i;:::-;14365:154;;14536:3;14529:10;;14354:191;;;:::o;14551:222::-;14644:4;14682:2;14671:9;14667:18;14659:26;;14695:71;14763:1;14752:9;14748:17;14739:6;14695:71;:::i;:::-;14649:124;;;;:::o;14779:640::-;14974:4;15012:3;15001:9;14997:19;14989:27;;15026:71;15094:1;15083:9;15079:17;15070:6;15026:71;:::i;:::-;15107:72;15175:2;15164:9;15160:18;15151:6;15107:72;:::i;:::-;15189;15257:2;15246:9;15242:18;15233:6;15189:72;:::i;:::-;15308:9;15302:4;15298:20;15293:2;15282:9;15278:18;15271:48;15336:76;15407:4;15398:6;15336:76;:::i;:::-;15328:84;;14979:440;;;;;;;:::o;15425:210::-;15512:4;15550:2;15539:9;15535:18;15527:26;;15563:65;15625:1;15614:9;15610:17;15601:6;15563:65;:::i;:::-;15517:118;;;;:::o;15641:313::-;15754:4;15792:2;15781:9;15777:18;15769:26;;15841:9;15835:4;15831:20;15827:1;15816:9;15812:17;15805:47;15869:78;15942:4;15933:6;15869:78;:::i;:::-;15861:86;;15759:195;;;;:::o;15960:419::-;16126:4;16164:2;16153:9;16149:18;16141:26;;16213:9;16207:4;16203:20;16199:1;16188:9;16184:17;16177:47;16241:131;16367:4;16241:131;:::i;:::-;16233:139;;16131:248;;;:::o;16385:419::-;16551:4;16589:2;16578:9;16574:18;16566:26;;16638:9;16632:4;16628:20;16624:1;16613:9;16609:17;16602:47;16666:131;16792:4;16666:131;:::i;:::-;16658:139;;16556:248;;;:::o;16810:419::-;16976:4;17014:2;17003:9;16999:18;16991:26;;17063:9;17057:4;17053:20;17049:1;17038:9;17034:17;17027:47;17091:131;17217:4;17091:131;:::i;:::-;17083:139;;16981:248;;;:::o;17235:419::-;17401:4;17439:2;17428:9;17424:18;17416:26;;17488:9;17482:4;17478:20;17474:1;17463:9;17459:17;17452:47;17516:131;17642:4;17516:131;:::i;:::-;17508:139;;17406:248;;;:::o;17660:419::-;17826:4;17864:2;17853:9;17849:18;17841:26;;17913:9;17907:4;17903:20;17899:1;17888:9;17884:17;17877:47;17941:131;18067:4;17941:131;:::i;:::-;17933:139;;17831:248;;;:::o;18085:419::-;18251:4;18289:2;18278:9;18274:18;18266:26;;18338:9;18332:4;18328:20;18324:1;18313:9;18309:17;18302:47;18366:131;18492:4;18366:131;:::i;:::-;18358:139;;18256:248;;;:::o;18510:419::-;18676:4;18714:2;18703:9;18699:18;18691:26;;18763:9;18757:4;18753:20;18749:1;18738:9;18734:17;18727:47;18791:131;18917:4;18791:131;:::i;:::-;18783:139;;18681:248;;;:::o;18935:419::-;19101:4;19139:2;19128:9;19124:18;19116:26;;19188:9;19182:4;19178:20;19174:1;19163:9;19159:17;19152:47;19216:131;19342:4;19216:131;:::i;:::-;19208:139;;19106:248;;;:::o;19360:419::-;19526:4;19564:2;19553:9;19549:18;19541:26;;19613:9;19607:4;19603:20;19599:1;19588:9;19584:17;19577:47;19641:131;19767:4;19641:131;:::i;:::-;19633:139;;19531:248;;;:::o;19785:419::-;19951:4;19989:2;19978:9;19974:18;19966:26;;20038:9;20032:4;20028:20;20024:1;20013:9;20009:17;20002:47;20066:131;20192:4;20066:131;:::i;:::-;20058:139;;19956:248;;;:::o;20210:419::-;20376:4;20414:2;20403:9;20399:18;20391:26;;20463:9;20457:4;20453:20;20449:1;20438:9;20434:17;20427:47;20491:131;20617:4;20491:131;:::i;:::-;20483:139;;20381:248;;;:::o;20635:419::-;20801:4;20839:2;20828:9;20824:18;20816:26;;20888:9;20882:4;20878:20;20874:1;20863:9;20859:17;20852:47;20916:131;21042:4;20916:131;:::i;:::-;20908:139;;20806:248;;;:::o;21060:222::-;21153:4;21191:2;21180:9;21176:18;21168:26;;21204:71;21272:1;21261:9;21257:17;21248:6;21204:71;:::i;:::-;21158:124;;;;:::o;21288:129::-;21322:6;21349:20;;:::i;:::-;21339:30;;21378:33;21406:4;21398:6;21378:33;:::i;:::-;21329:88;;;:::o;21423:75::-;21456:6;21489:2;21483:9;21473:19;;21463:35;:::o;21504:307::-;21565:4;21655:18;21647:6;21644:30;21641:2;;;21677:18;;:::i;:::-;21641:2;21715:29;21737:6;21715:29;:::i;:::-;21707:37;;21799:4;21793;21789:15;21781:23;;21570:241;;;:::o;21817:141::-;21866:4;21889:3;21881:11;;21912:3;21909:1;21902:14;21946:4;21943:1;21933:18;21925:26;;21871:87;;;:::o;21964:98::-;22015:6;22049:5;22043:12;22033:22;;22022:40;;;:::o;22068:99::-;22120:6;22154:5;22148:12;22138:22;;22127:40;;;:::o;22173:168::-;22256:11;22290:6;22285:3;22278:19;22330:4;22325:3;22321:14;22306:29;;22268:73;;;;:::o;22347:147::-;22448:11;22485:3;22470:18;;22460:34;;;;:::o;22500:169::-;22584:11;22618:6;22613:3;22606:19;22658:4;22653:3;22649:14;22634:29;;22596:73;;;;:::o;22675:148::-;22777:11;22814:3;22799:18;;22789:34;;;;:::o;22829:305::-;22869:3;22888:20;22906:1;22888:20;:::i;:::-;22883:25;;22922:20;22940:1;22922:20;:::i;:::-;22917:25;;23076:1;23008:66;23004:74;23001:1;22998:81;22995:2;;;23082:18;;:::i;:::-;22995:2;23126:1;23123;23119:9;23112:16;;22873:261;;;;:::o;23140:185::-;23180:1;23197:20;23215:1;23197:20;:::i;:::-;23192:25;;23231:20;23249:1;23231:20;:::i;:::-;23226:25;;23270:1;23260:2;;23275:18;;:::i;:::-;23260:2;23317:1;23314;23310:9;23305:14;;23182:143;;;;:::o;23331:348::-;23371:7;23394:20;23412:1;23394:20;:::i;:::-;23389:25;;23428:20;23446:1;23428:20;:::i;:::-;23423:25;;23616:1;23548:66;23544:74;23541:1;23538:81;23533:1;23526:9;23519:17;23515:105;23512:2;;;23623:18;;:::i;:::-;23512:2;23671:1;23668;23664:9;23653:20;;23379:300;;;;:::o;23685:191::-;23725:4;23745:20;23763:1;23745:20;:::i;:::-;23740:25;;23779:20;23797:1;23779:20;:::i;:::-;23774:25;;23818:1;23815;23812:8;23809:2;;;23823:18;;:::i;:::-;23809:2;23868:1;23865;23861:9;23853:17;;23730:146;;;;:::o;23882:96::-;23919:7;23948:24;23966:5;23948:24;:::i;:::-;23937:35;;23927:51;;;:::o;23984:90::-;24018:7;24061:5;24054:13;24047:21;24036:32;;24026:48;;;:::o;24080:149::-;24116:7;24156:66;24149:5;24145:78;24134:89;;24124:105;;;:::o;24235:126::-;24272:7;24312:42;24305:5;24301:54;24290:65;;24280:81;;;:::o;24367:77::-;24404:7;24433:5;24422:16;;24412:32;;;:::o;24450:154::-;24534:6;24529:3;24524;24511:30;24596:1;24587:6;24582:3;24578:16;24571:27;24501:103;;;:::o;24610:307::-;24678:1;24688:113;24702:6;24699:1;24696:13;24688:113;;;24787:1;24782:3;24778:11;24772:18;24768:1;24763:3;24759:11;24752:39;24724:2;24721:1;24717:10;24712:15;;24688:113;;;24819:6;24816:1;24813:13;24810:2;;;24899:1;24890:6;24885:3;24881:16;24874:27;24810:2;24659:258;;;;:::o;24923:320::-;24967:6;25004:1;24998:4;24994:12;24984:22;;25051:1;25045:4;25041:12;25072:18;25062:2;;25128:4;25120:6;25116:17;25106:27;;25062:2;25190;25182:6;25179:14;25159:18;25156:38;25153:2;;;25209:18;;:::i;:::-;25153:2;24974:269;;;;:::o;25249:281::-;25332:27;25354:4;25332:27;:::i;:::-;25324:6;25320:40;25462:6;25450:10;25447:22;25426:18;25414:10;25411:34;25408:62;25405:2;;;25473:18;;:::i;:::-;25405:2;25513:10;25509:2;25502:22;25292:238;;;:::o;25536:233::-;25575:3;25598:24;25616:5;25598:24;:::i;:::-;25589:33;;25644:66;25637:5;25634:77;25631:2;;;25714:18;;:::i;:::-;25631:2;25761:1;25754:5;25750:13;25743:20;;25579:190;;;:::o;25775:176::-;25807:1;25824:20;25842:1;25824:20;:::i;:::-;25819:25;;25858:20;25876:1;25858:20;:::i;:::-;25853:25;;25897:1;25887:2;;25902:18;;:::i;:::-;25887:2;25943:1;25940;25936:9;25931:14;;25809:142;;;;:::o;25957:180::-;26005:77;26002:1;25995:88;26102:4;26099:1;26092:15;26126:4;26123:1;26116:15;26143:180;26191:77;26188:1;26181:88;26288:4;26285:1;26278:15;26312:4;26309:1;26302:15;26329:180;26377:77;26374:1;26367:88;26474:4;26471:1;26464:15;26498:4;26495:1;26488:15;26515:180;26563:77;26560:1;26553:88;26660:4;26657:1;26650:15;26684:4;26681:1;26674:15;26701:102;26742:6;26793:2;26789:7;26784:2;26777:5;26773:14;26769:28;26759:38;;26749:54;;;:::o;26809:170::-;26949:22;26945:1;26937:6;26933:14;26926:46;26915:64;:::o;26985:165::-;27125:17;27121:1;27113:6;27109:14;27102:41;27091:59;:::o;27156:225::-;27296:34;27292:1;27284:6;27280:14;27273:58;27365:8;27360:2;27352:6;27348:15;27341:33;27262:119;:::o;27387:245::-;27527:34;27523:1;27515:6;27511:14;27504:58;27596:28;27591:2;27583:6;27579:15;27572:53;27493:139;:::o;27638:166::-;27778:18;27774:1;27766:6;27762:14;27755:42;27744:60;:::o;27810:167::-;27950:19;27946:1;27938:6;27934:14;27927:43;27916:61;:::o;27983:166::-;28123:18;28119:1;28111:6;28107:14;28100:42;28089:60;:::o;28155:241::-;28295:34;28291:1;28283:6;28279:14;28272:58;28364:24;28359:2;28351:6;28347:15;28340:49;28261:135;:::o;28402:181::-;28542:33;28538:1;28530:6;28526:14;28519:57;28508:75;:::o;28589:173::-;28729:25;28725:1;28717:6;28713:14;28706:49;28695:67;:::o;28768:155::-;28908:7;28904:1;28896:6;28892:14;28885:31;28874:49;:::o;28929:182::-;29069:34;29065:1;29057:6;29053:14;29046:58;29035:76;:::o;29117:168::-;29257:20;29253:1;29245:6;29241:14;29234:44;29223:62;:::o;29291:114::-;29397:8;:::o;29411:122::-;29484:24;29502:5;29484:24;:::i;:::-;29477:5;29474:35;29464:2;;29523:1;29520;29513:12;29464:2;29454:79;:::o;29539:116::-;29609:21;29624:5;29609:21;:::i;:::-;29602:5;29599:32;29589:2;;29645:1;29642;29635:12;29589:2;29579:76;:::o;29661:120::-;29733:23;29750:5;29733:23;:::i;:::-;29726:5;29723:34;29713:2;;29771:1;29768;29761:12;29713:2;29703:78;:::o;29787:122::-;29860:24;29878:5;29860:24;:::i;:::-;29853:5;29850:35;29840:2;;29899:1;29896;29889:12;29840:2;29830:79;:::o
Swarm Source
ipfs://6dabb0ae14c15fd0dcef2fb72be1b1f9a110df6dbf2bacf5ff8c3fec6f4b551f
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.