ETH Price: $3,509.34 (+0.64%)
Gas: 1 Gwei

Token

CRYPTYQUES.DESIRE (CDSR)
 

Overview

Max Total Supply

1,321 CDSR

Holders

400

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 CDSR
0xa89e3af6c971fd5b17782fbfaf96a603270f0518
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:
Desire

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-17
*/

// File @openzeppelin/contracts/utils/cryptography/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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

// File @openzeppelin/contracts/utils/introspection/[email protected]

// 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/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// 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 @openzeppelin/contracts/utils/[email protected]

// 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/utils/[email protected]

// 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/utils/[email protected]

// 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/introspection/[email protected]

// 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/[email protected]

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @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)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

pragma solidity ^0.8.0;

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721Burnable: caller is not owner nor approved"
        );
        _burn(tokenId);
    }
}

// File @openzeppelin/contracts/access/[email protected]

// 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/access/[email protected]

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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(
        bytes32 indexed role,
        bytes32 indexed previousAdminRole,
        bytes32 indexed newAdminRole
    );

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(
        bytes32 indexed role,
        address indexed account,
        address indexed sender
    );

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account)
        external
        view
        returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role)
        public
        view
        virtual
        override
        returns (bytes32)
    {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account)
        public
        virtual
        override
        onlyRole(getRoleAdmin(role))
    {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account)
        public
        virtual
        override
        onlyRole(getRoleAdmin(role))
    {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account)
        public
        virtual
        override
    {
        require(
            account == _msgSender(),
            "AccessControl: can only renounce roles for self"
        );

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File contracts/desire 2/DesireBase.sol

pragma solidity ^0.8.4;

// import "@openzeppelin/contracts/token/ERC721/ERC721.sol";

contract DesireBase is ERC721Burnable, Ownable {
    string public __baseURI;

    event BaseURIChanged(string, string);

    constructor(
        string memory name_,
        string memory symbol_,
        string memory baseURI_
    ) ERC721(name_, symbol_) {
        // set baseURI
        setBaseURI(baseURI_);
    }

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

    function setBaseURI(string memory baseURI_) public onlyOwner {
        require(
            keccak256(abi.encodePacked(__baseURI)) !=
                keccak256(abi.encodePacked(baseURI_)),
            "same baseURI"
        );

        string memory oldBaseURI = __baseURI;
        __baseURI = baseURI_;

        emit BaseURIChanged(oldBaseURI, baseURI_);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }
}

// File contracts/desire 2/Desire.sol

pragma solidity ^0.8.4;

contract Desire is DesireBase {
    struct BaseInfo {
        string name;
        string symbol;
        string baseURI;
        uint256 maxAmountPerUser;
    }

    // NOTE: white list info contains all avaiable nft,including public mint nft id range
    struct WhiteListInfo {
        uint256 beginTime;
        uint256 endTime;
        uint256 price;
        bytes32 merkleRoot;
        uint256 start;
        uint256 end;
    }

    struct PublicMintInfo {
        uint256 beginTime;
        uint256 endTime;
        uint256 price;
        // uint256 start;
        // uint256 end;
    }
    uint256 private _royaltyBps;
    address payable private _royaltyRecipient;

    uint256 public constant devantId = 1;
    uint256 public constant _preserveTokenIdStart = 2;
    uint256 public constant _preserveTokenIdEnd = 201;
    uint256 public preserveCurrentId;

    WhiteListInfo public whiteListInfo;
    uint256 public whiteListCurrentId;
    PublicMintInfo public publicMintInfo;
    // uint256 public publicMintCurrentId;

    uint256 public immutable maxAmountPerUser;

    uint256 public totalSupply;
    // uint256 public mintedAmount;

    // address => minted token amount
    mapping(address => uint256) public minted;

    modifier checkAmount(uint256 amount) {
        require(amount <= maxAmountPerUser, "check amount: greater than max");
        require(
            minted[msg.sender] + amount <= maxAmountPerUser,
            "check amount: minted greater than max"
        );
        _;
    }

    modifier checkClaimPeriod() {
        require(block.timestamp >= whiteListInfo.beginTime, "claim not begin");
        require(block.timestamp <= whiteListInfo.endTime, "claim is over");
        _;
    }

    modifier checkClaimPrice(uint256 amount) {
        require(msg.value >= whiteListInfo.price * amount, "claim price");
        _;
    }

    modifier checkPublicMintPeriod() {
        require(block.timestamp >= publicMintInfo.beginTime, "mint not begin");
        require(block.timestamp <= publicMintInfo.endTime, "mint is over");
        _;
    }

    modifier checkPublicMintPrice(uint256 amount) {
        require(
            msg.value >= publicMintInfo.price * amount,
            "public mint price"
        );
        _;
    }

    modifier checkAvailableNFT(uint256 amount) {
        require(
            whiteListCurrentId + amount - 1 <= whiteListInfo.end,
            "mint: no remaining"
        );
        _;
    }

    event UpdateRoot(bytes32 oldRoot, bytes32 newRoot);
    event Withdraw(address indexed receiver, uint256 indexed amount);
    event Airdrop(address[] receivers, uint256 start);
    event MintToBidWinner(address receiver_, uint256 id_);
    event UpdateRoyalties(address payable recipient, uint256 bps);
    event MintPreserve(address receiver_, uint256 amount);

    constructor(
        BaseInfo memory baseInfo_,
        WhiteListInfo memory whiteListInfo_,
        PublicMintInfo memory publicMintInfo_
    ) DesireBase(baseInfo_.name, baseInfo_.symbol, baseInfo_.baseURI) {
        require(whiteListInfo_.start <= whiteListInfo_.end, "invalid range");
        require(whiteListInfo_.start > _preserveTokenIdEnd, "invalid preserve");

        whiteListInfo = whiteListInfo_;
        publicMintInfo = publicMintInfo_;
        maxAmountPerUser = baseInfo_.maxAmountPerUser;

        // set current token id
        whiteListCurrentId = whiteListInfo_.start;
        // publicMintCurrentId = publicMintInfo_.start;

        // // totalSupply = preserve amount + white list amount + 1 devant nft
        // totalSupply =
        //     (_preserveTokenIdEnd + 1 - _preserveTokenIdStart) +
        //     (whiteListInfo.end + 1 - whiteListInfo.start);
        // // mintedAmount = 0;

        preserveCurrentId = _preserveTokenIdStart;
    }

    // update merkle root for white list
    function updateRoot(bytes32 newRoot) public onlyOwner {
        require(newRoot != whiteListInfo.merkleRoot, "update root: same root");
        bytes32 oldRoot = whiteListInfo.merkleRoot;
        whiteListInfo.merkleRoot = newRoot;
        emit UpdateRoot(oldRoot, newRoot);
    }

    // white list accounts claim their NFT
    function claim(bytes32[] calldata proof_, uint256 amount)
        public
        payable
        checkAmount(amount)
        checkClaimPeriod
        checkClaimPrice(amount)
        checkAvailableNFT(amount)
    {
        // update info
        minted[msg.sender] += amount;

        // verify white listin white list
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(proof_, whiteListInfo.merkleRoot, leaf),
            "verify failed"
        );

        // mint
        for (uint256 i = 0; i < amount; i++) {
            _safeMintWrapper(msg.sender, whiteListCurrentId + i);
        }
        whiteListCurrentId += amount;
    }

    function _safeMintWrapper(address to, uint256 tokenId) internal {
        totalSupply += 1;
        _safeMint(to, tokenId);
    }

    // public mint
    function publicMint(uint256 amount)
        public
        payable
        checkAmount(amount)
        checkPublicMintPeriod
        checkPublicMintPrice(amount)
        checkAvailableNFT(amount)
    {
        // update info
        minted[msg.sender] += amount;

        // mint
        for (uint256 i = 0; i < amount; i++) {
            _safeMintWrapper(msg.sender, whiteListCurrentId + i);
        }
        whiteListCurrentId += amount;
    }

    function withdraw(address payable receiver_) public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "no balance");
        require(receiver_ != address(0), "zero receiver address");

        receiver_.transfer(balance);
        emit Withdraw(receiver_, balance);
    }

    function mintPreserve(address receiver_, uint256 amount) public onlyOwner {
        require(
            _preserveTokenIdEnd + 1 - preserveCurrentId >= amount,
            "no remaining"
        );

        for (uint256 i = 0; i < amount; i++) {
            _safeMintWrapper(receiver_, preserveCurrentId + i);
        }
        preserveCurrentId += amount;

        emit MintPreserve(receiver_, amount);
    }

    function mintDevant(address receiver_) public onlyOwner {
        _safeMintWrapper(receiver_, devantId);
    }

    // royalty functions
    function updateRoyalties(address payable recipient, uint256 bps)
        external
        onlyOwner
    {
        require(recipient != address(0), "zero royalty recipient address");
        _royaltyRecipient = recipient;
        _royaltyBps = bps;
        emit UpdateRoyalties(recipient, bps);
    }

    function getRoyalties(uint256 tokenId)
        external
        view
        returns (address, uint256)
    {
        require(
            _exists(tokenId),
            "get royalty info: query for nonexistent token"
        );
        return (_royaltyRecipient, _royaltyBps);
    }

    function getFeeRecipients(uint256 tokenId) external view returns (address) {
        require(
            _exists(tokenId),
            "get fee recipients: query for nonexistent token"
        );
        return _royaltyRecipient;
    }

    function getFeeBps(uint256 tokenId) external view returns (uint256) {
        require(_exists(tokenId), "get fee bps: query for nonexistent token");
        return _royaltyBps;
    }

    function royaltyInfo(uint256 tokenId, uint256 value)
        external
        view
        returns (address, uint256)
    {
        require(_exists(tokenId), "royalty info: query for nonexistent token");
        return (_royaltyRecipient, (value * _royaltyBps) / 10000);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"uint256","name":"maxAmountPerUser","type":"uint256"}],"internalType":"struct Desire.BaseInfo","name":"baseInfo_","type":"tuple"},{"components":[{"internalType":"uint256","name":"beginTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"internalType":"struct Desire.WhiteListInfo","name":"whiteListInfo_","type":"tuple"},{"components":[{"internalType":"uint256","name":"beginTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"internalType":"struct Desire.PublicMintInfo","name":"publicMintInfo_","type":"tuple"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"receivers","type":"address[]"},{"indexed":false,"internalType":"uint256","name":"start","type":"uint256"}],"name":"Airdrop","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"","type":"string"},{"indexed":false,"internalType":"string","name":"","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver_","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MintPreserve","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver_","type":"address"},{"indexed":false,"internalType":"uint256","name":"id_","type":"uint256"}],"name":"MintToBidWinner","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"oldRoot","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"UpdateRoot","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address payable","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"bps","type":"uint256"}],"name":"UpdateRoyalties","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"__baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_preserveTokenIdEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_preserveTokenIdStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"devantId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRoyalties","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmountPerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver_","type":"address"}],"name":"mintDevant","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver_","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPreserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preserveCurrentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintInfo","outputs":[{"internalType":"uint256","name":"beginTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"updateRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"updateRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListCurrentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListInfo","outputs":[{"internalType":"uint256","name":"beginTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"receiver_","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b5060405162003646380380620036468339810160408190526200003491620005d4565b826000015183602001518460400151828281600090805190602001906200005d929190620003c1565b50805162000073906001906020840190620003c1565b505050620000906200008a6200018f60201b60201c565b62000193565b6200009b81620001e5565b5050508160a0015182608001511115620000ec5760405162461bcd60e51b815260206004820152600d60248201526c696e76616c69642072616e676560981b60448201526064015b60405180910390fd5b60c9826080015111620001355760405162461bcd60e51b815260206004820152601060248201526f696e76616c696420707265736572766560801b6044820152606401620000e3565b8151600b55602080830151600c55604080840151600d55606080850151600e5560808086018051600f5560a090960151601055845160125592840151601355920151601455920151909152516011556002600a556200089d565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620002415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620000e3565b80604051602001620002549190620006f8565b6040516020818303038152906040528051906020012060076040516020016200027e919062000716565b604051602081830303815290604052805190602001201415620002d35760405162461bcd60e51b815260206004820152600c60248201526b73616d65206261736555524960a01b6044820152606401620000e3565b600060078054620002e4906200084a565b80601f016020809104026020016040519081016040528092919081815260200182805462000312906200084a565b8015620003635780601f10620003375761010080835404028352916020019162000363565b820191906000526020600020905b8154815290600101906020018083116200034557829003601f168201915b505085519394506200038193600793506020870192509050620003c1565b507fc41b7cb64e5be01af4afc2641afc861432136270f4206b7773f229b658b966998183604051620003b5929190620007ba565b60405180910390a15050565b828054620003cf906200084a565b90600052602060002090601f016020900481019282620003f357600085556200043e565b82601f106200040e57805160ff19168380011785556200043e565b828001600101855582156200043e579182015b828111156200043e57825182559160200191906001019062000421565b506200044c92915062000450565b5090565b5b808211156200044c576000815560010162000451565b600082601f8301126200047957600080fd5b81516001600160401b038082111562000496576200049662000887565b604051601f8301601f19908116603f01168101908282118183101715620004c157620004c162000887565b81604052838152866020858801011115620004db57600080fd5b620004ee84602083016020890162000817565b9695505050505050565b6000606082840312156200050b57600080fd5b604051606081016001600160401b038111828210171562000530576200053062000887565b80604052508091508251815260208301516020820152604083015160408201525092915050565b600060c082840312156200056a57600080fd5b60405160c081016001600160401b03811182821017156200058f576200058f62000887565b8060405250809150825181526020830151602082015260408301516040820152606083015160608201526080830151608082015260a083015160a08201525092915050565b60008060006101408486031215620005eb57600080fd5b83516001600160401b03808211156200060357600080fd5b90850190608082880312156200061857600080fd5b62000622620007ec565b8251828111156200063257600080fd5b620006408982860162000467565b8252506020830151828111156200065657600080fd5b620006648982860162000467565b6020830152506040830151828111156200067d57600080fd5b6200068b8982860162000467565b60408301525060608301516060820152809550505050620006b0856020860162000557565b9150620006c18560e08601620004f8565b90509250925092565b60008151808452620006e481602086016020860162000817565b601f01601f19169290920160200192915050565b600082516200070c81846020870162000817565b9190910192915050565b600080835481600182811c9150808316806200073357607f831692505b60208084108214156200075457634e487b7160e01b86526022600452602486fd5b8180156200076b57600181146200077d57620007ac565b60ff19861689528489019650620007ac565b60008a81526020902060005b86811015620007a45781548b82015290850190830162000789565b505084890196505b509498975050505050505050565b604081526000620007cf6040830185620006ca565b8281036020840152620007e38185620006ca565b95945050505050565b604051608081016001600160401b038111828210171562000811576200081162000887565b60405290565b60005b83811015620008345781810151838201526020016200081a565b8381111562000844576000848401525b50505050565b600181811c908216806200085f57607f821691505b602082108114156200088157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b608051612d71620008d56000396000818161039e01528181610c7001528181610cf001528181610eee0152610f6e0152612d716000f3fe60806040526004361061023b5760003560e01c80635fb27c941161012e578063a22cb465116100ab578063cb8657071161006f578063cb865707146106f0578063e985e9c514610705578063ee8a59c31461074e578063f1955ccc14610764578063f2fde38b1461079e57600080fd5b8063a22cb46514610650578063b88d4fde14610670578063b9c4d9fb14610690578063bb3bafd6146106b0578063c87b56dd146106d057600080fd5b8063715018a6116100f2578063715018a6146105d25780637571f15c146105e75780638da5cb5b1461060757806395d89b41146106255780639cca6b1d1461063a57600080fd5b80635fb27c94146105055780636352211e1461055d5780636c2f5acd1461057d5780636e34a4821461059d57806370a08231146105b257600080fd5b806321ff9970116101bc5780633b439351116101805780633b4393511461047257806342842e0e1461048557806342966c68146104a557806351cff8d9146104c557806355f804b3146104e557600080fd5b806321ff9970146103c057806323493c4a146103e057806323b872dd146104005780632a55205a146104205780632db115441461045f57600080fd5b806311cf11f61161020357806311cf11f61461031f57806318160ddd146103345780631e52da2f1461034a5780631e7269c51461035f57806321942c5a1461038c57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf5780630ebd4c7f146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b36600461286d565b6107be565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610804565b60405161026c9190612a62565b3480156102a357600080fd5b506102b76102b2366004612854565b610896565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004612680565b610923565b005b3480156102fd57600080fd5b5061031161030c366004612854565b610a39565b60405190815260200161026c565b34801561032b57600080fd5b50610311600281565b34801561034057600080fd5b5061031160155481565b34801561035657600080fd5b5061031160c981565b34801561036b57600080fd5b5061031161037a366004612663565b60166020526000908152604090205481565b34801561039857600080fd5b506103117f000000000000000000000000000000000000000000000000000000000000000081565b3480156103cc57600080fd5b506102ef6103db366004612854565b610aa9565b3480156103ec57600080fd5b506102ef6103fb366004612663565b610b64565b34801561040c57600080fd5b506102ef61041b3660046126e5565b610b9c565b34801561042c57600080fd5b5061044061043b3660046128f0565b610bce565b604080516001600160a01b03909316835260208301919091520161026c565b6102ef61046d366004612854565b610c6d565b6102ef6104803660046127d9565b610eeb565b34801561049157600080fd5b506102ef6104a03660046126e5565b611218565b3480156104b157600080fd5b506102ef6104c0366004612854565b611233565b3480156104d157600080fd5b506102ef6104e0366004612663565b6112aa565b3480156104f157600080fd5b506102ef6105003660046128a7565b6113ce565b34801561051157600080fd5b50600b54600c54600d54600e54600f5460105461053095949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c00161026c565b34801561056957600080fd5b506102b7610578366004612854565b61155a565b34801561058957600080fd5b506102ef610598366004612680565b6115d1565b3480156105a957600080fd5b5061028a6116aa565b3480156105be57600080fd5b506103116105cd366004612663565b611738565b3480156105de57600080fd5b506102ef6117bf565b3480156105f357600080fd5b506102ef610602366004612680565b6117f5565b34801561061357600080fd5b506006546001600160a01b03166102b7565b34801561063157600080fd5b5061028a6118fd565b34801561064657600080fd5b5061031160115481565b34801561065c57600080fd5b506102ef61066b3660046127a6565b61190c565b34801561067c57600080fd5b506102ef61068b366004612726565b61191b565b34801561069c57600080fd5b506102b76106ab366004612854565b611953565b3480156106bc57600080fd5b506104406106cb366004612854565b6119d3565b3480156106dc57600080fd5b5061028a6106eb366004612854565b611a5a565b3480156106fc57600080fd5b50610311600181565b34801561071157600080fd5b506102606107203660046126ac565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075a57600080fd5b50610311600a5481565b34801561077057600080fd5b5060125460135460145461078392919083565b6040805193845260208401929092529082015260600161026c565b3480156107aa57600080fd5b506102ef6107b9366004612663565b611b25565b60006001600160e01b031982166380ac58cd60e01b14806107ef57506001600160e01b03198216635b5e139f60e01b145b806107fe57506107fe82611bbd565b92915050565b60606000805461081390612c4e565b80601f016020809104026020016040519081016040528092919081815260200182805461083f90612c4e565b801561088c5780601f106108615761010080835404028352916020019161088c565b820191906000526020600020905b81548152906001019060200180831161086f57829003601f168201915b5050505050905090565b60006108a182611c0d565b6109075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061092e8261155a565b9050806001600160a01b0316836001600160a01b0316141561099c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108fe565b336001600160a01b03821614806109b857506109b88133610720565b610a2a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108fe565b610a348383611c2a565b505050565b6000610a4482611c0d565b610aa15760405162461bcd60e51b815260206004820152602860248201527f67657420666565206270733a20717565727920666f72206e6f6e657869737465604482015267373a103a37b5b2b760c11b60648201526084016108fe565b505060085490565b6006546001600160a01b03163314610ad35760405162461bcd60e51b81526004016108fe90612b3a565b600e54811415610b1e5760405162461bcd60e51b81526020600482015260166024820152751d5c19185d19481c9bdbdd0e881cd85b59481c9bdbdd60521b60448201526064016108fe565b600e80549082905560408051828152602081018490527f809ea3bfb2b4c233654e9bd385eb6e59639fceb90b732f3bb6d13a9af80641d091015b60405180910390a15050565b6006546001600160a01b03163314610b8e5760405162461bcd60e51b81526004016108fe90612b3a565b610b99816001611c98565b50565b610ba7335b82611cbb565b610bc35760405162461bcd60e51b81526004016108fe90612b6f565b610a34838383611da5565b600080610bda84611c0d565b610c385760405162461bcd60e51b815260206004820152602960248201527f726f79616c747920696e666f3a20717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108fe565b6009546008546001600160a01b039091169061271090610c589086612bec565b610c629190612bd8565b915091509250929050565b807f0000000000000000000000000000000000000000000000000000000000000000811115610cde5760405162461bcd60e51b815260206004820152601e60248201527f636865636b20616d6f756e743a2067726561746572207468616e206d6178000060448201526064016108fe565b336000908152601660205260409020547f000000000000000000000000000000000000000000000000000000000000000090610d1b908390612bc0565b1115610d395760405162461bcd60e51b81526004016108fe90612af5565b601254421015610d7c5760405162461bcd60e51b815260206004820152600e60248201526d36b4b73a103737ba103132b3b4b760911b60448201526064016108fe565b601354421115610dbd5760405162461bcd60e51b815260206004820152600c60248201526b36b4b73a1034b99037bb32b960a11b60448201526064016108fe565b6014548290610dcd908290612bec565b341015610e105760405162461bcd60e51b81526020600482015260116024820152707075626c6963206d696e7420707269636560781b60448201526064016108fe565b82600b60050154600182601154610e279190612bc0565b610e319190612c0b565b1115610e745760405162461bcd60e51b81526020600482015260126024820152716d696e743a206e6f2072656d61696e696e6760701b60448201526064016108fe565b3360009081526016602052604081208054869290610e93908490612bc0565b90915550600090505b84811015610ecd57610ebb3382601154610eb69190612bc0565b611c98565b80610ec581612c89565b915050610e9c565b508360116000828254610ee09190612bc0565b909155505050505050565b807f0000000000000000000000000000000000000000000000000000000000000000811115610f5c5760405162461bcd60e51b815260206004820152601e60248201527f636865636b20616d6f756e743a2067726561746572207468616e206d6178000060448201526064016108fe565b336000908152601660205260409020547f000000000000000000000000000000000000000000000000000000000000000090610f99908390612bc0565b1115610fb75760405162461bcd60e51b81526004016108fe90612af5565b600b54421015610ffb5760405162461bcd60e51b815260206004820152600f60248201526e31b630b4b6903737ba103132b3b4b760891b60448201526064016108fe565b600c5442111561103d5760405162461bcd60e51b815260206004820152600d60248201526c31b630b4b69034b99037bb32b960991b60448201526064016108fe565b600d54829061104d908290612bec565b34101561108a5760405162461bcd60e51b815260206004820152600b60248201526a636c61696d20707269636560a81b60448201526064016108fe565b82600b600501546001826011546110a19190612bc0565b6110ab9190612c0b565b11156110ee5760405162461bcd60e51b81526020600482015260126024820152716d696e743a206e6f2072656d61696e696e6760701b60448201526064016108fe565b336000908152601660205260408120805486929061110d908490612bc0565b90915550506040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061118c87878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050611f41565b6111c85760405162461bcd60e51b815260206004820152600d60248201526c1d995c9a599e4819985a5b1959609a1b60448201526064016108fe565b60005b858110156111f7576111e53382601154610eb69190612bc0565b806111ef81612c89565b9150506111cb565b50846011600082825461120a9190612bc0565b909155505050505050505050565b610a348383836040518060200160405280600081525061191b565b61123c33610ba1565b6112a15760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016108fe565b610b9981611f57565b6006546001600160a01b031633146112d45760405162461bcd60e51b81526004016108fe90612b3a565b478061130f5760405162461bcd60e51b815260206004820152600a6024820152696e6f2062616c616e636560b01b60448201526064016108fe565b6001600160a01b03821661135d5760405162461bcd60e51b81526020600482015260156024820152747a65726f207265636569766572206164647265737360581b60448201526064016108fe565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611393573d6000803e3d6000fd5b5060405181906001600160a01b038416907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436490600090a35050565b6006546001600160a01b031633146113f85760405162461bcd60e51b81526004016108fe90612b3a565b80604051602001611409919061293e565b6040516020818303038152906040528051906020012060076040516020016114319190612989565b6040516020818303038152906040528051906020012014156114845760405162461bcd60e51b815260206004820152600c60248201526b73616d65206261736555524960a01b60448201526064016108fe565b60006007805461149390612c4e565b80601f01602080910402602001604051908101604052809291908181526020018280546114bf90612c4e565b801561150c5780601f106114e15761010080835404028352916020019161150c565b820191906000526020600020905b8154815290600101906020018083116114ef57829003601f168201915b5050855193945061152893600793506020870192509050612554565b507fc41b7cb64e5be01af4afc2641afc861432136270f4206b7773f229b658b966998183604051610b58929190612a75565b6000818152600260205260408120546001600160a01b0316806107fe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108fe565b6006546001600160a01b031633146115fb5760405162461bcd60e51b81526004016108fe90612b3a565b6001600160a01b0382166116515760405162461bcd60e51b815260206004820152601e60248201527f7a65726f20726f79616c747920726563697069656e742061646472657373000060448201526064016108fe565b600980546001600160a01b0319166001600160a01b038416908117909155600882905560408051918252602082018390527f406560a4b7601a05d9f2e8bd7914c92c31343335e3d4a7fbe6c04a9f44c938289101610b58565b600780546116b790612c4e565b80601f01602080910402602001604051908101604052809291908181526020018280546116e390612c4e565b80156117305780601f1061170557610100808354040283529160200191611730565b820191906000526020600020905b81548152906001019060200180831161171357829003601f168201915b505050505081565b60006001600160a01b0382166117a35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108fe565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146117e95760405162461bcd60e51b81526004016108fe90612b3a565b6117f36000611ff2565b565b6006546001600160a01b0316331461181f5760405162461bcd60e51b81526004016108fe90612b3a565b600a54819061183060c96001612bc0565b61183a9190612c0b565b10156118775760405162461bcd60e51b815260206004820152600c60248201526b6e6f2072656d61696e696e6760a01b60448201526064016108fe565b60005b818110156118a6576118948382600a54610eb69190612bc0565b8061189e81612c89565b91505061187a565b5080600a60008282546118b99190612bc0565b9091555050604080516001600160a01b0384168152602081018390527f14566dd49e7947a07c74ce2be447ed96511fcdcdefb6ddc16e7b8de3d924f3159101610b58565b60606001805461081390612c4e565b611917338383612044565b5050565b6119253383611cbb565b6119415760405162461bcd60e51b81526004016108fe90612b6f565b61194d84848484612113565b50505050565b600061195e82611c0d565b6119c25760405162461bcd60e51b815260206004820152602f60248201527f6765742066656520726563697069656e74733a20717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108fe565b50506009546001600160a01b031690565b6000806119df83611c0d565b611a415760405162461bcd60e51b815260206004820152602d60248201527f67657420726f79616c747920696e666f3a20717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016108fe565b50506009546008546001600160a01b0390911692909150565b6060611a6582611c0d565b611ac95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108fe565b6000611ad3612146565b90506000815111611af35760405180602001604052806000815250611b1e565b80611afd84612155565b604051602001611b0e92919061295a565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314611b4f5760405162461bcd60e51b81526004016108fe90612b3a565b6001600160a01b038116611bb45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fe565b610b9981611ff2565b60006001600160e01b031982166380ac58cd60e01b1480611bee57506001600160e01b03198216635b5e139f60e01b145b806107fe57506301ffc9a760e01b6001600160e01b03198316146107fe565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c5f8261155a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600160156000828254611cab9190612bc0565b9091555061191790508282612253565b6000611cc682611c0d565b611d275760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108fe565b6000611d328361155a565b9050806001600160a01b0316846001600160a01b03161480611d6d5750836001600160a01b0316611d6284610896565b6001600160a01b0316145b80611d9d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611db88261155a565b6001600160a01b031614611e1c5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108fe565b6001600160a01b038216611e7e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108fe565b611e89600082611c2a565b6001600160a01b0383166000908152600360205260408120805460019290611eb2908490612c0b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ee0908490612bc0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082611f4e858461226d565b14949350505050565b6000611f628261155a565b9050611f6f600083611c2a565b6001600160a01b0381166000908152600360205260408120805460019290611f98908490612c0b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120a65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108fe565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61211e848484611da5565b61212a848484846122e1565b61194d5760405162461bcd60e51b81526004016108fe90612aa3565b60606007805461081390612c4e565b6060816121795750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121a3578061218d81612c89565b915061219c9050600a83612bd8565b915061217d565b60008167ffffffffffffffff8111156121be576121be612cfa565b6040519080825280601f01601f1916602001820160405280156121e8576020820181803683370190505b5090505b8415611d9d576121fd600183612c0b565b915061220a600a86612ca4565b612215906030612bc0565b60f81b81838151811061222a5761222a612ce4565b60200101906001600160f81b031916908160001a90535061224c600a86612bd8565b94506121ec565b6119178282604051806020016040528060008152506123ee565b600081815b84518110156122d957600085828151811061228f5761228f612ce4565b602002602001015190508083116122b557600083815260208290526040902092506122c6565b600081815260208490526040902092505b50806122d181612c89565b915050612272565b509392505050565b60006001600160a01b0384163b156123e357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612325903390899088908890600401612a25565b602060405180830381600087803b15801561233f57600080fd5b505af192505050801561236f575060408051601f3d908101601f1916820190925261236c9181019061288a565b60015b6123c9573d80801561239d576040519150601f19603f3d011682016040523d82523d6000602084013e6123a2565b606091505b5080516123c15760405162461bcd60e51b81526004016108fe90612aa3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d9d565b506001949350505050565b6123f88383612421565b61240560008484846122e1565b610a345760405162461bcd60e51b81526004016108fe90612aa3565b6001600160a01b0382166124775760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108fe565b61248081611c0d565b156124cd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108fe565b6001600160a01b03821660009081526003602052604081208054600192906124f6908490612bc0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461256090612c4e565b90600052602060002090601f01602090048101928261258257600085556125c8565b82601f1061259b57805160ff19168380011785556125c8565b828001600101855582156125c8579182015b828111156125c85782518255916020019190600101906125ad565b506125d49291506125d8565b5090565b5b808211156125d457600081556001016125d9565b600067ffffffffffffffff8084111561260857612608612cfa565b604051601f8501601f19908116603f0116810190828211818310171561263057612630612cfa565b8160405280935085815286868601111561264957600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561267557600080fd5b8135611b1e81612d10565b6000806040838503121561269357600080fd5b823561269e81612d10565b946020939093013593505050565b600080604083850312156126bf57600080fd5b82356126ca81612d10565b915060208301356126da81612d10565b809150509250929050565b6000806000606084860312156126fa57600080fd5b833561270581612d10565b9250602084013561271581612d10565b929592945050506040919091013590565b6000806000806080858703121561273c57600080fd5b843561274781612d10565b9350602085013561275781612d10565b925060408501359150606085013567ffffffffffffffff81111561277a57600080fd5b8501601f8101871361278b57600080fd5b61279a878235602084016125ed565b91505092959194509250565b600080604083850312156127b957600080fd5b82356127c481612d10565b9150602083013580151581146126da57600080fd5b6000806000604084860312156127ee57600080fd5b833567ffffffffffffffff8082111561280657600080fd5b818601915086601f83011261281a57600080fd5b81358181111561282957600080fd5b8760208260051b850101111561283e57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561286657600080fd5b5035919050565b60006020828403121561287f57600080fd5b8135611b1e81612d25565b60006020828403121561289c57600080fd5b8151611b1e81612d25565b6000602082840312156128b957600080fd5b813567ffffffffffffffff8111156128d057600080fd5b8201601f810184136128e157600080fd5b611d9d848235602084016125ed565b6000806040838503121561290357600080fd5b50508035926020909101359150565b6000815180845261292a816020860160208601612c22565b601f01601f19169290920160200192915050565b60008251612950818460208701612c22565b9190910192915050565b6000835161296c818460208801612c22565b835190830190612980818360208801612c22565b01949350505050565b600080835481600182811c9150808316806129a557607f831692505b60208084108214156129c557634e487b7160e01b86526022600452602486fd5b8180156129d957600181146129ea57612a17565b60ff19861689528489019650612a17565b60008a81526020902060005b86811015612a0f5781548b8201529085019083016129f6565b505084890196505b509498975050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a5890830184612912565b9695505050505050565b602081526000611b1e6020830184612912565b604081526000612a886040830185612912565b8281036020840152612a9a8185612912565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526025908201527f636865636b20616d6f756e743a206d696e7465642067726561746572207468616040820152640dc40dac2f60db1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612bd357612bd3612cb8565b500190565b600082612be757612be7612cce565b500490565b6000816000190483118215151615612c0657612c06612cb8565b500290565b600082821015612c1d57612c1d612cb8565b500390565b60005b83811015612c3d578181015183820152602001612c25565b8381111561194d5750506000910152565b600181811c90821680612c6257607f821691505b60208210811415612c8357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c9d57612c9d612cb8565b5060010190565b600082612cb357612cb3612cce565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b9957600080fd5b6001600160e01b031981168114610b9957600080fdfea26469706673582212201558ad1b9a7517490d052f4c0100d5d76ca7008ba7ac8d170c2b1fa016d4d0b164736f6c6343000806003300000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000062ac6cc00000000000000000000000000000000000000000000000000000000062ad941000000000000000000000000000000000000000000000000000b1a2bc2ec5000018459ef0dbfc24e636889515e358b29cbfc5f3972d43c3244b7fb531fa922e3400000000000000000000000000000000000000000000000000000000000000ca00000000000000000000000000000000000000000000000000000000000005290000000000000000000000000000000000000000000000000000000062ad94110000000000000000000000000000000000000000000000000000000062aee590000000000000000000000000000000000000000000000000011c37937e080000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000011435259505459515545532e44455349524500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044344535200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003968747470733a2f2f6265616d706c75736275636b65742e73332e61702d656173742d312e616d617a6f6e6177732e636f6d2f6465736972652f00000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80635fb27c941161012e578063a22cb465116100ab578063cb8657071161006f578063cb865707146106f0578063e985e9c514610705578063ee8a59c31461074e578063f1955ccc14610764578063f2fde38b1461079e57600080fd5b8063a22cb46514610650578063b88d4fde14610670578063b9c4d9fb14610690578063bb3bafd6146106b0578063c87b56dd146106d057600080fd5b8063715018a6116100f2578063715018a6146105d25780637571f15c146105e75780638da5cb5b1461060757806395d89b41146106255780639cca6b1d1461063a57600080fd5b80635fb27c94146105055780636352211e1461055d5780636c2f5acd1461057d5780636e34a4821461059d57806370a08231146105b257600080fd5b806321ff9970116101bc5780633b439351116101805780633b4393511461047257806342842e0e1461048557806342966c68146104a557806351cff8d9146104c557806355f804b3146104e557600080fd5b806321ff9970146103c057806323493c4a146103e057806323b872dd146104005780632a55205a146104205780632db115441461045f57600080fd5b806311cf11f61161020357806311cf11f61461031f57806318160ddd146103345780631e52da2f1461034a5780631e7269c51461035f57806321942c5a1461038c57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf5780630ebd4c7f146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b36600461286d565b6107be565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610804565b60405161026c9190612a62565b3480156102a357600080fd5b506102b76102b2366004612854565b610896565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004612680565b610923565b005b3480156102fd57600080fd5b5061031161030c366004612854565b610a39565b60405190815260200161026c565b34801561032b57600080fd5b50610311600281565b34801561034057600080fd5b5061031160155481565b34801561035657600080fd5b5061031160c981565b34801561036b57600080fd5b5061031161037a366004612663565b60166020526000908152604090205481565b34801561039857600080fd5b506103117f000000000000000000000000000000000000000000000000000000000000000481565b3480156103cc57600080fd5b506102ef6103db366004612854565b610aa9565b3480156103ec57600080fd5b506102ef6103fb366004612663565b610b64565b34801561040c57600080fd5b506102ef61041b3660046126e5565b610b9c565b34801561042c57600080fd5b5061044061043b3660046128f0565b610bce565b604080516001600160a01b03909316835260208301919091520161026c565b6102ef61046d366004612854565b610c6d565b6102ef6104803660046127d9565b610eeb565b34801561049157600080fd5b506102ef6104a03660046126e5565b611218565b3480156104b157600080fd5b506102ef6104c0366004612854565b611233565b3480156104d157600080fd5b506102ef6104e0366004612663565b6112aa565b3480156104f157600080fd5b506102ef6105003660046128a7565b6113ce565b34801561051157600080fd5b50600b54600c54600d54600e54600f5460105461053095949392919086565b604080519687526020870195909552938501929092526060840152608083015260a082015260c00161026c565b34801561056957600080fd5b506102b7610578366004612854565b61155a565b34801561058957600080fd5b506102ef610598366004612680565b6115d1565b3480156105a957600080fd5b5061028a6116aa565b3480156105be57600080fd5b506103116105cd366004612663565b611738565b3480156105de57600080fd5b506102ef6117bf565b3480156105f357600080fd5b506102ef610602366004612680565b6117f5565b34801561061357600080fd5b506006546001600160a01b03166102b7565b34801561063157600080fd5b5061028a6118fd565b34801561064657600080fd5b5061031160115481565b34801561065c57600080fd5b506102ef61066b3660046127a6565b61190c565b34801561067c57600080fd5b506102ef61068b366004612726565b61191b565b34801561069c57600080fd5b506102b76106ab366004612854565b611953565b3480156106bc57600080fd5b506104406106cb366004612854565b6119d3565b3480156106dc57600080fd5b5061028a6106eb366004612854565b611a5a565b3480156106fc57600080fd5b50610311600181565b34801561071157600080fd5b506102606107203660046126ac565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075a57600080fd5b50610311600a5481565b34801561077057600080fd5b5060125460135460145461078392919083565b6040805193845260208401929092529082015260600161026c565b3480156107aa57600080fd5b506102ef6107b9366004612663565b611b25565b60006001600160e01b031982166380ac58cd60e01b14806107ef57506001600160e01b03198216635b5e139f60e01b145b806107fe57506107fe82611bbd565b92915050565b60606000805461081390612c4e565b80601f016020809104026020016040519081016040528092919081815260200182805461083f90612c4e565b801561088c5780601f106108615761010080835404028352916020019161088c565b820191906000526020600020905b81548152906001019060200180831161086f57829003601f168201915b5050505050905090565b60006108a182611c0d565b6109075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061092e8261155a565b9050806001600160a01b0316836001600160a01b0316141561099c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108fe565b336001600160a01b03821614806109b857506109b88133610720565b610a2a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108fe565b610a348383611c2a565b505050565b6000610a4482611c0d565b610aa15760405162461bcd60e51b815260206004820152602860248201527f67657420666565206270733a20717565727920666f72206e6f6e657869737465604482015267373a103a37b5b2b760c11b60648201526084016108fe565b505060085490565b6006546001600160a01b03163314610ad35760405162461bcd60e51b81526004016108fe90612b3a565b600e54811415610b1e5760405162461bcd60e51b81526020600482015260166024820152751d5c19185d19481c9bdbdd0e881cd85b59481c9bdbdd60521b60448201526064016108fe565b600e80549082905560408051828152602081018490527f809ea3bfb2b4c233654e9bd385eb6e59639fceb90b732f3bb6d13a9af80641d091015b60405180910390a15050565b6006546001600160a01b03163314610b8e5760405162461bcd60e51b81526004016108fe90612b3a565b610b99816001611c98565b50565b610ba7335b82611cbb565b610bc35760405162461bcd60e51b81526004016108fe90612b6f565b610a34838383611da5565b600080610bda84611c0d565b610c385760405162461bcd60e51b815260206004820152602960248201527f726f79616c747920696e666f3a20717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108fe565b6009546008546001600160a01b039091169061271090610c589086612bec565b610c629190612bd8565b915091509250929050565b807f0000000000000000000000000000000000000000000000000000000000000004811115610cde5760405162461bcd60e51b815260206004820152601e60248201527f636865636b20616d6f756e743a2067726561746572207468616e206d6178000060448201526064016108fe565b336000908152601660205260409020547f000000000000000000000000000000000000000000000000000000000000000490610d1b908390612bc0565b1115610d395760405162461bcd60e51b81526004016108fe90612af5565b601254421015610d7c5760405162461bcd60e51b815260206004820152600e60248201526d36b4b73a103737ba103132b3b4b760911b60448201526064016108fe565b601354421115610dbd5760405162461bcd60e51b815260206004820152600c60248201526b36b4b73a1034b99037bb32b960a11b60448201526064016108fe565b6014548290610dcd908290612bec565b341015610e105760405162461bcd60e51b81526020600482015260116024820152707075626c6963206d696e7420707269636560781b60448201526064016108fe565b82600b60050154600182601154610e279190612bc0565b610e319190612c0b565b1115610e745760405162461bcd60e51b81526020600482015260126024820152716d696e743a206e6f2072656d61696e696e6760701b60448201526064016108fe565b3360009081526016602052604081208054869290610e93908490612bc0565b90915550600090505b84811015610ecd57610ebb3382601154610eb69190612bc0565b611c98565b80610ec581612c89565b915050610e9c565b508360116000828254610ee09190612bc0565b909155505050505050565b807f0000000000000000000000000000000000000000000000000000000000000004811115610f5c5760405162461bcd60e51b815260206004820152601e60248201527f636865636b20616d6f756e743a2067726561746572207468616e206d6178000060448201526064016108fe565b336000908152601660205260409020547f000000000000000000000000000000000000000000000000000000000000000490610f99908390612bc0565b1115610fb75760405162461bcd60e51b81526004016108fe90612af5565b600b54421015610ffb5760405162461bcd60e51b815260206004820152600f60248201526e31b630b4b6903737ba103132b3b4b760891b60448201526064016108fe565b600c5442111561103d5760405162461bcd60e51b815260206004820152600d60248201526c31b630b4b69034b99037bb32b960991b60448201526064016108fe565b600d54829061104d908290612bec565b34101561108a5760405162461bcd60e51b815260206004820152600b60248201526a636c61696d20707269636560a81b60448201526064016108fe565b82600b600501546001826011546110a19190612bc0565b6110ab9190612c0b565b11156110ee5760405162461bcd60e51b81526020600482015260126024820152716d696e743a206e6f2072656d61696e696e6760701b60448201526064016108fe565b336000908152601660205260408120805486929061110d908490612bc0565b90915550506040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061118c87878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050611f41565b6111c85760405162461bcd60e51b815260206004820152600d60248201526c1d995c9a599e4819985a5b1959609a1b60448201526064016108fe565b60005b858110156111f7576111e53382601154610eb69190612bc0565b806111ef81612c89565b9150506111cb565b50846011600082825461120a9190612bc0565b909155505050505050505050565b610a348383836040518060200160405280600081525061191b565b61123c33610ba1565b6112a15760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016108fe565b610b9981611f57565b6006546001600160a01b031633146112d45760405162461bcd60e51b81526004016108fe90612b3a565b478061130f5760405162461bcd60e51b815260206004820152600a6024820152696e6f2062616c616e636560b01b60448201526064016108fe565b6001600160a01b03821661135d5760405162461bcd60e51b81526020600482015260156024820152747a65726f207265636569766572206164647265737360581b60448201526064016108fe565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611393573d6000803e3d6000fd5b5060405181906001600160a01b038416907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436490600090a35050565b6006546001600160a01b031633146113f85760405162461bcd60e51b81526004016108fe90612b3a565b80604051602001611409919061293e565b6040516020818303038152906040528051906020012060076040516020016114319190612989565b6040516020818303038152906040528051906020012014156114845760405162461bcd60e51b815260206004820152600c60248201526b73616d65206261736555524960a01b60448201526064016108fe565b60006007805461149390612c4e565b80601f01602080910402602001604051908101604052809291908181526020018280546114bf90612c4e565b801561150c5780601f106114e15761010080835404028352916020019161150c565b820191906000526020600020905b8154815290600101906020018083116114ef57829003601f168201915b5050855193945061152893600793506020870192509050612554565b507fc41b7cb64e5be01af4afc2641afc861432136270f4206b7773f229b658b966998183604051610b58929190612a75565b6000818152600260205260408120546001600160a01b0316806107fe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108fe565b6006546001600160a01b031633146115fb5760405162461bcd60e51b81526004016108fe90612b3a565b6001600160a01b0382166116515760405162461bcd60e51b815260206004820152601e60248201527f7a65726f20726f79616c747920726563697069656e742061646472657373000060448201526064016108fe565b600980546001600160a01b0319166001600160a01b038416908117909155600882905560408051918252602082018390527f406560a4b7601a05d9f2e8bd7914c92c31343335e3d4a7fbe6c04a9f44c938289101610b58565b600780546116b790612c4e565b80601f01602080910402602001604051908101604052809291908181526020018280546116e390612c4e565b80156117305780601f1061170557610100808354040283529160200191611730565b820191906000526020600020905b81548152906001019060200180831161171357829003601f168201915b505050505081565b60006001600160a01b0382166117a35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108fe565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146117e95760405162461bcd60e51b81526004016108fe90612b3a565b6117f36000611ff2565b565b6006546001600160a01b0316331461181f5760405162461bcd60e51b81526004016108fe90612b3a565b600a54819061183060c96001612bc0565b61183a9190612c0b565b10156118775760405162461bcd60e51b815260206004820152600c60248201526b6e6f2072656d61696e696e6760a01b60448201526064016108fe565b60005b818110156118a6576118948382600a54610eb69190612bc0565b8061189e81612c89565b91505061187a565b5080600a60008282546118b99190612bc0565b9091555050604080516001600160a01b0384168152602081018390527f14566dd49e7947a07c74ce2be447ed96511fcdcdefb6ddc16e7b8de3d924f3159101610b58565b60606001805461081390612c4e565b611917338383612044565b5050565b6119253383611cbb565b6119415760405162461bcd60e51b81526004016108fe90612b6f565b61194d84848484612113565b50505050565b600061195e82611c0d565b6119c25760405162461bcd60e51b815260206004820152602f60248201527f6765742066656520726563697069656e74733a20717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108fe565b50506009546001600160a01b031690565b6000806119df83611c0d565b611a415760405162461bcd60e51b815260206004820152602d60248201527f67657420726f79616c747920696e666f3a20717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016108fe565b50506009546008546001600160a01b0390911692909150565b6060611a6582611c0d565b611ac95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108fe565b6000611ad3612146565b90506000815111611af35760405180602001604052806000815250611b1e565b80611afd84612155565b604051602001611b0e92919061295a565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314611b4f5760405162461bcd60e51b81526004016108fe90612b3a565b6001600160a01b038116611bb45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fe565b610b9981611ff2565b60006001600160e01b031982166380ac58cd60e01b1480611bee57506001600160e01b03198216635b5e139f60e01b145b806107fe57506301ffc9a760e01b6001600160e01b03198316146107fe565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c5f8261155a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600160156000828254611cab9190612bc0565b9091555061191790508282612253565b6000611cc682611c0d565b611d275760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108fe565b6000611d328361155a565b9050806001600160a01b0316846001600160a01b03161480611d6d5750836001600160a01b0316611d6284610896565b6001600160a01b0316145b80611d9d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611db88261155a565b6001600160a01b031614611e1c5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108fe565b6001600160a01b038216611e7e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108fe565b611e89600082611c2a565b6001600160a01b0383166000908152600360205260408120805460019290611eb2908490612c0b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ee0908490612bc0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082611f4e858461226d565b14949350505050565b6000611f628261155a565b9050611f6f600083611c2a565b6001600160a01b0381166000908152600360205260408120805460019290611f98908490612c0b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120a65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108fe565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61211e848484611da5565b61212a848484846122e1565b61194d5760405162461bcd60e51b81526004016108fe90612aa3565b60606007805461081390612c4e565b6060816121795750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121a3578061218d81612c89565b915061219c9050600a83612bd8565b915061217d565b60008167ffffffffffffffff8111156121be576121be612cfa565b6040519080825280601f01601f1916602001820160405280156121e8576020820181803683370190505b5090505b8415611d9d576121fd600183612c0b565b915061220a600a86612ca4565b612215906030612bc0565b60f81b81838151811061222a5761222a612ce4565b60200101906001600160f81b031916908160001a90535061224c600a86612bd8565b94506121ec565b6119178282604051806020016040528060008152506123ee565b600081815b84518110156122d957600085828151811061228f5761228f612ce4565b602002602001015190508083116122b557600083815260208290526040902092506122c6565b600081815260208490526040902092505b50806122d181612c89565b915050612272565b509392505050565b60006001600160a01b0384163b156123e357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612325903390899088908890600401612a25565b602060405180830381600087803b15801561233f57600080fd5b505af192505050801561236f575060408051601f3d908101601f1916820190925261236c9181019061288a565b60015b6123c9573d80801561239d576040519150601f19603f3d011682016040523d82523d6000602084013e6123a2565b606091505b5080516123c15760405162461bcd60e51b81526004016108fe90612aa3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d9d565b506001949350505050565b6123f88383612421565b61240560008484846122e1565b610a345760405162461bcd60e51b81526004016108fe90612aa3565b6001600160a01b0382166124775760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108fe565b61248081611c0d565b156124cd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108fe565b6001600160a01b03821660009081526003602052604081208054600192906124f6908490612bc0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461256090612c4e565b90600052602060002090601f01602090048101928261258257600085556125c8565b82601f1061259b57805160ff19168380011785556125c8565b828001600101855582156125c8579182015b828111156125c85782518255916020019190600101906125ad565b506125d49291506125d8565b5090565b5b808211156125d457600081556001016125d9565b600067ffffffffffffffff8084111561260857612608612cfa565b604051601f8501601f19908116603f0116810190828211818310171561263057612630612cfa565b8160405280935085815286868601111561264957600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561267557600080fd5b8135611b1e81612d10565b6000806040838503121561269357600080fd5b823561269e81612d10565b946020939093013593505050565b600080604083850312156126bf57600080fd5b82356126ca81612d10565b915060208301356126da81612d10565b809150509250929050565b6000806000606084860312156126fa57600080fd5b833561270581612d10565b9250602084013561271581612d10565b929592945050506040919091013590565b6000806000806080858703121561273c57600080fd5b843561274781612d10565b9350602085013561275781612d10565b925060408501359150606085013567ffffffffffffffff81111561277a57600080fd5b8501601f8101871361278b57600080fd5b61279a878235602084016125ed565b91505092959194509250565b600080604083850312156127b957600080fd5b82356127c481612d10565b9150602083013580151581146126da57600080fd5b6000806000604084860312156127ee57600080fd5b833567ffffffffffffffff8082111561280657600080fd5b818601915086601f83011261281a57600080fd5b81358181111561282957600080fd5b8760208260051b850101111561283e57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561286657600080fd5b5035919050565b60006020828403121561287f57600080fd5b8135611b1e81612d25565b60006020828403121561289c57600080fd5b8151611b1e81612d25565b6000602082840312156128b957600080fd5b813567ffffffffffffffff8111156128d057600080fd5b8201601f810184136128e157600080fd5b611d9d848235602084016125ed565b6000806040838503121561290357600080fd5b50508035926020909101359150565b6000815180845261292a816020860160208601612c22565b601f01601f19169290920160200192915050565b60008251612950818460208701612c22565b9190910192915050565b6000835161296c818460208801612c22565b835190830190612980818360208801612c22565b01949350505050565b600080835481600182811c9150808316806129a557607f831692505b60208084108214156129c557634e487b7160e01b86526022600452602486fd5b8180156129d957600181146129ea57612a17565b60ff19861689528489019650612a17565b60008a81526020902060005b86811015612a0f5781548b8201529085019083016129f6565b505084890196505b509498975050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a5890830184612912565b9695505050505050565b602081526000611b1e6020830184612912565b604081526000612a886040830185612912565b8281036020840152612a9a8185612912565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526025908201527f636865636b20616d6f756e743a206d696e7465642067726561746572207468616040820152640dc40dac2f60db1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612bd357612bd3612cb8565b500190565b600082612be757612be7612cce565b500490565b6000816000190483118215151615612c0657612c06612cb8565b500290565b600082821015612c1d57612c1d612cb8565b500390565b60005b83811015612c3d578181015183820152602001612c25565b8381111561194d5750506000910152565b600181811c90821680612c6257607f821691505b60208210811415612c8357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c9d57612c9d612cb8565b5060010190565b600082612cb357612cb3612cce565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b9957600080fd5b6001600160e01b031981168114610b9957600080fdfea26469706673582212201558ad1b9a7517490d052f4c0100d5d76ca7008ba7ac8d170c2b1fa016d4d0b164736f6c63430008060033

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

00000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000062ac6cc00000000000000000000000000000000000000000000000000000000062ad941000000000000000000000000000000000000000000000000000b1a2bc2ec5000018459ef0dbfc24e636889515e358b29cbfc5f3972d43c3244b7fb531fa922e3400000000000000000000000000000000000000000000000000000000000000ca00000000000000000000000000000000000000000000000000000000000005290000000000000000000000000000000000000000000000000000000062ad94110000000000000000000000000000000000000000000000000000000062aee590000000000000000000000000000000000000000000000000011c37937e080000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000011435259505459515545532e44455349524500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044344535200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003968747470733a2f2f6265616d706c75736275636b65742e73332e61702d656173742d312e616d617a6f6e6177732e636f6d2f6465736972652f00000000000000

-----Decoded View---------------
Arg [0] : baseInfo_ (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [1] : whiteListInfo_ (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [2] : publicMintInfo_ (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
21 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 0000000000000000000000000000000000000000000000000000000062ac6cc0
Arg [2] : 0000000000000000000000000000000000000000000000000000000062ad9410
Arg [3] : 00000000000000000000000000000000000000000000000000b1a2bc2ec50000
Arg [4] : 18459ef0dbfc24e636889515e358b29cbfc5f3972d43c3244b7fb531fa922e34
Arg [5] : 00000000000000000000000000000000000000000000000000000000000000ca
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000529
Arg [7] : 0000000000000000000000000000000000000000000000000000000062ad9411
Arg [8] : 0000000000000000000000000000000000000000000000000000000062aee590
Arg [9] : 000000000000000000000000000000000000000000000000011c37937e080000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [11] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [15] : 435259505459515545532e444553495245000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [17] : 4344535200000000000000000000000000000000000000000000000000000000
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000039
Arg [19] : 68747470733a2f2f6265616d706c75736275636b65742e73332e61702d656173
Arg [20] : 742d312e616d617a6f6e6177732e636f6d2f6465736972652f00000000000000


Deployed Bytecode Sourcemap

54750:7900:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54329:346;;;;;;;;;;-1:-1:-1;54329:346:0;;;;;:::i;:::-;;:::i;:::-;;;9956:14:1;;9949:22;9931:41;;9919:2;9904:18;54329:346:0;;;;;;;;25959:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27652:308::-;;;;;;;;;;-1:-1:-1;27652:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8680:32:1;;;8662:51;;8650:2;8635:18;27652:308:0;8617:102:1;27175:411:0;;;;;;;;;;-1:-1:-1;27175:411:0;;;;;:::i;:::-;;:::i;:::-;;62171:185;;;;;;;;;;-1:-1:-1;62171:185:0;;;;;:::i;:::-;;:::i;:::-;;;25027:25:1;;;25015:2;25000:18;62171:185:0;24982:76:1;55499:49:0;;;;;;;;;;;;55547:1;55499:49;;55872:26;;;;;;;;;;;;;;;;55555:49;;;;;;;;;;;;55601:3;55555:49;;55983:41;;;;;;;;;;-1:-1:-1;55983:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;55822;;;;;;;;;;;;;;;58715:285;;;;;;;;;;-1:-1:-1;58715:285:0;;;;;:::i;:::-;;:::i;61160:112::-;;;;;;;;;;-1:-1:-1;61160:112:0;;;;;:::i;:::-;;:::i;28571:376::-;;;;;;;;;;-1:-1:-1;28571:376:0;;;;;:::i;:::-;;:::i;62364:283::-;;;;;;;;;;-1:-1:-1;62364:283:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;8932:32:1;;;8914:51;;8996:2;8981:18;;8974:34;;;;8887:18;62364:283:0;8869:145:1;59936:462:0;;;;;;:::i;:::-;;:::i;59052:716::-;;;;;;:::i;:::-;;:::i;29018:185::-;;;;;;;;;;-1:-1:-1;29018:185:0;;;;;:::i;:::-;;:::i;39400:282::-;;;;;;;;;;-1:-1:-1;39400:282:0;;;;;:::i;:::-;;:::i;60406:317::-;;;;;;;;;;-1:-1:-1;60406:317:0;;;;;:::i;:::-;;:::i;53949:372::-;;;;;;;;;;-1:-1:-1;53949:372:0;;;;;:::i;:::-;;:::i;55652:34::-;;;;;;;;;;-1:-1:-1;55652:34:0;;;;;;;;;;;;;;;;;;;;;;;;;25674:25:1;;;25730:2;25715:18;;25708:34;;;;25758:18;;;25751:34;;;;25816:2;25801:18;;25794:34;25859:3;25844:19;;25837:35;25903:3;25888:19;;25881:35;25661:3;25646:19;55652:34:0;25628:294:1;25566:326:0;;;;;;;;;;-1:-1:-1;25566:326:0;;;;;:::i;:::-;;:::i;61306:307::-;;;;;;;;;;-1:-1:-1;61306:307:0;;;;;:::i;:::-;;:::i;53546:23::-;;;;;;;;;;;;;:::i;25209:295::-;;;;;;;;;;-1:-1:-1;25209:295:0;;;;;:::i;:::-;;:::i;41429:103::-;;;;;;;;;;;;;:::i;60731:421::-;;;;;;;;;;-1:-1:-1;60731:421:0;;;;;:::i;:::-;;:::i;40778:87::-;;;;;;;;;;-1:-1:-1;40851:6:0;;-1:-1:-1;;;;;40851:6:0;40778:87;;26128:104;;;;;;;;;;;;;:::i;55693:33::-;;;;;;;;;;;;;;;;28032:187;;;;;;;;;;-1:-1:-1;28032:187:0;;;;;:::i;:::-;;:::i;29274:365::-;;;;;;;;;;-1:-1:-1;29274:365:0;;;;;:::i;:::-;;:::i;61921:242::-;;;;;;;;;;-1:-1:-1;61921:242:0;;;;;:::i;:::-;;:::i;61621:292::-;;;;;;;;;;-1:-1:-1;61621:292:0;;;;;:::i;:::-;;:::i;26303:468::-;;;;;;;;;;-1:-1:-1;26303:468:0;;;;;:::i;:::-;;:::i;55456:36::-;;;;;;;;;;;;55491:1;55456:36;;28290:214;;;;;;;;;;-1:-1:-1;28290:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;28461:25:0;;;28432:4;28461:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28290:214;55611:32;;;;;;;;;;;;;;;;55733:36;;;;;;;;;;-1:-1:-1;55733:36:0;;;;;;;;;;;;;;;;25265:25:1;;;25321:2;25306:18;;25299:34;;;;25349:18;;;25342:34;25253:2;25238:18;55733:36:0;25220:162:1;41687:238:0;;;;;;;;;;-1:-1:-1;41687:238:0;;;;;:::i;:::-;;:::i;54329:346::-;54467:4;-1:-1:-1;;;;;;54509:40:0;;-1:-1:-1;;;54509:40:0;;:105;;-1:-1:-1;;;;;;;54566:48:0;;-1:-1:-1;;;54566:48:0;54509:105;:158;;;;54631:36;54655:11;54631:23;:36::i;:::-;54489:178;54329:346;-1:-1:-1;;54329:346:0:o;25959:100::-;26013:13;26046:5;26039:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25959:100;:::o;27652:308::-;27773:7;27820:16;27828:7;27820;:16::i;:::-;27798:110;;;;-1:-1:-1;;;27798:110:0;;18646:2:1;27798:110:0;;;18628:21:1;18685:2;18665:18;;;18658:30;18724:34;18704:18;;;18697:62;-1:-1:-1;;;18775:18:1;;;18768:42;18827:19;;27798:110:0;;;;;;;;;-1:-1:-1;27928:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27928:24:0;;27652:308::o;27175:411::-;27256:13;27272:23;27287:7;27272:14;:23::i;:::-;27256:39;;27320:5;-1:-1:-1;;;;;27314:11:0;:2;-1:-1:-1;;;;;27314:11:0;;;27306:57;;;;-1:-1:-1;;;27306:57:0;;21286:2:1;27306:57:0;;;21268:21:1;21325:2;21305:18;;;21298:30;21364:34;21344:18;;;21337:62;-1:-1:-1;;;21415:18:1;;;21408:31;21456:19;;27306:57:0;21258:223:1;27306:57:0;20018:10;-1:-1:-1;;;;;27398:21:0;;;;:62;;-1:-1:-1;27423:37:0;27440:5;20018:10;28290:214;:::i;27423:37::-;27376:168;;;;-1:-1:-1;;;27376:168:0;;16287:2:1;27376:168:0;;;16269:21:1;16326:2;16306:18;;;16299:30;16365:34;16345:18;;;16338:62;16436:26;16416:18;;;16409:54;16480:19;;27376:168:0;16259:246:1;27376:168:0;27557:21;27566:2;27570:7;27557:8;:21::i;:::-;27245:341;27175:411;;:::o;62171:185::-;62230:7;62258:16;62266:7;62258;:16::i;:::-;62250:69;;;;-1:-1:-1;;;62250:69:0;;20537:2:1;62250:69:0;;;20519:21:1;20576:2;20556:18;;;20549:30;20615:34;20595:18;;;20588:62;-1:-1:-1;;;20666:18:1;;;20659:38;20714:19;;62250:69:0;20509:230:1;62250:69:0;-1:-1:-1;;62337:11:0;;;62171:185::o;58715:285::-;40851:6;;-1:-1:-1;;;;;40851:6:0;20018:10;40998:23;40990:68;;;;-1:-1:-1;;;40990:68:0;;;;;;;:::i;:::-;58799:24;;58788:35;::::1;;58780:70;;;::::0;-1:-1:-1;;;58780:70:0;;19770:2:1;58780:70:0::1;::::0;::::1;19752:21:1::0;19809:2;19789:18;;;19782:30;-1:-1:-1;;;19828:18:1;;;19821:52;19890:18;;58780:70:0::1;19742:172:1::0;58780:70:0::1;58879:24:::0;;;58914:34;;;;58964:28:::1;::::0;;10157:25:1;;;10213:2;10198:18;;10191:34;;;58964:28:0::1;::::0;10130:18:1;58964:28:0::1;;;;;;;;58769:231;58715:285:::0;:::o;61160:112::-;40851:6;;-1:-1:-1;;;;;40851:6:0;20018:10;40998:23;40990:68;;;;-1:-1:-1;;;40990:68:0;;;;;;;:::i;:::-;61227:37:::1;61244:9;55491:1;61227:16;:37::i;:::-;61160:112:::0;:::o;28571:376::-;28780:41;20018:10;28799:12;28813:7;28780:18;:41::i;:::-;28758:140;;;;-1:-1:-1;;;28758:140:0;;;;;;;:::i;:::-;28911:28;28921:4;28927:2;28931:7;28911:9;:28::i;62364:283::-;62467:7;62476;62509:16;62517:7;62509;:16::i;:::-;62501:70;;;;-1:-1:-1;;;62501:70:0;;15877:2:1;62501:70:0;;;15859:21:1;15916:2;15896:18;;;15889:30;15955:34;15935:18;;;15928:62;-1:-1:-1;;;16006:18:1;;;15999:39;16055:19;;62501:70:0;15849:231:1;62501:70:0;62590:17;;62618:11;;-1:-1:-1;;;;;62590:17:0;;;;62633:5;;62610:19;;:5;:19;:::i;:::-;62609:29;;;;:::i;:::-;62582:57;;;;62364:283;;;;;:::o;59936:462::-;60026:6;56099:16;56089:6;:26;;56081:69;;;;-1:-1:-1;;;56081:69:0;;22451:2:1;56081:69:0;;;22433:21:1;22490:2;22470:18;;;22463:30;22529:32;22509:18;;;22502:60;22579:18;;56081:69:0;22423:180:1;56081:69:0;56190:10;56183:18;;;;:6;:18;;;;;;56214:16;;56183:27;;56204:6;;56183:27;:::i;:::-;:47;;56161:134;;;;-1:-1:-1;;;56161:134:0;;;;;;;:::i;:::-;56753:14:::1;:24:::0;56734:15:::1;:43;;56726:70;;;::::0;-1:-1:-1;;;56726:70:0;;11048:2:1;56726:70:0::1;::::0;::::1;11030:21:1::0;11087:2;11067:18;;;11060:30;-1:-1:-1;;;11106:18:1;;;11099:44;11160:18;;56726:70:0::1;11020:164:1::0;56726:70:0::1;56834:22:::0;;56815:15:::1;:41;;56807:66;;;::::0;-1:-1:-1;;;56807:66:0;;23228:2:1;56807:66:0::1;::::0;::::1;23210:21:1::0;23267:2;23247:18;;;23240:30;-1:-1:-1;;;23286:18:1;;;23279:42;23338:18;;56807:66:0::1;23200:162:1::0;56807:66:0::1;56993:20:::0;;60095:6;;56993:29:::2;::::0;60095:6;;56993:29:::2;:::i;:::-;56980:9;:42;;56958:109;;;::::0;-1:-1:-1;;;56958:109:0;;18300:2:1;56958:109:0::2;::::0;::::2;18282:21:1::0;18339:2;18319:18;;;18312:30;-1:-1:-1;;;18358:18:1;;;18351:47;18415:18;;56958:109:0::2;18272:167:1::0;56958:109:0::2;60130:6:::3;57206:13;:17;;;57201:1;57192:6;57171:18;;:27;;;;:::i;:::-;:31;;;;:::i;:::-;:52;;57149:120;;;::::0;-1:-1:-1;;;57149:120:0;;22104:2:1;57149:120:0::3;::::0;::::3;22086:21:1::0;22143:2;22123:18;;;22116:30;-1:-1:-1;;;22162:18:1;;;22155:48;22220:18;;57149:120:0::3;22076:168:1::0;57149:120:0::3;60185:10:::4;60178:18;::::0;;;:6:::4;:18;::::0;;;;:28;;60200:6;;60178:18;:28:::4;::::0;60200:6;;60178:28:::4;:::i;:::-;::::0;;;-1:-1:-1;60241:9:0::4;::::0;-1:-1:-1;60236:116:0::4;60260:6;60256:1;:10;60236:116;;;60288:52;60305:10;60338:1;60317:18;;:22;;;;:::i;:::-;60288:16;:52::i;:::-;60268:3:::0;::::4;::::0;::::4;:::i;:::-;;;;60236:116;;;;60384:6;60362:18;;:28;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;;59936:462:0:o;59052:716::-;59164:6;56099:16;56089:6;:26;;56081:69;;;;-1:-1:-1;;;56081:69:0;;22451:2:1;56081:69:0;;;22433:21:1;22490:2;22470:18;;;22463:30;22529:32;22509:18;;;22502:60;22579:18;;56081:69:0;22423:180:1;56081:69:0;56190:10;56183:18;;;;:6;:18;;;;;;56214:16;;56183:27;;56204:6;;56183:27;:::i;:::-;:47;;56161:134;;;;-1:-1:-1;;;56161:134:0;;;;;;;:::i;:::-;56389:13:::1;:23:::0;56370:15:::1;:42;;56362:70;;;::::0;-1:-1:-1;;;56362:70:0;;11391:2:1;56362:70:0::1;::::0;::::1;11373:21:1::0;11430:2;11410:18;;;11403:30;-1:-1:-1;;;11449:18:1;;;11442:45;11504:18;;56362:70:0::1;11363:165:1::0;56362:70:0::1;56470:21:::0;;56451:15:::1;:40;;56443:66;;;::::0;-1:-1:-1;;;56443:66:0;;15535:2:1;56443:66:0::1;::::0;::::1;15517:21:1::0;15574:2;15554:18;;;15547:30;-1:-1:-1;;;15593:18:1;;;15586:43;15646:18;;56443:66:0::1;15507:163:1::0;56443:66:0::1;56610:19:::0;;59223:6;;56610:28:::2;::::0;59223:6;;56610:28:::2;:::i;:::-;56597:9;:41;;56589:65;;;::::0;-1:-1:-1;;;56589:65:0;;20946:2:1;56589:65:0::2;::::0;::::2;20928:21:1::0;20985:2;20965:18;;;20958:30;-1:-1:-1;;;21004:18:1;;;20997:41;21055:18;;56589:65:0::2;20918:161:1::0;56589:65:0::2;59258:6:::3;57206:13;:17;;;57201:1;57192:6;57171:18;;:27;;;;:::i;:::-;:31;;;;:::i;:::-;:52;;57149:120;;;::::0;-1:-1:-1;;;57149:120:0;;22104:2:1;57149:120:0::3;::::0;::::3;22086:21:1::0;22143:2;22123:18;;;22116:30;-1:-1:-1;;;22162:18:1;;;22155:48;22220:18;;57149:120:0::3;22076:168:1::0;57149:120:0::3;59313:10:::4;59306:18;::::0;;;:6:::4;:18;::::0;;;;:28;;59328:6;;59306:18;:28:::4;::::0;59328:6;;59306:28:::4;:::i;:::-;::::0;;;-1:-1:-1;;59415:28:0::4;::::0;-1:-1:-1;;59432:10:0::4;6571:2:1::0;6567:15;6563:53;59415:28:0::4;::::0;::::4;6551:66:1::0;59390:12:0::4;::::0;6633::1;;59415:28:0::4;;;;;;;;;;;;59405:39;;;;;;59390:54;;59477:58;59496:6;;59477:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::4;::::0;;;;-1:-1:-1;;59504:24:0;;;-1:-1:-1;59530:4:0;;-1:-1:-1;59477:18:0::4;:58::i;:::-;59455:121;;;::::0;-1:-1:-1;;;59455:121:0;;23569:2:1;59455:121:0::4;::::0;::::4;23551:21:1::0;23608:2;23588:18;;;23581:30;-1:-1:-1;;;23627:18:1;;;23620:43;23680:18;;59455:121:0::4;23541:163:1::0;59455:121:0::4;59611:9;59606:116;59630:6;59626:1;:10;59606:116;;;59658:52;59675:10;59708:1;59687:18;;:22;;;;:::i;59658:52::-;59638:3:::0;::::4;::::0;::::4;:::i;:::-;;;;59606:116;;;;59754:6;59732:18;;:28;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;;;59052:716:0:o;29018:185::-;29156:39;29173:4;29179:2;29183:7;29156:39;;;;;;;;;;;;:16;:39::i;39400:282::-;39532:41;20018:10;39551:12;19938:98;39532:41;39510:139;;;;-1:-1:-1;;;39510:139:0;;24666:2:1;39510:139:0;;;24648:21:1;24705:2;24685:18;;;24678:30;24744:34;24724:18;;;24717:62;-1:-1:-1;;;24795:18:1;;;24788:46;24851:19;;39510:139:0;24638:238:1;39510:139:0;39660:14;39666:7;39660:5;:14::i;60406:317::-;40851:6;;-1:-1:-1;;;;;40851:6:0;20018:10;40998:23;40990:68;;;;-1:-1:-1;;;40990:68:0;;;;;;;:::i;:::-;60497:21:::1;60537:11:::0;60529:34:::1;;;::::0;-1:-1:-1;;;60529:34:0;;14783:2:1;60529:34:0::1;::::0;::::1;14765:21:1::0;14822:2;14802:18;;;14795:30;-1:-1:-1;;;14841:18:1;;;14834:40;14891:18;;60529:34:0::1;14755:160:1::0;60529:34:0::1;-1:-1:-1::0;;;;;60582:23:0;::::1;60574:57;;;::::0;-1:-1:-1;;;60574:57:0;;19420:2:1;60574:57:0::1;::::0;::::1;19402:21:1::0;19459:2;19439:18;;;19432:30;-1:-1:-1;;;19478:18:1;;;19471:51;19539:18;;60574:57:0::1;19392:171:1::0;60574:57:0::1;60644:27;::::0;-1:-1:-1;;;;;60644:18:0;::::1;::::0;:27;::::1;;;::::0;60663:7;;60644:27:::1;::::0;;;60663:7;60644:18;:27;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;60687:28:0::1;::::0;60707:7;;-1:-1:-1;;;;;60687:28:0;::::1;::::0;::::1;::::0;;;::::1;60468:255;60406:317:::0;:::o;53949:372::-;40851:6;;-1:-1:-1;;;;;40851:6:0;20018:10;40998:23;40990:68;;;;-1:-1:-1;;;40990:68:0;;;;;;;:::i;:::-;54129:8:::1;54112:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;54102:37;;;;;;54070:9;54053:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;54043:38;;;;;;:96;;54021:158;;;::::0;-1:-1:-1;;;54021:158:0;;14442:2:1;54021:158:0::1;::::0;::::1;14424:21:1::0;14481:2;14461:18;;;14454:30;-1:-1:-1;;;14500:18:1;;;14493:42;14552:18;;54021:158:0::1;14414:162:1::0;54021:158:0::1;54192:24;54219:9;54192:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;54239:20:0;;54192:36;;-1:-1:-1;54239:20:0::1;::::0;:9:::1;::::0;-1:-1:-1;54239:20:0::1;::::0;::::1;::::0;-1:-1:-1;54239:20:0;-1:-1:-1;54239:20:0::1;:::i;:::-;;54277:36;54292:10;54304:8;54277:36;;;;;;;:::i;25566:326::-:0;25683:7;25724:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25724:16:0;25773:19;25751:110;;;;-1:-1:-1;;;25751:110:0;;17123:2:1;25751:110:0;;;17105:21:1;17162:2;17142:18;;;17135:30;17201:34;17181:18;;;17174:62;-1:-1:-1;;;17252:18:1;;;17245:39;17301:19;;25751:110:0;17095:231:1;61306:307:0;40851:6;;-1:-1:-1;;;;;40851:6:0;20018:10;40998:23;40990:68;;;;-1:-1:-1;;;40990:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61432:23:0;::::1;61424:66;;;::::0;-1:-1:-1;;;61424:66:0;;11735:2:1;61424:66:0::1;::::0;::::1;11717:21:1::0;11774:2;11754:18;;;11747:30;11813:32;11793:18;;;11786:60;11863:18;;61424:66:0::1;11707:180:1::0;61424:66:0::1;61501:17;:29:::0;;-1:-1:-1;;;;;;61501:29:0::1;-1:-1:-1::0;;;;;61501:29:0;::::1;::::0;;::::1;::::0;;;61541:11:::1;:17:::0;;;61574:31:::1;::::0;;8914:51:1;;;8996:2;8981:18;;8974:34;;;61574:31:0::1;::::0;8887:18:1;61574:31:0::1;8869:145:1::0;53546:23:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25209:295::-;25326:7;-1:-1:-1;;;;;25373:19:0;;25351:111;;;;-1:-1:-1;;;25351:111:0;;16712:2:1;25351:111:0;;;16694:21:1;16751:2;16731:18;;;16724:30;16790:34;16770:18;;;16763:62;-1:-1:-1;;;16841:18:1;;;16834:40;16891:19;;25351:111:0;16684:232:1;25351:111:0;-1:-1:-1;;;;;;25480:16:0;;;;;:9;:16;;;;;;;25209:295::o;41429:103::-;40851:6;;-1:-1:-1;;;;;40851:6:0;20018:10;40998:23;40990:68;;;;-1:-1:-1;;;40990:68:0;;;;;;;:::i;:::-;41494:30:::1;41521:1;41494:18;:30::i;:::-;41429:103::o:0;60731:421::-;40851:6;;-1:-1:-1;;;;;40851:6:0;20018:10;40998:23;40990:68;;;;-1:-1:-1;;;40990:68:0;;;;;;;:::i;:::-;60864:17:::1;::::0;60885:6;;60838:23:::1;55601:3;60860:1;60838:23;:::i;:::-;:43;;;;:::i;:::-;:53;;60816:115;;;::::0;-1:-1:-1;;;60816:115:0;;24325:2:1;60816:115:0::1;::::0;::::1;24307:21:1::0;24364:2;24344:18;;;24337:30;-1:-1:-1;;;24383:18:1;;;24376:42;24435:18;;60816:115:0::1;24297:162:1::0;60816:115:0::1;60949:9;60944:114;60968:6;60964:1;:10;60944:114;;;60996:50;61013:9;61044:1;61024:17;;:21;;;;:::i;60996:50::-;60976:3:::0;::::1;::::0;::::1;:::i;:::-;;;;60944:114;;;;61089:6;61068:17;;:27;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;61113:31:0::1;::::0;;-1:-1:-1;;;;;8932:32:1;;8914:51;;8996:2;8981:18;;8974:34;;;61113:31:0::1;::::0;8887:18:1;61113:31:0::1;8869:145:1::0;26128:104:0;26184:13;26217:7;26210:14;;;;;:::i;28032:187::-;28159:52;20018:10;28192:8;28202;28159:18;:52::i;:::-;28032:187;;:::o;29274:365::-;29463:41;20018:10;29496:7;29463:18;:41::i;:::-;29441:140;;;;-1:-1:-1;;;29441:140:0;;;;;;;:::i;:::-;29592:39;29606:4;29612:2;29616:7;29625:5;29592:13;:39::i;:::-;29274:365;;;;:::o;61921:242::-;61987:7;62029:16;62037:7;62029;:16::i;:::-;62007:113;;;;-1:-1:-1;;;62007:113:0;;21688:2:1;62007:113:0;;;21670:21:1;21727:2;21707:18;;;21700:30;21766:34;21746:18;;;21739:62;-1:-1:-1;;;21817:18:1;;;21810:45;21872:19;;62007:113:0;21660:237:1;62007:113:0;-1:-1:-1;;62138:17:0;;-1:-1:-1;;;;;62138:17:0;;61921:242::o;61621:292::-;61710:7;61719;61766:16;61774:7;61766;:16::i;:::-;61744:111;;;;-1:-1:-1;;;61744:111:0;;23911:2:1;61744:111:0;;;23893:21:1;23950:2;23930:18;;;23923:30;23989:34;23969:18;;;23962:62;-1:-1:-1;;;24040:18:1;;;24033:43;24093:19;;61744:111:0;23883:235:1;61744:111:0;-1:-1:-1;;61874:17:0;;61893:11;;-1:-1:-1;;;;;61874:17:0;;;;61893:11;;-1:-1:-1;61621:292:0:o;26303:468::-;26421:13;26474:16;26482:7;26474;:16::i;:::-;26452:113;;;;-1:-1:-1;;;26452:113:0;;20121:2:1;26452:113:0;;;20103:21:1;20160:2;20140:18;;;20133:30;20199:34;20179:18;;;20172:62;-1:-1:-1;;;20250:18:1;;;20243:45;20305:19;;26452:113:0;20093:237:1;26452:113:0;26578:21;26602:10;:8;:10::i;:::-;26578:34;;26667:1;26649:7;26643:21;:25;:120;;;;;;;;;;;;;;;;;26712:7;26721:18;:7;:16;:18::i;:::-;26695:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26643:120;26623:140;26303:468;-1:-1:-1;;;26303:468:0:o;41687:238::-;40851:6;;-1:-1:-1;;;;;40851:6:0;20018:10;40998:23;40990:68;;;;-1:-1:-1;;;40990:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41790:22:0;::::1;41768:110;;;::::0;-1:-1:-1;;;41768:110:0;;12513:2:1;41768:110:0::1;::::0;::::1;12495:21:1::0;12552:2;12532:18;;;12525:30;12591:34;12571:18;;;12564:62;-1:-1:-1;;;12642:18:1;;;12635:36;12688:19;;41768:110:0::1;12485:228:1::0;41768:110:0::1;41889:28;41908:8;41889:18;:28::i;24790:355::-:0;24937:4;-1:-1:-1;;;;;;24979:40:0;;-1:-1:-1;;;24979:40:0;;:105;;-1:-1:-1;;;;;;;25036:48:0;;-1:-1:-1;;;25036:48:0;24979:105;:158;;;-1:-1:-1;;;;;;;;;;23338:40:0;;;25101:36;23179:207;31186:127;31251:4;31275:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31275:16:0;:30;;;31186:127::o;35473:174::-;35548:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35548:29:0;-1:-1:-1;;;;;35548:29:0;;;;;;;;:24;;35602:23;35548:24;35602:14;:23::i;:::-;-1:-1:-1;;;;;35593:46:0;;;;;;;;;;;35473:174;;:::o;59776:132::-;59866:1;59851:11;;:16;;;;;;;:::i;:::-;;;;-1:-1:-1;59878:22:0;;-1:-1:-1;59888:2:0;59892:7;59878:9;:22::i;31480:452::-;31609:4;31653:16;31661:7;31653;:16::i;:::-;31631:110;;;;-1:-1:-1;;;31631:110:0;;15122:2:1;31631:110:0;;;15104:21:1;15161:2;15141:18;;;15134:30;15200:34;15180:18;;;15173:62;-1:-1:-1;;;15251:18:1;;;15244:42;15303:19;;31631:110:0;15094:234:1;31631:110:0;31752:13;31768:23;31783:7;31768:14;:23::i;:::-;31752:39;;31821:5;-1:-1:-1;;;;;31810:16:0;:7;-1:-1:-1;;;;;31810:16:0;;:64;;;;31867:7;-1:-1:-1;;;;;31843:31:0;:20;31855:7;31843:11;:20::i;:::-;-1:-1:-1;;;;;31843:31:0;;31810:64;:113;;;-1:-1:-1;;;;;;28461:25:0;;;28432:4;28461:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31891:32;31802:122;31480:452;-1:-1:-1;;;;31480:452:0:o;34693:662::-;34866:4;-1:-1:-1;;;;;34839:31:0;:23;34854:7;34839:14;:23::i;:::-;-1:-1:-1;;;;;34839:31:0;;34817:118;;;;-1:-1:-1;;;34817:118:0;;12920:2:1;34817:118:0;;;12902:21:1;12959:2;12939:18;;;12932:30;12998:34;12978:18;;;12971:62;-1:-1:-1;;;13049:18:1;;;13042:35;13094:19;;34817:118:0;12892:227:1;34817:118:0;-1:-1:-1;;;;;34954:16:0;;34946:65;;;;-1:-1:-1;;;34946:65:0;;13683:2:1;34946:65:0;;;13665:21:1;13722:2;13702:18;;;13695:30;13761:34;13741:18;;;13734:62;-1:-1:-1;;;13812:18:1;;;13805:34;13856:19;;34946:65:0;13655:226:1;34946:65:0;35128:29;35145:1;35149:7;35128:8;:29::i;:::-;-1:-1:-1;;;;;35170:15:0;;;;;;:9;:15;;;;;:20;;35189:1;;35170:15;:20;;35189:1;;35170:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35201:13:0;;;;;;:9;:13;;;;;:18;;35218:1;;35201:13;:18;;35218:1;;35201:18;:::i;:::-;;;;-1:-1:-1;;35230:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35230:21:0;-1:-1:-1;;;;;35230:21:0;;;;;;;;;35269:27;;35230:16;;35269:27;;;;;;;27245:341;27175:411;;:::o;960:190::-;1085:4;1138;1109:25;1122:5;1129:4;1109:12;:25::i;:::-;:33;;960:190;-1:-1:-1;;;;960:190:0:o;33936:420::-;33996:13;34012:23;34027:7;34012:14;:23::i;:::-;33996:39;;34137:29;34154:1;34158:7;34137:8;:29::i;:::-;-1:-1:-1;;;;;34179:16:0;;;;;;:9;:16;;;;;:21;;34199:1;;34179:16;:21;;34199:1;;34179:21;:::i;:::-;;;;-1:-1:-1;;34218:16:0;;;;:7;:16;;;;;;34211:23;;-1:-1:-1;;;;;;34211:23:0;;;34252:36;34226:7;;34218:16;-1:-1:-1;;;;;34252:36:0;;;;;34218:16;;34252:36;28032:187;;:::o;42085:191::-;42178:6;;;-1:-1:-1;;;;;42195:17:0;;;-1:-1:-1;;;;;;42195:17:0;;;;;;;42228:40;;42178:6;;;42195:17;42178:6;;42228:40;;42159:16;;42228:40;42148:128;42085:191;:::o;35789:315::-;35944:8;-1:-1:-1;;;;;35935:17:0;:5;-1:-1:-1;;;;;35935:17:0;;;35927:55;;;;-1:-1:-1;;;35927:55:0;;14088:2:1;35927:55:0;;;14070:21:1;14127:2;14107:18;;;14100:30;14166:27;14146:18;;;14139:55;14211:18;;35927:55:0;14060:175:1;35927:55:0;-1:-1:-1;;;;;35993:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35993:46:0;;;;;;;;;;36055:41;;9931::1;;;36055::0;;9904:18:1;36055:41:0;;;;;;;35789:315;;;:::o;30521:352::-;30678:28;30688:4;30694:2;30698:7;30678:9;:28::i;:::-;30739:48;30762:4;30768:2;30772:7;30781:5;30739:22;:48::i;:::-;30717:148;;;;-1:-1:-1;;;30717:148:0;;;;;;;:::i;53831:110::-;53891:13;53924:9;53917:16;;;;;:::i;20521:723::-;20577:13;20798:10;20794:53;;-1:-1:-1;;20825:10:0;;;;;;;;;;;;-1:-1:-1;;;20825:10:0;;;;;20521:723::o;20794:53::-;20872:5;20857:12;20913:78;20920:9;;20913:78;;20946:8;;;;:::i;:::-;;-1:-1:-1;20969:10:0;;-1:-1:-1;20977:2:0;20969:10;;:::i;:::-;;;20913:78;;;21001:19;21033:6;21023:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21023:17:0;;21001:39;;21051:154;21058:10;;21051:154;;21085:11;21095:1;21085:11;;:::i;:::-;;-1:-1:-1;21154:10:0;21162:2;21154:5;:10;:::i;:::-;21141:24;;:2;:24;:::i;:::-;21128:39;;21111:6;21118;21111:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21111:56:0;;;;;;;;-1:-1:-1;21182:11:0;21191:2;21182:11;;:::i;:::-;;;21051:154;;32274:110;32350:26;32360:2;32364:7;32350:26;;;;;;;;;;;;:9;:26::i;1512:707::-;1622:7;1670:4;1622:7;1685:497;1709:5;:12;1705:1;:16;1685:497;;;1743:20;1766:5;1772:1;1766:8;;;;;;;;:::i;:::-;;;;;;;1743:31;;1809:12;1793;:28;1789:382;;2322:13;2377:15;;;2413:4;2406:15;;;2460:4;2444:21;;1921:57;;1789:382;;;2322:13;2377:15;;;2413:4;2406:15;;;2460:4;2444:21;;2098:57;;1789:382;-1:-1:-1;1723:3:0;;;;:::i;:::-;;;;1685:497;;;-1:-1:-1;2199:12:0;1512:707;-1:-1:-1;;;1512:707:0:o;36669:980::-;36824:4;-1:-1:-1;;;;;36845:13:0;;11813:19;:23;36841:801;;36898:175;;-1:-1:-1;;;36898:175:0;;-1:-1:-1;;;;;36898:36:0;;;;;:175;;20018:10;;36992:4;;37019:7;;37049:5;;36898:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36898:175:0;;;;;;;;-1:-1:-1;;36898:175:0;;;;;;;;;;;;:::i;:::-;;;36877:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37256:13:0;;37252:320;;37299:108;;-1:-1:-1;;;37299:108:0;;;;;;;:::i;37252:320::-;37522:6;37516:13;37507:6;37503:2;37499:15;37492:38;36877:710;-1:-1:-1;;;;;;37137:51:0;-1:-1:-1;;;37137:51:0;;-1:-1:-1;37130:58:0;;36841:801;-1:-1:-1;37626:4:0;36669:980;;;;;;:::o;32611:321::-;32741:18;32747:2;32751:7;32741:5;:18::i;:::-;32792:54;32823:1;32827:2;32831:7;32840:5;32792:22;:54::i;:::-;32770:154;;;;-1:-1:-1;;;32770:154:0;;;;;;;:::i;33268:439::-;-1:-1:-1;;;;;33348:16:0;;33340:61;;;;-1:-1:-1;;;33340:61:0;;17939:2:1;33340:61:0;;;17921:21:1;;;17958:18;;;17951:30;18017:34;17997:18;;;17990:62;18069:18;;33340:61:0;17911:182:1;33340:61:0;33421:16;33429:7;33421;:16::i;:::-;33420:17;33412:58;;;;-1:-1:-1;;;33412:58:0;;13326:2:1;33412:58:0;;;13308:21:1;13365:2;13345:18;;;13338:30;13404;13384:18;;;13377:58;13452:18;;33412:58:0;13298:178:1;33412:58:0;-1:-1:-1;;;;;33541:13:0;;;;;;:9;:13;;;;;:18;;33558:1;;33541:13;:18;;33558:1;;33541:18;:::i;:::-;;;;-1:-1:-1;;33570:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33570:21:0;-1:-1:-1;;;;;33570:21:0;;;;;;;;33609:33;;33570:16;;;33609:33;;33570:16;;33609:33;28032:187;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:2;;;778:1;775;768:12;730:2;817:9;804:23;836:31;861:5;836:31;:::i;1162:323::-;1238:6;1246;1299:2;1287:9;1278:7;1274:23;1270:32;1267:2;;;1315:1;1312;1305:12;1267:2;1354:9;1341:23;1373:31;1398:5;1373:31;:::i;:::-;1423:5;1475:2;1460:18;;;;1447:32;;-1:-1:-1;;;1257:228:1:o;1490:388::-;1558:6;1566;1619:2;1607:9;1598:7;1594:23;1590:32;1587:2;;;1635:1;1632;1625:12;1587:2;1674:9;1661:23;1693:31;1718:5;1693:31;:::i;:::-;1743:5;-1:-1:-1;1800:2:1;1785:18;;1772:32;1813:33;1772:32;1813:33;:::i;:::-;1865:7;1855:17;;;1577:301;;;;;:::o;1883:456::-;1960:6;1968;1976;2029:2;2017:9;2008:7;2004:23;2000:32;1997:2;;;2045:1;2042;2035:12;1997:2;2084:9;2071:23;2103:31;2128:5;2103:31;:::i;:::-;2153:5;-1:-1:-1;2210:2:1;2195:18;;2182:32;2223:33;2182:32;2223:33;:::i;:::-;1987:352;;2275:7;;-1:-1:-1;;;2329:2:1;2314:18;;;;2301:32;;1987:352::o;2344:794::-;2439:6;2447;2455;2463;2516:3;2504:9;2495:7;2491:23;2487:33;2484:2;;;2533:1;2530;2523:12;2484:2;2572:9;2559:23;2591:31;2616:5;2591:31;:::i;:::-;2641:5;-1:-1:-1;2698:2:1;2683:18;;2670:32;2711:33;2670:32;2711:33;:::i;:::-;2763:7;-1:-1:-1;2817:2:1;2802:18;;2789:32;;-1:-1:-1;2872:2:1;2857:18;;2844:32;2899:18;2888:30;;2885:2;;;2931:1;2928;2921:12;2885:2;2954:22;;3007:4;2999:13;;2995:27;-1:-1:-1;2985:2:1;;3036:1;3033;3026:12;2985:2;3059:73;3124:7;3119:2;3106:16;3101:2;3097;3093:11;3059:73;:::i;:::-;3049:83;;;2474:664;;;;;;;:::o;3143:416::-;3208:6;3216;3269:2;3257:9;3248:7;3244:23;3240:32;3237:2;;;3285:1;3282;3275:12;3237:2;3324:9;3311:23;3343:31;3368:5;3343:31;:::i;:::-;3393:5;-1:-1:-1;3450:2:1;3435:18;;3422:32;3492:15;;3485:23;3473:36;;3463:2;;3523:1;3520;3513:12;3884:689;3979:6;3987;3995;4048:2;4036:9;4027:7;4023:23;4019:32;4016:2;;;4064:1;4061;4054:12;4016:2;4104:9;4091:23;4133:18;4174:2;4166:6;4163:14;4160:2;;;4190:1;4187;4180:12;4160:2;4228:6;4217:9;4213:22;4203:32;;4273:7;4266:4;4262:2;4258:13;4254:27;4244:2;;4295:1;4292;4285:12;4244:2;4335;4322:16;4361:2;4353:6;4350:14;4347:2;;;4377:1;4374;4367:12;4347:2;4432:7;4425:4;4415:6;4412:1;4408:14;4404:2;4400:23;4396:34;4393:47;4390:2;;;4453:1;4450;4443:12;4390:2;4484:4;4476:13;;;;4508:6;;-1:-1:-1;4546:20:1;;;;4533:34;;4006:567;-1:-1:-1;;;;4006:567:1:o;4578:180::-;4637:6;4690:2;4678:9;4669:7;4665:23;4661:32;4658:2;;;4706:1;4703;4696:12;4658:2;-1:-1:-1;4729:23:1;;4648:110;-1:-1:-1;4648:110:1:o;4763:245::-;4821:6;4874:2;4862:9;4853:7;4849:23;4845:32;4842:2;;;4890:1;4887;4880:12;4842:2;4929:9;4916:23;4948:30;4972:5;4948:30;:::i;5013:249::-;5082:6;5135:2;5123:9;5114:7;5110:23;5106:32;5103:2;;;5151:1;5148;5141:12;5103:2;5183:9;5177:16;5202:30;5226:5;5202:30;:::i;5267:450::-;5336:6;5389:2;5377:9;5368:7;5364:23;5360:32;5357:2;;;5405:1;5402;5395:12;5357:2;5445:9;5432:23;5478:18;5470:6;5467:30;5464:2;;;5510:1;5507;5500:12;5464:2;5533:22;;5586:4;5578:13;;5574:27;-1:-1:-1;5564:2:1;;5615:1;5612;5605:12;5564:2;5638:73;5703:7;5698:2;5685:16;5680:2;5676;5672:11;5638:73;:::i;5907:248::-;5975:6;5983;6036:2;6024:9;6015:7;6011:23;6007:32;6004:2;;;6052:1;6049;6042:12;6004:2;-1:-1:-1;;6075:23:1;;;6145:2;6130:18;;;6117:32;;-1:-1:-1;5994:161:1:o;6160:257::-;6201:3;6239:5;6233:12;6266:6;6261:3;6254:19;6282:63;6338:6;6331:4;6326:3;6322:14;6315:4;6308:5;6304:16;6282:63;:::i;:::-;6399:2;6378:15;-1:-1:-1;;6374:29:1;6365:39;;;;6406:4;6361:50;;6209:208;-1:-1:-1;;6209:208:1:o;6656:276::-;6787:3;6825:6;6819:13;6841:53;6887:6;6882:3;6875:4;6867:6;6863:17;6841:53;:::i;:::-;6910:16;;;;;6795:137;-1:-1:-1;;6795:137:1:o;6937:470::-;7116:3;7154:6;7148:13;7170:53;7216:6;7211:3;7204:4;7196:6;7192:17;7170:53;:::i;:::-;7286:13;;7245:16;;;;7308:57;7286:13;7245:16;7342:4;7330:17;;7308:57;:::i;:::-;7381:20;;7124:283;-1:-1:-1;;;;7124:283:1:o;7412:1099::-;7540:3;7569:1;7602:6;7596:13;7632:3;7654:1;7682:9;7678:2;7674:18;7664:28;;7742:2;7731:9;7727:18;7764;7754:2;;7808:4;7800:6;7796:17;7786:27;;7754:2;7834;7882;7874:6;7871:14;7851:18;7848:38;7845:2;;;-1:-1:-1;;;7909:33:1;;7965:4;7962:1;7955:15;7995:4;7916:3;7983:17;7845:2;8026:18;8053:104;;;;8171:1;8166:320;;;;8019:467;;8053:104;-1:-1:-1;;8086:24:1;;8074:37;;8131:16;;;;-1:-1:-1;8053:104:1;;8166:320;26000:1;25993:14;;;26037:4;26024:18;;8261:1;8275:165;8289:6;8286:1;8283:13;8275:165;;;8367:14;;8354:11;;;8347:35;8410:16;;;;8304:10;;8275:165;;;8279:3;;8469:6;8464:3;8460:16;8453:23;;8019:467;-1:-1:-1;8502:3:1;;7548:963;-1:-1:-1;;;;;;;;7548:963:1:o;9019:488::-;-1:-1:-1;;;;;9288:15:1;;;9270:34;;9340:15;;9335:2;9320:18;;9313:43;9387:2;9372:18;;9365:34;;;9435:3;9430:2;9415:18;;9408:31;;;9213:4;;9456:45;;9481:19;;9473:6;9456:45;:::i;:::-;9448:53;9222:285;-1:-1:-1;;;;;;9222:285:1:o;10236:219::-;10385:2;10374:9;10367:21;10348:4;10405:44;10445:2;10434:9;10430:18;10422:6;10405:44;:::i;10460:381::-;10657:2;10646:9;10639:21;10620:4;10683:44;10723:2;10712:9;10708:18;10700:6;10683:44;:::i;:::-;10775:9;10767:6;10763:22;10758:2;10747:9;10743:18;10736:50;10803:32;10828:6;10820;10803:32;:::i;:::-;10795:40;10629:212;-1:-1:-1;;;;;10629:212:1:o;11892:414::-;12094:2;12076:21;;;12133:2;12113:18;;;12106:30;12172:34;12167:2;12152:18;;12145:62;-1:-1:-1;;;12238:2:1;12223:18;;12216:48;12296:3;12281:19;;12066:240::o;17331:401::-;17533:2;17515:21;;;17572:2;17552:18;;;17545:30;17611:34;17606:2;17591:18;;17584:62;-1:-1:-1;;;17677:2:1;17662:18;;17655:35;17722:3;17707:19;;17505:227::o;18857:356::-;19059:2;19041:21;;;19078:18;;;19071:30;19137:34;19132:2;19117:18;;19110:62;19204:2;19189:18;;19031:182::o;22608:413::-;22810:2;22792:21;;;22849:2;22829:18;;;22822:30;22888:34;22883:2;22868:18;;22861:62;-1:-1:-1;;;22954:2:1;22939:18;;22932:47;23011:3;22996:19;;22782:239::o;26053:128::-;26093:3;26124:1;26120:6;26117:1;26114:13;26111:2;;;26130:18;;:::i;:::-;-1:-1:-1;26166:9:1;;26101:80::o;26186:120::-;26226:1;26252;26242:2;;26257:18;;:::i;:::-;-1:-1:-1;26291:9:1;;26232:74::o;26311:168::-;26351:7;26417:1;26413;26409:6;26405:14;26402:1;26399:21;26394:1;26387:9;26380:17;26376:45;26373:2;;;26424:18;;:::i;:::-;-1:-1:-1;26464:9:1;;26363:116::o;26484:125::-;26524:4;26552:1;26549;26546:8;26543:2;;;26557:18;;:::i;:::-;-1:-1:-1;26594:9:1;;26533:76::o;26614:258::-;26686:1;26696:113;26710:6;26707:1;26704:13;26696:113;;;26786:11;;;26780:18;26767:11;;;26760:39;26732:2;26725:10;26696:113;;;26827:6;26824:1;26821:13;26818:2;;;-1:-1:-1;;26862:1:1;26844:16;;26837:27;26667:205::o;26877:380::-;26956:1;26952:12;;;;26999;;;27020:2;;27074:4;27066:6;27062:17;27052:27;;27020:2;27127;27119:6;27116:14;27096:18;27093:38;27090:2;;;27173:10;27168:3;27164:20;27161:1;27154:31;27208:4;27205:1;27198:15;27236:4;27233:1;27226:15;27090:2;;26932:325;;;:::o;27262:135::-;27301:3;-1:-1:-1;;27322:17:1;;27319:2;;;27342:18;;:::i;:::-;-1:-1:-1;27389:1:1;27378:13;;27309:88::o;27402:112::-;27434:1;27460;27450:2;;27465:18;;:::i;:::-;-1:-1:-1;27499:9:1;;27440:74::o;27519:127::-;27580:10;27575:3;27571:20;27568:1;27561:31;27611:4;27608:1;27601:15;27635:4;27632:1;27625:15;27651:127;27712:10;27707:3;27703:20;27700:1;27693:31;27743:4;27740:1;27733:15;27767:4;27764:1;27757:15;27783:127;27844:10;27839:3;27835:20;27832:1;27825:31;27875:4;27872:1;27865:15;27899:4;27896:1;27889:15;27915:127;27976:10;27971:3;27967:20;27964:1;27957:31;28007:4;28004:1;27997:15;28031:4;28028:1;28021:15;28047:131;-1:-1:-1;;;;;28122:31:1;;28112:42;;28102:2;;28168:1;28165;28158:12;28183:131;-1:-1:-1;;;;;;28257:32:1;;28247:43;;28237:2;;28304:1;28301;28294:12

Swarm Source

ipfs://1558ad1b9a7517490d052f4c0100d5d76ca7008ba7ac8d170c2b1fa016d4d0b1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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