ETH Price: $3,259.24 (-0.49%)
Gas: 2 Gwei

Crypto Chameleons Club (CCC)
 

Overview

TokenID

17

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
CryptoChameleonsClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-18
*/

// SPDX-License-Identifier: MIT
// File: contracts/CCC.sol

/*
 $$$$$$\   $$$$$$\   $$$$$$\  $$\           $$\       
$$  __$$\ $$  __$$\ $$  __$$\ $$ |          $$ |      
$$ /  \__|$$ /  \__|$$ /  \__|$$ |$$\   $$\ $$$$$$$\  
$$ |      $$ |      $$ |      $$ |$$ |  $$ |$$  __$$\ 
$$ |      $$ |      $$ |      $$ |$$ |  $$ |$$ |  $$ |
$$ |  $$\ $$ |  $$\ $$ |  $$\ $$ |$$ |  $$ |$$ |  $$ |
\$$$$$$  |\$$$$$$  |\$$$$$$  |$$ |\$$$$$$  |$$$$$$$  |
 \______/  \______/  \______/ \__| \______/ \_______/ 
 /*                                                     
                                                    

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

// File: @openzeppelin/contracts/utils/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 (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// 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: contracts/final.sol


pragma solidity ^0.8.0;

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

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

    // 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_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        assert(false);
        return tokenIdsIdx;
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).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);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * 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) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert UnableDetermineTokenOwner();
    }

    /**
     * @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 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 override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(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 tokenId < _currentIndex;
    }

    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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                updatedIndex++;
            }

            _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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @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 address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            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))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract CryptoChameleonsClub is ERC721A, Ownable{
    using Strings for uint256;

    uint public tokenPrice = 0.085 ether;
    uint constant maxSupply = 7000;
    uint public presale_price = 0.075 ether;

    bool public Presale_status = false;
    bool public public_sale_status = false;
    bytes32 public whitelistMerkleRoot;
    
    mapping(address => bool) private presaleList;
    string public baseURI;
    mapping(address => uint256) public totalPublicMint;
    mapping(address => uint256) public totalWhitelistMint;
    uint public maxPerTransaction = 2;  //Max Limit Per TX
    uint public maxPerWalletPresale = 2; //Max Limit for Presale
             
    constructor() ERC721A("Crypto Chameleons Club", "CCC"){}

    function buy(uint _count) public payable{
        require(public_sale_status == true, "Sale is Paused.");
        require(_count > 0, "mint at least one token");
        require(_count <= maxPerTransaction, "max per transaction 2");
        require(totalSupply() + _count <= maxSupply, "Not enough tokens left");
        require(msg.value >= tokenPrice * _count, "incorrect ether amount");

            totalPublicMint[msg.sender] += _count;
            _safeMint(msg.sender, _count);
   }

    function buy_presale(uint _count, bytes32[] calldata merkleProof) external payable{ 
        require(Presale_status == true, "Sale is Paused.");
        require(MerkleProof.verify(merkleProof,whitelistMerkleRoot,keccak256(abi.encodePacked(msg.sender))),"You are not in Presale List.");
        require(_count <= maxPerTransaction, "max per transaction 2");
        require(totalSupply() + _count<= maxSupply, "Not enough tokens left");
        require(msg.value >= presale_price, "incorrect ether amount");
        require((totalWhitelistMint[msg.sender] +_count) <= maxPerWalletPresale, "2 tokens per wallet allowed in pre sale");
      
            totalWhitelistMint[msg.sender] += _count;
            _safeMint(msg.sender, _count);
    }

    function adminMint(uint _count) public onlyOwner{
        require(_count > 0, "mint at least one token");
        require(totalSupply() + _count <= maxSupply, "Not enough tokens left");
        _safeMint(msg.sender, _count);
    }

    function sendGifts(address[] memory _wallets, uint _count) public onlyOwner{
        require(_wallets.length > 0, "mint at least one token");
        require(totalSupply() + _wallets.length <= maxSupply, "not enough tokens left");
        _safeMint(msg.sender, _count);
    }
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    //return uri for certain token
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : "";
    }

    /// @dev walletOf() function shouldn't be called on-chain due to gas consumption
    function walletOf() external view returns(uint256[] memory){
        address _owner = msg.sender;
        uint256 numberOfOwnedNFT = balanceOf(_owner);
        uint256[] memory ownerIds = new uint256[](numberOfOwnedNFT);

        for(uint256 index = 0; index < numberOfOwnedNFT; index++){
            ownerIds[index] = tokenOfOwnerByIndex(_owner, index);
        }

        return ownerIds;
    }
    function is_presale_active() public view returns(uint){
        require(Presale_status == true,"Pre Sale not Started Yet.");
        return 1;
     }
      function is_sale_active() public view returns(uint){
      require(public_sale_status == true,"Public Sale not Started Yet.");
        return 1;
     }
     function checkPresale() public view returns(bool){
        return presaleList[msg.sender];
    }
    function setBaseUri(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }
     function pre_Sale_status(bool temp) external onlyOwner {
        Presale_status = temp;
    }
    function publicSale_status(bool temp) external onlyOwner {
        public_sale_status = temp;
    }
     function update_public_price(uint price) external onlyOwner {
        tokenPrice = price;
    }
       function update_preSale_price(uint price) external onlyOwner {
        presale_price = price;
    }

    function setWhiteListMerkleRoot(bytes32 merkleRoot) public onlyOwner {
		whitelistMerkleRoot = merkleRoot;
	}

    function withdraw() external onlyOwner {
         uint _balance = address(this).balance;
        payable(owner()).transfer(_balance * 190 / 1000);        //Project Wallet
        payable(0x41A2c639e2b460E8072b1f6b3Be35096623dB9A0).transfer(_balance * 150 / 1000); //Project Wallet
        payable(0x5ca4250d3acfA85f84918aC810A47226550F093a).transfer(_balance * 17 / 1000); //Developer
        payable(0x5B588e36FF358D4376A76FB163fd69Da02A2A9a5).transfer(_balance * 3 / 1000);  //Freeflow
        payable(0x2BA7A7c13c09222Fd666533EF3eEdBBDC8Bbc43b).transfer(_balance * 100 / 1000); //Investor
        payable(0xc101868590277c7ADA765D6FE13250427847fe83).transfer(_balance * 16 / 1000); //Investor
        payable(0x8360129465712645788C75B0DB71191C8264ccFD).transfer(_balance * 173 / 1000); //Founder
        payable(0xD7E5FDE03b741B4eAb0b25eBE02D4Df68099cFF4).transfer(_balance * 173 / 1000); //Founder
        payable(0x31cDaf85dFb05048cA2e54E2a23D8cEaB4e6BE40).transfer(_balance * 173 / 1000); //Founder
        payable(0x5C85e29fad0DBb9E75dF1BA8822FA4fC7c19E2A1).transfer(_balance * 5 / 1000); //Manager
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Presale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"buy_presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"checkPresale","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":[{"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":"is_presale_active","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"is_sale_active","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"pre_Sale_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presale_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"temp","type":"bool"}],"name":"publicSale_status","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"public_sale_status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhiteListMerkleRoot","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalWhitelistMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"update_preSale_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"update_public_price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267012dfb0cb5e8800060085567010a741a46278000600955600a805461ffff19169055600260108190556011553480156200003e57600080fd5b50604080518082018252601681527f43727970746f204368616d656c656f6e7320436c75620000000000000000000060208083019182528351808501909452600384526243434360e81b9084015281519192916200009f916001916200012e565b508051620000b59060029060208401906200012e565b505050620000d2620000cc620000d860201b60201c565b620000dc565b62000211565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013c90620001d4565b90600052602060002090601f016020900481019282620001605760008555620001ab565b82601f106200017b57805160ff1916838001178555620001ab565b82800160010185558215620001ab579182015b82811115620001ab5782518255916020019190600101906200018e565b50620001b9929150620001bd565b5090565b5b80821115620001b95760008155600101620001be565b600181811c90821680620001e957607f821691505b602082108114156200020b57634e487b7160e01b600052602260045260246000fd5b50919050565b61299c80620002216000396000f3fe6080604052600436106102675760003560e01c80637ff9b59611610144578063ba6dd6f0116100b6578063e08e65ea1161007a578063e08e65ea146106f7578063e2a70eaf14610717578063e985e9c514610737578063ef5f198514610780578063f2fde38b146107a0578063f9625474146107c057600080fd5b8063ba6dd6f014610675578063c1f261231461068f578063c87b56dd146106af578063cd7de458146106cf578063d96a094a146106e457600080fd5b8063969745e811610108578063969745e8146105d4578063996953fc146105ea578063a0bcfc7f146105ff578063a22cb4651461061f578063aa98e0c61461063f578063b88d4fde1461065557600080fd5b80637ff9b5961461054a57806383a974a2146105605780638da5cb5b1461058257806395d89b41146105a057806395ea5e67146105b557600080fd5b806323b872dd116101dd5780634f6ccce7116101a15780634f6ccce7146104a05780636352211e146104c057806363adc5a5146104e05780636c0360eb1461050057806370a0823114610515578063715018a61461053557600080fd5b806323b872dd146104155780632f745c59146104355780633ccfd60b1461045557806342842e0e1461046a5780634b980d671461048a57600080fd5b8063095ea7b31161022f578063095ea7b31461035b578063146ceaa31461037d57806318160ddd1461039d5780631c16521c146103b25780631cef37e4146103df578063230a9b8d146103ff57600080fd5b806301ffc9a71461026c57806302689663146102a15780630345e3cb146102c657806306fdde0314610301578063081812fc14610323575b600080fd5b34801561027857600080fd5b5061028c610287366004612487565b6107d3565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b50336000908152600c602052604090205460ff1661028c565b3480156102d257600080fd5b506102f36102e136600461223a565b600f6020526000908152604090205481565b604051908152602001610298565b34801561030d57600080fd5b50610316610840565b604051610298919061270b565b34801561032f57600080fd5b5061034361033e36600461246e565b6108d2565b6040516001600160a01b039091168152602001610298565b34801561036757600080fd5b5061037b610376366004612370565b610918565b005b34801561038957600080fd5b5061037b61039836600461239a565b6109a6565b3480156103a957600080fd5b506000546102f3565b3480156103be57600080fd5b506102f36103cd36600461223a565b600e6020526000908152604090205481565b3480156103eb57600080fd5b5061037b6103fa366004612453565b610a67565b34801561040b57600080fd5b506102f360115481565b34801561042157600080fd5b5061037b61043036600461228f565b610aab565b34801561044157600080fd5b506102f3610450366004612370565b610ab6565b34801561046157600080fd5b5061037b610b8a565b34801561047657600080fd5b5061037b61048536600461228f565b610f34565b34801561049657600080fd5b506102f360105481565b3480156104ac57600080fd5b506102f36104bb36600461246e565b610f4f565b3480156104cc57600080fd5b506103436104db36600461246e565b610f76565b3480156104ec57600080fd5b5061037b6104fb36600461246e565b610f88565b34801561050c57600080fd5b50610316610fb7565b34801561052157600080fd5b506102f361053036600461223a565b611045565b34801561054157600080fd5b5061037b611093565b34801561055657600080fd5b506102f360085481565b34801561056c57600080fd5b506105756110c9565b60405161029891906126c7565b34801561058e57600080fd5b506007546001600160a01b0316610343565b3480156105ac57600080fd5b5061031661116b565b3480156105c157600080fd5b50600a5461028c90610100900460ff1681565b3480156105e057600080fd5b506102f360095481565b3480156105f657600080fd5b506102f361117a565b34801561060b57600080fd5b5061037b61061a3660046124c1565b6111da565b34801561062b57600080fd5b5061037b61063a366004612346565b611217565b34801561064b57600080fd5b506102f3600b5481565b34801561066157600080fd5b5061037b6106703660046122cb565b6112ad565b34801561068157600080fd5b50600a5461028c9060ff1681565b34801561069b57600080fd5b5061037b6106aa36600461246e565b6112e7565b3480156106bb57600080fd5b506103166106ca36600461246e565b611373565b3480156106db57600080fd5b506102f3611440565b61037b6106f236600461246e565b6114a0565b34801561070357600080fd5b5061037b61071236600461246e565b611613565b34801561072357600080fd5b5061037b61073236600461246e565b611642565b34801561074357600080fd5b5061028c61075236600461225c565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561078c57600080fd5b5061037b61079b366004612453565b611671565b3480156107ac57600080fd5b5061037b6107bb36600461223a565b6116ae565b61037b6107ce366004612509565b611746565b60006001600160e01b031982166380ac58cd60e01b148061080457506001600160e01b03198216635b5e139f60e01b145b8061081f57506001600160e01b0319821663780e9d6360e01b145b8061083a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461084f90612878565b80601f016020809104026020016040519081016040528092919081815260200182805461087b90612878565b80156108c85780601f1061089d576101008083540402835291602001916108c8565b820191906000526020600020905b8154815290600101906020018083116108ab57829003601f168201915b5050505050905090565b60006108df826000541190565b6108fc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061092382610f76565b9050806001600160a01b0316836001600160a01b031614156109585760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061097857506109768133610752565b155b15610996576040516367d9dca160e11b815260040160405180910390fd5b6109a18383836119c5565b505050565b6007546001600160a01b031633146109d95760405162461bcd60e51b81526004016109d09061274e565b60405180910390fd5b60008251116109fa5760405162461bcd60e51b81526004016109d090612783565b611b588251610a0860005490565b610a1291906127ea565b1115610a595760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016109d0565b610a633382611a21565b5050565b6007546001600160a01b03163314610a915760405162461bcd60e51b81526004016109d09061274e565b600a80549115156101000261ff0019909216919091179055565b6109a1838383611a3b565b6000610ac183611045565b8210610ae0576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610b78576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610b3a57805192505b876001600160a01b0316836001600160a01b03161415610b6f5786841415610b685750935061083a92505050565b6001909301925b50600101610ae8565b50610b816128e2565b50949350505050565b6007546001600160a01b03163314610bb45760405162461bcd60e51b81526004016109d09061274e565b47610bc76007546001600160a01b031690565b6001600160a01b03166108fc6103e8610be18460be612816565b610beb9190612802565b6040518115909202916000818181858888f19350505050158015610c13573d6000803e3d6000fd5b507341a2c639e2b460e8072b1f6b3be35096623db9a06108fc6103e8610c3a846096612816565b610c449190612802565b6040518115909202916000818181858888f19350505050158015610c6c573d6000803e3d6000fd5b50735ca4250d3acfa85f84918ac810a47226550f093a6108fc6103e8610c93846011612816565b610c9d9190612802565b6040518115909202916000818181858888f19350505050158015610cc5573d6000803e3d6000fd5b50735b588e36ff358d4376a76fb163fd69da02a2a9a56108fc6103e8610cec846003612816565b610cf69190612802565b6040518115909202916000818181858888f19350505050158015610d1e573d6000803e3d6000fd5b50732ba7a7c13c09222fd666533ef3eedbbdc8bbc43b6108fc6103e8610d45846064612816565b610d4f9190612802565b6040518115909202916000818181858888f19350505050158015610d77573d6000803e3d6000fd5b5073c101868590277c7ada765d6fe13250427847fe836108fc6103e8610d9e846010612816565b610da89190612802565b6040518115909202916000818181858888f19350505050158015610dd0573d6000803e3d6000fd5b50738360129465712645788c75b0db71191c8264ccfd6108fc6103e8610df78460ad612816565b610e019190612802565b6040518115909202916000818181858888f19350505050158015610e29573d6000803e3d6000fd5b5073d7e5fde03b741b4eab0b25ebe02d4df68099cff46108fc6103e8610e508460ad612816565b610e5a9190612802565b6040518115909202916000818181858888f19350505050158015610e82573d6000803e3d6000fd5b507331cdaf85dfb05048ca2e54e2a23d8ceab4e6be406108fc6103e8610ea98460ad612816565b610eb39190612802565b6040518115909202916000818181858888f19350505050158015610edb573d6000803e3d6000fd5b50735c85e29fad0dbb9e75df1ba8822fa4fc7c19e2a16108fc6103e8610f02846005612816565b610f0c9190612802565b6040518115909202916000818181858888f19350505050158015610a63573d6000803e3d6000fd5b6109a1838383604051806020016040528060008152506112ad565b600080548210610f72576040516329c8c00760e21b815260040160405180910390fd5b5090565b6000610f8182611c58565b5192915050565b6007546001600160a01b03163314610fb25760405162461bcd60e51b81526004016109d09061274e565b600955565b600d8054610fc490612878565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff090612878565b801561103d5780601f106110125761010080835404028352916020019161103d565b820191906000526020600020905b81548152906001019060200180831161102057829003601f168201915b505050505081565b60006001600160a01b03821661106e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146110bd5760405162461bcd60e51b81526004016109d09061274e565b6110c76000611cec565b565b60603360006110d782611045565b90506000816001600160401b038111156110f3576110f361293a565b60405190808252806020026020018201604052801561111c578160200160208202803683370190505b50905060005b82811015611163576111348482610ab6565b82828151811061114657611146612924565b60209081029190910101528061115b816128b3565b915050611122565b509392505050565b60606002805461084f90612878565b600a5460009060ff1615156001146111d45760405162461bcd60e51b815260206004820152601960248201527f5072652053616c65206e6f742053746172746564205965742e0000000000000060448201526064016109d0565b50600190565b6007546001600160a01b031633146112045760405162461bcd60e51b81526004016109d09061274e565b8051610a6390600d906020840190612127565b6001600160a01b0382163314156112415760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112b8848484611a3b565b6112c484848484611d3e565b6112e1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b031633146113115760405162461bcd60e51b81526004016109d09061274e565b600081116113315760405162461bcd60e51b81526004016109d090612783565b611b588161133e60005490565b61134891906127ea565b11156113665760405162461bcd60e51b81526004016109d09061271e565b6113703382611a21565b50565b6060611380826000541190565b6113e45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109d0565b6000600d80546113f390612878565b90501161140f576040518060200160405280600081525061083a565b600d61141a83611e4d565b60405160200161142b9291906125cf565b60405160208183030381529060405292915050565b600a5460009060ff6101009091041615156001146111d45760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632053616c65206e6f742053746172746564205965742e0000000060448201526064016109d0565b600a5460ff6101009091041615156001146114ef5760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b60448201526064016109d0565b6000811161150f5760405162461bcd60e51b81526004016109d090612783565b6010548111156115595760405162461bcd60e51b815260206004820152601560248201527436b0bc103832b9103a3930b739b0b1ba34b7b7101960591b60448201526064016109d0565b611b588161156660005490565b61157091906127ea565b111561158e5760405162461bcd60e51b81526004016109d09061271e565b8060085461159c9190612816565b3410156115e45760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b60448201526064016109d0565b336000908152600e6020526040812080548392906116039084906127ea565b9091555061137090503382611a21565b6007546001600160a01b0316331461163d5760405162461bcd60e51b81526004016109d09061274e565b600b55565b6007546001600160a01b0316331461166c5760405162461bcd60e51b81526004016109d09061274e565b600855565b6007546001600160a01b0316331461169b5760405162461bcd60e51b81526004016109d09061274e565b600a805460ff1916911515919091179055565b6007546001600160a01b031633146116d85760405162461bcd60e51b81526004016109d09061274e565b6001600160a01b03811661173d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d0565b61137081611cec565b600a5460ff16151560011461178f5760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b60448201526064016109d0565b61180482828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611f4a565b6118505760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f7420696e2050726573616c65204c6973742e0000000060448201526064016109d0565b60105483111561189a5760405162461bcd60e51b815260206004820152601560248201527436b0bc103832b9103a3930b739b0b1ba34b7b7101960591b60448201526064016109d0565b611b58836118a760005490565b6118b191906127ea565b11156118cf5760405162461bcd60e51b81526004016109d09061271e565b60095434101561191a5760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b60448201526064016109d0565b601154336000908152600f60205260409020546119389085906127ea565b11156119965760405162461bcd60e51b815260206004820152602760248201527f3220746f6b656e73207065722077616c6c657420616c6c6f77656420696e207060448201526672652073616c6560c81b60648201526084016109d0565b336000908152600f6020526040812080548592906119b59084906127ea565b909155506109a190503384611a21565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a63828260405180602001604052806000815250611f60565b6000611a4682611c58565b80519091506000906001600160a01b0316336001600160a01b03161480611a7d575033611a72846108d2565b6001600160a01b0316145b80611a8f57508151611a8f9033610752565b905080611aaf57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611ae45760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611b0b57604051633a954ecd60e21b815260040160405180910390fd5b611b1b60008484600001516119c5565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b426001600160401b031602179055908601808352912054909116611c0e57611bc2816000541190565b15611c0e57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611c77826000541190565b611c9457604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611ce2579392505050565b5060001901611c96565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611e4157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d8290339089908890889060040161268a565b602060405180830381600087803b158015611d9c57600080fd5b505af1925050508015611dcc575060408051601f3d908101601f19168201909252611dc9918101906124a4565b60015b611e27573d808015611dfa576040519150601f19603f3d011682016040523d82523d6000602084013e611dff565b606091505b508051611e1f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e45565b5060015b949350505050565b606081611e715750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e9b5780611e85816128b3565b9150611e949050600a83612802565b9150611e75565b6000816001600160401b03811115611eb557611eb561293a565b6040519080825280601f01601f191660200182016040528015611edf576020820181803683370190505b5090505b8415611e4557611ef4600183612835565b9150611f01600a866128ce565b611f0c9060306127ea565b60f81b818381518110611f2157611f21612924565b60200101906001600160f81b031916908160001a905350611f43600a86612802565b9450611ee3565b600082611f578584611f6d565b14949350505050565b6109a18383836001611fd9565b600081815b8451811015611163576000858281518110611f8f57611f8f612924565b60200260200101519050808311611fb55760008381526020829052604090209250611fc6565b600081815260208490526040902092505b5080611fd1816128b3565b915050611f72565b6000546001600160a01b03851661200257604051622e076360e81b815260040160405180910390fd5b836120205760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b8581101561211e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156120f457506120f26000888488611d3e565b155b15612112576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161209d565b50600055611c51565b82805461213390612878565b90600052602060002090601f016020900481019282612155576000855561219b565b82601f1061216e57805160ff191683800117855561219b565b8280016001018555821561219b579182015b8281111561219b578251825591602001919060010190612180565b50610f729291505b80821115610f7257600081556001016121a3565b60006001600160401b038311156121d0576121d061293a565b6121e3601f8401601f19166020016127ba565b90508281528383830111156121f757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461222557600080fd5b919050565b8035801515811461222557600080fd5b60006020828403121561224c57600080fd5b6122558261220e565b9392505050565b6000806040838503121561226f57600080fd5b6122788361220e565b91506122866020840161220e565b90509250929050565b6000806000606084860312156122a457600080fd5b6122ad8461220e565b92506122bb6020850161220e565b9150604084013590509250925092565b600080600080608085870312156122e157600080fd5b6122ea8561220e565b93506122f86020860161220e565b92506040850135915060608501356001600160401b0381111561231a57600080fd5b8501601f8101871361232b57600080fd5b61233a878235602084016121b7565b91505092959194509250565b6000806040838503121561235957600080fd5b6123628361220e565b91506122866020840161222a565b6000806040838503121561238357600080fd5b61238c8361220e565b946020939093013593505050565b600080604083850312156123ad57600080fd5b82356001600160401b03808211156123c457600080fd5b818501915085601f8301126123d857600080fd5b81356020828211156123ec576123ec61293a565b8160051b92506123fd8184016127ba565b8281528181019085830185870184018b101561241857600080fd5b600096505b848710156124425761242e8161220e565b83526001969096019591830191830161241d565b509997909101359750505050505050565b60006020828403121561246557600080fd5b6122558261222a565b60006020828403121561248057600080fd5b5035919050565b60006020828403121561249957600080fd5b813561225581612950565b6000602082840312156124b657600080fd5b815161225581612950565b6000602082840312156124d357600080fd5b81356001600160401b038111156124e957600080fd5b8201601f810184136124fa57600080fd5b611e45848235602084016121b7565b60008060006040848603121561251e57600080fd5b8335925060208401356001600160401b038082111561253c57600080fd5b818601915086601f83011261255057600080fd5b81358181111561255f57600080fd5b8760208260051b850101111561257457600080fd5b6020830194508093505050509250925092565b6000815180845261259f81602086016020860161284c565b601f01601f19169290920160200192915050565b600081516125c581856020860161284c565b9290920192915050565b600080845481600182811c9150808316806125eb57607f831692505b602080841082141561260b57634e487b7160e01b86526022600452602486fd5b81801561261f57600181146126305761265d565b60ff1986168952848901965061265d565b60008b81526020902060005b868110156126555781548b82015290850190830161263c565b505084890196505b50505050505061268161267082866125b3565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126bd90830184612587565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126ff578351835292840192918401916001016126e3565b50909695505050505050565b6020815260006122556020830184612587565b602080825260169082015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156127e2576127e261293a565b604052919050565b600082198211156127fd576127fd6128f8565b500190565b6000826128115761281161290e565b500490565b6000816000190483118215151615612830576128306128f8565b500290565b600082821015612847576128476128f8565b500390565b60005b8381101561286757818101518382015260200161284f565b838111156112e15750506000910152565b600181811c9082168061288c57607f821691505b602082108114156128ad57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128c7576128c76128f8565b5060010190565b6000826128dd576128dd61290e565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461137057600080fdfea2646970667358221220f71f0dc51e3e2bff6ca6c8b3cd22c1b20d8d81cf8fda1ab2c86807d4fe63bfdd64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102675760003560e01c80637ff9b59611610144578063ba6dd6f0116100b6578063e08e65ea1161007a578063e08e65ea146106f7578063e2a70eaf14610717578063e985e9c514610737578063ef5f198514610780578063f2fde38b146107a0578063f9625474146107c057600080fd5b8063ba6dd6f014610675578063c1f261231461068f578063c87b56dd146106af578063cd7de458146106cf578063d96a094a146106e457600080fd5b8063969745e811610108578063969745e8146105d4578063996953fc146105ea578063a0bcfc7f146105ff578063a22cb4651461061f578063aa98e0c61461063f578063b88d4fde1461065557600080fd5b80637ff9b5961461054a57806383a974a2146105605780638da5cb5b1461058257806395d89b41146105a057806395ea5e67146105b557600080fd5b806323b872dd116101dd5780634f6ccce7116101a15780634f6ccce7146104a05780636352211e146104c057806363adc5a5146104e05780636c0360eb1461050057806370a0823114610515578063715018a61461053557600080fd5b806323b872dd146104155780632f745c59146104355780633ccfd60b1461045557806342842e0e1461046a5780634b980d671461048a57600080fd5b8063095ea7b31161022f578063095ea7b31461035b578063146ceaa31461037d57806318160ddd1461039d5780631c16521c146103b25780631cef37e4146103df578063230a9b8d146103ff57600080fd5b806301ffc9a71461026c57806302689663146102a15780630345e3cb146102c657806306fdde0314610301578063081812fc14610323575b600080fd5b34801561027857600080fd5b5061028c610287366004612487565b6107d3565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b50336000908152600c602052604090205460ff1661028c565b3480156102d257600080fd5b506102f36102e136600461223a565b600f6020526000908152604090205481565b604051908152602001610298565b34801561030d57600080fd5b50610316610840565b604051610298919061270b565b34801561032f57600080fd5b5061034361033e36600461246e565b6108d2565b6040516001600160a01b039091168152602001610298565b34801561036757600080fd5b5061037b610376366004612370565b610918565b005b34801561038957600080fd5b5061037b61039836600461239a565b6109a6565b3480156103a957600080fd5b506000546102f3565b3480156103be57600080fd5b506102f36103cd36600461223a565b600e6020526000908152604090205481565b3480156103eb57600080fd5b5061037b6103fa366004612453565b610a67565b34801561040b57600080fd5b506102f360115481565b34801561042157600080fd5b5061037b61043036600461228f565b610aab565b34801561044157600080fd5b506102f3610450366004612370565b610ab6565b34801561046157600080fd5b5061037b610b8a565b34801561047657600080fd5b5061037b61048536600461228f565b610f34565b34801561049657600080fd5b506102f360105481565b3480156104ac57600080fd5b506102f36104bb36600461246e565b610f4f565b3480156104cc57600080fd5b506103436104db36600461246e565b610f76565b3480156104ec57600080fd5b5061037b6104fb36600461246e565b610f88565b34801561050c57600080fd5b50610316610fb7565b34801561052157600080fd5b506102f361053036600461223a565b611045565b34801561054157600080fd5b5061037b611093565b34801561055657600080fd5b506102f360085481565b34801561056c57600080fd5b506105756110c9565b60405161029891906126c7565b34801561058e57600080fd5b506007546001600160a01b0316610343565b3480156105ac57600080fd5b5061031661116b565b3480156105c157600080fd5b50600a5461028c90610100900460ff1681565b3480156105e057600080fd5b506102f360095481565b3480156105f657600080fd5b506102f361117a565b34801561060b57600080fd5b5061037b61061a3660046124c1565b6111da565b34801561062b57600080fd5b5061037b61063a366004612346565b611217565b34801561064b57600080fd5b506102f3600b5481565b34801561066157600080fd5b5061037b6106703660046122cb565b6112ad565b34801561068157600080fd5b50600a5461028c9060ff1681565b34801561069b57600080fd5b5061037b6106aa36600461246e565b6112e7565b3480156106bb57600080fd5b506103166106ca36600461246e565b611373565b3480156106db57600080fd5b506102f3611440565b61037b6106f236600461246e565b6114a0565b34801561070357600080fd5b5061037b61071236600461246e565b611613565b34801561072357600080fd5b5061037b61073236600461246e565b611642565b34801561074357600080fd5b5061028c61075236600461225c565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561078c57600080fd5b5061037b61079b366004612453565b611671565b3480156107ac57600080fd5b5061037b6107bb36600461223a565b6116ae565b61037b6107ce366004612509565b611746565b60006001600160e01b031982166380ac58cd60e01b148061080457506001600160e01b03198216635b5e139f60e01b145b8061081f57506001600160e01b0319821663780e9d6360e01b145b8061083a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461084f90612878565b80601f016020809104026020016040519081016040528092919081815260200182805461087b90612878565b80156108c85780601f1061089d576101008083540402835291602001916108c8565b820191906000526020600020905b8154815290600101906020018083116108ab57829003601f168201915b5050505050905090565b60006108df826000541190565b6108fc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061092382610f76565b9050806001600160a01b0316836001600160a01b031614156109585760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061097857506109768133610752565b155b15610996576040516367d9dca160e11b815260040160405180910390fd5b6109a18383836119c5565b505050565b6007546001600160a01b031633146109d95760405162461bcd60e51b81526004016109d09061274e565b60405180910390fd5b60008251116109fa5760405162461bcd60e51b81526004016109d090612783565b611b588251610a0860005490565b610a1291906127ea565b1115610a595760405162461bcd60e51b81526020600482015260166024820152751b9bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016109d0565b610a633382611a21565b5050565b6007546001600160a01b03163314610a915760405162461bcd60e51b81526004016109d09061274e565b600a80549115156101000261ff0019909216919091179055565b6109a1838383611a3b565b6000610ac183611045565b8210610ae0576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610b78576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610b3a57805192505b876001600160a01b0316836001600160a01b03161415610b6f5786841415610b685750935061083a92505050565b6001909301925b50600101610ae8565b50610b816128e2565b50949350505050565b6007546001600160a01b03163314610bb45760405162461bcd60e51b81526004016109d09061274e565b47610bc76007546001600160a01b031690565b6001600160a01b03166108fc6103e8610be18460be612816565b610beb9190612802565b6040518115909202916000818181858888f19350505050158015610c13573d6000803e3d6000fd5b507341a2c639e2b460e8072b1f6b3be35096623db9a06108fc6103e8610c3a846096612816565b610c449190612802565b6040518115909202916000818181858888f19350505050158015610c6c573d6000803e3d6000fd5b50735ca4250d3acfa85f84918ac810a47226550f093a6108fc6103e8610c93846011612816565b610c9d9190612802565b6040518115909202916000818181858888f19350505050158015610cc5573d6000803e3d6000fd5b50735b588e36ff358d4376a76fb163fd69da02a2a9a56108fc6103e8610cec846003612816565b610cf69190612802565b6040518115909202916000818181858888f19350505050158015610d1e573d6000803e3d6000fd5b50732ba7a7c13c09222fd666533ef3eedbbdc8bbc43b6108fc6103e8610d45846064612816565b610d4f9190612802565b6040518115909202916000818181858888f19350505050158015610d77573d6000803e3d6000fd5b5073c101868590277c7ada765d6fe13250427847fe836108fc6103e8610d9e846010612816565b610da89190612802565b6040518115909202916000818181858888f19350505050158015610dd0573d6000803e3d6000fd5b50738360129465712645788c75b0db71191c8264ccfd6108fc6103e8610df78460ad612816565b610e019190612802565b6040518115909202916000818181858888f19350505050158015610e29573d6000803e3d6000fd5b5073d7e5fde03b741b4eab0b25ebe02d4df68099cff46108fc6103e8610e508460ad612816565b610e5a9190612802565b6040518115909202916000818181858888f19350505050158015610e82573d6000803e3d6000fd5b507331cdaf85dfb05048ca2e54e2a23d8ceab4e6be406108fc6103e8610ea98460ad612816565b610eb39190612802565b6040518115909202916000818181858888f19350505050158015610edb573d6000803e3d6000fd5b50735c85e29fad0dbb9e75df1ba8822fa4fc7c19e2a16108fc6103e8610f02846005612816565b610f0c9190612802565b6040518115909202916000818181858888f19350505050158015610a63573d6000803e3d6000fd5b6109a1838383604051806020016040528060008152506112ad565b600080548210610f72576040516329c8c00760e21b815260040160405180910390fd5b5090565b6000610f8182611c58565b5192915050565b6007546001600160a01b03163314610fb25760405162461bcd60e51b81526004016109d09061274e565b600955565b600d8054610fc490612878565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff090612878565b801561103d5780601f106110125761010080835404028352916020019161103d565b820191906000526020600020905b81548152906001019060200180831161102057829003601f168201915b505050505081565b60006001600160a01b03821661106e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146110bd5760405162461bcd60e51b81526004016109d09061274e565b6110c76000611cec565b565b60603360006110d782611045565b90506000816001600160401b038111156110f3576110f361293a565b60405190808252806020026020018201604052801561111c578160200160208202803683370190505b50905060005b82811015611163576111348482610ab6565b82828151811061114657611146612924565b60209081029190910101528061115b816128b3565b915050611122565b509392505050565b60606002805461084f90612878565b600a5460009060ff1615156001146111d45760405162461bcd60e51b815260206004820152601960248201527f5072652053616c65206e6f742053746172746564205965742e0000000000000060448201526064016109d0565b50600190565b6007546001600160a01b031633146112045760405162461bcd60e51b81526004016109d09061274e565b8051610a6390600d906020840190612127565b6001600160a01b0382163314156112415760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112b8848484611a3b565b6112c484848484611d3e565b6112e1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6007546001600160a01b031633146113115760405162461bcd60e51b81526004016109d09061274e565b600081116113315760405162461bcd60e51b81526004016109d090612783565b611b588161133e60005490565b61134891906127ea565b11156113665760405162461bcd60e51b81526004016109d09061271e565b6113703382611a21565b50565b6060611380826000541190565b6113e45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109d0565b6000600d80546113f390612878565b90501161140f576040518060200160405280600081525061083a565b600d61141a83611e4d565b60405160200161142b9291906125cf565b60405160208183030381529060405292915050565b600a5460009060ff6101009091041615156001146111d45760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632053616c65206e6f742053746172746564205965742e0000000060448201526064016109d0565b600a5460ff6101009091041615156001146114ef5760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b60448201526064016109d0565b6000811161150f5760405162461bcd60e51b81526004016109d090612783565b6010548111156115595760405162461bcd60e51b815260206004820152601560248201527436b0bc103832b9103a3930b739b0b1ba34b7b7101960591b60448201526064016109d0565b611b588161156660005490565b61157091906127ea565b111561158e5760405162461bcd60e51b81526004016109d09061271e565b8060085461159c9190612816565b3410156115e45760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b60448201526064016109d0565b336000908152600e6020526040812080548392906116039084906127ea565b9091555061137090503382611a21565b6007546001600160a01b0316331461163d5760405162461bcd60e51b81526004016109d09061274e565b600b55565b6007546001600160a01b0316331461166c5760405162461bcd60e51b81526004016109d09061274e565b600855565b6007546001600160a01b0316331461169b5760405162461bcd60e51b81526004016109d09061274e565b600a805460ff1916911515919091179055565b6007546001600160a01b031633146116d85760405162461bcd60e51b81526004016109d09061274e565b6001600160a01b03811661173d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d0565b61137081611cec565b600a5460ff16151560011461178f5760405162461bcd60e51b815260206004820152600f60248201526e29b0b6329034b9902830bab9b2b21760891b60448201526064016109d0565b61180482828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611f4a565b6118505760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f7420696e2050726573616c65204c6973742e0000000060448201526064016109d0565b60105483111561189a5760405162461bcd60e51b815260206004820152601560248201527436b0bc103832b9103a3930b739b0b1ba34b7b7101960591b60448201526064016109d0565b611b58836118a760005490565b6118b191906127ea565b11156118cf5760405162461bcd60e51b81526004016109d09061271e565b60095434101561191a5760405162461bcd60e51b81526020600482015260166024820152751a5b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b60448201526064016109d0565b601154336000908152600f60205260409020546119389085906127ea565b11156119965760405162461bcd60e51b815260206004820152602760248201527f3220746f6b656e73207065722077616c6c657420616c6c6f77656420696e207060448201526672652073616c6560c81b60648201526084016109d0565b336000908152600f6020526040812080548592906119b59084906127ea565b909155506109a190503384611a21565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a63828260405180602001604052806000815250611f60565b6000611a4682611c58565b80519091506000906001600160a01b0316336001600160a01b03161480611a7d575033611a72846108d2565b6001600160a01b0316145b80611a8f57508151611a8f9033610752565b905080611aaf57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611ae45760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611b0b57604051633a954ecd60e21b815260040160405180910390fd5b611b1b60008484600001516119c5565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b426001600160401b031602179055908601808352912054909116611c0e57611bc2816000541190565b15611c0e57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611c77826000541190565b611c9457604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611ce2579392505050565b5060001901611c96565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611e4157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d8290339089908890889060040161268a565b602060405180830381600087803b158015611d9c57600080fd5b505af1925050508015611dcc575060408051601f3d908101601f19168201909252611dc9918101906124a4565b60015b611e27573d808015611dfa576040519150601f19603f3d011682016040523d82523d6000602084013e611dff565b606091505b508051611e1f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e45565b5060015b949350505050565b606081611e715750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e9b5780611e85816128b3565b9150611e949050600a83612802565b9150611e75565b6000816001600160401b03811115611eb557611eb561293a565b6040519080825280601f01601f191660200182016040528015611edf576020820181803683370190505b5090505b8415611e4557611ef4600183612835565b9150611f01600a866128ce565b611f0c9060306127ea565b60f81b818381518110611f2157611f21612924565b60200101906001600160f81b031916908160001a905350611f43600a86612802565b9450611ee3565b600082611f578584611f6d565b14949350505050565b6109a18383836001611fd9565b600081815b8451811015611163576000858281518110611f8f57611f8f612924565b60200260200101519050808311611fb55760008381526020829052604090209250611fc6565b600081815260208490526040902092505b5080611fd1816128b3565b915050611f72565b6000546001600160a01b03851661200257604051622e076360e81b815260040160405180910390fd5b836120205760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b8581101561211e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156120f457506120f26000888488611d3e565b155b15612112576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161209d565b50600055611c51565b82805461213390612878565b90600052602060002090601f016020900481019282612155576000855561219b565b82601f1061216e57805160ff191683800117855561219b565b8280016001018555821561219b579182015b8281111561219b578251825591602001919060010190612180565b50610f729291505b80821115610f7257600081556001016121a3565b60006001600160401b038311156121d0576121d061293a565b6121e3601f8401601f19166020016127ba565b90508281528383830111156121f757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461222557600080fd5b919050565b8035801515811461222557600080fd5b60006020828403121561224c57600080fd5b6122558261220e565b9392505050565b6000806040838503121561226f57600080fd5b6122788361220e565b91506122866020840161220e565b90509250929050565b6000806000606084860312156122a457600080fd5b6122ad8461220e565b92506122bb6020850161220e565b9150604084013590509250925092565b600080600080608085870312156122e157600080fd5b6122ea8561220e565b93506122f86020860161220e565b92506040850135915060608501356001600160401b0381111561231a57600080fd5b8501601f8101871361232b57600080fd5b61233a878235602084016121b7565b91505092959194509250565b6000806040838503121561235957600080fd5b6123628361220e565b91506122866020840161222a565b6000806040838503121561238357600080fd5b61238c8361220e565b946020939093013593505050565b600080604083850312156123ad57600080fd5b82356001600160401b03808211156123c457600080fd5b818501915085601f8301126123d857600080fd5b81356020828211156123ec576123ec61293a565b8160051b92506123fd8184016127ba565b8281528181019085830185870184018b101561241857600080fd5b600096505b848710156124425761242e8161220e565b83526001969096019591830191830161241d565b509997909101359750505050505050565b60006020828403121561246557600080fd5b6122558261222a565b60006020828403121561248057600080fd5b5035919050565b60006020828403121561249957600080fd5b813561225581612950565b6000602082840312156124b657600080fd5b815161225581612950565b6000602082840312156124d357600080fd5b81356001600160401b038111156124e957600080fd5b8201601f810184136124fa57600080fd5b611e45848235602084016121b7565b60008060006040848603121561251e57600080fd5b8335925060208401356001600160401b038082111561253c57600080fd5b818601915086601f83011261255057600080fd5b81358181111561255f57600080fd5b8760208260051b850101111561257457600080fd5b6020830194508093505050509250925092565b6000815180845261259f81602086016020860161284c565b601f01601f19169290920160200192915050565b600081516125c581856020860161284c565b9290920192915050565b600080845481600182811c9150808316806125eb57607f831692505b602080841082141561260b57634e487b7160e01b86526022600452602486fd5b81801561261f57600181146126305761265d565b60ff1986168952848901965061265d565b60008b81526020902060005b868110156126555781548b82015290850190830161263c565b505084890196505b50505050505061268161267082866125b3565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126bd90830184612587565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126ff578351835292840192918401916001016126e3565b50909695505050505050565b6020815260006122556020830184612587565b602080825260169082015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f6d696e74206174206c65617374206f6e6520746f6b656e000000000000000000604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156127e2576127e261293a565b604052919050565b600082198211156127fd576127fd6128f8565b500190565b6000826128115761281161290e565b500490565b6000816000190483118215151615612830576128306128f8565b500290565b600082821015612847576128476128f8565b500390565b60005b8381101561286757818101518382015260200161284f565b838111156112e15750506000910152565b600181811c9082168061288c57607f821691505b602082108114156128ad57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128c7576128c76128f8565b5060010190565b6000826128dd576128dd61290e565b500690565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461137057600080fdfea2646970667358221220f71f0dc51e3e2bff6ca6c8b3cd22c1b20d8d81cf8fda1ab2c86807d4fe63bfdd64736f6c63430008070033

Deployed Bytecode Sourcemap

44005:5692:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31282:372;;;;;;;;;;-1:-1:-1;31282:372:0;;;;;:::i;:::-;;:::i;:::-;;;9599:14:1;;9592:22;9574:41;;9562:2;9547:18;31282:372:0;;;;;;;;47826:98;;;;;;;;;;-1:-1:-1;47905:10:0;47870:4;47893:23;;;:11;:23;;;;;;;;47826:98;;44492:53;;;;;;;;;;-1:-1:-1;44492:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;9772:25:1;;;9760:2;9745:18;44492:53:0;9626:177:1;33098:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34575:204::-;;;;;;;;;;-1:-1:-1;34575:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8260:32:1;;;8242:51;;8230:2;8215:18;34575:204:0;8096:203:1;34164:345:0;;;;;;;;;;-1:-1:-1;34164:345:0;;;;;:::i;:::-;;:::i;:::-;;46264:279;;;;;;;;;;-1:-1:-1;46264:279:0;;;;;:::i;:::-;;:::i;29520:101::-;;;;;;;;;;-1:-1:-1;29573:7:0;29600:13;29520:101;;44435:50;;;;;;;;;;-1:-1:-1;44435:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;48130:101;;;;;;;;;;-1:-1:-1;48130:101:0;;;;;:::i;:::-;;:::i;44612:35::-;;;;;;;;;;;;;;;;35432:170;;;;;;;;;;-1:-1:-1;35432:170:0;;;;;:::i;:::-;;:::i;30174:1036::-;;;;;;;;;;-1:-1:-1;30174:1036:0;;;;;:::i;:::-;;:::i;48572:1122::-;;;;;;;;;;;;;:::i;35673:185::-;;;;;;;;;;-1:-1:-1;35673:185:0;;;;;:::i;:::-;;:::i;44552:33::-;;;;;;;;;;;;;;;;29698:176;;;;;;;;;;-1:-1:-1;29698:176:0;;;;;:::i;:::-;;:::i;32907:124::-;;;;;;;;;;-1:-1:-1;32907:124:0;;;;;:::i;:::-;;:::i;48344:101::-;;;;;;;;;;-1:-1:-1;48344:101:0;;;;;:::i;:::-;;:::i;44407:21::-;;;;;;;;;;;;;:::i;31718:206::-;;;;;;;;;;-1:-1:-1;31718:206:0;;;;;:::i;:::-;;:::i;8044:103::-;;;;;;;;;;;;;:::i;44095:36::-;;;;;;;;;;;;;;;;47093:406;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7393:87::-;;;;;;;;;;-1:-1:-1;7466:6:0;;-1:-1:-1;;;;;7466:6:0;7393:87;;33267:104;;;;;;;;;;;;;:::i;44264:38::-;;;;;;;;;;-1:-1:-1;44264:38:0;;;;;;;;;;;44175:39;;;;;;;;;;;;;;;;47505:152;;;;;;;;;;;;;:::i;47930:92::-;;;;;;;;;;-1:-1:-1;47930:92:0;;;;;:::i;:::-;;:::i;34851:279::-;;;;;;;;;;-1:-1:-1;34851:279:0;;;;;:::i;:::-;;:::i;44309:34::-;;;;;;;;;;;;;;;;35929:308;;;;;;;;;;-1:-1:-1;35929:308:0;;;;;:::i;:::-;;:::i;44223:34::-;;;;;;;;;;-1:-1:-1;44223:34:0;;;;;;;;46022:234;;;;;;;;;;-1:-1:-1;46022:234:0;;;;;:::i;:::-;;:::i;46701:298::-;;;;;;;;;;-1:-1:-1;46701:298:0;;;;;:::i;:::-;;:::i;47665:154::-;;;;;;;;;;;;;:::i;44757:498::-;;;;;;:::i;:::-;;:::i;48453:111::-;;;;;;;;;;-1:-1:-1;48453:111:0;;;;;:::i;:::-;;:::i;48238:97::-;;;;;;;;;;-1:-1:-1;48238:97:0;;;;;:::i;:::-;;:::i;35201:164::-;;;;;;;;;;-1:-1:-1;35201:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35322:25:0;;;35298:4;35322:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35201:164;48029:95;;;;;;;;;;-1:-1:-1;48029:95:0;;;;;:::i;:::-;;:::i;8302:201::-;;;;;;;;;;-1:-1:-1;8302:201:0;;;;;:::i;:::-;;:::i;45263:751::-;;;;;;:::i;:::-;;:::i;31282:372::-;31384:4;-1:-1:-1;;;;;;31421:40:0;;-1:-1:-1;;;31421:40:0;;:105;;-1:-1:-1;;;;;;;31478:48:0;;-1:-1:-1;;;31478:48:0;31421:105;:172;;;-1:-1:-1;;;;;;;31543:50:0;;-1:-1:-1;;;31543:50:0;31421:172;:225;;;-1:-1:-1;;;;;;;;;;20309:40:0;;;31610:36;31401:245;31282:372;-1:-1:-1;;31282:372:0:o;33098:100::-;33152:13;33185:5;33178:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33098:100;:::o;34575:204::-;34643:7;34668:16;34676:7;36549:4;36583:13;-1:-1:-1;36573:23:0;36492:112;34668:16;34663:64;;34693:34;;-1:-1:-1;;;34693:34:0;;;;;;;;;;;34663:64;-1:-1:-1;34747:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34747:24:0;;34575:204::o;34164:345::-;34237:13;34253:24;34269:7;34253:15;:24::i;:::-;34237:40;;34298:5;-1:-1:-1;;;;;34292:11:0;:2;-1:-1:-1;;;;;34292:11:0;;34288:48;;;34312:24;;-1:-1:-1;;;34312:24:0;;;;;;;;;;;34288:48;6197:10;-1:-1:-1;;;;;34353:21:0;;;;;;:63;;-1:-1:-1;34379:37:0;34396:5;6197:10;35201:164;:::i;34379:37::-;34378:38;34353:63;34349:111;;;34425:35;;-1:-1:-1;;;34425:35:0;;;;;;;;;;;34349:111;34473:28;34482:2;34486:7;34495:5;34473:8;:28::i;:::-;34226:283;34164:345;;:::o;46264:279::-;7466:6;;-1:-1:-1;;;;;7466:6:0;6197:10;7613:23;7605:68;;;;-1:-1:-1;;;7605:68:0;;;;;;;:::i;:::-;;;;;;;;;46376:1:::1;46358:8;:15;:19;46350:55;;;;-1:-1:-1::0;;;46350:55:0::1;;;;;;;:::i;:::-;44164:4;46440:8;:15;46424:13;29573:7:::0;29600:13;;29520:101;46424:13:::1;:31;;;;:::i;:::-;:44;;46416:79;;;::::0;-1:-1:-1;;;46416:79:0;;14298:2:1;46416:79:0::1;::::0;::::1;14280:21:1::0;14337:2;14317:18;;;14310:30;-1:-1:-1;;;14356:18:1;;;14349:52;14418:18;;46416:79:0::1;14096:346:1::0;46416:79:0::1;46506:29;46516:10;46528:6;46506:9;:29::i;:::-;46264:279:::0;;:::o;48130:101::-;7466:6;;-1:-1:-1;;;;;7466:6:0;6197:10;7613:23;7605:68;;;;-1:-1:-1;;;7605:68:0;;;;;;;:::i;:::-;48198:18:::1;:25:::0;;;::::1;;;;-1:-1:-1::0;;48198:25:0;;::::1;::::0;;;::::1;::::0;;48130:101::o;35432:170::-;35566:28;35576:4;35582:2;35586:7;35566:9;:28::i;30174:1036::-;30263:7;30296:16;30306:5;30296:9;:16::i;:::-;30287:5;:25;30283:61;;30321:23;;-1:-1:-1;;;30321:23:0;;;;;;;;;;;30283:61;30355:22;29600:13;;;30355:22;;30618:466;30638:14;30634:1;:18;30618:466;;;30678:31;30712:14;;;:11;:14;;;;;;;;;30678:48;;;;;;;;;-1:-1:-1;;;;;30678:48:0;;;;;-1:-1:-1;;;30678:48:0;;;-1:-1:-1;;;;;30678:48:0;;;;;;;;30749:28;30745:111;;30822:14;;;-1:-1:-1;30745:111:0;30899:5;-1:-1:-1;;;;;30878:26:0;:17;-1:-1:-1;;;;;30878:26:0;;30874:195;;;30948:5;30933:11;:20;30929:85;;;-1:-1:-1;30989:1:0;-1:-1:-1;30982:8:0;;-1:-1:-1;;;30982:8:0;30929:85;31036:13;;;;;30874:195;-1:-1:-1;30654:3:0;;30618:466;;;-1:-1:-1;31160:13:0;;:::i;:::-;-1:-1:-1;31191:11:0;30174:1036;-1:-1:-1;;;;30174:1036:0:o;48572:1122::-;7466:6;;-1:-1:-1;;;;;7466:6:0;6197:10;7613:23;7605:68;;;;-1:-1:-1;;;7605:68:0;;;;;;;:::i;:::-;48639:21:::1;48679:7;7466:6:::0;;-1:-1:-1;;;;;7466:6:0;;7393:87;48679:7:::1;-1:-1:-1::0;;;;;48671:25:0::1;:48;48714:4;48697:14;:8:::0;48708:3:::1;48697:14;:::i;:::-;:21;;;;:::i;:::-;48671:48;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;48762:42:0::1;48754:83;48832:4;48815:14;:8:::0;48826:3:::1;48815:14;:::i;:::-;:21;;;;:::i;:::-;48754:83;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;48873:42:0::1;48865:82;48942:4;48926:13;:8:::0;48937:2:::1;48926:13;:::i;:::-;:20;;;;:::i;:::-;48865:82;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;48978:42:0::1;48970:81;49046:4;49031:12;:8:::0;49042:1:::1;49031:12;:::i;:::-;:19;;;;:::i;:::-;48970:81;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;49082:42:0::1;49074:83;49152:4;49135:14;:8:::0;49146:3:::1;49135:14;:::i;:::-;:21;;;;:::i;:::-;49074:83;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;49187:42:0::1;49179:82;49256:4;49240:13;:8:::0;49251:2:::1;49240:13;:::i;:::-;:20;;;;:::i;:::-;49179:82;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;49291:42:0::1;49283:83;49361:4;49344:14;:8:::0;49355:3:::1;49344:14;:::i;:::-;:21;;;;:::i;:::-;49283:83;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;49395:42:0::1;49387:83;49465:4;49448:14;:8:::0;49459:3:::1;49448:14;:::i;:::-;:21;;;;:::i;:::-;49387:83;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;49499:42:0::1;49491:83;49569:4;49552:14;:8:::0;49563:3:::1;49552:14;:::i;:::-;:21;;;;:::i;:::-;49491:83;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;49603:42:0::1;49595:81;49671:4;49656:12;:8:::0;49667:1:::1;49656:12;:::i;:::-;:19;;;;:::i;:::-;49595:81;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;35673:185:::0;35811:39;35828:4;35834:2;35838:7;35811:39;;;;;;;;;;;;:16;:39::i;29698:176::-;29765:7;29600:13;;29789:5;:22;29785:58;;29820:23;;-1:-1:-1;;;29820:23:0;;;;;;;;;;;29785:58;-1:-1:-1;29861:5:0;29698:176::o;32907:124::-;32971:7;32998:20;33010:7;32998:11;:20::i;:::-;:25;;32907:124;-1:-1:-1;;32907:124:0:o;48344:101::-;7466:6;;-1:-1:-1;;;;;7466:6:0;6197:10;7613:23;7605:68;;;;-1:-1:-1;;;7605:68:0;;;;;;;:::i;:::-;48416:13:::1;:21:::0;48344:101::o;44407:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31718:206::-;31782:7;-1:-1:-1;;;;;31806:19:0;;31802:60;;31834:28;;-1:-1:-1;;;31834:28:0;;;;;;;;;;;31802:60;-1:-1:-1;;;;;;31888:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31888:27:0;;31718:206::o;8044:103::-;7466:6;;-1:-1:-1;;;;;7466:6:0;6197:10;7613:23;7605:68;;;;-1:-1:-1;;;7605:68:0;;;;;;;:::i;:::-;8109:30:::1;8136:1;8109:18;:30::i;:::-;8044:103::o:0;47093:406::-;47135:16;47180:10;47163:14;47228:17;47180:10;47228:9;:17::i;:::-;47201:44;;47256:25;47298:16;-1:-1:-1;;;;;47284:31:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47284:31:0;;47256:59;;47332:13;47328:136;47359:16;47351:5;:24;47328:136;;;47418:34;47438:6;47446:5;47418:19;:34::i;:::-;47400:8;47409:5;47400:15;;;;;;;;:::i;:::-;;;;;;;;;;:52;47377:7;;;;:::i;:::-;;;;47328:136;;;-1:-1:-1;47483:8:0;47093:406;-1:-1:-1;;;47093:406:0:o;33267:104::-;33323:13;33356:7;33349:14;;;;;:::i;47505:152::-;47578:14;;47554:4;;47578:14;;:22;;:14;:22;47570:59;;;;-1:-1:-1;;;47570:59:0;;12107:2:1;47570:59:0;;;12089:21:1;12146:2;12126:18;;;12119:30;12185:27;12165:18;;;12158:55;12230:18;;47570:59:0;11905:349:1;47570:59:0;-1:-1:-1;47647:1:0;;47505:152::o;47930:92::-;7466:6;;-1:-1:-1;;;;;7466:6:0;6197:10;7613:23;7605:68;;;;-1:-1:-1;;;7605:68:0;;;;;;;:::i;:::-;48000:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;34851:279::-:0;-1:-1:-1;;;;;34942:24:0;;6197:10;34942:24;34938:54;;;34975:17;;-1:-1:-1;;;34975:17:0;;;;;;;;;;;34938:54;6197:10;35005:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35005:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35005:53:0;;;;;;;;;;35074:48;;9574:41:1;;;35005:42:0;;6197:10;35074:48;;9547:18:1;35074:48:0;;;;;;;34851:279;;:::o;35929:308::-;36088:28;36098:4;36104:2;36108:7;36088:9;:28::i;:::-;36132:48;36155:4;36161:2;36165:7;36174:5;36132:22;:48::i;:::-;36127:102;;36189:40;;-1:-1:-1;;;36189:40:0;;;;;;;;;;;36127:102;35929:308;;;;:::o;46022:234::-;7466:6;;-1:-1:-1;;;;;7466:6:0;6197:10;7613:23;7605:68;;;;-1:-1:-1;;;7605:68:0;;;;;;;:::i;:::-;46098:1:::1;46089:6;:10;46081:46;;;;-1:-1:-1::0;;;46081:46:0::1;;;;;;;:::i;:::-;44164:4;46162:6;46146:13;29573:7:::0;29600:13;;29520:101;46146:13:::1;:22;;;;:::i;:::-;:35;;46138:70;;;;-1:-1:-1::0;;;46138:70:0::1;;;;;;;:::i;:::-;46219:29;46229:10;46241:6;46219:9;:29::i;:::-;46022:234:::0;:::o;46701:298::-;46774:13;46808:16;46816:7;36549:4;36583:13;-1:-1:-1;36573:23:0;36492:112;46808:16;46800:76;;;;-1:-1:-1;;;46800:76:0;;13173:2:1;46800:76:0;;;13155:21:1;13212:2;13192:18;;;13185:30;13251:34;13231:18;;;13224:62;-1:-1:-1;;;13302:18:1;;;13295:45;13357:19;;46800:76:0;12971:411:1;46800:76:0;46920:1;46902:7;46896:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;46948:7;46957:18;:7;:16;:18::i;:::-;46931:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46889:102;46701:298;-1:-1:-1;;46701:298:0:o;47665:154::-;47733:18;;47711:4;;47733:18;;;;;;:26;;:18;:26;47725:66;;;;-1:-1:-1;;;47725:66:0;;11399:2:1;47725:66:0;;;11381:21:1;11438:2;11418:18;;;11411:30;11477;11457:18;;;11450:58;11525:18;;47725:66:0;11197:352:1;44757:498:0;44816:18;;;;;;;;:26;;:18;:26;44808:54;;;;-1:-1:-1;;;44808:54:0;;14649:2:1;44808:54:0;;;14631:21:1;14688:2;14668:18;;;14661:30;-1:-1:-1;;;14707:18:1;;;14700:45;14762:18;;44808:54:0;14447:339:1;44808:54:0;44890:1;44881:6;:10;44873:46;;;;-1:-1:-1;;;44873:46:0;;;;;;;:::i;:::-;44948:17;;44938:6;:27;;44930:61;;;;-1:-1:-1;;;44930:61:0;;10641:2:1;44930:61:0;;;10623:21:1;10680:2;10660:18;;;10653:30;-1:-1:-1;;;10699:18:1;;;10692:51;10760:18;;44930:61:0;10439:345:1;44930:61:0;44164:4;45026:6;45010:13;29573:7;29600:13;;29520:101;45010:13;:22;;;;:::i;:::-;:35;;45002:70;;;;-1:-1:-1;;;45002:70:0;;;;;;;:::i;:::-;45117:6;45104:10;;:19;;;;:::i;:::-;45091:9;:32;;45083:67;;;;-1:-1:-1;;;45083:67:0;;11756:2:1;45083:67:0;;;11738:21:1;11795:2;11775:18;;;11768:30;-1:-1:-1;;;11814:18:1;;;11807:52;11876:18;;45083:67:0;11554:346:1;45083:67:0;45183:10;45167:27;;;;:15;:27;;;;;:37;;45198:6;;45167:27;:37;;45198:6;;45167:37;:::i;:::-;;;;-1:-1:-1;45219:29:0;;-1:-1:-1;45229:10:0;45241:6;45219:9;:29::i;48453:111::-;7466:6;;-1:-1:-1;;;;;7466:6:0;6197:10;7613:23;7605:68;;;;-1:-1:-1;;;7605:68:0;;;;;;;:::i;:::-;48527:19:::1;:32:::0;48453:111::o;48238:97::-;7466:6;;-1:-1:-1;;;;;7466:6:0;6197:10;7613:23;7605:68;;;;-1:-1:-1;;;7605:68:0;;;;;;;:::i;:::-;48309:10:::1;:18:::0;48238:97::o;48029:95::-;7466:6;;-1:-1:-1;;;;;7466:6:0;6197:10;7613:23;7605:68;;;;-1:-1:-1;;;7605:68:0;;;;;;;:::i;:::-;48095:14:::1;:21:::0;;-1:-1:-1;;48095:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48029:95::o;8302:201::-;7466:6;;-1:-1:-1;;;;;7466:6:0;6197:10;7613:23;7605:68;;;;-1:-1:-1;;;7605:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8391:22:0;::::1;8383:73;;;::::0;-1:-1:-1;;;8383:73:0;;10234:2:1;8383:73:0::1;::::0;::::1;10216:21:1::0;10273:2;10253:18;;;10246:30;10312:34;10292:18;;;10285:62;-1:-1:-1;;;10363:18:1;;;10356:36;10409:19;;8383:73:0::1;10032:402:1::0;8383:73:0::1;8467:28;8486:8;8467:18;:28::i;45263:751::-:0;45365:14;;;;:22;;:14;:22;45357:50;;;;-1:-1:-1;;;45357:50:0;;14649:2:1;45357:50:0;;;14631:21:1;14688:2;14668:18;;;14661:30;-1:-1:-1;;;14707:18:1;;;14700:45;14762:18;;45357:50:0;14447:339:1;45357:50:0;45426:91;45445:11;;45426:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45457:19:0;;45487:28;;-1:-1:-1;;45504:10:0;6705:2:1;6701:15;6697:53;45487:28:0;;;6685:66:1;45457:19:0;;-1:-1:-1;6767:12:1;;;-1:-1:-1;45487:28:0;;;;;;;;;;;;45477:39;;;;;;45426:18;:91::i;:::-;45418:131;;;;-1:-1:-1;;;45418:131:0;;13941:2:1;45418:131:0;;;13923:21:1;13980:2;13960:18;;;13953:30;14019;13999:18;;;13992:58;14067:18;;45418:131:0;13739:352:1;45418:131:0;45578:17;;45568:6;:27;;45560:61;;;;-1:-1:-1;;;45560:61:0;;10641:2:1;45560:61:0;;;10623:21:1;10680:2;10660:18;;;10653:30;-1:-1:-1;;;10699:18:1;;;10692:51;10760:18;;45560:61:0;10439:345:1;45560:61:0;44164:4;45656:6;45640:13;29573:7;29600:13;;29520:101;45640:13;:22;;;;:::i;:::-;:34;;45632:69;;;;-1:-1:-1;;;45632:69:0;;;;;;;:::i;:::-;45733:13;;45720:9;:26;;45712:61;;;;-1:-1:-1;;;45712:61:0;;11756:2:1;45712:61:0;;;11738:21:1;11795:2;11775:18;;;11768:30;-1:-1:-1;;;11814:18:1;;;11807:52;11876:18;;45712:61:0;11554:346:1;45712:61:0;45836:19;;45812:10;45793:30;;;;:18;:30;;;;;;:38;;45825:6;;45793:38;:::i;:::-;45792:63;;45784:115;;;;-1:-1:-1;;;45784:115:0;;10991:2:1;45784:115:0;;;10973:21:1;11030:2;11010:18;;;11003:30;11069:34;11049:18;;;11042:62;-1:-1:-1;;;11120:18:1;;;11113:37;11167:19;;45784:115:0;10789:403:1;45784:115:0;45941:10;45922:30;;;;:18;:30;;;;;:40;;45956:6;;45922:30;:40;;45956:6;;45922:40;:::i;:::-;;;;-1:-1:-1;45977:29:0;;-1:-1:-1;45987:10:0;45999:6;45977:9;:29::i;41255:196::-;41370:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41370:29:0;-1:-1:-1;;;;;41370:29:0;;;;;;;;;41415:28;;41370:24;;41415:28;;;;;;;41255:196;;;:::o;36612:104::-;36681:27;36691:2;36695:8;36681:27;;;;;;;;;;;;:9;:27::i;39175:1962::-;39290:35;39328:20;39340:7;39328:11;:20::i;:::-;39403:18;;39290:58;;-1:-1:-1;39361:22:0;;-1:-1:-1;;;;;39387:34:0;6197:10;-1:-1:-1;;;;;39387:34:0;;:87;;;-1:-1:-1;6197:10:0;39438:20;39450:7;39438:11;:20::i;:::-;-1:-1:-1;;;;;39438:36:0;;39387:87;:154;;;-1:-1:-1;39508:18:0;;39491:50;;6197:10;35201:164;:::i;39491:50::-;39361:181;;39560:17;39555:66;;39586:35;;-1:-1:-1;;;39586:35:0;;;;;;;;;;;39555:66;39658:4;-1:-1:-1;;;;;39636:26:0;:13;:18;;;-1:-1:-1;;;;;39636:26:0;;39632:67;;39671:28;;-1:-1:-1;;;39671:28:0;;;;;;;;;;;39632:67;-1:-1:-1;;;;;39714:16:0;;39710:52;;39739:23;;-1:-1:-1;;;39739:23:0;;;;;;;;;;;39710:52;39883:49;39900:1;39904:7;39913:13;:18;;;39883:8;:49::i;:::-;-1:-1:-1;;;;;40228:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;40228:31:0;;;-1:-1:-1;;;;;40228:31:0;;;-1:-1:-1;;40228:31:0;;;;;;;40274:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40274:29:0;;;;;;;;;;;;;40320:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;40365:61:0;;;;-1:-1:-1;;;40410:15:0;-1:-1:-1;;;;;40365:61:0;;;;;40700:11;;;40730:24;;;;;:29;40700:11;;40730:29;40726:295;;40798:20;40806:11;36549:4;36583:13;-1:-1:-1;36573:23:0;36492:112;40798:20;40794:212;;;40875:18;;;40843:24;;;:11;:24;;;;;;;;:50;;40958:28;;;;-1:-1:-1;;;;;40916:70:0;-1:-1:-1;;;40916:70:0;-1:-1:-1;;;;;;40916:70:0;;;-1:-1:-1;;;;;40843:50:0;;;40916:70;;;;;;;40794:212;40203:829;41068:7;41064:2;-1:-1:-1;;;;;41049:27:0;41058:4;-1:-1:-1;;;;;41049:27:0;;;;;;;;;;;41087:42;39279:1858;;39175:1962;;;:::o;32341:504::-;-1:-1:-1;;;;;;;;;;;;;;;;;32441:16:0;32449:7;36549:4;36583:13;-1:-1:-1;36573:23:0;36492:112;32441:16;32436:61;;32466:31;;-1:-1:-1;;;32466:31:0;;;;;;;;;;;32436:61;32555:7;32535:245;32602:31;32636:17;;;:11;:17;;;;;;;;;32602:51;;;;;;;;;-1:-1:-1;;;;;32602:51:0;;;;;-1:-1:-1;;;32602:51:0;;;-1:-1:-1;;;;;32602:51:0;;;;;;;;32676:28;32672:93;;32736:9;32341:504;-1:-1:-1;;;32341:504:0:o;32672:93::-;-1:-1:-1;;;32575:6:0;32535:245;;8663:191;8756:6;;;-1:-1:-1;;;;;8773:17:0;;;-1:-1:-1;;;;;;8773:17:0;;;;;;;8806:40;;8756:6;;;8773:17;8756:6;;8806:40;;8737:16;;8806:40;8726:128;8663:191;:::o;42016:765::-;42171:4;-1:-1:-1;;;;;42192:13:0;;10389:19;:23;42188:586;;42228:72;;-1:-1:-1;;;42228:72:0;;-1:-1:-1;;;;;42228:36:0;;;;;:72;;6197:10;;42279:4;;42285:7;;42294:5;;42228:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42228:72:0;;;;;;;;-1:-1:-1;;42228:72:0;;;;;;;;;;;;:::i;:::-;;;42224:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42474:13:0;;42470:234;;42501:40;;-1:-1:-1;;;42501:40:0;;;;;;;;;;;42470:234;42654:6;42648:13;42639:6;42635:2;42631:15;42624:38;42224:495;-1:-1:-1;;;;;;42351:55:0;-1:-1:-1;;;42351:55:0;;-1:-1:-1;42344:62:0;;42188:586;-1:-1:-1;42758:4:0;42188:586;42016:765;;;;;;:::o;3679:723::-;3735:13;3956:10;3952:53;;-1:-1:-1;;3983:10:0;;;;;;;;;;;;-1:-1:-1;;;3983:10:0;;;;;3679:723::o;3952:53::-;4030:5;4015:12;4071:78;4078:9;;4071:78;;4104:8;;;;:::i;:::-;;-1:-1:-1;4127:10:0;;-1:-1:-1;4135:2:0;4127:10;;:::i;:::-;;;4071:78;;;4159:19;4191:6;-1:-1:-1;;;;;4181:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4181:17:0;;4159:39;;4209:154;4216:10;;4209:154;;4243:11;4253:1;4243:11;;:::i;:::-;;-1:-1:-1;4312:10:0;4320:2;4312:5;:10;:::i;:::-;4299:24;;:2;:24;:::i;:::-;4286:39;;4269:6;4276;4269:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4269:56:0;;;;;;;;-1:-1:-1;4340:11:0;4349:2;4340:11;;:::i;:::-;;;4209:154;;1849:190;1974:4;2027;1998:25;2011:5;2018:4;1998:12;:25::i;:::-;:33;;1849:190;-1:-1:-1;;;;1849:190:0:o;37079:163::-;37202:32;37208:2;37212:8;37222:5;37229:4;37202:5;:32::i;2400:675::-;2483:7;2526:4;2483:7;2541:497;2565:5;:12;2561:1;:16;2541:497;;;2599:20;2622:5;2628:1;2622:8;;;;;;;;:::i;:::-;;;;;;;2599:31;;2665:12;2649;:28;2645:382;;3151:13;3201:15;;;3237:4;3230:15;;;3284:4;3268:21;;2777:57;;2645:382;;;3151:13;3201:15;;;3237:4;3230:15;;;3284:4;3268:21;;2954:57;;2645:382;-1:-1:-1;2579:3:0;;;;:::i;:::-;;;;2541:497;;37501:1420;37640:20;37663:13;-1:-1:-1;;;;;37691:16:0;;37687:48;;37716:19;;-1:-1:-1;;;37716:19:0;;;;;;;;;;;37687:48;37750:13;37746:44;;37772:18;;-1:-1:-1;;;37772:18:0;;;;;;;;;;;37746:44;-1:-1:-1;;;;;38143:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;38143:45:0;;-1:-1:-1;;;;;38143:45:0;;;;;;;;;;38203:50;;;;;;;;;;;;;;38270:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;38320:66:0;;;;-1:-1:-1;;;38370:15:0;-1:-1:-1;;;;;38320:66:0;;;;;;38270:25;;38455:330;38475:8;38471:1;:12;38455:330;;;38514:38;;38539:12;;-1:-1:-1;;;;;38514:38:0;;;38531:1;;38514:38;;38531:1;;38514:38;38575:4;:68;;;;;38584:59;38615:1;38619:2;38623:12;38637:5;38584:22;:59::i;:::-;38583:60;38575:68;38571:164;;;38675:40;;-1:-1:-1;;;38675:40:0;;;;;;;;;;;38571:164;38755:14;;;;;38485:3;38455:330;;;-1:-1:-1;38801:13:0;:28;38853:60;35929:308;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;:::-;909:39;768:186;-1:-1:-1;;;768:186:1:o;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;-1:-1:-1;;;;;1976:6:1;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:1033::-;2839:6;2847;2900:2;2888:9;2879:7;2875:23;2871:32;2868:52;;;2916:1;2913;2906:12;2868:52;2956:9;2943:23;-1:-1:-1;;;;;3026:2:1;3018:6;3015:14;3012:34;;;3042:1;3039;3032:12;3012:34;3080:6;3069:9;3065:22;3055:32;;3125:7;3118:4;3114:2;3110:13;3106:27;3096:55;;3147:1;3144;3137:12;3096:55;3183:2;3170:16;3205:4;3228:2;3224;3221:10;3218:36;;;3234:18;;:::i;:::-;3280:2;3277:1;3273:10;3263:20;;3303:28;3327:2;3323;3319:11;3303:28;:::i;:::-;3365:15;;;3396:12;;;;3428:11;;;3458;;;3454:20;;3451:33;-1:-1:-1;3448:53:1;;;3497:1;3494;3487:12;3448:53;3519:1;3510:10;;3529:169;3543:2;3540:1;3537:9;3529:169;;;3600:23;3619:3;3600:23;:::i;:::-;3588:36;;3561:1;3554:9;;;;;3644:12;;;;3676;;3529:169;;;-1:-1:-1;3717:5:1;3754:18;;;;3741:32;;-1:-1:-1;;;;;;;2746:1033:1:o;3784:180::-;3840:6;3893:2;3881:9;3872:7;3868:23;3864:32;3861:52;;;3909:1;3906;3899:12;3861:52;3932:26;3948:9;3932:26;:::i;3969:180::-;4028:6;4081:2;4069:9;4060:7;4056:23;4052:32;4049:52;;;4097:1;4094;4087:12;4049:52;-1:-1:-1;4120:23:1;;3969:180;-1:-1:-1;3969:180:1:o;4154:245::-;4212:6;4265:2;4253:9;4244:7;4240:23;4236:32;4233:52;;;4281:1;4278;4271:12;4233:52;4320:9;4307:23;4339:30;4363:5;4339:30;:::i;4404:249::-;4473:6;4526:2;4514:9;4505:7;4501:23;4497:32;4494:52;;;4542:1;4539;4532:12;4494:52;4574:9;4568:16;4593:30;4617:5;4593:30;:::i;4658:450::-;4727:6;4780:2;4768:9;4759:7;4755:23;4751:32;4748:52;;;4796:1;4793;4786:12;4748:52;4836:9;4823:23;-1:-1:-1;;;;;4861:6:1;4858:30;4855:50;;;4901:1;4898;4891:12;4855:50;4924:22;;4977:4;4969:13;;4965:27;-1:-1:-1;4955:55:1;;5006:1;5003;4996:12;4955:55;5029:73;5094:7;5089:2;5076:16;5071:2;5067;5063:11;5029:73;:::i;5298:683::-;5393:6;5401;5409;5462:2;5450:9;5441:7;5437:23;5433:32;5430:52;;;5478:1;5475;5468:12;5430:52;5514:9;5501:23;5491:33;;5575:2;5564:9;5560:18;5547:32;-1:-1:-1;;;;;5639:2:1;5631:6;5628:14;5625:34;;;5655:1;5652;5645:12;5625:34;5693:6;5682:9;5678:22;5668:32;;5738:7;5731:4;5727:2;5723:13;5719:27;5709:55;;5760:1;5757;5750:12;5709:55;5800:2;5787:16;5826:2;5818:6;5815:14;5812:34;;;5842:1;5839;5832:12;5812:34;5895:7;5890:2;5880:6;5877:1;5873:14;5869:2;5865:23;5861:32;5858:45;5855:65;;;5916:1;5913;5906:12;5855:65;5947:2;5943;5939:11;5929:21;;5969:6;5959:16;;;;;5298:683;;;;;:::o;5986:257::-;6027:3;6065:5;6059:12;6092:6;6087:3;6080:19;6108:63;6164:6;6157:4;6152:3;6148:14;6141:4;6134:5;6130:16;6108:63;:::i;:::-;6225:2;6204:15;-1:-1:-1;;6200:29:1;6191:39;;;;6232:4;6187:50;;5986:257;-1:-1:-1;;5986:257:1:o;6248:185::-;6290:3;6328:5;6322:12;6343:52;6388:6;6383:3;6376:4;6369:5;6365:16;6343:52;:::i;:::-;6411:16;;;;;6248:185;-1:-1:-1;;6248:185:1:o;6790:1301::-;7067:3;7096:1;7129:6;7123:13;7159:3;7181:1;7209:9;7205:2;7201:18;7191:28;;7269:2;7258:9;7254:18;7291;7281:61;;7335:4;7327:6;7323:17;7313:27;;7281:61;7361:2;7409;7401:6;7398:14;7378:18;7375:38;7372:165;;;-1:-1:-1;;;7436:33:1;;7492:4;7489:1;7482:15;7522:4;7443:3;7510:17;7372:165;7553:18;7580:104;;;;7698:1;7693:320;;;;7546:467;;7580:104;-1:-1:-1;;7613:24:1;;7601:37;;7658:16;;;;-1:-1:-1;7580:104:1;;7693:320;15326:1;15319:14;;;15363:4;15350:18;;7788:1;7802:165;7816:6;7813:1;7810:13;7802:165;;;7894:14;;7881:11;;;7874:35;7937:16;;;;7831:10;;7802:165;;;7806:3;;7996:6;7991:3;7987:16;7980:23;;7546:467;;;;;;;8029:56;8054:30;8080:3;8072:6;8054:30;:::i;:::-;-1:-1:-1;;;6498:20:1;;6543:1;6534:11;;6438:113;8029:56;8022:63;6790:1301;-1:-1:-1;;;;;6790:1301:1:o;8304:488::-;-1:-1:-1;;;;;8573:15:1;;;8555:34;;8625:15;;8620:2;8605:18;;8598:43;8672:2;8657:18;;8650:34;;;8720:3;8715:2;8700:18;;8693:31;;;8498:4;;8741:45;;8766:19;;8758:6;8741:45;:::i;:::-;8733:53;8304:488;-1:-1:-1;;;;;;8304:488:1:o;8797:632::-;8968:2;9020:21;;;9090:13;;8993:18;;;9112:22;;;8939:4;;8968:2;9191:15;;;;9165:2;9150:18;;;8939:4;9234:169;9248:6;9245:1;9242:13;9234:169;;;9309:13;;9297:26;;9378:15;;;;9343:12;;;;9270:1;9263:9;9234:169;;;-1:-1:-1;9420:3:1;;8797:632;-1:-1:-1;;;;;;8797:632:1:o;9808:219::-;9957:2;9946:9;9939:21;9920:4;9977:44;10017:2;10006:9;10002:18;9994:6;9977:44;:::i;12259:346::-;12461:2;12443:21;;;12500:2;12480:18;;;12473:30;-1:-1:-1;;;12534:2:1;12519:18;;12512:52;12596:2;12581:18;;12259:346::o;12610:356::-;12812:2;12794:21;;;12831:18;;;12824:30;12890:34;12885:2;12870:18;;12863:62;12957:2;12942:18;;12610:356::o;13387:347::-;13589:2;13571:21;;;13628:2;13608:18;;;13601:30;13667:25;13662:2;13647:18;;13640:53;13725:2;13710:18;;13387:347::o;14973:275::-;15044:2;15038:9;15109:2;15090:13;;-1:-1:-1;;15086:27:1;15074:40;;-1:-1:-1;;;;;15129:34:1;;15165:22;;;15126:62;15123:88;;;15191:18;;:::i;:::-;15227:2;15220:22;14973:275;;-1:-1:-1;14973:275:1:o;15379:128::-;15419:3;15450:1;15446:6;15443:1;15440:13;15437:39;;;15456:18;;:::i;:::-;-1:-1:-1;15492:9:1;;15379:128::o;15512:120::-;15552:1;15578;15568:35;;15583:18;;:::i;:::-;-1:-1:-1;15617:9:1;;15512:120::o;15637:168::-;15677:7;15743:1;15739;15735:6;15731:14;15728:1;15725:21;15720:1;15713:9;15706:17;15702:45;15699:71;;;15750:18;;:::i;:::-;-1:-1:-1;15790:9:1;;15637:168::o;15810:125::-;15850:4;15878:1;15875;15872:8;15869:34;;;15883:18;;:::i;:::-;-1:-1:-1;15920:9:1;;15810:125::o;15940:258::-;16012:1;16022:113;16036:6;16033:1;16030:13;16022:113;;;16112:11;;;16106:18;16093:11;;;16086:39;16058:2;16051:10;16022:113;;;16153:6;16150:1;16147:13;16144:48;;;-1:-1:-1;;16188:1:1;16170:16;;16163:27;15940:258::o;16203:380::-;16282:1;16278:12;;;;16325;;;16346:61;;16400:4;16392:6;16388:17;16378:27;;16346:61;16453:2;16445:6;16442:14;16422:18;16419:38;16416:161;;;16499:10;16494:3;16490:20;16487:1;16480:31;16534:4;16531:1;16524:15;16562:4;16559:1;16552:15;16416:161;;16203:380;;;:::o;16588:135::-;16627:3;-1:-1:-1;;16648:17:1;;16645:43;;;16668:18;;:::i;:::-;-1:-1:-1;16715:1:1;16704:13;;16588:135::o;16728:112::-;16760:1;16786;16776:35;;16791:18;;:::i;:::-;-1:-1:-1;16825:9:1;;16728:112::o;16845:127::-;16906:10;16901:3;16897:20;16894:1;16887:31;16937:4;16934:1;16927:15;16961:4;16958:1;16951:15;16977:127;17038:10;17033:3;17029:20;17026:1;17019:31;17069:4;17066:1;17059:15;17093:4;17090:1;17083:15;17109:127;17170:10;17165:3;17161:20;17158:1;17151:31;17201:4;17198:1;17191:15;17225:4;17222:1;17215:15;17241:127;17302:10;17297:3;17293:20;17290:1;17283:31;17333:4;17330:1;17323:15;17357:4;17354:1;17347:15;17373:127;17434:10;17429:3;17425:20;17422:1;17415:31;17465:4;17462:1;17455:15;17489:4;17486:1;17479:15;17505:131;-1:-1:-1;;;;;;17579:32:1;;17569:43;;17559:71;;17626:1;17623;17616:12

Swarm Source

ipfs://f71f0dc51e3e2bff6ca6c8b3cd22c1b20d8d81cf8fda1ab2c86807d4fe63bfdd
Loading...
Loading
Loading...
Loading
[ 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.