ETH Price: $3,102.17 (+1.10%)
Gas: 12 Gwei

Token

GEEKFANCYCLUB (GFC)
 

Overview

Max Total Supply

5,536 GFC

Holders

1,152

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
oldqu.eth
Balance
1 GFC
0x9374555a5e6493e00865fbfd230dbd4874ebaec8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GEEKFANCYCLUB

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-11
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: contracts/GEEKFANCYCLUB.sol


// GEEK FANCY CLUB
//
//     ************   *********     **********    
//   **               **           **           
//   **               **           **           
//   **       *****   *********    **
//   **          **   **           ** 
//    **         **   **           **
//     ************   **            **********

pragma solidity >=0.8.9 <0.9.0;





contract GEEKFANCYCLUB is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  bytes32 public merkleRoot;
  mapping(address => uint256) public whitelistMintedBalance;
  mapping(address => bool) public freeMintClaimed;
  mapping(address => uint256) public publicMintedBalance;

  // check if publict was turned on
  bool public hasContractChanged = false;
  bool public finishedwhitelistEnabled =false;

  string public uriPrefix = '';//this is baseuri
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;
  
  uint256 public cost;
  uint256 public maxSupply;
  uint256 public maxReserve;
  uint256 public capWhitelist;
  uint256 public capPublic;

  bool public publicMintEnabled = false;
  bool public whitelistMintEnabled = false;
  bool public revealed = false;
  bool public freeMintEnabled = false;
 
  event IsContractChanged(bool _ischanged);

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    uint256 _cost,
    uint256 _maxSupply,
    uint256 _capWhitelist,
    uint256 _capPublic,
    uint256 _maxReserve,
    string memory _hiddenMetadataUri
  )
   ERC721A(_tokenName, _tokenSymbol) {
    cost = _cost;//*10^18=_ether
    maxSupply = _maxSupply;
    capWhitelist = _capWhitelist;
    capPublic = _capPublic;
    maxReserve = _maxReserve;
    setHiddenMetadataUri(_hiddenMetadataUri);
  }
/////////////////////////////
  modifier mintCompliance(uint256 _mintAmount) {
    require(totalSupply() + _mintAmount <= (maxSupply - maxReserve), 'Sold out');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'Insufficient funds');
    _;
  }
/// whitelistmint & publicmint //////////////////////////////////////////////////////////////////////////////////////////
  function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable 
    mintCompliance(_mintAmount) 
    mintPriceCompliance(_mintAmount) {
    require(whitelistMintEnabled, 'Not Ready');
    require(_mintAmount > 0 && whitelistMintedBalance[_msgSender()] + _mintAmount <= capWhitelist,'Amount Limit');
    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Not Whitelist');

  
    _safeMint(_msgSender(), _mintAmount);
    whitelistMintedBalance[_msgSender()] += _mintAmount;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(publicMintEnabled, 'Not Ready');
    require(_mintAmount > 0 && publicMintedBalance[_msgSender()] + _mintAmount <= capPublic,'Amount Limit');
   
    _safeMint(_msgSender(), _mintAmount);
    publicMintedBalance[_msgSender()] += _mintAmount;
  }
  
  
  
  ///For marketing etc////////////////////////////
  function ReserveforAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    require(_mintAmount <= maxReserve,
            'Max Reserve amount exceeded');
    _safeMint(_receiver, _mintAmount);
     maxReserve -= _mintAmount;
  }

 function freeMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable 
    mintCompliance(_mintAmount) 
    { 
    require(freeMintEnabled, 'Not Ready');
    require(!freeMintClaimed[_msgSender()], 'Address already claimed!');
    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Not freemint address');
    _safeMint(_msgSender(), 1);//One FreeMintAddress only can mint 1 nft
    freeMintClaimed[_msgSender()] = true;
  }
  
  
  //////////////////
  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned && ownership.addr != address(0)) {
        latestOwnerAddress = ownership.addr;
      }

      if (latestOwnerAddress == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }
//// only owner////////////////////////////////////////////////////////////////////////////////////

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function verifyMerkle(bytes32[] calldata _merkleProof) public view {
    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');
  }

  function setcapWhitelist(uint256 _capWhitelist) public onlyOwner {
    capWhitelist = _capWhitelist;
  }

  function setcapPubliclist(uint256 _capPublic) public onlyOwner {
    capPublic = _capPublic;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

 
  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }


  
  function setpublicMintEnabled(bool _state) public onlyOwner {
    if(publicMintEnabled == true && _state == false) {
      hasContractChanged = true;
    }
    publicMintEnabled = _state;
    emit IsContractChanged(true);
  }
  function setWhitelistMintEnabled(bool _state) public onlyOwner {
      if(whitelistMintEnabled == true && _state == false) {
      finishedwhitelistEnabled = true;
    }
    
    whitelistMintEnabled = _state;
    emit IsContractChanged(true);
  }
  
  function setfreeMintEnabled(bool _state) public onlyOwner {
    freeMintEnabled = _state;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_capWhitelist","type":"uint256"},{"internalType":"uint256","name":"_capPublic","type":"uint256"},{"internalType":"uint256","name":"_maxReserve","type":"uint256"},{"internalType":"string","name":"_hiddenMetadataUri","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"},{"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":false,"internalType":"bool","name":"_ischanged","type":"bool"}],"name":"IsContractChanged","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":"_receiver","type":"address"}],"name":"ReserveforAddress","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":"capPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"capWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finishedwhitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasContractChanged","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_capPublic","type":"uint256"}],"name":"setcapPubliclist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_capWhitelist","type":"uint256"}],"name":"setcapWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setfreeMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setpublicMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"verifyMerkle","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600e805461ffff1916905560a06040819052600060808190526200002691600f91620001d6565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005591601091620001d6565b506017805463ffffffff191690553480156200007057600080fd5b506040516200308b3803806200308b833981016040819052620000939162000349565b875188908890620000ac906002906020850190620001d6565b508051620000c2906003906020840190620001d6565b5050600160005550620000d5336200010c565b600160095560128690556013859055601584905560168390556014829055620000fe816200015e565b505050505050505062000448565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001bd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001d2906011906020840190620001d6565b5050565b828054620001e4906200040b565b90600052602060002090601f01602090048101928262000208576000855562000253565b82601f106200022357805160ff191683800117855562000253565b8280016001018555821562000253579182015b828111156200025357825182559160200191906001019062000236565b506200026192915062000265565b5090565b5b8082111562000261576000815560010162000266565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002a457600080fd5b81516001600160401b0380821115620002c157620002c16200027c565b604051601f8301601f19908116603f01168101908282118183101715620002ec57620002ec6200027c565b816040528381526020925086838588010111156200030957600080fd5b600091505b838210156200032d57858201830151818301840152908201906200030e565b838211156200033f5760008385830101525b9695505050505050565b600080600080600080600080610100898b0312156200036757600080fd5b88516001600160401b03808211156200037f57600080fd5b6200038d8c838d0162000292565b995060208b0151915080821115620003a457600080fd5b620003b28c838d0162000292565b985060408b0151975060608b0151965060808b0151955060a08b0151945060c08b0151935060e08b0151915080821115620003ec57600080fd5b50620003fb8b828c0162000292565b9150509295985092959890939650565b600181811c908216806200042057607f821691505b602082108114156200044257634e487b7160e01b600052602260045260246000fd5b50919050565b612c3380620004586000396000f3fe60806040526004361061031a5760003560e01c80636caede3d116101ab578063b767a098116100f7578063e0a8085311610095578063e985e9c51161006f578063e985e9c514610900578063eb824f6014610949578063f2fde38b14610969578063f3b3a9fa1461098957600080fd5b8063e0a808531461089d578063e0ec7c36146108bd578063e2f36dce146108ed57600080fd5b8063cb4e8326116100d1578063cb4e832614610848578063d2cab0561461085e578063d5abeb0114610871578063d5e13d651461088757600080fd5b8063b767a098146107e8578063b88d4fde14610808578063c87b56dd1461082857600080fd5b80638da5cb5b11610164578063a22cb4651161013e578063a22cb46514610766578063a45ba8e714610786578063b1735acd1461079b578063b592d044146107bb57600080fd5b80638da5cb5b1461072057806395d89b411461073e578063a0712d681461075357600080fd5b80636caede3d1461065f57806370a082311461067e578063715018a61461069e5780637cb64759146106b35780637ec4a659146106d3578063868d6183146106f357600080fd5b806330e7d34f1161026a5780634fdd43cb1161022357806362ad68aa116101fd57806362ad68aa146105ea57806362b99ad41461060b5780636352211e14610620578063687cf8081461064057600080fd5b80634fdd43cb1461059557806351830227146105b55780635503a0e8146105d557600080fd5b806330e7d34f146104d95780633ccfd60b146104f357806342842e0e14610508578063434a2bee14610528578063438b63001461054857806344a0d68a1461057557600080fd5b806313faede6116102d757806323b872dd116102b157806323b872dd1461046357806326745cb7146104835780632e170b51146104a35780632eb4a7ab146104c357600080fd5b806313faede61461040a57806316ba10e01461042e57806318160ddd1461044e57600080fd5b8063016ac5401461031f57806301ffc9a71461034157806306fdde0314610376578063081812fc14610398578063095ea7b3146103d05780630f4161aa146103f0575b600080fd5b34801561032b57600080fd5b5061033f61033a366004612504565b61099f565b005b34801561034d57600080fd5b5061036161035c366004612535565b610a40565b60405190151581526020015b60405180910390f35b34801561038257600080fd5b5061038b610a92565b60405161036d91906125aa565b3480156103a457600080fd5b506103b86103b33660046125bd565b610b24565b6040516001600160a01b03909116815260200161036d565b3480156103dc57600080fd5b5061033f6103eb3660046125ed565b610b68565b3480156103fc57600080fd5b506017546103619060ff1681565b34801561041657600080fd5b5061042060125481565b60405190815260200161036d565b34801561043a57600080fd5b5061033f6104493660046126a2565b610bf6565b34801561045a57600080fd5b50610420610c37565b34801561046f57600080fd5b5061033f61047e3660046126ea565b610c45565b34801561048f57600080fd5b5061033f61049e3660046125bd565b610c50565b3480156104af57600080fd5b5061033f6104be366004612504565b610c7f565b3480156104cf57600080fd5b50610420600a5481565b3480156104e557600080fd5b50600e546103619060ff1681565b3480156104ff57600080fd5b5061033f610cc7565b34801561051457600080fd5b5061033f6105233660046126ea565b610dc2565b34801561053457600080fd5b5061033f6105433660046125bd565b610ddd565b34801561055457600080fd5b50610568610563366004612726565b610e0c565b60405161036d9190612741565b34801561058157600080fd5b5061033f6105903660046125bd565b610f53565b3480156105a157600080fd5b5061033f6105b03660046126a2565b610f82565b3480156105c157600080fd5b506017546103619062010000900460ff1681565b3480156105e157600080fd5b5061038b610fbf565b3480156105f657600080fd5b50601754610361906301000000900460ff1681565b34801561061757600080fd5b5061038b61104d565b34801561062c57600080fd5b506103b861063b3660046125bd565b61105a565b34801561064c57600080fd5b50600e5461036190610100900460ff1681565b34801561066b57600080fd5b5060175461036190610100900460ff1681565b34801561068a57600080fd5b50610420610699366004612726565b61106c565b3480156106aa57600080fd5b5061033f6110ba565b3480156106bf57600080fd5b5061033f6106ce3660046125bd565b6110f0565b3480156106df57600080fd5b5061033f6106ee3660046126a2565b61111f565b3480156106ff57600080fd5b5061042061070e366004612726565b600b6020526000908152604090205481565b34801561072c57600080fd5b506008546001600160a01b03166103b8565b34801561074a57600080fd5b5061038b61115c565b61033f6107613660046125bd565b61116b565b34801561077257600080fd5b5061033f610781366004612785565b6112bc565b34801561079257600080fd5b5061038b611352565b3480156107a757600080fd5b5061033f6107b63660046127b8565b61135f565b3480156107c757600080fd5b506104206107d6366004612726565b600d6020526000908152604090205481565b3480156107f457600080fd5b5061033f610803366004612504565b611439565b34801561081457600080fd5b5061033f6108233660046127db565b6114d7565b34801561083457600080fd5b5061038b6108433660046125bd565b611528565b34801561085457600080fd5b5061042060165481565b61033f61086c3660046128a1565b611698565b34801561087d57600080fd5b5061042060135481565b34801561089357600080fd5b5061042060155481565b3480156108a957600080fd5b5061033f6108b8366004612504565b6118a2565b3480156108c957600080fd5b506103616108d8366004612726565b600c6020526000908152604090205460ff1681565b61033f6108fb3660046128a1565b6118e8565b34801561090c57600080fd5b5061036161091b3660046128ec565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561095557600080fd5b5061033f610964366004612916565b611a97565b34801561097557600080fd5b5061033f610984366004612726565b611b49565b34801561099557600080fd5b5061042060145481565b6008546001600160a01b031633146109d25760405162461bcd60e51b81526004016109c990612957565b60405180910390fd5b60175460ff16151560011480156109e7575080155b156109fa57600e805460ff191660011790555b6017805460ff1916821515179055604051600181527f1b28c1b7c3a4588ca855be23022d358d4a4c5c9a651030f9f8695d366d47275f906020015b60405180910390a150565b60006001600160e01b031982166380ac58cd60e01b1480610a7157506001600160e01b03198216635b5e139f60e01b145b80610a8c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610aa19061298c565b80601f0160208091040260200160405190810160405280929190818152602001828054610acd9061298c565b8015610b1a5780601f10610aef57610100808354040283529160200191610b1a565b820191906000526020600020905b815481529060010190602001808311610afd57829003601f168201915b5050505050905090565b6000610b2f82611be4565b610b4c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b738261105a565b9050806001600160a01b0316836001600160a01b03161415610ba85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610bc85750610bc6813361091b565b155b15610be6576040516367d9dca160e11b815260040160405180910390fd5b610bf1838383611c1d565b505050565b6008546001600160a01b03163314610c205760405162461bcd60e51b81526004016109c990612957565b8051610c33906010906020840190612456565b5050565b600154600054036000190190565b610bf1838383611c79565b6008546001600160a01b03163314610c7a5760405162461bcd60e51b81526004016109c990612957565b601655565b6008546001600160a01b03163314610ca95760405162461bcd60e51b81526004016109c990612957565b6017805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b03163314610cf15760405162461bcd60e51b81526004016109c990612957565b60026009541415610d445760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109c9565b60026009556000610d5d6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610da7576040519150601f19603f3d011682016040523d82523d6000602084013e610dac565b606091505b5050905080610dba57600080fd5b506001600955565b610bf1838383604051806020016040528060008152506114d7565b6008546001600160a01b03163314610e075760405162461bcd60e51b81526004016109c990612957565b601555565b60606000610e198361106c565b90506000816001600160401b03811115610e3557610e35612617565b604051908082528060200260200182016040528015610e5e578160200160208202803683370190505b50905060016000805b8482108015610e7857506013548311155b15610f4857600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282018390529091610ee5575080516001600160a01b031615155b15610eef57805191505b876001600160a01b0316826001600160a01b03161415610f355783858481518110610f1c57610f1c6129c7565b602090810291909101015282610f31816129f3565b9350505b83610f3f816129f3565b94505050610e67565b509195945050505050565b6008546001600160a01b03163314610f7d5760405162461bcd60e51b81526004016109c990612957565b601255565b6008546001600160a01b03163314610fac5760405162461bcd60e51b81526004016109c990612957565b8051610c33906011906020840190612456565b60108054610fcc9061298c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff89061298c565b80156110455780601f1061101a57610100808354040283529160200191611045565b820191906000526020600020905b81548152906001019060200180831161102857829003601f168201915b505050505081565b600f8054610fcc9061298c565b600061106582611e67565b5192915050565b60006001600160a01b038216611095576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146110e45760405162461bcd60e51b81526004016109c990612957565b6110ee6000611f8e565b565b6008546001600160a01b0316331461111a5760405162461bcd60e51b81526004016109c990612957565b600a55565b6008546001600160a01b031633146111495760405162461bcd60e51b81526004016109c990612957565b8051610c3390600f906020840190612456565b606060038054610aa19061298c565b8060145460135461117c9190612a0e565b81611185610c37565b61118f9190612a25565b11156111ad5760405162461bcd60e51b81526004016109c990612a3d565b81806012546111bc9190612a5f565b3410156112005760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016109c9565b60175460ff166112225760405162461bcd60e51b81526004016109c990612a7e565b60008311801561124e5750601654336000908152600d602052604090205461124b908590612a25565b11155b6112895760405162461bcd60e51b815260206004820152600c60248201526b105b5bdd5b9d08131a5b5a5d60a21b60448201526064016109c9565b6112933384611fe0565b336000908152600d6020526040812080548592906112b2908490612a25565b9091555050505050565b6001600160a01b0382163314156112e65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60118054610fcc9061298c565b816014546013546113709190612a0e565b81611379610c37565b6113839190612a25565b11156113a15760405162461bcd60e51b81526004016109c990612a3d565b6008546001600160a01b031633146113cb5760405162461bcd60e51b81526004016109c990612957565b60145483111561141d5760405162461bcd60e51b815260206004820152601b60248201527f4d6178205265736572766520616d6f756e74206578636565646564000000000060448201526064016109c9565b6114278284611fe0565b82601460008282546112b29190612a0e565b6008546001600160a01b031633146114635760405162461bcd60e51b81526004016109c990612957565b60175460ff610100909104161515600114801561147e575080155b1561149357600e805461ff0019166101001790555b6017805461ff00191661010083151502179055604051600181527f1b28c1b7c3a4588ca855be23022d358d4a4c5c9a651030f9f8695d366d47275f90602001610a35565b6114e2848484611c79565b6001600160a01b0383163b15158015611504575061150284848484611ffa565b155b15611522576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061153382611be4565b6115975760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109c9565b60175462010000900460ff1661163957601180546115b49061298c565b80601f01602080910402602001604051908101604052809291908181526020018280546115e09061298c565b801561162d5780601f106116025761010080835404028352916020019161162d565b820191906000526020600020905b81548152906001019060200180831161161057829003601f168201915b50505050509050919050565b60006116436120e3565b905060008151116116635760405180602001604052806000815250611691565b8061166d846120f2565b601060405160200161168193929190612aa1565b6040516020818303038152906040525b9392505050565b826014546013546116a99190612a0e565b816116b2610c37565b6116bc9190612a25565b11156116da5760405162461bcd60e51b81526004016109c990612a3d565b83806012546116e99190612a5f565b34101561172d5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016109c9565b601754610100900460ff166117545760405162461bcd60e51b81526004016109c990612a7e565b6000851180156117805750601554336000908152600b602052604090205461177d908790612a25565b11155b6117bb5760405162461bcd60e51b815260206004820152600c60248201526b105b5bdd5b9d08131a5b5a5d60a21b60448201526064016109c9565b6040516001600160601b03193360601b16602082015260009060340160405160208183030381529060405280519060200120905061183085858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506121ef565b61186c5760405162461bcd60e51b815260206004820152600d60248201526c139bdd0815da1a5d195b1a5cdd609a1b60448201526064016109c9565b6118763387611fe0565b336000908152600b602052604081208054889290611895908490612a25565b9091555050505050505050565b6008546001600160a01b031633146118cc5760405162461bcd60e51b81526004016109c990612957565b60178054911515620100000262ff000019909216919091179055565b826014546013546118f99190612a0e565b81611902610c37565b61190c9190612a25565b111561192a5760405162461bcd60e51b81526004016109c990612a3d565b6017546301000000900460ff166119535760405162461bcd60e51b81526004016109c990612a7e565b336000908152600c602052604090205460ff16156119b35760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d656421000000000000000060448201526064016109c9565b6040516001600160601b03193360601b166020820152600090603401604051602081830303815290604052805190602001209050611a2884848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506121ef565b611a6b5760405162461bcd60e51b81526020600482015260146024820152734e6f7420667265656d696e74206164647265737360601b60448201526064016109c9565b611a76336001611fe0565b5050336000908152600c60205260409020805460ff19166001179055505050565b6040516001600160601b03193360601b166020820152600090603401604051602081830303815290604052805190602001209050611b0c83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506121ef565b610bf15760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b60448201526064016109c9565b6008546001600160a01b03163314611b735760405162461bcd60e51b81526004016109c990612957565b6001600160a01b038116611bd85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c9565b611be181611f8e565b50565b600081600111158015611bf8575060005482105b8015610a8c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611c8482611e67565b9050836001600160a01b031681600001516001600160a01b031614611cbb5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611cd95750611cd9853361091b565b80611cf4575033611ce984610b24565b6001600160a01b0316145b905080611d1457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611d3b57604051633a954ecd60e21b815260040160405180910390fd5b611d4760008487611c1d565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611e1b576000548214611e1b57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611e97575060005481105b15611f7557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611f735780516001600160a01b031615611f0a579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611f6e579392505050565b611f0a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c33828260405180602001604052806000815250612205565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061202f903390899088908890600401612b65565b6020604051808303816000875af192505050801561206a575060408051601f3d908101601f1916820190925261206791810190612ba2565b60015b6120c5573d808015612098576040519150601f19603f3d011682016040523d82523d6000602084013e61209d565b606091505b5080516120bd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600f8054610aa19061298c565b6060816121165750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612140578061212a816129f3565b91506121399050600a83612bd5565b915061211a565b6000816001600160401b0381111561215a5761215a612617565b6040519080825280601f01601f191660200182016040528015612184576020820181803683370190505b5090505b84156120db57612199600183612a0e565b91506121a6600a86612be9565b6121b1906030612a25565b60f81b8183815181106121c6576121c66129c7565b60200101906001600160f81b031916908160001a9053506121e8600a86612bd5565b9450612188565b6000826121fc8584612212565b14949350505050565b610bf18383836001612286565b600081815b845181101561227e576000858281518110612234576122346129c7565b6020026020010151905080831161225a576000838152602082905260409020925061226b565b600081815260208490526040902092505b5080612276816129f3565b915050612217565b509392505050565b6000546001600160a01b0385166122af57604051622e076360e81b815260040160405180910390fd5b836122cd5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561237e57506001600160a01b0387163b15155b15612407575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123cf6000888480600101955088611ffa565b6123ec576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561238457826000541461240257600080fd5b61244d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612408575b50600055611e60565b8280546124629061298c565b90600052602060002090601f01602090048101928261248457600085556124ca565b82601f1061249d57805160ff19168380011785556124ca565b828001600101855582156124ca579182015b828111156124ca5782518255916020019190600101906124af565b506124d69291506124da565b5090565b5b808211156124d657600081556001016124db565b803580151581146124ff57600080fd5b919050565b60006020828403121561251657600080fd5b611691826124ef565b6001600160e01b031981168114611be157600080fd5b60006020828403121561254757600080fd5b81356116918161251f565b60005b8381101561256d578181015183820152602001612555565b838111156115225750506000910152565b60008151808452612596816020860160208601612552565b601f01601f19169290920160200192915050565b602081526000611691602083018461257e565b6000602082840312156125cf57600080fd5b5035919050565b80356001600160a01b03811681146124ff57600080fd5b6000806040838503121561260057600080fd5b612609836125d6565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561264757612647612617565b604051601f8501601f19908116603f0116810190828211818310171561266f5761266f612617565b8160405280935085815286868601111561268857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156126b457600080fd5b81356001600160401b038111156126ca57600080fd5b8201601f810184136126db57600080fd5b6120db8482356020840161262d565b6000806000606084860312156126ff57600080fd5b612708846125d6565b9250612716602085016125d6565b9150604084013590509250925092565b60006020828403121561273857600080fd5b611691826125d6565b6020808252825182820181905260009190848201906040850190845b818110156127795783518352928401929184019160010161275d565b50909695505050505050565b6000806040838503121561279857600080fd5b6127a1836125d6565b91506127af602084016124ef565b90509250929050565b600080604083850312156127cb57600080fd5b823591506127af602084016125d6565b600080600080608085870312156127f157600080fd5b6127fa856125d6565b9350612808602086016125d6565b92506040850135915060608501356001600160401b0381111561282a57600080fd5b8501601f8101871361283b57600080fd5b61284a8782356020840161262d565b91505092959194509250565b60008083601f84011261286857600080fd5b5081356001600160401b0381111561287f57600080fd5b6020830191508360208260051b850101111561289a57600080fd5b9250929050565b6000806000604084860312156128b657600080fd5b8335925060208401356001600160401b038111156128d357600080fd5b6128df86828701612856565b9497909650939450505050565b600080604083850312156128ff57600080fd5b612908836125d6565b91506127af602084016125d6565b6000806020838503121561292957600080fd5b82356001600160401b0381111561293f57600080fd5b61294b85828601612856565b90969095509350505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806129a057607f821691505b602082108114156129c157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612a0757612a076129dd565b5060010190565b600082821015612a2057612a206129dd565b500390565b60008219821115612a3857612a386129dd565b500190565b60208082526008908201526714dbdb19081bdd5d60c21b604082015260600190565b6000816000190483118215151615612a7957612a796129dd565b500290565b6020808252600990820152684e6f7420526561647960b81b604082015260600190565b600084516020612ab48285838a01612552565b855191840191612ac78184848a01612552565b8554920191600090600181811c9080831680612ae457607f831692505b858310811415612b0257634e487b7160e01b85526022600452602485fd5b808015612b165760018114612b2757612b54565b60ff19851688528388019550612b54565b60008b81526020902060005b85811015612b4c5781548a820152908401908801612b33565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b989083018461257e565b9695505050505050565b600060208284031215612bb457600080fd5b81516116918161251f565b634e487b7160e01b600052601260045260246000fd5b600082612be457612be4612bbf565b500490565b600082612bf857612bf8612bbf565b50069056fea26469706673582212208e7d9baa0221dd4f1bfcb2fbde24b62fff1fde2b5d06dad73b098b0f8499520064736f6c634300080c00330000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000470de4df82000000000000000000000000000000000000000000000000000000000000000022b800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000029a0000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000d4745454b46414e4359434c554200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000347464300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d55426656415664455475445a35767338585355395a537250523267653635454865594c6779714e4c4d3338642f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061031a5760003560e01c80636caede3d116101ab578063b767a098116100f7578063e0a8085311610095578063e985e9c51161006f578063e985e9c514610900578063eb824f6014610949578063f2fde38b14610969578063f3b3a9fa1461098957600080fd5b8063e0a808531461089d578063e0ec7c36146108bd578063e2f36dce146108ed57600080fd5b8063cb4e8326116100d1578063cb4e832614610848578063d2cab0561461085e578063d5abeb0114610871578063d5e13d651461088757600080fd5b8063b767a098146107e8578063b88d4fde14610808578063c87b56dd1461082857600080fd5b80638da5cb5b11610164578063a22cb4651161013e578063a22cb46514610766578063a45ba8e714610786578063b1735acd1461079b578063b592d044146107bb57600080fd5b80638da5cb5b1461072057806395d89b411461073e578063a0712d681461075357600080fd5b80636caede3d1461065f57806370a082311461067e578063715018a61461069e5780637cb64759146106b35780637ec4a659146106d3578063868d6183146106f357600080fd5b806330e7d34f1161026a5780634fdd43cb1161022357806362ad68aa116101fd57806362ad68aa146105ea57806362b99ad41461060b5780636352211e14610620578063687cf8081461064057600080fd5b80634fdd43cb1461059557806351830227146105b55780635503a0e8146105d557600080fd5b806330e7d34f146104d95780633ccfd60b146104f357806342842e0e14610508578063434a2bee14610528578063438b63001461054857806344a0d68a1461057557600080fd5b806313faede6116102d757806323b872dd116102b157806323b872dd1461046357806326745cb7146104835780632e170b51146104a35780632eb4a7ab146104c357600080fd5b806313faede61461040a57806316ba10e01461042e57806318160ddd1461044e57600080fd5b8063016ac5401461031f57806301ffc9a71461034157806306fdde0314610376578063081812fc14610398578063095ea7b3146103d05780630f4161aa146103f0575b600080fd5b34801561032b57600080fd5b5061033f61033a366004612504565b61099f565b005b34801561034d57600080fd5b5061036161035c366004612535565b610a40565b60405190151581526020015b60405180910390f35b34801561038257600080fd5b5061038b610a92565b60405161036d91906125aa565b3480156103a457600080fd5b506103b86103b33660046125bd565b610b24565b6040516001600160a01b03909116815260200161036d565b3480156103dc57600080fd5b5061033f6103eb3660046125ed565b610b68565b3480156103fc57600080fd5b506017546103619060ff1681565b34801561041657600080fd5b5061042060125481565b60405190815260200161036d565b34801561043a57600080fd5b5061033f6104493660046126a2565b610bf6565b34801561045a57600080fd5b50610420610c37565b34801561046f57600080fd5b5061033f61047e3660046126ea565b610c45565b34801561048f57600080fd5b5061033f61049e3660046125bd565b610c50565b3480156104af57600080fd5b5061033f6104be366004612504565b610c7f565b3480156104cf57600080fd5b50610420600a5481565b3480156104e557600080fd5b50600e546103619060ff1681565b3480156104ff57600080fd5b5061033f610cc7565b34801561051457600080fd5b5061033f6105233660046126ea565b610dc2565b34801561053457600080fd5b5061033f6105433660046125bd565b610ddd565b34801561055457600080fd5b50610568610563366004612726565b610e0c565b60405161036d9190612741565b34801561058157600080fd5b5061033f6105903660046125bd565b610f53565b3480156105a157600080fd5b5061033f6105b03660046126a2565b610f82565b3480156105c157600080fd5b506017546103619062010000900460ff1681565b3480156105e157600080fd5b5061038b610fbf565b3480156105f657600080fd5b50601754610361906301000000900460ff1681565b34801561061757600080fd5b5061038b61104d565b34801561062c57600080fd5b506103b861063b3660046125bd565b61105a565b34801561064c57600080fd5b50600e5461036190610100900460ff1681565b34801561066b57600080fd5b5060175461036190610100900460ff1681565b34801561068a57600080fd5b50610420610699366004612726565b61106c565b3480156106aa57600080fd5b5061033f6110ba565b3480156106bf57600080fd5b5061033f6106ce3660046125bd565b6110f0565b3480156106df57600080fd5b5061033f6106ee3660046126a2565b61111f565b3480156106ff57600080fd5b5061042061070e366004612726565b600b6020526000908152604090205481565b34801561072c57600080fd5b506008546001600160a01b03166103b8565b34801561074a57600080fd5b5061038b61115c565b61033f6107613660046125bd565b61116b565b34801561077257600080fd5b5061033f610781366004612785565b6112bc565b34801561079257600080fd5b5061038b611352565b3480156107a757600080fd5b5061033f6107b63660046127b8565b61135f565b3480156107c757600080fd5b506104206107d6366004612726565b600d6020526000908152604090205481565b3480156107f457600080fd5b5061033f610803366004612504565b611439565b34801561081457600080fd5b5061033f6108233660046127db565b6114d7565b34801561083457600080fd5b5061038b6108433660046125bd565b611528565b34801561085457600080fd5b5061042060165481565b61033f61086c3660046128a1565b611698565b34801561087d57600080fd5b5061042060135481565b34801561089357600080fd5b5061042060155481565b3480156108a957600080fd5b5061033f6108b8366004612504565b6118a2565b3480156108c957600080fd5b506103616108d8366004612726565b600c6020526000908152604090205460ff1681565b61033f6108fb3660046128a1565b6118e8565b34801561090c57600080fd5b5061036161091b3660046128ec565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561095557600080fd5b5061033f610964366004612916565b611a97565b34801561097557600080fd5b5061033f610984366004612726565b611b49565b34801561099557600080fd5b5061042060145481565b6008546001600160a01b031633146109d25760405162461bcd60e51b81526004016109c990612957565b60405180910390fd5b60175460ff16151560011480156109e7575080155b156109fa57600e805460ff191660011790555b6017805460ff1916821515179055604051600181527f1b28c1b7c3a4588ca855be23022d358d4a4c5c9a651030f9f8695d366d47275f906020015b60405180910390a150565b60006001600160e01b031982166380ac58cd60e01b1480610a7157506001600160e01b03198216635b5e139f60e01b145b80610a8c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610aa19061298c565b80601f0160208091040260200160405190810160405280929190818152602001828054610acd9061298c565b8015610b1a5780601f10610aef57610100808354040283529160200191610b1a565b820191906000526020600020905b815481529060010190602001808311610afd57829003601f168201915b5050505050905090565b6000610b2f82611be4565b610b4c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b738261105a565b9050806001600160a01b0316836001600160a01b03161415610ba85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610bc85750610bc6813361091b565b155b15610be6576040516367d9dca160e11b815260040160405180910390fd5b610bf1838383611c1d565b505050565b6008546001600160a01b03163314610c205760405162461bcd60e51b81526004016109c990612957565b8051610c33906010906020840190612456565b5050565b600154600054036000190190565b610bf1838383611c79565b6008546001600160a01b03163314610c7a5760405162461bcd60e51b81526004016109c990612957565b601655565b6008546001600160a01b03163314610ca95760405162461bcd60e51b81526004016109c990612957565b6017805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b03163314610cf15760405162461bcd60e51b81526004016109c990612957565b60026009541415610d445760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109c9565b60026009556000610d5d6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610da7576040519150601f19603f3d011682016040523d82523d6000602084013e610dac565b606091505b5050905080610dba57600080fd5b506001600955565b610bf1838383604051806020016040528060008152506114d7565b6008546001600160a01b03163314610e075760405162461bcd60e51b81526004016109c990612957565b601555565b60606000610e198361106c565b90506000816001600160401b03811115610e3557610e35612617565b604051908082528060200260200182016040528015610e5e578160200160208202803683370190505b50905060016000805b8482108015610e7857506013548311155b15610f4857600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282018390529091610ee5575080516001600160a01b031615155b15610eef57805191505b876001600160a01b0316826001600160a01b03161415610f355783858481518110610f1c57610f1c6129c7565b602090810291909101015282610f31816129f3565b9350505b83610f3f816129f3565b94505050610e67565b509195945050505050565b6008546001600160a01b03163314610f7d5760405162461bcd60e51b81526004016109c990612957565b601255565b6008546001600160a01b03163314610fac5760405162461bcd60e51b81526004016109c990612957565b8051610c33906011906020840190612456565b60108054610fcc9061298c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff89061298c565b80156110455780601f1061101a57610100808354040283529160200191611045565b820191906000526020600020905b81548152906001019060200180831161102857829003601f168201915b505050505081565b600f8054610fcc9061298c565b600061106582611e67565b5192915050565b60006001600160a01b038216611095576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146110e45760405162461bcd60e51b81526004016109c990612957565b6110ee6000611f8e565b565b6008546001600160a01b0316331461111a5760405162461bcd60e51b81526004016109c990612957565b600a55565b6008546001600160a01b031633146111495760405162461bcd60e51b81526004016109c990612957565b8051610c3390600f906020840190612456565b606060038054610aa19061298c565b8060145460135461117c9190612a0e565b81611185610c37565b61118f9190612a25565b11156111ad5760405162461bcd60e51b81526004016109c990612a3d565b81806012546111bc9190612a5f565b3410156112005760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016109c9565b60175460ff166112225760405162461bcd60e51b81526004016109c990612a7e565b60008311801561124e5750601654336000908152600d602052604090205461124b908590612a25565b11155b6112895760405162461bcd60e51b815260206004820152600c60248201526b105b5bdd5b9d08131a5b5a5d60a21b60448201526064016109c9565b6112933384611fe0565b336000908152600d6020526040812080548592906112b2908490612a25565b9091555050505050565b6001600160a01b0382163314156112e65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60118054610fcc9061298c565b816014546013546113709190612a0e565b81611379610c37565b6113839190612a25565b11156113a15760405162461bcd60e51b81526004016109c990612a3d565b6008546001600160a01b031633146113cb5760405162461bcd60e51b81526004016109c990612957565b60145483111561141d5760405162461bcd60e51b815260206004820152601b60248201527f4d6178205265736572766520616d6f756e74206578636565646564000000000060448201526064016109c9565b6114278284611fe0565b82601460008282546112b29190612a0e565b6008546001600160a01b031633146114635760405162461bcd60e51b81526004016109c990612957565b60175460ff610100909104161515600114801561147e575080155b1561149357600e805461ff0019166101001790555b6017805461ff00191661010083151502179055604051600181527f1b28c1b7c3a4588ca855be23022d358d4a4c5c9a651030f9f8695d366d47275f90602001610a35565b6114e2848484611c79565b6001600160a01b0383163b15158015611504575061150284848484611ffa565b155b15611522576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061153382611be4565b6115975760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109c9565b60175462010000900460ff1661163957601180546115b49061298c565b80601f01602080910402602001604051908101604052809291908181526020018280546115e09061298c565b801561162d5780601f106116025761010080835404028352916020019161162d565b820191906000526020600020905b81548152906001019060200180831161161057829003601f168201915b50505050509050919050565b60006116436120e3565b905060008151116116635760405180602001604052806000815250611691565b8061166d846120f2565b601060405160200161168193929190612aa1565b6040516020818303038152906040525b9392505050565b826014546013546116a99190612a0e565b816116b2610c37565b6116bc9190612a25565b11156116da5760405162461bcd60e51b81526004016109c990612a3d565b83806012546116e99190612a5f565b34101561172d5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b60448201526064016109c9565b601754610100900460ff166117545760405162461bcd60e51b81526004016109c990612a7e565b6000851180156117805750601554336000908152600b602052604090205461177d908790612a25565b11155b6117bb5760405162461bcd60e51b815260206004820152600c60248201526b105b5bdd5b9d08131a5b5a5d60a21b60448201526064016109c9565b6040516001600160601b03193360601b16602082015260009060340160405160208183030381529060405280519060200120905061183085858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506121ef565b61186c5760405162461bcd60e51b815260206004820152600d60248201526c139bdd0815da1a5d195b1a5cdd609a1b60448201526064016109c9565b6118763387611fe0565b336000908152600b602052604081208054889290611895908490612a25565b9091555050505050505050565b6008546001600160a01b031633146118cc5760405162461bcd60e51b81526004016109c990612957565b60178054911515620100000262ff000019909216919091179055565b826014546013546118f99190612a0e565b81611902610c37565b61190c9190612a25565b111561192a5760405162461bcd60e51b81526004016109c990612a3d565b6017546301000000900460ff166119535760405162461bcd60e51b81526004016109c990612a7e565b336000908152600c602052604090205460ff16156119b35760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d656421000000000000000060448201526064016109c9565b6040516001600160601b03193360601b166020820152600090603401604051602081830303815290604052805190602001209050611a2884848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506121ef565b611a6b5760405162461bcd60e51b81526020600482015260146024820152734e6f7420667265656d696e74206164647265737360601b60448201526064016109c9565b611a76336001611fe0565b5050336000908152600c60205260409020805460ff19166001179055505050565b6040516001600160601b03193360601b166020820152600090603401604051602081830303815290604052805190602001209050611b0c83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506121ef565b610bf15760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b60448201526064016109c9565b6008546001600160a01b03163314611b735760405162461bcd60e51b81526004016109c990612957565b6001600160a01b038116611bd85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c9565b611be181611f8e565b50565b600081600111158015611bf8575060005482105b8015610a8c575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611c8482611e67565b9050836001600160a01b031681600001516001600160a01b031614611cbb5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611cd95750611cd9853361091b565b80611cf4575033611ce984610b24565b6001600160a01b0316145b905080611d1457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611d3b57604051633a954ecd60e21b815260040160405180910390fd5b611d4760008487611c1d565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611e1b576000548214611e1b57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611e97575060005481105b15611f7557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611f735780516001600160a01b031615611f0a579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611f6e579392505050565b611f0a565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c33828260405180602001604052806000815250612205565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061202f903390899088908890600401612b65565b6020604051808303816000875af192505050801561206a575060408051601f3d908101601f1916820190925261206791810190612ba2565b60015b6120c5573d808015612098576040519150601f19603f3d011682016040523d82523d6000602084013e61209d565b606091505b5080516120bd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600f8054610aa19061298c565b6060816121165750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612140578061212a816129f3565b91506121399050600a83612bd5565b915061211a565b6000816001600160401b0381111561215a5761215a612617565b6040519080825280601f01601f191660200182016040528015612184576020820181803683370190505b5090505b84156120db57612199600183612a0e565b91506121a6600a86612be9565b6121b1906030612a25565b60f81b8183815181106121c6576121c66129c7565b60200101906001600160f81b031916908160001a9053506121e8600a86612bd5565b9450612188565b6000826121fc8584612212565b14949350505050565b610bf18383836001612286565b600081815b845181101561227e576000858281518110612234576122346129c7565b6020026020010151905080831161225a576000838152602082905260409020925061226b565b600081815260208490526040902092505b5080612276816129f3565b915050612217565b509392505050565b6000546001600160a01b0385166122af57604051622e076360e81b815260040160405180910390fd5b836122cd5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561237e57506001600160a01b0387163b15155b15612407575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123cf6000888480600101955088611ffa565b6123ec576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561238457826000541461240257600080fd5b61244d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612408575b50600055611e60565b8280546124629061298c565b90600052602060002090601f01602090048101928261248457600085556124ca565b82601f1061249d57805160ff19168380011785556124ca565b828001600101855582156124ca579182015b828111156124ca5782518255916020019190600101906124af565b506124d69291506124da565b5090565b5b808211156124d657600081556001016124db565b803580151581146124ff57600080fd5b919050565b60006020828403121561251657600080fd5b611691826124ef565b6001600160e01b031981168114611be157600080fd5b60006020828403121561254757600080fd5b81356116918161251f565b60005b8381101561256d578181015183820152602001612555565b838111156115225750506000910152565b60008151808452612596816020860160208601612552565b601f01601f19169290920160200192915050565b602081526000611691602083018461257e565b6000602082840312156125cf57600080fd5b5035919050565b80356001600160a01b03811681146124ff57600080fd5b6000806040838503121561260057600080fd5b612609836125d6565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561264757612647612617565b604051601f8501601f19908116603f0116810190828211818310171561266f5761266f612617565b8160405280935085815286868601111561268857600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156126b457600080fd5b81356001600160401b038111156126ca57600080fd5b8201601f810184136126db57600080fd5b6120db8482356020840161262d565b6000806000606084860312156126ff57600080fd5b612708846125d6565b9250612716602085016125d6565b9150604084013590509250925092565b60006020828403121561273857600080fd5b611691826125d6565b6020808252825182820181905260009190848201906040850190845b818110156127795783518352928401929184019160010161275d565b50909695505050505050565b6000806040838503121561279857600080fd5b6127a1836125d6565b91506127af602084016124ef565b90509250929050565b600080604083850312156127cb57600080fd5b823591506127af602084016125d6565b600080600080608085870312156127f157600080fd5b6127fa856125d6565b9350612808602086016125d6565b92506040850135915060608501356001600160401b0381111561282a57600080fd5b8501601f8101871361283b57600080fd5b61284a8782356020840161262d565b91505092959194509250565b60008083601f84011261286857600080fd5b5081356001600160401b0381111561287f57600080fd5b6020830191508360208260051b850101111561289a57600080fd5b9250929050565b6000806000604084860312156128b657600080fd5b8335925060208401356001600160401b038111156128d357600080fd5b6128df86828701612856565b9497909650939450505050565b600080604083850312156128ff57600080fd5b612908836125d6565b91506127af602084016125d6565b6000806020838503121561292957600080fd5b82356001600160401b0381111561293f57600080fd5b61294b85828601612856565b90969095509350505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806129a057607f821691505b602082108114156129c157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612a0757612a076129dd565b5060010190565b600082821015612a2057612a206129dd565b500390565b60008219821115612a3857612a386129dd565b500190565b60208082526008908201526714dbdb19081bdd5d60c21b604082015260600190565b6000816000190483118215151615612a7957612a796129dd565b500290565b6020808252600990820152684e6f7420526561647960b81b604082015260600190565b600084516020612ab48285838a01612552565b855191840191612ac78184848a01612552565b8554920191600090600181811c9080831680612ae457607f831692505b858310811415612b0257634e487b7160e01b85526022600452602485fd5b808015612b165760018114612b2757612b54565b60ff19851688528388019550612b54565b60008b81526020902060005b85811015612b4c5781548a820152908401908801612b33565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b989083018461257e565b9695505050505050565b600060208284031215612bb457600080fd5b81516116918161251f565b634e487b7160e01b600052601260045260246000fd5b600082612be457612be4612bbf565b500490565b600082612bf857612bf8612bbf565b50069056fea26469706673582212208e7d9baa0221dd4f1bfcb2fbde24b62fff1fde2b5d06dad73b098b0f8499520064736f6c634300080c0033

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

0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000470de4df82000000000000000000000000000000000000000000000000000000000000000022b800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000029a0000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000d4745454b46414e4359434c554200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000347464300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d55426656415664455475445a35767338585355395a537250523267653635454865594c6779714e4c4d3338642f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): GEEKFANCYCLUB
Arg [1] : _tokenSymbol (string): GFC
Arg [2] : _cost (uint256): 20000000000000000
Arg [3] : _maxSupply (uint256): 8888
Arg [4] : _capWhitelist (uint256): 4
Arg [5] : _capPublic (uint256): 5
Arg [6] : _maxReserve (uint256): 666
Arg [7] : _hiddenMetadataUri (string): ipfs://QmUBfVAVdETuDZ5vs8XSU9ZSrPR2ge65EHeYLgyqNLM38d/hidden.json

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 00000000000000000000000000000000000000000000000000470de4df820000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000022b8
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 000000000000000000000000000000000000000000000000000000000000029a
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [9] : 4745454b46414e4359434c554200000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [11] : 4746430000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [13] : 697066733a2f2f516d55426656415664455475445a35767338585355395a5372
Arg [14] : 50523267653635454865594c6779714e4c4d3338642f68696464656e2e6a736f
Arg [15] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50294:7124:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56557:231;;;;;;;;;;-1:-1:-1;56557:231:0;;;;;:::i;:::-;;:::i;:::-;;32120:305;;;;;;;;;;-1:-1:-1;32120:305:0;;;;;:::i;:::-;;:::i;:::-;;;915:14:1;;908:22;890:41;;878:2;863:18;32120:305:0;;;;;;;;35233:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36736:204::-;;;;;;;;;;-1:-1:-1;36736:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;36736:204:0;1878:203:1;36299:371:0;;;;;;;;;;-1:-1:-1;36299:371:0;;;;;:::i;:::-;;:::i;51002:37::-;;;;;;;;;;-1:-1:-1;51002:37:0;;;;;;;;50856:19;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;50856:19:0;2523:177:1;56445:100:0;;;;;;;;;;-1:-1:-1;56445:100:0;;;;;:::i;:::-;;:::i;31369:303::-;;;;;;;;;;;;;:::i;37601:170::-;;;;;;;;;;-1:-1:-1;37601:170:0;;;;;:::i;:::-;;:::i;56094:98::-;;;;;;;;;;-1:-1:-1;56094:98:0;;;;;:::i;:::-;;:::i;57054:95::-;;;;;;;;;;-1:-1:-1;57054:95:0;;;;;:::i;:::-;;:::i;50393:25::-;;;;;;;;;;;;;;;;50635:38;;;;;;;;;;-1:-1:-1;50635:38:0;;;;;;;;57155:150;;;;;;;;;;;;;:::i;37842:185::-;;;;;;;;;;-1:-1:-1;37842:185:0;;;;;:::i;:::-;;:::i;55982:106::-;;;;;;;;;;-1:-1:-1;55982:106:0;;;;;:::i;:::-;;:::i;54024:796::-;;;;;;;;;;-1:-1:-1;54024:796:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;55572:74::-;;;;;;;;;;-1:-1:-1;55572:74:0;;;;;:::i;:::-;;:::i;56198:132::-;;;;;;;;;;-1:-1:-1;56198:132:0;;;;;:::i;:::-;;:::i;51089:28::-;;;;;;;;;;-1:-1:-1;51089:28:0;;;;;;;;;;;50778:33;;;;;;;;;;;;;:::i;51122:35::-;;;;;;;;;;-1:-1:-1;51122:35:0;;;;;;;;;;;50728:28;;;;;;;;;;;;;:::i;35041:125::-;;;;;;;;;;-1:-1:-1;35041:125:0;;;;;:::i;:::-;;:::i;50678:43::-;;;;;;;;;;-1:-1:-1;50678:43:0;;;;;;;;;;;51044:40;;;;;;;;;;-1:-1:-1;51044:40:0;;;;;;;;;;;32489:206;;;;;;;;;;-1:-1:-1;32489:206:0;;;;;:::i;:::-;;:::i;9878:103::-;;;;;;;;;;;;;:::i;55652:98::-;;;;;;;;;;-1:-1:-1;55652:98:0;;;;;:::i;:::-;;:::i;56339:100::-;;;;;;;;;;-1:-1:-1;56339:100:0;;;;;:::i;:::-;;:::i;50423:57::-;;;;;;;;;;-1:-1:-1;50423:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;9227:87;;;;;;;;;;-1:-1:-1;9300:6:0;;-1:-1:-1;;;;;9300:6:0;9227:87;;35402:104;;;;;;;;;;;;;:::i;52743:376::-;;;;;;:::i;:::-;;:::i;37012:287::-;;;;;;;;;;-1:-1:-1;37012:287:0;;;;;:::i;:::-;;:::i;50816:31::-;;;;;;;;;;;;;:::i;53187:276::-;;;;;;;;;;-1:-1:-1;53187:276:0;;;;;:::i;:::-;;:::i;50537:54::-;;;;;;;;;;-1:-1:-1;50537:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;56792:254;;;;;;;;;;-1:-1:-1;56792:254:0;;;;;:::i;:::-;;:::i;38098:369::-;;;;;;;;;;-1:-1:-1;38098:369:0;;;;;:::i;:::-;;:::i;54933:445::-;;;;;;;;;;-1:-1:-1;54933:445:0;;;;;:::i;:::-;;:::i;50971:24::-;;;;;;;;;;;;;;;;52148:589;;;;;;:::i;:::-;;:::i;50880:24::-;;;;;;;;;;;;;;;;50939:27;;;;;;;;;;;;;;;;55485:81;;;;;;;;;;-1:-1:-1;55485:81:0;;;;;:::i;:::-;;:::i;50485:47::-;;;;;;;;;;-1:-1:-1;50485:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;53468:522;;;;;;:::i;:::-;;:::i;37370:164::-;;;;;;;;;;-1:-1:-1;37370:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37491:25:0;;;37467:4;37491:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37370:164;55756:220;;;;;;;;;;-1:-1:-1;55756:220:0;;;;;:::i;:::-;;:::i;10136:201::-;;;;;;;;;;-1:-1:-1;10136:201:0;;;;;:::i;:::-;;:::i;50909:25::-;;;;;;;;;;;;;;;;56557:231;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;;;;;;;;;56627:17:::1;::::0;::::1;;:25;;:17:::0;:25:::1;:44:::0;::::1;;;-1:-1:-1::0;56656:15:0;::::1;56627:44;56624:91;;;56682:18;:25:::0;;-1:-1:-1;;56682:25:0::1;56703:4;56682:25;::::0;;56624:91:::1;56721:17;:26:::0;;-1:-1:-1;;56721:26:0::1;::::0;::::1;;;::::0;;56759:23:::1;::::0;-1:-1:-1;890:41:1;;56759:23:0::1;::::0;878:2:1;863:18;56759:23:0::1;;;;;;;;56557:231:::0;:::o;32120:305::-;32222:4;-1:-1:-1;;;;;;32259:40:0;;-1:-1:-1;;;32259:40:0;;:105;;-1:-1:-1;;;;;;;32316:48:0;;-1:-1:-1;;;32316:48:0;32259:105;:158;;;-1:-1:-1;;;;;;;;;;22120:40:0;;;32381:36;32239:178;32120:305;-1:-1:-1;;32120:305:0:o;35233:100::-;35287:13;35320:5;35313:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35233:100;:::o;36736:204::-;36804:7;36829:16;36837:7;36829;:16::i;:::-;36824:64;;36854:34;;-1:-1:-1;;;36854:34:0;;;;;;;;;;;36824:64;-1:-1:-1;36908:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36908:24:0;;36736:204::o;36299:371::-;36372:13;36388:24;36404:7;36388:15;:24::i;:::-;36372:40;;36433:5;-1:-1:-1;;;;;36427:11:0;:2;-1:-1:-1;;;;;36427:11:0;;36423:48;;;36447:24;;-1:-1:-1;;;36447:24:0;;;;;;;;;;;36423:48;8031:10;-1:-1:-1;;;;;36488:21:0;;;;;;:63;;-1:-1:-1;36514:37:0;36531:5;8031:10;37370:164;:::i;36514:37::-;36513:38;36488:63;36484:138;;;36575:35;;-1:-1:-1;;;36575:35:0;;;;;;;;;;;36484:138;36634:28;36643:2;36647:7;36656:5;36634:8;:28::i;:::-;36361:309;36299:371;;:::o;56445:100::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;56517:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;56445:100:::0;:::o;31369:303::-;54918:1;31623:12;31413:7;31607:13;:28;-1:-1:-1;;31607:46:0;;31369:303::o;37601:170::-;37735:28;37745:4;37751:2;37755:7;37735:9;:28::i;56094:98::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;56164:9:::1;:22:::0;56094:98::o;57054:95::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;57119:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;57119:24:0;;::::1;::::0;;;::::1;::::0;;57054:95::o;57155:150::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;::::0;-1:-1:-1;;;2402:63:0;;9185:2:1;2402:63:0::1;::::0;::::1;9167:21:1::0;9224:2;9204:18;;;9197:30;9263:33;9243:18;;;9236:61;9314:18;;2402:63:0::1;8983:355:1::0;2402:63:0::1;1812:1;2543:7;:18:::0;57213:7:::2;57234;9300:6:::0;;-1:-1:-1;;;;;9300:6:0;;9227:87;57234:7:::2;-1:-1:-1::0;;;;;57226:21:0::2;57255;57226:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57212:69;;;57296:2;57288:11;;;::::0;::::2;;-1:-1:-1::0;1768:1:0::1;2722:7;:22:::0;57155:150::o;37842:185::-;37980:39;37997:4;38003:2;38007:7;37980:39;;;;;;;;;;;;:16;:39::i;55982:106::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;56054:12:::1;:28:::0;55982:106::o;54024:796::-;54084:16;54109:23;54135:17;54145:6;54135:9;:17::i;:::-;54109:43;;54159:30;54206:15;-1:-1:-1;;;;;54192:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54192:30:0;-1:-1:-1;54159:63:0;-1:-1:-1;54918:1:0;54229:22;;54345:441;54370:15;54352;:33;:64;;;;;54407:9;;54389:14;:27;;54352:64;54345:441;;;54427:31;54461:27;;;:11;:27;;;;;;;;;54427:61;;;;;;;;;-1:-1:-1;;;;;54427:61:0;;;;-1:-1:-1;;;54427:61:0;;-1:-1:-1;;;;;54427:61:0;;;;;;;;-1:-1:-1;;;54427:61:0;;;;;;;;;;;;;;;;54503:49;;-1:-1:-1;54524:14:0;;-1:-1:-1;;;;;54524:28:0;;;54503:49;54499:111;;;54586:14;;;-1:-1:-1;54499:111:0;54646:6;-1:-1:-1;;;;;54624:28:0;:18;-1:-1:-1;;;;;54624:28:0;;54620:132;;;54698:14;54665:13;54679:15;54665:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;54725:17;;;;:::i;:::-;;;;54620:132;54762:16;;;;:::i;:::-;;;;54418:368;54345:441;;;-1:-1:-1;54801:13:0;;54024:796;-1:-1:-1;;;;;54024:796:0:o;55572:74::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;55628:4:::1;:12:::0;55572:74::o;56198:132::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;56286:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;50778:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50728:28::-;;;;;;;:::i;35041:125::-;35105:7;35132:21;35145:7;35132:12;:21::i;:::-;:26;;35041:125;-1:-1:-1;;35041:125:0:o;32489:206::-;32553:7;-1:-1:-1;;;;;32577:19:0;;32573:60;;32605:28;;-1:-1:-1;;;32605:28:0;;;;;;;;;;;32573:60;-1:-1:-1;;;;;;32659:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;32659:27:0;;32489:206::o;9878:103::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;9943:30:::1;9970:1;9943:18;:30::i;:::-;9878:103::o:0;55652:98::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;55720:10:::1;:24:::0;55652:98::o;56339:100::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;56411:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;35402:104::-:0;35458:13;35491:7;35484:14;;;;;:::i;52743:376::-;52808:11;51844:10;;51832:9;;:22;;;;:::i;:::-;51816:11;51800:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:55;;51792:76;;;;-1:-1:-1;;;51792:76:0;;;;;;;:::i;:::-;52841:11:::1;51973;51966:4;;:18;;;;:::i;:::-;51953:9;:31;;51945:62;;;::::0;-1:-1:-1;;;51945:62:0;;10931:2:1;51945:62:0::1;::::0;::::1;10913:21:1::0;10970:2;10950:18;;;10943:30;-1:-1:-1;;;10989:18:1;;;10982:48;11047:18;;51945:62:0::1;10729:342:1::0;51945:62:0::1;52869:17:::2;::::0;::::2;;52861:39;;;;-1:-1:-1::0;;;52861:39:0::2;;;;;;;:::i;:::-;52929:1;52915:11;:15;:79;;;;-1:-1:-1::0;52985:9:0::2;::::0;8031:10;52934:33:::2;::::0;;;:19:::2;:33;::::0;;;;;:47:::2;::::0;52970:11;;52934:47:::2;:::i;:::-;:60;;52915:79;52907:103;;;::::0;-1:-1:-1;;;52907:103:0;;11615:2:1;52907:103:0::2;::::0;::::2;11597:21:1::0;11654:2;11634:18;;;11627:30;-1:-1:-1;;;11673:18:1;;;11666:42;11725:18;;52907:103:0::2;11413:336:1::0;52907:103:0::2;53022:36;8031:10:::0;53046:11:::2;53022:9;:36::i;:::-;8031:10:::0;53065:33:::2;::::0;;;:19:::2;:33;::::0;;;;:48;;53102:11;;53065:33;:48:::2;::::0;53102:11;;53065:48:::2;:::i;:::-;::::0;;;-1:-1:-1;;;;;52743:376:0:o;37012:287::-;-1:-1:-1;;;;;37111:24:0;;8031:10;37111:24;37107:54;;;37144:17;;-1:-1:-1;;;37144:17:0;;;;;;;;;;;37107:54;8031:10;37174:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37174:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37174:53:0;;;;;;;;;;37243:48;;890:41:1;;;37174:42:0;;8031:10;37243:48;;863:18:1;37243:48:0;;;;;;;37012:287;;:::o;50816:31::-;;;;;;;:::i;53187:276::-;53276:11;51844:10;;51832:9;;:22;;;;:::i;:::-;51816:11;51800:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:55;;51792:76;;;;-1:-1:-1;;;51792:76:0;;;;;;;:::i;:::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23:::1;9439:68;;;;-1:-1:-1::0;;;9439:68:0::1;;;;;;;:::i;:::-;53329:10:::2;;53314:11;:25;;53306:78;;;::::0;-1:-1:-1;;;53306:78:0;;11956:2:1;53306:78:0::2;::::0;::::2;11938:21:1::0;11995:2;11975:18;;;11968:30;12034:29;12014:18;;;12007:57;12081:18;;53306:78:0::2;11754:351:1::0;53306:78:0::2;53391:33;53401:9;53412:11;53391:9;:33::i;:::-;53446:11;53432:10;;:25;;;;;;;:::i;56792:254::-:0;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;56867:20:::1;::::0;::::1;;::::0;;::::1;;:28;;:20;:28;:47:::0;::::1;;;-1:-1:-1::0;56899:15:0;::::1;56867:47;56864:100;;;56925:24;:31:::0;;-1:-1:-1;;56925:31:0::1;;;::::0;;56864:100:::1;56976:20;:29:::0;;-1:-1:-1;;56976:29:0::1;;::::0;::::1;;;;::::0;;57017:23:::1;::::0;-1:-1:-1;890:41:1;;57017:23:0::1;::::0;878:2:1;863:18;57017:23:0::1;750:187:1::0;38098:369:0;38265:28;38275:4;38281:2;38285:7;38265:9;:28::i;:::-;-1:-1:-1;;;;;38308:13:0;;12223:19;:23;;38308:76;;;;;38328:56;38359:4;38365:2;38369:7;38378:5;38328:30;:56::i;:::-;38327:57;38308:76;38304:156;;;38408:40;;-1:-1:-1;;;38408:40:0;;;;;;;;;;;38304:156;38098:369;;;;:::o;54933:445::-;55007:13;55037:17;55045:8;55037:7;:17::i;:::-;55029:77;;;;-1:-1:-1;;;55029:77:0;;12312:2:1;55029:77:0;;;12294:21:1;12351:2;12331:18;;;12324:30;12390:34;12370:18;;;12363:62;-1:-1:-1;;;12441:18:1;;;12434:45;12496:19;;55029:77:0;12110:411:1;55029:77:0;55119:8;;;;;;;55115:64;;55154:17;55147:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54933:445;;;:::o;55115:64::-;55187:28;55218:10;:8;:10::i;:::-;55187:41;;55273:1;55248:14;55242:28;:32;:130;;;;;;;;;;;;;;;;;55310:14;55326:19;:8;:17;:19::i;:::-;55347:9;55293:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55242:130;55235:137;54933:445;-1:-1:-1;;;54933:445:0:o;52148:589::-;52261:11;51844:10;;51832:9;;:22;;;;:::i;:::-;51816:11;51800:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:55;;51792:76;;;;-1:-1:-1;;;51792:76:0;;;;;;;:::i;:::-;52300:11:::1;51973;51966:4;;:18;;;;:::i;:::-;51953:9;:31;;51945:62;;;::::0;-1:-1:-1;;;51945:62:0;;10931:2:1;51945:62:0::1;::::0;::::1;10913:21:1::0;10970:2;10950:18;;;10943:30;-1:-1:-1;;;10989:18:1;;;10982:48;11047:18;;51945:62:0::1;10729:342:1::0;51945:62:0::1;52328:20:::2;::::0;::::2;::::0;::::2;;;52320:42;;;;-1:-1:-1::0;;;52320:42:0::2;;;;;;;:::i;:::-;52391:1;52377:11;:15;:85;;;;-1:-1:-1::0;52450:12:0::2;::::0;8031:10;52396:36:::2;::::0;;;:22:::2;:36;::::0;;;;;:50:::2;::::0;52435:11;;52396:50:::2;:::i;:::-;:66;;52377:85;52369:109;;;::::0;-1:-1:-1;;;52369:109:0;;11615:2:1;52369:109:0::2;::::0;::::2;11597:21:1::0;11654:2;11634:18;;;11627:30;-1:-1:-1;;;11673:18:1;;;11666:42;11725:18;;52369:109:0::2;11413:336:1::0;52369:109:0::2;52510:30;::::0;-1:-1:-1;;;;;;8031:10:0;14333:2:1;14329:15;14325:53;52510:30:0::2;::::0;::::2;14313:66:1::0;52485:12:0::2;::::0;14395::1;;52510:30:0::2;;;;;;;;;;;;52500:41;;;;;;52485:56;;52556:50;52575:12;;52556:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;52589:10:0::2;::::0;;-1:-1:-1;52601:4:0;;-1:-1:-1;52556:18:0::2;:50::i;:::-;52548:76;;;::::0;-1:-1:-1;;;52548:76:0;;14620:2:1;52548:76:0::2;::::0;::::2;14602:21:1::0;14659:2;14639:18;;;14632:30;-1:-1:-1;;;14678:18:1;;;14671:43;14731:18;;52548:76:0::2;14418:337:1::0;52548:76:0::2;52637:36;8031:10:::0;52661:11:::2;52637:9;:36::i;:::-;8031:10:::0;52680:36:::2;::::0;;;:22:::2;:36;::::0;;;;:51;;52720:11;;52680:36;:51:::2;::::0;52720:11;;52680:51:::2;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;;52148:589:0:o;55485:81::-;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;55543:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;55543:17:0;;::::1;::::0;;;::::1;::::0;;55485:81::o;53468:522::-;53576:11;51844:10;;51832:9;;:22;;;;:::i;:::-;51816:11;51800:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:55;;51792:76;;;;-1:-1:-1;;;51792:76:0;;;;;;;:::i;:::-;53611:15:::1;::::0;;;::::1;;;53603:37;;;;-1:-1:-1::0;;;53603:37:0::1;;;;;;;:::i;:::-;8031:10:::0;53656:29:::1;::::0;;;:15:::1;:29;::::0;;;;;::::1;;53655:30;53647:67;;;::::0;-1:-1:-1;;;53647:67:0;;14962:2:1;53647:67:0::1;::::0;::::1;14944:21:1::0;15001:2;14981:18;;;14974:30;15040:26;15020:18;;;15013:54;15084:18;;53647:67:0::1;14760:348:1::0;53647:67:0::1;53746:30;::::0;-1:-1:-1;;;;;;8031:10:0;14333:2:1;14329:15;14325:53;53746:30:0::1;::::0;::::1;14313:66:1::0;53721:12:0::1;::::0;14395::1;;53746:30:0::1;;;;;;;;;;;;53736:41;;;;;;53721:56;;53792:50;53811:12;;53792:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;53825:10:0::1;::::0;;-1:-1:-1;53837:4:0;;-1:-1:-1;53792:18:0::1;:50::i;:::-;53784:83;;;::::0;-1:-1:-1;;;53784:83:0;;15315:2:1;53784:83:0::1;::::0;::::1;15297:21:1::0;15354:2;15334:18;;;15327:30;-1:-1:-1;;;15373:18:1;;;15366:50;15433:18;;53784:83:0::1;15113:344:1::0;53784:83:0::1;53874:26;8031:10:::0;53898:1:::1;53874:9;:26::i;:::-;-1:-1:-1::0;;8031:10:0;53948:29:::1;::::0;;;:15:::1;:29;::::0;;;;:36;;-1:-1:-1;;53948:36:0::1;53980:4;53948:36;::::0;;-1:-1:-1;;;53468:522:0:o;55756:220::-;55855:30;;-1:-1:-1;;;;;;8031:10:0;14333:2:1;14329:15;14325:53;55855:30:0;;;14313:66:1;55830:12:0;;14395::1;;55855:30:0;;;;;;;;;;;;55845:41;;;;;;55830:56;;55901:50;55920:12;;55901:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;55934:10:0;;;-1:-1:-1;55946:4:0;;-1:-1:-1;55901:18:0;:50::i;:::-;55893:77;;;;-1:-1:-1;;;55893:77:0;;15664:2:1;55893:77:0;;;15646:21:1;15703:2;15683:18;;;15676:30;-1:-1:-1;;;15722:18:1;;;15715:44;15776:18;;55893:77:0;15462:338:1;10136:201:0;9300:6;;-1:-1:-1;;;;;9300:6:0;8031:10;9447:23;9439:68;;;;-1:-1:-1;;;9439:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10225:22:0;::::1;10217:73;;;::::0;-1:-1:-1;;;10217:73:0;;16007:2:1;10217:73:0::1;::::0;::::1;15989:21:1::0;16046:2;16026:18;;;16019:30;16085:34;16065:18;;;16058:62;-1:-1:-1;;;16136:18:1;;;16129:36;16182:19;;10217:73:0::1;15805:402:1::0;10217:73:0::1;10301:28;10320:8;10301:18;:28::i;:::-;10136:201:::0;:::o;38722:174::-;38779:4;38822:7;54918:1;38803:26;;:53;;;;;38843:13;;38833:7;:23;38803:53;:85;;;;-1:-1:-1;;38861:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;38861:27:0;;;;38860:28;;38722:174::o;46879:196::-;46994:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;46994:29:0;-1:-1:-1;;;;;46994:29:0;;;;;;;;;47039:28;;46994:24;;47039:28;;;;;;;46879:196;;;:::o;41822:2130::-;41937:35;41975:21;41988:7;41975:12;:21::i;:::-;41937:59;;42035:4;-1:-1:-1;;;;;42013:26:0;:13;:18;;;-1:-1:-1;;;;;42013:26:0;;42009:67;;42048:28;;-1:-1:-1;;;42048:28:0;;;;;;;;;;;42009:67;42089:22;8031:10;-1:-1:-1;;;;;42115:20:0;;;;:73;;-1:-1:-1;42152:36:0;42169:4;8031:10;37370:164;:::i;42152:36::-;42115:126;;;-1:-1:-1;8031:10:0;42205:20;42217:7;42205:11;:20::i;:::-;-1:-1:-1;;;;;42205:36:0;;42115:126;42089:153;;42260:17;42255:66;;42286:35;;-1:-1:-1;;;42286:35:0;;;;;;;;;;;42255:66;-1:-1:-1;;;;;42336:16:0;;42332:52;;42361:23;;-1:-1:-1;;;42361:23:0;;;;;;;;;;;42332:52;42505:35;42522:1;42526:7;42535:4;42505:8;:35::i;:::-;-1:-1:-1;;;;;42836:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;42836:31:0;;;-1:-1:-1;;;;;42836:31:0;;;-1:-1:-1;;42836:31:0;;;;;;;42882:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42882:29:0;;;;;;;;;;;42962:20;;;:11;:20;;;;;;42997:18;;-1:-1:-1;;;;;;43030:49:0;;;;-1:-1:-1;;;43063:15:0;43030:49;;;;;;;;;;43353:11;;43413:24;;;;;43456:13;;42962:20;;43413:24;;43456:13;43452:384;;43666:13;;43651:11;:28;43647:174;;43704:20;;43773:28;;;;-1:-1:-1;;;;;43747:54:0;-1:-1:-1;;;43747:54:0;-1:-1:-1;;;;;;43747:54:0;;;-1:-1:-1;;;;;43704:20:0;;43747:54;;;;43647:174;42811:1036;;;43883:7;43879:2;-1:-1:-1;;;;;43864:27:0;43873:4;-1:-1:-1;;;;;43864:27:0;;;;;;;;;;;43902:42;41926:2026;;41822:2130;;;:::o;33870:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;33981:7:0;;54918:1;34030:23;;:47;;;;;34064:13;;34057:4;:20;34030:47;34026:886;;;34098:31;34132:17;;;:11;:17;;;;;;;;;34098:51;;;;;;;;;-1:-1:-1;;;;;34098:51:0;;;;-1:-1:-1;;;34098:51:0;;-1:-1:-1;;;;;34098:51:0;;;;;;;;-1:-1:-1;;;34098:51:0;;;;;;;;;;;;;;34168:729;;34218:14;;-1:-1:-1;;;;;34218:28:0;;34214:101;;34282:9;33870:1109;-1:-1:-1;;;33870:1109:0:o;34214:101::-;-1:-1:-1;;;34657:6:0;34702:17;;;;:11;:17;;;;;;;;;34690:29;;;;;;;;;-1:-1:-1;;;;;34690:29:0;;;;;-1:-1:-1;;;34690:29:0;;-1:-1:-1;;;;;34690:29:0;;;;;;;;-1:-1:-1;;;34690:29:0;;;;;;;;;;;;;34750:28;34746:109;;34818:9;33870:1109;-1:-1:-1;;;33870:1109:0:o;34746:109::-;34617:261;;;34079:833;34026:886;34940:31;;-1:-1:-1;;;34940:31:0;;;;;;;;;;;10497:191;10590:6;;;-1:-1:-1;;;;;10607:17:0;;;-1:-1:-1;;;;;;10607:17:0;;;;;;;10640:40;;10590:6;;;10607:17;10590:6;;10640:40;;10571:16;;10640:40;10560:128;10497:191;:::o;38904:104::-;38973:27;38983:2;38987:8;38973:27;;;;;;;;;;;;:9;:27::i;47567:667::-;47751:72;;-1:-1:-1;;;47751:72:0;;47730:4;;-1:-1:-1;;;;;47751:36:0;;;;;:72;;8031:10;;47802:4;;47808:7;;47817:5;;47751:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47751:72:0;;;;;;;;-1:-1:-1;;47751:72:0;;;;;;;;;;;;:::i;:::-;;;47747:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47985:13:0;;47981:235;;48031:40;;-1:-1:-1;;;48031:40:0;;;;;;;;;;;47981:235;48174:6;48168:13;48159:6;48155:2;48151:15;48144:38;47747:480;-1:-1:-1;;;;;;47870:55:0;-1:-1:-1;;;47870:55:0;;-1:-1:-1;47747:480:0;47567:667;;;;;;:::o;57311:104::-;57371:13;57400:9;57393:16;;;;;:::i;5513:723::-;5569:13;5790:10;5786:53;;-1:-1:-1;;5817:10:0;;;;;;;;;;;;-1:-1:-1;;;5817:10:0;;;;;5513:723::o;5786:53::-;5864:5;5849:12;5905:78;5912:9;;5905:78;;5938:8;;;;:::i;:::-;;-1:-1:-1;5961:10:0;;-1:-1:-1;5969:2:0;5961:10;;:::i;:::-;;;5905:78;;;5993:19;6025:6;-1:-1:-1;;;;;6015:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6015:17:0;;5993:39;;6043:154;6050:10;;6043:154;;6077:11;6087:1;6077:11;;:::i;:::-;;-1:-1:-1;6146:10:0;6154:2;6146:5;:10;:::i;:::-;6133:24;;:2;:24;:::i;:::-;6120:39;;6103:6;6110;6103:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6103:56:0;;;;;;;;-1:-1:-1;6174:11:0;6183:2;6174:11;;:::i;:::-;;;6043:154;;3682:190;3807:4;3860;3831:25;3844:5;3851:4;3831:12;:25::i;:::-;:33;;3682:190;-1:-1:-1;;;;3682:190:0:o;39371:163::-;39494:32;39500:2;39504:8;39514:5;39521:4;39494:5;:32::i;4234:675::-;4317:7;4360:4;4317:7;4375:497;4399:5;:12;4395:1;:16;4375:497;;;4433:20;4456:5;4462:1;4456:8;;;;;;;;:::i;:::-;;;;;;;4433:31;;4499:12;4483;:28;4479:382;;4985:13;5035:15;;;5071:4;5064:15;;;5118:4;5102:21;;4611:57;;4479:382;;;4985:13;5035:15;;;5071:4;5064:15;;;5118:4;5102:21;;4788:57;;4479:382;-1:-1:-1;4413:3:0;;;;:::i;:::-;;;;4375:497;;;-1:-1:-1;4889:12:0;4234:675;-1:-1:-1;;;4234:675:0:o;39793:1775::-;39932:20;39955:13;-1:-1:-1;;;;;39983:16:0;;39979:48;;40008:19;;-1:-1:-1;;;40008:19:0;;;;;;;;;;;39979:48;40042:13;40038:44;;40064:18;;-1:-1:-1;;;40064:18:0;;;;;;;;;;;40038:44;-1:-1:-1;;;;;40433:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;40492:49:0;;-1:-1:-1;;;;;40433:44:0;;;;;;;40492:49;;;;-1:-1:-1;;40433:44:0;;;;;;40492:49;;;;;;;;;;;;;;;;40558:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;40608:66:0;;;;-1:-1:-1;;;40658:15:0;40608:66;;;;;;;;;;40558:25;40755:23;;;40799:4;:23;;;;-1:-1:-1;;;;;;40807:13:0;;12223:19;:23;;40807:15;40795:641;;;40843:314;40874:38;;40899:12;;-1:-1:-1;;;;;40874:38:0;;;40891:1;;40874:38;;40891:1;;40874:38;40940:69;40979:1;40983:2;40987:14;;;;;;41003:5;40940:30;:69::i;:::-;40935:174;;41045:40;;-1:-1:-1;;;41045:40:0;;;;;;;;;;;40935:174;41152:3;41136:12;:19;;40843:314;;41238:12;41221:13;;:29;41217:43;;41252:8;;;41217:43;40795:641;;;41301:120;41332:40;;41357:14;;;;;-1:-1:-1;;;;;41332:40:0;;;41349:1;;41332:40;;41349:1;;41332:40;41416:3;41400:12;:19;;41301:120;;40795:641;-1:-1:-1;41450:13:0;:28;41500:60;38098:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:160:1;79:20;;135:13;;128:21;118:32;;108:60;;164:1;161;154:12;108:60;14:160;;;:::o;179:180::-;235:6;288:2;276:9;267:7;263:23;259:32;256:52;;;304:1;301;294:12;256:52;327:26;343:9;327:26;:::i;364:131::-;-1:-1:-1;;;;;;438:32:1;;428:43;;418:71;;485:1;482;475:12;500:245;558:6;611:2;599:9;590:7;586:23;582:32;579:52;;;627:1;624;617:12;579:52;666:9;653:23;685:30;709:5;685:30;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:127::-;2766:10;2761:3;2757:20;2754:1;2747:31;2797:4;2794:1;2787:15;2821:4;2818:1;2811:15;2837:632;2902:5;-1:-1:-1;;;;;2973:2:1;2965:6;2962:14;2959:40;;;2979:18;;:::i;:::-;3054:2;3048:9;3022:2;3108:15;;-1:-1:-1;;3104:24:1;;;3130:2;3100:33;3096:42;3084:55;;;3154:18;;;3174:22;;;3151:46;3148:72;;;3200:18;;:::i;:::-;3240:10;3236:2;3229:22;3269:6;3260:15;;3299:6;3291;3284:22;3339:3;3330:6;3325:3;3321:16;3318:25;3315:45;;;3356:1;3353;3346:12;3315:45;3406:6;3401:3;3394:4;3386:6;3382:17;3369:44;3461:1;3454:4;3445:6;3437;3433:19;3429:30;3422:41;;;;2837:632;;;;;:::o;3474:451::-;3543:6;3596:2;3584:9;3575:7;3571:23;3567:32;3564:52;;;3612:1;3609;3602:12;3564:52;3652:9;3639:23;-1:-1:-1;;;;;3677:6:1;3674:30;3671:50;;;3717:1;3714;3707:12;3671:50;3740:22;;3793:4;3785:13;;3781:27;-1:-1:-1;3771:55:1;;3822:1;3819;3812:12;3771:55;3845:74;3911:7;3906:2;3893:16;3888:2;3884;3880:11;3845:74;:::i;3930:328::-;4007:6;4015;4023;4076:2;4064:9;4055:7;4051:23;4047:32;4044:52;;;4092:1;4089;4082:12;4044:52;4115:29;4134:9;4115:29;:::i;:::-;4105:39;;4163:38;4197:2;4186:9;4182:18;4163:38;:::i;:::-;4153:48;;4248:2;4237:9;4233:18;4220:32;4210:42;;3930:328;;;;;:::o;4445:186::-;4504:6;4557:2;4545:9;4536:7;4532:23;4528:32;4525:52;;;4573:1;4570;4563:12;4525:52;4596:29;4615:9;4596:29;:::i;4636:632::-;4807:2;4859:21;;;4929:13;;4832:18;;;4951:22;;;4778:4;;4807:2;5030:15;;;;5004:2;4989:18;;;4778:4;5073:169;5087:6;5084:1;5081:13;5073:169;;;5148:13;;5136:26;;5217:15;;;;5182:12;;;;5109:1;5102:9;5073:169;;;-1:-1:-1;5259:3:1;;4636:632;-1:-1:-1;;;;;;4636:632:1:o;5458:254::-;5523:6;5531;5584:2;5572:9;5563:7;5559:23;5555:32;5552:52;;;5600:1;5597;5590:12;5552:52;5623:29;5642:9;5623:29;:::i;:::-;5613:39;;5671:35;5702:2;5691:9;5687:18;5671:35;:::i;:::-;5661:45;;5458:254;;;;;:::o;5717:::-;5785:6;5793;5846:2;5834:9;5825:7;5821:23;5817:32;5814:52;;;5862:1;5859;5852:12;5814:52;5898:9;5885:23;5875:33;;5927:38;5961:2;5950:9;5946:18;5927:38;:::i;5976:667::-;6071:6;6079;6087;6095;6148:3;6136:9;6127:7;6123:23;6119:33;6116:53;;;6165:1;6162;6155:12;6116:53;6188:29;6207:9;6188:29;:::i;:::-;6178:39;;6236:38;6270:2;6259:9;6255:18;6236:38;:::i;:::-;6226:48;;6321:2;6310:9;6306:18;6293:32;6283:42;;6376:2;6365:9;6361:18;6348:32;-1:-1:-1;;;;;6395:6:1;6392:30;6389:50;;;6435:1;6432;6425:12;6389:50;6458:22;;6511:4;6503:13;;6499:27;-1:-1:-1;6489:55:1;;6540:1;6537;6530:12;6489:55;6563:74;6629:7;6624:2;6611:16;6606:2;6602;6598:11;6563:74;:::i;:::-;6553:84;;;5976:667;;;;;;;:::o;6648:367::-;6711:8;6721:6;6775:3;6768:4;6760:6;6756:17;6752:27;6742:55;;6793:1;6790;6783:12;6742:55;-1:-1:-1;6816:20:1;;-1:-1:-1;;;;;6848:30:1;;6845:50;;;6891:1;6888;6881:12;6845:50;6928:4;6920:6;6916:17;6904:29;;6988:3;6981:4;6971:6;6968:1;6964:14;6956:6;6952:27;6948:38;6945:47;6942:67;;;7005:1;7002;6995:12;6942:67;6648:367;;;;;:::o;7020:505::-;7115:6;7123;7131;7184:2;7172:9;7163:7;7159:23;7155:32;7152:52;;;7200:1;7197;7190:12;7152:52;7236:9;7223:23;7213:33;;7297:2;7286:9;7282:18;7269:32;-1:-1:-1;;;;;7316:6:1;7313:30;7310:50;;;7356:1;7353;7346:12;7310:50;7395:70;7457:7;7448:6;7437:9;7433:22;7395:70;:::i;:::-;7020:505;;7484:8;;-1:-1:-1;7369:96:1;;-1:-1:-1;;;;7020:505:1:o;7530:260::-;7598:6;7606;7659:2;7647:9;7638:7;7634:23;7630:32;7627:52;;;7675:1;7672;7665:12;7627:52;7698:29;7717:9;7698:29;:::i;:::-;7688:39;;7746:38;7780:2;7769:9;7765:18;7746:38;:::i;7795:437::-;7881:6;7889;7942:2;7930:9;7921:7;7917:23;7913:32;7910:52;;;7958:1;7955;7948:12;7910:52;7998:9;7985:23;-1:-1:-1;;;;;8023:6:1;8020:30;8017:50;;;8063:1;8060;8053:12;8017:50;8102:70;8164:7;8155:6;8144:9;8140:22;8102:70;:::i;:::-;8191:8;;8076:96;;-1:-1:-1;7795:437:1;-1:-1:-1;;;;7795:437:1:o;8237:356::-;8439:2;8421:21;;;8458:18;;;8451:30;8517:34;8512:2;8497:18;;8490:62;8584:2;8569:18;;8237:356::o;8598:380::-;8677:1;8673:12;;;;8720;;;8741:61;;8795:4;8787:6;8783:17;8773:27;;8741:61;8848:2;8840:6;8837:14;8817:18;8814:38;8811:161;;;8894:10;8889:3;8885:20;8882:1;8875:31;8929:4;8926:1;8919:15;8957:4;8954:1;8947:15;8811:161;;8598:380;;;:::o;9553:127::-;9614:10;9609:3;9605:20;9602:1;9595:31;9645:4;9642:1;9635:15;9669:4;9666:1;9659:15;9685:127;9746:10;9741:3;9737:20;9734:1;9727:31;9777:4;9774:1;9767:15;9801:4;9798:1;9791:15;9817:135;9856:3;-1:-1:-1;;9877:17:1;;9874:43;;;9897:18;;:::i;:::-;-1:-1:-1;9944:1:1;9933:13;;9817:135::o;9957:125::-;9997:4;10025:1;10022;10019:8;10016:34;;;10030:18;;:::i;:::-;-1:-1:-1;10067:9:1;;9957:125::o;10087:128::-;10127:3;10158:1;10154:6;10151:1;10148:13;10145:39;;;10164:18;;:::i;:::-;-1:-1:-1;10200:9:1;;10087:128::o;10220:331::-;10422:2;10404:21;;;10461:1;10441:18;;;10434:29;-1:-1:-1;;;10494:2:1;10479:18;;10472:38;10542:2;10527:18;;10220:331::o;10556:168::-;10596:7;10662:1;10658;10654:6;10650:14;10647:1;10644:21;10639:1;10632:9;10625:17;10621:45;10618:71;;;10669:18;;:::i;:::-;-1:-1:-1;10709:9:1;;10556:168::o;11076:332::-;11278:2;11260:21;;;11317:1;11297:18;;;11290:29;-1:-1:-1;;;11350:2:1;11335:18;;11328:39;11399:2;11384:18;;11076:332::o;12652:1527::-;12876:3;12914:6;12908:13;12940:4;12953:51;12997:6;12992:3;12987:2;12979:6;12975:15;12953:51;:::i;:::-;13067:13;;13026:16;;;;13089:55;13067:13;13026:16;13111:15;;;13089:55;:::i;:::-;13233:13;;13166:20;;;13206:1;;13293;13315:18;;;;13368;;;;13395:93;;13473:4;13463:8;13459:19;13447:31;;13395:93;13536:2;13526:8;13523:16;13503:18;13500:40;13497:167;;;-1:-1:-1;;;13563:33:1;;13619:4;13616:1;13609:15;13649:4;13570:3;13637:17;13497:167;13680:18;13707:110;;;;13831:1;13826:328;;;;13673:481;;13707:110;-1:-1:-1;;13742:24:1;;13728:39;;13787:20;;;;-1:-1:-1;13707:110:1;;13826:328;12599:1;12592:14;;;12636:4;12623:18;;13921:1;13935:169;13949:8;13946:1;13943:15;13935:169;;;14031:14;;14016:13;;;14009:37;14074:16;;;;13966:10;;13935:169;;;13939:3;;14135:8;14128:5;14124:20;14117:27;;13673:481;-1:-1:-1;14170:3:1;;12652:1527;-1:-1:-1;;;;;;;;;;;12652:1527:1:o;16212:489::-;-1:-1:-1;;;;;16481:15:1;;;16463:34;;16533:15;;16528:2;16513:18;;16506:43;16580:2;16565:18;;16558:34;;;16628:3;16623:2;16608:18;;16601:31;;;16406:4;;16649:46;;16675:19;;16667:6;16649:46;:::i;:::-;16641:54;16212:489;-1:-1:-1;;;;;;16212:489:1:o;16706:249::-;16775:6;16828:2;16816:9;16807:7;16803:23;16799:32;16796:52;;;16844:1;16841;16834:12;16796:52;16876:9;16870:16;16895:30;16919:5;16895:30;:::i;16960:127::-;17021:10;17016:3;17012:20;17009:1;17002:31;17052:4;17049:1;17042:15;17076:4;17073:1;17066:15;17092:120;17132:1;17158;17148:35;;17163:18;;:::i;:::-;-1:-1:-1;17197:9:1;;17092:120::o;17217:112::-;17249:1;17275;17265:35;;17280:18;;:::i;:::-;-1:-1:-1;17314:9:1;;17217:112::o

Swarm Source

ipfs://8e7d9baa0221dd4f1bfcb2fbde24b62fff1fde2b5d06dad73b098b0f84995200
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.