CRO Price: $0.09 (-1.71%)

Token

CROGENFT (CRNFT)

Overview

Max Total Supply

5,000 CRNFT

Holders

570

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Filtered by Token Holder
berebel.cro
Balance
3 CRNFT
0x11d205f4f1301d28ba3195911aa7a80938df41b2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
CrogeNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at cronoscan.com on 2022-06-30
*/

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }
    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }
    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
/**
 * @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)
/**
 * @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)
/**
 * @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)
/**
 * @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 (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
/**
 * @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)
/**
 * @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 (last updated v4.6.0) (token/ERC721/IERC721.sol)
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);
    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);
    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;
    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;
    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;
    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;
    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);
    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);
    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);
    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: IERC721A.sol
/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();
    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();
    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();
    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();
    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();
    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();
    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();
    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();
    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();
    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();
    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();
    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();
    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();
    // 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;
    }
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}
/**
 * @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 CrogeNFT is Context, ERC165, IERC721A,Ownable {
    using Address for address;
    using Strings for uint256; 
    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;
    // The number of tokens burned.
    uint256 internal _burnCounter;
    string  public baseURI_ = "ipfs:///";
    uint    public whitelistmintCost = 500 ether;
    uint   public whitelistmintCostAfter24hrs = 450 ether;
    uint    public mintCost = 500 ether;
    uint    public whitelistLimit = 1000;
    uint    public constant maxSupply = 5000;
    uint    public maxMintAmount = 10;
    bytes32 private root;
    uint    private whitelistCounter; 
    uint    public  timeDeployed;
    mapping(address => uint) private whitelistMintPerWalletCounter; 
    // 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();
        timeDeployed=block.timestamp; 
    }
    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }
    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }
    /**
     * 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) if (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(),".json")) : '';
    }
    /**
     * @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 baseURI_;
    }
    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();
        if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }
    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
        return _tokenApprovals[tokenId];
    }
    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _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()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }
    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }
    
    function _isValid(bytes32[] memory proof,address add)internal view returns(bool){
       bytes32 leaf= keccak256(abi.encodePacked(add));
       return MerkleProof.verify(proof,root,leaf); 
   }
    function whitelistMint(uint256 _mintAmount, bytes32[] memory proof)public payable{ 
        require(_isValid(proof,msg.sender) == true,"you are not whitelisted"); 
        require(_mintAmount > 0,"mint amount must be greater than zero"); 
        require(_mintAmount <= maxMintAmount,"mint amount must be less than  or equal maxMintAmount");
        require( totalSupply() + _mintAmount <= maxSupply,"mass supply exceeded");
        if (block.timestamp-timeDeployed <= 97200 seconds){
            require(whitelistCounter +_mintAmount <= whitelistLimit ,"cant mint above whitelistLimit");
            require( msg.value >= whitelistmintCost * _mintAmount ,"please pass in the correct payment");
            whitelistCounter += _mintAmount; 
        } else {  
            require( whitelistMintPerWalletCounter[msg.sender]+_mintAmount <= 100,"cant mint above above 100 after 24 hours ");
            require( msg.value >= whitelistmintCostAfter24hrs * _mintAmount ,"please pass in the correct payment");
            whitelistMintPerWalletCounter[msg.sender]+=_mintAmount;
        }
          
        _safeMint(msg.sender,_mintAmount); 
    } 
    function mint(uint256 _mintAmount)public payable{ 
        require(_mintAmount > 0,"mint amount must be greater than zero"); 
        require(_mintAmount <= maxMintAmount,"mint amount must be less than  or equal maxMintAmount");
        require( totalSupply() + _mintAmount <= maxSupply,"mass supply exceeded");
        require( msg.value >= mintCost * _mintAmount ,"please pass in the correct payment"); 
        _safeMint(msg.sender,_mintAmount); 
    }
      function adminMint(uint256 _mintAmount, address recipient)public onlyOwner{ 
        require(_mintAmount > 0,"mint amount must be greater than zero"); 
        require( totalSupply() + _mintAmount <= maxSupply,"mass supply exceeded");
        _safeMint(recipient,_mintAmount);  
    }
    
    function checkTime()public view returns(uint){
      return block.timestamp - timeDeployed;
    }
     function setWhitelistLimit(uint256 _limit) public onlyOwner {
        whitelistLimit = _limit;
    } 
    
     function setWitelistMintCost(uint256 _newCost,uint _newCostAfter24hrs) public onlyOwner {
        whitelistmintCost = _newCost;
        whitelistmintCostAfter24hrs=_newCostAfter24hrs;
    } 
     function setMintCost(uint256 _newCost) public onlyOwner {
        mintCost = _newCost;
    } 
    function setRoot(bytes32  _root )public onlyOwner{
         root=_root; 
   }
     
    function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI_ = _newBaseURI;
    }
 
    
   
       function claim(address add) public onlyOwner {
        // get contract total balance
        uint256 balance = address(this).balance;
       
        payable(add).transfer(balance);
         
      
    }
    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }
    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) 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 (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 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) 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;
            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.
        delete _tokenApprovals[tokenId];
        // 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 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.
        delete _tokenApprovals[tokenId];
        // 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 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 {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"add","type":"address"}],"name":"claim","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWhitelistLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"},{"internalType":"uint256","name":"_newCostAfter24hrs","type":"uint256"}],"name":"setWitelistMintCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeDeployed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistmintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistmintCostAfter24hrs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60c06040526008608081905267697066733a2f2f2f60c01b60a09081526200002b916003919062000125565b50681b1ae4d6e2ef5000006004556818650127cc3dc80000600555681b1ae4d6e2ef5000006006556103e8600755600a6008553480156200006b57600080fd5b50604051620024bd380380620024bd8339810160408190526200008e9162000282565b6200009933620000d5565b8151620000ae90600d90602085019062000125565b508051620000c490600e90602084019062000125565b5060018055505042600b556200033f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200013390620002ec565b90600052602060002090601f016020900481019282620001575760008555620001a2565b82601f106200017257805160ff1916838001178555620001a2565b82800160010185558215620001a2579182015b82811115620001a257825182559160200191906001019062000185565b50620001b0929150620001b4565b5090565b5b80821115620001b05760008155600101620001b5565b600082601f830112620001dd57600080fd5b81516001600160401b0380821115620001fa57620001fa62000329565b604051601f8301601f19908116603f0116810190828211818310171562000225576200022562000329565b816040528381526020925086838588010111156200024257600080fd5b600091505b8382101562000266578582018301518183018401529082019062000247565b83821115620002785760008385830101525b9695505050505050565b600080604083850312156200029657600080fd5b82516001600160401b0380821115620002ae57600080fd5b620002bc86838701620001cb565b93506020850151915080821115620002d357600080fd5b50620002e285828601620001cb565b9150509250929050565b600181811c908216806200030157607f821691505b602082108114156200032357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61216e806200034f6000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063c87b56dd116100a0578063dab5f3401161006f578063dab5f340146105b9578063e0c6190d146105d9578063e985e9c5146105ee578063f259a29e14610637578063f2fde38b1461064c57600080fd5b8063c87b56dd14610550578063d2521ae814610570578063d2cab05614610590578063d5abeb01146105a357600080fd5b806397284568116100e757806397284568146104c7578063a0712d68146104e7578063a22cb465146104fa578063b88d4fde1461051a578063bdb4b8481461053a57600080fd5b8063715018a61461045f5780638545f4ea146104745780638da5cb5b1461049457806395d89b41146104b257600080fd5b8063239c70ae1161019b57806355f804b31161016a57806355f804b3146103d3578063602b9a9f146103f35780636266a36e146104095780636352211e1461041f57806370a082311461043f57600080fd5b8063239c70ae1461036757806323b872dd1461037d578063302150e51461039d57806342842e0e146103b357600080fd5b8063095ea7b3116101e2578063095ea7b3146102c55780630dc28efe146102e557806318160ddd1461030557806319188c35146103315780631e83409a1461034757600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063088a4ed0146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611c26565b61066c565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106be565b6040516102409190611e4f565b34801561027757600080fd5b5061028b610286366004611c0d565b610750565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611c0d565b610794565b005b3480156102d157600080fd5b506102c36102e0366004611be3565b6107cc565b3480156102f157600080fd5b506102c3610300366004611ca9565b61089f565b34801561031157600080fd5b50610323600254600154036000190190565b604051908152602001610240565b34801561033d57600080fd5b50610323600b5481565b34801561035357600080fd5b506102c3610362366004611aa1565b610934565b34801561037357600080fd5b5061032360085481565b34801561038957600080fd5b506102c3610398366004611aef565b61099b565b3480156103a957600080fd5b5061032360075481565b3480156103bf57600080fd5b506102c36103ce366004611aef565b6109a6565b3480156103df57600080fd5b506102c36103ee366004611c60565b6109c1565b3480156103ff57600080fd5b5061032360055481565b34801561041557600080fd5b5061032360045481565b34801561042b57600080fd5b5061028b61043a366004611c0d565b6109fe565b34801561044b57600080fd5b5061032361045a366004611aa1565b610a10565b34801561046b57600080fd5b506102c3610a5f565b34801561048057600080fd5b506102c361048f366004611c0d565b610a95565b3480156104a057600080fd5b506000546001600160a01b031661028b565b3480156104be57600080fd5b5061025e610ac4565b3480156104d357600080fd5b506102c36104e2366004611d85565b610ad3565b6102c36104f5366004611c0d565b610b08565b34801561050657600080fd5b506102c3610515366004611ba7565b610bc1565b34801561052657600080fd5b506102c3610535366004611b2b565b610c57565b34801561054657600080fd5b5061032360065481565b34801561055c57600080fd5b5061025e61056b366004611c0d565b610ca1565b34801561057c57600080fd5b506102c361058b366004611c0d565b610d26565b6102c361059e366004611ccc565b610d55565b3480156105af57600080fd5b5061032361138881565b3480156105c557600080fd5b506102c36105d4366004611c0d565b610fc9565b3480156105e557600080fd5b50610323610ff8565b3480156105fa57600080fd5b50610234610609366004611abc565b6001600160a01b03918216600090815260126020908152604080832093909416825291909152205460ff1690565b34801561064357600080fd5b5061025e61100d565b34801561065857600080fd5b506102c3610667366004611aa1565b61109b565b60006001600160e01b031982166380ac58cd60e01b148061069d57506001600160e01b03198216635b5e139f60e01b145b806106b857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600d80546106cd90612060565b80601f01602080910402602001604051908101604052809291908181526020018280546106f990612060565b80156107465780601f1061071b57610100808354040283529160200191610746565b820191906000526020600020905b81548152906001019060200180831161072957829003601f168201915b5050505050905090565b600061075b82611133565b610778576040516333d1c03960e21b815260040160405180910390fd5b506000908152601160205260409020546001600160a01b031690565b6000546001600160a01b031633146107c75760405162461bcd60e51b81526004016107be90611f6c565b60405180910390fd5b600855565b60006107d7826109fe565b9050806001600160a01b0316836001600160a01b0316141561080c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610843576108268133610609565b610843576040516367d9dca160e11b815260040160405180910390fd5b60008281526011602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146108c95760405162461bcd60e51b81526004016107be90611f6c565b600082116108e95760405162461bcd60e51b81526004016107be90611eb7565b611388826108fe600254600154036000190190565b6109089190611fd2565b11156109265760405162461bcd60e51b81526004016107be90611efc565b610930818361116c565b5050565b6000546001600160a01b0316331461095e5760405162461bcd60e51b81526004016107be90611f6c565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610996573d6000803e3d6000fd5b505050565b610996838383611186565b61099683838360405180602001604052806000815250610c57565b6000546001600160a01b031633146109eb5760405162461bcd60e51b81526004016107be90611f6c565b8051610930906003906020840190611994565b6000610a0982611384565b5192915050565b60006001600160a01b038216610a39576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526010602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610a895760405162461bcd60e51b81526004016107be90611f6c565b610a9360006114a8565b565b6000546001600160a01b03163314610abf5760405162461bcd60e51b81526004016107be90611f6c565b600655565b6060600e80546106cd90612060565b6000546001600160a01b03163314610afd5760405162461bcd60e51b81526004016107be90611f6c565b600491909155600555565b60008111610b285760405162461bcd60e51b81526004016107be90611eb7565b600854811115610b4a5760405162461bcd60e51b81526004016107be90611e62565b61138881610b5f600254600154036000190190565b610b699190611fd2565b1115610b875760405162461bcd60e51b81526004016107be90611efc565b80600654610b959190611ffe565b341015610bb45760405162461bcd60e51b81526004016107be90611f2a565b610bbe338261116c565b50565b6001600160a01b038216331415610beb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526012602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c62848484611186565b6001600160a01b0383163b15610c9b57610c7e848484846114f8565b610c9b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610cac82611133565b610cc957604051630a14c4b560e41b815260040160405180910390fd5b6000610cd36115f0565b9050805160001415610cf45760405180602001604052806000815250610d1f565b80610cfe846115ff565b604051602001610d0f929190611dd3565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314610d505760405162461bcd60e51b81526004016107be90611f6c565b600755565b610d5f81336116fd565b1515600114610db05760405162461bcd60e51b815260206004820152601760248201527f796f7520617265206e6f742077686974656c697374656400000000000000000060448201526064016107be565b60008211610dd05760405162461bcd60e51b81526004016107be90611eb7565b600854821115610df25760405162461bcd60e51b81526004016107be90611e62565b61138882610e07600254600154036000190190565b610e119190611fd2565b1115610e2f5760405162461bcd60e51b81526004016107be90611efc565b62017bb0600b5442610e41919061201d565b11610eef5760075482600a54610e579190611fd2565b1115610ea55760405162461bcd60e51b815260206004820152601e60248201527f63616e74206d696e742061626f76652077686974656c6973744c696d6974000060448201526064016107be565b81600454610eb39190611ffe565b341015610ed25760405162461bcd60e51b81526004016107be90611f2a565b81600a6000828254610ee49190611fd2565b90915550610fbf9050565b336000908152600c6020526040902054606490610f0d908490611fd2565b1115610f6d5760405162461bcd60e51b815260206004820152602960248201527f63616e74206d696e742061626f76652061626f766520313030206166746572206044820152680191a103437bab939960bd1b60648201526084016107be565b81600554610f7b9190611ffe565b341015610f9a5760405162461bcd60e51b81526004016107be90611f2a565b336000908152600c602052604081208054849290610fb9908490611fd2565b90915550505b610930338361116c565b6000546001600160a01b03163314610ff35760405162461bcd60e51b81526004016107be90611f6c565b600955565b6000600b5442611008919061201d565b905090565b6003805461101a90612060565b80601f016020809104026020016040519081016040528092919081815260200182805461104690612060565b80156110935780601f1061106857610100808354040283529160200191611093565b820191906000526020600020905b81548152906001019060200180831161107657829003601f168201915b505050505081565b6000546001600160a01b031633146110c55760405162461bcd60e51b81526004016107be90611f6c565b6001600160a01b03811661112a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107be565b610bbe816114a8565b600081600111158015611147575060015482105b80156106b85750506000908152600f6020526040902054600160e01b900460ff161590565b610930828260405180602001604052806000815250611746565b600061119182611384565b9050836001600160a01b031681600001516001600160a01b0316146111c85760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111e657506111e68533610609565b806112015750336111f684610750565b6001600160a01b0316145b90508061122157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661124857604051633a954ecd60e21b815260040160405180910390fd5b600083815260116020908152604080832080546001600160a01b03191690556001600160a01b03888116845260108352818420805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898316808752848720805493841693831660019081018416949094179055898752600f90955283862080546001600160e01b031916909517600160a01b4290921691909102178455870180855291909320805492939192909116611339576001548214611339578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6040805160608101825260008082526020820181905291810191909152818060011161148f5760015481101561148f576000818152600f6020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061148d5780516001600160a01b031615611423579392505050565b50600019016000818152600f6020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611488579392505050565b611423565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061152d903390899088908890600401611e12565b602060405180830381600087803b15801561154757600080fd5b505af1925050508015611577575060408051601f3d908101601f1916820190925261157491810190611c43565b60015b6115d2573d8080156115a5576040519150601f19603f3d011682016040523d82523d6000602084013e6115aa565b606091505b5080516115ca576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600380546106cd90612060565b6060816116235750506040805180820190915260018152600360fc1b602082015290565b8160005b811561164d57806116378161209b565b91506116469050600a83611fea565b9150611627565b60008167ffffffffffffffff8111156116685761166861210c565b6040519080825280601f01601f191660200182016040528015611692576020820181803683370190505b5090505b84156115e8576116a760018361201d565b91506116b4600a866120b6565b6116bf906030611fd2565b60f81b8183815181106116d4576116d46120f6565b60200101906001600160f81b031916908160001a9053506116f6600a86611fea565b9450611696565b6040516bffffffffffffffffffffffff19606083901b16602082015260009081906034016040516020818303038152906040528051906020012090506115e8846009548361190a565b6001546001600160a01b03841661176f57604051622e076360e81b815260040160405180910390fd5b8261178d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260106020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600f90925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156118b6575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461187f60008784806001019550876114f8565b61189c576040516368d2bf6b60e11b815260040160405180910390fd5b8082106118345782600154146118b157600080fd5b6118fb565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106118b7575b50600155610c9b600085838684565b6000826119178584611920565b14949350505050565b600081815b845181101561198c576000858281518110611942576119426120f6565b602002602001015190508083116119685760008381526020829052604090209250611979565b600081815260208490526040902092505b50806119848161209b565b915050611925565b509392505050565b8280546119a090612060565b90600052602060002090601f0160209004810192826119c25760008555611a08565b82601f106119db57805160ff1916838001178555611a08565b82800160010185558215611a08579182015b82811115611a085782518255916020019190600101906119ed565b50611a14929150611a18565b5090565b5b80821115611a145760008155600101611a19565b600067ffffffffffffffff831115611a4757611a4761210c565b611a5a601f8401601f1916602001611fa1565b9050828152838383011115611a6e57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a9c57600080fd5b919050565b600060208284031215611ab357600080fd5b610d1f82611a85565b60008060408385031215611acf57600080fd5b611ad883611a85565b9150611ae660208401611a85565b90509250929050565b600080600060608486031215611b0457600080fd5b611b0d84611a85565b9250611b1b60208501611a85565b9150604084013590509250925092565b60008060008060808587031215611b4157600080fd5b611b4a85611a85565b9350611b5860208601611a85565b925060408501359150606085013567ffffffffffffffff811115611b7b57600080fd5b8501601f81018713611b8c57600080fd5b611b9b87823560208401611a2d565b91505092959194509250565b60008060408385031215611bba57600080fd5b611bc383611a85565b915060208301358015158114611bd857600080fd5b809150509250929050565b60008060408385031215611bf657600080fd5b611bff83611a85565b946020939093013593505050565b600060208284031215611c1f57600080fd5b5035919050565b600060208284031215611c3857600080fd5b8135610d1f81612122565b600060208284031215611c5557600080fd5b8151610d1f81612122565b600060208284031215611c7257600080fd5b813567ffffffffffffffff811115611c8957600080fd5b8201601f81018413611c9a57600080fd5b6115e884823560208401611a2d565b60008060408385031215611cbc57600080fd5b82359150611ae660208401611a85565b60008060408385031215611cdf57600080fd5b8235915060208084013567ffffffffffffffff80821115611cff57600080fd5b818601915086601f830112611d1357600080fd5b813581811115611d2557611d2561210c565b8060051b9150611d36848301611fa1565b8181528481019084860184860187018b1015611d5157600080fd5b600095505b83861015611d74578035835260019590950194918601918601611d56565b508096505050505050509250929050565b60008060408385031215611d9857600080fd5b50508035926020909101359150565b60008151808452611dbf816020860160208601612034565b601f01601f19169290920160200192915050565b60008351611de5818460208801612034565b835190830190611df9818360208801612034565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e4590830184611da7565b9695505050505050565b602081526000610d1f6020830184611da7565b60208082526035908201527f6d696e7420616d6f756e74206d757374206265206c657373207468616e20206f6040820152741c88195c5d585b081b585e135a5b9d105b5bdd5b9d605a1b606082015260800190565b60208082526025908201527f6d696e7420616d6f756e74206d7573742062652067726561746572207468616e604082015264207a65726f60d81b606082015260800190565b6020808252601490820152731b585cdcc81cdd5c1c1b1e48195e18d95959195960621b604082015260600190565b60208082526022908201527f706c65617365207061737320696e2074686520636f7272656374207061796d656040820152611b9d60f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611fca57611fca61210c565b604052919050565b60008219821115611fe557611fe56120ca565b500190565b600082611ff957611ff96120e0565b500490565b6000816000190483118215151615612018576120186120ca565b500290565b60008282101561202f5761202f6120ca565b500390565b60005b8381101561204f578181015183820152602001612037565b83811115610c9b5750506000910152565b600181811c9082168061207457607f821691505b6020821081141561209557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120af576120af6120ca565b5060010190565b6000826120c5576120c56120e0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bbe57600080fdfea2646970667358221220d2e11d5b79ce1fb62fc0da352bf7e2a098174d55834efd6e44d9947d1cab939e64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000843524f47454e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000543524e4654000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063c87b56dd116100a0578063dab5f3401161006f578063dab5f340146105b9578063e0c6190d146105d9578063e985e9c5146105ee578063f259a29e14610637578063f2fde38b1461064c57600080fd5b8063c87b56dd14610550578063d2521ae814610570578063d2cab05614610590578063d5abeb01146105a357600080fd5b806397284568116100e757806397284568146104c7578063a0712d68146104e7578063a22cb465146104fa578063b88d4fde1461051a578063bdb4b8481461053a57600080fd5b8063715018a61461045f5780638545f4ea146104745780638da5cb5b1461049457806395d89b41146104b257600080fd5b8063239c70ae1161019b57806355f804b31161016a57806355f804b3146103d3578063602b9a9f146103f35780636266a36e146104095780636352211e1461041f57806370a082311461043f57600080fd5b8063239c70ae1461036757806323b872dd1461037d578063302150e51461039d57806342842e0e146103b357600080fd5b8063095ea7b3116101e2578063095ea7b3146102c55780630dc28efe146102e557806318160ddd1461030557806319188c35146103315780631e83409a1461034757600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063088a4ed0146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611c26565b61066c565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106be565b6040516102409190611e4f565b34801561027757600080fd5b5061028b610286366004611c0d565b610750565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611c0d565b610794565b005b3480156102d157600080fd5b506102c36102e0366004611be3565b6107cc565b3480156102f157600080fd5b506102c3610300366004611ca9565b61089f565b34801561031157600080fd5b50610323600254600154036000190190565b604051908152602001610240565b34801561033d57600080fd5b50610323600b5481565b34801561035357600080fd5b506102c3610362366004611aa1565b610934565b34801561037357600080fd5b5061032360085481565b34801561038957600080fd5b506102c3610398366004611aef565b61099b565b3480156103a957600080fd5b5061032360075481565b3480156103bf57600080fd5b506102c36103ce366004611aef565b6109a6565b3480156103df57600080fd5b506102c36103ee366004611c60565b6109c1565b3480156103ff57600080fd5b5061032360055481565b34801561041557600080fd5b5061032360045481565b34801561042b57600080fd5b5061028b61043a366004611c0d565b6109fe565b34801561044b57600080fd5b5061032361045a366004611aa1565b610a10565b34801561046b57600080fd5b506102c3610a5f565b34801561048057600080fd5b506102c361048f366004611c0d565b610a95565b3480156104a057600080fd5b506000546001600160a01b031661028b565b3480156104be57600080fd5b5061025e610ac4565b3480156104d357600080fd5b506102c36104e2366004611d85565b610ad3565b6102c36104f5366004611c0d565b610b08565b34801561050657600080fd5b506102c3610515366004611ba7565b610bc1565b34801561052657600080fd5b506102c3610535366004611b2b565b610c57565b34801561054657600080fd5b5061032360065481565b34801561055c57600080fd5b5061025e61056b366004611c0d565b610ca1565b34801561057c57600080fd5b506102c361058b366004611c0d565b610d26565b6102c361059e366004611ccc565b610d55565b3480156105af57600080fd5b5061032361138881565b3480156105c557600080fd5b506102c36105d4366004611c0d565b610fc9565b3480156105e557600080fd5b50610323610ff8565b3480156105fa57600080fd5b50610234610609366004611abc565b6001600160a01b03918216600090815260126020908152604080832093909416825291909152205460ff1690565b34801561064357600080fd5b5061025e61100d565b34801561065857600080fd5b506102c3610667366004611aa1565b61109b565b60006001600160e01b031982166380ac58cd60e01b148061069d57506001600160e01b03198216635b5e139f60e01b145b806106b857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600d80546106cd90612060565b80601f01602080910402602001604051908101604052809291908181526020018280546106f990612060565b80156107465780601f1061071b57610100808354040283529160200191610746565b820191906000526020600020905b81548152906001019060200180831161072957829003601f168201915b5050505050905090565b600061075b82611133565b610778576040516333d1c03960e21b815260040160405180910390fd5b506000908152601160205260409020546001600160a01b031690565b6000546001600160a01b031633146107c75760405162461bcd60e51b81526004016107be90611f6c565b60405180910390fd5b600855565b60006107d7826109fe565b9050806001600160a01b0316836001600160a01b0316141561080c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610843576108268133610609565b610843576040516367d9dca160e11b815260040160405180910390fd5b60008281526011602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146108c95760405162461bcd60e51b81526004016107be90611f6c565b600082116108e95760405162461bcd60e51b81526004016107be90611eb7565b611388826108fe600254600154036000190190565b6109089190611fd2565b11156109265760405162461bcd60e51b81526004016107be90611efc565b610930818361116c565b5050565b6000546001600160a01b0316331461095e5760405162461bcd60e51b81526004016107be90611f6c565b60405147906001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610996573d6000803e3d6000fd5b505050565b610996838383611186565b61099683838360405180602001604052806000815250610c57565b6000546001600160a01b031633146109eb5760405162461bcd60e51b81526004016107be90611f6c565b8051610930906003906020840190611994565b6000610a0982611384565b5192915050565b60006001600160a01b038216610a39576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526010602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610a895760405162461bcd60e51b81526004016107be90611f6c565b610a9360006114a8565b565b6000546001600160a01b03163314610abf5760405162461bcd60e51b81526004016107be90611f6c565b600655565b6060600e80546106cd90612060565b6000546001600160a01b03163314610afd5760405162461bcd60e51b81526004016107be90611f6c565b600491909155600555565b60008111610b285760405162461bcd60e51b81526004016107be90611eb7565b600854811115610b4a5760405162461bcd60e51b81526004016107be90611e62565b61138881610b5f600254600154036000190190565b610b699190611fd2565b1115610b875760405162461bcd60e51b81526004016107be90611efc565b80600654610b959190611ffe565b341015610bb45760405162461bcd60e51b81526004016107be90611f2a565b610bbe338261116c565b50565b6001600160a01b038216331415610beb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526012602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c62848484611186565b6001600160a01b0383163b15610c9b57610c7e848484846114f8565b610c9b576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610cac82611133565b610cc957604051630a14c4b560e41b815260040160405180910390fd5b6000610cd36115f0565b9050805160001415610cf45760405180602001604052806000815250610d1f565b80610cfe846115ff565b604051602001610d0f929190611dd3565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314610d505760405162461bcd60e51b81526004016107be90611f6c565b600755565b610d5f81336116fd565b1515600114610db05760405162461bcd60e51b815260206004820152601760248201527f796f7520617265206e6f742077686974656c697374656400000000000000000060448201526064016107be565b60008211610dd05760405162461bcd60e51b81526004016107be90611eb7565b600854821115610df25760405162461bcd60e51b81526004016107be90611e62565b61138882610e07600254600154036000190190565b610e119190611fd2565b1115610e2f5760405162461bcd60e51b81526004016107be90611efc565b62017bb0600b5442610e41919061201d565b11610eef5760075482600a54610e579190611fd2565b1115610ea55760405162461bcd60e51b815260206004820152601e60248201527f63616e74206d696e742061626f76652077686974656c6973744c696d6974000060448201526064016107be565b81600454610eb39190611ffe565b341015610ed25760405162461bcd60e51b81526004016107be90611f2a565b81600a6000828254610ee49190611fd2565b90915550610fbf9050565b336000908152600c6020526040902054606490610f0d908490611fd2565b1115610f6d5760405162461bcd60e51b815260206004820152602960248201527f63616e74206d696e742061626f76652061626f766520313030206166746572206044820152680191a103437bab939960bd1b60648201526084016107be565b81600554610f7b9190611ffe565b341015610f9a5760405162461bcd60e51b81526004016107be90611f2a565b336000908152600c602052604081208054849290610fb9908490611fd2565b90915550505b610930338361116c565b6000546001600160a01b03163314610ff35760405162461bcd60e51b81526004016107be90611f6c565b600955565b6000600b5442611008919061201d565b905090565b6003805461101a90612060565b80601f016020809104026020016040519081016040528092919081815260200182805461104690612060565b80156110935780601f1061106857610100808354040283529160200191611093565b820191906000526020600020905b81548152906001019060200180831161107657829003601f168201915b505050505081565b6000546001600160a01b031633146110c55760405162461bcd60e51b81526004016107be90611f6c565b6001600160a01b03811661112a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107be565b610bbe816114a8565b600081600111158015611147575060015482105b80156106b85750506000908152600f6020526040902054600160e01b900460ff161590565b610930828260405180602001604052806000815250611746565b600061119182611384565b9050836001600160a01b031681600001516001600160a01b0316146111c85760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111e657506111e68533610609565b806112015750336111f684610750565b6001600160a01b0316145b90508061122157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661124857604051633a954ecd60e21b815260040160405180910390fd5b600083815260116020908152604080832080546001600160a01b03191690556001600160a01b03888116845260108352818420805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898316808752848720805493841693831660019081018416949094179055898752600f90955283862080546001600160e01b031916909517600160a01b4290921691909102178455870180855291909320805492939192909116611339576001548214611339578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6040805160608101825260008082526020820181905291810191909152818060011161148f5760015481101561148f576000818152600f6020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061148d5780516001600160a01b031615611423579392505050565b50600019016000818152600f6020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611488579392505050565b611423565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061152d903390899088908890600401611e12565b602060405180830381600087803b15801561154757600080fd5b505af1925050508015611577575060408051601f3d908101601f1916820190925261157491810190611c43565b60015b6115d2573d8080156115a5576040519150601f19603f3d011682016040523d82523d6000602084013e6115aa565b606091505b5080516115ca576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600380546106cd90612060565b6060816116235750506040805180820190915260018152600360fc1b602082015290565b8160005b811561164d57806116378161209b565b91506116469050600a83611fea565b9150611627565b60008167ffffffffffffffff8111156116685761166861210c565b6040519080825280601f01601f191660200182016040528015611692576020820181803683370190505b5090505b84156115e8576116a760018361201d565b91506116b4600a866120b6565b6116bf906030611fd2565b60f81b8183815181106116d4576116d46120f6565b60200101906001600160f81b031916908160001a9053506116f6600a86611fea565b9450611696565b6040516bffffffffffffffffffffffff19606083901b16602082015260009081906034016040516020818303038152906040528051906020012090506115e8846009548361190a565b6001546001600160a01b03841661176f57604051622e076360e81b815260040160405180910390fd5b8261178d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260106020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600f90925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156118b6575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461187f60008784806001019550876114f8565b61189c576040516368d2bf6b60e11b815260040160405180910390fd5b8082106118345782600154146118b157600080fd5b6118fb565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106118b7575b50600155610c9b600085838684565b6000826119178584611920565b14949350505050565b600081815b845181101561198c576000858281518110611942576119426120f6565b602002602001015190508083116119685760008381526020829052604090209250611979565b600081815260208490526040902092505b50806119848161209b565b915050611925565b509392505050565b8280546119a090612060565b90600052602060002090601f0160209004810192826119c25760008555611a08565b82601f106119db57805160ff1916838001178555611a08565b82800160010185558215611a08579182015b82811115611a085782518255916020019190600101906119ed565b50611a14929150611a18565b5090565b5b80821115611a145760008155600101611a19565b600067ffffffffffffffff831115611a4757611a4761210c565b611a5a601f8401601f1916602001611fa1565b9050828152838383011115611a6e57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611a9c57600080fd5b919050565b600060208284031215611ab357600080fd5b610d1f82611a85565b60008060408385031215611acf57600080fd5b611ad883611a85565b9150611ae660208401611a85565b90509250929050565b600080600060608486031215611b0457600080fd5b611b0d84611a85565b9250611b1b60208501611a85565b9150604084013590509250925092565b60008060008060808587031215611b4157600080fd5b611b4a85611a85565b9350611b5860208601611a85565b925060408501359150606085013567ffffffffffffffff811115611b7b57600080fd5b8501601f81018713611b8c57600080fd5b611b9b87823560208401611a2d565b91505092959194509250565b60008060408385031215611bba57600080fd5b611bc383611a85565b915060208301358015158114611bd857600080fd5b809150509250929050565b60008060408385031215611bf657600080fd5b611bff83611a85565b946020939093013593505050565b600060208284031215611c1f57600080fd5b5035919050565b600060208284031215611c3857600080fd5b8135610d1f81612122565b600060208284031215611c5557600080fd5b8151610d1f81612122565b600060208284031215611c7257600080fd5b813567ffffffffffffffff811115611c8957600080fd5b8201601f81018413611c9a57600080fd5b6115e884823560208401611a2d565b60008060408385031215611cbc57600080fd5b82359150611ae660208401611a85565b60008060408385031215611cdf57600080fd5b8235915060208084013567ffffffffffffffff80821115611cff57600080fd5b818601915086601f830112611d1357600080fd5b813581811115611d2557611d2561210c565b8060051b9150611d36848301611fa1565b8181528481019084860184860187018b1015611d5157600080fd5b600095505b83861015611d74578035835260019590950194918601918601611d56565b508096505050505050509250929050565b60008060408385031215611d9857600080fd5b50508035926020909101359150565b60008151808452611dbf816020860160208601612034565b601f01601f19169290920160200192915050565b60008351611de5818460208801612034565b835190830190611df9818360208801612034565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e4590830184611da7565b9695505050505050565b602081526000610d1f6020830184611da7565b60208082526035908201527f6d696e7420616d6f756e74206d757374206265206c657373207468616e20206f6040820152741c88195c5d585b081b585e135a5b9d105b5bdd5b9d605a1b606082015260800190565b60208082526025908201527f6d696e7420616d6f756e74206d7573742062652067726561746572207468616e604082015264207a65726f60d81b606082015260800190565b6020808252601490820152731b585cdcc81cdd5c1c1b1e48195e18d95959195960621b604082015260600190565b60208082526022908201527f706c65617365207061737320696e2074686520636f7272656374207061796d656040820152611b9d60f21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611fca57611fca61210c565b604052919050565b60008219821115611fe557611fe56120ca565b500190565b600082611ff957611ff96120e0565b500490565b6000816000190483118215151615612018576120186120ca565b500290565b60008282101561202f5761202f6120ca565b500390565b60005b8381101561204f578181015183820152602001612037565b83811115610c9b5750506000910152565b600181811c9082168061207457607f821691505b6020821081141561209557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156120af576120af6120ca565b5060010190565b6000826120c5576120c56120e0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bbe57600080fdfea2646970667358221220d2e11d5b79ce1fb62fc0da352bf7e2a098174d55834efd6e44d9947d1cab939e64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000843524f47454e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000543524e4654000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): CROGENFT
Arg [1] : symbol_ (string): CRNFT

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 43524f47454e4654000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 43524e4654000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

28356:24377:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31089:305;;;;;;;;;;-1:-1:-1;31089:305:0;;;;;:::i;:::-;;:::i;:::-;;;7549:14:1;;7542:22;7524:41;;7512:2;7497:18;31089:305:0;;;;;;;;34186:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35725:202::-;;;;;;;;;;-1:-1:-1;35725:202:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6847:32:1;;;6829:51;;6817:2;6802:18;35725:202:0;6683:203:1;40633:122:0;;;;;;;;;;-1:-1:-1;40633:122:0;;;;;:::i;:::-;;:::i;:::-;;35256:405;;;;;;;;;;-1:-1:-1;35256:405:0;;;;;:::i;:::-;;:::i;39718:288::-;;;;;;;;;;-1:-1:-1;39718:288:0;;;;;:::i;:::-;;:::i;30333:312::-;;;;;;;;;;;;30596:12;;30192:1;30580:13;:28;-1:-1:-1;;30580:46:0;;30333:312;;;;11415:25:1;;;11403:2;11388:18;30333:312:0;11269:177:1;29038:28:0;;;;;;;;;;;;;;;;40889:211;;;;;;;;;;-1:-1:-1;40889:211:0;;;;;:::i;:::-;;:::i;28931:33::-;;;;;;;;;;;;;;;;36580:170;;;;;;;;;;-1:-1:-1;36580:170:0;;;;;:::i;:::-;;:::i;28841:36::-;;;;;;;;;;;;;;;;36819:185;;;;;;;;;;-1:-1:-1;36819:185:0;;;;;:::i;:::-;;:::i;40761:105::-;;;;;;;;;;-1:-1:-1;40761:105:0;;;;;:::i;:::-;;:::i;28739:53::-;;;;;;;;;;;;;;;;28688:44;;;;;;;;;;;;;;;;33996:125;;;;;;;;;;-1:-1:-1;33996:125:0;;;;;:::i;:::-;;:::i;31456:206::-;;;;;;;;;;-1:-1:-1;31456:206:0;;;;;:::i;:::-;;:::i;7309:103::-;;;;;;;;;;;;;:::i;40440:94::-;;;;;;;;;;-1:-1:-1;40440:94:0;;;;;:::i;:::-;;:::i;6662:87::-;;;;;;;;;;-1:-1:-1;6708:7:0;6735:6;-1:-1:-1;;;;;6735:6:0;6662:87;;34353:104;;;;;;;;;;;;;:::i;40240:192::-;;;;;;;;;;-1:-1:-1;40240:192:0;;;;;:::i;:::-;;:::i;39249:461::-;;;;;;:::i;:::-;;:::i;35997:285::-;;;;;;;;;;-1:-1:-1;35997:285:0;;;;;:::i;:::-;;:::i;37073:370::-;;;;;;;;;;-1:-1:-1;37073:370:0;;;;;:::i;:::-;;:::i;28799:35::-;;;;;;;;;;;;;;;;34526:324;;;;;;;;;;-1:-1:-1;34526:324:0;;;;;:::i;:::-;;:::i;40124:102::-;;;;;;;;;;-1:-1:-1;40124:102:0;;;;;:::i;:::-;;:::i;38084:1158::-;;;;;;:::i;:::-;;:::i;28884:40::-;;;;;;;;;;;;28920:4;28884:40;;40541:79;;;;;;;;;;-1:-1:-1;40541:79:0;;;;;:::i;:::-;;:::i;40018:99::-;;;;;;;;;;;;;:::i;36351:164::-;;;;;;;;;;-1:-1:-1;36351:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36472:25:0;;;36448:4;36472:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36351:164;28645:36;;;;;;;;;;;;;:::i;7565:201::-;;;;;;;;;;-1:-1:-1;7565:201:0;;;;;:::i;:::-;;:::i;31089:305::-;31191:4;-1:-1:-1;;;;;;31228:40:0;;-1:-1:-1;;;31228:40:0;;:105;;-1:-1:-1;;;;;;;31285:48:0;;-1:-1:-1;;;31285:48:0;31228:105;:158;;;-1:-1:-1;;;;;;;;;;19396:40:0;;;31350:36;31208:178;31089:305;-1:-1:-1;;31089:305:0:o;34186:100::-;34240:13;34273:5;34266:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34186:100;:::o;35725:202::-;35793:7;35818:16;35826:7;35818;:16::i;:::-;35813:64;;35843:34;;-1:-1:-1;;;35843:34:0;;;;;;;;;;;35813:64;-1:-1:-1;35895:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35895:24:0;;35725:202::o;40633:122::-;6708:7;6735:6;-1:-1:-1;;;;;6735:6:0;5511:10;6880:23;6872:68;;;;-1:-1:-1;;;6872:68:0;;;;;;;:::i;:::-;;;;;;;;;40714:13:::1;:33:::0;40633:122::o;35256:405::-;35329:13;35345:16;35353:7;35345;:16::i;:::-;35329:32;;35382:5;-1:-1:-1;;;;;35376:11:0;:2;-1:-1:-1;;;;;35376:11:0;;35372:48;;;35396:24;;-1:-1:-1;;;35396:24:0;;;;;;;;;;;35372:48;5511:10;-1:-1:-1;;;;;35435:21:0;;;35431:139;;35462:37;35479:5;5511:10;36351:164;:::i;35462:37::-;35458:112;;35523:35;;-1:-1:-1;;;35523:35:0;;;;;;;;;;;35458:112;35580:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35580:29:0;-1:-1:-1;;;;;35580:29:0;;;;;;;;;35625:28;;35580:24;;35625:28;;;;;;;35318:343;35256:405;;:::o;39718:288::-;6708:7;6735:6;-1:-1:-1;;;;;6735:6:0;5511:10;6880:23;6872:68;;;;-1:-1:-1;;;6872:68:0;;;;;;;:::i;:::-;39826:1:::1;39812:11;:15;39804:64;;;;-1:-1:-1::0;;;39804:64:0::1;;;;;;;:::i;:::-;28920:4;39905:11;39889:13;30596:12:::0;;30192:1;30580:13;:28;-1:-1:-1;;30580:46:0;;30333:312;39889:13:::1;:27;;;;:::i;:::-;:40;;39880:73;;;;-1:-1:-1::0;;;39880:73:0::1;;;;;;;:::i;:::-;39964:32;39974:9;39984:11;39964:9;:32::i;:::-;39718:288:::0;;:::o;40889:211::-;6708:7;6735:6;-1:-1:-1;;;;;6735:6:0;5511:10;6880:23;6872:68;;;;-1:-1:-1;;;6872:68:0;;;;;;;:::i;:::-;41043:30:::1;::::0;41002:21:::1;::::0;-1:-1:-1;;;;;41043:21:0;::::1;::::0;:30;::::1;;;::::0;41002:21;;40984:15:::1;41043:30:::0;40984:15;41043:30;41002:21;41043;:30;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;40934:166;40889:211:::0;:::o;36580:170::-;36714:28;36724:4;36730:2;36734:7;36714:9;:28::i;36819:185::-;36957:39;36974:4;36980:2;36984:7;36957:39;;;;;;;;;;;;:16;:39::i;40761:105::-;6708:7;6735:6;-1:-1:-1;;;;;6735:6:0;5511:10;6880:23;6872:68;;;;-1:-1:-1;;;6872:68:0;;;;;;;:::i;:::-;40836:22;;::::1;::::0;:8:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;33996:125::-:0;34060:7;34087:21;34100:7;34087:12;:21::i;:::-;:26;;33996:125;-1:-1:-1;;33996:125:0:o;31456:206::-;31520:7;-1:-1:-1;;;;;31544:19:0;;31540:60;;31572:28;;-1:-1:-1;;;31572:28:0;;;;;;;;;;;31540:60;-1:-1:-1;;;;;;31626:19:0;;;;;:12;:19;;;;;:27;;;;31456:206::o;7309:103::-;6708:7;6735:6;-1:-1:-1;;;;;6735:6:0;5511:10;6880:23;6872:68;;;;-1:-1:-1;;;6872:68:0;;;;;;;:::i;:::-;7374:30:::1;7401:1;7374:18;:30::i;:::-;7309:103::o:0;40440:94::-;6708:7;6735:6;-1:-1:-1;;;;;6735:6:0;5511:10;6880:23;6872:68;;;;-1:-1:-1;;;6872:68:0;;;;;;;:::i;:::-;40507:8:::1;:19:::0;40440:94::o;34353:104::-;34409:13;34442:7;34435:14;;;;;:::i;40240:192::-;6708:7;6735:6;-1:-1:-1;;;;;6735:6:0;5511:10;6880:23;6872:68;;;;-1:-1:-1;;;6872:68:0;;;;;;;:::i;:::-;40339:17:::1;:28:::0;;;;40378:27:::1;:46:::0;40240:192::o;39249:461::-;39331:1;39317:11;:15;39309:64;;;;-1:-1:-1;;;39309:64:0;;;;;;;:::i;:::-;39408:13;;39393:11;:28;;39385:93;;;;-1:-1:-1;;;39385:93:0;;;;;;;:::i;:::-;28920:4;39514:11;39498:13;30596:12;;30192:1;30580:13;:28;-1:-1:-1;;30580:46:0;;30333:312;39498:13;:27;;;;:::i;:::-;:40;;39489:73;;;;-1:-1:-1;;;39489:73:0;;;;;;;:::i;:::-;39606:11;39595:8;;:22;;;;:::i;:::-;39582:9;:35;;39573:83;;;;-1:-1:-1;;;39573:83:0;;;;;;;:::i;:::-;39668:33;39678:10;39689:11;39668:9;:33::i;:::-;39249:461;:::o;35997:285::-;-1:-1:-1;;;;;36096:24:0;;5511:10;36096:24;36092:54;;;36129:17;;-1:-1:-1;;;36129:17:0;;;;;;;;;;;36092:54;5511:10;36157:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36157:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36157:53:0;;;;;;;;;;36226:48;;7524:41:1;;;36157:42:0;;5511:10;36226:48;;7497:18:1;36226:48:0;;;;;;;35997:285;;:::o;37073:370::-;37240:28;37250:4;37256:2;37260:7;37240:9;:28::i;:::-;-1:-1:-1;;;;;37283:13:0;;9613:19;:23;37279:157;;37304:56;37335:4;37341:2;37345:7;37354:5;37304:30;:56::i;:::-;37300:136;;37384:40;;-1:-1:-1;;;37384:40:0;;;;;;;;;;;37300:136;37073:370;;;;:::o;34526:324::-;34599:13;34630:16;34638:7;34630;:16::i;:::-;34625:59;;34655:29;;-1:-1:-1;;;34655:29:0;;;;;;;;;;;34625:59;34695:21;34719:10;:8;:10::i;:::-;34695:34;;34753:7;34747:21;34772:1;34747:26;;:95;;;;;;;;;;;;;;;;;34800:7;34809:18;:7;:16;:18::i;:::-;34783:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34747:95;34740:102;34526:324;-1:-1:-1;;;34526:324:0:o;40124:102::-;6708:7;6735:6;-1:-1:-1;;;;;6735:6:0;5511:10;6880:23;6872:68;;;;-1:-1:-1;;;6872:68:0;;;;;;;:::i;:::-;40195:14:::1;:23:::0;40124:102::o;38084:1158::-;38185:26;38194:5;38200:10;38185:8;:26::i;:::-;:34;;38215:4;38185:34;38177:69;;;;-1:-1:-1;;;38177:69:0;;11119:2:1;38177:69:0;;;11101:21:1;11158:2;11138:18;;;11131:30;11197:25;11177:18;;;11170:53;11240:18;;38177:69:0;10917:347:1;38177:69:0;38280:1;38266:11;:15;38258:64;;;;-1:-1:-1;;;38258:64:0;;;;;;;:::i;:::-;38357:13;;38342:11;:28;;38334:93;;;;-1:-1:-1;;;38334:93:0;;;;;;;:::i;:::-;28920:4;38463:11;38447:13;30596:12;;30192:1;30580:13;:28;-1:-1:-1;;30580:46:0;;30333:312;38447:13;:27;;;;:::i;:::-;:40;;38438:73;;;;-1:-1:-1;;;38438:73:0;;;;;;;:::i;:::-;38558:13;38542:12;;38526:15;:28;;;;:::i;:::-;:45;38522:656;;38628:14;;38613:11;38595:16;;:29;;;;:::i;:::-;:47;;38587:90;;;;-1:-1:-1;;;38587:90:0;;9237:2:1;38587:90:0;;;9219:21:1;9276:2;9256:18;;;9249:30;9315:32;9295:18;;;9288:60;9365:18;;38587:90:0;9035:354:1;38587:90:0;38734:11;38714:17;;:31;;;;:::i;:::-;38701:9;:44;;38692:92;;;;-1:-1:-1;;;38692:92:0;;;;;;;:::i;:::-;38819:11;38799:16;;:31;;;;;;;:::i;:::-;;;;-1:-1:-1;38522:656:0;;-1:-1:-1;38522:656:0;;38905:10;38875:41;;;;:29;:41;;;;;;38932:3;;38875:53;;38917:11;;38875:53;:::i;:::-;:60;;38866:114;;;;-1:-1:-1;;;38866:114:0;;9596:2:1;38866:114:0;;;9578:21:1;9635:2;9615:18;;;9608:30;9674:34;9654:18;;;9647:62;-1:-1:-1;;;9725:18:1;;;9718:39;9774:19;;38866:114:0;9394:405:1;38866:114:0;39047:11;39017:27;;:41;;;;:::i;:::-;39004:9;:54;;38995:102;;;;-1:-1:-1;;;38995:102:0;;;;;;;:::i;:::-;39142:10;39112:41;;;;:29;:41;;;;;:54;;39155:11;;39112:41;:54;;39155:11;;39112:54;:::i;:::-;;;;-1:-1:-1;;38522:656:0;39200:33;39210:10;39221:11;39200:9;:33::i;40541:79::-;6708:7;6735:6;-1:-1:-1;;;;;6735:6:0;5511:10;6880:23;6872:68;;;;-1:-1:-1;;;6872:68:0;;;;;;;:::i;:::-;40602:4:::1;:10:::0;40541:79::o;40018:99::-;40058:4;40097:12;;40079:15;:30;;;;:::i;:::-;40072:37;;40018:99;:::o;28645:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7565:201::-;6708:7;6735:6;-1:-1:-1;;;;;6735:6:0;5511:10;6880:23;6872:68;;;;-1:-1:-1;;;6872:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7654:22:0;::::1;7646:73;;;::::0;-1:-1:-1;;;7646:73:0;;8424:2:1;7646:73:0::1;::::0;::::1;8406:21:1::0;8463:2;8443:18;;;8436:30;8502:34;8482:18;;;8475:62;-1:-1:-1;;;8553:18:1;;;8546:36;8599:19;;7646:73:0::1;8222:402:1::0;7646:73:0::1;7730:28;7749:8;7730:18;:28::i;37696:174::-:0;37753:4;37796:7;30192:1;37777:26;;:53;;;;;37817:13;;37807:7;:23;37777:53;:85;;;;-1:-1:-1;;37835:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37835:27:0;;;;37834:28;;37696:174::o;41182:104::-;41251:27;41261:2;41265:8;41251:27;;;;;;;;;;;;:9;:27::i;45067:2109::-;45182:35;45220:21;45233:7;45220:12;:21::i;:::-;45182:59;;45278:4;-1:-1:-1;;;;;45256:26:0;:13;:18;;;-1:-1:-1;;;;;45256:26:0;;45252:67;;45291:28;;-1:-1:-1;;;45291:28:0;;;;;;;;;;;45252:67;45330:22;5511:10;-1:-1:-1;;;;;45356:20:0;;;;:73;;-1:-1:-1;45393:36:0;45410:4;5511:10;36351:164;:::i;45393:36::-;45356:126;;;-1:-1:-1;5511:10:0;45446:20;45458:7;45446:11;:20::i;:::-;-1:-1:-1;;;;;45446:36:0;;45356:126;45330:153;;45499:17;45494:66;;45525:35;;-1:-1:-1;;;45525:35:0;;;;;;;;;;;45494:66;-1:-1:-1;;;;;45575:16:0;;45571:52;;45600:23;;-1:-1:-1;;;45600:23:0;;;;;;;;;;;45571:52;45748:24;;;;:15;:24;;;;;;;;45741:31;;-1:-1:-1;;;;;;45741:31:0;;;-1:-1:-1;;;;;46066:18:0;;;;;:12;:18;;;;;:31;;-1:-1:-1;;46066:31:0;;;;;;;-1:-1:-1;;46066:31:0;;;;;;;46112:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;46112:29:0;;;;;;;;;;;46190:20;;;:11;:20;;;;;;46225:18;;-1:-1:-1;;;;;;46258:49:0;;;;-1:-1:-1;;;46291:15:0;46258:49;;;;;;;;;;46579:11;;46639:24;;;;;;;46682:13;;46190:20;;46579:11;;46639:24;;46682:13;46678:384;;46892:13;;46877:11;:28;46873:174;;46930:20;;46999:28;;;;46973:54;;-1:-1:-1;;;46973:54:0;-1:-1:-1;;;;;;46973:54:0;;;-1:-1:-1;;;;;46930:20:0;;46973:54;;;;46873:174;46041:1032;;;47107:7;47103:2;-1:-1:-1;;;;;47088:27:0;47097:4;-1:-1:-1;;;;;47088:27:0;;;;;;;;;;;45171:2005;;45067:2109;;;:::o;32827:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;32938:7:0;;30192:1;32985:23;32981:888;;33021:13;;33014:4;:20;33010:859;;;33055:31;33089:17;;;:11;:17;;;;;;;;;33055:51;;;;;;;;;-1:-1:-1;;;;;33055:51:0;;;;-1:-1:-1;;;33055:51:0;;;;;;;;;;;-1:-1:-1;;;33055:51:0;;;;;;;;;;;;;;33125:729;;33175:14;;-1:-1:-1;;;;;33175:28:0;;33171:101;;33239:9;32827:1109;-1:-1:-1;;;32827:1109:0:o;33171:101::-;-1:-1:-1;;;33614:6:0;33659:17;;;;:11;:17;;;;;;;;;33647:29;;;;;;;;;-1:-1:-1;;;;;33647:29:0;;;;;-1:-1:-1;;;33647:29:0;;;;;;;;;;;-1:-1:-1;;;33647:29:0;;;;;;;;;;;;;33707:28;33703:109;;33775:9;32827:1109;-1:-1:-1;;;32827:1109:0:o;33703:109::-;33574:261;;;33036:833;33010:859;33897:31;;-1:-1:-1;;;33897:31:0;;;;;;;;;;;7924:191;7998:16;8017:6;;-1:-1:-1;;;;;8034:17:0;;;-1:-1:-1;;;;;;8034:17:0;;;;;;8067:40;;8017:6;;;;;;;8067:40;;7998:16;8067:40;7987:128;7924:191;:::o;50443:667::-;50627:72;;-1:-1:-1;;;50627:72:0;;50606:4;;-1:-1:-1;;;;;50627:36:0;;;;;:72;;5511:10;;50678:4;;50684:7;;50693:5;;50627:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50627:72:0;;;;;;;;-1:-1:-1;;50627:72:0;;;;;;;;;;;;:::i;:::-;;;50623:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50861:13:0;;50857:235;;50907:40;;-1:-1:-1;;;50907:40:0;;;;;;;;;;;50857:235;51050:6;51044:13;51035:6;51031:2;51027:15;51020:38;50623:480;-1:-1:-1;;;;;;50746:55:0;-1:-1:-1;;;50746:55:0;;-1:-1:-1;50623:480:0;50443:667;;;;;;:::o;35096:100::-;35147:13;35180:8;35173:15;;;;;:::i;3034:721::-;3090:13;3309:10;3305:53;;-1:-1:-1;;3336:10:0;;;;;;;;;;;;-1:-1:-1;;;3336:10:0;;;;;3034:721::o;3305:53::-;3383:5;3368:12;3424:78;3431:9;;3424:78;;3457:8;;;;:::i;:::-;;-1:-1:-1;3480:10:0;;-1:-1:-1;3488:2:0;3480:10;;:::i;:::-;;;3424:78;;;3512:19;3544:6;3534:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3534:17:0;;3512:39;;3562:154;3569:10;;3562:154;;3596:11;3606:1;3596:11;;:::i;:::-;;-1:-1:-1;3665:10:0;3673:2;3665:5;:10;:::i;:::-;3652:24;;:2;:24;:::i;:::-;3639:39;;3622:6;3629;3622:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3622:56:0;;;;;;;;-1:-1:-1;3693:11:0;3702:2;3693:11;;:::i;:::-;;;3562:154;;37882:196;37996:21;;-1:-1:-1;;5956:2:1;5952:15;;;5948:53;37996:21:0;;;5936:66:1;37957:4:0;;;;6018:12:1;;37996:21:0;;;;;;;;;;;;37986:32;;;;;;37972:46;;38035:35;38054:5;38060:4;;38065;38035:18;:35::i;41657:1740::-;41803:13;;-1:-1:-1;;;;;41831:16:0;;41827:48;;41856:19;;-1:-1:-1;;;41856:19:0;;;;;;;;;;;41827:48;41890:13;41886:44;;41912:18;;-1:-1:-1;;;41912:18:0;;;;;;;;;;;41886:44;-1:-1:-1;;;;;42277:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;42336:49:0;;42277:44;;;;;;;;42336:49;;;;-1:-1:-1;;42277:44:0;;;;;;42336:49;;;;;;;;;;;;;;;;42400:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;42450:66:0;;;-1:-1:-1;;;42500:15:0;42450:66;;;;;;;;;;;;;42400:25;;42595:23;;;;9613:19;:23;42633:632;;42673:314;42704:38;;42729:12;;-1:-1:-1;;;;;42704:38:0;;;42721:1;;42704:38;;42721:1;;42704:38;42770:69;42809:1;42813:2;42817:14;;;;;;42833:5;42770:30;:69::i;:::-;42765:175;;42876:40;;-1:-1:-1;;;42876:40:0;;;;;;;;;;;42765:175;42982:3;42967:12;:18;42673:314;;43068:12;43051:13;;:29;43047:43;;43082:8;;;43047:43;42633:632;;;43131:119;43162:40;;43187:14;;;;;-1:-1:-1;;;;;43162:40:0;;;43179:1;;43162:40;;43179:1;;43162:40;43245:3;43230:12;:18;43131:119;;42633:632;-1:-1:-1;43279:13:0;:28;43329:60;43358:1;43362:2;43366:12;43380:8;43329:60;:::i;1245:190::-;1370:4;1423;1394:25;1407:5;1414:4;1394:12;:25::i;:::-;:33;;1245:190;-1:-1:-1;;;;1245:190:0:o;1794:675::-;1877:7;1920:4;1877:7;1935:497;1959:5;:12;1955:1;:16;1935:497;;;1993:20;2016:5;2022:1;2016:8;;;;;;;;:::i;:::-;;;;;;;1993:31;;2059:12;2043;:28;2039:382;;2543:13;2593:15;;;2629:4;2622:15;;;2676:4;2660:21;;2171:57;;2039:382;;;2543:13;2593:15;;;2629:4;2622:15;;;2676:4;2660:21;;2348:57;;2039:382;-1:-1:-1;1973:3:0;;;;:::i;:::-;;;;1935:497;;;-1:-1:-1;2449:12:0;1794:675;-1:-1:-1;;;1794:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:180::-;2733:6;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;-1:-1:-1;2825:23:1;;2674:180;-1:-1:-1;2674:180:1:o;2859:245::-;2917:6;2970:2;2958:9;2949:7;2945:23;2941:32;2938:52;;;2986:1;2983;2976:12;2938:52;3025:9;3012:23;3044:30;3068:5;3044:30;:::i;3109:249::-;3178:6;3231:2;3219:9;3210:7;3206:23;3202:32;3199:52;;;3247:1;3244;3237:12;3199:52;3279:9;3273:16;3298:30;3322:5;3298:30;:::i;3363:450::-;3432:6;3485:2;3473:9;3464:7;3460:23;3456:32;3453:52;;;3501:1;3498;3491:12;3453:52;3541:9;3528:23;3574:18;3566:6;3563:30;3560:50;;;3606:1;3603;3596:12;3560:50;3629:22;;3682:4;3674:13;;3670:27;-1:-1:-1;3660:55:1;;3711:1;3708;3701:12;3660:55;3734:73;3799:7;3794:2;3781:16;3776:2;3772;3768:11;3734:73;:::i;4003:254::-;4071:6;4079;4132:2;4120:9;4111:7;4107:23;4103:32;4100:52;;;4148:1;4145;4138:12;4100:52;4184:9;4171:23;4161:33;;4213:38;4247:2;4236:9;4232:18;4213:38;:::i;4262:1025::-;4355:6;4363;4416:2;4404:9;4395:7;4391:23;4387:32;4384:52;;;4432:1;4429;4422:12;4384:52;4468:9;4455:23;4445:33;;4497:2;4550;4539:9;4535:18;4522:32;4573:18;4614:2;4606:6;4603:14;4600:34;;;4630:1;4627;4620:12;4600:34;4668:6;4657:9;4653:22;4643:32;;4713:7;4706:4;4702:2;4698:13;4694:27;4684:55;;4735:1;4732;4725:12;4684:55;4771:2;4758:16;4793:2;4789;4786:10;4783:36;;;4799:18;;:::i;:::-;4845:2;4842:1;4838:10;4828:20;;4868:28;4892:2;4888;4884:11;4868:28;:::i;:::-;4930:15;;;4961:12;;;;4993:11;;;5023;;;5019:20;;5016:33;-1:-1:-1;5013:53:1;;;5062:1;5059;5052:12;5013:53;5084:1;5075:10;;5094:163;5108:2;5105:1;5102:9;5094:163;;;5165:17;;5153:30;;5126:1;5119:9;;;;;5203:12;;;;5235;;5094:163;;;5098:3;5276:5;5266:15;;;;;;;;4262:1025;;;;;:::o;5292:248::-;5360:6;5368;5421:2;5409:9;5400:7;5396:23;5392:32;5389:52;;;5437:1;5434;5427:12;5389:52;-1:-1:-1;;5460:23:1;;;5530:2;5515:18;;;5502:32;;-1:-1:-1;5292:248:1:o;5545:257::-;5586:3;5624:5;5618:12;5651:6;5646:3;5639:19;5667:63;5723:6;5716:4;5711:3;5707:14;5700:4;5693:5;5689:16;5667:63;:::i;:::-;5784:2;5763:15;-1:-1:-1;;5759:29:1;5750:39;;;;5791:4;5746:50;;5545:257;-1:-1:-1;;5545:257:1:o;6041:637::-;6321:3;6359:6;6353:13;6375:53;6421:6;6416:3;6409:4;6401:6;6397:17;6375:53;:::i;:::-;6491:13;;6450:16;;;;6513:57;6491:13;6450:16;6547:4;6535:17;;6513:57;:::i;:::-;-1:-1:-1;;;6592:20:1;;6621:22;;;6670:1;6659:13;;6041:637;-1:-1:-1;;;;6041:637:1:o;6891:488::-;-1:-1:-1;;;;;7160:15:1;;;7142:34;;7212:15;;7207:2;7192:18;;7185:43;7259:2;7244:18;;7237:34;;;7307:3;7302:2;7287:18;;7280:31;;;7085:4;;7328:45;;7353:19;;7345:6;7328:45;:::i;:::-;7320:53;6891:488;-1:-1:-1;;;;;;6891:488:1:o;7576:219::-;7725:2;7714:9;7707:21;7688:4;7745:44;7785:2;7774:9;7770:18;7762:6;7745:44;:::i;7800:417::-;8002:2;7984:21;;;8041:2;8021:18;;;8014:30;8080:34;8075:2;8060:18;;8053:62;-1:-1:-1;;;8146:2:1;8131:18;;8124:51;8207:3;8192:19;;7800:417::o;8629:401::-;8831:2;8813:21;;;8870:2;8850:18;;;8843:30;8909:34;8904:2;8889:18;;8882:62;-1:-1:-1;;;8975:2:1;8960:18;;8953:35;9020:3;9005:19;;8629:401::o;9804:344::-;10006:2;9988:21;;;10045:2;10025:18;;;10018:30;-1:-1:-1;;;10079:2:1;10064:18;;10057:50;10139:2;10124:18;;9804:344::o;10153:398::-;10355:2;10337:21;;;10394:2;10374:18;;;10367:30;10433:34;10428:2;10413:18;;10406:62;-1:-1:-1;;;10499:2:1;10484:18;;10477:32;10541:3;10526:19;;10153:398::o;10556:356::-;10758:2;10740:21;;;10777:18;;;10770:30;10836:34;10831:2;10816:18;;10809:62;10903:2;10888:18;;10556:356::o;11451:275::-;11522:2;11516:9;11587:2;11568:13;;-1:-1:-1;;11564:27:1;11552:40;;11622:18;11607:34;;11643:22;;;11604:62;11601:88;;;11669:18;;:::i;:::-;11705:2;11698:22;11451:275;;-1:-1:-1;11451:275:1:o;11731:128::-;11771:3;11802:1;11798:6;11795:1;11792:13;11789:39;;;11808:18;;:::i;:::-;-1:-1:-1;11844:9:1;;11731:128::o;11864:120::-;11904:1;11930;11920:35;;11935:18;;:::i;:::-;-1:-1:-1;11969:9:1;;11864:120::o;11989:168::-;12029:7;12095:1;12091;12087:6;12083:14;12080:1;12077:21;12072:1;12065:9;12058:17;12054:45;12051:71;;;12102:18;;:::i;:::-;-1:-1:-1;12142:9:1;;11989:168::o;12162:125::-;12202:4;12230:1;12227;12224:8;12221:34;;;12235:18;;:::i;:::-;-1:-1:-1;12272:9:1;;12162:125::o;12292:258::-;12364:1;12374:113;12388:6;12385:1;12382:13;12374:113;;;12464:11;;;12458:18;12445:11;;;12438:39;12410:2;12403:10;12374:113;;;12505:6;12502:1;12499:13;12496:48;;;-1:-1:-1;;12540:1:1;12522:16;;12515:27;12292:258::o;12555:380::-;12634:1;12630:12;;;;12677;;;12698:61;;12752:4;12744:6;12740:17;12730:27;;12698:61;12805:2;12797:6;12794:14;12774:18;12771:38;12768:161;;;12851:10;12846:3;12842:20;12839:1;12832:31;12886:4;12883:1;12876:15;12914:4;12911:1;12904:15;12768:161;;12555:380;;;:::o;12940:135::-;12979:3;-1:-1:-1;;13000:17:1;;12997:43;;;13020:18;;:::i;:::-;-1:-1:-1;13067:1:1;13056:13;;12940:135::o;13080:112::-;13112:1;13138;13128:35;;13143:18;;:::i;:::-;-1:-1:-1;13177:9:1;;13080:112::o;13197:127::-;13258:10;13253:3;13249:20;13246:1;13239:31;13289:4;13286:1;13279:15;13313:4;13310:1;13303:15;13329:127;13390:10;13385:3;13381:20;13378:1;13371:31;13421:4;13418:1;13411:15;13445:4;13442:1;13435:15;13461:127;13522:10;13517:3;13513:20;13510:1;13503:31;13553:4;13550:1;13543:15;13577:4;13574:1;13567:15;13593:127;13654:10;13649:3;13645:20;13642:1;13635:31;13685:4;13682:1;13675:15;13709:4;13706:1;13699:15;13725:131;-1:-1:-1;;;;;;13799:32:1;;13789:43;;13779:71;;13846:1;13843;13836:12

Swarm Source

ipfs://d2e11d5b79ce1fb62fc0da352bf7e2a098174d55834efd6e44d9947d1cab939e
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.