ETH Price: $2,698.65 (+10.88%)
Gas: 1 Gwei

Token

Dunking Ducks (Dunking Ducks)
 

Overview

Max Total Supply

777 Dunking Ducks

Holders

245

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
wagbok.eth
Balance
2 Dunking Ducks
0x4df74ce4556034f6818b52090e0be45dcc9f793b
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:
DunkingDucksNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-20
*/

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


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

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/DunkingDucksNFT.sol


pragma solidity ^0.8.0;







contract DunkingDucksNFT is ERC721Enumerable, Ownable, Pausable {
  
  using Strings for string;
  using SafeMath for uint256;
  
  event PermanentURI(string _value, uint256 indexed _id);
  
  string private baseUriForClosed;
  string private baseUriForOpend;
  
  uint32 private constant MAX_SUPPLY = 3333;
  uint32 private constant MAX_PURCHASE = 15;
  uint256 private constant MAX_RESERVE = 320;
  
  
  bool private saleActived = false;
  bool private regularSaleActived = false;
  bool private revealActived = false;
  
  uint256 private currentPrice = 0 ether; 
  uint256 private price = 0.1 ether;
  uint256 private discountPrice = 0.08 ether;
  
  bytes32 public merkleRoot;
  
  constructor(
    string memory _baseUriForClosed,
    string memory _baseUriForOpend,
    bytes32 _merkleRoot
  )  Ownable() Pausable() ERC721("Dunking Ducks", "Dunking Ducks") {
    baseUriForClosed = _baseUriForClosed;
    baseUriForOpend = _baseUriForOpend;
    merkleRoot = _merkleRoot;
  }
  
  function withdrawPayments() public onlyOwner {
    address payable to = payable(_msgSender());
    to.transfer(getBalance());
  }
  
  function reserve(
  address[] memory _to,
    uint256 _quanlity
    ) external onlyOwner {
      require(!paused(), "DunkingDucksNFT#reserve: Status in paused.");
      require(!saleActived, "DunkingDucksNFT#reserve: Out of reserve period");
      require(_quanlity == _to.length, "DunkingDucksNFT#reserve: The address and quanlity mismatch.");
      require((totalSupply() + _quanlity) <= MAX_RESERVE, "DunkingDucksNFT#reserve: Over reserve amount limit.");
      
      for (uint256 i=0; i<_quanlity; i++) {
        _mintDuck(_to[i]);
      }
    }
  
  function batchMint(
  bytes32[] calldata _merkleProof,
    uint256 _quantity
    ) external payable returns(uint256[] memory) {
      require(!paused(), "DunkingDucksNFT#batchMint: Status in paused.");
      require(saleActived && !revealActived, "DunkingDucksNFT#batchMint: Out of selling period");
      require(_quantity > 0 && _quantity <= MAX_PURCHASE, "DunkingDucksNFT#batchMint: Purchase quality must be positive integer in [1,10].");
      require(_quantity.add(totalSupply()) <= MAX_SUPPLY, "DunkingDucksNFT#batchMint: Quantitiy illegal.");
      require(_quantity.add(balanceOf(_msgSender())) <= MAX_PURCHASE, "DunkingDucksNFT#batchMint: Each account limit 10 ducks.");
      
      if (regularSaleActived) {
        currentPrice = price;
      } else {
        currentPrice = discountPrice;
        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "DunkingDucksNFT#batchMint: The buyer must be in WL.");
      }
      
      uint256 fee = currentPrice.mul(_quantity);
      
      require(msg.value == fee, "DunkingDucksNFT#batchMint: Transaction value did not equal the mint price."); 
      
      uint256[] memory _tokenIds = new uint256[](_quantity);
      for (uint256 i=0; i<_quantity; i++) {
        uint256 tokenId = _mintDuck(_msgSender());
        _tokenIds[i] = tokenId;
      }
      return _tokenIds;
    }
  
  
  function _mintDuck(address to) internal returns(uint256) {
    uint256 newTokenId = totalSupply() + 1;
    _safeMint(to, newTokenId);
    return newTokenId;
  }
  
  function _baseURI() internal view virtual override returns(string memory) {
    return revealActived ? baseUriForOpend : baseUriForClosed;
  }
  
  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    require(_exists(tokenId), "DunkingDucksNFT#tokenURI: URI query for nonexistent token");
    
    if(!revealActived) {
      tokenId = 0;
    }
    
    string memory base = _baseURI();
    return bytes(base).length > 0 ? string(abi.encodePacked(base, Strings.toString(tokenId), ".json")) : "";
  }
  
  function enableSaleActived() external onlyOwner {
    require(!saleActived, "DunkingDucksNFT#enableSaleActived: Forbid revert sale process!");
    saleActived = true;
  }
  
  function getSaleActived() external view returns(bool) {
    return saleActived;
  }
  
  function enableRegularSaleActived() external onlyOwner {
    require(!regularSaleActived, "DunkingDucksNFT#enableRegularSaleActived: Forbid revert regular sale process!");
    regularSaleActived = true;
  }
  
  function getRegularSaleActived() external view returns(bool) {
    return regularSaleActived;
  }
  
  function enableRevealActived() external onlyOwner {
    require(!revealActived, "DunkingDucksNFT#enableRevealActived :Forbid revert reaveal process!");
    revealActived = true;
  }
  
  function getRevealActived() external view returns(bool) {
    return revealActived;
  }
  
  function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
    merkleRoot = _merkleRoot;
  }
  
  function setbaseUriForClosed(string memory _baseUri) public onlyOwner { 
    baseUriForOpend = _baseUri;
  }
  
  function setbaseUriForOpend(string memory _baseUri) public onlyOwner { 
    baseUriForOpend = _baseUri;
  }
  
  function setPrice(uint256 _price) external onlyOwner {
    price = _price;
  }
  
  function getPrice() external view returns (uint256) {
    return price;
  }
  
  function setDiscountPrice(uint256 _discountPrice) external onlyOwner {
    discountPrice = _discountPrice;
  }
  
  function getDiscountPrice() external view returns (uint256) {
    return discountPrice;
  }
  
  function getCurrentPrice() external view returns (uint256) {
    return regularSaleActived ? price : discountPrice;
  }
  
  function setMetaFrozen() external onlyOwner {
    require(revealActived, "DunkingDucksNFT#setMetaFrozen: Need waiting for revealActived enalbe.");
    
    uint256 totalSupply =  totalSupply();
    for (uint256 id=1; id <= totalSupply; id++) {
      emit PermanentURI(string(abi.encodePacked(baseUriForOpend, Strings.toString(id), ".json")), id);
    }
  }
  
  function getBalance() public view returns(uint) {
    return address(this).balance;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUriForClosed","type":"string"},{"internalType":"string","name":"_baseUriForOpend","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_value","type":"string"},{"indexed":true,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"PermanentURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"batchMint","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"enableRegularSaleActived","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableRevealActived","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableSaleActived","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":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDiscountPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRegularSaleActived","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRevealActived","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleActived","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":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256","name":"_quanlity","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_discountPrice","type":"uint256"}],"name":"setDiscountPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setMetaFrozen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setbaseUriForClosed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setbaseUriForOpend","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":"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":"withdrawPayments","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600d805462ffffff191690556000600e5567016345785d8a0000600f5567011c37937e0800006010553480156200003a57600080fd5b50604051620031bd380380620031bd8339810160408190526200005d91620002d0565b604080518082018252600d8082526c44756e6b696e67204475636b7360981b602080840182815285518087019096529285528401528151919291620000a59160009162000173565b508051620000bb90600190602084019062000173565b505050620000d8620000d26200011d60201b60201c565b62000121565b600a805460ff60a01b191690558251620000fa90600b90602086019062000173565b5081516200011090600c90602085019062000173565b5060115550620003969050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001819062000343565b90600052602060002090601f016020900481019282620001a55760008555620001f0565b82601f10620001c057805160ff1916838001178555620001f0565b82800160010185558215620001f0579182015b82811115620001f0578251825591602001919060010190620001d3565b50620001fe92915062000202565b5090565b5b80821115620001fe576000815560010162000203565b600082601f8301126200022b57600080fd5b81516001600160401b038082111562000248576200024862000380565b604051601f8301601f19908116603f0116810190828211818310171562000273576200027362000380565b816040528381526020925086838588010111156200029057600080fd5b600091505b83821015620002b4578582018301518183018401529082019062000295565b83821115620002c65760008385830101525b9695505050505050565b600080600060608486031215620002e657600080fd5b83516001600160401b0380821115620002fe57600080fd5b6200030c8783880162000219565b945060208601519150808211156200032357600080fd5b50620003328682870162000219565b925050604084015190509250925092565b600181811c908216806200035857607f821691505b602082108114156200037a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612e1780620003a66000396000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063ae39ba08116100ab578063c87b56dd1161006f578063c87b56dd14610631578063e985e9c514610651578063eb91d37e1461069a578063f2fde38b146106af578063f716a663146106cf57600080fd5b8063ae39ba08146105a6578063b6566964146105bb578063b88d4fde146105d9578063bd1be050146105f9578063beb54f871461061957600080fd5b80638da5cb5b116100f25780638da5cb5b1461051e57806391b7f5ed1461053c57806395d89b411461055c57806398d5fdca14610571578063a22cb4651461058657600080fd5b8063715018a6146104975780637b4e70e8146104ac5780637cb64759146104c9578063854e3214146104e95780638b78c116146104fe57600080fd5b8063287fec4b116101bc5780634f6ccce7116101805780634f6ccce7146104035780635c975abb146104235780636103d70b146104425780636352211e1461045757806370a082311461047757600080fd5b8063287fec4b146103785780632eb4a7ab1461038d5780632f745c59146103a357806339134a02146103c357806342842e0e146103e357600080fd5b8063095ea7b311610203578063095ea7b3146103065780630c632adf1461024057806312065fe01461032657806318160ddd1461034357806323b872dd1461035857600080fd5b806301c212e31461024057806301e6b7281461026257806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce575b600080fd5b34801561024c57600080fd5b5061026061025b36600461293d565b6106e4565b005b34801561026e57600080fd5b5061026061072e565b34801561028357600080fd5b50610297610292366004612903565b6107f6565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610821565b6040516102a39190612b49565b3480156102da57600080fd5b506102ee6102e93660046128ea565b6108b3565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b5061026061032136600461278b565b610948565b34801561033257600080fd5b50475b6040519081526020016102a3565b34801561034f57600080fd5b50600854610335565b34801561036457600080fd5b50610260610373366004612697565b610a5e565b34801561038457600080fd5b50610260610a8f565b34801561039957600080fd5b5061033560115481565b3480156103af57600080fd5b506103356103be36600461278b565b610b41565b6103d66103d136600461286f565b610bd7565b6040516102a39190612b05565b3480156103ef57600080fd5b506102606103fe366004612697565b611099565b34801561040f57600080fd5b5061033561041e3660046128ea565b6110b4565b34801561042f57600080fd5b50600a54600160a01b900460ff16610297565b34801561044e57600080fd5b50610260611147565b34801561046357600080fd5b506102ee6104723660046128ea565b61119f565b34801561048357600080fd5b50610335610492366004612649565b611216565b3480156104a357600080fd5b5061026061129d565b3480156104b857600080fd5b50600d54610100900460ff16610297565b3480156104d557600080fd5b506102606104e43660046128ea565b6112d3565b3480156104f557600080fd5b50601054610335565b34801561050a57600080fd5b506102606105193660046128ea565b611302565b34801561052a57600080fd5b50600a546001600160a01b03166102ee565b34801561054857600080fd5b506102606105573660046128ea565b611331565b34801561056857600080fd5b506102c1611360565b34801561057d57600080fd5b50600f54610335565b34801561059257600080fd5b506102606105a136600461274f565b61136f565b3480156105b257600080fd5b5061026061137a565b3480156105c757600080fd5b50600d5462010000900460ff16610297565b3480156105e557600080fd5b506102606105f43660046126d3565b611449565b34801561060557600080fd5b506102606106143660046127b5565b611481565b34801561062557600080fd5b50600d5460ff16610297565b34801561063d57600080fd5b506102c161064c3660046128ea565b6116b9565b34801561065d57600080fd5b5061029761066c366004612664565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106a657600080fd5b506103356117b7565b3480156106bb57600080fd5b506102606106ca366004612649565b6117d7565b3480156106db57600080fd5b50610260611872565b600a546001600160a01b031633146107175760405162461bcd60e51b815260040161070e90612bae565b60405180910390fd5b805161072a90600c90602084019061253c565b5050565b600a546001600160a01b031633146107585760405162461bcd60e51b815260040161070e90612bae565b600d5462010000900460ff16156107e35760405162461bcd60e51b815260206004820152604360248201527f44756e6b696e674475636b734e465423656e61626c6552657665616c4163746960448201527f766564203a466f7262696420726576657274207265617665616c2070726f636560648201526273732160e81b608482015260a40161070e565b600d805462ff0000191662010000179055565b60006001600160e01b0319821663780e9d6360e01b148061081b575061081b826119b1565b92915050565b60606000805461083090612cf3565b80601f016020809104026020016040519081016040528092919081815260200182805461085c90612cf3565b80156108a95780601f1061087e576101008083540402835291602001916108a9565b820191906000526020600020905b81548152906001019060200180831161088c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661092c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161070e565b506000908152600460205260409020546001600160a01b031690565b60006109538261119f565b9050806001600160a01b0316836001600160a01b031614156109c15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161070e565b336001600160a01b03821614806109dd57506109dd813361066c565b610a4f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161070e565b610a598383611a01565b505050565b610a683382611a6f565b610a845760405162461bcd60e51b815260040161070e90612be3565b610a59838383611b66565b600a546001600160a01b03163314610ab95760405162461bcd60e51b815260040161070e90612bae565b600d5460ff1615610b325760405162461bcd60e51b815260206004820152603e60248201527f44756e6b696e674475636b734e465423656e61626c6553616c6541637469766560448201527f643a20466f72626964207265766572742073616c652070726f63657373210000606482015260840161070e565b600d805460ff19166001179055565b6000610b4c83611216565b8210610bae5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161070e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a54606090600160a01b900460ff1615610c495760405162461bcd60e51b815260206004820152602c60248201527f44756e6b696e674475636b734e46542362617463684d696e743a20537461747560448201526b399034b7103830bab9b2b21760a11b606482015260840161070e565b600d5460ff168015610c645750600d5462010000900460ff16155b610cc95760405162461bcd60e51b815260206004820152603060248201527f44756e6b696e674475636b734e46542362617463684d696e743a204f7574206f60448201526f19881cd95b1b1a5b99c81c195c9a5bd960821b606482015260840161070e565b600082118015610cda5750600f8211155b610d645760405162461bcd60e51b815260206004820152604f60248201527f44756e6b696e674475636b734e46542362617463684d696e743a20507572636860448201527f617365207175616c697479206d75737420626520706f73697469766520696e7460648201526e32b3b2b91034b7102d989618982e9760891b608482015260a40161070e565b610d05610d7a610d7360085490565b8490611d0d565b1115610dde5760405162461bcd60e51b815260206004820152602d60248201527f44756e6b696e674475636b734e46542362617463684d696e743a205175616e7460448201526c34ba34bc9034b63632b3b0b61760991b606482015260840161070e565b600f610dec610d7333611216565b1115610e605760405162461bcd60e51b815260206004820152603760248201527f44756e6b696e674475636b734e46542362617463684d696e743a20456163682060448201527f6163636f756e74206c696d6974203130206475636b732e000000000000000000606482015260840161070e565b600d54610100900460ff1615610e7b57600f54600e55610f65565b601054600e556040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610efb858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050611d19565b610f635760405162461bcd60e51b815260206004820152603360248201527f44756e6b696e674475636b734e46542362617463684d696e743a2054686520626044820152723abcb2b91036bab9ba1031329034b7102ba61760691b606482015260840161070e565b505b600e54600090610f759084611d2f565b9050803414610fff5760405162461bcd60e51b815260206004820152604a60248201527f44756e6b696e674475636b734e46542362617463684d696e743a205472616e7360448201527f616374696f6e2076616c756520646964206e6f7420657175616c20746865206d60648201526934b73a10383934b1b29760b11b608482015260a40161070e565b60008367ffffffffffffffff81111561101a5761101a612db5565b604051908082528060200260200182016040528015611043578160200160208202803683370190505b50905060005b8481101561108f57600061105c33611d3b565b90508083838151811061107157611071612d9f565b6020908102919091010152508061108781612d2e565b915050611049565b5095945050505050565b610a5983838360405180602001604052806000815250611449565b60006110bf60085490565b82106111225760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161070e565b6008828154811061113557611135612d9f565b90600052602060002001549050919050565b600a546001600160a01b031633146111715760405162461bcd60e51b815260040161070e90612bae565b604051339081904780156108fc02916000818181858888f1935050505015801561072a573d6000803e3d6000fd5b6000818152600260205260408120546001600160a01b03168061081b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161070e565b60006001600160a01b0382166112815760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161070e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112c75760405162461bcd60e51b815260040161070e90612bae565b6112d16000611d5e565b565b600a546001600160a01b031633146112fd5760405162461bcd60e51b815260040161070e90612bae565b601155565b600a546001600160a01b0316331461132c5760405162461bcd60e51b815260040161070e90612bae565b601055565b600a546001600160a01b0316331461135b5760405162461bcd60e51b815260040161070e90612bae565b600f55565b60606001805461083090612cf3565b61072a338383611db0565b600a546001600160a01b031633146113a45760405162461bcd60e51b815260040161070e90612bae565b600d54610100900460ff16156114385760405162461bcd60e51b815260206004820152604d60248201527f44756e6b696e674475636b734e465423656e61626c65526567756c617253616c60448201527f65416374697665643a20466f726269642072657665727420726567756c61722060648201526c73616c652070726f636573732160981b608482015260a40161070e565b600d805461ff001916610100179055565b6114533383611a6f565b61146f5760405162461bcd60e51b815260040161070e90612be3565b61147b84848484611e7f565b50505050565b600a546001600160a01b031633146114ab5760405162461bcd60e51b815260040161070e90612bae565b600a54600160a01b900460ff16156115185760405162461bcd60e51b815260206004820152602a60248201527f44756e6b696e674475636b734e465423726573657276653a205374617475732060448201526934b7103830bab9b2b21760b11b606482015260840161070e565b600d5460ff16156115825760405162461bcd60e51b815260206004820152602e60248201527f44756e6b696e674475636b734e465423726573657276653a204f7574206f662060448201526d1c995cd95c9d99481c195c9a5bd960921b606482015260840161070e565b815181146115f85760405162461bcd60e51b815260206004820152603b60248201527f44756e6b696e674475636b734e465423726573657276653a205468652061646460448201527f7265737320616e64207175616e6c697479206d69736d617463682e0000000000606482015260840161070e565b6101408161160560085490565b61160f9190612c65565b11156116795760405162461bcd60e51b815260206004820152603360248201527f44756e6b696e674475636b734e465423726573657276653a204f76657220726560448201527239b2b93b329030b6b7bab73a103634b6b4ba1760691b606482015260840161070e565b60005b81811015610a59576116a683828151811061169957611699612d9f565b6020026020010151611d3b565b50806116b181612d2e565b91505061167c565b6000818152600260205260409020546060906001600160a01b03166117465760405162461bcd60e51b815260206004820152603960248201527f44756e6b696e674475636b734e465423746f6b656e5552493a2055524920717560448201527f65727920666f72206e6f6e6578697374656e7420746f6b656e00000000000000606482015260840161070e565b600d5462010000900460ff1661175b57600091505b6000611765611eb2565b9050600081511161178557604051806020016040528060008152506117b0565b8061178f84611eda565b6040516020016117a09291906129ce565b6040516020818303038152906040525b9392505050565b600d54600090610100900460ff166117d0575060105490565b50600f5490565b600a546001600160a01b031633146118015760405162461bcd60e51b815260040161070e90612bae565b6001600160a01b0381166118665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161070e565b61186f81611d5e565b50565b600a546001600160a01b0316331461189c5760405162461bcd60e51b815260040161070e90612bae565b600d5462010000900460ff166119285760405162461bcd60e51b815260206004820152604560248201527f44756e6b696e674475636b734e4654237365744d65746146726f7a656e3a204e60448201527f6565642077616974696e6720666f722072657665616c4163746976656420656e60648201526430b631329760d91b608482015260a40161070e565b600061193360085490565b905060015b81811161072a57807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207600c61196c84611eda565b60405160200161197d929190612a0d565b60408051601f198184030181529082905261199791612b49565b60405180910390a2806119a981612d2e565b915050611938565b60006001600160e01b031982166380ac58cd60e01b14806119e257506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b031983161461081b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a368261119f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ae85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161070e565b6000611af38361119f565b9050806001600160a01b0316846001600160a01b03161480611b3a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611b5e5750836001600160a01b0316611b53846108b3565b6001600160a01b0316145b949350505050565b826001600160a01b0316611b798261119f565b6001600160a01b031614611bdd5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161070e565b6001600160a01b038216611c3f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161070e565b611c4a838383611fd8565b611c55600082611a01565b6001600160a01b0383166000908152600360205260408120805460019290611c7e908490612cb0565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cac908490612c65565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006117b08284612c65565b600082611d268584612090565b14949350505050565b60006117b08284612c91565b600080611d4760085490565b611d52906001612c65565b905061081b8382612104565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611e125760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161070e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e8a848484611b66565b611e968484848461211e565b61147b5760405162461bcd60e51b815260040161070e90612b5c565b600d5460609062010000900460ff16611ecc57600b611ecf565b600c5b805461083090612cf3565b606081611efe5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f285780611f1281612d2e565b9150611f219050600a83612c7d565b9150611f02565b60008167ffffffffffffffff811115611f4357611f43612db5565b6040519080825280601f01601f191660200182016040528015611f6d576020820181803683370190505b5090505b8415611b5e57611f82600183612cb0565b9150611f8f600a86612d49565b611f9a906030612c65565b60f81b818381518110611faf57611faf612d9f565b60200101906001600160f81b031916908160001a905350611fd1600a86612c7d565b9450611f71565b6001600160a01b0383166120335761202e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612056565b816001600160a01b0316836001600160a01b03161461205657612056838261222b565b6001600160a01b03821661206d57610a59816122c8565b826001600160a01b0316826001600160a01b031614610a5957610a598282612377565b600081815b84518110156120fc5760008582815181106120b2576120b2612d9f565b602002602001015190508083116120d857600083815260208290526040902092506120e9565b600081815260208490526040902092505b50806120f481612d2e565b915050612095565b509392505050565b61072a8282604051806020016040528060008152506123bb565b60006001600160a01b0384163b1561222057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612162903390899088908890600401612ac8565b602060405180830381600087803b15801561217c57600080fd5b505af19250505080156121ac575060408051601f3d908101601f191682019092526121a991810190612920565b60015b612206573d8080156121da576040519150601f19603f3d011682016040523d82523d6000602084013e6121df565b606091505b5080516121fe5760405162461bcd60e51b815260040161070e90612b5c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b5e565b506001949350505050565b6000600161223884611216565b6122429190612cb0565b600083815260076020526040902054909150808214612295576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122da90600190612cb0565b6000838152600960205260408120546008805493945090928490811061230257612302612d9f565b90600052602060002001549050806008838154811061232357612323612d9f565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061235b5761235b612d89565b6001900381819060005260206000200160009055905550505050565b600061238283611216565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6123c583836123ee565b6123d2600084848461211e565b610a595760405162461bcd60e51b815260040161070e90612b5c565b6001600160a01b0382166124445760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161070e565b6000818152600260205260409020546001600160a01b0316156124a95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161070e565b6124b560008383611fd8565b6001600160a01b03821660009081526003602052604081208054600192906124de908490612c65565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461254890612cf3565b90600052602060002090601f01602090048101928261256a57600085556125b0565b82601f1061258357805160ff19168380011785556125b0565b828001600101855582156125b0579182015b828111156125b0578251825591602001919060010190612595565b506125bc9291506125c0565b5090565b5b808211156125bc57600081556001016125c1565b600067ffffffffffffffff8311156125ef576125ef612db5565b612602601f8401601f1916602001612c34565b905082815283838301111561261657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461264457600080fd5b919050565b60006020828403121561265b57600080fd5b6117b08261262d565b6000806040838503121561267757600080fd5b6126808361262d565b915061268e6020840161262d565b90509250929050565b6000806000606084860312156126ac57600080fd5b6126b58461262d565b92506126c36020850161262d565b9150604084013590509250925092565b600080600080608085870312156126e957600080fd5b6126f28561262d565b93506127006020860161262d565b925060408501359150606085013567ffffffffffffffff81111561272357600080fd5b8501601f8101871361273457600080fd5b612743878235602084016125d5565b91505092959194509250565b6000806040838503121561276257600080fd5b61276b8361262d565b91506020830135801515811461278057600080fd5b809150509250929050565b6000806040838503121561279e57600080fd5b6127a78361262d565b946020939093013593505050565b600080604083850312156127c857600080fd5b823567ffffffffffffffff808211156127e057600080fd5b818501915085601f8301126127f457600080fd5b813560208282111561280857612808612db5565b8160051b9250612819818401612c34565b8281528181019085830185870184018b101561283457600080fd5b600096505b8487101561285e5761284a8161262d565b835260019690960195918301918301612839565b509997909101359750505050505050565b60008060006040848603121561288457600080fd5b833567ffffffffffffffff8082111561289c57600080fd5b818601915086601f8301126128b057600080fd5b8135818111156128bf57600080fd5b8760208260051b85010111156128d457600080fd5b6020928301989097509590910135949350505050565b6000602082840312156128fc57600080fd5b5035919050565b60006020828403121561291557600080fd5b81356117b081612dcb565b60006020828403121561293257600080fd5b81516117b081612dcb565b60006020828403121561294f57600080fd5b813567ffffffffffffffff81111561296657600080fd5b8201601f8101841361297757600080fd5b611b5e848235602084016125d5565b6000815180845261299e816020860160208601612cc7565b601f01601f19169290920160200192915050565b600081516129c4818560208601612cc7565b9290920192915050565b600083516129e0818460208801612cc7565b8351908301906129f4818360208801612cc7565b64173539b7b760d91b9101908152600501949350505050565b600080845481600182811c915080831680612a2957607f831692505b6020808410821415612a4957634e487b7160e01b86526022600452602486fd5b818015612a5d5760018114612a6e57612a9b565b60ff19861689528489019650612a9b565b60008b81526020902060005b86811015612a935781548b820152908501908301612a7a565b505084890196505b505050505050612abf612aae82866129b2565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612afb90830184612986565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b3d57835183529284019291840191600101612b21565b50909695505050505050565b6020815260006117b06020830184612986565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612c5d57612c5d612db5565b604052919050565b60008219821115612c7857612c78612d5d565b500190565b600082612c8c57612c8c612d73565b500490565b6000816000190483118215151615612cab57612cab612d5d565b500290565b600082821015612cc257612cc2612d5d565b500390565b60005b83811015612ce2578181015183820152602001612cca565b8381111561147b5750506000910152565b600181811c90821680612d0757607f821691505b60208210811415612d2857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d4257612d42612d5d565b5060010190565b600082612d5857612d58612d73565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461186f57600080fdfea26469706673582212203fa0d2d7e824f2b0339b7d883fe3a899683d5c32c255476cffb811215ee3115c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e0291a2d630aeb6d89ab34cf4fbe9d20f57c97b88ec5750bd5ca34b26a6317c4fc000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d645264436b686863585a4b464c45364a746d4236733342417547533956546857616f44613676613245456e5a2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d62516f61554a66626f48454e59327a595a6136675739707737714b5157414a417548354159416e33684a71642f000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063715018a61161012e578063ae39ba08116100ab578063c87b56dd1161006f578063c87b56dd14610631578063e985e9c514610651578063eb91d37e1461069a578063f2fde38b146106af578063f716a663146106cf57600080fd5b8063ae39ba08146105a6578063b6566964146105bb578063b88d4fde146105d9578063bd1be050146105f9578063beb54f871461061957600080fd5b80638da5cb5b116100f25780638da5cb5b1461051e57806391b7f5ed1461053c57806395d89b411461055c57806398d5fdca14610571578063a22cb4651461058657600080fd5b8063715018a6146104975780637b4e70e8146104ac5780637cb64759146104c9578063854e3214146104e95780638b78c116146104fe57600080fd5b8063287fec4b116101bc5780634f6ccce7116101805780634f6ccce7146104035780635c975abb146104235780636103d70b146104425780636352211e1461045757806370a082311461047757600080fd5b8063287fec4b146103785780632eb4a7ab1461038d5780632f745c59146103a357806339134a02146103c357806342842e0e146103e357600080fd5b8063095ea7b311610203578063095ea7b3146103065780630c632adf1461024057806312065fe01461032657806318160ddd1461034357806323b872dd1461035857600080fd5b806301c212e31461024057806301e6b7281461026257806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce575b600080fd5b34801561024c57600080fd5b5061026061025b36600461293d565b6106e4565b005b34801561026e57600080fd5b5061026061072e565b34801561028357600080fd5b50610297610292366004612903565b6107f6565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610821565b6040516102a39190612b49565b3480156102da57600080fd5b506102ee6102e93660046128ea565b6108b3565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b5061026061032136600461278b565b610948565b34801561033257600080fd5b50475b6040519081526020016102a3565b34801561034f57600080fd5b50600854610335565b34801561036457600080fd5b50610260610373366004612697565b610a5e565b34801561038457600080fd5b50610260610a8f565b34801561039957600080fd5b5061033560115481565b3480156103af57600080fd5b506103356103be36600461278b565b610b41565b6103d66103d136600461286f565b610bd7565b6040516102a39190612b05565b3480156103ef57600080fd5b506102606103fe366004612697565b611099565b34801561040f57600080fd5b5061033561041e3660046128ea565b6110b4565b34801561042f57600080fd5b50600a54600160a01b900460ff16610297565b34801561044e57600080fd5b50610260611147565b34801561046357600080fd5b506102ee6104723660046128ea565b61119f565b34801561048357600080fd5b50610335610492366004612649565b611216565b3480156104a357600080fd5b5061026061129d565b3480156104b857600080fd5b50600d54610100900460ff16610297565b3480156104d557600080fd5b506102606104e43660046128ea565b6112d3565b3480156104f557600080fd5b50601054610335565b34801561050a57600080fd5b506102606105193660046128ea565b611302565b34801561052a57600080fd5b50600a546001600160a01b03166102ee565b34801561054857600080fd5b506102606105573660046128ea565b611331565b34801561056857600080fd5b506102c1611360565b34801561057d57600080fd5b50600f54610335565b34801561059257600080fd5b506102606105a136600461274f565b61136f565b3480156105b257600080fd5b5061026061137a565b3480156105c757600080fd5b50600d5462010000900460ff16610297565b3480156105e557600080fd5b506102606105f43660046126d3565b611449565b34801561060557600080fd5b506102606106143660046127b5565b611481565b34801561062557600080fd5b50600d5460ff16610297565b34801561063d57600080fd5b506102c161064c3660046128ea565b6116b9565b34801561065d57600080fd5b5061029761066c366004612664565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106a657600080fd5b506103356117b7565b3480156106bb57600080fd5b506102606106ca366004612649565b6117d7565b3480156106db57600080fd5b50610260611872565b600a546001600160a01b031633146107175760405162461bcd60e51b815260040161070e90612bae565b60405180910390fd5b805161072a90600c90602084019061253c565b5050565b600a546001600160a01b031633146107585760405162461bcd60e51b815260040161070e90612bae565b600d5462010000900460ff16156107e35760405162461bcd60e51b815260206004820152604360248201527f44756e6b696e674475636b734e465423656e61626c6552657665616c4163746960448201527f766564203a466f7262696420726576657274207265617665616c2070726f636560648201526273732160e81b608482015260a40161070e565b600d805462ff0000191662010000179055565b60006001600160e01b0319821663780e9d6360e01b148061081b575061081b826119b1565b92915050565b60606000805461083090612cf3565b80601f016020809104026020016040519081016040528092919081815260200182805461085c90612cf3565b80156108a95780601f1061087e576101008083540402835291602001916108a9565b820191906000526020600020905b81548152906001019060200180831161088c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661092c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161070e565b506000908152600460205260409020546001600160a01b031690565b60006109538261119f565b9050806001600160a01b0316836001600160a01b031614156109c15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161070e565b336001600160a01b03821614806109dd57506109dd813361066c565b610a4f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161070e565b610a598383611a01565b505050565b610a683382611a6f565b610a845760405162461bcd60e51b815260040161070e90612be3565b610a59838383611b66565b600a546001600160a01b03163314610ab95760405162461bcd60e51b815260040161070e90612bae565b600d5460ff1615610b325760405162461bcd60e51b815260206004820152603e60248201527f44756e6b696e674475636b734e465423656e61626c6553616c6541637469766560448201527f643a20466f72626964207265766572742073616c652070726f63657373210000606482015260840161070e565b600d805460ff19166001179055565b6000610b4c83611216565b8210610bae5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161070e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a54606090600160a01b900460ff1615610c495760405162461bcd60e51b815260206004820152602c60248201527f44756e6b696e674475636b734e46542362617463684d696e743a20537461747560448201526b399034b7103830bab9b2b21760a11b606482015260840161070e565b600d5460ff168015610c645750600d5462010000900460ff16155b610cc95760405162461bcd60e51b815260206004820152603060248201527f44756e6b696e674475636b734e46542362617463684d696e743a204f7574206f60448201526f19881cd95b1b1a5b99c81c195c9a5bd960821b606482015260840161070e565b600082118015610cda5750600f8211155b610d645760405162461bcd60e51b815260206004820152604f60248201527f44756e6b696e674475636b734e46542362617463684d696e743a20507572636860448201527f617365207175616c697479206d75737420626520706f73697469766520696e7460648201526e32b3b2b91034b7102d989618982e9760891b608482015260a40161070e565b610d05610d7a610d7360085490565b8490611d0d565b1115610dde5760405162461bcd60e51b815260206004820152602d60248201527f44756e6b696e674475636b734e46542362617463684d696e743a205175616e7460448201526c34ba34bc9034b63632b3b0b61760991b606482015260840161070e565b600f610dec610d7333611216565b1115610e605760405162461bcd60e51b815260206004820152603760248201527f44756e6b696e674475636b734e46542362617463684d696e743a20456163682060448201527f6163636f756e74206c696d6974203130206475636b732e000000000000000000606482015260840161070e565b600d54610100900460ff1615610e7b57600f54600e55610f65565b601054600e556040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610efb858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050611d19565b610f635760405162461bcd60e51b815260206004820152603360248201527f44756e6b696e674475636b734e46542362617463684d696e743a2054686520626044820152723abcb2b91036bab9ba1031329034b7102ba61760691b606482015260840161070e565b505b600e54600090610f759084611d2f565b9050803414610fff5760405162461bcd60e51b815260206004820152604a60248201527f44756e6b696e674475636b734e46542362617463684d696e743a205472616e7360448201527f616374696f6e2076616c756520646964206e6f7420657175616c20746865206d60648201526934b73a10383934b1b29760b11b608482015260a40161070e565b60008367ffffffffffffffff81111561101a5761101a612db5565b604051908082528060200260200182016040528015611043578160200160208202803683370190505b50905060005b8481101561108f57600061105c33611d3b565b90508083838151811061107157611071612d9f565b6020908102919091010152508061108781612d2e565b915050611049565b5095945050505050565b610a5983838360405180602001604052806000815250611449565b60006110bf60085490565b82106111225760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161070e565b6008828154811061113557611135612d9f565b90600052602060002001549050919050565b600a546001600160a01b031633146111715760405162461bcd60e51b815260040161070e90612bae565b604051339081904780156108fc02916000818181858888f1935050505015801561072a573d6000803e3d6000fd5b6000818152600260205260408120546001600160a01b03168061081b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161070e565b60006001600160a01b0382166112815760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161070e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112c75760405162461bcd60e51b815260040161070e90612bae565b6112d16000611d5e565b565b600a546001600160a01b031633146112fd5760405162461bcd60e51b815260040161070e90612bae565b601155565b600a546001600160a01b0316331461132c5760405162461bcd60e51b815260040161070e90612bae565b601055565b600a546001600160a01b0316331461135b5760405162461bcd60e51b815260040161070e90612bae565b600f55565b60606001805461083090612cf3565b61072a338383611db0565b600a546001600160a01b031633146113a45760405162461bcd60e51b815260040161070e90612bae565b600d54610100900460ff16156114385760405162461bcd60e51b815260206004820152604d60248201527f44756e6b696e674475636b734e465423656e61626c65526567756c617253616c60448201527f65416374697665643a20466f726269642072657665727420726567756c61722060648201526c73616c652070726f636573732160981b608482015260a40161070e565b600d805461ff001916610100179055565b6114533383611a6f565b61146f5760405162461bcd60e51b815260040161070e90612be3565b61147b84848484611e7f565b50505050565b600a546001600160a01b031633146114ab5760405162461bcd60e51b815260040161070e90612bae565b600a54600160a01b900460ff16156115185760405162461bcd60e51b815260206004820152602a60248201527f44756e6b696e674475636b734e465423726573657276653a205374617475732060448201526934b7103830bab9b2b21760b11b606482015260840161070e565b600d5460ff16156115825760405162461bcd60e51b815260206004820152602e60248201527f44756e6b696e674475636b734e465423726573657276653a204f7574206f662060448201526d1c995cd95c9d99481c195c9a5bd960921b606482015260840161070e565b815181146115f85760405162461bcd60e51b815260206004820152603b60248201527f44756e6b696e674475636b734e465423726573657276653a205468652061646460448201527f7265737320616e64207175616e6c697479206d69736d617463682e0000000000606482015260840161070e565b6101408161160560085490565b61160f9190612c65565b11156116795760405162461bcd60e51b815260206004820152603360248201527f44756e6b696e674475636b734e465423726573657276653a204f76657220726560448201527239b2b93b329030b6b7bab73a103634b6b4ba1760691b606482015260840161070e565b60005b81811015610a59576116a683828151811061169957611699612d9f565b6020026020010151611d3b565b50806116b181612d2e565b91505061167c565b6000818152600260205260409020546060906001600160a01b03166117465760405162461bcd60e51b815260206004820152603960248201527f44756e6b696e674475636b734e465423746f6b656e5552493a2055524920717560448201527f65727920666f72206e6f6e6578697374656e7420746f6b656e00000000000000606482015260840161070e565b600d5462010000900460ff1661175b57600091505b6000611765611eb2565b9050600081511161178557604051806020016040528060008152506117b0565b8061178f84611eda565b6040516020016117a09291906129ce565b6040516020818303038152906040525b9392505050565b600d54600090610100900460ff166117d0575060105490565b50600f5490565b600a546001600160a01b031633146118015760405162461bcd60e51b815260040161070e90612bae565b6001600160a01b0381166118665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161070e565b61186f81611d5e565b50565b600a546001600160a01b0316331461189c5760405162461bcd60e51b815260040161070e90612bae565b600d5462010000900460ff166119285760405162461bcd60e51b815260206004820152604560248201527f44756e6b696e674475636b734e4654237365744d65746146726f7a656e3a204e60448201527f6565642077616974696e6720666f722072657665616c4163746976656420656e60648201526430b631329760d91b608482015260a40161070e565b600061193360085490565b905060015b81811161072a57807fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b55657207600c61196c84611eda565b60405160200161197d929190612a0d565b60408051601f198184030181529082905261199791612b49565b60405180910390a2806119a981612d2e565b915050611938565b60006001600160e01b031982166380ac58cd60e01b14806119e257506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b031983161461081b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a368261119f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ae85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161070e565b6000611af38361119f565b9050806001600160a01b0316846001600160a01b03161480611b3a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80611b5e5750836001600160a01b0316611b53846108b3565b6001600160a01b0316145b949350505050565b826001600160a01b0316611b798261119f565b6001600160a01b031614611bdd5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161070e565b6001600160a01b038216611c3f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161070e565b611c4a838383611fd8565b611c55600082611a01565b6001600160a01b0383166000908152600360205260408120805460019290611c7e908490612cb0565b90915550506001600160a01b0382166000908152600360205260408120805460019290611cac908490612c65565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006117b08284612c65565b600082611d268584612090565b14949350505050565b60006117b08284612c91565b600080611d4760085490565b611d52906001612c65565b905061081b8382612104565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611e125760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161070e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e8a848484611b66565b611e968484848461211e565b61147b5760405162461bcd60e51b815260040161070e90612b5c565b600d5460609062010000900460ff16611ecc57600b611ecf565b600c5b805461083090612cf3565b606081611efe5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f285780611f1281612d2e565b9150611f219050600a83612c7d565b9150611f02565b60008167ffffffffffffffff811115611f4357611f43612db5565b6040519080825280601f01601f191660200182016040528015611f6d576020820181803683370190505b5090505b8415611b5e57611f82600183612cb0565b9150611f8f600a86612d49565b611f9a906030612c65565b60f81b818381518110611faf57611faf612d9f565b60200101906001600160f81b031916908160001a905350611fd1600a86612c7d565b9450611f71565b6001600160a01b0383166120335761202e81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612056565b816001600160a01b0316836001600160a01b03161461205657612056838261222b565b6001600160a01b03821661206d57610a59816122c8565b826001600160a01b0316826001600160a01b031614610a5957610a598282612377565b600081815b84518110156120fc5760008582815181106120b2576120b2612d9f565b602002602001015190508083116120d857600083815260208290526040902092506120e9565b600081815260208490526040902092505b50806120f481612d2e565b915050612095565b509392505050565b61072a8282604051806020016040528060008152506123bb565b60006001600160a01b0384163b1561222057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612162903390899088908890600401612ac8565b602060405180830381600087803b15801561217c57600080fd5b505af19250505080156121ac575060408051601f3d908101601f191682019092526121a991810190612920565b60015b612206573d8080156121da576040519150601f19603f3d011682016040523d82523d6000602084013e6121df565b606091505b5080516121fe5760405162461bcd60e51b815260040161070e90612b5c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b5e565b506001949350505050565b6000600161223884611216565b6122429190612cb0565b600083815260076020526040902054909150808214612295576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122da90600190612cb0565b6000838152600960205260408120546008805493945090928490811061230257612302612d9f565b90600052602060002001549050806008838154811061232357612323612d9f565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061235b5761235b612d89565b6001900381819060005260206000200160009055905550505050565b600061238283611216565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6123c583836123ee565b6123d2600084848461211e565b610a595760405162461bcd60e51b815260040161070e90612b5c565b6001600160a01b0382166124445760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161070e565b6000818152600260205260409020546001600160a01b0316156124a95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161070e565b6124b560008383611fd8565b6001600160a01b03821660009081526003602052604081208054600192906124de908490612c65565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461254890612cf3565b90600052602060002090601f01602090048101928261256a57600085556125b0565b82601f1061258357805160ff19168380011785556125b0565b828001600101855582156125b0579182015b828111156125b0578251825591602001919060010190612595565b506125bc9291506125c0565b5090565b5b808211156125bc57600081556001016125c1565b600067ffffffffffffffff8311156125ef576125ef612db5565b612602601f8401601f1916602001612c34565b905082815283838301111561261657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461264457600080fd5b919050565b60006020828403121561265b57600080fd5b6117b08261262d565b6000806040838503121561267757600080fd5b6126808361262d565b915061268e6020840161262d565b90509250929050565b6000806000606084860312156126ac57600080fd5b6126b58461262d565b92506126c36020850161262d565b9150604084013590509250925092565b600080600080608085870312156126e957600080fd5b6126f28561262d565b93506127006020860161262d565b925060408501359150606085013567ffffffffffffffff81111561272357600080fd5b8501601f8101871361273457600080fd5b612743878235602084016125d5565b91505092959194509250565b6000806040838503121561276257600080fd5b61276b8361262d565b91506020830135801515811461278057600080fd5b809150509250929050565b6000806040838503121561279e57600080fd5b6127a78361262d565b946020939093013593505050565b600080604083850312156127c857600080fd5b823567ffffffffffffffff808211156127e057600080fd5b818501915085601f8301126127f457600080fd5b813560208282111561280857612808612db5565b8160051b9250612819818401612c34565b8281528181019085830185870184018b101561283457600080fd5b600096505b8487101561285e5761284a8161262d565b835260019690960195918301918301612839565b509997909101359750505050505050565b60008060006040848603121561288457600080fd5b833567ffffffffffffffff8082111561289c57600080fd5b818601915086601f8301126128b057600080fd5b8135818111156128bf57600080fd5b8760208260051b85010111156128d457600080fd5b6020928301989097509590910135949350505050565b6000602082840312156128fc57600080fd5b5035919050565b60006020828403121561291557600080fd5b81356117b081612dcb565b60006020828403121561293257600080fd5b81516117b081612dcb565b60006020828403121561294f57600080fd5b813567ffffffffffffffff81111561296657600080fd5b8201601f8101841361297757600080fd5b611b5e848235602084016125d5565b6000815180845261299e816020860160208601612cc7565b601f01601f19169290920160200192915050565b600081516129c4818560208601612cc7565b9290920192915050565b600083516129e0818460208801612cc7565b8351908301906129f4818360208801612cc7565b64173539b7b760d91b9101908152600501949350505050565b600080845481600182811c915080831680612a2957607f831692505b6020808410821415612a4957634e487b7160e01b86526022600452602486fd5b818015612a5d5760018114612a6e57612a9b565b60ff19861689528489019650612a9b565b60008b81526020902060005b86811015612a935781548b820152908501908301612a7a565b505084890196505b505050505050612abf612aae82866129b2565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612afb90830184612986565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b3d57835183529284019291840191600101612b21565b50909695505050505050565b6020815260006117b06020830184612986565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612c5d57612c5d612db5565b604052919050565b60008219821115612c7857612c78612d5d565b500190565b600082612c8c57612c8c612d73565b500490565b6000816000190483118215151615612cab57612cab612d5d565b500290565b600082821015612cc257612cc2612d5d565b500390565b60005b83811015612ce2578181015183820152602001612cca565b8381111561147b5750506000910152565b600181811c90821680612d0757607f821691505b60208210811415612d2857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d4257612d42612d5d565b5060010190565b600082612d5857612d58612d73565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461186f57600080fdfea26469706673582212203fa0d2d7e824f2b0339b7d883fe3a899683d5c32c255476cffb811215ee3115c64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e0291a2d630aeb6d89ab34cf4fbe9d20f57c97b88ec5750bd5ca34b26a6317c4fc000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d645264436b686863585a4b464c45364a746d4236733342417547533956546857616f44613676613245456e5a2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d62516f61554a66626f48454e59327a595a6136675739707737714b5157414a417548354159416e33684a71642f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseUriForClosed (string): https://gateway.pinata.cloud/ipfs/QmdRdCkhhcXZKFLE6JtmB6s3BAuGS9VThWaoDa6va2EEnZ/
Arg [1] : _baseUriForOpend (string): https://gateway.pinata.cloud/ipfs/QmbQoaUJfboHENY2zYZa6gW9pw7qKQWAJAuH5AYAn3hJqd/
Arg [2] : _merkleRoot (bytes32): 0x291a2d630aeb6d89ab34cf4fbe9d20f57c97b88ec5750bd5ca34b26a6317c4fc

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 291a2d630aeb6d89ab34cf4fbe9d20f57c97b88ec5750bd5ca34b26a6317c4fc
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [4] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [5] : 732f516d645264436b686863585a4b464c45364a746d42367333424175475339
Arg [6] : 56546857616f44613676613245456e5a2f000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d62516f61554a66626f48454e59327a595a6136675739707737714b51
Arg [10] : 57414a417548354159416e33684a71642f000000000000000000000000000000


Deployed Bytecode Sourcemap

57332:6128:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62357:109;;;;;;;;;;-1:-1:-1;62357:109:0;;;;;:::i;:::-;;:::i;:::-;;61842:184;;;;;;;;;;;;;:::i;46253:224::-;;;;;;;;;;-1:-1:-1;46253:224:0;;;;;:::i;:::-;;:::i;:::-;;;9990:14:1;;9983:22;9965:41;;9953:2;9938:18;46253:224:0;;;;;;;;33072:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34632:221::-;;;;;;;;;;-1:-1:-1;34632:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8651:32:1;;;8633:51;;8621:2;8606:18;34632:221:0;8487:203:1;34155:411:0;;;;;;;;;;-1:-1:-1;34155:411:0;;;;;:::i;:::-;;:::i;63368:89::-;;;;;;;;;;-1:-1:-1;63430:21:0;63368:89;;;10163:25:1;;;10151:2;10136:18;63368:89:0;10017:177:1;46893:113:0;;;;;;;;;;-1:-1:-1;46981:10:0;:17;46893:113;;35382:339;;;;;;;;;;-1:-1:-1;35382:339:0;;;;;:::i;:::-;;:::i;61244:173::-;;;;;;;;;;;;;:::i;58011:25::-;;;;;;;;;;;;;;;;46561:256;;;;;;;;;;-1:-1:-1;46561:256:0;;;;;:::i;:::-;;:::i;59065:1435::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;35792:185::-;;;;;;;;;;-1:-1:-1;35792:185:0;;;;;:::i;:::-;;:::i;47083:233::-;;;;;;;;;;-1:-1:-1;47083:233:0;;;;;:::i;:::-;;:::i;53533:86::-;;;;;;;;;;-1:-1:-1;53604:7:0;;-1:-1:-1;;;53604:7:0;;;;53533:86;;58355:132;;;;;;;;;;;;;:::i;32766:239::-;;;;;;;;;;-1:-1:-1;32766:239:0;;;;;:::i;:::-;;:::i;32496:208::-;;;;;;;;;;-1:-1:-1;32496:208:0;;;;;:::i;:::-;;:::i;56432:103::-;;;;;;;;;;;;;:::i;61735:99::-;;;;;;;;;;-1:-1:-1;61810:18:0;;;;;;;61735:99;;62131:100;;;;;;;;;;-1:-1:-1;62131:100:0;;;;;:::i;:::-;;:::i;62767:93::-;;;;;;;;;;-1:-1:-1;62841:13:0;;62767:93;;62647:112;;;;;;;;;;-1:-1:-1;62647:112:0;;;;;:::i;:::-;;:::i;55781:87::-;;;;;;;;;;-1:-1:-1;55854:6:0;;-1:-1:-1;;;;;55854:6:0;55781:87;;62474:80;;;;;;;;;;-1:-1:-1;62474:80:0;;;;;:::i;:::-;;:::i;33241:104::-;;;;;;;;;;;;;:::i;62562:77::-;;;;;;;;;;-1:-1:-1;62628:5:0;;62562:77;;34925:155;;;;;;;;;;-1:-1:-1;34925:155:0;;;;;:::i;:::-;;:::i;61518:209::-;;;;;;;;;;;;;:::i;62034:89::-;;;;;;;;;;-1:-1:-1;62104:13:0;;;;;;;62034:89;;36048:328;;;;;;;;;;-1:-1:-1;36048:328:0;;;;;:::i;:::-;;:::i;58495:562::-;;;;;;;;;;-1:-1:-1;58495:562:0;;;;;:::i;:::-;;:::i;61425:85::-;;;;;;;;;;-1:-1:-1;61493:11:0;;;;61425:85;;60836:400;;;;;;;;;;-1:-1:-1;60836:400:0;;;;;:::i;:::-;;:::i;35151:164::-;;;;;;;;;;-1:-1:-1;35151:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35272:25:0;;;35248:4;35272:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35151:164;62868:121;;;;;;;;;;;;;:::i;56690:201::-;;;;;;;;;;-1:-1:-1;56690:201:0;;;;;:::i;:::-;;:::i;62997:363::-;;;;;;;;;;;;;:::i;62357:109::-;55854:6;;-1:-1:-1;;;;;55854:6:0;30586:10;56001:23;55993:68;;;;-1:-1:-1;;;55993:68:0;;;;;;;:::i;:::-;;;;;;;;;62434:26;;::::1;::::0;:15:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;;62357:109:::0;:::o;61842:184::-;55854:6;;-1:-1:-1;;;;;55854:6:0;30586:10;56001:23;55993:68;;;;-1:-1:-1;;;55993:68:0;;;;;;;:::i;:::-;61908:13:::1;::::0;;;::::1;;;61907:14;61899:94;;;::::0;-1:-1:-1;;;61899:94:0;;11040:2:1;61899:94:0::1;::::0;::::1;11022:21:1::0;11079:2;11059:18;;;11052:30;11118:34;11098:18;;;11091:62;11189:34;11169:18;;;11162:62;-1:-1:-1;;;11240:19:1;;;11233:34;11284:19;;61899:94:0::1;10838:471:1::0;61899:94:0::1;62000:13;:20:::0;;-1:-1:-1;;62000:20:0::1;::::0;::::1;::::0;;61842:184::o;46253:224::-;46355:4;-1:-1:-1;;;;;;46379:50:0;;-1:-1:-1;;;46379:50:0;;:90;;;46433:36;46457:11;46433:23;:36::i;:::-;46372:97;46253:224;-1:-1:-1;;46253:224:0:o;33072:100::-;33126:13;33159:5;33152:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33072:100;:::o;34632:221::-;34708:7;37975:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37975:16:0;34728:73;;;;-1:-1:-1;;;34728:73:0;;19228:2:1;34728:73:0;;;19210:21:1;19267:2;19247:18;;;19240:30;19306:34;19286:18;;;19279:62;-1:-1:-1;;;19357:18:1;;;19350:42;19409:19;;34728:73:0;19026:408:1;34728:73:0;-1:-1:-1;34821:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34821:24:0;;34632:221::o;34155:411::-;34236:13;34252:23;34267:7;34252:14;:23::i;:::-;34236:39;;34300:5;-1:-1:-1;;;;;34294:11:0;:2;-1:-1:-1;;;;;34294:11:0;;;34286:57;;;;-1:-1:-1;;;34286:57:0;;20846:2:1;34286:57:0;;;20828:21:1;20885:2;20865:18;;;20858:30;20924:34;20904:18;;;20897:62;-1:-1:-1;;;20975:18:1;;;20968:31;21016:19;;34286:57:0;20644:397:1;34286:57:0;30586:10;-1:-1:-1;;;;;34378:21:0;;;;:62;;-1:-1:-1;34403:37:0;34420:5;30586:10;35151:164;:::i;34403:37::-;34356:168;;;;-1:-1:-1;;;34356:168:0;;16777:2:1;34356:168:0;;;16759:21:1;16816:2;16796:18;;;16789:30;16855:34;16835:18;;;16828:62;16926:26;16906:18;;;16899:54;16970:19;;34356:168:0;16575:420:1;34356:168:0;34537:21;34546:2;34550:7;34537:8;:21::i;:::-;34225:341;34155:411;;:::o;35382:339::-;35577:41;30586:10;35610:7;35577:18;:41::i;:::-;35569:103;;;;-1:-1:-1;;;35569:103:0;;;;;;;:::i;:::-;35685:28;35695:4;35701:2;35705:7;35685:9;:28::i;61244:173::-;55854:6;;-1:-1:-1;;;;;55854:6:0;30586:10;56001:23;55993:68;;;;-1:-1:-1;;;55993:68:0;;;;;;;:::i;:::-;61308:11:::1;::::0;::::1;;61307:12;61299:87;;;::::0;-1:-1:-1;;;61299:87:0;;18023:2:1;61299:87:0::1;::::0;::::1;18005:21:1::0;18062:2;18042:18;;;18035:30;18101:34;18081:18;;;18074:62;18172:32;18152:18;;;18145:60;18222:19;;61299:87:0::1;17821:426:1::0;61299:87:0::1;61393:11;:18:::0;;-1:-1:-1;;61393:18:0::1;61407:4;61393:18;::::0;;61244:173::o;46561:256::-;46658:7;46694:23;46711:5;46694:16;:23::i;:::-;46686:5;:31;46678:87;;;;-1:-1:-1;;;46678:87:0;;11516:2:1;46678:87:0;;;11498:21:1;11555:2;11535:18;;;11528:30;11594:34;11574:18;;;11567:62;-1:-1:-1;;;11645:18:1;;;11638:41;11696:19;;46678:87:0;11314:407:1;46678:87:0;-1:-1:-1;;;;;;46783:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;46561:256::o;59065:1435::-;53604:7;;59176:16;;-1:-1:-1;;;53604:7:0;;;;59211:9;59203:66;;;;-1:-1:-1;;;59203:66:0;;18815:2:1;59203:66:0;;;18797:21:1;18854:2;18834:18;;;18827:30;18893:34;18873:18;;;18866:62;-1:-1:-1;;;18944:18:1;;;18937:42;18996:19;;59203:66:0;18613:408:1;59203:66:0;59286:11;;;;:29;;;;-1:-1:-1;59302:13:0;;;;;;;59301:14;59286:29;59278:90;;;;-1:-1:-1;;;59278:90:0;;13165:2:1;59278:90:0;;;13147:21:1;13204:2;13184:18;;;13177:30;13243:34;13223:18;;;13216:62;-1:-1:-1;;;13294:18:1;;;13287:46;13350:19;;59278:90:0;12963:412:1;59278:90:0;59397:1;59385:9;:13;:42;;;;-1:-1:-1;57692:2:0;59402:25;;;59385:42;59377:134;;;;-1:-1:-1;;;59377:134:0;;23526:2:1;59377:134:0;;;23508:21:1;23565:2;23545:18;;;23538:30;23604:34;23584:18;;;23577:62;23675:34;23655:18;;;23648:62;-1:-1:-1;;;23726:19:1;;;23719:46;23782:19;;59377:134:0;23324:483:1;59377:134:0;57644:4;59528:28;59542:13;46981:10;:17;;46893:113;59542:13;59528:9;;:13;:28::i;:::-;:42;;59520:100;;;;-1:-1:-1;;;59520:100:0;;15950:2:1;59520:100:0;;;15932:21:1;15989:2;15969:18;;;15962:30;16028:34;16008:18;;;16001:62;-1:-1:-1;;;16079:18:1;;;16072:43;16132:19;;59520:100:0;15748:409:1;59520:100:0;57692:2;59637:38;59651:23;30586:10;32496:208;:::i;59637:38::-;:54;;59629:122;;;;-1:-1:-1;;;59629:122:0;;20422:2:1;59629:122:0;;;20404:21:1;20461:2;20441:18;;;20434:30;20500:34;20480:18;;;20473:62;20571:25;20551:18;;;20544:53;20614:19;;59629:122:0;20220:419:1;59629:122:0;59772:18;;;;;;;59768:312;;;59818:5;;59803:12;:20;59768:312;;;59865:13;;59850:12;:28;59914:30;;-1:-1:-1;;30586:10:0;6454:2:1;6450:15;6446:53;59914:30:0;;;6434:66:1;-1:-1:-1;;6516:12:1;;59914:30:0;;;;;;;;;;;;59904:41;;;;;;59889:56;;59964:50;59983:12;;59964:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;59997:10:0;;;-1:-1:-1;60009:4:0;;-1:-1:-1;59964:18:0;:50::i;:::-;59956:114;;;;-1:-1:-1;;;59956:114:0;;13988:2:1;59956:114:0;;;13970:21:1;14027:2;14007:18;;;14000:30;14066:34;14046:18;;;14039:62;-1:-1:-1;;;14117:18:1;;;14110:49;14176:19;;59956:114:0;13786:415:1;59956:114:0;59839:241;59768:312;60110:12;;60096:11;;60110:27;;60127:9;60110:16;:27::i;:::-;60096:41;;60175:3;60162:9;:16;60154:103;;;;-1:-1:-1;;;60154:103:0;;23043:2:1;60154:103:0;;;23025:21:1;23082:2;23062:18;;;23055:30;23121:34;23101:18;;;23094:62;23192:34;23172:18;;;23165:62;-1:-1:-1;;;23243:19:1;;;23236:41;23294:19;;60154:103:0;22841:478:1;60154:103:0;60275:26;60318:9;60304:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60304:24:0;;60275:53;;60342:9;60337:131;60357:9;60355:1;:11;60337:131;;;60384:15;60402:23;30586:10;60402:9;:23::i;:::-;60384:41;;60451:7;60436:9;60446:1;60436:12;;;;;;;;:::i;:::-;;;;;;;;;;:22;-1:-1:-1;60368:3:0;;;;:::i;:::-;;;;60337:131;;;-1:-1:-1;60483:9:0;59065:1435;-1:-1:-1;;;;;59065:1435:0:o;35792:185::-;35930:39;35947:4;35953:2;35957:7;35930:39;;;;;;;;;;;;:16;:39::i;47083:233::-;47158:7;47194:30;46981:10;:17;;46893:113;47194:30;47186:5;:38;47178:95;;;;-1:-1:-1;;;47178:95:0;;22152:2:1;47178:95:0;;;22134:21:1;22191:2;22171:18;;;22164:30;22230:34;22210:18;;;22203:62;-1:-1:-1;;;22281:18:1;;;22274:42;22333:19;;47178:95:0;21950:408:1;47178:95:0;47291:10;47302:5;47291:17;;;;;;;;:::i;:::-;;;;;;;;;47284:24;;47083:233;;;:::o;58355:132::-;55854:6;;-1:-1:-1;;;;;55854:6:0;30586:10;56001:23;55993:68;;;;-1:-1:-1;;;55993:68:0;;;;;;;:::i;:::-;58456:25:::1;::::0;30586:10;;;;63430:21;58456:25;::::1;;;::::0;58407:18:::1;58456:25:::0;58407:18;58456:25;63430:21;30586:10;58456:25;::::1;;;;;;;;;;;;;::::0;::::1;;;;32766:239:::0;32838:7;32874:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32874:16:0;32909:19;32901:73;;;;-1:-1:-1;;;32901:73:0;;17613:2:1;32901:73:0;;;17595:21:1;17652:2;17632:18;;;17625:30;17691:34;17671:18;;;17664:62;-1:-1:-1;;;17742:18:1;;;17735:39;17791:19;;32901:73:0;17411:405:1;32496:208:0;32568:7;-1:-1:-1;;;;;32596:19:0;;32588:74;;;;-1:-1:-1;;;32588:74:0;;17202:2:1;32588:74:0;;;17184:21:1;17241:2;17221:18;;;17214:30;17280:34;17260:18;;;17253:62;-1:-1:-1;;;17331:18:1;;;17324:40;17381:19;;32588:74:0;17000:406:1;32588:74:0;-1:-1:-1;;;;;;32680:16:0;;;;;:9;:16;;;;;;;32496:208::o;56432:103::-;55854:6;;-1:-1:-1;;;;;55854:6:0;30586:10;56001:23;55993:68;;;;-1:-1:-1;;;55993:68:0;;;;;;;:::i;:::-;56497:30:::1;56524:1;56497:18;:30::i;:::-;56432:103::o:0;62131:100::-;55854:6;;-1:-1:-1;;;;;55854:6:0;30586:10;56001:23;55993:68;;;;-1:-1:-1;;;55993:68:0;;;;;;;:::i;:::-;62201:10:::1;:24:::0;62131:100::o;62647:112::-;55854:6;;-1:-1:-1;;;;;55854:6:0;30586:10;56001:23;55993:68;;;;-1:-1:-1;;;55993:68:0;;;;;;;:::i;:::-;62723:13:::1;:30:::0;62647:112::o;62474:80::-;55854:6;;-1:-1:-1;;;;;55854:6:0;30586:10;56001:23;55993:68;;;;-1:-1:-1;;;55993:68:0;;;;;;;:::i;:::-;62534:5:::1;:14:::0;62474:80::o;33241:104::-;33297:13;33330:7;33323:14;;;;;:::i;34925:155::-;35020:52;30586:10;35053:8;35063;35020:18;:52::i;61518:209::-;55854:6;;-1:-1:-1;;;;;55854:6:0;30586:10;56001:23;55993:68;;;;-1:-1:-1;;;55993:68:0;;;;;;;:::i;:::-;61589:18:::1;::::0;::::1;::::0;::::1;;;61588:19;61580:109;;;::::0;-1:-1:-1;;;61580:109:0;;21248:2:1;61580:109:0::1;::::0;::::1;21230:21:1::0;21287:2;21267:18;;;21260:30;21326:34;21306:18;;;21299:62;21397:34;21377:18;;;21370:62;-1:-1:-1;;;21448:19:1;;;21441:44;21502:19;;61580:109:0::1;21046:481:1::0;61580:109:0::1;61696:18;:25:::0;;-1:-1:-1;;61696:25:0::1;;;::::0;;61518:209::o;36048:328::-;36223:41;30586:10;36256:7;36223:18;:41::i;:::-;36215:103;;;;-1:-1:-1;;;36215:103:0;;;;;;;:::i;:::-;36329:39;36343:4;36349:2;36353:7;36362:5;36329:13;:39::i;:::-;36048:328;;;;:::o;58495:562::-;55854:6;;-1:-1:-1;;;;;55854:6:0;30586:10;56001:23;55993:68;;;;-1:-1:-1;;;55993:68:0;;;;;;;:::i;:::-;53604:7;;-1:-1:-1;;;53604:7:0;;;;58604:9:::1;58596:64;;;::::0;-1:-1:-1;;;58596:64:0;;12347:2:1;58596:64:0::1;::::0;::::1;12329:21:1::0;12386:2;12366:18;;;12359:30;12425:34;12405:18;;;12398:62;-1:-1:-1;;;12476:18:1;;;12469:40;12526:19;;58596:64:0::1;12145:406:1::0;58596:64:0::1;58678:11;::::0;::::1;;58677:12;58669:71;;;::::0;-1:-1:-1;;;58669:71:0;;10625:2:1;58669:71:0::1;::::0;::::1;10607:21:1::0;10664:2;10644:18;;;10637:30;10703:34;10683:18;;;10676:62;-1:-1:-1;;;10754:18:1;;;10747:44;10808:19;;58669:71:0::1;10423:410:1::0;58669:71:0::1;58770:3;:10;58757:9;:23;58749:95;;;::::0;-1:-1:-1;;;58749:95:0;;24014:2:1;58749:95:0::1;::::0;::::1;23996:21:1::0;24053:2;24033:18;;;24026:30;24092:34;24072:18;;;24065:62;24163:29;24143:18;;;24136:57;24210:19;;58749:95:0::1;23812:423:1::0;58749:95:0::1;57738:3;58878:9;58862:13;46981:10:::0;:17;;46893:113;58862:13:::1;:25;;;;:::i;:::-;58861:42;;58853:106;;;::::0;-1:-1:-1;;;58853:106:0;;20002:2:1;58853:106:0::1;::::0;::::1;19984:21:1::0;20041:2;20021:18;;;20014:30;20080:34;20060:18;;;20053:62;-1:-1:-1;;;20131:18:1;;;20124:49;20190:19;;58853:106:0::1;19800:415:1::0;58853:106:0::1;58981:9;58976:74;58996:9;58994:1;:11;58976:74;;;59023:17;59033:3;59037:1;59033:6;;;;;;;;:::i;:::-;;;;;;;59023:9;:17::i;:::-;-1:-1:-1::0;59007:3:0;::::1;::::0;::::1;:::i;:::-;;;;58976:74;;60836:400:::0;37951:4;37975:16;;;:7;:16;;;;;;60909:13;;-1:-1:-1;;;;;37975:16:0;60931:86;;;;-1:-1:-1;;;60931:86:0;;14765:2:1;60931:86:0;;;14747:21:1;14804:2;14784:18;;;14777:30;14843:34;14823:18;;;14816:62;14914:27;14894:18;;;14887:55;14959:19;;60931:86:0;14563:421:1;60931:86:0;61034:13;;;;;;;61030:47;;61068:1;61058:11;;61030:47;61089:18;61110:10;:8;:10::i;:::-;61089:31;;61155:1;61140:4;61134:18;:22;:96;;;;;;;;;;;;;;;;;61183:4;61189:25;61206:7;61189:16;:25::i;:::-;61166:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61134:96;61127:103;60836:400;-1:-1:-1;;;60836:400:0:o;62868:121::-;62941:18;;62918:7;;62941:18;;;;;:42;;-1:-1:-1;62970:13:0;;;62868:121::o;62941:42::-;-1:-1:-1;62962:5:0;;;62868:121::o;56690:201::-;55854:6;;-1:-1:-1;;;;;55854:6:0;30586:10;56001:23;55993:68;;;;-1:-1:-1;;;55993:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;56779:22:0;::::1;56771:73;;;::::0;-1:-1:-1;;;56771:73:0;;12758:2:1;56771:73:0::1;::::0;::::1;12740:21:1::0;12797:2;12777:18;;;12770:30;12836:34;12816:18;;;12809:62;-1:-1:-1;;;12887:18:1;;;12880:36;12933:19;;56771:73:0::1;12556:402:1::0;56771:73:0::1;56855:28;56874:8;56855:18;:28::i;:::-;56690:201:::0;:::o;62997:363::-;55854:6;;-1:-1:-1;;;;;55854:6:0;30586:10;56001:23;55993:68;;;;-1:-1:-1;;;55993:68:0;;;;;;;:::i;:::-;63056:13:::1;::::0;;;::::1;;;63048:95;;;::::0;-1:-1:-1;;;63048:95:0;;22565:2:1;63048:95:0::1;::::0;::::1;22547:21:1::0;22604:2;22584:18;;;22577:30;22643:34;22623:18;;;22616:62;22714:34;22694:18;;;22687:62;-1:-1:-1;;;22765:19:1;;;22758:36;22811:19;;63048:95:0::1;22363:473:1::0;63048:95:0::1;63156:19;63179:13;46981:10:::0;:17;;46893:113;63179:13:::1;63156:36:::0;-1:-1:-1;63215:1:0::1;63199:156;63224:11;63218:2;:17;63199:156;;63344:2;63257:90;63294:15;63311:20;63328:2;63311:16;:20::i;:::-;63277:64;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;63277:64:0;;::::1;::::0;;;;;;;63257:90:::1;::::0;::::1;:::i;:::-;;;;;;;;63237:4:::0;::::1;::::0;::::1;:::i;:::-;;;;63199:156;;32127:305:::0;32229:4;-1:-1:-1;;;;;;32266:40:0;;-1:-1:-1;;;32266:40:0;;:105;;-1:-1:-1;;;;;;;32323:48:0;;-1:-1:-1;;;32323:48:0;32266:105;:158;;;-1:-1:-1;;;;;;;;;;23002:40:0;;;32388:36;22893:157;42032:174;42107:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42107:29:0;-1:-1:-1;;;;;42107:29:0;;;;;;;;:24;;42161:23;42107:24;42161:14;:23::i;:::-;-1:-1:-1;;;;;42152:46:0;;;;;;;;;;;42032:174;;:::o;38180:348::-;38273:4;37975:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37975:16:0;38290:73;;;;-1:-1:-1;;;38290:73:0;;16364:2:1;38290:73:0;;;16346:21:1;16403:2;16383:18;;;16376:30;16442:34;16422:18;;;16415:62;-1:-1:-1;;;16493:18:1;;;16486:42;16545:19;;38290:73:0;16162:408:1;38290:73:0;38374:13;38390:23;38405:7;38390:14;:23::i;:::-;38374:39;;38443:5;-1:-1:-1;;;;;38432:16:0;:7;-1:-1:-1;;;;;38432:16:0;;:52;;;-1:-1:-1;;;;;;35272:25:0;;;35248:4;35272:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38452:32;38432:87;;;;38512:7;-1:-1:-1;;;;;38488:31:0;:20;38500:7;38488:11;:20::i;:::-;-1:-1:-1;;;;;38488:31:0;;38432:87;38424:96;38180:348;-1:-1:-1;;;;38180:348:0:o;41289:625::-;41448:4;-1:-1:-1;;;;;41421:31:0;:23;41436:7;41421:14;:23::i;:::-;-1:-1:-1;;;;;41421:31:0;;41413:81;;;;-1:-1:-1;;;41413:81:0;;13582:2:1;41413:81:0;;;13564:21:1;13621:2;13601:18;;;13594:30;13660:34;13640:18;;;13633:62;-1:-1:-1;;;13711:18:1;;;13704:35;13756:19;;41413:81:0;13380:401:1;41413:81:0;-1:-1:-1;;;;;41513:16:0;;41505:65;;;;-1:-1:-1;;;41505:65:0;;15191:2:1;41505:65:0;;;15173:21:1;15230:2;15210:18;;;15203:30;15269:34;15249:18;;;15242:62;-1:-1:-1;;;15320:18:1;;;15313:34;15364:19;;41505:65:0;14989:400:1;41505:65:0;41583:39;41604:4;41610:2;41614:7;41583:20;:39::i;:::-;41687:29;41704:1;41708:7;41687:8;:29::i;:::-;-1:-1:-1;;;;;41729:15:0;;;;;;:9;:15;;;;;:20;;41748:1;;41729:15;:20;;41748:1;;41729:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41760:13:0;;;;;;:9;:13;;;;;:18;;41777:1;;41760:13;:18;;41777:1;;41760:18;:::i;:::-;;;;-1:-1:-1;;41789:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41789:21:0;-1:-1:-1;;;;;41789:21:0;;;;;;;;;41828:27;;41789:16;;41828:27;;;;;;;34225:341;34155:411;;:::o;5265:98::-;5323:7;5350:5;5354:1;5350;:5;:::i;923:190::-;1048:4;1101;1072:25;1085:5;1092:4;1072:12;:25::i;:::-;:33;;923:190;-1:-1:-1;;;;923:190:0:o;6003:98::-;6061:7;6088:5;6092:1;6088;:5;:::i;60512:164::-;60560:7;60576:18;60597:13;46981:10;:17;;46893:113;60597:13;:17;;60613:1;60597:17;:::i;:::-;60576:38;;60621:25;60631:2;60635:10;60621:9;:25::i;57051:191::-;57144:6;;;-1:-1:-1;;;;;57161:17:0;;;-1:-1:-1;;;;;;57161:17:0;;;;;;;57194:40;;57144:6;;;57161:17;57144:6;;57194:40;;57125:16;;57194:40;57114:128;57051:191;:::o;42348:315::-;42503:8;-1:-1:-1;;;;;42494:17:0;:5;-1:-1:-1;;;;;42494:17:0;;;42486:55;;;;-1:-1:-1;;;42486:55:0;;15596:2:1;42486:55:0;;;15578:21:1;15635:2;15615:18;;;15608:30;15674:27;15654:18;;;15647:55;15719:18;;42486:55:0;15394:349:1;42486:55:0;-1:-1:-1;;;;;42552:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;42552:46:0;;;;;;;;;;42614:41;;9965::1;;;42614::0;;9938:18:1;42614:41:0;;;;;;;42348:315;;;:::o;37258:::-;37415:28;37425:4;37431:2;37435:7;37415:9;:28::i;:::-;37462:48;37485:4;37491:2;37495:7;37504:5;37462:22;:48::i;:::-;37454:111;;;;-1:-1:-1;;;37454:111:0;;;;;;;:::i;60684:144::-;60772:13;;60743;;60772;;;;;:50;;60806:16;60772:50;;;60788:15;60772:50;60765:57;;;;;:::i;9795:723::-;9851:13;10072:10;10068:53;;-1:-1:-1;;10099:10:0;;;;;;;;;;;;-1:-1:-1;;;10099:10:0;;;;;9795:723::o;10068:53::-;10146:5;10131:12;10187:78;10194:9;;10187:78;;10220:8;;;;:::i;:::-;;-1:-1:-1;10243:10:0;;-1:-1:-1;10251:2:0;10243:10;;:::i;:::-;;;10187:78;;;10275:19;10307:6;10297:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10297:17:0;;10275:39;;10325:154;10332:10;;10325:154;;10359:11;10369:1;10359:11;;:::i;:::-;;-1:-1:-1;10428:10:0;10436:2;10428:5;:10;:::i;:::-;10415:24;;:2;:24;:::i;:::-;10402:39;;10385:6;10392;10385:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10385:56:0;;;;;;;;-1:-1:-1;10456:11:0;10465:2;10456:11;;:::i;:::-;;;10325:154;;47929:589;-1:-1:-1;;;;;48135:18:0;;48131:187;;48170:40;48202:7;49345:10;:17;;49318:24;;;;:15;:24;;;;;:44;;;49373:24;;;;;;;;;;;;49241:164;48170:40;48131:187;;;48240:2;-1:-1:-1;;;;;48232:10:0;:4;-1:-1:-1;;;;;48232:10:0;;48228:90;;48259:47;48292:4;48298:7;48259:32;:47::i;:::-;-1:-1:-1;;;;;48332:16:0;;48328:183;;48365:45;48402:7;48365:36;:45::i;48328:183::-;48438:4;-1:-1:-1;;;;;48432:10:0;:2;-1:-1:-1;;;;;48432:10:0;;48428:83;;48459:40;48487:2;48491:7;48459:27;:40::i;1475:675::-;1558:7;1601:4;1558:7;1616:497;1640:5;:12;1636:1;:16;1616:497;;;1674:20;1697:5;1703:1;1697:8;;;;;;;;:::i;:::-;;;;;;;1674:31;;1740:12;1724;:28;1720:382;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;1852:57;;1720:382;;;2226:13;2276:15;;;2312:4;2305:15;;;2359:4;2343:21;;2029:57;;1720:382;-1:-1:-1;1654:3:0;;;;:::i;:::-;;;;1616:497;;;-1:-1:-1;2130:12:0;1475:675;-1:-1:-1;;;1475:675:0:o;38870:110::-;38946:26;38956:2;38960:7;38946:26;;;;;;;;;;;;:9;:26::i;43228:799::-;43383:4;-1:-1:-1;;;;;43404:13:0;;13082:19;:23;43400:620;;43440:72;;-1:-1:-1;;;43440:72:0;;-1:-1:-1;;;;;43440:36:0;;;;;:72;;30586:10;;43491:4;;43497:7;;43506:5;;43440:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43440:72:0;;;;;;;;-1:-1:-1;;43440:72:0;;;;;;;;;;;;:::i;:::-;;;43436:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43682:13:0;;43678:272;;43725:60;;-1:-1:-1;;;43725:60:0;;;;;;;:::i;43678:272::-;43900:6;43894:13;43885:6;43881:2;43877:15;43870:38;43436:529;-1:-1:-1;;;;;;43563:51:0;-1:-1:-1;;;43563:51:0;;-1:-1:-1;43556:58:0;;43400:620;-1:-1:-1;44004:4:0;43228:799;;;;;;:::o;50032:988::-;50298:22;50348:1;50323:22;50340:4;50323:16;:22::i;:::-;:26;;;;:::i;:::-;50360:18;50381:26;;;:17;:26;;;;;;50298:51;;-1:-1:-1;50514:28:0;;;50510:328;;-1:-1:-1;;;;;50581:18:0;;50559:19;50581:18;;;:12;:18;;;;;;;;:34;;;;;;;;;50632:30;;;;;;:44;;;50749:30;;:17;:30;;;;;:43;;;50510:328;-1:-1:-1;50934:26:0;;;;:17;:26;;;;;;;;50927:33;;;-1:-1:-1;;;;;50978:18:0;;;;;:12;:18;;;;;:34;;;;;;;50971:41;50032:988::o;51315:1079::-;51593:10;:17;51568:22;;51593:21;;51613:1;;51593:21;:::i;:::-;51625:18;51646:24;;;:15;:24;;;;;;52019:10;:26;;51568:46;;-1:-1:-1;51646:24:0;;51568:46;;52019:26;;;;;;:::i;:::-;;;;;;;;;51997:48;;52083:11;52058:10;52069;52058:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;52163:28;;;:15;:28;;;;;;;:41;;;52335:24;;;;;52328:31;52370:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;51386:1008;;;51315:1079;:::o;48819:221::-;48904:14;48921:20;48938:2;48921:16;:20::i;:::-;-1:-1:-1;;;;;48952:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;48997:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;48819:221:0:o;39207:321::-;39337:18;39343:2;39347:7;39337:5;:18::i;:::-;39388:54;39419:1;39423:2;39427:7;39436:5;39388:22;:54::i;:::-;39366:154;;;;-1:-1:-1;;;39366:154:0;;;;;;;:::i;39864:439::-;-1:-1:-1;;;;;39944:16:0;;39936:61;;;;-1:-1:-1;;;39936:61:0;;18454:2:1;39936:61:0;;;18436:21:1;;;18473:18;;;18466:30;18532:34;18512:18;;;18505:62;18584:18;;39936:61:0;18252:356:1;39936:61:0;37951:4;37975:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37975:16:0;:30;40008:58;;;;-1:-1:-1;;;40008:58:0;;14408:2:1;40008:58:0;;;14390:21:1;14447:2;14427:18;;;14420:30;14486;14466:18;;;14459:58;14534:18;;40008:58:0;14206:352:1;40008:58:0;40079:45;40108:1;40112:2;40116:7;40079:20;:45::i;:::-;-1:-1:-1;;;;;40137:13:0;;;;;;:9;:13;;;;;:18;;40154:1;;40137:13;:18;;40154:1;;40137:18;:::i;:::-;;;;-1:-1:-1;;40166:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40166:21:0;-1:-1:-1;;;;;40166:21:0;;;;;;;;40205:33;;40166:16;;;40205:33;;40166:16;;40205:33;62434:26:::1;62357:109:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:1033::-;2767:6;2775;2828:2;2816:9;2807:7;2803:23;2799:32;2796:52;;;2844:1;2841;2834:12;2796:52;2884:9;2871:23;2913:18;2954:2;2946:6;2943:14;2940:34;;;2970:1;2967;2960:12;2940:34;3008:6;2997:9;2993:22;2983:32;;3053:7;3046:4;3042:2;3038:13;3034:27;3024:55;;3075:1;3072;3065:12;3024:55;3111:2;3098:16;3133:4;3156:2;3152;3149:10;3146:36;;;3162:18;;:::i;:::-;3208:2;3205:1;3201:10;3191:20;;3231:28;3255:2;3251;3247:11;3231:28;:::i;:::-;3293:15;;;3324:12;;;;3356:11;;;3386;;;3382:20;;3379:33;-1:-1:-1;3376:53:1;;;3425:1;3422;3415:12;3376:53;3447:1;3438:10;;3457:169;3471:2;3468:1;3465:9;3457:169;;;3528:23;3547:3;3528:23;:::i;:::-;3516:36;;3489:1;3482:9;;;;;3572:12;;;;3604;;3457:169;;;-1:-1:-1;3645:5:1;3682:18;;;;3669:32;;-1:-1:-1;;;;;;;2674:1033:1:o;3712:689::-;3807:6;3815;3823;3876:2;3864:9;3855:7;3851:23;3847:32;3844:52;;;3892:1;3889;3882:12;3844:52;3932:9;3919:23;3961:18;4002:2;3994:6;3991:14;3988:34;;;4018:1;4015;4008:12;3988:34;4056:6;4045:9;4041:22;4031:32;;4101:7;4094:4;4090:2;4086:13;4082:27;4072:55;;4123:1;4120;4113:12;4072:55;4163:2;4150:16;4189:2;4181:6;4178:14;4175:34;;;4205:1;4202;4195:12;4175:34;4260:7;4253:4;4243:6;4240:1;4236:14;4232:2;4228:23;4224:34;4221:47;4218:67;;;4281:1;4278;4271:12;4218:67;4312:4;4304:13;;;;4336:6;;-1:-1:-1;4374:20:1;;;;4361:34;;3712:689;-1:-1:-1;;;;3712:689:1:o;4406:180::-;4465:6;4518:2;4506:9;4497:7;4493:23;4489:32;4486:52;;;4534:1;4531;4524:12;4486:52;-1:-1:-1;4557:23:1;;4406:180;-1:-1:-1;4406:180:1:o;4591:245::-;4649:6;4702:2;4690:9;4681:7;4677:23;4673:32;4670:52;;;4718:1;4715;4708:12;4670:52;4757:9;4744:23;4776:30;4800:5;4776:30;:::i;4841:249::-;4910:6;4963:2;4951:9;4942:7;4938:23;4934:32;4931:52;;;4979:1;4976;4969:12;4931:52;5011:9;5005:16;5030:30;5054:5;5030:30;:::i;5095:450::-;5164:6;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5273:9;5260:23;5306:18;5298:6;5295:30;5292:50;;;5338:1;5335;5328:12;5292:50;5361:22;;5414:4;5406:13;;5402:27;-1:-1:-1;5392:55:1;;5443:1;5440;5433:12;5392:55;5466:73;5531:7;5526:2;5513:16;5508:2;5504;5500:11;5466:73;:::i;5735:257::-;5776:3;5814:5;5808:12;5841:6;5836:3;5829:19;5857:63;5913:6;5906:4;5901:3;5897:14;5890:4;5883:5;5879:16;5857:63;:::i;:::-;5974:2;5953:15;-1:-1:-1;;5949:29:1;5940:39;;;;5981:4;5936:50;;5735:257;-1:-1:-1;;5735:257:1:o;5997:185::-;6039:3;6077:5;6071:12;6092:52;6137:6;6132:3;6125:4;6118:5;6114:16;6092:52;:::i;:::-;6160:16;;;;;5997:185;-1:-1:-1;;5997:185:1:o;6539:637::-;6819:3;6857:6;6851:13;6873:53;6919:6;6914:3;6907:4;6899:6;6895:17;6873:53;:::i;:::-;6989:13;;6948:16;;;;7011:57;6989:13;6948:16;7045:4;7033:17;;7011:57;:::i;:::-;-1:-1:-1;;;7090:20:1;;7119:22;;;7168:1;7157:13;;6539:637;-1:-1:-1;;;;6539:637:1:o;7181:1301::-;7458:3;7487:1;7520:6;7514:13;7550:3;7572:1;7600:9;7596:2;7592:18;7582:28;;7660:2;7649:9;7645:18;7682;7672:61;;7726:4;7718:6;7714:17;7704:27;;7672:61;7752:2;7800;7792:6;7789:14;7769:18;7766:38;7763:165;;;-1:-1:-1;;;7827:33:1;;7883:4;7880:1;7873:15;7913:4;7834:3;7901:17;7763:165;7944:18;7971:104;;;;8089:1;8084:320;;;;7937:467;;7971:104;-1:-1:-1;;8004:24:1;;7992:37;;8049:16;;;;-1:-1:-1;7971:104:1;;8084:320;24775:1;24768:14;;;24812:4;24799:18;;8179:1;8193:165;8207:6;8204:1;8201:13;8193:165;;;8285:14;;8272:11;;;8265:35;8328:16;;;;8222:10;;8193:165;;;8197:3;;8387:6;8382:3;8378:16;8371:23;;7937:467;;;;;;;8420:56;8445:30;8471:3;8463:6;8445:30;:::i;:::-;-1:-1:-1;;;6247:20:1;;6292:1;6283:11;;6187:113;8420:56;8413:63;7181:1301;-1:-1:-1;;;;;7181:1301:1:o;8695:488::-;-1:-1:-1;;;;;8964:15:1;;;8946:34;;9016:15;;9011:2;8996:18;;8989:43;9063:2;9048:18;;9041:34;;;9111:3;9106:2;9091:18;;9084:31;;;8889:4;;9132:45;;9157:19;;9149:6;9132:45;:::i;:::-;9124:53;8695:488;-1:-1:-1;;;;;;8695:488:1:o;9188:632::-;9359:2;9411:21;;;9481:13;;9384:18;;;9503:22;;;9330:4;;9359:2;9582:15;;;;9556:2;9541:18;;;9330:4;9625:169;9639:6;9636:1;9633:13;9625:169;;;9700:13;;9688:26;;9769:15;;;;9734:12;;;;9661:1;9654:9;9625:169;;;-1:-1:-1;9811:3:1;;9188:632;-1:-1:-1;;;;;;9188:632:1:o;10199:219::-;10348:2;10337:9;10330:21;10311:4;10368:44;10408:2;10397:9;10393:18;10385:6;10368:44;:::i;11726:414::-;11928:2;11910:21;;;11967:2;11947:18;;;11940:30;12006:34;12001:2;11986:18;;11979:62;-1:-1:-1;;;12072:2:1;12057:18;;12050:48;12130:3;12115:19;;11726:414::o;19439:356::-;19641:2;19623:21;;;19660:18;;;19653:30;19719:34;19714:2;19699:18;;19692:62;19786:2;19771:18;;19439:356::o;21532:413::-;21734:2;21716:21;;;21773:2;21753:18;;;21746:30;21812:34;21807:2;21792:18;;21785:62;-1:-1:-1;;;21878:2:1;21863:18;;21856:47;21935:3;21920:19;;21532:413::o;24422:275::-;24493:2;24487:9;24558:2;24539:13;;-1:-1:-1;;24535:27:1;24523:40;;24593:18;24578:34;;24614:22;;;24575:62;24572:88;;;24640:18;;:::i;:::-;24676:2;24669:22;24422:275;;-1:-1:-1;24422:275:1:o;24828:128::-;24868:3;24899:1;24895:6;24892:1;24889:13;24886:39;;;24905:18;;:::i;:::-;-1:-1:-1;24941:9:1;;24828:128::o;24961:120::-;25001:1;25027;25017:35;;25032:18;;:::i;:::-;-1:-1:-1;25066:9:1;;24961:120::o;25086:168::-;25126:7;25192:1;25188;25184:6;25180:14;25177:1;25174:21;25169:1;25162:9;25155:17;25151:45;25148:71;;;25199:18;;:::i;:::-;-1:-1:-1;25239:9:1;;25086:168::o;25259:125::-;25299:4;25327:1;25324;25321:8;25318:34;;;25332:18;;:::i;:::-;-1:-1:-1;25369:9:1;;25259:125::o;25389:258::-;25461:1;25471:113;25485:6;25482:1;25479:13;25471:113;;;25561:11;;;25555:18;25542:11;;;25535:39;25507:2;25500:10;25471:113;;;25602:6;25599:1;25596:13;25593:48;;;-1:-1:-1;;25637:1:1;25619:16;;25612:27;25389:258::o;25652:380::-;25731:1;25727:12;;;;25774;;;25795:61;;25849:4;25841:6;25837:17;25827:27;;25795:61;25902:2;25894:6;25891:14;25871:18;25868:38;25865:161;;;25948:10;25943:3;25939:20;25936:1;25929:31;25983:4;25980:1;25973:15;26011:4;26008:1;26001:15;25865:161;;25652:380;;;:::o;26037:135::-;26076:3;-1:-1:-1;;26097:17:1;;26094:43;;;26117:18;;:::i;:::-;-1:-1:-1;26164:1:1;26153:13;;26037:135::o;26177:112::-;26209:1;26235;26225:35;;26240:18;;:::i;:::-;-1:-1:-1;26274:9:1;;26177:112::o;26294:127::-;26355:10;26350:3;26346:20;26343:1;26336:31;26386:4;26383:1;26376:15;26410:4;26407:1;26400:15;26426:127;26487:10;26482:3;26478:20;26475:1;26468:31;26518:4;26515:1;26508:15;26542:4;26539:1;26532:15;26558:127;26619:10;26614:3;26610:20;26607:1;26600:31;26650:4;26647:1;26640:15;26674:4;26671:1;26664:15;26690:127;26751:10;26746:3;26742:20;26739:1;26732:31;26782:4;26779:1;26772:15;26806:4;26803:1;26796:15;26822:127;26883:10;26878:3;26874:20;26871:1;26864:31;26914:4;26911:1;26904:15;26938:4;26935:1;26928:15;26954:131;-1:-1:-1;;;;;;27028:32:1;;27018:43;;27008:71;;27075:1;27072;27065:12

Swarm Source

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