ETH Price: $2,528.54 (+3.20%)

Token

TwiLifeClub (TLC)
 

Overview

Max Total Supply

419 TLC

Holders

159

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TLC
0xa449AD90594199D55D2638D6Ffa7F333F3C023E9
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:
TwiLifeClub

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-19
*/

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

// File: ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

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

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

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

    revert("ERC721A: unable to determine the owner of token");
  }

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

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    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 override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

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

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

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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/IAccessControl.sol


// 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/AccessControl.sol


// OpenZeppelin Contracts (last updated v4.7.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);
        _;
    }

    /**
     * @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 `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @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.
     *
     * May emit a {RoleGranted} event.
     */
    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.
     *
     * May emit a {RoleRevoked} event.
     */
    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`.
     *
     * May emit a {RoleRevoked} event.
     */
    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.
     *
     * May emit a {RoleGranted} event.
     *
     * [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.
     *
     * May emit a {RoleGranted} event.
     */
    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.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: 3dnft.sol


pragma solidity ^0.8.4;







interface IAttitudes {
    function setAttitudeType(uint256 tokenId) external;
}

contract TwiLifeClub is ERC721A, ReentrancyGuard, Ownable, AccessControl {

    using Strings for uint256;
    // DutchAuction --------

    struct sales_config {
        uint256 MAX_AUCTION_MINT;
        uint256 AUCTION_PRICE_CURVE_LENGTH;
        uint256 AUCTION_DROP_INTERVAL;
        uint256 AUCTION_START_PRICE; 
        uint256 AUCTION_START_TIME; 
        uint256 AUCTION_END_TIME; 
        uint256 AUCTION_END_PRICE; 
        uint256 AUCTION_DISCOUNTRATE_RATE; 
    }

    sales_config public salesConfig;

    struct whitelist_config {
        uint256 WHITELIST_START_TIME;  
        uint256 WHITELIST_END_TIME;  
        uint256 WHITELIST_PRICE;  
        uint256 WHITELIST_CURVE_LENGTH;
        uint256 WHITELIST_TOTALSUPPLY;
    }

    whitelist_config public whitelistConfig;

    mapping (address => uint256) public maxPerAddressDuringMint;

    bytes32 public root;


    uint256 public FreeAlreadyMint;

    mapping (address => uint256) public AddressAlreadyMint;

    uint256 public constant _totalSupply = 10000;

    
    string private UriPrefix3d = "https://bafybeifg5xct2malqu44e2zlmdmpt53tmat2tz24xuk2edbkgr3i5ttpeu.ipfs.nftstorage.link/character_";
  
    string private UriSuffix3d = ".json";

   
    IAttitudes public _Attitudes;

    
    uint256 public allowListSales;

   
    bytes32 public constant ATTITUDE_ROLE = keccak256("ATTITUDE_ROLE");

    
    address public PaymentAddress;

    bool public activeStatus;

    receive() external payable {}

  constructor(
  ) ERC721A("TwiLifeClub", "TLC", 200, 10000) {

        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        
  }

    function salesConfigSet(uint256 _MAX_AUCTION_MINT, uint256 _AUCTION_PRICE_CURVE_LENGTH, uint256 _AUCTION_DROP_INTERVAL, uint256 _AUCTION_START_PRICE, uint256 _AUCTION_START_TIME, uint256 _AUCTION_END_TIME, uint256 _AUCTION_END_PRICE, uint256 _AUCTION_DISCOUNTRATE_RATE) external onlyRole(DEFAULT_ADMIN_ROLE) {

        salesConfig.MAX_AUCTION_MINT = _MAX_AUCTION_MINT;
        salesConfig.AUCTION_PRICE_CURVE_LENGTH = _AUCTION_PRICE_CURVE_LENGTH;
        salesConfig.AUCTION_DROP_INTERVAL = _AUCTION_DROP_INTERVAL;
        salesConfig.AUCTION_START_PRICE = _AUCTION_START_PRICE;
        salesConfig.AUCTION_START_TIME = _AUCTION_START_TIME;
        salesConfig.AUCTION_END_TIME = _AUCTION_END_TIME;
        salesConfig.AUCTION_END_PRICE = _AUCTION_END_PRICE;
        salesConfig.AUCTION_DISCOUNTRATE_RATE = _AUCTION_DISCOUNTRATE_RATE;
       

    }

    function whitelistConfigSet(uint256 _WHITELIST_START_TIME, uint256 _WHITELIST_END_TIME, uint256 _WHITELIST_PRICE, uint256 _WHITELIST_CURVE_LENGTH, uint256 _WHITELIST_TOTALSUPPLY) external onlyRole(DEFAULT_ADMIN_ROLE) {
        whitelistConfig.WHITELIST_START_TIME = _WHITELIST_START_TIME;  
        whitelistConfig.WHITELIST_END_TIME = _WHITELIST_END_TIME;  
        whitelistConfig.WHITELIST_PRICE = _WHITELIST_PRICE;  
        whitelistConfig.WHITELIST_CURVE_LENGTH = _WHITELIST_CURVE_LENGTH;
        whitelistConfig.WHITELIST_TOTALSUPPLY = _WHITELIST_TOTALSUPPLY;
    }

   
    function setTime(uint256 _auctionStartTime, uint256 _whitelistStartTIme) external onlyRole(DEFAULT_ADMIN_ROLE) {
        salesConfig.AUCTION_START_TIME = _auctionStartTime;
        salesConfig.AUCTION_END_TIME = _auctionStartTime + salesConfig.AUCTION_PRICE_CURVE_LENGTH;
        whitelistConfig.WHITELIST_START_TIME = _whitelistStartTIme;
        whitelistConfig.WHITELIST_END_TIME = _whitelistStartTIme + whitelistConfig.WHITELIST_CURVE_LENGTH;
    }

    function setPaymentAddress(address _paymentAddress) external onlyRole(DEFAULT_ADMIN_ROLE){
        PaymentAddress = _paymentAddress;
    }

    function setRoot(bytes32 _root) external onlyRole(DEFAULT_ADMIN_ROLE){
        root = _root;
    }

    function setActiveStatus(bool _activeStatus) external onlyRole(DEFAULT_ADMIN_ROLE){
        activeStatus = _activeStatus;
    }

    function setAttitudeAddress(address _address) external onlyRole(DEFAULT_ADMIN_ROLE) {
         _Attitudes = IAttitudes(_address);
    }

    function getPrice() public view returns (uint256) {
        uint timeElapsed = (block.timestamp - salesConfig.AUCTION_START_TIME) / salesConfig.AUCTION_DROP_INTERVAL;

        uint256 discount;

        if(timeElapsed >= 12){
            discount = salesConfig.AUCTION_END_PRICE;
        }else{
            discount = salesConfig.AUCTION_START_PRICE - (salesConfig.AUCTION_DISCOUNTRATE_RATE * timeElapsed);
        }

        return discount;
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A, AccessControl)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    } 

   
    function setPrefixAndSuffi(string calldata _uriPrefix, string calldata _uriSuffix) external onlyRole(DEFAULT_ADMIN_ROLE){

        UriPrefix3d = _uriPrefix;
        UriSuffix3d = _uriSuffix;

    }

    function transferBatch(address[] calldata receivers, uint256[] calldata tokenIds) external onlyRole(DEFAULT_ADMIN_ROLE){

        uint256 length = receivers.length;

        for(uint256 i = 0; i < length ; i++){
            super.safeTransferFrom(msg.sender, receivers[i], tokenIds[i], "");
        }
        
    }

   
    function auctionMint(uint256 quantity) external payable nonReentrant callerIsUser{

        require(activeStatus, "not open ye");

        
        require(block.timestamp >= salesConfig.AUCTION_START_TIME,"sale has not started ye");

        require(block.timestamp < salesConfig.AUCTION_END_TIME, "auction expired");

        
        require((maxPerAddressDuringMint[msg.sender] + quantity) <= salesConfig.MAX_AUCTION_MINT, "the quantity has exceeded the limit");

       
        require((totalSupply() + quantity) <= _totalSupply, "not enough remaining reserved for auction to support desired mint amount");

        uint256 price = getPrice();

       
        require(msg.value >= (price * quantity), "insufficient amount of ether entered");

       
        payable(PaymentAddress).transfer(price * quantity);

        if(msg.value > (price * quantity)){
            payable(msg.sender).transfer(msg.value - (price * quantity));
        }
        
       
        maxPerAddressDuringMint[msg.sender] += quantity;

        _safeMint(msg.sender, quantity);

    }


    function allowlistMint(bytes32[] calldata _proofs, uint256 proofQuantity,uint256 quantity) external payable nonReentrant callerIsUser{

        require(activeStatus, "not open ye");

        require(block.timestamp >= whitelistConfig.WHITELIST_START_TIME,"whitelist has not started ye");
    
        require(block.timestamp < whitelistConfig.WHITELIST_END_TIME, "whitelist expired");
        
     
        require(AddressAlreadyMint[msg.sender] + quantity  <= proofQuantity,"The quantity has exceeded the limit");

        require(quantity > 0, "Quantity must be greater than 0");

        require((totalSupply() + quantity) <= whitelistConfig.WHITELIST_TOTALSUPPLY, "reached max supply");
    

        require(msg.value >= (whitelistConfig.WHITELIST_PRICE * quantity), "Amount does not match quantity");

        bytes32 _leaf = keccak256(abi.encodePacked(msg.sender,uint256(proofQuantity)));

        (bool res) = MerkleProof.verify(_proofs, root, _leaf);

        require(res,"verify false");
        
        payable(PaymentAddress).transfer(whitelistConfig.WHITELIST_PRICE * quantity);

   
        if(msg.value > (whitelistConfig.WHITELIST_PRICE * quantity)){
            payable(msg.sender).transfer(msg.value - (whitelistConfig.WHITELIST_PRICE * quantity));
        }

        allowListSales += quantity;

       
        AddressAlreadyMint[msg.sender] += quantity;

        _safeMint(msg.sender,quantity);
    }
    
    function freeMint(address to, uint256 quantity)
        external
        onlyRole(DEFAULT_ADMIN_ROLE)
    {

        FreeAlreadyMint += quantity;
        
        _safeMint(to,quantity);

    }

   
    function tokenURI(uint256 tokenId) public view override(ERC721A) returns(string memory){

        return string(abi.encodePacked(UriPrefix3d, tokenId.toString(), UriSuffix3d));
 
    }

    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal override {

        _Attitudes.setAttitudeType(startTokenId);

         super._afterTokenTransfers(from,to,startTokenId,quantity);
    }

    function getList(address _addr, uint256 pageNo, uint256 pageSize) external view returns (uint256[]memory ids){
        uint256 nftBalance = balanceOf(_addr);
        if (nftBalance == 0 || pageSize == 0) {
            return new uint256[](0);
        }
        uint start = 0;
        uint end = 0;
        if (nftBalance <= pageSize) {
            end = nftBalance;
        } else {
            start = pageNo * pageSize;
            end = start + pageSize;
            if (end >= nftBalance) {
                end = nftBalance;
            }
        }
        ids = new uint256[](end - start);
        uint index;
        for (; start < end; start++) {
            ids[index] = tokenOfOwnerByIndex(_addr, start);
            index++;
        }

    }
  
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ATTITUDE_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AddressAlreadyMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreeAlreadyMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PaymentAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_Attitudes","outputs":[{"internalType":"contract IAttitudes","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activeStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListSales","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proofs","type":"bytes32[]"},{"internalType":"uint256","name":"proofQuantity","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"auctionMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"pageNo","type":"uint256"},{"internalType":"uint256","name":"pageSize","type":"uint256"}],"name":"getList","outputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"maxPerAddressDuringMint","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":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[],"name":"salesConfig","outputs":[{"internalType":"uint256","name":"MAX_AUCTION_MINT","type":"uint256"},{"internalType":"uint256","name":"AUCTION_PRICE_CURVE_LENGTH","type":"uint256"},{"internalType":"uint256","name":"AUCTION_DROP_INTERVAL","type":"uint256"},{"internalType":"uint256","name":"AUCTION_START_PRICE","type":"uint256"},{"internalType":"uint256","name":"AUCTION_START_TIME","type":"uint256"},{"internalType":"uint256","name":"AUCTION_END_TIME","type":"uint256"},{"internalType":"uint256","name":"AUCTION_END_PRICE","type":"uint256"},{"internalType":"uint256","name":"AUCTION_DISCOUNTRATE_RATE","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_AUCTION_MINT","type":"uint256"},{"internalType":"uint256","name":"_AUCTION_PRICE_CURVE_LENGTH","type":"uint256"},{"internalType":"uint256","name":"_AUCTION_DROP_INTERVAL","type":"uint256"},{"internalType":"uint256","name":"_AUCTION_START_PRICE","type":"uint256"},{"internalType":"uint256","name":"_AUCTION_START_TIME","type":"uint256"},{"internalType":"uint256","name":"_AUCTION_END_TIME","type":"uint256"},{"internalType":"uint256","name":"_AUCTION_END_PRICE","type":"uint256"},{"internalType":"uint256","name":"_AUCTION_DISCOUNTRATE_RATE","type":"uint256"}],"name":"salesConfigSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_activeStatus","type":"bool"}],"name":"setActiveStatus","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":"address","name":"_address","type":"address"}],"name":"setAttitudeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_paymentAddress","type":"address"}],"name":"setPaymentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"},{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setPrefixAndSuffi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_auctionStartTime","type":"uint256"},{"internalType":"uint256","name":"_whitelistStartTIme","type":"uint256"}],"name":"setTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"transferBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistConfig","outputs":[{"internalType":"uint256","name":"WHITELIST_START_TIME","type":"uint256"},{"internalType":"uint256","name":"WHITELIST_END_TIME","type":"uint256"},{"internalType":"uint256","name":"WHITELIST_PRICE","type":"uint256"},{"internalType":"uint256","name":"WHITELIST_CURVE_LENGTH","type":"uint256"},{"internalType":"uint256","name":"WHITELIST_TOTALSUPPLY","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_WHITELIST_START_TIME","type":"uint256"},{"internalType":"uint256","name":"_WHITELIST_END_TIME","type":"uint256"},{"internalType":"uint256","name":"_WHITELIST_PRICE","type":"uint256"},{"internalType":"uint256","name":"_WHITELIST_CURVE_LENGTH","type":"uint256"},{"internalType":"uint256","name":"_WHITELIST_TOTALSUPPLY","type":"uint256"}],"name":"whitelistConfigSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6000808055600755610160604052606360c08181529062003c0260e039601c906200002b908262000362565b50604080518082019091526005815264173539b7b760d91b6020820152601d9062000057908262000362565b503480156200006557600080fd5b506040518060400160405280600b81526020016a2a3bb4a634b332a1b63ab160a91b81525060405180604001604052806003815260200162544c4360e81b81525060c861271060008111620001185760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200017a5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200010f565b600162000188858262000362565b50600262000197848262000362565b5060a09190915260805250506001600855620001b333620001c6565b620001c060003362000218565b6200042e565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff16620002b9576000828152600a602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620002783390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002e857607f821691505b6020821081036200030957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200035d57600081815260208120601f850160051c81016020861015620003385750805b601f850160051c820191505b81811015620003595782815560010162000344565b5050505b505050565b81516001600160401b038111156200037e576200037e620002bd565b62000396816200038f8454620002d3565b846200030f565b602080601f831160018114620003ce5760008415620003b55750858301515b600019600386901b1c1916600185901b17855562000359565b600085815260208120601f198616915b82811015620003ff57888601518255948401946001909101908401620003de565b50858210156200041e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a0516137a36200045f6000396000818161238d015281816123b701526128d70152600050506137a36000f3fe6080604052600436106103035760003560e01c8063906da4c211610190578063c73f9ae7116100dc578063e985e9c511610095578063ed94c7891161006f578063ed94c789146109aa578063eda87c50146109ca578063f2fde38b146109ea578063f725065214610a0a57600080fd5b8063e985e9c51461092b578063ebf0c71714610974578063ec7404b11461098a57600080fd5b8063c73f9ae714610846578063c87b56dd14610895578063d547741f146108b5578063d7224ba0146108d5578063d94be56a146108eb578063dab5f3401461090b57600080fd5b80639c6f50cf11610149578063a22cb46511610123578063a22cb465146107da578063a806a3d4146107fa578063b016a07314610810578063b88d4fde1461082657600080fd5b80639c6f50cf14610771578063a0355eca146107a5578063a217fddf146107c557600080fd5b8063906da4c2146106c657806391d14854146106e6578063934580301461070657806395d89b41146107275780639883566e1461073c57806398d5fdca1461075c57600080fd5b80633b3e672f1161024f5780635e1e10041161020857806365789399116101e2578063657893991461065357806370a0823114610673578063715018a6146106935780638da5cb5b146106a857600080fd5b80635e1e1004146105e65780636352211e146106065780636559d8171461062657600080fd5b80633b3e672f1461053d5780633eaaf86b1461055d57806342842e0e146105735780634d3554c3146105935780634f6ccce7146105a65780635832d5b6146105c657600080fd5b806318160ddd116102bc578063248a9ca311610296578063248a9ca3146104ad5780632f2ff15d146104dd5780632f745c59146104fd57806336568abe1461051d57600080fd5b806318160ddd146104005780631d2c0b381461041f57806323b872dd1461048d57600080fd5b806301ffc9a71461030f57806304f099d01461034457806306fdde0314610371578063081812fc14610393578063095ea7b3146103cb57806315d8f2d7146103ed57600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b5061032f61032a366004612d9e565b610a37565b60405190151581526020015b60405180910390f35b34801561035057600080fd5b5061036461035f366004612dd7565b610a48565b60405161033b9190612e0a565b34801561037d57600080fd5b50610386610b5b565b60405161033b9190612e9e565b34801561039f57600080fd5b506103b36103ae366004612eb1565b610bed565b6040516001600160a01b03909116815260200161033b565b3480156103d757600080fd5b506103eb6103e6366004612eca565b610c7d565b005b6103eb6103fb366004612f3f565b610d94565b34801561040c57600080fd5b506000545b60405190815260200161033b565b34801561042b57600080fd5b50600b54600c54600d54600e54600f54601054601154601254610452979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e08201526101000161033b565b34801561049957600080fd5b506103eb6104a8366004612f8f565b611251565b3480156104b957600080fd5b506104116104c8366004612eb1565b6000908152600a602052604090206001015490565b3480156104e957600080fd5b506103eb6104f8366004612fcb565b61125c565b34801561050957600080fd5b50610411610518366004612eca565b611281565b34801561052957600080fd5b506103eb610538366004612fcb565b6113ec565b34801561054957600080fd5b506103eb610558366004612ff7565b61146a565b34801561056957600080fd5b5061041161271081565b34801561057f57600080fd5b506103eb61058e366004612f8f565b6114f5565b6103eb6105a1366004612eb1565b611510565b3480156105b257600080fd5b506104116105c1366004612eb1565b6118e4565b3480156105d257600080fd5b506020546103b3906001600160a01b031681565b3480156105f257600080fd5b506103eb610601366004613062565b611946565b34801561061257600080fd5b506103b3610621366004612eb1565b611974565b34801561063257600080fd5b50610411610641366004613062565b601b6020526000908152604090205481565b34801561065f57600080fd5b506103eb61066e366004613062565b611986565b34801561067f57600080fd5b5061041161068e366004613062565b6119b4565b34801561069f57600080fd5b506103eb611a45565b3480156106b457600080fd5b506009546001600160a01b03166103b3565b3480156106d257600080fd5b506103eb6106e13660046130be565b611a59565b3480156106f257600080fd5b5061032f610701366004612fcb565b611a87565b34801561071257600080fd5b5060205461032f90600160a01b900460ff1681565b34801561073357600080fd5b50610386611ab2565b34801561074857600080fd5b506103eb610757366004612eca565b611ac1565b34801561076857600080fd5b50610411611aee565b34801561077d57600080fd5b506104117f86fd2bc4d4e66eb1d2a4baa1e4a0fc9d250a58dda5ab1613f68ec8be7a825f1681565b3480156107b157600080fd5b506103eb6107c036600461311d565b611b3d565b3480156107d157600080fd5b50610411600081565b3480156107e657600080fd5b506103eb6107f536600461314f565b611b77565b34801561080657600080fd5b50610411601a5481565b34801561081c57600080fd5b50610411601f5481565b34801561083257600080fd5b506103eb61084136600461318f565b611c3b565b34801561085257600080fd5b5060135460145460155460165460175461086d949392919085565b604080519586526020860194909452928401919091526060830152608082015260a00161033b565b3480156108a157600080fd5b506103866108b0366004612eb1565b611c74565b3480156108c157600080fd5b506103eb6108d0366004612fcb565b611cab565b3480156108e157600080fd5b5061041160075481565b3480156108f757600080fd5b506103eb61090636600461326a565b611cd0565b34801561091757600080fd5b506103eb610926366004612eb1565b611d02565b34801561093757600080fd5b5061032f6109463660046132bf565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561098057600080fd5b5061041160195481565b34801561099657600080fd5b506103eb6109a53660046132e9565b611d13565b3480156109b657600080fd5b50601e546103b3906001600160a01b031681565b3480156109d657600080fd5b506103eb6109e5366004613304565b611d3d565b3480156109f657600080fd5b506103eb610a05366004613062565b611d60565b348015610a1657600080fd5b50610411610a25366004613062565b60186020526000908152604090205481565b6000610a4282611dd9565b92915050565b60606000610a55856119b4565b9050801580610a62575082155b15610a7d575050604080516000815260208101909152610b54565b600080848311610a8e575081610ab0565b610a988587613355565b9150610aa48583613374565b9050828110610ab05750815b610aba8282613387565b6001600160401b03811115610ad157610ad1613179565b604051908082528060200260200182016040528015610afa578160200160208202803683370190505b50935060005b81831015610b4f57610b128884611281565b858281518110610b2457610b2461339a565b602090810291909101015280610b39816133b0565b9150508280610b47906133b0565b935050610b00565b505050505b9392505050565b606060018054610b6a906133c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b96906133c9565b8015610be35780601f10610bb857610100808354040283529160200191610be3565b820191906000526020600020905b815481529060010190602001808311610bc657829003601f168201915b5050505050905090565b6000610bfa826000541190565b610c615760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610c8882611974565b9050806001600160a01b0316836001600160a01b031603610cf65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610c58565b336001600160a01b0382161480610d125750610d128133610946565b610d845760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610c58565b610d8f838383611dfe565b505050565b600260085403610de65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c58565b6002600855323314610e3a5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c58565b602054600160a01b900460ff16610e815760405162461bcd60e51b815260206004820152600b60248201526a6e6f74206f70656e20796560a81b6044820152606401610c58565b601354421015610ed35760405162461bcd60e51b815260206004820152601c60248201527f77686974656c69737420686173206e6f742073746172746564207965000000006044820152606401610c58565b6014544210610f185760405162461bcd60e51b81526020600482015260116024820152701dda1a5d195b1a5cdd08195e1c1a5c9959607a1b6044820152606401610c58565b336000908152601b60205260409020548290610f35908390613374565b1115610f8f5760405162461bcd60e51b815260206004820152602360248201527f546865207175616e746974792068617320657863656564656420746865206c696044820152621b5a5d60ea1b6064820152608401610c58565b60008111610fdf5760405162461bcd60e51b815260206004820152601f60248201527f5175616e74697479206d7573742062652067726561746572207468616e2030006044820152606401610c58565b60175481610fec60005490565b610ff69190613374565b11156110395760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610c58565b601554611047908290613355565b3410156110965760405162461bcd60e51b815260206004820152601e60248201527f416d6f756e7420646f6573206e6f74206d61746368207175616e7469747900006044820152606401610c58565b6040516bffffffffffffffffffffffff193360601b166020820152603481018390526000906054016040516020818303038152906040528051906020012090506000611119868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506019549150859050611e5a565b9050806111575760405162461bcd60e51b815260206004820152600c60248201526b7665726966792066616c736560a01b6044820152606401610c58565b6020546015546001600160a01b03909116906108fc90611178908690613355565b6040518115909202916000818181858888f193505050501580156111a0573d6000803e3d6000fd5b506015546111af908490613355565b3411156111fe5760155433906108fc906111ca908690613355565b6111d49034613387565b6040518115909202916000818181858888f193505050501580156111fc573d6000803e3d6000fd5b505b82601f60008282546112109190613374565b9091555050336000908152601b602052604081208054859290611234908490613374565b9091555061124490503384611e70565b5050600160085550505050565b610d8f838383611e8a565b6000828152600a602052604090206001015461127781612214565b610d8f838361221e565b600061128c836119b4565b82106112e55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610c58565b600080549080805b8381101561138c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561133f57805192505b876001600160a01b0316836001600160a01b0316036113795786840361136b57509350610a4292505050565b83611375816133b0565b9450505b5080611384816133b0565b9150506112ed565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610c58565b6001600160a01b038116331461145c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610c58565b61146682826122a4565b5050565b600061147581612214565b8360005b818110156114ec576114da338888848181106114975761149761339a565b90506020020160208101906114ac9190613062565b8787858181106114be576114be61339a565b9050602002013560405180602001604052806000815250611c3b565b806114e4816133b0565b915050611479565b50505050505050565b610d8f83838360405180602001604052806000815250611c3b565b6002600854036115625760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c58565b60026008553233146115b65760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c58565b602054600160a01b900460ff166115fd5760405162461bcd60e51b815260206004820152600b60248201526a6e6f74206f70656e20796560a81b6044820152606401610c58565b600f5442101561164f5760405162461bcd60e51b815260206004820152601760248201527f73616c6520686173206e6f7420737461727465642079650000000000000000006044820152606401610c58565b60105442106116925760405162461bcd60e51b815260206004820152600f60248201526e185d58dd1a5bdb88195e1c1a5c9959608a1b6044820152606401610c58565b600b54336000908152601860205260409020546116b0908390613374565b111561170a5760405162461bcd60e51b815260206004820152602360248201527f746865207175616e746974792068617320657863656564656420746865206c696044820152621b5a5d60ea1b6064820152608401610c58565b6127108161171760005490565b6117219190613374565b11156117a65760405162461bcd60e51b815260206004820152604860248201527f6e6f7420656e6f7567682072656d61696e696e6720726573657276656420666f60448201527f722061756374696f6e20746f20737570706f72742064657369726564206d696e6064820152671d08185b5bdd5b9d60c21b608482015260a401610c58565b60006117b0611aee565b90506117bc8282613355565b3410156118175760405162461bcd60e51b8152602060048201526024808201527f696e73756666696369656e7420616d6f756e74206f6620657468657220656e74604482015263195c995960e21b6064820152608401610c58565b6020546001600160a01b03166108fc6118308484613355565b6040518115909202916000818181858888f19350505050158015611858573d6000803e3d6000fd5b506118638282613355565b3411156118ac57336108fc6118788484613355565b6118829034613387565b6040518115909202916000818181858888f193505050501580156118aa573d6000803e3d6000fd5b505b33600090815260186020526040812080548492906118cb908490613374565b909155506118db90503383611e70565b50506001600855565b6000805482106119425760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610c58565b5090565b600061195181612214565b50602080546001600160a01b0319166001600160a01b0392909216919091179055565b600061197f8261230b565b5192915050565b600061199181612214565b50601e80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216611a205760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610c58565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b611a4d6124b4565b611a57600061250e565b565b6000611a6481612214565b601c611a71858783613449565b50601d611a7f838583613449565b505050505050565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060028054610b6a906133c9565b6000611acc81612214565b81601a6000828254611ade9190613374565b90915550610d8f90508383611e70565b600d54600f546000918291611b039042613387565b611b0d919061351f565b90506000600c8210611b225750601154610a42565b601254611b30908390613355565b600e54610b549190613387565b6000611b4881612214565b600f839055600c54611b5a9084613374565b6010556013829055601654611b6f9083613374565b601455505050565b336001600160a01b03831603611bcf5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610c58565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611c46848484611e8a565b611c5284848484612560565b611c6e5760405162461bcd60e51b8152600401610c5890613533565b50505050565b6060601c611c8183612662565b601d604051602001611c95939291906135f9565b6040516020818303038152906040529050919050565b6000828152600a6020526040902060010154611cc681612214565b610d8f83836122a4565b6000611cdb81612214565b50600b97909755600c95909555600d93909355600e91909155600f55601055601155601255565b6000611d0d81612214565b50601955565b6000611d1e81612214565b5060208054911515600160a01b0260ff60a01b19909216919091179055565b6000611d4881612214565b50601394909455601492909255601555601655601755565b611d686124b4565b6001600160a01b038116611dcd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c58565b611dd68161250e565b50565b60006001600160e01b03198216637965db0b60e01b1480610a425750610a4282612762565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600082611e6785846127cd565b14949350505050565b61146682826040518060200160405280600081525061281a565b6000611e958261230b565b80519091506000906001600160a01b0316336001600160a01b03161480611ecc575033611ec184610bed565b6001600160a01b0316145b80611ede57508151611ede9033610946565b905080611f485760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610c58565b846001600160a01b031682600001516001600160a01b031614611fbc5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610c58565b6001600160a01b0384166120205760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610c58565b6120306000848460000151611dfe565b6001600160a01b03851660009081526004602052604081208054600192906120629084906001600160801b031661362c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926120ae91859116613653565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612135846001613374565b6000818152600360205260409020549091506001600160a01b03166121c65761215f816000541190565b156121c65760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a7f8686866001612af7565b611dd68133612b5a565b6122288282611a87565b611466576000828152600a602090815260408083206001600160a01b03851684529091529020805460ff191660011790556122603390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6122ae8282611a87565b15611466576000828152600a602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b604080518082019091526000808252602082015261232a826000541190565b6123895760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610c58565b60007f000000000000000000000000000000000000000000000000000000000000000083106123ea576123dc7f000000000000000000000000000000000000000000000000000000000000000084613387565b6123e7906001613374565b90505b825b818110612453576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561244057949350505050565b508061244b81613673565b9150506123ec565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610c58565b6009546001600160a01b03163314611a575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c58565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561265657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125a490339089908890889060040161368a565b6020604051808303816000875af19250505080156125df575060408051601f3d908101601f191682019092526125dc918101906136c7565b60015b61263c573d80801561260d576040519150601f19603f3d011682016040523d82523d6000602084013e612612565b606091505b5080516000036126345760405162461bcd60e51b8152600401610c5890613533565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061265a565b5060015b949350505050565b6060816000036126895750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126b3578061269d816133b0565b91506126ac9050600a8361351f565b915061268d565b6000816001600160401b038111156126cd576126cd613179565b6040519080825280601f01601f1916602001820160405280156126f7576020820181803683370190505b5090505b841561265a5761270c600183613387565b9150612719600a866136e4565b612724906030613374565b60f81b8183815181106127395761273961339a565b60200101906001600160f81b031916908160001a90535061275b600a8661351f565b94506126fb565b60006001600160e01b031982166380ac58cd60e01b148061279357506001600160e01b03198216635b5e139f60e01b145b806127ae57506001600160e01b0319821663780e9d6360e01b145b80610a4257506301ffc9a760e01b6001600160e01b0319831614610a42565b600081815b8451811015612812576127fe828683815181106127f1576127f161339a565b6020026020010151612bbe565b91508061280a816133b0565b9150506127d2565b509392505050565b6000546001600160a01b03841661287d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610c58565b612888816000541190565b156128d55760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610c58565b7f00000000000000000000000000000000000000000000000000000000000000008311156129505760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610c58565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906129ac908790613653565b6001600160801b031681526020018583602001516129ca9190613653565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612ae95760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612aad6000888488612560565b612ac95760405162461bcd60e51b8152600401610c5890613533565b81612ad3816133b0565b9250508080612ae1906133b0565b915050612a60565b506000818155611a7f908785885b601e546040516363b8788760e11b8152600481018490526001600160a01b039091169063c770f10e90602401600060405180830381600087803b158015612b3d57600080fd5b505af1158015612b51573d6000803e3d6000fd5b50505050611c6e565b612b648282611a87565b61146657612b7c816001600160a01b03166014612bed565b612b87836020612bed565b604051602001612b989291906136f8565b60408051601f198184030181529082905262461bcd60e51b8252610c5891600401612e9e565b6000818310612bda576000828152602084905260409020610b54565b6000838152602083905260409020610b54565b60606000612bfc836002613355565b612c07906002613374565b6001600160401b03811115612c1e57612c1e613179565b6040519080825280601f01601f191660200182016040528015612c48576020820181803683370190505b509050600360fc1b81600081518110612c6357612c6361339a565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612c9257612c9261339a565b60200101906001600160f81b031916908160001a9053506000612cb6846002613355565b612cc1906001613374565b90505b6001811115612d39576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612cf557612cf561339a565b1a60f81b828281518110612d0b57612d0b61339a565b60200101906001600160f81b031916908160001a90535060049490941c93612d3281613673565b9050612cc4565b508315610b545760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c58565b6001600160e01b031981168114611dd657600080fd5b600060208284031215612db057600080fd5b8135610b5481612d88565b80356001600160a01b0381168114612dd257600080fd5b919050565b600080600060608486031215612dec57600080fd5b612df584612dbb565b95602085013595506040909401359392505050565b6020808252825182820181905260009190848201906040850190845b81811015612e4257835183529284019291840191600101612e26565b50909695505050505050565b60005b83811015612e69578181015183820152602001612e51565b50506000910152565b60008151808452612e8a816020860160208601612e4e565b601f01601f19169290920160200192915050565b602081526000610b546020830184612e72565b600060208284031215612ec357600080fd5b5035919050565b60008060408385031215612edd57600080fd5b612ee683612dbb565b946020939093013593505050565b60008083601f840112612f0657600080fd5b5081356001600160401b03811115612f1d57600080fd5b6020830191508360208260051b8501011115612f3857600080fd5b9250929050565b60008060008060608587031215612f5557600080fd5b84356001600160401b03811115612f6b57600080fd5b612f7787828801612ef4565b90989097506020870135966040013595509350505050565b600080600060608486031215612fa457600080fd5b612fad84612dbb565b9250612fbb60208501612dbb565b9150604084013590509250925092565b60008060408385031215612fde57600080fd5b82359150612fee60208401612dbb565b90509250929050565b6000806000806040858703121561300d57600080fd5b84356001600160401b038082111561302457600080fd5b61303088838901612ef4565b9096509450602087013591508082111561304957600080fd5b5061305687828801612ef4565b95989497509550505050565b60006020828403121561307457600080fd5b610b5482612dbb565b60008083601f84011261308f57600080fd5b5081356001600160401b038111156130a657600080fd5b602083019150836020828501011115612f3857600080fd5b600080600080604085870312156130d457600080fd5b84356001600160401b03808211156130eb57600080fd5b6130f78883890161307d565b9096509450602087013591508082111561311057600080fd5b506130568782880161307d565b6000806040838503121561313057600080fd5b50508035926020909101359150565b80358015158114612dd257600080fd5b6000806040838503121561316257600080fd5b61316b83612dbb565b9150612fee6020840161313f565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156131a557600080fd5b6131ae85612dbb565b93506131bc60208601612dbb565b92506040850135915060608501356001600160401b03808211156131df57600080fd5b818701915087601f8301126131f357600080fd5b81358181111561320557613205613179565b604051601f8201601f19908116603f0116810190838211818310171561322d5761322d613179565b816040528281528a602084870101111561324657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080600080600080600080610100898b03121561328757600080fd5b505086359860208801359850604088013597606081013597506080810135965060a0810135955060c0810135945060e0013592509050565b600080604083850312156132d257600080fd5b6132db83612dbb565b9150612fee60208401612dbb565b6000602082840312156132fb57600080fd5b610b548261313f565b600080600080600060a0868803121561331c57600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561336f5761336f61333f565b500290565b80820180821115610a4257610a4261333f565b81810381811115610a4257610a4261333f565b634e487b7160e01b600052603260045260246000fd5b6000600182016133c2576133c261333f565b5060010190565b600181811c908216806133dd57607f821691505b6020821081036133fd57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610d8f57600081815260208120601f850160051c8101602086101561342a5750805b601f850160051c820191505b81811015611a7f57828155600101613436565b6001600160401b0383111561346057613460613179565b6134748361346e83546133c9565b83613403565b6000601f8411600181146134a857600085156134905750838201355b600019600387901b1c1916600186901b178355613502565b600083815260209020601f19861690835b828110156134d957868501358255602094850194600190920191016134b9565b50868210156134f65760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b600052601260045260246000fd5b60008261352e5761352e613509565b500490565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008154613593816133c9565b600182811680156135ab57600181146135c0576135ef565b60ff19841687528215158302870194506135ef565b8560005260208060002060005b858110156135e65781548a8201529084019082016135cd565b50505082870194505b5050505092915050565b60006136058286613586565b8451613615818360208901612e4e565b61362181830186613586565b979650505050505050565b6001600160801b0382811682821603908082111561364c5761364c61333f565b5092915050565b6001600160801b0381811683821601908082111561364c5761364c61333f565b6000816136825761368261333f565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906136bd90830184612e72565b9695505050505050565b6000602082840312156136d957600080fd5b8151610b5481612d88565b6000826136f3576136f3613509565b500690565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613730816017850160208801612e4e565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613761816028840160208801612e4e565b0160280194935050505056fea2646970667358221220b98618ae934aa1d690a847c5c304cfeae4ecb152f3caf10fffe4d8919e4de4d764736f6c6343000810003368747470733a2f2f62616679626569666735786374326d616c7175343465327a6c6d646d70743533746d617432747a323478756b326564626b677233693574747065752e697066732e6e667473746f726167652e6c696e6b2f6368617261637465725f

Deployed Bytecode

0x6080604052600436106103035760003560e01c8063906da4c211610190578063c73f9ae7116100dc578063e985e9c511610095578063ed94c7891161006f578063ed94c789146109aa578063eda87c50146109ca578063f2fde38b146109ea578063f725065214610a0a57600080fd5b8063e985e9c51461092b578063ebf0c71714610974578063ec7404b11461098a57600080fd5b8063c73f9ae714610846578063c87b56dd14610895578063d547741f146108b5578063d7224ba0146108d5578063d94be56a146108eb578063dab5f3401461090b57600080fd5b80639c6f50cf11610149578063a22cb46511610123578063a22cb465146107da578063a806a3d4146107fa578063b016a07314610810578063b88d4fde1461082657600080fd5b80639c6f50cf14610771578063a0355eca146107a5578063a217fddf146107c557600080fd5b8063906da4c2146106c657806391d14854146106e6578063934580301461070657806395d89b41146107275780639883566e1461073c57806398d5fdca1461075c57600080fd5b80633b3e672f1161024f5780635e1e10041161020857806365789399116101e2578063657893991461065357806370a0823114610673578063715018a6146106935780638da5cb5b146106a857600080fd5b80635e1e1004146105e65780636352211e146106065780636559d8171461062657600080fd5b80633b3e672f1461053d5780633eaaf86b1461055d57806342842e0e146105735780634d3554c3146105935780634f6ccce7146105a65780635832d5b6146105c657600080fd5b806318160ddd116102bc578063248a9ca311610296578063248a9ca3146104ad5780632f2ff15d146104dd5780632f745c59146104fd57806336568abe1461051d57600080fd5b806318160ddd146104005780631d2c0b381461041f57806323b872dd1461048d57600080fd5b806301ffc9a71461030f57806304f099d01461034457806306fdde0314610371578063081812fc14610393578063095ea7b3146103cb57806315d8f2d7146103ed57600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b5061032f61032a366004612d9e565b610a37565b60405190151581526020015b60405180910390f35b34801561035057600080fd5b5061036461035f366004612dd7565b610a48565b60405161033b9190612e0a565b34801561037d57600080fd5b50610386610b5b565b60405161033b9190612e9e565b34801561039f57600080fd5b506103b36103ae366004612eb1565b610bed565b6040516001600160a01b03909116815260200161033b565b3480156103d757600080fd5b506103eb6103e6366004612eca565b610c7d565b005b6103eb6103fb366004612f3f565b610d94565b34801561040c57600080fd5b506000545b60405190815260200161033b565b34801561042b57600080fd5b50600b54600c54600d54600e54600f54601054601154601254610452979695949392919088565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e08201526101000161033b565b34801561049957600080fd5b506103eb6104a8366004612f8f565b611251565b3480156104b957600080fd5b506104116104c8366004612eb1565b6000908152600a602052604090206001015490565b3480156104e957600080fd5b506103eb6104f8366004612fcb565b61125c565b34801561050957600080fd5b50610411610518366004612eca565b611281565b34801561052957600080fd5b506103eb610538366004612fcb565b6113ec565b34801561054957600080fd5b506103eb610558366004612ff7565b61146a565b34801561056957600080fd5b5061041161271081565b34801561057f57600080fd5b506103eb61058e366004612f8f565b6114f5565b6103eb6105a1366004612eb1565b611510565b3480156105b257600080fd5b506104116105c1366004612eb1565b6118e4565b3480156105d257600080fd5b506020546103b3906001600160a01b031681565b3480156105f257600080fd5b506103eb610601366004613062565b611946565b34801561061257600080fd5b506103b3610621366004612eb1565b611974565b34801561063257600080fd5b50610411610641366004613062565b601b6020526000908152604090205481565b34801561065f57600080fd5b506103eb61066e366004613062565b611986565b34801561067f57600080fd5b5061041161068e366004613062565b6119b4565b34801561069f57600080fd5b506103eb611a45565b3480156106b457600080fd5b506009546001600160a01b03166103b3565b3480156106d257600080fd5b506103eb6106e13660046130be565b611a59565b3480156106f257600080fd5b5061032f610701366004612fcb565b611a87565b34801561071257600080fd5b5060205461032f90600160a01b900460ff1681565b34801561073357600080fd5b50610386611ab2565b34801561074857600080fd5b506103eb610757366004612eca565b611ac1565b34801561076857600080fd5b50610411611aee565b34801561077d57600080fd5b506104117f86fd2bc4d4e66eb1d2a4baa1e4a0fc9d250a58dda5ab1613f68ec8be7a825f1681565b3480156107b157600080fd5b506103eb6107c036600461311d565b611b3d565b3480156107d157600080fd5b50610411600081565b3480156107e657600080fd5b506103eb6107f536600461314f565b611b77565b34801561080657600080fd5b50610411601a5481565b34801561081c57600080fd5b50610411601f5481565b34801561083257600080fd5b506103eb61084136600461318f565b611c3b565b34801561085257600080fd5b5060135460145460155460165460175461086d949392919085565b604080519586526020860194909452928401919091526060830152608082015260a00161033b565b3480156108a157600080fd5b506103866108b0366004612eb1565b611c74565b3480156108c157600080fd5b506103eb6108d0366004612fcb565b611cab565b3480156108e157600080fd5b5061041160075481565b3480156108f757600080fd5b506103eb61090636600461326a565b611cd0565b34801561091757600080fd5b506103eb610926366004612eb1565b611d02565b34801561093757600080fd5b5061032f6109463660046132bf565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561098057600080fd5b5061041160195481565b34801561099657600080fd5b506103eb6109a53660046132e9565b611d13565b3480156109b657600080fd5b50601e546103b3906001600160a01b031681565b3480156109d657600080fd5b506103eb6109e5366004613304565b611d3d565b3480156109f657600080fd5b506103eb610a05366004613062565b611d60565b348015610a1657600080fd5b50610411610a25366004613062565b60186020526000908152604090205481565b6000610a4282611dd9565b92915050565b60606000610a55856119b4565b9050801580610a62575082155b15610a7d575050604080516000815260208101909152610b54565b600080848311610a8e575081610ab0565b610a988587613355565b9150610aa48583613374565b9050828110610ab05750815b610aba8282613387565b6001600160401b03811115610ad157610ad1613179565b604051908082528060200260200182016040528015610afa578160200160208202803683370190505b50935060005b81831015610b4f57610b128884611281565b858281518110610b2457610b2461339a565b602090810291909101015280610b39816133b0565b9150508280610b47906133b0565b935050610b00565b505050505b9392505050565b606060018054610b6a906133c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610b96906133c9565b8015610be35780601f10610bb857610100808354040283529160200191610be3565b820191906000526020600020905b815481529060010190602001808311610bc657829003601f168201915b5050505050905090565b6000610bfa826000541190565b610c615760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610c8882611974565b9050806001600160a01b0316836001600160a01b031603610cf65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610c58565b336001600160a01b0382161480610d125750610d128133610946565b610d845760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610c58565b610d8f838383611dfe565b505050565b600260085403610de65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c58565b6002600855323314610e3a5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c58565b602054600160a01b900460ff16610e815760405162461bcd60e51b815260206004820152600b60248201526a6e6f74206f70656e20796560a81b6044820152606401610c58565b601354421015610ed35760405162461bcd60e51b815260206004820152601c60248201527f77686974656c69737420686173206e6f742073746172746564207965000000006044820152606401610c58565b6014544210610f185760405162461bcd60e51b81526020600482015260116024820152701dda1a5d195b1a5cdd08195e1c1a5c9959607a1b6044820152606401610c58565b336000908152601b60205260409020548290610f35908390613374565b1115610f8f5760405162461bcd60e51b815260206004820152602360248201527f546865207175616e746974792068617320657863656564656420746865206c696044820152621b5a5d60ea1b6064820152608401610c58565b60008111610fdf5760405162461bcd60e51b815260206004820152601f60248201527f5175616e74697479206d7573742062652067726561746572207468616e2030006044820152606401610c58565b60175481610fec60005490565b610ff69190613374565b11156110395760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610c58565b601554611047908290613355565b3410156110965760405162461bcd60e51b815260206004820152601e60248201527f416d6f756e7420646f6573206e6f74206d61746368207175616e7469747900006044820152606401610c58565b6040516bffffffffffffffffffffffff193360601b166020820152603481018390526000906054016040516020818303038152906040528051906020012090506000611119868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506019549150859050611e5a565b9050806111575760405162461bcd60e51b815260206004820152600c60248201526b7665726966792066616c736560a01b6044820152606401610c58565b6020546015546001600160a01b03909116906108fc90611178908690613355565b6040518115909202916000818181858888f193505050501580156111a0573d6000803e3d6000fd5b506015546111af908490613355565b3411156111fe5760155433906108fc906111ca908690613355565b6111d49034613387565b6040518115909202916000818181858888f193505050501580156111fc573d6000803e3d6000fd5b505b82601f60008282546112109190613374565b9091555050336000908152601b602052604081208054859290611234908490613374565b9091555061124490503384611e70565b5050600160085550505050565b610d8f838383611e8a565b6000828152600a602052604090206001015461127781612214565b610d8f838361221e565b600061128c836119b4565b82106112e55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610c58565b600080549080805b8381101561138c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561133f57805192505b876001600160a01b0316836001600160a01b0316036113795786840361136b57509350610a4292505050565b83611375816133b0565b9450505b5080611384816133b0565b9150506112ed565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610c58565b6001600160a01b038116331461145c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610c58565b61146682826122a4565b5050565b600061147581612214565b8360005b818110156114ec576114da338888848181106114975761149761339a565b90506020020160208101906114ac9190613062565b8787858181106114be576114be61339a565b9050602002013560405180602001604052806000815250611c3b565b806114e4816133b0565b915050611479565b50505050505050565b610d8f83838360405180602001604052806000815250611c3b565b6002600854036115625760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610c58565b60026008553233146115b65760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610c58565b602054600160a01b900460ff166115fd5760405162461bcd60e51b815260206004820152600b60248201526a6e6f74206f70656e20796560a81b6044820152606401610c58565b600f5442101561164f5760405162461bcd60e51b815260206004820152601760248201527f73616c6520686173206e6f7420737461727465642079650000000000000000006044820152606401610c58565b60105442106116925760405162461bcd60e51b815260206004820152600f60248201526e185d58dd1a5bdb88195e1c1a5c9959608a1b6044820152606401610c58565b600b54336000908152601860205260409020546116b0908390613374565b111561170a5760405162461bcd60e51b815260206004820152602360248201527f746865207175616e746974792068617320657863656564656420746865206c696044820152621b5a5d60ea1b6064820152608401610c58565b6127108161171760005490565b6117219190613374565b11156117a65760405162461bcd60e51b815260206004820152604860248201527f6e6f7420656e6f7567682072656d61696e696e6720726573657276656420666f60448201527f722061756374696f6e20746f20737570706f72742064657369726564206d696e6064820152671d08185b5bdd5b9d60c21b608482015260a401610c58565b60006117b0611aee565b90506117bc8282613355565b3410156118175760405162461bcd60e51b8152602060048201526024808201527f696e73756666696369656e7420616d6f756e74206f6620657468657220656e74604482015263195c995960e21b6064820152608401610c58565b6020546001600160a01b03166108fc6118308484613355565b6040518115909202916000818181858888f19350505050158015611858573d6000803e3d6000fd5b506118638282613355565b3411156118ac57336108fc6118788484613355565b6118829034613387565b6040518115909202916000818181858888f193505050501580156118aa573d6000803e3d6000fd5b505b33600090815260186020526040812080548492906118cb908490613374565b909155506118db90503383611e70565b50506001600855565b6000805482106119425760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610c58565b5090565b600061195181612214565b50602080546001600160a01b0319166001600160a01b0392909216919091179055565b600061197f8261230b565b5192915050565b600061199181612214565b50601e80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216611a205760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610c58565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b611a4d6124b4565b611a57600061250e565b565b6000611a6481612214565b601c611a71858783613449565b50601d611a7f838583613449565b505050505050565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060028054610b6a906133c9565b6000611acc81612214565b81601a6000828254611ade9190613374565b90915550610d8f90508383611e70565b600d54600f546000918291611b039042613387565b611b0d919061351f565b90506000600c8210611b225750601154610a42565b601254611b30908390613355565b600e54610b549190613387565b6000611b4881612214565b600f839055600c54611b5a9084613374565b6010556013829055601654611b6f9083613374565b601455505050565b336001600160a01b03831603611bcf5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610c58565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611c46848484611e8a565b611c5284848484612560565b611c6e5760405162461bcd60e51b8152600401610c5890613533565b50505050565b6060601c611c8183612662565b601d604051602001611c95939291906135f9565b6040516020818303038152906040529050919050565b6000828152600a6020526040902060010154611cc681612214565b610d8f83836122a4565b6000611cdb81612214565b50600b97909755600c95909555600d93909355600e91909155600f55601055601155601255565b6000611d0d81612214565b50601955565b6000611d1e81612214565b5060208054911515600160a01b0260ff60a01b19909216919091179055565b6000611d4881612214565b50601394909455601492909255601555601655601755565b611d686124b4565b6001600160a01b038116611dcd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c58565b611dd68161250e565b50565b60006001600160e01b03198216637965db0b60e01b1480610a425750610a4282612762565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600082611e6785846127cd565b14949350505050565b61146682826040518060200160405280600081525061281a565b6000611e958261230b565b80519091506000906001600160a01b0316336001600160a01b03161480611ecc575033611ec184610bed565b6001600160a01b0316145b80611ede57508151611ede9033610946565b905080611f485760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610c58565b846001600160a01b031682600001516001600160a01b031614611fbc5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610c58565b6001600160a01b0384166120205760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610c58565b6120306000848460000151611dfe565b6001600160a01b03851660009081526004602052604081208054600192906120629084906001600160801b031661362c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926120ae91859116613653565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612135846001613374565b6000818152600360205260409020549091506001600160a01b03166121c65761215f816000541190565b156121c65760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a7f8686866001612af7565b611dd68133612b5a565b6122288282611a87565b611466576000828152600a602090815260408083206001600160a01b03851684529091529020805460ff191660011790556122603390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6122ae8282611a87565b15611466576000828152600a602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b604080518082019091526000808252602082015261232a826000541190565b6123895760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610c58565b60007f00000000000000000000000000000000000000000000000000000000000000c883106123ea576123dc7f00000000000000000000000000000000000000000000000000000000000000c884613387565b6123e7906001613374565b90505b825b818110612453576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561244057949350505050565b508061244b81613673565b9150506123ec565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610c58565b6009546001600160a01b03163314611a575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c58565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561265657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125a490339089908890889060040161368a565b6020604051808303816000875af19250505080156125df575060408051601f3d908101601f191682019092526125dc918101906136c7565b60015b61263c573d80801561260d576040519150601f19603f3d011682016040523d82523d6000602084013e612612565b606091505b5080516000036126345760405162461bcd60e51b8152600401610c5890613533565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061265a565b5060015b949350505050565b6060816000036126895750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126b3578061269d816133b0565b91506126ac9050600a8361351f565b915061268d565b6000816001600160401b038111156126cd576126cd613179565b6040519080825280601f01601f1916602001820160405280156126f7576020820181803683370190505b5090505b841561265a5761270c600183613387565b9150612719600a866136e4565b612724906030613374565b60f81b8183815181106127395761273961339a565b60200101906001600160f81b031916908160001a90535061275b600a8661351f565b94506126fb565b60006001600160e01b031982166380ac58cd60e01b148061279357506001600160e01b03198216635b5e139f60e01b145b806127ae57506001600160e01b0319821663780e9d6360e01b145b80610a4257506301ffc9a760e01b6001600160e01b0319831614610a42565b600081815b8451811015612812576127fe828683815181106127f1576127f161339a565b6020026020010151612bbe565b91508061280a816133b0565b9150506127d2565b509392505050565b6000546001600160a01b03841661287d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610c58565b612888816000541190565b156128d55760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610c58565b7f00000000000000000000000000000000000000000000000000000000000000c88311156129505760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610c58565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906129ac908790613653565b6001600160801b031681526020018583602001516129ca9190613653565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612ae95760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612aad6000888488612560565b612ac95760405162461bcd60e51b8152600401610c5890613533565b81612ad3816133b0565b9250508080612ae1906133b0565b915050612a60565b506000818155611a7f908785885b601e546040516363b8788760e11b8152600481018490526001600160a01b039091169063c770f10e90602401600060405180830381600087803b158015612b3d57600080fd5b505af1158015612b51573d6000803e3d6000fd5b50505050611c6e565b612b648282611a87565b61146657612b7c816001600160a01b03166014612bed565b612b87836020612bed565b604051602001612b989291906136f8565b60408051601f198184030181529082905262461bcd60e51b8252610c5891600401612e9e565b6000818310612bda576000828152602084905260409020610b54565b6000838152602083905260409020610b54565b60606000612bfc836002613355565b612c07906002613374565b6001600160401b03811115612c1e57612c1e613179565b6040519080825280601f01601f191660200182016040528015612c48576020820181803683370190505b509050600360fc1b81600081518110612c6357612c6361339a565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612c9257612c9261339a565b60200101906001600160f81b031916908160001a9053506000612cb6846002613355565b612cc1906001613374565b90505b6001811115612d39576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612cf557612cf561339a565b1a60f81b828281518110612d0b57612d0b61339a565b60200101906001600160f81b031916908160001a90535060049490941c93612d3281613673565b9050612cc4565b508315610b545760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c58565b6001600160e01b031981168114611dd657600080fd5b600060208284031215612db057600080fd5b8135610b5481612d88565b80356001600160a01b0381168114612dd257600080fd5b919050565b600080600060608486031215612dec57600080fd5b612df584612dbb565b95602085013595506040909401359392505050565b6020808252825182820181905260009190848201906040850190845b81811015612e4257835183529284019291840191600101612e26565b50909695505050505050565b60005b83811015612e69578181015183820152602001612e51565b50506000910152565b60008151808452612e8a816020860160208601612e4e565b601f01601f19169290920160200192915050565b602081526000610b546020830184612e72565b600060208284031215612ec357600080fd5b5035919050565b60008060408385031215612edd57600080fd5b612ee683612dbb565b946020939093013593505050565b60008083601f840112612f0657600080fd5b5081356001600160401b03811115612f1d57600080fd5b6020830191508360208260051b8501011115612f3857600080fd5b9250929050565b60008060008060608587031215612f5557600080fd5b84356001600160401b03811115612f6b57600080fd5b612f7787828801612ef4565b90989097506020870135966040013595509350505050565b600080600060608486031215612fa457600080fd5b612fad84612dbb565b9250612fbb60208501612dbb565b9150604084013590509250925092565b60008060408385031215612fde57600080fd5b82359150612fee60208401612dbb565b90509250929050565b6000806000806040858703121561300d57600080fd5b84356001600160401b038082111561302457600080fd5b61303088838901612ef4565b9096509450602087013591508082111561304957600080fd5b5061305687828801612ef4565b95989497509550505050565b60006020828403121561307457600080fd5b610b5482612dbb565b60008083601f84011261308f57600080fd5b5081356001600160401b038111156130a657600080fd5b602083019150836020828501011115612f3857600080fd5b600080600080604085870312156130d457600080fd5b84356001600160401b03808211156130eb57600080fd5b6130f78883890161307d565b9096509450602087013591508082111561311057600080fd5b506130568782880161307d565b6000806040838503121561313057600080fd5b50508035926020909101359150565b80358015158114612dd257600080fd5b6000806040838503121561316257600080fd5b61316b83612dbb565b9150612fee6020840161313f565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156131a557600080fd5b6131ae85612dbb565b93506131bc60208601612dbb565b92506040850135915060608501356001600160401b03808211156131df57600080fd5b818701915087601f8301126131f357600080fd5b81358181111561320557613205613179565b604051601f8201601f19908116603f0116810190838211818310171561322d5761322d613179565b816040528281528a602084870101111561324657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080600080600080600080610100898b03121561328757600080fd5b505086359860208801359850604088013597606081013597506080810135965060a0810135955060c0810135945060e0013592509050565b600080604083850312156132d257600080fd5b6132db83612dbb565b9150612fee60208401612dbb565b6000602082840312156132fb57600080fd5b610b548261313f565b600080600080600060a0868803121561331c57600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561336f5761336f61333f565b500290565b80820180821115610a4257610a4261333f565b81810381811115610a4257610a4261333f565b634e487b7160e01b600052603260045260246000fd5b6000600182016133c2576133c261333f565b5060010190565b600181811c908216806133dd57607f821691505b6020821081036133fd57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610d8f57600081815260208120601f850160051c8101602086101561342a5750805b601f850160051c820191505b81811015611a7f57828155600101613436565b6001600160401b0383111561346057613460613179565b6134748361346e83546133c9565b83613403565b6000601f8411600181146134a857600085156134905750838201355b600019600387901b1c1916600186901b178355613502565b600083815260209020601f19861690835b828110156134d957868501358255602094850194600190920191016134b9565b50868210156134f65760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b600052601260045260246000fd5b60008261352e5761352e613509565b500490565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008154613593816133c9565b600182811680156135ab57600181146135c0576135ef565b60ff19841687528215158302870194506135ef565b8560005260208060002060005b858110156135e65781548a8201529084019082016135cd565b50505082870194505b5050505092915050565b60006136058286613586565b8451613615818360208901612e4e565b61362181830186613586565b979650505050505050565b6001600160801b0382811682821603908082111561364c5761364c61333f565b5092915050565b6001600160801b0381811683821601908082111561364c5761364c61333f565b6000816136825761368261333f565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906136bd90830184612e72565b9695505050505050565b6000602082840312156136d957600080fd5b8151610b5481612d88565b6000826136f3576136f3613509565b500690565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613730816017850160208801612e4e565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351613761816028840160208801612e4e565b0160280194935050505056fea2646970667358221220b98618ae934aa1d690a847c5c304cfeae4ecb152f3caf10fffe4d8919e4de4d764736f6c63430008100033

Deployed Bytecode Sourcemap

63392:9587:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68007:210;;;;;;;;;;-1:-1:-1;68007:210:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;68007:210:0;;;;;;;;72197:775;;;;;;;;;;-1:-1:-1;72197:775:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;35906:94::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37431:204::-;;;;;;;;;;-1:-1:-1;37431:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2839:32:1;;;2821:51;;2809:2;2794:18;37431:204:0;2675:203:1;36994:379:0;;;;;;;;;;-1:-1:-1;36994:379:0;;;;;:::i;:::-;;:::i;:::-;;70017:1460;;;;;;:::i;:::-;;:::i;32741:94::-;;;;;;;;;;-1:-1:-1;32794:7:0;32817:12;32741:94;;;4238:25:1;;;4226:2;4211:18;32741:94:0;4092:177:1;63889:31:0;;;;;;;;;;-1:-1:-1;63889:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4617:25:1;;;4673:2;4658:18;;4651:34;;;;4701:18;;;4694:34;;;;4759:2;4744:18;;4737:34;;;;4802:3;4787:19;;4780:35;4846:3;4831:19;;4824:35;4890:3;4875:19;;4868:35;4934:3;4919:19;;4912:35;4604:3;4589:19;63889:31:0;4274:679:1;38281:142:0;;;;;;;;;;-1:-1:-1;38281:142:0;;;;;:::i;:::-;;:::i;56638:131::-;;;;;;;;;;-1:-1:-1;56638:131:0;;;;;:::i;:::-;56712:7;56739:12;;;:6;:12;;;;;:22;;;;56638:131;57079:147;;;;;;;;;;-1:-1:-1;57079:147:0;;;;;:::i;:::-;;:::i;33372:744::-;;;;;;;;;;-1:-1:-1;33372:744:0;;;;;:::i;:::-;;:::i;58223:218::-;;;;;;;;;;-1:-1:-1;58223:218:0;;;;;:::i;:::-;;:::i;68570:323::-;;;;;;;;;;-1:-1:-1;68570:323:0;;;;;:::i;:::-;;:::i;64414:44::-;;;;;;;;;;;;64453:5;64414:44;;38486:157;;;;;;;;;;-1:-1:-1;38486:157:0;;;;;:::i;:::-;;:::i;68906:1101::-;;;;;;:::i;:::-;;:::i;32904:177::-;;;;;;;;;;-1:-1:-1;32904:177:0;;;;;:::i;:::-;;:::i;64831:29::-;;;;;;;;;;-1:-1:-1;64831:29:0;;;;-1:-1:-1;;;;;64831:29:0;;;67001:140;;;;;;;;;;-1:-1:-1;67001:140:0;;;;;:::i;:::-;;:::i;35729:118::-;;;;;;;;;;-1:-1:-1;35729:118:0;;;;;:::i;:::-;;:::i;64351:54::-;;;;;;;;;;-1:-1:-1;64351:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;67394:137;;;;;;;;;;-1:-1:-1;67394:137:0;;;;;:::i;:::-;;:::i;34606:211::-;;;;;;;;;;-1:-1:-1;34606:211:0;;;;;:::i;:::-;;:::i;48367:103::-;;;;;;;;;;;;;:::i;47719:87::-;;;;;;;;;;-1:-1:-1;47792:6:0;;-1:-1:-1;;;;;47792:6:0;47719:87;;68360:202;;;;;;;;;;-1:-1:-1;68360:202:0;;;;;:::i;:::-;;:::i;55098:147::-;;;;;;;;;;-1:-1:-1;55098:147:0;;;;;:::i;:::-;;:::i;64869:24::-;;;;;;;;;;-1:-1:-1;64869:24:0;;;;-1:-1:-1;;;64869:24:0;;;;;;36061:98;;;;;;;;;;;;;:::i;71489:202::-;;;;;;;;;;-1:-1:-1;71489:202:0;;;;;:::i;:::-;;:::i;67539:460::-;;;;;;;;;;;;;:::i;64750:66::-;;;;;;;;;;;;64790:26;64750:66;;66536:457;;;;;;;;;;-1:-1:-1;66536:457:0;;;;;:::i;:::-;;:::i;54203:49::-;;;;;;;;;;-1:-1:-1;54203:49:0;54248:4;54203:49;;37699:274;;;;;;;;;;-1:-1:-1;37699:274:0;;;;;:::i;:::-;;:::i;64312:30::-;;;;;;;;;;;;;;;;64707:29;;;;;;;;;;;;;;;;38706:311;;;;;;;;;;-1:-1:-1;38706:311:0;;;;;:::i;:::-;;:::i;64166:39::-;;;;;;;;;;-1:-1:-1;64166:39:0;;;;;;;;;;;;;;;;;;;;;;10176:25:1;;;10232:2;10217:18;;10210:34;;;;10260:18;;;10253:34;;;;10318:2;10303:18;;10296:34;10361:3;10346:19;;10339:35;10163:3;10148:19;64166:39:0;9917:463:1;71704:188:0;;;;;;;;;;-1:-1:-1;71704:188:0;;;;;:::i;:::-;;:::i;57519:149::-;;;;;;;;;;-1:-1:-1;57519:149:0;;;;;:::i;:::-;;:::i;43121:43::-;;;;;;;;;;;;;;;;65076:861;;;;;;;;;;-1:-1:-1;65076:861:0;;;;;:::i;:::-;;:::i;67149:100::-;;;;;;;;;;-1:-1:-1;67149:100:0;;;;;:::i;:::-;;:::i;38036:186::-;;;;;;;;;;-1:-1:-1;38036:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;38181:25:0;;;38158:4;38181:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38036:186;64282:19;;;;;;;;;;;;;;;;67257:129;;;;;;;;;;-1:-1:-1;67257:129:0;;;;;:::i;:::-;;:::i;64664:28::-;;;;;;;;;;-1:-1:-1;64664:28:0;;;;-1:-1:-1;;;;;64664:28:0;;;65945:578;;;;;;;;;;-1:-1:-1;65945:578:0;;;;;:::i;:::-;;:::i;48625:201::-;;;;;;;;;;-1:-1:-1;48625:201:0;;;;;:::i;:::-;;:::i;64214:59::-;;;;;;;;;;-1:-1:-1;64214:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;68007:210;68144:4;68173:36;68197:11;68173:23;:36::i;:::-;68166:43;68007:210;-1:-1:-1;;68007:210:0:o;72197:775::-;72286:19;72317:18;72338:16;72348:5;72338:9;:16::i;:::-;72317:37;-1:-1:-1;72369:15:0;;;:32;;-1:-1:-1;72388:13:0;;72369:32;72365:88;;;-1:-1:-1;;72425:16:0;;;72439:1;72425:16;;;;;;;;72418:23;;72365:88;72463:10;72488:8;72529;72515:10;:22;72511:254;;-1:-1:-1;72560:10:0;72511:254;;;72611:17;72620:8;72611:6;:17;:::i;:::-;72603:25;-1:-1:-1;72649:16:0;72657:8;72603:25;72649:16;:::i;:::-;72643:22;;72691:10;72684:3;:17;72680:74;;-1:-1:-1;72728:10:0;72680:74;72795:11;72801:5;72795:3;:11;:::i;:::-;-1:-1:-1;;;;;72781:26:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;72781:26:0;;72775:32;;72818:10;72839:124;72854:3;72846:5;:11;72839:124;;;72896:33;72916:5;72923;72896:19;:33::i;:::-;72883:3;72887:5;72883:10;;;;;;;;:::i;:::-;;;;;;;;;;:46;72944:7;;;;:::i;:::-;;;;72859;;;;;:::i;:::-;;;;72839:124;;;72306:666;;;;72197:775;;;;;;:::o;35906:94::-;35960:13;35989:5;35982:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35906:94;:::o;37431:204::-;37499:7;37523:16;37531:7;39313:4;39343:12;-1:-1:-1;39333:22:0;39256:105;37523:16;37515:74;;;;-1:-1:-1;;;37515:74:0;;13614:2:1;37515:74:0;;;13596:21:1;13653:2;13633:18;;;13626:30;13692:34;13672:18;;;13665:62;-1:-1:-1;;;13743:18:1;;;13736:43;13796:19;;37515:74:0;;;;;;;;;-1:-1:-1;37605:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37605:24:0;;37431:204::o;36994:379::-;37063:13;37079:24;37095:7;37079:15;:24::i;:::-;37063:40;;37124:5;-1:-1:-1;;;;;37118:11:0;:2;-1:-1:-1;;;;;37118:11:0;;37110:58;;;;-1:-1:-1;;;37110:58:0;;14028:2:1;37110:58:0;;;14010:21:1;14067:2;14047:18;;;14040:30;14106:34;14086:18;;;14079:62;-1:-1:-1;;;14157:18:1;;;14150:32;14199:19;;37110:58:0;13826:398:1;37110:58:0;30301:10;-1:-1:-1;;;;;37193:21:0;;;;:62;;-1:-1:-1;37218:37:0;37235:5;30301:10;38036:186;:::i;37218:37::-;37177:153;;;;-1:-1:-1;;;37177:153:0;;14431:2:1;37177:153:0;;;14413:21:1;14470:2;14450:18;;;14443:30;14509:34;14489:18;;;14482:62;14580:27;14560:18;;;14553:55;14625:19;;37177:153:0;14229:421:1;37177:153:0;37339:28;37348:2;37352:7;37361:5;37339:8;:28::i;:::-;37056:317;36994:379;;:::o;70017:1460::-;62296:1;62894:7;;:19;62886:63;;;;-1:-1:-1;;;62886:63:0;;14857:2:1;62886:63:0;;;14839:21:1;14896:2;14876:18;;;14869:30;14935:33;14915:18;;;14908:61;14986:18;;62886:63:0;14655:355:1;62886:63:0;62296:1;63027:7;:18;68268:9:::1;68281:10;68268:23;68260:66;;;::::0;-1:-1:-1;;;68260:66:0;;15217:2:1;68260:66:0::1;::::0;::::1;15199:21:1::0;15256:2;15236:18;;;15229:30;15295:32;15275:18;;;15268:60;15345:18;;68260:66:0::1;15015:354:1::0;68260:66:0::1;70171:12:::2;::::0;-1:-1:-1;;;70171:12:0;::::2;;;70163:36;;;::::0;-1:-1:-1;;;70163:36:0;;15576:2:1;70163:36:0::2;::::0;::::2;15558:21:1::0;15615:2;15595:18;;;15588:30;-1:-1:-1;;;15634:18:1;;;15627:41;15685:18;;70163:36:0::2;15374:335:1::0;70163:36:0::2;70239:15;:36:::0;70220:15:::2;:55;;70212:95;;;::::0;-1:-1:-1;;;70212:95:0;;15916:2:1;70212:95:0::2;::::0;::::2;15898:21:1::0;15955:2;15935:18;;;15928:30;15994;15974:18;;;15967:58;16042:18;;70212:95:0::2;15714:352:1::0;70212:95:0::2;70350:34:::0;;70332:15:::2;:52;70324:82;;;::::0;-1:-1:-1;;;70324:82:0;;16273:2:1;70324:82:0::2;::::0;::::2;16255:21:1::0;16312:2;16292:18;;;16285:30;-1:-1:-1;;;16331:18:1;;;16324:47;16388:18;;70324:82:0::2;16071:341:1::0;70324:82:0::2;70461:10;70442:30;::::0;;;:18:::2;:30;::::0;;;;;70488:13;;70442:41:::2;::::0;70475:8;;70442:41:::2;:::i;:::-;:59;;70434:106;;;::::0;-1:-1:-1;;;70434:106:0;;16619:2:1;70434:106:0::2;::::0;::::2;16601:21:1::0;16658:2;16638:18;;;16631:30;16697:34;16677:18;;;16670:62;-1:-1:-1;;;16748:18:1;;;16741:33;16791:19;;70434:106:0::2;16417:399:1::0;70434:106:0::2;70572:1;70561:8;:12;70553:56;;;::::0;-1:-1:-1;;;70553:56:0;;17023:2:1;70553:56:0::2;::::0;::::2;17005:21:1::0;17062:2;17042:18;;;17035:30;17101:33;17081:18;;;17074:61;17152:18;;70553:56:0::2;16821:355:1::0;70553:56:0::2;70660:37:::0;;70647:8;70631:13:::2;32794:7:::0;32817:12;;32741:94;70631:13:::2;:24;;;;:::i;:::-;70630:67;;70622:98;;;::::0;-1:-1:-1;;;70622:98:0;;17383:2:1;70622:98:0::2;::::0;::::2;17365:21:1::0;17422:2;17402:18;;;17395:30;-1:-1:-1;;;17441:18:1;;;17434:48;17499:18;;70622:98:0::2;17181:342:1::0;70622:98:0::2;70761:31:::0;;:42:::2;::::0;70795:8;;70761:42:::2;:::i;:::-;70747:9;:57;;70739:100;;;::::0;-1:-1:-1;;;70739:100:0;;17730:2:1;70739:100:0::2;::::0;::::2;17712:21:1::0;17769:2;17749:18;;;17742:30;17808:32;17788:18;;;17781:60;17858:18;;70739:100:0::2;17528:354:1::0;70739:100:0::2;70878:51;::::0;-1:-1:-1;;70895:10:0::2;18064:2:1::0;18060:15;18056:53;70878:51:0::2;::::0;::::2;18044:66:1::0;18126:12;;;18119:28;;;70852:13:0::2;::::0;18163:12:1;;70878:51:0::2;;;;;;;;;;;;70868:62;;;;;;70852:78;;70944:8;70956:40;70975:7;;70956:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;70984:4:0::2;::::0;;-1:-1:-1;70990:5:0;;-1:-1:-1;70956:18:0::2;:40::i;:::-;70943:53;;71017:3;71009:27;;;::::0;-1:-1:-1;;;71009:27:0;;18388:2:1;71009:27:0::2;::::0;::::2;18370:21:1::0;18427:2;18407:18;;;18400:30;-1:-1:-1;;;18446:18:1;;;18439:42;18498:18;;71009:27:0::2;18186:336:1::0;71009:27:0::2;71065:14;::::0;71090:31;;-1:-1:-1;;;;;71065:14:0;;::::2;::::0;71057:76:::2;::::0;71090:42:::2;::::0;71124:8;;71090:42:::2;:::i;:::-;71057:76;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;71167:31:0;;:42:::2;::::0;71201:8;;71167:42:::2;:::i;:::-;71154:9;:56;71151:173;;;71268:31:::0;;71234:10:::2;::::0;71226:86:::2;::::0;71268:42:::2;::::0;71302:8;;71268:42:::2;:::i;:::-;71255:56;::::0;:9:::2;:56;:::i;:::-;71226:86;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;::::2;;;;;;;;;;;;;::::0;::::2;;;;;;71151:173;71354:8;71336:14;;:26;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;71403:10:0::2;71384:30;::::0;;;:18:::2;:30;::::0;;;;:42;;71418:8;;71384:30;:42:::2;::::0;71418:8;;71384:42:::2;:::i;:::-;::::0;;;-1:-1:-1;71439:30:0::2;::::0;-1:-1:-1;71449:10:0::2;71460:8:::0;71439:9:::2;:30::i;:::-;-1:-1:-1::0;;62252:1:0;63206:7;:22;-1:-1:-1;;;;70017:1460:0:o;38281:142::-;38389:28;38399:4;38405:2;38409:7;38389:9;:28::i;57079:147::-;56712:7;56739:12;;;:6;:12;;;;;:22;;;54694:16;54705:4;54694:10;:16::i;:::-;57193:25:::1;57204:4;57210:7;57193:10;:25::i;33372:744::-:0;33481:7;33516:16;33526:5;33516:9;:16::i;:::-;33508:5;:24;33500:71;;;;-1:-1:-1;;;33500:71:0;;18729:2:1;33500:71:0;;;18711:21:1;18768:2;18748:18;;;18741:30;18807:34;18787:18;;;18780:62;-1:-1:-1;;;18858:18:1;;;18851:32;18900:19;;33500:71:0;18527:398:1;33500:71:0;33578:22;32817:12;;;33578:22;;33698:350;33722:14;33718:1;:18;33698:350;;;33752:31;33786:14;;;:11;:14;;;;;;;;;33752:48;;;;;;;;;-1:-1:-1;;;;;33752:48:0;;;;;-1:-1:-1;;;33752:48:0;;;-1:-1:-1;;;;;33752:48:0;;;;;;;;33813:28;33809:89;;33874:14;;;-1:-1:-1;33809:89:0;33931:5;-1:-1:-1;;;;;33910:26:0;:17;-1:-1:-1;;;;;33910:26:0;;33906:135;;33968:5;33953:11;:20;33949:59;;-1:-1:-1;33995:1:0;-1:-1:-1;33988:8:0;;-1:-1:-1;;;33988:8:0;33949:59;34018:13;;;;:::i;:::-;;;;33906:135;-1:-1:-1;33738:3:0;;;;:::i;:::-;;;;33698:350;;;-1:-1:-1;34054:56:0;;-1:-1:-1;;;34054:56:0;;19132:2:1;34054:56:0;;;19114:21:1;19171:2;19151:18;;;19144:30;19210:34;19190:18;;;19183:62;-1:-1:-1;;;19261:18:1;;;19254:44;19315:19;;34054:56:0;18930:410:1;58223:218:0;-1:-1:-1;;;;;58319:23:0;;30301:10;58319:23;58311:83;;;;-1:-1:-1;;;58311:83:0;;19547:2:1;58311:83:0;;;19529:21:1;19586:2;19566:18;;;19559:30;19625:34;19605:18;;;19598:62;-1:-1:-1;;;19676:18:1;;;19669:45;19731:19;;58311:83:0;19345:411:1;58311:83:0;58407:26;58419:4;58425:7;58407:11;:26::i;:::-;58223:218;;:::o;68570:323::-;54248:4;54694:16;54248:4;54694:10;:16::i;:::-;68719:9;68702:14:::1;68748:128;68771:6;68767:1;:10;68748:128;;;68799:65;68822:10;68834:9;;68844:1;68834:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;68848:8;;68857:1;68848:11;;;;;;;:::i;:::-;;;;;;;68799:65;;;;;;;;;;;::::0;:22:::1;:65::i;:::-;68780:3:::0;::::1;::::0;::::1;:::i;:::-;;;;68748:128;;;;68689:204;68570:323:::0;;;;;:::o;38486:157::-;38598:39;38615:4;38621:2;38625:7;38598:39;;;;;;;;;;;;:16;:39::i;68906:1101::-;62296:1;62894:7;;:19;62886:63;;;;-1:-1:-1;;;62886:63:0;;14857:2:1;62886:63:0;;;14839:21:1;14896:2;14876:18;;;14869:30;14935:33;14915:18;;;14908:61;14986:18;;62886:63:0;14655:355:1;62886:63:0;62296:1;63027:7;:18;68268:9:::1;68281:10;68268:23;68260:66;;;::::0;-1:-1:-1;;;68260:66:0;;15217:2:1;68260:66:0::1;::::0;::::1;15199:21:1::0;15256:2;15236:18;;;15229:30;15295:32;15275:18;;;15268:60;15345:18;;68260:66:0::1;15015:354:1::0;68260:66:0::1;69008:12:::2;::::0;-1:-1:-1;;;69008:12:0;::::2;;;69000:36;;;::::0;-1:-1:-1;;;69000:36:0;;15576:2:1;69000:36:0::2;::::0;::::2;15558:21:1::0;15615:2;15595:18;;;15588:30;-1:-1:-1;;;15634:18:1;;;15627:41;15685:18;;69000:36:0::2;15374:335:1::0;69000:36:0::2;69086:30:::0;;69067:15:::2;:49;;69059:84;;;::::0;-1:-1:-1;;;69059:84:0;;19963:2:1;69059:84:0::2;::::0;::::2;19945:21:1::0;20002:2;19982:18;;;19975:30;20041:25;20021:18;;;20014:53;20084:18;;69059:84:0::2;19761:347:1::0;69059:84:0::2;69182:28:::0;;69164:15:::2;:46;69156:74;;;::::0;-1:-1:-1;;;69156:74:0;;20315:2:1;69156:74:0::2;::::0;::::2;20297:21:1::0;20354:2;20334:18;;;20327:30;-1:-1:-1;;;20373:18:1;;;20366:45;20428:18;;69156:74:0::2;20113:339:1::0;69156:74:0::2;69313:11;:28:::0;69286:10:::2;69313:28;69262:35:::0;;;:23:::2;:35;::::0;;;;;:46:::2;::::0;69300:8;;69262:46:::2;:::i;:::-;69261:80;;69253:128;;;::::0;-1:-1:-1;;;69253:128:0;;20659:2:1;69253:128:0::2;::::0;::::2;20641:21:1::0;20698:2;20678:18;;;20671:30;20737:34;20717:18;;;20710:62;-1:-1:-1;;;20788:18:1;;;20781:33;20831:19;;69253:128:0::2;20457:399:1::0;69253:128:0::2;64453:5;69428:8;69412:13;32794:7:::0;32817:12;;32741:94;69412:13:::2;:24;;;;:::i;:::-;69411:42;;69403:127;;;::::0;-1:-1:-1;;;69403:127:0;;21063:2:1;69403:127:0::2;::::0;::::2;21045:21:1::0;21102:2;21082:18;;;21075:30;21141:34;21121:18;;;21114:62;21212:34;21192:18;;;21185:62;-1:-1:-1;;;21263:19:1;;;21256:39;21312:19;;69403:127:0::2;20861:476:1::0;69403:127:0::2;69543:13;69559:10;:8;:10::i;:::-;69543:26:::0;-1:-1:-1;69613:16:0::2;69621:8:::0;69543:26;69613:16:::2;:::i;:::-;69599:9;:31;;69591:80;;;::::0;-1:-1:-1;;;69591:80:0;;21544:2:1;69591:80:0::2;::::0;::::2;21526:21:1::0;21583:2;21563:18;;;21556:30;21622:34;21602:18;;;21595:62;-1:-1:-1;;;21673:18:1;;;21666:34;21717:19;;69591:80:0::2;21342:400:1::0;69591:80:0::2;69701:14;::::0;-1:-1:-1;;;;;69701:14:0::2;69693:50;69726:16;69734:8:::0;69726:5;:16:::2;:::i;:::-;69693:50;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;69772:16:0::2;69780:8:::0;69772:5;:16:::2;:::i;:::-;69759:9;:30;69756:121;;;69813:10;69805:60;69847:16;69855:8:::0;69847:5;:16:::2;:::i;:::-;69834:30;::::0;:9:::2;:30;:::i;:::-;69805:60;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;::::2;;;;;;;;;;;;;::::0;::::2;;;;;;69756:121;69930:10;69906:35;::::0;;;:23:::2;:35;::::0;;;;:47;;69945:8;;69906:35;:47:::2;::::0;69945:8;;69906:47:::2;:::i;:::-;::::0;;;-1:-1:-1;69966:31:0::2;::::0;-1:-1:-1;69976:10:0::2;69988:8:::0;69966:9:::2;:31::i;:::-;-1:-1:-1::0;;62252:1:0;63206:7;:22;68906:1101::o;32904:177::-;32971:7;32817:12;;32995:5;:21;32987:69;;;;-1:-1:-1;;;32987:69:0;;21949:2:1;32987:69:0;;;21931:21:1;21988:2;21968:18;;;21961:30;22027:34;22007:18;;;22000:62;-1:-1:-1;;;22078:18:1;;;22071:33;22121:19;;32987:69:0;21747:399:1;32987:69:0;-1:-1:-1;33070:5:0;32904:177::o;67001:140::-;54248:4;54694:16;54248:4;54694:10;:16::i;:::-;-1:-1:-1;67101:14:0::1;:32:::0;;-1:-1:-1;;;;;;67101:32:0::1;-1:-1:-1::0;;;;;67101:32:0;;;::::1;::::0;;;::::1;::::0;;67001:140::o;35729:118::-;35793:7;35816:20;35828:7;35816:11;:20::i;:::-;:25;;35729:118;-1:-1:-1;;35729:118:0:o;67394:137::-;54248:4;54694:16;54248:4;54694:10;:16::i;:::-;-1:-1:-1;67490:10:0::1;:33:::0;;-1:-1:-1;;;;;;67490:33:0::1;-1:-1:-1::0;;;;;67490:33:0;;;::::1;::::0;;;::::1;::::0;;67394:137::o;34606:211::-;34670:7;-1:-1:-1;;;;;34694:19:0;;34686:75;;;;-1:-1:-1;;;34686:75:0;;22353:2:1;34686:75:0;;;22335:21:1;22392:2;22372:18;;;22365:30;22431:34;22411:18;;;22404:62;-1:-1:-1;;;22482:18:1;;;22475:41;22533:19;;34686:75:0;22151:407:1;34686:75:0;-1:-1:-1;;;;;;34783:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;34783:27:0;;34606:211::o;48367:103::-;47605:13;:11;:13::i;:::-;48432:30:::1;48459:1;48432:18;:30::i;:::-;48367:103::o:0;68360:202::-;54248:4;54694:16;54248:4;54694:10;:16::i;:::-;68493:11:::1;:24;68507:10:::0;;68493:11;:24:::1;:::i;:::-;-1:-1:-1::0;68528:11:0::1;:24;68542:10:::0;;68528:11;:24:::1;:::i;:::-;;68360:202:::0;;;;;:::o;55098:147::-;55184:4;55208:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;55208:29:0;;;;;;;;;;;;;;;55098:147::o;36061:98::-;36117:13;36146:7;36139:14;;;;;:::i;71489:202::-;54248:4;54694:16;54248:4;54694:10;:16::i;:::-;71630:8:::1;71611:15;;:27;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;71659:22:0::1;::::0;-1:-1:-1;71669:2:0;71672:8;71659:9:::1;:22::i;67539:460::-:0;67672:33;;67638:30;;67580:7;;;;67620:48;;:15;:48;:::i;:::-;67619:86;;;;:::i;:::-;67600:105;;67718:16;67765:2;67750:11;:17;67747:217;;-1:-1:-1;67794:29:0;;67747:217;;;67900:37;;:51;;67940:11;;67900:51;:::i;:::-;67865:31;;:87;;;;:::i;66536:457::-;54248:4;54694:16;54248:4;54694:10;:16::i;:::-;66658:30;:50;;;66770:38;;66750:58:::1;::::0;66691:17;66750:58:::1;:::i;:::-;66719:28:::0;:89;66819:15:::1;:58:::0;;;66947:38;;66925:60:::1;::::0;66858:19;66925:60:::1;:::i;:::-;66888:34:::0;:97;-1:-1:-1;;;66536:457:0:o;37699:274::-;30301:10;-1:-1:-1;;;;;37790:24:0;;;37782:63;;;;-1:-1:-1;;;37782:63:0;;25080:2:1;37782:63:0;;;25062:21:1;25119:2;25099:18;;;25092:30;25158:28;25138:18;;;25131:56;25204:18;;37782:63:0;24878:350:1;37782:63:0;30301:10;37854:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37854:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37854:53:0;;;;;;;;;;37919:48;;540:41:1;;;37854:42:0;;30301:10;37919:48;;513:18:1;37919:48:0;;;;;;;37699:274;;:::o;38706:311::-;38843:28;38853:4;38859:2;38863:7;38843:9;:28::i;:::-;38894:48;38917:4;38923:2;38927:7;38936:5;38894:22;:48::i;:::-;38878:133;;;;-1:-1:-1;;;38878:133:0;;;;;;;:::i;:::-;38706:311;;;;:::o;71704:188::-;71777:13;71835:11;71848:18;:7;:16;:18::i;:::-;71868:11;71818:62;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71804:77;;71704:188;;;:::o;57519:149::-;56712:7;56739:12;;;:6;:12;;;;;:22;;;54694:16;54705:4;54694:10;:16::i;:::-;57634:26:::1;57646:4;57652:7;57634:11;:26::i;65076:861::-:0;54248:4;54694:16;54248:4;54694:10;:16::i;:::-;-1:-1:-1;65397:11:0::1;:48:::0;;;;65456:38;:68;;;;65535:33;:58;;;;65604:31;:54;;;;65669:30;:52;65732:28;:48;65791:29;:50;65852:37;:66;65076:861::o;67149:100::-;54248:4;54694:16;54248:4;54694:10;:16::i;:::-;-1:-1:-1;67229:4:0::1;:12:::0;67149:100::o;67257:129::-;54248:4;54694:16;54248:4;54694:10;:16::i;:::-;-1:-1:-1;67350:12:0::1;:28:::0;;;::::1;;-1:-1:-1::0;;;67350:28:0::1;-1:-1:-1::0;;;;67350:28:0;;::::1;::::0;;;::::1;::::0;;67257:129::o;65945:578::-;54248:4;54694:16;54248:4;54694:10;:16::i;:::-;-1:-1:-1;66173:15:0::1;:60:::0;;;;66246:34;:56;;;;66315:31;:50;66378:38;:64;66453:37;:62;65945:578::o;48625:201::-;47605:13;:11;:13::i;:::-;-1:-1:-1;;;;;48714:22:0;::::1;48706:73;;;::::0;-1:-1:-1;;;48706:73:0;;27056:2:1;48706:73:0::1;::::0;::::1;27038:21:1::0;27095:2;27075:18;;;27068:30;27134:34;27114:18;;;27107:62;-1:-1:-1;;;27185:18:1;;;27178:36;27231:19;;48706:73:0::1;26854:402:1::0;48706:73:0::1;48790:28;48809:8;48790:18;:28::i;:::-;48625:201:::0;:::o;54802:204::-;54887:4;-1:-1:-1;;;;;;54911:47:0;;-1:-1:-1;;;54911:47:0;;:87;;;54962:36;54986:11;54962:23;:36::i;42943:172::-;43040:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43040:29:0;-1:-1:-1;;;;;43040:29:0;;;;;;;;;43081:28;;43040:24;;43081:28;;;;;;;42943:172;;;:::o;10826:190::-;10951:4;11004;10975:25;10988:5;10995:4;10975:12;:25::i;:::-;:33;;10826:190;-1:-1:-1;;;;10826:190:0:o;39367:98::-;39432:27;39442:2;39446:8;39432:27;;;;;;;;;;;;:9;:27::i;41308:1529::-;41405:35;41443:20;41455:7;41443:11;:20::i;:::-;41514:18;;41405:58;;-1:-1:-1;41472:22:0;;-1:-1:-1;;;;;41498:34:0;30301:10;-1:-1:-1;;;;;41498:34:0;;:81;;;-1:-1:-1;30301:10:0;41543:20;41555:7;41543:11;:20::i;:::-;-1:-1:-1;;;;;41543:36:0;;41498:81;:142;;;-1:-1:-1;41607:18:0;;41590:50;;30301:10;38036:186;:::i;41590:50::-;41472:169;;41666:17;41650:101;;;;-1:-1:-1;;;41650:101:0;;27463:2:1;41650:101:0;;;27445:21:1;27502:2;27482:18;;;27475:30;27541:34;27521:18;;;27514:62;-1:-1:-1;;;27592:18:1;;;27585:48;27650:19;;41650:101:0;27261:414:1;41650:101:0;41798:4;-1:-1:-1;;;;;41776:26:0;:13;:18;;;-1:-1:-1;;;;;41776:26:0;;41760:98;;;;-1:-1:-1;;;41760:98:0;;27882:2:1;41760:98:0;;;27864:21:1;27921:2;27901:18;;;27894:30;27960:34;27940:18;;;27933:62;-1:-1:-1;;;28011:18:1;;;28004:36;28057:19;;41760:98:0;27680:402:1;41760:98:0;-1:-1:-1;;;;;41873:16:0;;41865:66;;;;-1:-1:-1;;;41865:66:0;;28289:2:1;41865:66:0;;;28271:21:1;28328:2;28308:18;;;28301:30;28367:34;28347:18;;;28340:62;-1:-1:-1;;;28418:18:1;;;28411:35;28463:19;;41865:66:0;28087:401:1;41865:66:0;42040:49;42057:1;42061:7;42070:13;:18;;;42040:8;:49::i;:::-;-1:-1:-1;;;;;42098:18:0;;;;;;:12;:18;;;;;:31;;42128:1;;42098:18;:31;;42128:1;;-1:-1:-1;;;;;42098:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;42098:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42136:16:0;;-1:-1:-1;42136:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;42136:16:0;;:29;;-1:-1:-1;;42136:29:0;;:::i;:::-;;;-1:-1:-1;;;;;42136:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42195:43:0;;;;;;;;-1:-1:-1;;;;;42195:43:0;;;;;-1:-1:-1;;;;;42221:15:0;42195:43;;;;;;;;;-1:-1:-1;42172:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;42172:66:0;-1:-1:-1;;;;;;42172:66:0;;;;;;;;;;;42488:11;42184:7;-1:-1:-1;42488:11:0;:::i;:::-;42551:1;42510:24;;;:11;:24;;;;;:29;42466:33;;-1:-1:-1;;;;;;42510:29:0;42506:236;;42568:20;42576:11;39313:4;39343:12;-1:-1:-1;39333:22:0;39256:105;42568:20;42564:171;;;42628:97;;;;;;;;42655:18;;-1:-1:-1;;;;;42628:97:0;;;;;;42686:28;;;;-1:-1:-1;;;;;42628:97:0;;;;;;;;;-1:-1:-1;42601:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;42601:124:0;-1:-1:-1;;;;;;42601:124:0;;;;;;;;;;;;42564:171;42774:7;42770:2;-1:-1:-1;;;;;42755:27:0;42764:4;-1:-1:-1;;;;;42755:27:0;;;;;;;;;;;42789:42;42810:4;42816:2;42820:7;42829:1;42789:20;:42::i;55549:105::-;55616:30;55627:4;30301:10;55616;:30::i;59820:238::-;59904:22;59912:4;59918:7;59904;:22::i;:::-;59899:152;;59943:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;59943:29:0;;;;;;;;;:36;;-1:-1:-1;;59943:36:0;59975:4;59943:36;;;60026:12;30301:10;;30221:98;60026:12;-1:-1:-1;;;;;59999:40:0;60017:7;-1:-1:-1;;;;;59999:40:0;60011:4;59999:40;;;;;;;;;;59820:238;;:::o;60238:239::-;60322:22;60330:4;60336:7;60322;:22::i;:::-;60318:152;;;60393:5;60361:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;60361:29:0;;;;;;;;;;:37;;-1:-1:-1;;60361:37:0;;;60418:40;30301:10;;60361:12;;60418:40;;60393:5;60418:40;60238:239;;:::o;35069:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;35186:16:0;35194:7;39313:4;39343:12;-1:-1:-1;39333:22:0;39256:105;35186:16;35178:71;;;;-1:-1:-1;;;35178:71:0;;29102:2:1;35178:71:0;;;29084:21:1;29141:2;29121:18;;;29114:30;29180:34;29160:18;;;29153:62;-1:-1:-1;;;29231:18:1;;;29224:40;29281:19;;35178:71:0;28900:406:1;35178:71:0;35258:26;35306:12;35295:7;:23;35291:93;;35350:22;35360:12;35350:7;:22;:::i;:::-;:26;;35375:1;35350:26;:::i;:::-;35329:47;;35291:93;35412:7;35392:212;35429:18;35421:4;:26;35392:212;;35466:31;35500:17;;;:11;:17;;;;;;;;;35466:51;;;;;;;;;-1:-1:-1;;;;;35466:51:0;;;;;-1:-1:-1;;;35466:51:0;;;-1:-1:-1;;;;;35466:51:0;;;;;;;;35530:28;35526:71;;35578:9;35069:606;-1:-1:-1;;;;35069:606:0:o;35526:71::-;-1:-1:-1;35449:6:0;;;;:::i;:::-;;;;35392:212;;;-1:-1:-1;35612:57:0;;-1:-1:-1;;;35612:57:0;;29654:2:1;35612:57:0;;;29636:21:1;29693:2;29673:18;;;29666:30;29732:34;29712:18;;;29705:62;-1:-1:-1;;;29783:18:1;;;29776:45;29838:19;;35612:57:0;29452:411:1;47884:132:0;47792:6;;-1:-1:-1;;;;;47792:6:0;30301:10;47948:23;47940:68;;;;-1:-1:-1;;;47940:68:0;;30070:2:1;47940:68:0;;;30052:21:1;;;30089:18;;;30082:30;30148:34;30128:18;;;30121:62;30200:18;;47940:68:0;29868:356:1;48986:191:0;49079:6;;;-1:-1:-1;;;;;49096:17:0;;;-1:-1:-1;;;;;;49096:17:0;;;;;;;49129:40;;49079:6;;;49096:17;49079:6;;49129:40;;49060:16;;49129:40;49049:128;48986:191;:::o;44658:690::-;44795:4;-1:-1:-1;;;;;44812:13:0;;1528:19;:23;44808:535;;44851:72;;-1:-1:-1;;;44851:72:0;;-1:-1:-1;;;;;44851:36:0;;;;;:72;;30301:10;;44902:4;;44908:7;;44917:5;;44851:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44851:72:0;;;;;;;;-1:-1:-1;;44851:72:0;;;;;;;;;;;;:::i;:::-;;;44838:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45082:6;:13;45099:1;45082:18;45078:215;;45115:61;;-1:-1:-1;;;45115:61:0;;;;;;;:::i;45078:215::-;45261:6;45255:13;45246:6;45242:2;45238:15;45231:38;44838:464;-1:-1:-1;;;;;;44973:55:0;-1:-1:-1;;;44973:55:0;;-1:-1:-1;44966:62:0;;44808:535;-1:-1:-1;45331:4:0;44808:535;44658:690;;;;;;:::o;27475:723::-;27531:13;27752:5;27761:1;27752:10;27748:53;;-1:-1:-1;;27779:10:0;;;;;;;;;;;;-1:-1:-1;;;27779:10:0;;;;;27475:723::o;27748:53::-;27826:5;27811:12;27867:78;27874:9;;27867:78;;27900:8;;;;:::i;:::-;;-1:-1:-1;27923:10:0;;-1:-1:-1;27931:2:0;27923:10;;:::i;:::-;;;27867:78;;;27955:19;27987:6;-1:-1:-1;;;;;27977:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27977:17:0;;27955:39;;28005:154;28012:10;;28005:154;;28039:11;28049:1;28039:11;;:::i;:::-;;-1:-1:-1;28108:10:0;28116:2;28108:5;:10;:::i;:::-;28095:24;;:2;:24;:::i;:::-;28082:39;;28065:6;28072;28065:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;28065:56:0;;;;;;;;-1:-1:-1;28136:11:0;28145:2;28136:11;;:::i;:::-;;;28005:154;;34180:370;34307:4;-1:-1:-1;;;;;;34337:40:0;;-1:-1:-1;;;34337:40:0;;:99;;-1:-1:-1;;;;;;;34388:48:0;;-1:-1:-1;;;34388:48:0;34337:99;:160;;;-1:-1:-1;;;;;;;34447:50:0;;-1:-1:-1;;;34447:50:0;34337:160;:207;;;-1:-1:-1;;;;;;;;;;26990:40:0;;;34508:36;26881:157;11693:296;11776:7;11819:4;11776:7;11834:118;11858:5;:12;11854:1;:16;11834:118;;;11907:33;11917:12;11931:5;11937:1;11931:8;;;;;;;;:::i;:::-;;;;;;;11907:9;:33::i;:::-;11892:48;-1:-1:-1;11872:3:0;;;;:::i;:::-;;;;11834:118;;;-1:-1:-1;11969:12:0;11693:296;-1:-1:-1;;;11693:296:0:o;39804:1272::-;39909:20;39932:12;-1:-1:-1;;;;;39959:16:0;;39951:62;;;;-1:-1:-1;;;39951:62:0;;31296:2:1;39951:62:0;;;31278:21:1;31335:2;31315:18;;;31308:30;31374:34;31354:18;;;31347:62;-1:-1:-1;;;31425:18:1;;;31418:31;31466:19;;39951:62:0;31094:397:1;39951:62:0;40150:21;40158:12;39313:4;39343:12;-1:-1:-1;39333:22:0;39256:105;40150:21;40149:22;40141:64;;;;-1:-1:-1;;;40141:64:0;;31698:2:1;40141:64:0;;;31680:21:1;31737:2;31717:18;;;31710:30;31776:31;31756:18;;;31749:59;31825:18;;40141:64:0;31496:353:1;40141:64:0;40232:12;40220:8;:24;;40212:71;;;;-1:-1:-1;;;40212:71:0;;32056:2:1;40212:71:0;;;32038:21:1;32095:2;32075:18;;;32068:30;32134:34;32114:18;;;32107:62;-1:-1:-1;;;32185:18:1;;;32178:32;32227:19;;40212:71:0;31854:398:1;40212:71:0;-1:-1:-1;;;;;40395:16:0;;40362:30;40395:16;;;:12;:16;;;;;;;;;40362:49;;;;;;;;;-1:-1:-1;;;;;40362:49:0;;;;;-1:-1:-1;;;40362:49:0;;;;;;;;;;;40437:119;;;;;;;;40457:19;;40362:49;;40437:119;;;40457:39;;40487:8;;40457:39;:::i;:::-;-1:-1:-1;;;;;40437:119:0;;;;;40540:8;40505:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;40437:119:0;;;;;;-1:-1:-1;;;;;40418:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;40418:138:0;;;;;;;;;;;;40591:43;;;;;;;;;;-1:-1:-1;;;;;40617:15:0;40591:43;;;;;;;;40563:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;40563:71:0;-1:-1:-1;;;;;;40563:71:0;;;;;;;;;;;;;;;;;;40575:12;;40687:281;40711:8;40707:1;:12;40687:281;;;40740:38;;40765:12;;-1:-1:-1;;;;;40740:38:0;;;40757:1;;40740:38;;40757:1;;40740:38;40805:59;40836:1;40840:2;40844:12;40858:5;40805:22;:59::i;:::-;40787:150;;;;-1:-1:-1;;;40787:150:0;;;;;;;:::i;:::-;40946:14;;;;:::i;:::-;;;;40721:3;;;;;:::i;:::-;;;;40687:281;;;-1:-1:-1;40976:12:0;:27;;;41010:60;;41043:2;41047:12;41061:8;71900:289;72070:10;;:40;;-1:-1:-1;;;72070:40:0;;;;;4238:25:1;;;-1:-1:-1;;;;;72070:10:0;;;;:26;;4211:18:1;;72070:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72124:57;38706:311;55944:505;56033:22;56041:4;56047:7;56033;:22::i;:::-;56028:414;;56221:41;56249:7;-1:-1:-1;;;;;56221:41:0;56259:2;56221:19;:41::i;:::-;56335:38;56363:4;56370:2;56335:19;:38::i;:::-;56126:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;56126:270:0;;;;;;;;;;-1:-1:-1;;;56072:358:0;;;;;;;:::i;17900:149::-;17963:7;17994:1;17990;:5;:51;;18125:13;18219:15;;;18255:4;18248:15;;;18302:4;18286:21;;17990:51;;;18125:13;18219:15;;;18255:4;18248:15;;;18302:4;18286:21;;17998:20;18057:268;28776:451;28851:13;28877:19;28909:10;28913:6;28909:1;:10;:::i;:::-;:14;;28922:1;28909:14;:::i;:::-;-1:-1:-1;;;;;28899:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28899:25:0;;28877:47;;-1:-1:-1;;;28935:6:0;28942:1;28935:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;28935:15:0;;;;;;;;;-1:-1:-1;;;28961:6:0;28968:1;28961:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;28961:15:0;;;;;;;;-1:-1:-1;28992:9:0;29004:10;29008:6;29004:1;:10;:::i;:::-;:14;;29017:1;29004:14;:::i;:::-;28992:26;;28987:135;29024:1;29020;:5;28987:135;;;-1:-1:-1;;;29072:5:0;29080:3;29072:11;29059:25;;;;;;;:::i;:::-;;;;29047:6;29054:1;29047:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;29047:37:0;;;;;;;;-1:-1:-1;29109:1:0;29099:11;;;;;29027:3;;;:::i;:::-;;;28987:135;;;-1:-1:-1;29140:10:0;;29132:55;;;;-1:-1:-1;;;29132:55:0;;33276:2:1;29132:55:0;;;33258:21:1;;;33295:18;;;33288:30;33354:34;33334:18;;;33327:62;33406:18;;29132:55:0;33074:356:1;14:131;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:322::-;847:6;855;863;916:2;904:9;895:7;891:23;887:32;884:52;;;932:1;929;922:12;884:52;955:29;974:9;955:29;:::i;:::-;945:39;1031:2;1016:18;;1003:32;;-1:-1:-1;1082:2:1;1067:18;;;1054:32;;770:322;-1:-1:-1;;;770:322:1:o;1097:632::-;1268:2;1320:21;;;1390:13;;1293:18;;;1412:22;;;1239:4;;1268:2;1491:15;;;;1465:2;1450:18;;;1239:4;1534:169;1548:6;1545:1;1542:13;1534:169;;;1609:13;;1597:26;;1678:15;;;;1643:12;;;;1570:1;1563:9;1534:169;;;-1:-1:-1;1720:3:1;;1097:632;-1:-1:-1;;;;;;1097:632:1:o;1734:250::-;1819:1;1829:113;1843:6;1840:1;1837:13;1829:113;;;1919:11;;;1913:18;1900:11;;;1893:39;1865:2;1858:10;1829:113;;;-1:-1:-1;;1976:1:1;1958:16;;1951:27;1734:250::o;1989:271::-;2031:3;2069:5;2063:12;2096:6;2091:3;2084:19;2112:76;2181:6;2174:4;2169:3;2165:14;2158:4;2151:5;2147:16;2112:76;:::i;:::-;2242:2;2221:15;-1:-1:-1;;2217:29:1;2208:39;;;;2249:4;2204:50;;1989:271;-1:-1:-1;;1989:271:1:o;2265:220::-;2414:2;2403:9;2396:21;2377:4;2434:45;2475:2;2464:9;2460:18;2452:6;2434:45;:::i;2490:180::-;2549:6;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;-1:-1:-1;2641:23:1;;2490:180;-1:-1:-1;2490:180:1:o;2883:254::-;2951:6;2959;3012:2;3000:9;2991:7;2987:23;2983:32;2980:52;;;3028:1;3025;3018:12;2980:52;3051:29;3070:9;3051:29;:::i;:::-;3041:39;3127:2;3112:18;;;;3099:32;;-1:-1:-1;;;2883:254:1:o;3142:367::-;3205:8;3215:6;3269:3;3262:4;3254:6;3250:17;3246:27;3236:55;;3287:1;3284;3277:12;3236:55;-1:-1:-1;3310:20:1;;-1:-1:-1;;;;;3342:30:1;;3339:50;;;3385:1;3382;3375:12;3339:50;3422:4;3414:6;3410:17;3398:29;;3482:3;3475:4;3465:6;3462:1;3458:14;3450:6;3446:27;3442:38;3439:47;3436:67;;;3499:1;3496;3489:12;3436:67;3142:367;;;;;:::o;3514:573::-;3618:6;3626;3634;3642;3695:2;3683:9;3674:7;3670:23;3666:32;3663:52;;;3711:1;3708;3701:12;3663:52;3751:9;3738:23;-1:-1:-1;;;;;3776:6:1;3773:30;3770:50;;;3816:1;3813;3806:12;3770:50;3855:70;3917:7;3908:6;3897:9;3893:22;3855:70;:::i;:::-;3944:8;;3829:96;;-1:-1:-1;4026:2:1;4011:18;;3998:32;;4077:2;4062:18;4049:32;;-1:-1:-1;3514:573:1;-1:-1:-1;;;;3514:573:1:o;4958:328::-;5035:6;5043;5051;5104:2;5092:9;5083:7;5079:23;5075:32;5072:52;;;5120:1;5117;5110:12;5072:52;5143:29;5162:9;5143:29;:::i;:::-;5133:39;;5191:38;5225:2;5214:9;5210:18;5191:38;:::i;:::-;5181:48;;5276:2;5265:9;5261:18;5248:32;5238:42;;4958:328;;;;;:::o;5658:254::-;5726:6;5734;5787:2;5775:9;5766:7;5762:23;5758:32;5755:52;;;5803:1;5800;5793:12;5755:52;5839:9;5826:23;5816:33;;5868:38;5902:2;5891:9;5887:18;5868:38;:::i;:::-;5858:48;;5658:254;;;;;:::o;5917:773::-;6039:6;6047;6055;6063;6116:2;6104:9;6095:7;6091:23;6087:32;6084:52;;;6132:1;6129;6122:12;6084:52;6172:9;6159:23;-1:-1:-1;;;;;6242:2:1;6234:6;6231:14;6228:34;;;6258:1;6255;6248:12;6228:34;6297:70;6359:7;6350:6;6339:9;6335:22;6297:70;:::i;:::-;6386:8;;-1:-1:-1;6271:96:1;-1:-1:-1;6474:2:1;6459:18;;6446:32;;-1:-1:-1;6490:16:1;;;6487:36;;;6519:1;6516;6509:12;6487:36;;6558:72;6622:7;6611:8;6600:9;6596:24;6558:72;:::i;:::-;5917:773;;;;-1:-1:-1;6649:8:1;-1:-1:-1;;;;5917:773:1:o;6695:186::-;6754:6;6807:2;6795:9;6786:7;6782:23;6778:32;6775:52;;;6823:1;6820;6813:12;6775:52;6846:29;6865:9;6846:29;:::i;6886:348::-;6938:8;6948:6;7002:3;6995:4;6987:6;6983:17;6979:27;6969:55;;7020:1;7017;7010:12;6969:55;-1:-1:-1;7043:20:1;;-1:-1:-1;;;;;7075:30:1;;7072:50;;;7118:1;7115;7108:12;7072:50;7155:4;7147:6;7143:17;7131:29;;7207:3;7200:4;7191:6;7183;7179:19;7175:30;7172:39;7169:59;;;7224:1;7221;7214:12;7239:721;7331:6;7339;7347;7355;7408:2;7396:9;7387:7;7383:23;7379:32;7376:52;;;7424:1;7421;7414:12;7376:52;7464:9;7451:23;-1:-1:-1;;;;;7534:2:1;7526:6;7523:14;7520:34;;;7550:1;7547;7540:12;7520:34;7589:59;7640:7;7631:6;7620:9;7616:22;7589:59;:::i;:::-;7667:8;;-1:-1:-1;7563:85:1;-1:-1:-1;7755:2:1;7740:18;;7727:32;;-1:-1:-1;7771:16:1;;;7768:36;;;7800:1;7797;7790:12;7768:36;;7839:61;7892:7;7881:8;7870:9;7866:24;7839:61;:::i;7965:248::-;8033:6;8041;8094:2;8082:9;8073:7;8069:23;8065:32;8062:52;;;8110:1;8107;8100:12;8062:52;-1:-1:-1;;8133:23:1;;;8203:2;8188:18;;;8175:32;;-1:-1:-1;7965:248:1:o;8218:160::-;8283:20;;8339:13;;8332:21;8322:32;;8312:60;;8368:1;8365;8358:12;8383:254;8448:6;8456;8509:2;8497:9;8488:7;8484:23;8480:32;8477:52;;;8525:1;8522;8515:12;8477:52;8548:29;8567:9;8548:29;:::i;:::-;8538:39;;8596:35;8627:2;8616:9;8612:18;8596:35;:::i;8642:127::-;8703:10;8698:3;8694:20;8691:1;8684:31;8734:4;8731:1;8724:15;8758:4;8755:1;8748:15;8774:1138;8869:6;8877;8885;8893;8946:3;8934:9;8925:7;8921:23;8917:33;8914:53;;;8963:1;8960;8953:12;8914:53;8986:29;9005:9;8986:29;:::i;:::-;8976:39;;9034:38;9068:2;9057:9;9053:18;9034:38;:::i;:::-;9024:48;;9119:2;9108:9;9104:18;9091:32;9081:42;;9174:2;9163:9;9159:18;9146:32;-1:-1:-1;;;;;9238:2:1;9230:6;9227:14;9224:34;;;9254:1;9251;9244:12;9224:34;9292:6;9281:9;9277:22;9267:32;;9337:7;9330:4;9326:2;9322:13;9318:27;9308:55;;9359:1;9356;9349:12;9308:55;9395:2;9382:16;9417:2;9413;9410:10;9407:36;;;9423:18;;:::i;:::-;9498:2;9492:9;9466:2;9552:13;;-1:-1:-1;;9548:22:1;;;9572:2;9544:31;9540:40;9528:53;;;9596:18;;;9616:22;;;9593:46;9590:72;;;9642:18;;:::i;:::-;9682:10;9678:2;9671:22;9717:2;9709:6;9702:18;9757:7;9752:2;9747;9743;9739:11;9735:20;9732:33;9729:53;;;9778:1;9775;9768:12;9729:53;9834:2;9829;9825;9821:11;9816:2;9808:6;9804:15;9791:46;9879:1;9874:2;9869;9861:6;9857:15;9853:24;9846:35;9900:6;9890:16;;;;;;;8774:1138;;;;;;;:::o;10385:661::-;10507:6;10515;10523;10531;10539;10547;10555;10563;10616:3;10604:9;10595:7;10591:23;10587:33;10584:53;;;10633:1;10630;10623:12;10584:53;-1:-1:-1;;10656:23:1;;;10726:2;10711:18;;10698:32;;-1:-1:-1;10777:2:1;10762:18;;10749:32;;10828:2;10813:18;;10800:32;;-1:-1:-1;10879:3:1;10864:19;;10851:33;;-1:-1:-1;10931:3:1;10916:19;;10903:33;;-1:-1:-1;10983:3:1;10968:19;;10955:33;;-1:-1:-1;11035:3:1;11020:19;11007:33;;-1:-1:-1;10385:661:1;-1:-1:-1;10385:661:1:o;11051:260::-;11119:6;11127;11180:2;11168:9;11159:7;11155:23;11151:32;11148:52;;;11196:1;11193;11186:12;11148:52;11219:29;11238:9;11219:29;:::i;:::-;11209:39;;11267:38;11301:2;11290:9;11286:18;11267:38;:::i;11316:180::-;11372:6;11425:2;11413:9;11404:7;11400:23;11396:32;11393:52;;;11441:1;11438;11431:12;11393:52;11464:26;11480:9;11464:26;:::i;11728:454::-;11823:6;11831;11839;11847;11855;11908:3;11896:9;11887:7;11883:23;11879:33;11876:53;;;11925:1;11922;11915:12;11876:53;-1:-1:-1;;11948:23:1;;;12018:2;12003:18;;11990:32;;-1:-1:-1;12069:2:1;12054:18;;12041:32;;12120:2;12105:18;;12092:32;;-1:-1:-1;12171:3:1;12156:19;12143:33;;-1:-1:-1;11728:454:1;-1:-1:-1;11728:454:1:o;12187:127::-;12248:10;12243:3;12239:20;12236:1;12229:31;12279:4;12276:1;12269:15;12303:4;12300:1;12293:15;12319:168;12359:7;12425:1;12421;12417:6;12413:14;12410:1;12407:21;12402:1;12395:9;12388:17;12384:45;12381:71;;;12432:18;;:::i;:::-;-1:-1:-1;12472:9:1;;12319:168::o;12492:125::-;12557:9;;;12578:10;;;12575:36;;;12591:18;;:::i;12622:128::-;12689:9;;;12710:11;;;12707:37;;;12724:18;;:::i;12755:127::-;12816:10;12811:3;12807:20;12804:1;12797:31;12847:4;12844:1;12837:15;12871:4;12868:1;12861:15;12887:135;12926:3;12947:17;;;12944:43;;12967:18;;:::i;:::-;-1:-1:-1;13014:1:1;13003:13;;12887:135::o;13027:380::-;13106:1;13102:12;;;;13149;;;13170:61;;13224:4;13216:6;13212:17;13202:27;;13170:61;13277:2;13269:6;13266:14;13246:18;13243:38;13240:161;;13323:10;13318:3;13314:20;13311:1;13304:31;13358:4;13355:1;13348:15;13386:4;13383:1;13376:15;13240:161;;13027:380;;;:::o;22689:545::-;22791:2;22786:3;22783:11;22780:448;;;22827:1;22852:5;22848:2;22841:17;22897:4;22893:2;22883:19;22967:2;22955:10;22951:19;22948:1;22944:27;22938:4;22934:38;23003:4;22991:10;22988:20;22985:47;;;-1:-1:-1;23026:4:1;22985:47;23081:2;23076:3;23072:12;23069:1;23065:20;23059:4;23055:31;23045:41;;23136:82;23154:2;23147:5;23144:13;23136:82;;;23199:17;;;23180:1;23169:13;23136:82;;23410:1206;-1:-1:-1;;;;;23529:3:1;23526:27;23523:53;;;23556:18;;:::i;:::-;23585:94;23675:3;23635:38;23667:4;23661:11;23635:38;:::i;:::-;23629:4;23585:94;:::i;:::-;23705:1;23730:2;23725:3;23722:11;23747:1;23742:616;;;;24402:1;24419:3;24416:93;;;-1:-1:-1;24475:19:1;;;24462:33;24416:93;-1:-1:-1;;23367:1:1;23363:11;;;23359:24;23355:29;23345:40;23391:1;23387:11;;;23342:57;24522:78;;23715:895;;23742:616;22636:1;22629:14;;;22673:4;22660:18;;-1:-1:-1;;23778:17:1;;;23879:9;23901:229;23915:7;23912:1;23909:14;23901:229;;;24004:19;;;23991:33;23976:49;;24111:4;24096:20;;;;24064:1;24052:14;;;;23931:12;23901:229;;;23905:3;24158;24149:7;24146:16;24143:159;;;24282:1;24278:6;24272:3;24266;24263:1;24259:11;24255:21;24251:34;24247:39;24234:9;24229:3;24225:19;24212:33;24208:79;24200:6;24193:95;24143:159;;;24345:1;24339:3;24336:1;24332:11;24328:19;24322:4;24315:33;23715:895;;;23410:1206;;;:::o;24621:127::-;24682:10;24677:3;24673:20;24670:1;24663:31;24713:4;24710:1;24703:15;24737:4;24734:1;24727:15;24753:120;24793:1;24819;24809:35;;24824:18;;:::i;:::-;-1:-1:-1;24858:9:1;;24753:120::o;25233:415::-;25435:2;25417:21;;;25474:2;25454:18;;;25447:30;25513:34;25508:2;25493:18;;25486:62;-1:-1:-1;;;25579:2:1;25564:18;;25557:49;25638:3;25623:19;;25233:415::o;25653:722::-;25703:3;25744:5;25738:12;25773:36;25799:9;25773:36;:::i;:::-;25828:1;25845:18;;;25872:133;;;;26019:1;26014:355;;;;25838:531;;25872:133;-1:-1:-1;;25905:24:1;;25893:37;;25978:14;;25971:22;25959:35;;25950:45;;;-1:-1:-1;25872:133:1;;26014:355;26045:5;26042:1;26035:16;26074:4;26119:2;26116:1;26106:16;26144:1;26158:165;26172:6;26169:1;26166:13;26158:165;;;26250:14;;26237:11;;;26230:35;26293:16;;;;26187:10;;26158:165;;;26162:3;;;26352:6;26347:3;26343:16;26336:23;;25838:531;;;;;25653:722;;;;:::o;26380:469::-;26601:3;26629:38;26663:3;26655:6;26629:38;:::i;:::-;26696:6;26690:13;26712:65;26770:6;26766:2;26759:4;26751:6;26747:17;26712:65;:::i;:::-;26793:50;26835:6;26831:2;26827:15;26819:6;26793:50;:::i;:::-;26786:57;26380:469;-1:-1:-1;;;;;;;26380:469:1:o;28493:200::-;-1:-1:-1;;;;;28629:10:1;;;28617;;;28613:27;;28652:12;;;28649:38;;;28667:18;;:::i;:::-;28649:38;28493:200;;;;:::o;28698:197::-;-1:-1:-1;;;;;28820:10:1;;;28832;;;28816:27;;28855:11;;;28852:37;;;28869:18;;:::i;29311:136::-;29350:3;29378:5;29368:39;;29387:18;;:::i;:::-;-1:-1:-1;;;29423:18:1;;29311:136::o;30229:489::-;-1:-1:-1;;;;;30498:15:1;;;30480:34;;30550:15;;30545:2;30530:18;;30523:43;30597:2;30582:18;;30575:34;;;30645:3;30640:2;30625:18;;30618:31;;;30423:4;;30666:46;;30692:19;;30684:6;30666:46;:::i;:::-;30658:54;30229:489;-1:-1:-1;;;;;;30229:489:1:o;30723:249::-;30792:6;30845:2;30833:9;30824:7;30820:23;30816:32;30813:52;;;30861:1;30858;30851:12;30813:52;30893:9;30887:16;30912:30;30936:5;30912:30;:::i;30977:112::-;31009:1;31035;31025:35;;31040:18;;:::i;:::-;-1:-1:-1;31074:9:1;;30977:112::o;32257:812::-;32668:25;32663:3;32656:38;32638:3;32723:6;32717:13;32739:75;32807:6;32802:2;32797:3;32793:12;32786:4;32778:6;32774:17;32739:75;:::i;:::-;-1:-1:-1;;;32873:2:1;32833:16;;;32865:11;;;32858:40;32923:13;;32945:76;32923:13;33007:2;32999:11;;32992:4;32980:17;;32945:76;:::i;:::-;33041:17;33060:2;33037:26;;32257:812;-1:-1:-1;;;;32257:812:1:o

Swarm Source

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