Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
4,888 FZUKI
Holders
777
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 FZUKILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Fzuki
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-08 */ // ________ __ __ // | \ | \ | \ // | $$$$$$$$________ __ __ | $$ __ \$$ // | $$__ | \| \ | \| $$ / \| \ // | $$ \ \$$$$$$$$| $$ | $$| $$_/ $$| $$ // | $$$$$ / $$ | $$ | $$| $$ $$ | $$ // | $$ / $$$$_ | $$__/ $$| $$$$$$\ | $$ // | $$ | $$ \ \$$ $$| $$ \$$\| $$ // \$$ \$$$$$$$$ \$$$$$$ \$$ \$$ \$$ // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.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. */ 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 Merklee 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/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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/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/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: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @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`, 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: Fzuki/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @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 Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. 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; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _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 _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * 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 See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary 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 { _addressData[owner].aux = aux; } /** * 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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // 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. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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, tokenId.toString())) : ''; } /** * @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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @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 == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), 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-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @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 { _transfer(from, to, tokenId); if (to.isContract() && !_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 && !_ownerships[tokenId].burned; } 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. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @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. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) 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 or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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 _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is 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 { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } 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 Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @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 {} function _setMintCountToZero( address user )internal { _addressData[user].numberMinted=0; } function _minus1MintCount( address user )internal { _addressData[user].numberMinted--; } } // File: Fzuki/Fzuki.sol pragma solidity ^0.8.0; // ________ __ __ // | \ | \ | \ // | $$$$$$$$________ __ __ | $$ __ \$$ // | $$__ | \| \ | \| $$ / \| \ // | $$ \ \$$$$$$$$| $$ | $$| $$_/ $$| $$ // | $$$$$ / $$ | $$ | $$| $$ $$ | $$ // | $$ / $$$$_ | $$__/ $$| $$$$$$\ | $$ // | $$ | $$ \ \$$ $$| $$ \$$\| $$ // \$$ \$$$$$$$$ \$$$$$$ \$$ \$$ \$$ contract Fzuki is Ownable, ERC721A, ReentrancyGuard { using Strings for uint256; bool public revealed = false; uint256 public startTimestamp = 1649435400; uint256 public MAX_SUPPLY = 10000; uint256 public PRICE = 0.016 ether; uint256 public HOLDERPRICE = 0.012 ether; uint256 public MAX_QTY = 20; // Max mint amount per wallet uint256 public publicGiveAwayCount = 500; string private _tokenURIPrefix=""; string private _unrevealedTokenURIPrefix = "ipfs://QmckfemvDEY3gWVyJbayAJNRpfsV2ofp4J4xUJrvz1ZDCe/"; string private _tokenURISuffix = ".json"; bytes32 private merkleRoot = 0xfbb8b96d2d97e31ba87ea9f843c49afeac07b82128d400756754a636bc305495; constructor(uint256 quantity) ERC721A("Fzuki", "FZUKI"){ _safeMint(msg.sender,quantity); } //------------------------------------------------------------------------------------------- // View Parts function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "Fzuki: URI query for nonexistent token"); if(revealed == false) { return string(abi.encodePacked(_unrevealedTokenURIPrefix, tokenId.toString(), _tokenURISuffix)); } return string(abi.encodePacked(_tokenURIPrefix, tokenId.toString(), _tokenURISuffix)); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } //------------------------------------------------------------------------------------------- // Mint Part function mint( uint256 quantity ) external payable nonReentrant { require(block.timestamp >= startTimestamp, "Fzuki: You come too early"); require(quantity > 0, "No free giveaway"); require(quantity + numberMinted(msg.sender) <= MAX_QTY, "Fzuki: You can't mint that much"); require (msg.value >= PRICE * quantity, "Fzuki: Ether sent is not correct"); uint256 actualMintCount = quantity; require( totalSupply() + quantity <= MAX_SUPPLY, "Fzuki: Mint/order exceeds supply" ); if(publicGiveAwayCount > 0 && numberMinted(msg.sender) == 0 && totalSupply() + quantity + 1 <= MAX_SUPPLY){ ++actualMintCount; --publicGiveAwayCount; } _safeMint(msg.sender, actualMintCount); if(actualMintCount != quantity) _minus1MintCount(msg.sender); } function holderMint( uint quantity, bytes32[] calldata _holderProof) external payable nonReentrant { require(block.timestamp >= startTimestamp, "Fzuki: You come too early"); bytes32 addressBytes = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_holderProof, merkleRoot ,addressBytes),"Fzuki: You are not Azuki / Something holder"); require(quantity > 0, "Fzuki: No free giveaway"); require(quantity + numberMinted(msg.sender) <= MAX_QTY, "Fzuki: You can't mint that much"); require (msg.value >= HOLDERPRICE * quantity, "Fzuki: Ether sent is not correct"); uint256 actualMintCount = quantity; require( totalSupply() + quantity <= MAX_SUPPLY, "Fzuki: Mint/order exceeds supply" ); if(publicGiveAwayCount > 0 && numberMinted(msg.sender) == 0 && totalSupply() + quantity + 1 <= MAX_SUPPLY){ ++actualMintCount; --publicGiveAwayCount; } _safeMint(msg.sender, actualMintCount); if(actualMintCount != quantity) _minus1MintCount(msg.sender); } //------------------------------------------------------------------------------------------- // OnlyOwner Parts function withdraw() public onlyOwner { // ============================================================================= uint amount = address(this).balance; payable(0xE46424211843E7C9086f59b22baaA0A03c0Fe85f).call{value: amount / 100 * 65}(""); payable(0x5AbA94428CAfAb0ca358f51283e19b49CA4AFB83).call{value: amount / 100 * 35}(""); payable(0x02835f937C287d9bCC0E182bfC07497288031EA5).call{value: amount / 100 * 5}(""); // ============================================================================= }// function devMint(uint256[] calldata quantity, address[] calldata recipient) external onlyOwner{ require(quantity.length == recipient.length, "Fzuki: Must provide equal quantities and recipients" ); uint256 totalQuantity; uint256 supply = totalSupply(); for(uint256 i; i < quantity.length; ++i){ totalQuantity += quantity[i]; } require( supply + totalQuantity < MAX_SUPPLY, "Fzuki: Mint/order exceeds supply" ); for(uint256 i; i < recipient.length; ++i){ _safeMint(recipient[i],quantity[i]); _setMintCountToZero(recipient[i]); } } function flipRevealState() external onlyOwner { revealed = !revealed; } function setUnrevealedURI(string calldata notRevealUri_) external onlyOwner { _unrevealedTokenURIPrefix = notRevealUri_; } function setStartTimestamp(uint256 timestamp) external onlyOwner { startTimestamp = timestamp; } function setBaseURI(string calldata prefix, string calldata suffix) external onlyOwner{ _tokenURIPrefix = prefix; _tokenURISuffix = suffix; } function setMaxQty(uint256 maxQty) external onlyOwner{ require( MAX_QTY != maxQty, "Fzuki: New value matches old" ); MAX_QTY = maxQty; } function setMaxSupply(uint256 maxSupply) external onlyOwner{ require( maxSupply > totalSupply()); MAX_SUPPLY = maxSupply; } function setPrice(uint256 price) external onlyOwner{ require( PRICE != price, "Fzuki: New value matches old" ); PRICE = price; } function setHolderPrice(uint256 price) external onlyOwner{ require( HOLDERPRICE != price, "Fzuki: New value matches old" ); HOLDERPRICE = price; } function setRoot(bytes32 _root) external onlyOwner{ merkleRoot = _root; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"HOLDERPRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_QTY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipRevealState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_holderProof","type":"bytes32[]"}],"name":"holderMint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":"publicGiveAwayCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[{"internalType":"string","name":"prefix","type":"string"},{"internalType":"string","name":"suffix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setHolderPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxQty","type":"uint256"}],"name":"setMaxQty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"setStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"notRevealUri_","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTimestamp","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600a805460ff191690556362506308600b55612710600c556638d7ea4c680000600d55662aa1efb94e0000600e556014600f556101f460105560a060408190526000608081905262000054916011916200050b565b5060405180606001604052806036815260200162003bc160369139805162000085916012916020909101906200050b565b5060408051808201909152600580825264173539b7b760d91b6020909201918252620000b4916013916200050b565b507ffbb8b96d2d97e31ba87ea9f843c49afeac07b82128d400756754a636bc305495601455348015620000e657600080fd5b5060405162003bf738038062003bf78339810160408190526200010991620005e4565b60405180604001604052806005815260200164467a756b6960d81b81525060405180604001604052806005815260200164465a554b4960d81b8152506200015f62000159620001aa60201b60201c565b620001ae565b8151620001749060039060208501906200050b565b5080516200018a9060049060208401906200050b565b50506000600190815560095550620001a33382620001fe565b50620006b6565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620002208282604051806020016040528060008152506200022460201b60201c565b5050565b62000233838383600162000238565b505050565b6001546001600160a01b0385166200026257604051622e076360e81b815260040160405180910390fd5b83620002815760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156200033a57506200033a876001600160a01b0316620003fb60201b62001e601760201c565b15620003ba575b60405182906001600160a01b0389169060009060008051602062003ba1833981519152908290a460018201916200037e906000908990886200040a565b6200039c576040516368d2bf6b60e11b815260040160405180910390fd5b8082141562000341578260015414620003b457600080fd5b620003f0565b5b6040516001830192906001600160a01b0389169060009060008051602062003ba1833981519152908290a480821415620003bb575b506001555050505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029062000441903390899088908890600401620005fe565b602060405180830381600087803b1580156200045c57600080fd5b505af19250505080156200048f575060408051601f3d908101601f191682019092526200048c91810190620005b1565b60015b620004ee573d808015620004c0576040519150601f19603f3d011682016040523d82523d6000602084013e620004c5565b606091505b508051620004e6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620005199062000679565b90600052602060002090601f0160209004810192826200053d576000855562000588565b82601f106200055857805160ff191683800117855562000588565b8280016001018555821562000588579182015b82811115620005885782518255916020019190600101906200056b565b50620005969291506200059a565b5090565b5b808211156200059657600081556001016200059b565b600060208284031215620005c457600080fd5b81516001600160e01b031981168114620005dd57600080fd5b9392505050565b600060208284031215620005f757600080fd5b5051919050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b828110156200064d5785810182015185820160a0015281016200062f565b828111156200066057600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600181811c908216806200068e57607f821691505b60208210811415620006b057634e487b7160e01b600052602260045260246000fd5b50919050565b6134db80620006c66000396000f3fe6080604052600436106102855760003560e01c80636f8b44b011610153578063a22cb465116100cb578063dc33e6811161007f578063e985e9c511610064578063e985e9c5146106ae578063f2fde38b14610704578063fe2c7fee1461072457600080fd5b8063dc33e68114610678578063e6fd48bc1461069857600080fd5b8063c44bef75116100b0578063c44bef7514610618578063c87b56dd14610638578063dab5f3401461065857600080fd5b8063a22cb465146105d8578063b88d4fde146105f857600080fd5b80638d859f3e1161012257806391b7f5ed1161010757806391b7f5ed1461059057806395d89b41146105b0578063a0712d68146105c557600080fd5b80638d859f3e1461054f5780638da5cb5b1461056557600080fd5b80636f8b44b0146104e457806370a0823114610504578063715018a61461052457806374f81c231461053957600080fd5b8063272ff2481161020157806351830227116101b5578063655a65411161019a578063655a65411461048e5780636790a9de146104a457806367d85be5146104c457600080fd5b806351830227146104545780636352211e1461046e57600080fd5b8063394cba75116101e6578063394cba751461040c5780633ccfd60b1461041f57806342842e0e1461043457600080fd5b8063272ff248146103d657806332cb6b0c146103f657600080fd5b80630b74f6ee116102585780631c96cae91161023d5780631c96cae91461038b57806323b872dd146103a15780632714ce92146103c157600080fd5b80630b74f6ee1461034857806318160ddd1461036857600080fd5b806301ffc9a71461028a57806306fdde03146102bf578063081812fc146102e1578063095ea7b314610326575b600080fd5b34801561029657600080fd5b506102aa6102a5366004612f25565b610744565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102d4610829565b6040516102b691906131e4565b3480156102ed57600080fd5b506103016102fc366004612f0c565b6108bb565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102b6565b34801561033257600080fd5b50610346610341366004612e76565b610925565b005b34801561035457600080fd5b50610346610363366004612f0c565b610a0c565b34801561037457600080fd5b50600254600154035b6040519081526020016102b6565b34801561039757600080fd5b5061037d600f5481565b3480156103ad57600080fd5b506103466103bc366004612d04565b610acf565b3480156103cd57600080fd5b50610346610ada565b3480156103e257600080fd5b506103466103f1366004612f0c565b610b73565b34801561040257600080fd5b5061037d600c5481565b61034661041a366004613001565b610c31565b34801561042b57600080fd5b50610346610fe8565b34801561044057600080fd5b5061034661044f366004612d04565b6111a4565b34801561046057600080fd5b50600a546102aa9060ff1681565b34801561047a57600080fd5b50610301610489366004612f0c565b6111bf565b34801561049a57600080fd5b5061037d600e5481565b3480156104b057600080fd5b506103466104bf366004612fa1565b6111d1565b3480156104d057600080fd5b506103466104df366004612ea0565b611258565b3480156104f057600080fd5b506103466104ff366004612f0c565b6114c4565b34801561051057600080fd5b5061037d61051f366004612caf565b611542565b34801561053057600080fd5b506103466115c4565b34801561054557600080fd5b5061037d60105481565b34801561055b57600080fd5b5061037d600d5481565b34801561057157600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610301565b34801561059c57600080fd5b506103466105ab366004612f0c565b611637565b3480156105bc57600080fd5b506102d46116f5565b6103466105d3366004612f0c565b611704565b3480156105e457600080fd5b506103466105f3366004612e3a565b6119b9565b34801561060457600080fd5b50610346610613366004612d40565b611aa0565b34801561062457600080fd5b50610346610633366004612f0c565b611b11565b34801561064457600080fd5b506102d4610653366004612f0c565b611b7d565b34801561066457600080fd5b50610346610673366004612f0c565b611c44565b34801561068457600080fd5b5061037d610693366004612caf565b611cb0565b3480156106a457600080fd5b5061037d600b5481565b3480156106ba57600080fd5b506102aa6106c9366004612cd1565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561071057600080fd5b5061034661071f366004612caf565b611cf1565b34801561073057600080fd5b5061034661073f366004612f5f565b611ded565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806107d757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061082357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600380546108389061331a565b80601f01602080910402602001604051908101604052809291908181526020018280546108649061331a565b80156108b15780601f10610886576101008083540402835291602001916108b1565b820191906000526020600020905b81548152906001019060200180831161089457829003601f168201915b5050505050905090565b60006108c682611e7c565b6108fc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526007602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610930826111bf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610998576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff8216148015906109c557506109c381336106c9565b155b156109fc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a07838383611ec1565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b80600e541415610aca5760405162461bcd60e51b815260206004820152601c60248201527f467a756b693a204e65772076616c7565206d617463686573206f6c64000000006044820152606401610a6f565b600e55565b610a07838383611f42565b60005473ffffffffffffffffffffffffffffffffffffffff163314610b415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610bda5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b80600f541415610c2c5760405162461bcd60e51b815260206004820152601c60248201527f467a756b693a204e65772076616c7565206d617463686573206f6c64000000006044820152606401610a6f565b600f55565b60026009541415610c845760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6f565b6002600955600b54421015610cdb5760405162461bcd60e51b815260206004820152601960248201527f467a756b693a20596f7520636f6d6520746f6f206561726c79000000000000006044820152606401610a6f565b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b166020820152600090603401604051602081830303815290604052805190602001209050610d68838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014549150849050612277565b610dda5760405162461bcd60e51b815260206004820152602b60248201527f467a756b693a20596f7520617265206e6f7420417a756b69202f20536f6d657460448201527f68696e6720686f6c6465720000000000000000000000000000000000000000006064820152608401610a6f565b60008411610e2a5760405162461bcd60e51b815260206004820152601760248201527f467a756b693a204e6f20667265652067697665617761790000000000000000006044820152606401610a6f565b600f54610e3633611cb0565b610e4090866131f7565b1115610e8e5760405162461bcd60e51b815260206004820152601f60248201527f467a756b693a20596f752063616e2774206d696e742074686174206d756368006044820152606401610a6f565b83600e54610e9c9190613223565b341015610eeb5760405162461bcd60e51b815260206004820181905260248201527f467a756b693a2045746865722073656e74206973206e6f7420636f72726563746044820152606401610a6f565b600c54849081610efe6002546001540390565b610f0891906131f7565b1115610f565760405162461bcd60e51b815260206004820181905260248201527f467a756b693a204d696e742f6f72646572206578636565647320737570706c796044820152606401610a6f565b6000601054118015610f6e5750610f6c33611cb0565b155b8015610f9e5750600c5485610f866002546001540390565b610f9091906131f7565b610f9b9060016131f7565b11155b15610fc257610fac8161336e565b9050601060008154610fbd906132a3565b909155505b610fcc338261228d565b848114610fdc57610fdc336122ab565b50506001600955505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461104f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b4773e46424211843e7c9086f59b22baaa0a03c0fe85f61107060648361320f565b61107b906041613223565b604051600081818185875af1925050503d80600081146110b7576040519150601f19603f3d011682016040523d82523d6000602084013e6110bc565b606091505b50735aba94428cafab0ca358f51283e19b49ca4afb8391506110e1905060648361320f565b6110ec906023613223565b604051600081818185875af1925050503d8060008114611128576040519150601f19603f3d011682016040523d82523d6000602084013e61112d565b606091505b507302835f937c287d9bcc0e182bfc07497288031ea59150611152905060648361320f565b61115d906005613223565b604051600081818185875af1925050503d8060008114611199576040519150601f19603f3d011682016040523d82523d6000602084013e61119e565b606091505b50505050565b610a0783838360405180602001604052806000815250611aa0565b60006111ca8261231e565b5192915050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146112385760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b61124460118585612b41565b5061125160138383612b41565b5050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146112bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b8281146113345760405162461bcd60e51b815260206004820152603360248201527f467a756b693a204d7573742070726f7669646520657175616c207175616e746960448201527f7469657320616e6420726563697069656e7473000000000000000000000000006064820152608401610a6f565b6000806113446002546001540390565b905060005b858110156113875786868281811061136357611363613419565b905060200201358361137591906131f7565b92506113808161336e565b9050611349565b50600c5461139583836131f7565b106113e25760405162461bcd60e51b815260206004820181905260248201527f467a756b693a204d696e742f6f72646572206578636565647320737570706c796044820152606401610a6f565b60005b838110156114bb5761143585858381811061140257611402613419565b90506020020160208101906114179190612caf565b88888481811061142957611429613419565b9050602002013561228d565b6114ab85858381811061144a5761144a613419565b905060200201602081019061145f9190612caf565b73ffffffffffffffffffffffffffffffffffffffff16600090815260066020526040902080547fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff169055565b6114b48161336e565b90506113e5565b50505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461152b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b60025460015403811161153d57600080fd5b600c55565b600073ffffffffffffffffffffffffffffffffffffffff8216611591576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205467ffffffffffffffff1690565b60005473ffffffffffffffffffffffffffffffffffffffff16331461162b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b61163560006124ec565b565b60005473ffffffffffffffffffffffffffffffffffffffff16331461169e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b80600d5414156116f05760405162461bcd60e51b815260206004820152601c60248201527f467a756b693a204e65772076616c7565206d617463686573206f6c64000000006044820152606401610a6f565b600d55565b6060600480546108389061331a565b600260095414156117575760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6f565b6002600955600b544210156117ae5760405162461bcd60e51b815260206004820152601960248201527f467a756b693a20596f7520636f6d6520746f6f206561726c79000000000000006044820152606401610a6f565b600081116117fe5760405162461bcd60e51b815260206004820152601060248201527f4e6f2066726565206769766561776179000000000000000000000000000000006044820152606401610a6f565b600f5461180a33611cb0565b61181490836131f7565b11156118625760405162461bcd60e51b815260206004820152601f60248201527f467a756b693a20596f752063616e2774206d696e742074686174206d756368006044820152606401610a6f565b80600d546118709190613223565b3410156118bf5760405162461bcd60e51b815260206004820181905260248201527f467a756b693a2045746865722073656e74206973206e6f7420636f72726563746044820152606401610a6f565b600c548190816118d26002546001540390565b6118dc91906131f7565b111561192a5760405162461bcd60e51b815260206004820181905260248201527f467a756b693a204d696e742f6f72646572206578636565647320737570706c796044820152606401610a6f565b6000601054118015611942575061194033611cb0565b155b80156119725750600c548261195a6002546001540390565b61196491906131f7565b61196f9060016131f7565b11155b15611996576119808161336e565b9050601060008154611991906132a3565b909155505b6119a0338261228d565b8181146119b0576119b0336122ab565b50506001600955565b73ffffffffffffffffffffffffffffffffffffffff8216331415611a09576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260086020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611aab848484611f42565b73ffffffffffffffffffffffffffffffffffffffff83163b15158015611ada5750611ad884848484612561565b155b1561119e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005473ffffffffffffffffffffffffffffffffffffffff163314611b785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b600b55565b6060611b8882611e7c565b611bfa5760405162461bcd60e51b815260206004820152602660248201527f467a756b693a2055524920717565727920666f72206e6f6e6578697374656e7460448201527f20746f6b656e00000000000000000000000000000000000000000000000000006064820152608401610a6f565b600a5460ff16611c39576012611c0f836126e7565b6013604051602001611c2393929190613168565b6040516020818303038152906040529050919050565b6011611c0f836126e7565b60005473ffffffffffffffffffffffffffffffffffffffff163314611cab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b601455565b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602052604081205468010000000000000000900467ffffffffffffffff16610823565b60005473ffffffffffffffffffffffffffffffffffffffff163314611d585760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b73ffffffffffffffffffffffffffffffffffffffff8116611de15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a6f565b611dea816124ec565b50565b60005473ffffffffffffffffffffffffffffffffffffffff163314611e545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b610a0760128383612b41565b73ffffffffffffffffffffffffffffffffffffffff163b151590565b6000600154821080156108235750506000908152600560205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526007602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f4d8261231e565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fb8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff86161480611fe35750611fe385336106c9565b8061200b575033611ff3846108bb565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612044576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8416612091576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61209d60008487611ec1565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260066020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080547fffffffff00000000000000000000000000000000000000000000000000000000169094177401000000000000000000000000000000000000000042909216919091021783558701808452922080549193909116612214576001548214612214578054602086015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090911673ffffffffffffffffffffffffffffffffffffffff8a16171781555b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611251565b6000826122848584612819565b14949350505050565b6122a782826040518060200160405280600081525061288d565b5050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600660205260409020805468010000000000000000900467ffffffffffffffff169060086122f4836132d8565b91906101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b6040805160608101825260008082526020820181905291810191909152816001548110156124ba576000818152600560209081526040918290208251606081018452905473ffffffffffffffffffffffffffffffffffffffff8116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff161515918101829052906124b857805173ffffffffffffffffffffffffffffffffffffffff16156123f9579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016000818152600560209081526040918290208251606081018452905473ffffffffffffffffffffffffffffffffffffffff811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff16151592810192909252156124b3579392505050565b6123f9565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906125bc90339089908890889060040161319b565b602060405180830381600087803b1580156125d657600080fd5b505af1925050508015612624575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261262191810190612f42565b60015b612698573d808015612652576040519150601f19603f3d011682016040523d82523d6000602084013e612657565b606091505b508051612690576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b60608161272757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612751578061273b8161336e565b915061274a9050600a8361320f565b915061272b565b60008167ffffffffffffffff81111561276c5761276c613448565b6040519080825280601f01601f191660200182016040528015612796576020820181803683370190505b5090505b84156126df576127ab600183613260565b91506127b8600a866133a7565b6127c39060306131f7565b60f81b8183815181106127d8576127d8613419565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612812600a8661320f565b945061279a565b600081815b845181101561288557600085828151811061283b5761283b613419565b602002602001015190508083116128615760008381526020829052604090209250612872565b600081815260208490526040902092505b508061287d8161336e565b91505061281e565b509392505050565b610a078383836001805473ffffffffffffffffffffffffffffffffffffffff85166128e4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8361291b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516600081815260066020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168c01811690920217909155858452600590925290912080547fffffffff000000000000000000000000000000000000000000000000000000001690921774010000000000000000000000000000000000000000429092169190910217905580808501838015612a36575073ffffffffffffffffffffffffffffffffffffffff87163b15155b15612ae5575b604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612a946000888480600101955088612561565b612aca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612a3c578260015414612ae057600080fd5b612b38565b5b60405160018301929073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612ae6575b50600155611251565b828054612b4d9061331a565b90600052602060002090601f016020900481019282612b6f5760008555612bd3565b82601f10612ba6578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612bd3565b82800160010185558215612bd3579182015b82811115612bd3578235825591602001919060010190612bb8565b50612bdf929150612be3565b5090565b5b80821115612bdf5760008155600101612be4565b803573ffffffffffffffffffffffffffffffffffffffff81168114612c1c57600080fd5b919050565b60008083601f840112612c3357600080fd5b50813567ffffffffffffffff811115612c4b57600080fd5b6020830191508360208260051b8501011115612c6657600080fd5b9250929050565b60008083601f840112612c7f57600080fd5b50813567ffffffffffffffff811115612c9757600080fd5b602083019150836020828501011115612c6657600080fd5b600060208284031215612cc157600080fd5b612cca82612bf8565b9392505050565b60008060408385031215612ce457600080fd5b612ced83612bf8565b9150612cfb60208401612bf8565b90509250929050565b600080600060608486031215612d1957600080fd5b612d2284612bf8565b9250612d3060208501612bf8565b9150604084013590509250925092565b60008060008060808587031215612d5657600080fd5b612d5f85612bf8565b9350612d6d60208601612bf8565b925060408501359150606085013567ffffffffffffffff80821115612d9157600080fd5b818701915087601f830112612da557600080fd5b813581811115612db757612db7613448565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715612dfd57612dfd613448565b816040528281528a6020848701011115612e1657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612e4d57600080fd5b612e5683612bf8565b915060208301358015158114612e6b57600080fd5b809150509250929050565b60008060408385031215612e8957600080fd5b612e9283612bf8565b946020939093013593505050565b60008060008060408587031215612eb657600080fd5b843567ffffffffffffffff80821115612ece57600080fd5b612eda88838901612c21565b90965094506020870135915080821115612ef357600080fd5b50612f0087828801612c21565b95989497509550505050565b600060208284031215612f1e57600080fd5b5035919050565b600060208284031215612f3757600080fd5b8135612cca81613477565b600060208284031215612f5457600080fd5b8151612cca81613477565b60008060208385031215612f7257600080fd5b823567ffffffffffffffff811115612f8957600080fd5b612f9585828601612c6d565b90969095509350505050565b60008060008060408587031215612fb757600080fd5b843567ffffffffffffffff80821115612fcf57600080fd5b612fdb88838901612c6d565b90965094506020870135915080821115612ff457600080fd5b50612f0087828801612c6d565b60008060006040848603121561301657600080fd5b83359250602084013567ffffffffffffffff81111561303457600080fd5b61304086828701612c21565b9497909650939450505050565b60008151808452613065816020860160208601613277565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b8054600090600181811c90808316806130b157607f831692505b60208084108214156130ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b818015613100576001811461312f5761315c565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0086168952848901965061315c565b60008881526020902060005b868110156131545781548b82015290850190830161313b565b505084890196505b50505050505092915050565b60006131748286613097565b8451613184818360208901613277565b61319081830186613097565b979650505050505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526131da608083018461304d565b9695505050505050565b602081526000612cca602083018461304d565b6000821982111561320a5761320a6133bb565b500190565b60008261321e5761321e6133ea565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561325b5761325b6133bb565b500290565b600082821015613272576132726133bb565b500390565b60005b8381101561329257818101518382015260200161327a565b8381111561119e5750506000910152565b6000816132b2576132b26133bb565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600067ffffffffffffffff8216806132f2576132f26133bb565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0192915050565b600181811c9082168061332e57607f821691505b60208210811415613368577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133a0576133a06133bb565b5060010190565b6000826133b6576133b66133ea565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611dea57600080fdfea2646970667358221220a5dbba194375da6655afd74212abbea358569bf51dcd2462518a5309fecb261064736f6c63430008070033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef697066733a2f2f516d636b66656d7644455933675756794a626179414a4e5270667356326f6670344a3478554a72767a315a4443652f000000000000000000000000000000000000000000000000000000000000014d
Deployed Bytecode
0x6080604052600436106102855760003560e01c80636f8b44b011610153578063a22cb465116100cb578063dc33e6811161007f578063e985e9c511610064578063e985e9c5146106ae578063f2fde38b14610704578063fe2c7fee1461072457600080fd5b8063dc33e68114610678578063e6fd48bc1461069857600080fd5b8063c44bef75116100b0578063c44bef7514610618578063c87b56dd14610638578063dab5f3401461065857600080fd5b8063a22cb465146105d8578063b88d4fde146105f857600080fd5b80638d859f3e1161012257806391b7f5ed1161010757806391b7f5ed1461059057806395d89b41146105b0578063a0712d68146105c557600080fd5b80638d859f3e1461054f5780638da5cb5b1461056557600080fd5b80636f8b44b0146104e457806370a0823114610504578063715018a61461052457806374f81c231461053957600080fd5b8063272ff2481161020157806351830227116101b5578063655a65411161019a578063655a65411461048e5780636790a9de146104a457806367d85be5146104c457600080fd5b806351830227146104545780636352211e1461046e57600080fd5b8063394cba75116101e6578063394cba751461040c5780633ccfd60b1461041f57806342842e0e1461043457600080fd5b8063272ff248146103d657806332cb6b0c146103f657600080fd5b80630b74f6ee116102585780631c96cae91161023d5780631c96cae91461038b57806323b872dd146103a15780632714ce92146103c157600080fd5b80630b74f6ee1461034857806318160ddd1461036857600080fd5b806301ffc9a71461028a57806306fdde03146102bf578063081812fc146102e1578063095ea7b314610326575b600080fd5b34801561029657600080fd5b506102aa6102a5366004612f25565b610744565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102d4610829565b6040516102b691906131e4565b3480156102ed57600080fd5b506103016102fc366004612f0c565b6108bb565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102b6565b34801561033257600080fd5b50610346610341366004612e76565b610925565b005b34801561035457600080fd5b50610346610363366004612f0c565b610a0c565b34801561037457600080fd5b50600254600154035b6040519081526020016102b6565b34801561039757600080fd5b5061037d600f5481565b3480156103ad57600080fd5b506103466103bc366004612d04565b610acf565b3480156103cd57600080fd5b50610346610ada565b3480156103e257600080fd5b506103466103f1366004612f0c565b610b73565b34801561040257600080fd5b5061037d600c5481565b61034661041a366004613001565b610c31565b34801561042b57600080fd5b50610346610fe8565b34801561044057600080fd5b5061034661044f366004612d04565b6111a4565b34801561046057600080fd5b50600a546102aa9060ff1681565b34801561047a57600080fd5b50610301610489366004612f0c565b6111bf565b34801561049a57600080fd5b5061037d600e5481565b3480156104b057600080fd5b506103466104bf366004612fa1565b6111d1565b3480156104d057600080fd5b506103466104df366004612ea0565b611258565b3480156104f057600080fd5b506103466104ff366004612f0c565b6114c4565b34801561051057600080fd5b5061037d61051f366004612caf565b611542565b34801561053057600080fd5b506103466115c4565b34801561054557600080fd5b5061037d60105481565b34801561055b57600080fd5b5061037d600d5481565b34801561057157600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610301565b34801561059c57600080fd5b506103466105ab366004612f0c565b611637565b3480156105bc57600080fd5b506102d46116f5565b6103466105d3366004612f0c565b611704565b3480156105e457600080fd5b506103466105f3366004612e3a565b6119b9565b34801561060457600080fd5b50610346610613366004612d40565b611aa0565b34801561062457600080fd5b50610346610633366004612f0c565b611b11565b34801561064457600080fd5b506102d4610653366004612f0c565b611b7d565b34801561066457600080fd5b50610346610673366004612f0c565b611c44565b34801561068457600080fd5b5061037d610693366004612caf565b611cb0565b3480156106a457600080fd5b5061037d600b5481565b3480156106ba57600080fd5b506102aa6106c9366004612cd1565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561071057600080fd5b5061034661071f366004612caf565b611cf1565b34801561073057600080fd5b5061034661073f366004612f5f565b611ded565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806107d757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061082357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600380546108389061331a565b80601f01602080910402602001604051908101604052809291908181526020018280546108649061331a565b80156108b15780601f10610886576101008083540402835291602001916108b1565b820191906000526020600020905b81548152906001019060200180831161089457829003601f168201915b5050505050905090565b60006108c682611e7c565b6108fc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526007602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610930826111bf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610998576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff8216148015906109c557506109c381336106c9565b155b156109fc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a07838383611ec1565b505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b80600e541415610aca5760405162461bcd60e51b815260206004820152601c60248201527f467a756b693a204e65772076616c7565206d617463686573206f6c64000000006044820152606401610a6f565b600e55565b610a07838383611f42565b60005473ffffffffffffffffffffffffffffffffffffffff163314610b415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314610bda5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b80600f541415610c2c5760405162461bcd60e51b815260206004820152601c60248201527f467a756b693a204e65772076616c7565206d617463686573206f6c64000000006044820152606401610a6f565b600f55565b60026009541415610c845760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6f565b6002600955600b54421015610cdb5760405162461bcd60e51b815260206004820152601960248201527f467a756b693a20596f7520636f6d6520746f6f206561726c79000000000000006044820152606401610a6f565b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b166020820152600090603401604051602081830303815290604052805190602001209050610d68838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014549150849050612277565b610dda5760405162461bcd60e51b815260206004820152602b60248201527f467a756b693a20596f7520617265206e6f7420417a756b69202f20536f6d657460448201527f68696e6720686f6c6465720000000000000000000000000000000000000000006064820152608401610a6f565b60008411610e2a5760405162461bcd60e51b815260206004820152601760248201527f467a756b693a204e6f20667265652067697665617761790000000000000000006044820152606401610a6f565b600f54610e3633611cb0565b610e4090866131f7565b1115610e8e5760405162461bcd60e51b815260206004820152601f60248201527f467a756b693a20596f752063616e2774206d696e742074686174206d756368006044820152606401610a6f565b83600e54610e9c9190613223565b341015610eeb5760405162461bcd60e51b815260206004820181905260248201527f467a756b693a2045746865722073656e74206973206e6f7420636f72726563746044820152606401610a6f565b600c54849081610efe6002546001540390565b610f0891906131f7565b1115610f565760405162461bcd60e51b815260206004820181905260248201527f467a756b693a204d696e742f6f72646572206578636565647320737570706c796044820152606401610a6f565b6000601054118015610f6e5750610f6c33611cb0565b155b8015610f9e5750600c5485610f866002546001540390565b610f9091906131f7565b610f9b9060016131f7565b11155b15610fc257610fac8161336e565b9050601060008154610fbd906132a3565b909155505b610fcc338261228d565b848114610fdc57610fdc336122ab565b50506001600955505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461104f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b4773e46424211843e7c9086f59b22baaa0a03c0fe85f61107060648361320f565b61107b906041613223565b604051600081818185875af1925050503d80600081146110b7576040519150601f19603f3d011682016040523d82523d6000602084013e6110bc565b606091505b50735aba94428cafab0ca358f51283e19b49ca4afb8391506110e1905060648361320f565b6110ec906023613223565b604051600081818185875af1925050503d8060008114611128576040519150601f19603f3d011682016040523d82523d6000602084013e61112d565b606091505b507302835f937c287d9bcc0e182bfc07497288031ea59150611152905060648361320f565b61115d906005613223565b604051600081818185875af1925050503d8060008114611199576040519150601f19603f3d011682016040523d82523d6000602084013e61119e565b606091505b50505050565b610a0783838360405180602001604052806000815250611aa0565b60006111ca8261231e565b5192915050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146112385760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b61124460118585612b41565b5061125160138383612b41565b5050505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146112bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b8281146113345760405162461bcd60e51b815260206004820152603360248201527f467a756b693a204d7573742070726f7669646520657175616c207175616e746960448201527f7469657320616e6420726563697069656e7473000000000000000000000000006064820152608401610a6f565b6000806113446002546001540390565b905060005b858110156113875786868281811061136357611363613419565b905060200201358361137591906131f7565b92506113808161336e565b9050611349565b50600c5461139583836131f7565b106113e25760405162461bcd60e51b815260206004820181905260248201527f467a756b693a204d696e742f6f72646572206578636565647320737570706c796044820152606401610a6f565b60005b838110156114bb5761143585858381811061140257611402613419565b90506020020160208101906114179190612caf565b88888481811061142957611429613419565b9050602002013561228d565b6114ab85858381811061144a5761144a613419565b905060200201602081019061145f9190612caf565b73ffffffffffffffffffffffffffffffffffffffff16600090815260066020526040902080547fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff169055565b6114b48161336e565b90506113e5565b50505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461152b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b60025460015403811161153d57600080fd5b600c55565b600073ffffffffffffffffffffffffffffffffffffffff8216611591576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205467ffffffffffffffff1690565b60005473ffffffffffffffffffffffffffffffffffffffff16331461162b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b61163560006124ec565b565b60005473ffffffffffffffffffffffffffffffffffffffff16331461169e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b80600d5414156116f05760405162461bcd60e51b815260206004820152601c60248201527f467a756b693a204e65772076616c7565206d617463686573206f6c64000000006044820152606401610a6f565b600d55565b6060600480546108389061331a565b600260095414156117575760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6f565b6002600955600b544210156117ae5760405162461bcd60e51b815260206004820152601960248201527f467a756b693a20596f7520636f6d6520746f6f206561726c79000000000000006044820152606401610a6f565b600081116117fe5760405162461bcd60e51b815260206004820152601060248201527f4e6f2066726565206769766561776179000000000000000000000000000000006044820152606401610a6f565b600f5461180a33611cb0565b61181490836131f7565b11156118625760405162461bcd60e51b815260206004820152601f60248201527f467a756b693a20596f752063616e2774206d696e742074686174206d756368006044820152606401610a6f565b80600d546118709190613223565b3410156118bf5760405162461bcd60e51b815260206004820181905260248201527f467a756b693a2045746865722073656e74206973206e6f7420636f72726563746044820152606401610a6f565b600c548190816118d26002546001540390565b6118dc91906131f7565b111561192a5760405162461bcd60e51b815260206004820181905260248201527f467a756b693a204d696e742f6f72646572206578636565647320737570706c796044820152606401610a6f565b6000601054118015611942575061194033611cb0565b155b80156119725750600c548261195a6002546001540390565b61196491906131f7565b61196f9060016131f7565b11155b15611996576119808161336e565b9050601060008154611991906132a3565b909155505b6119a0338261228d565b8181146119b0576119b0336122ab565b50506001600955565b73ffffffffffffffffffffffffffffffffffffffff8216331415611a09576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260086020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611aab848484611f42565b73ffffffffffffffffffffffffffffffffffffffff83163b15158015611ada5750611ad884848484612561565b155b1561119e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005473ffffffffffffffffffffffffffffffffffffffff163314611b785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b600b55565b6060611b8882611e7c565b611bfa5760405162461bcd60e51b815260206004820152602660248201527f467a756b693a2055524920717565727920666f72206e6f6e6578697374656e7460448201527f20746f6b656e00000000000000000000000000000000000000000000000000006064820152608401610a6f565b600a5460ff16611c39576012611c0f836126e7565b6013604051602001611c2393929190613168565b6040516020818303038152906040529050919050565b6011611c0f836126e7565b60005473ffffffffffffffffffffffffffffffffffffffff163314611cab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b601455565b73ffffffffffffffffffffffffffffffffffffffff811660009081526006602052604081205468010000000000000000900467ffffffffffffffff16610823565b60005473ffffffffffffffffffffffffffffffffffffffff163314611d585760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b73ffffffffffffffffffffffffffffffffffffffff8116611de15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a6f565b611dea816124ec565b50565b60005473ffffffffffffffffffffffffffffffffffffffff163314611e545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b610a0760128383612b41565b73ffffffffffffffffffffffffffffffffffffffff163b151590565b6000600154821080156108235750506000908152600560205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526007602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f4d8261231e565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fb8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff86161480611fe35750611fe385336106c9565b8061200b575033611ff3846108bb565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612044576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8416612091576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61209d60008487611ec1565b73ffffffffffffffffffffffffffffffffffffffff858116600090815260066020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff9283167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080547fffffffff00000000000000000000000000000000000000000000000000000000169094177401000000000000000000000000000000000000000042909216919091021783558701808452922080549193909116612214576001548214612214578054602086015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090911673ffffffffffffffffffffffffffffffffffffffff8a16171781555b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611251565b6000826122848584612819565b14949350505050565b6122a782826040518060200160405280600081525061288d565b5050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600660205260409020805468010000000000000000900467ffffffffffffffff169060086122f4836132d8565b91906101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b6040805160608101825260008082526020820181905291810191909152816001548110156124ba576000818152600560209081526040918290208251606081018452905473ffffffffffffffffffffffffffffffffffffffff8116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff161515918101829052906124b857805173ffffffffffffffffffffffffffffffffffffffff16156123f9579392505050565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016000818152600560209081526040918290208251606081018452905473ffffffffffffffffffffffffffffffffffffffff811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff16151592810192909252156124b3579392505050565b6123f9565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906125bc90339089908890889060040161319b565b602060405180830381600087803b1580156125d657600080fd5b505af1925050508015612624575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261262191810190612f42565b60015b612698573d808015612652576040519150601f19603f3d011682016040523d82523d6000602084013e612657565b606091505b508051612690576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b60608161272757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612751578061273b8161336e565b915061274a9050600a8361320f565b915061272b565b60008167ffffffffffffffff81111561276c5761276c613448565b6040519080825280601f01601f191660200182016040528015612796576020820181803683370190505b5090505b84156126df576127ab600183613260565b91506127b8600a866133a7565b6127c39060306131f7565b60f81b8183815181106127d8576127d8613419565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612812600a8661320f565b945061279a565b600081815b845181101561288557600085828151811061283b5761283b613419565b602002602001015190508083116128615760008381526020829052604090209250612872565b600081815260208490526040902092505b508061287d8161336e565b91505061281e565b509392505050565b610a078383836001805473ffffffffffffffffffffffffffffffffffffffff85166128e4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8361291b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516600081815260066020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168c01811690920217909155858452600590925290912080547fffffffff000000000000000000000000000000000000000000000000000000001690921774010000000000000000000000000000000000000000429092169190910217905580808501838015612a36575073ffffffffffffffffffffffffffffffffffffffff87163b15155b15612ae5575b604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612a946000888480600101955088612561565b612aca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612a3c578260015414612ae057600080fd5b612b38565b5b60405160018301929073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612ae6575b50600155611251565b828054612b4d9061331a565b90600052602060002090601f016020900481019282612b6f5760008555612bd3565b82601f10612ba6578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612bd3565b82800160010185558215612bd3579182015b82811115612bd3578235825591602001919060010190612bb8565b50612bdf929150612be3565b5090565b5b80821115612bdf5760008155600101612be4565b803573ffffffffffffffffffffffffffffffffffffffff81168114612c1c57600080fd5b919050565b60008083601f840112612c3357600080fd5b50813567ffffffffffffffff811115612c4b57600080fd5b6020830191508360208260051b8501011115612c6657600080fd5b9250929050565b60008083601f840112612c7f57600080fd5b50813567ffffffffffffffff811115612c9757600080fd5b602083019150836020828501011115612c6657600080fd5b600060208284031215612cc157600080fd5b612cca82612bf8565b9392505050565b60008060408385031215612ce457600080fd5b612ced83612bf8565b9150612cfb60208401612bf8565b90509250929050565b600080600060608486031215612d1957600080fd5b612d2284612bf8565b9250612d3060208501612bf8565b9150604084013590509250925092565b60008060008060808587031215612d5657600080fd5b612d5f85612bf8565b9350612d6d60208601612bf8565b925060408501359150606085013567ffffffffffffffff80821115612d9157600080fd5b818701915087601f830112612da557600080fd5b813581811115612db757612db7613448565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715612dfd57612dfd613448565b816040528281528a6020848701011115612e1657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612e4d57600080fd5b612e5683612bf8565b915060208301358015158114612e6b57600080fd5b809150509250929050565b60008060408385031215612e8957600080fd5b612e9283612bf8565b946020939093013593505050565b60008060008060408587031215612eb657600080fd5b843567ffffffffffffffff80821115612ece57600080fd5b612eda88838901612c21565b90965094506020870135915080821115612ef357600080fd5b50612f0087828801612c21565b95989497509550505050565b600060208284031215612f1e57600080fd5b5035919050565b600060208284031215612f3757600080fd5b8135612cca81613477565b600060208284031215612f5457600080fd5b8151612cca81613477565b60008060208385031215612f7257600080fd5b823567ffffffffffffffff811115612f8957600080fd5b612f9585828601612c6d565b90969095509350505050565b60008060008060408587031215612fb757600080fd5b843567ffffffffffffffff80821115612fcf57600080fd5b612fdb88838901612c6d565b90965094506020870135915080821115612ff457600080fd5b50612f0087828801612c6d565b60008060006040848603121561301657600080fd5b83359250602084013567ffffffffffffffff81111561303457600080fd5b61304086828701612c21565b9497909650939450505050565b60008151808452613065816020860160208601613277565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b8054600090600181811c90808316806130b157607f831692505b60208084108214156130ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b818015613100576001811461312f5761315c565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0086168952848901965061315c565b60008881526020902060005b868110156131545781548b82015290850190830161313b565b505084890196505b50505050505092915050565b60006131748286613097565b8451613184818360208901613277565b61319081830186613097565b979650505050505050565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526131da608083018461304d565b9695505050505050565b602081526000612cca602083018461304d565b6000821982111561320a5761320a6133bb565b500190565b60008261321e5761321e6133ea565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561325b5761325b6133bb565b500290565b600082821015613272576132726133bb565b500390565b60005b8381101561329257818101518382015260200161327a565b8381111561119e5750506000910152565b6000816132b2576132b26133bb565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600067ffffffffffffffff8216806132f2576132f26133bb565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0192915050565b600181811c9082168061332e57607f821691505b60208210811415613368577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133a0576133a06133bb565b5060010190565b6000826133b6576133b66133ea565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611dea57600080fdfea2646970667358221220a5dbba194375da6655afd74212abbea358569bf51dcd2462518a5309fecb261064736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000014d
-----Decoded View---------------
Arg [0] : quantity (uint256): 333
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000014d
Deployed Bytecode Sourcemap
51043:5893:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32544:305;;;;;;;;;;-1:-1:-1;32544:305:0;;;;;:::i;:::-;;:::i;:::-;;;10112:14:1;;10105:22;10087:41;;10075:2;10060:18;32544:305:0;;;;;;;;35657:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37160:204::-;;;;;;;;;;-1:-1:-1;37160:204:0;;;;;:::i;:::-;;:::i;:::-;;;9376:42:1;9364:55;;;9346:74;;9334:2;9319:18;37160:204:0;9200:226:1;36723:371:0;;;;;;;;;;-1:-1:-1;36723:371:0;;;;;:::i;:::-;;:::i;:::-;;56687:159;;;;;;;;;;-1:-1:-1;56687:159:0;;;;;:::i;:::-;;:::i;31793:303::-;;;;;;;;;;-1:-1:-1;32047:12:0;;32031:13;;:28;31793:303;;;15366:25:1;;;15354:2;15339:18;31793:303:0;15220:177:1;51348:32:0;;;;;;;;;;;;;;;;38025:170;;;;;;;;;;-1:-1:-1;38025:170:0;;;;;:::i;:::-;;:::i;55750:81::-;;;;;;;;;;;;;:::i;56243:149::-;;;;;;;;;;-1:-1:-1;56243:149:0;;;;;:::i;:::-;;:::i;51216:35::-;;;;;;;;;;;;;;;;53424:1049;;;;;;:::i;:::-;;:::i;54600:535::-;;;;;;;;;;;;;:::i;38266:185::-;;;;;;;;;;-1:-1:-1;38266:185:0;;;;;:::i;:::-;;:::i;51132:28::-;;;;;;;;;;-1:-1:-1;51132:28:0;;;;;;;;35465:125;;;;;;;;;;-1:-1:-1;35465:125:0;;;;;:::i;:::-;;:::i;51302:41::-;;;;;;;;;;;;;;;;56083:154;;;;;;;;;;-1:-1:-1;56083:154:0;;;;;:::i;:::-;;:::i;55145:597::-;;;;;;;;;;-1:-1:-1;55145:597:0;;;;;:::i;:::-;;:::i;56398:136::-;;;;;;;;;;-1:-1:-1;56398:136:0;;;;;:::i;:::-;;:::i;32913:206::-;;;;;;;;;;-1:-1:-1;32913:206:0;;;;;:::i;:::-;;:::i;10314:103::-;;;;;;;;;;;;;:::i;51415:40::-;;;;;;;;;;;;;;;;51256:41;;;;;;;;;;;;;;;;9663:87;;;;;;;;;;-1:-1:-1;9709:7:0;9736:6;;;9663:87;;56540:141;;;;;;;;;;-1:-1:-1;56540:141:0;;;;;:::i;:::-;;:::i;35826:104::-;;;;;;;;;;;;;:::i;52607:811::-;;;;;;:::i;:::-;;:::i;37436:287::-;;;;;;;;;;-1:-1:-1;37436:287:0;;;;;:::i;:::-;;:::i;38522:369::-;;;;;;;;;;-1:-1:-1;38522:369:0;;;;;:::i;:::-;;:::i;55973:104::-;;;;;;;;;;-1:-1:-1;55973:104:0;;;;;:::i;:::-;;:::i;51978:394::-;;;;;;;;;;-1:-1:-1;51978:394:0;;;;;:::i;:::-;;:::i;56852:81::-;;;;;;;;;;-1:-1:-1;56852:81:0;;;;;:::i;:::-;;:::i;52378:107::-;;;;;;;;;;-1:-1:-1;52378:107:0;;;;;:::i;:::-;;:::i;51169:42::-;;;;;;;;;;;;;;;;37794:164;;;;;;;;;;-1:-1:-1;37794:164:0;;;;;:::i;:::-;37915:25;;;;37891:4;37915:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37794:164;10572:201;;;;;;;;;;-1:-1:-1;10572:201:0;;;;;:::i;:::-;;:::i;55837:130::-;;;;;;;;;;-1:-1:-1;55837:130:0;;;;;:::i;:::-;;:::i;32544:305::-;32646:4;32683:40;;;32698:25;32683:40;;:105;;-1:-1:-1;32740:48:0;;;32755:33;32740:48;32683:105;:158;;;-1:-1:-1;22571:25:0;22556:40;;;;32805:36;32663:178;32544:305;-1:-1:-1;;32544:305:0:o;35657:100::-;35711:13;35744:5;35737:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35657:100;:::o;37160:204::-;37228:7;37253:16;37261:7;37253;:16::i;:::-;37248:64;;37278:34;;;;;;;;;;;;;;37248:64;-1:-1:-1;37332:24:0;;;;:15;:24;;;;;;;;;37160:204::o;36723:371::-;36796:13;36812:24;36828:7;36812:15;:24::i;:::-;36796:40;;36857:5;36851:11;;:2;:11;;;36847:48;;;36871:24;;;;;;;;;;;;;;36847:48;8467:10;36912:21;;;;;;;:63;;-1:-1:-1;36938:37:0;36955:5;8467:10;37794:164;:::i;36938:37::-;36937:38;36912:63;36908:138;;;36999:35;;;;;;;;;;;;;;36908:138;37058:28;37067:2;37071:7;37080:5;37058:8;:28::i;:::-;36785:309;36723:371;;:::o;56687:159::-;9709:7;9736:6;9883:23;9736:6;8467:10;9883:23;9875:68;;;;-1:-1:-1;;;9875:68:0;;13619:2:1;9875:68:0;;;13601:21:1;;;13638:18;;;13631:30;13697:34;13677:18;;;13670:62;13749:18;;9875:68:0;;;;;;;;;56775:5:::1;56760:11;;:20;;56751:63;;;::::0;-1:-1:-1;;;56751:63:0;;10919:2:1;56751:63:0::1;::::0;::::1;10901:21:1::0;10958:2;10938:18;;;10931:30;10997;10977:18;;;10970:58;11045:18;;56751:63:0::1;10717:352:1::0;56751:63:0::1;56821:11;:19:::0;56687:159::o;38025:170::-;38159:28;38169:4;38175:2;38179:7;38159:9;:28::i;55750:81::-;9709:7;9736:6;9883:23;9736:6;8467:10;9883:23;9875:68;;;;-1:-1:-1;;;9875:68:0;;13619:2:1;9875:68:0;;;13601:21:1;;;13638:18;;;13631:30;13697:34;13677:18;;;13670:62;13749:18;;9875:68:0;13417:356:1;9875:68:0;55817:8:::1;::::0;;55805:20;;::::1;55817:8;::::0;;::::1;55816:9;55805:20;::::0;;55750:81::o;56243:149::-;9709:7;9736:6;9883:23;9736:6;8467:10;9883:23;9875:68;;;;-1:-1:-1;;;9875:68:0;;13619:2:1;9875:68:0;;;13601:21:1;;;13638:18;;;13631:30;13697:34;13677:18;;;13670:62;13749:18;;9875:68:0;13417:356:1;9875:68:0;56323:6:::1;56312:7;;:17;;56303:60;;;::::0;-1:-1:-1;;;56303:60:0;;10919:2:1;56303:60:0::1;::::0;::::1;10901:21:1::0;10958:2;10938:18;;;10931:30;10997;10977:18;;;10970:58;11045:18;;56303:60:0::1;10717:352:1::0;56303:60:0::1;56370:7;:16:::0;56243:149::o;53424:1049::-;4637:1;5235:7;;:19;;5227:63;;;;-1:-1:-1;;;5227:63:0;;15062:2:1;5227:63:0;;;15044:21:1;15101:2;15081:18;;;15074:30;15140:33;15120:18;;;15113:61;15191:18;;5227:63:0;14860:355:1;5227:63:0;4637:1;5368:7;:18;53557:14:::1;::::0;53538:15:::1;:33;;53530:71;;;::::0;-1:-1:-1;;;53530:71:0;;10565:2:1;53530:71:0::1;::::0;::::1;10547:21:1::0;10604:2;10584:18;;;10577:30;10643:27;10623:18;;;10616:55;10688:18;;53530:71:0::1;10363:349:1::0;53530:71:0::1;53641:28;::::0;8422:66:1;53658:10:0::1;8409:2:1::0;8405:15;8401:88;53641:28:0::1;::::0;::::1;8389:101:1::0;53608:20:0::1;::::0;8506:12:1;;53641:28:0::1;;;;;;;;;;;;53631:39;;;;;;53608:62;;53685:58;53704:12;;53685:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;53718:10:0::1;::::0;;-1:-1:-1;53730:12:0;;-1:-1:-1;53685:18:0::1;:58::i;:::-;53677:113;;;::::0;-1:-1:-1;;;53677:113:0;;12090:2:1;53677:113:0::1;::::0;::::1;12072:21:1::0;12129:2;12109:18;;;12102:30;12168:34;12148:18;;;12141:62;12239:13;12219:18;;;12212:41;12270:19;;53677:113:0::1;11888:407:1::0;53677:113:0::1;53816:1;53805:8;:12;53797:48;;;::::0;-1:-1:-1;;;53797:48:0;;12502:2:1;53797:48:0::1;::::0;::::1;12484:21:1::0;12541:2;12521:18;;;12514:30;12580:25;12560:18;;;12553:53;12623:18;;53797:48:0::1;12300:347:1::0;53797:48:0::1;53899:7;;53871:24;53884:10;53871:12;:24::i;:::-;53860:35;::::0;:8;:35:::1;:::i;:::-;:46;;53852:90;;;::::0;-1:-1:-1;;;53852:90:0;;13980:2:1;53852:90:0::1;::::0;::::1;13962:21:1::0;14019:2;13999:18;;;13992:30;14058:33;14038:18;;;14031:61;14109:18;;53852:90:0::1;13778:355:1::0;53852:90:0::1;53985:8;53971:11;;:22;;;;:::i;:::-;53958:9;:35;;53949:81;;;::::0;-1:-1:-1;;;53949:81:0;;14340:2:1;53949:81:0::1;::::0;::::1;14322:21:1::0;;;14359:18;;;14352:30;14418:34;14398:18;;;14391:62;14470:18;;53949:81:0::1;14138:356:1::0;53949:81:0::1;54117:10;::::0;54065:8;;;54089:13:::1;32047:12:::0;;32031:13;;:28;;31793:303;54089:13:::1;:24;;;;:::i;:::-;:38;;54080:85;;;::::0;-1:-1:-1;;;54080:85:0;;14701:2:1;54080:85:0::1;::::0;::::1;14683:21:1::0;;;14720:18;;;14713:30;14779:34;14759:18;;;14752:62;14831:18;;54080:85:0::1;14499:356:1::0;54080:85:0::1;54199:1;54177:19;;:23;:56;;;;;54204:24;54217:10;54204:12;:24::i;:::-;:29:::0;54177:56:::1;:102;;;;;54269:10;;54253:8;54237:13;32047:12:::0;;32031:13;;:28;;31793:303;54237:13:::1;:24;;;;:::i;:::-;:28;::::0;54264:1:::1;54237:28;:::i;:::-;:42;;54177:102;54174:173;;;54290:17;::::0;::::1;:::i;:::-;;;54320:19;;54318:21;;;;;:::i;:::-;::::0;;;-1:-1:-1;54174:173:0::1;54353:38;54363:10;54375:15;54353:9;:38::i;:::-;54422:8;54403:15;:27;54400:67;;54439:28;54456:10;54439:16;:28::i;:::-;-1:-1:-1::0;;4593:1:0;5547:7;:22;-1:-1:-1;;;53424:1049:0:o;54600:535::-;9709:7;9736:6;9883:23;9736:6;8467:10;9883:23;9875:68;;;;-1:-1:-1;;;9875:68:0;;13619:2:1;9875:68:0;;;13601:21:1;;;13638:18;;;13631:30;13697:34;13677:18;;;13670:62;13749:18;;9875:68:0;13417:356:1;9875:68:0;54744:21:::1;54780:42;54836:12;54845:3;54744:21:::0;54836:12:::1;:::i;:::-;:17;::::0;54851:2:::1;54836:17;:::i;:::-;54772:86;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;54873:42:0::1;::::0;-1:-1:-1;54929:12:0::1;::::0;-1:-1:-1;54938:3:0::1;54929:6:::0;:12:::1;:::i;:::-;:17;::::0;54944:2:::1;54929:17;:::i;:::-;54865:86;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;54966:42:0::1;::::0;-1:-1:-1;55022:12:0::1;::::0;-1:-1:-1;55031:3:0::1;55022:6:::0;:12:::1;:::i;:::-;:16;::::0;55037:1:::1;55022:16;:::i;:::-;54958:85;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54637:498;54600:535::o:0;38266:185::-;38404:39;38421:4;38427:2;38431:7;38404:39;;;;;;;;;;;;:16;:39::i;35465:125::-;35529:7;35556:21;35569:7;35556:12;:21::i;:::-;:26;;35465:125;-1:-1:-1;;35465:125:0:o;56083:154::-;9709:7;9736:6;9883:23;9736:6;8467:10;9883:23;9875:68;;;;-1:-1:-1;;;9875:68:0;;13619:2:1;9875:68:0;;;13601:21:1;;;13638:18;;;13631:30;13697:34;13677:18;;;13670:62;13749:18;;9875:68:0;13417:356:1;9875:68:0;56176:24:::1;:15;56194:6:::0;;56176:24:::1;:::i;:::-;-1:-1:-1::0;56207:24:0::1;:15;56225:6:::0;;56207:24:::1;:::i;:::-;;56083:154:::0;;;;:::o;55145:597::-;9709:7;9736:6;9883:23;9736:6;8467:10;9883:23;9875:68;;;;-1:-1:-1;;;9875:68:0;;13619:2:1;9875:68:0;;;13601:21:1;;;13638:18;;;13631:30;13697:34;13677:18;;;13670:62;13749:18;;9875:68:0;13417:356:1;9875:68:0;55254:35;;::::1;55246:100;;;::::0;-1:-1:-1;;;55246:100:0;;12854:2:1;55246:100:0::1;::::0;::::1;12836:21:1::0;12893:2;12873:18;;;12866:30;12932:34;12912:18;;;12905:62;13003:21;12983:18;;;12976:49;13042:19;;55246:100:0::1;12652:415:1::0;55246:100:0::1;55355:21;55383:14:::0;55400:13:::1;32047:12:::0;;32031:13;;:28;;31793:303;55400:13:::1;55383:30;;55424:9;55420:85;55435:19:::0;;::::1;55420:85;;;55486:8;;55495:1;55486:11;;;;;;;:::i;:::-;;;;;;;55469:28;;;;;:::i;:::-;::::0;-1:-1:-1;55456:3:0::1;::::0;::::1;:::i;:::-;;;55420:85;;;-1:-1:-1::0;55545:10:0::1;::::0;55520:22:::1;55529:13:::0;55520:6;:22:::1;:::i;:::-;:35;55511:82;;;::::0;-1:-1:-1;;;55511:82:0;;14701:2:1;55511:82:0::1;::::0;::::1;14683:21:1::0;;;14720:18;;;14713:30;14779:34;14759:18;;;14752:62;14831:18;;55511:82:0::1;14499:356:1::0;55511:82:0::1;55606:9;55602:135;55617:20:::0;;::::1;55602:135;;;55652:35;55662:9;;55672:1;55662:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;55675:8;;55684:1;55675:11;;;;;;;:::i;:::-;;;;;;;55652:9;:35::i;:::-;55696:33;55716:9;;55726:1;55716:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;50368:18:::0;;50400:1;50368:18;;;:12;:18;;;;;:33;;;;;;50290:119;55696:33:::1;55639:3;::::0;::::1;:::i;:::-;;;55602:135;;;;55239:503;;55145:597:::0;;;;:::o;56398:136::-;9709:7;9736:6;9883:23;9736:6;8467:10;9883:23;9875:68;;;;-1:-1:-1;;;9875:68:0;;13619:2:1;9875:68:0;;;13601:21:1;;;13638:18;;;13631:30;13697:34;13677:18;;;13670:62;13749:18;;9875:68:0;13417:356:1;9875:68:0;32047:12;;32031:13;;:28;56473:9:::1;:25;56464:35;;;::::0;::::1;;56506:10;:22:::0;56398:136::o;32913:206::-;32977:7;33001:19;;;32997:60;;33029:28;;;;;;;;;;;;;;32997:60;-1:-1:-1;33083:19:0;;;;;;:12;:19;;;;;:27;;;;32913:206::o;10314:103::-;9709:7;9736:6;9883:23;9736:6;8467:10;9883:23;9875:68;;;;-1:-1:-1;;;9875:68:0;;13619:2:1;9875:68:0;;;13601:21:1;;;13638:18;;;13631:30;13697:34;13677:18;;;13670:62;13749:18;;9875:68:0;13417:356:1;9875:68:0;10379:30:::1;10406:1;10379:18;:30::i;:::-;10314:103::o:0;56540:141::-;9709:7;9736:6;9883:23;9736:6;8467:10;9883:23;9875:68;;;;-1:-1:-1;;;9875:68:0;;13619:2:1;9875:68:0;;;13601:21:1;;;13638:18;;;13631:30;13697:34;13677:18;;;13670:62;13749:18;;9875:68:0;13417:356:1;9875:68:0;56616:5:::1;56607;;:14;;56598:57;;;::::0;-1:-1:-1;;;56598:57:0;;10919:2:1;56598:57:0::1;::::0;::::1;10901:21:1::0;10958:2;10938:18;;;10931:30;10997;10977:18;;;10970:58;11045:18;;56598:57:0::1;10717:352:1::0;56598:57:0::1;56662:5;:13:::0;56540:141::o;35826:104::-;35882:13;35915:7;35908:14;;;;;:::i;52607:811::-;4637:1;5235:7;;:19;;5227:63;;;;-1:-1:-1;;;5227:63:0;;15062:2:1;5227:63:0;;;15044:21:1;15101:2;15081:18;;;15074:30;15140:33;15120:18;;;15113:61;15191:18;;5227:63:0;14860:355:1;5227:63:0;4637:1;5368:7;:18;52705:14:::1;::::0;52686:15:::1;:33;;52678:71;;;::::0;-1:-1:-1;;;52678:71:0;;10565:2:1;52678:71:0::1;::::0;::::1;10547:21:1::0;10604:2;10584:18;;;10577:30;10643:27;10623:18;;;10616:55;10688:18;;52678:71:0::1;10363:349:1::0;52678:71:0::1;52775:1;52764:8;:12;52756:41;;;::::0;-1:-1:-1;;;52756:41:0;;13274:2:1;52756:41:0::1;::::0;::::1;13256:21:1::0;13313:2;13293:18;;;13286:30;13352:18;13332;;;13325:46;13388:18;;52756:41:0::1;13072:340:1::0;52756:41:0::1;52851:7;;52823:24;52836:10;52823:12;:24::i;:::-;52812:35;::::0;:8;:35:::1;:::i;:::-;:46;;52804:90;;;::::0;-1:-1:-1;;;52804:90:0;;13980:2:1;52804:90:0::1;::::0;::::1;13962:21:1::0;14019:2;13999:18;;;13992:30;14058:33;14038:18;;;14031:61;14109:18;;52804:90:0::1;13778:355:1::0;52804:90:0::1;52931:8;52923:5;;:16;;;;:::i;:::-;52910:9;:29;;52901:75;;;::::0;-1:-1:-1;;;52901:75:0;;14340:2:1;52901:75:0::1;::::0;::::1;14322:21:1::0;;;14359:18;;;14352:30;14418:34;14398:18;;;14391:62;14470:18;;52901:75:0::1;14138:356:1::0;52901:75:0::1;53063:10;::::0;53011:8;;;53035:13:::1;32047:12:::0;;32031:13;;:28;;31793:303;53035:13:::1;:24;;;;:::i;:::-;:38;;53026:85;;;::::0;-1:-1:-1;;;53026:85:0;;14701:2:1;53026:85:0::1;::::0;::::1;14683:21:1::0;;;14720:18;;;14713:30;14779:34;14759:18;;;14752:62;14831:18;;53026:85:0::1;14499:356:1::0;53026:85:0::1;53145:1;53123:19;;:23;:56;;;;;53150:24;53163:10;53150:12;:24::i;:::-;:29:::0;53123:56:::1;:102;;;;;53215:10;;53199:8;53183:13;32047:12:::0;;32031:13;;:28;;31793:303;53183:13:::1;:24;;;;:::i;:::-;:28;::::0;53210:1:::1;53183:28;:::i;:::-;:42;;53123:102;53120:172;;;53236:17;::::0;::::1;:::i;:::-;;;53265:19;;53263:21;;;;;:::i;:::-;::::0;;;-1:-1:-1;53120:172:0::1;53298:38;53308:10;53320:15;53298:9;:38::i;:::-;53367:8;53348:15;:27;53345:67;;53384:28;53401:10;53384:16;:28::i;:::-;-1:-1:-1::0;;4593:1:0;5547:7;:22;52607:811::o;37436:287::-;37535:24;;;8467:10;37535:24;37531:54;;;37568:17;;;;;;;;;;;;;;37531:54;8467:10;37598:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;37667:48;;10087:41:1;;;37598:42:0;;8467:10;37667:48;;10060:18:1;37667:48:0;;;;;;;37436:287;;:::o;38522:369::-;38689:28;38699:4;38705:2;38709:7;38689:9;:28::i;:::-;38732:13;;;12659:19;:23;;38732:76;;;;;38752:56;38783:4;38789:2;38793:7;38802:5;38752:30;:56::i;:::-;38751:57;38732:76;38728:156;;;38832:40;;;;;;;;;;;;;;55973:104;9709:7;9736:6;9883:23;9736:6;8467:10;9883:23;9875:68;;;;-1:-1:-1;;;9875:68:0;;13619:2:1;9875:68:0;;;13601:21:1;;;13638:18;;;13631:30;13697:34;13677:18;;;13670:62;13749:18;;9875:68:0;13417:356:1;9875:68:0;56045:14:::1;:26:::0;55973:104::o;51978:394::-;52043:13;52073:16;52081:7;52073;:16::i;:::-;52065:67;;;;-1:-1:-1;;;52065:67:0;;11276:2:1;52065:67:0;;;11258:21:1;11315:2;11295:18;;;11288:30;11354:34;11334:18;;;11327:62;11425:8;11405:18;;;11398:36;11451:19;;52065:67:0;11074:402:1;52065:67:0;52144:8;;;;52141:134;;52203:25;52230:18;:7;:16;:18::i;:::-;52250:15;52186:80;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52172:95;;51978:394;;;:::o;52141:134::-;52312:15;52329:18;:7;:16;:18::i;56852:81::-;9709:7;9736:6;9883:23;9736:6;8467:10;9883:23;9875:68;;;;-1:-1:-1;;;9875:68:0;;13619:2:1;9875:68:0;;;13601:21:1;;;13638:18;;;13631:30;13697:34;13677:18;;;13670:62;13749:18;;9875:68:0;13417:356:1;9875:68:0;56909:10:::1;:18:::0;56852:81::o;52378:107::-;33297:19;;;52436:7;33297:19;;;:12;:19;;;;;:32;;;;;;52459:20;33201:137;10572:201;9709:7;9736:6;9883:23;9736:6;8467:10;9883:23;9875:68;;;;-1:-1:-1;;;9875:68:0;;13619:2:1;9875:68:0;;;13601:21:1;;;13638:18;;;13631:30;13697:34;13677:18;;;13670:62;13749:18;;9875:68:0;13417:356:1;9875:68:0;10661:22:::1;::::0;::::1;10653:73;;;::::0;-1:-1:-1;;;10653:73:0;;11683:2:1;10653:73:0::1;::::0;::::1;11665:21:1::0;11722:2;11702:18;;;11695:30;11761:34;11741:18;;;11734:62;11832:8;11812:18;;;11805:36;11858:19;;10653:73:0::1;11481:402:1::0;10653:73:0::1;10737:28;10756:8;10737:18;:28::i;:::-;10572:201:::0;:::o;55837:130::-;9709:7;9736:6;9883:23;9736:6;8467:10;9883:23;9875:68;;;;-1:-1:-1;;;9875:68:0;;13619:2:1;9875:68:0;;;13601:21:1;;;13638:18;;;13631:30;13697:34;13677:18;;;13670:62;13749:18;;9875:68:0;13417:356:1;9875:68:0;55920:41:::1;:25;55948:13:::0;;55920:41:::1;:::i;12364:326::-:0;12659:19;;;:23;;;12364:326::o;39146:174::-;39203:4;39267:13;;39257:7;:23;39227:85;;;;-1:-1:-1;;39285:20:0;;;;:11;:20;;;;;:27;;;;;;39284:28;;39146:174::o;47303:196::-;47418:24;;;;:15;:24;;;;;;:29;;;;;;;;;;;;;;47463:28;;47418:24;;47463:28;;;;;;;47303:196;;;:::o;42246:2130::-;42361:35;42399:21;42412:7;42399:12;:21::i;:::-;42361:59;;42459:4;42437:26;;:13;:18;;;:26;;;42433:67;;42472:28;;;;;;;;;;;;;;42433:67;42513:22;8467:10;42539:20;;;;;:73;;-1:-1:-1;42576:36:0;42593:4;8467:10;37794:164;:::i;42576:36::-;42539:126;;;-1:-1:-1;8467:10:0;42629:20;42641:7;42629:11;:20::i;:::-;:36;;;42539:126;42513:153;;42684:17;42679:66;;42710:35;;;;;;;;;;;;;;42679:66;42760:16;;;42756:52;;42785:23;;;;;;;;;;;;;;42756:52;42929:35;42946:1;42950:7;42959:4;42929:8;:35::i;:::-;43260:18;;;;;;;;:12;:18;;;;;;;;:31;;;;;;;;;;;;;;;;;;43306:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;43306:29:0;;;;;;;;;;;43386:20;;;:11;:20;;;;;;43421:18;;43454:49;;;;;;43487:15;43454:49;;;;;;;;;;43777:11;;43837:24;;;;;43880:13;;43386:20;;43837:24;;43880:13;43876:384;;44090:13;;44075:11;:28;44071:174;;44128:20;;44197:28;;;;44171:54;;;;;;;;44128:20;;;44171:54;;;;44071:174;43235:1036;;;44307:7;44303:2;44288:27;;44297:4;44288:27;;;;;;;;;;;;44326:42;54600:535;1359:190;1484:4;1537;1508:25;1521:5;1528:4;1508:12;:25::i;:::-;:33;;1359:190;-1:-1:-1;;;;1359:190:0:o;39328:104::-;39397:27;39407:2;39411:8;39397:27;;;;;;;;;;;;:9;:27::i;:::-;39328:104;;:::o;50417:116::-;50492:18;;;;;;;:12;:18;;;;;:33;;;;;;;;:31;:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;50417:116;:::o;34294:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;34405:7:0;34488:13;;34481:4;:20;34450:886;;;34522:31;34556:17;;;:11;:17;;;;;;;;;34522:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34592:729;;34642:14;;:28;;;34638:101;;34706:9;34294:1109;-1:-1:-1;;;34294:1109:0:o;34638:101::-;-1:-1:-1;35081:6:0;;35126:17;;;;:11;:17;;;;;;;;;35114:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35174:28;35170:109;;35242:9;34294:1109;-1:-1:-1;;;34294:1109:0:o;35170:109::-;35041:261;;;34503:833;34450:886;35364:31;;;;;;;;;;;;;;10933:191;11007:16;11026:6;;;11043:17;;;;;;;;;;11076:40;;11026:6;;;;;;;11076:40;;11007:16;11076:40;10996:128;10933:191;:::o;47991:667::-;48175:72;;;;;48154:4;;48175:36;;;;;;:72;;8467:10;;48226:4;;48232:7;;48241:5;;48175:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48175:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48171:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48409:13:0;;48405:235;;48455:40;;;;;;;;;;;;;;48405:235;48598:6;48592:13;48583:6;48579:2;48575:15;48568:38;48171:480;48294:55;;48304:45;48294:55;;-1:-1:-1;48171:480:0;47991:667;;;;;;:::o;5949:723::-;6005:13;6226:10;6222:53;;-1:-1:-1;;6253:10:0;;;;;;;;;;;;;;;;;;5949:723::o;6222:53::-;6300:5;6285:12;6341:78;6348:9;;6341:78;;6374:8;;;;:::i;:::-;;-1:-1:-1;6397:10:0;;-1:-1:-1;6405:2:0;6397:10;;:::i;:::-;;;6341:78;;;6429:19;6461:6;6451:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6451:17:0;;6429:39;;6479:154;6486:10;;6479:154;;6513:11;6523:1;6513:11;;:::i;:::-;;-1:-1:-1;6582:10:0;6590:2;6582:5;:10;:::i;:::-;6569:24;;:2;:24;:::i;:::-;6556:39;;6539:6;6546;6539:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;6610:11:0;6619:2;6610:11;;:::i;:::-;;;6479:154;;1911:675;1994:7;2037:4;1994:7;2052:497;2076:5;:12;2072:1;:16;2052:497;;;2110:20;2133:5;2139:1;2133:8;;;;;;;;:::i;:::-;;;;;;;2110:31;;2176:12;2160;:28;2156:382;;2662:13;2712:15;;;2748:4;2741:15;;;2795:4;2779:21;;2288:57;;2156:382;;;2662:13;2712:15;;;2748:4;2741:15;;;2795:4;2779:21;;2465:57;;2156:382;-1:-1:-1;2090:3:0;;;;:::i;:::-;;;;2052:497;;;-1:-1:-1;2566:12:0;1911:675;-1:-1:-1;;;1911:675:0:o;39795:163::-;39918:32;39924:2;39928:8;39938:5;39945:4;40379:13;;40407:16;;;40403:48;;40432:19;;;;;;;;;;;;;;40403:48;40466:13;40462:44;;40488:18;;;;;;;;;;;;;;40462:44;40857:16;;;;;;;:12;:16;;;;;;;;:44;;40916:49;;;40857:44;;;;;;;;40916:49;;;;40857:44;;;;;;;40916:49;;;;;;;;;;;;;;;;40982:25;;;:11;:25;;;;;;:35;;41032:66;;;;;;41082:15;41032:66;;;;;;;;;;40982:25;41179:23;;;41223:4;:23;;;;-1:-1:-1;41231:13:0;;;12659:19;:23;;41231:15;41219:641;;;41267:314;41298:38;;41323:12;;41298:38;;;;41315:1;;41298:38;;41315:1;;41298:38;41364:69;41403:1;41407:2;41411:14;;;;;;41427:5;41364:30;:69::i;:::-;41359:174;;41469:40;;;;;;;;;;;;;;41359:174;41576:3;41560:12;:19;;41267:314;;41662:12;41645:13;;:29;41641:43;;41676:8;;;41641:43;41219:641;;;41725:120;41756:40;;41781:14;;;;;41756:40;;;;41773:1;;41756:40;;41773:1;;41756:40;41840:3;41824:12;:19;;41725:120;;41219:641;-1:-1:-1;41874:13:0;:28;41924:60;54600:535;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:1;82:20;;142:42;131:54;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:367::-;278:8;288:6;342:3;335:4;327:6;323:17;319:27;309:55;;360:1;357;350:12;309:55;-1:-1:-1;383:20:1;;426:18;415:30;;412:50;;;458:1;455;448:12;412:50;495:4;487:6;483:17;471:29;;555:3;548:4;538:6;535:1;531:14;523:6;519:27;515:38;512:47;509:67;;;572:1;569;562:12;509:67;215:367;;;;;:::o;587:348::-;639:8;649:6;703:3;696:4;688:6;684:17;680:27;670:55;;721:1;718;711:12;670:55;-1:-1:-1;744:20:1;;787:18;776:30;;773:50;;;819:1;816;809:12;773:50;856:4;848:6;844:17;832:29;;908:3;901:4;892:6;884;880:19;876:30;873:39;870:59;;;925:1;922;915:12;940:186;999:6;1052:2;1040:9;1031:7;1027:23;1023:32;1020:52;;;1068:1;1065;1058:12;1020:52;1091:29;1110:9;1091:29;:::i;:::-;1081:39;940:186;-1:-1:-1;;;940:186:1:o;1131:260::-;1199:6;1207;1260:2;1248:9;1239:7;1235:23;1231:32;1228:52;;;1276:1;1273;1266:12;1228:52;1299:29;1318:9;1299:29;:::i;:::-;1289:39;;1347:38;1381:2;1370:9;1366:18;1347:38;:::i;:::-;1337:48;;1131:260;;;;;:::o;1396:328::-;1473:6;1481;1489;1542:2;1530:9;1521:7;1517:23;1513:32;1510:52;;;1558:1;1555;1548:12;1510:52;1581:29;1600:9;1581:29;:::i;:::-;1571:39;;1629:38;1663:2;1652:9;1648:18;1629:38;:::i;:::-;1619:48;;1714:2;1703:9;1699:18;1686:32;1676:42;;1396:328;;;;;:::o;1729:1197::-;1824:6;1832;1840;1848;1901:3;1889:9;1880:7;1876:23;1872:33;1869:53;;;1918:1;1915;1908:12;1869:53;1941:29;1960:9;1941:29;:::i;:::-;1931:39;;1989:38;2023:2;2012:9;2008:18;1989:38;:::i;:::-;1979:48;;2074:2;2063:9;2059:18;2046:32;2036:42;;2129:2;2118:9;2114:18;2101:32;2152:18;2193:2;2185:6;2182:14;2179:34;;;2209:1;2206;2199:12;2179:34;2247:6;2236:9;2232:22;2222:32;;2292:7;2285:4;2281:2;2277:13;2273:27;2263:55;;2314:1;2311;2304:12;2263:55;2350:2;2337:16;2372:2;2368;2365:10;2362:36;;;2378:18;;:::i;:::-;2512:2;2506:9;2574:4;2566:13;;2417:66;2562:22;;;2586:2;2558:31;2554:40;2542:53;;;2610:18;;;2630:22;;;2607:46;2604:72;;;2656:18;;:::i;:::-;2696:10;2692:2;2685:22;2731:2;2723:6;2716:18;2771:7;2766:2;2761;2757;2753:11;2749:20;2746:33;2743:53;;;2792:1;2789;2782:12;2743:53;2848:2;2843;2839;2835:11;2830:2;2822:6;2818:15;2805:46;2893:1;2888:2;2883;2875:6;2871:15;2867:24;2860:35;2914:6;2904:16;;;;;;;1729:1197;;;;;;;:::o;2931:347::-;2996:6;3004;3057:2;3045:9;3036:7;3032:23;3028:32;3025:52;;;3073:1;3070;3063:12;3025:52;3096:29;3115:9;3096:29;:::i;:::-;3086:39;;3175:2;3164:9;3160:18;3147:32;3222:5;3215:13;3208:21;3201:5;3198:32;3188:60;;3244:1;3241;3234:12;3188:60;3267:5;3257:15;;;2931:347;;;;;:::o;3283:254::-;3351:6;3359;3412:2;3400:9;3391:7;3387:23;3383:32;3380:52;;;3428:1;3425;3418:12;3380:52;3451:29;3470:9;3451:29;:::i;:::-;3441:39;3527:2;3512:18;;;;3499:32;;-1:-1:-1;;;3283:254:1:o;3542:773::-;3664:6;3672;3680;3688;3741:2;3729:9;3720:7;3716:23;3712:32;3709:52;;;3757:1;3754;3747:12;3709:52;3797:9;3784:23;3826:18;3867:2;3859:6;3856:14;3853:34;;;3883:1;3880;3873:12;3853:34;3922:70;3984:7;3975:6;3964:9;3960:22;3922:70;:::i;:::-;4011:8;;-1:-1:-1;3896:96:1;-1:-1:-1;4099:2:1;4084:18;;4071:32;;-1:-1:-1;4115:16:1;;;4112:36;;;4144:1;4141;4134:12;4112:36;;4183:72;4247:7;4236:8;4225:9;4221:24;4183:72;:::i;:::-;3542:773;;;;-1:-1:-1;4274:8:1;-1:-1:-1;;;;3542:773:1:o;4320:180::-;4379:6;4432:2;4420:9;4411:7;4407:23;4403:32;4400:52;;;4448:1;4445;4438:12;4400:52;-1:-1:-1;4471:23:1;;4320:180;-1:-1:-1;4320:180:1:o;4505:245::-;4563:6;4616:2;4604:9;4595:7;4591:23;4587:32;4584:52;;;4632:1;4629;4622:12;4584:52;4671:9;4658:23;4690:30;4714:5;4690:30;:::i;4755:249::-;4824:6;4877:2;4865:9;4856:7;4852:23;4848:32;4845:52;;;4893:1;4890;4883:12;4845:52;4925:9;4919:16;4944:30;4968:5;4944:30;:::i;5009:411::-;5080:6;5088;5141:2;5129:9;5120:7;5116:23;5112:32;5109:52;;;5157:1;5154;5147:12;5109:52;5197:9;5184:23;5230:18;5222:6;5219:30;5216:50;;;5262:1;5259;5252:12;5216:50;5301:59;5352:7;5343:6;5332:9;5328:22;5301:59;:::i;:::-;5379:8;;5275:85;;-1:-1:-1;5009:411:1;-1:-1:-1;;;;5009:411:1:o;5425:721::-;5517:6;5525;5533;5541;5594:2;5582:9;5573:7;5569:23;5565:32;5562:52;;;5610:1;5607;5600:12;5562:52;5650:9;5637:23;5679:18;5720:2;5712:6;5709:14;5706:34;;;5736:1;5733;5726:12;5706:34;5775:59;5826:7;5817:6;5806:9;5802:22;5775:59;:::i;:::-;5853:8;;-1:-1:-1;5749:85:1;-1:-1:-1;5941:2:1;5926:18;;5913:32;;-1:-1:-1;5957:16:1;;;5954:36;;;5986:1;5983;5976:12;5954:36;;6025:61;6078:7;6067:8;6056:9;6052:24;6025:61;:::i;6336:505::-;6431:6;6439;6447;6500:2;6488:9;6479:7;6475:23;6471:32;6468:52;;;6516:1;6513;6506:12;6468:52;6552:9;6539:23;6529:33;;6613:2;6602:9;6598:18;6585:32;6640:18;6632:6;6629:30;6626:50;;;6672:1;6669;6662:12;6626:50;6711:70;6773:7;6764:6;6753:9;6749:22;6711:70;:::i;:::-;6336:505;;6800:8;;-1:-1:-1;6685:96:1;;-1:-1:-1;;;;6336:505:1:o;6846:316::-;6887:3;6925:5;6919:12;6952:6;6947:3;6940:19;6968:63;7024:6;7017:4;7012:3;7008:14;7001:4;6994:5;6990:16;6968:63;:::i;:::-;7076:2;7064:15;7081:66;7060:88;7051:98;;;;7151:4;7047:109;;6846:316;-1:-1:-1;;6846:316:1:o;7167:1088::-;7252:12;;7217:3;;7307:1;7327:18;;;;7380;;;;7407:61;;7461:4;7453:6;7449:17;7439:27;;7407:61;7487:2;7535;7527:6;7524:14;7504:18;7501:38;7498:218;;;7572:77;7569:1;7562:88;7673:4;7670:1;7663:15;7701:4;7698:1;7691:15;7498:218;7732:18;7759:162;;;;7935:1;7930:319;;;;7725:524;;7759:162;7807:66;7796:9;7792:82;7787:3;7780:95;7904:6;7899:3;7895:16;7888:23;;7759:162;;7930:319;15475:1;15468:14;;;15512:4;15499:18;;8024:1;8038:165;8052:6;8049:1;8046:13;8038:165;;;8130:14;;8117:11;;;8110:35;8173:16;;;;8067:10;;8038:165;;;8042:3;;8232:6;8227:3;8223:16;8216:23;;7725:524;;;;;;;7167:1088;;;;:::o;8529:456::-;8750:3;8778:38;8812:3;8804:6;8778:38;:::i;:::-;8845:6;8839:13;8861:52;8906:6;8902:2;8895:4;8887:6;8883:17;8861:52;:::i;:::-;8929:50;8971:6;8967:2;8963:15;8955:6;8929:50;:::i;:::-;8922:57;8529:456;-1:-1:-1;;;;;;;8529:456:1:o;9431:511::-;9625:4;9654:42;9735:2;9727:6;9723:15;9712:9;9705:34;9787:2;9779:6;9775:15;9770:2;9759:9;9755:18;9748:43;;9827:6;9822:2;9811:9;9807:18;9800:34;9870:3;9865:2;9854:9;9850:18;9843:31;9891:45;9931:3;9920:9;9916:19;9908:6;9891:45;:::i;:::-;9883:53;9431:511;-1:-1:-1;;;;;;9431:511:1:o;10139:219::-;10288:2;10277:9;10270:21;10251:4;10308:44;10348:2;10337:9;10333:18;10325:6;10308:44;:::i;15528:128::-;15568:3;15599:1;15595:6;15592:1;15589:13;15586:39;;;15605:18;;:::i;:::-;-1:-1:-1;15641:9:1;;15528:128::o;15661:120::-;15701:1;15727;15717:35;;15732:18;;:::i;:::-;-1:-1:-1;15766:9:1;;15661:120::o;15786:228::-;15826:7;15952:1;15884:66;15880:74;15877:1;15874:81;15869:1;15862:9;15855:17;15851:105;15848:131;;;15959:18;;:::i;:::-;-1:-1:-1;15999:9:1;;15786:228::o;16019:125::-;16059:4;16087:1;16084;16081:8;16078:34;;;16092:18;;:::i;:::-;-1:-1:-1;16129:9:1;;16019:125::o;16149:258::-;16221:1;16231:113;16245:6;16242:1;16239:13;16231:113;;;16321:11;;;16315:18;16302:11;;;16295:39;16267:2;16260:10;16231:113;;;16362:6;16359:1;16356:13;16353:48;;;-1:-1:-1;;16397:1:1;16379:16;;16372:27;16149:258::o;16412:196::-;16451:3;16479:5;16469:39;;16488:18;;:::i;:::-;-1:-1:-1;16535:66:1;16524:78;;16412:196::o;16613:253::-;16651:3;16695:18;16688:5;16684:30;16733:7;16723:41;;16744:18;;:::i;:::-;16793:66;16780:80;;16613:253;-1:-1:-1;;16613:253:1:o;16871:437::-;16950:1;16946:12;;;;16993;;;17014:61;;17068:4;17060:6;17056:17;17046:27;;17014:61;17121:2;17113:6;17110:14;17090:18;17087:38;17084:218;;;17158:77;17155:1;17148:88;17259:4;17256:1;17249:15;17287:4;17284:1;17277:15;17084:218;;16871:437;;;:::o;17313:195::-;17352:3;17383:66;17376:5;17373:77;17370:103;;;17453:18;;:::i;:::-;-1:-1:-1;17500:1:1;17489:13;;17313:195::o;17513:112::-;17545:1;17571;17561:35;;17576:18;;:::i;:::-;-1:-1:-1;17610:9:1;;17513:112::o;17630:184::-;17682:77;17679:1;17672:88;17779:4;17776:1;17769:15;17803:4;17800:1;17793:15;17819:184;17871:77;17868:1;17861:88;17968:4;17965:1;17958:15;17992:4;17989:1;17982:15;18008:184;18060:77;18057:1;18050:88;18157:4;18154:1;18147:15;18181:4;18178:1;18171:15;18197:184;18249:77;18246:1;18239:88;18346:4;18343:1;18336:15;18370:4;18367:1;18360:15;18386:177;18471:66;18464:5;18460:78;18453:5;18450:89;18440:117;;18553:1;18550;18543:12
Swarm Source
ipfs://a5dbba194375da6655afd74212abbea358569bf51dcd2462518a5309fecb2610
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.