ETH Price: $2,633.13 (+2.17%)

DEXBOTS (DXB)
 

Overview

TokenID

14

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Dexbots

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol



// William Giani <https://www.linkedin.com/in/william-giani>



pragma solidity ^0.8.4;











error ApprovalCallerNotOwnerNorApproved();

error ApprovalQueryForNonexistentToken();

error ApproveToCaller();

error ApprovalToCurrentOwner();

error BalanceQueryForZeroAddress();

error MintedQueryForZeroAddress();

error BurnedQueryForZeroAddress();

error AuxQueryForZeroAddress();

error MintToZeroAddress();

error MintZeroQuantity();

error OwnerIndexOutOfBounds();

error OwnerQueryForNonexistentToken();

error TokenIndexOutOfBounds();

error TransferCallerNotOwnerNorApproved();

error TransferFromIncorrectOwner();

error TransferToNonERC721ReceiverImplementer();

error TransferToZeroAddress();

error URIQueryForNonexistentToken();



/**

 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including

 * the Metadata extension. Built to optimize for lower gas during batch mints.

 *

 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).

 *

 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.

 *

 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).

 */

contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {

    using Address for address;

    using Strings for uint256;



    // Compiler will pack this into a single 256bit word.

    struct TokenOwnership {

        // The address of the owner.

        address addr;

        // Keeps track of the start time of ownership with minimal overhead for tokenomics.

        uint64 startTimestamp;

        // Whether the token has been burned.

        bool burned;

    }



    // Compiler will pack this into a single 256bit word.

    struct AddressData {

        // Realistically, 2**64-1 is more than enough.

        uint64 balance;

        // Keeps track of mint count with minimal overhead for tokenomics.

        uint64 numberMinted;

        // Keeps track of burn count with minimal overhead for tokenomics.

        uint64 numberBurned;

        // For miscellaneous variable(s) pertaining to the address

        // (e.g. number of whitelist mint slots used).

        // If there are multiple variables, please pack them into a uint64.

        uint64 aux;

    }



    // The tokenId of the next token to be minted.

    uint256 internal _currentIndex;



    // The number of tokens burned.

    uint256 internal _burnCounter;



    // Token name

    string private _name;



    // Token symbol

    string private _symbol;



    // Mapping from token ID to ownership details

    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.

    mapping(uint256 => TokenOwnership) internal _ownerships;



    // Mapping owner address to address data

    mapping(address => AddressData) private _addressData;



    // Mapping from token ID to approved address

    mapping(uint256 => address) private _tokenApprovals;



    // Mapping from owner to operator approvals

    mapping(address => mapping(address => bool)) private _operatorApprovals;



    constructor(string memory name_, string memory symbol_) {

        _name = name_;

        _symbol = symbol_;

    }



    /**

     * @dev See {IERC721Enumerable-totalSupply}.

     */

    function totalSupply() public view returns (uint256) {

        // Counter underflow is impossible as _burnCounter cannot be incremented

        // more than _currentIndex times

        unchecked {

            return _currentIndex - _burnCounter;

        }

    }



    /**

     * @dev See {IERC165-supportsInterface}.

     */

    function supportsInterface(bytes4 interfaceId)

        public

        view

        virtual

        override(ERC165, IERC165)

        returns (bool)

    {

        return

            interfaceId == type(IERC721).interfaceId ||

            interfaceId == type(IERC721Metadata).interfaceId ||

            super.supportsInterface(interfaceId);

    }



    /**

     * @dev See {IERC721-balanceOf}.

     */

    function balanceOf(address owner) public view override returns (uint256) {

        if (owner == address(0)) revert BalanceQueryForZeroAddress();

        return uint256(_addressData[owner].balance);

    }



    /**

     * Returns the number of tokens minted by `owner`.

     */

    function _numberMinted(address owner) internal view returns (uint256) {

        if (owner == address(0)) revert MintedQueryForZeroAddress();

        return uint256(_addressData[owner].numberMinted);

    }



    /**

     * Returns the number of tokens burned by or on behalf of `owner`.

     */

    function _numberBurned(address owner) internal view returns (uint256) {

        if (owner == address(0)) revert BurnedQueryForZeroAddress();

        return uint256(_addressData[owner].numberBurned);

    }



    /**

     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).

     */

    function _getAux(address owner) internal view returns (uint64) {

        if (owner == address(0)) revert AuxQueryForZeroAddress();

        return _addressData[owner].aux;

    }



    /**

     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).

     * If there are multiple variables, please pack them into a uint64.

     */

    function _setAux(address owner, uint64 aux) internal {

        if (owner == address(0)) revert AuxQueryForZeroAddress();

        _addressData[owner].aux = aux;

    }



    /**

     * Gas spent here starts off proportional to the maximum mint batch size.

     * It gradually moves to O(1) as tokens get transferred around in the collection over time.

     */

    function ownershipOf(uint256 tokenId)

        internal

        view

        returns (TokenOwnership memory)

    {

        uint256 curr = tokenId;



        unchecked {

            if (curr < _currentIndex) {

                TokenOwnership memory ownership = _ownerships[curr];

                if (!ownership.burned) {

                    if (ownership.addr != address(0)) {

                        return ownership;

                    }

                    // Invariant:

                    // There will always be an ownership that has an address and is not burned

                    // before an ownership that does not have an address and is not burned.

                    // Hence, curr will not underflow.

                    while (true) {

                        curr--;

                        ownership = _ownerships[curr];

                        if (ownership.addr != address(0)) {

                            return ownership;

                        }

                    }

                }

            }

        }

        revert OwnerQueryForNonexistentToken();

    }



    /**

     * @dev See {IERC721-ownerOf}.

     */

    function ownerOf(uint256 tokenId) public view override returns (address) {

        return ownershipOf(tokenId).addr;

    }



    /**

     * @dev See {IERC721Metadata-name}.

     */

    function name() public view virtual override returns (string memory) {

        return _name;

    }



    /**

     * @dev See {IERC721Metadata-symbol}.

     */

    function symbol() public view virtual override returns (string memory) {

        return _symbol;

    }



    /**

     * @dev See {IERC721Metadata-tokenURI}.

     */

    function tokenURI(uint256 tokenId)

        public

        view

        virtual

        override

        returns (string memory)

    {

        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();



        string memory baseURI = _baseURI();

        return

            bytes(baseURI).length != 0

                ? string(abi.encodePacked(baseURI, tokenId.toString()))

                : "";

    }



    /**

     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each

     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty

     * by default, can be overriden in child contracts.

     */

    function _baseURI() internal view virtual returns (string memory) {

        return "";

    }



    /**

     * @dev See {IERC721-approve}.

     */

    function approve(address to, uint256 tokenId) public override {

        address owner = ERC721A.ownerOf(tokenId);

        if (to == owner) revert ApprovalToCurrentOwner();



        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {

            revert ApprovalCallerNotOwnerNorApproved();

        }



        _approve(to, tokenId, owner);

    }



    /**

     * @dev See {IERC721-getApproved}.

     */

    function getApproved(uint256 tokenId)

        public

        view

        override

        returns (address)

    {

        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();



        return _tokenApprovals[tokenId];

    }



    /**

     * @dev See {IERC721-setApprovalForAll}.

     */

    function setApprovalForAll(address operator, bool approved)

        public

        override

    {

        if (operator == _msgSender()) revert ApproveToCaller();



        _operatorApprovals[_msgSender()][operator] = approved;

        emit ApprovalForAll(_msgSender(), operator, approved);

    }



    /**

     * @dev See {IERC721-isApprovedForAll}.

     */

    function isApprovedForAll(address owner, address operator)

        public

        view

        virtual

        override

        returns (bool)

    {

        return _operatorApprovals[owner][operator];

    }



    /**

     * @dev See {IERC721-transferFrom}.

     */

    function transferFrom(

        address from,

        address to,

        uint256 tokenId

    ) public virtual override {

        _transfer(from, to, tokenId);

    }



    /**

     * @dev See {IERC721-safeTransferFrom}.

     */

    function safeTransferFrom(

        address from,

        address to,

        uint256 tokenId

    ) public virtual override {

        safeTransferFrom(from, to, tokenId, "");

    }



    /**

     * @dev See {IERC721-safeTransferFrom}.

     */

    function safeTransferFrom(

        address from,

        address to,

        uint256 tokenId,

        bytes memory _data

    ) public virtual override {

        _transfer(from, to, tokenId);

        if (!_checkOnERC721Received(from, to, tokenId, _data)) {

            revert TransferToNonERC721ReceiverImplementer();

        }

    }



    /**

     * @dev Returns whether `tokenId` exists.

     *

     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.

     *

     * Tokens start existing when they are minted (`_mint`),

     */

    function _exists(uint256 tokenId) internal view returns (bool) {

        return tokenId < _currentIndex && !_ownerships[tokenId].burned;

    }



    function _safeMint(address to, uint256 quantity) internal {

        _safeMint(to, quantity, "");

    }



    /**

     * @dev Safely mints `quantity` tokens and transfers them to `to`.

     *

     * Requirements:

     *

     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.

     * - `quantity` must be greater than 0.

     *

     * Emits a {Transfer} event.

     */

    function _safeMint(

        address to,

        uint256 quantity,

        bytes memory _data

    ) internal {

        _mint(to, quantity, _data, true);

    }



    /**

     * @dev Mints `quantity` tokens and transfers them to `to`.

     *

     * Requirements:

     *

     * - `to` cannot be the zero address.

     * - `quantity` must be greater than 0.

     *

     * Emits a {Transfer} event.

     */

    function _mint(

        address to,

        uint256 quantity,

        bytes memory _data,

        bool safe

    ) internal {

        uint256 startTokenId = _currentIndex;

        if (to == address(0)) revert MintToZeroAddress();

        if (quantity == 0) revert MintZeroQuantity();



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



        // Overflows are incredibly unrealistic.

        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1

        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1

        unchecked {

            _addressData[to].balance += uint64(quantity);

            _addressData[to].numberMinted += uint64(quantity);



            _ownerships[startTokenId].addr = to;

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



            uint256 updatedIndex = startTokenId;



            for (uint256 i; i < quantity; i++) {

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

                if (

                    safe &&

                    !_checkOnERC721Received(address(0), to, updatedIndex, _data)

                ) {

                    revert TransferToNonERC721ReceiverImplementer();

                }

                updatedIndex++;

            }



            _currentIndex = updatedIndex;

        }

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

    }



    /**

     * @dev Transfers `tokenId` from `from` to `to`.

     *

     * Requirements:

     *

     * - `to` cannot be the zero address.

     * - `tokenId` token must be owned by `from`.

     *

     * Emits a {Transfer} event.

     */

    function _transfer(

        address from,

        address to,

        uint256 tokenId

    ) private {

        TokenOwnership memory prevOwnership = ownershipOf(tokenId);



        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||

            isApprovedForAll(prevOwnership.addr, _msgSender()) ||

            getApproved(tokenId) == _msgSender());



        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

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

        if (to == address(0)) revert TransferToZeroAddress();



        _beforeTokenTransfers(from, to, tokenId, 1);



        // Clear approvals from the previous owner

        _approve(address(0), tokenId, prevOwnership.addr);



        // Underflow of the sender's balance is impossible because we check for

        // ownership above and the recipient's balance can't realistically overflow.

        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.

        unchecked {

            _addressData[from].balance -= 1;

            _addressData[to].balance += 1;



            _ownerships[tokenId].addr = to;

            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);



            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.

            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.

            uint256 nextTokenId = tokenId + 1;

            if (_ownerships[nextTokenId].addr == address(0)) {

                // This will suffice for checking _exists(nextTokenId),

                // as a burned slot cannot contain the zero address.

                if (nextTokenId < _currentIndex) {

                    _ownerships[nextTokenId].addr = prevOwnership.addr;

                    _ownerships[nextTokenId].startTimestamp = prevOwnership

                        .startTimestamp;

                }

            }

        }



        emit Transfer(from, to, tokenId);

        _afterTokenTransfers(from, to, tokenId, 1);

    }



    /**

     * @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 {

        TokenOwnership memory prevOwnership = ownershipOf(tokenId);



        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);



        // Clear approvals from the previous owner

        _approve(address(0), tokenId, prevOwnership.addr);



        // Underflow of the sender's balance is impossible because we check for

        // ownership above and the recipient's balance can't realistically overflow.

        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.

        unchecked {

            _addressData[prevOwnership.addr].balance -= 1;

            _addressData[prevOwnership.addr].numberBurned += 1;



            // Keep track of who burned the token, and the timestamp of burning.

            _ownerships[tokenId].addr = prevOwnership.addr;

            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            _ownerships[tokenId].burned = true;



            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.

            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.

            uint256 nextTokenId = tokenId + 1;

            if (_ownerships[nextTokenId].addr == address(0)) {

                // This will suffice for checking _exists(nextTokenId),

                // as a burned slot cannot contain the zero address.

                if (nextTokenId < _currentIndex) {

                    _ownerships[nextTokenId].addr = prevOwnership.addr;

                    _ownerships[nextTokenId].startTimestamp = prevOwnership

                        .startTimestamp;

                }

            }

        }



        emit Transfer(prevOwnership.addr, address(0), tokenId);

        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);



        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.

        unchecked {

            _burnCounter++;

        }

    }



    /**

     * @dev Approve `to` to operate on `tokenId`

     *

     * Emits a {Approval} event.

     */

    function _approve(

        address to,

        uint256 tokenId,

        address owner

    ) private {

        _tokenApprovals[tokenId] = to;

        emit Approval(owner, to, tokenId);

    }



    /**

     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.

     * The call is not executed if the target address is not a contract.

     *

     * @param from address representing the previous owner of the given token ID

     * @param to target address that will receive the tokens

     * @param tokenId uint256 ID of the token to be transferred

     * @param _data bytes optional data to send along with the call

     * @return bool whether the call correctly returned the expected magic value

     */

    function _checkOnERC721Received(

        address from,

        address to,

        uint256 tokenId,

        bytes memory _data

    ) private returns (bool) {

        if (to.isContract()) {

            try

                IERC721Receiver(to).onERC721Received(

                    _msgSender(),

                    from,

                    tokenId,

                    _data

                )

            returns (bytes4 retval) {

                return retval == IERC721Receiver(to).onERC721Received.selector;

            } catch (bytes memory reason) {

                if (reason.length == 0) {

                    revert TransferToNonERC721ReceiverImplementer();

                } else {

                    assembly {

                        revert(add(32, reason), mload(reason))

                    }

                }

            }

        } else {

            return true;

        }

    }



    /**

     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.

     * And also called before burning one token.

     *

     * startTokenId - the first token id to be transferred

     * quantity - the amount to be transferred

     *

     * Calling conditions:

     *

     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be

     * transferred to `to`.

     * - When `from` is zero, `tokenId` will be minted for `to`.

     * - When `to` is zero, `tokenId` will be burned by `from`.

     * - `from` and `to` are never both zero.

     */

    function _beforeTokenTransfers(

        address from,

        address to,

        uint256 startTokenId,

        uint256 quantity

    ) internal virtual {}



    /**

     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes

     * minting.

     * And also called after one token has been burned.

     *

     * startTokenId - the first token id to be transferred

     * quantity - the amount to be transferred

     *

     * Calling conditions:

     *

     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been

     * transferred to `to`.

     * - When `from` is zero, `tokenId` has been minted for `to`.

     * - When `to` is zero, `tokenId` has been burned by `from`.

     * - `from` and `to` are never both zero.

     */

    function _afterTokenTransfers(

        address from,

        address to,

        uint256 startTokenId,

        uint256 quantity

    ) internal virtual {}

}


// File: @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/Dexbots.sol



pragma solidity ^0.8.4;







interface Leatherface {

    function balanceOf(address _owner) external view returns (uint256);



    function ownerOf(uint256 tokenId) external view returns (address owner);

}



interface MintPass {

    function balanceOf(address _owner) external view returns (uint256);



    function ownerOf(uint256 tokenId) external view returns (address owner);

}



contract Dexbots is ERC721A, Ownable {

    constructor(

        string memory _name,

        string memory _symbol,

        string memory _uriPrefix,

        bytes32 _whitelistRoot,

        address _leatherfaceAddress,

        address _mintPassAddress

    ) ERC721A(_name, _symbol) {

        uriPrefix = _uriPrefix;

        leatherfaceContract = Leatherface(_leatherfaceAddress);

        mintPassContract = MintPass(_mintPassAddress);

        whitelistRoot = _whitelistRoot;

    }



    Leatherface leatherfaceContract;

    MintPass mintPassContract;



    uint256 public currentMinting = 3;



    uint256 public maxSupply = 4500;

    uint256 public maxMintPerTx = 5;

    uint256 public maxWhitelistMintsPerUser = 2;

    uint256 public price = 0.025 ether;



    uint256 public maxDevMints = 600;

    uint256 public devMints = 0;



    uint256 public maxPassAndLeatherfaceMintsTotal = 1213;

    uint256 public currentTotalOfPassAndLeatherfaceMints = 0;



    mapping(address => uint256) public whitelistMinted;

    mapping(uint256 => bool) public leatherfaceMinted;

    mapping(uint256 => bool) public passMinted;



    string public uriPrefix;



    // whitelist

    bytes32 public whitelistRoot;



    function updateWhitelistRoot(bytes32 _whitelistRoot) public onlyOwner {

        whitelistRoot = _whitelistRoot;

    }



    modifier onlyListed(bytes32 root, bytes32[] calldata _merkleProof) {

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));



        require(

            MerkleProof.verify(_merkleProof, root, leaf),

            "Address not allowed to mint or invalid proof provided"

        );



        _;

    }



    function setMaxSupply(uint256 _maxSupply) public onlyOwner {

        require(_maxSupply > 0, "Max supply must be greater than 0!");

        require(

            _maxSupply < maxSupply,

            "Max supply must be less than the current max supply!"

        );

        maxSupply = _maxSupply;

    }



    function setMaxMintPerTx(uint256 _maxMintPerTx) public onlyOwner {

        require(_maxMintPerTx > 0, "Max mint per tx must be greater than 0!");

        maxMintPerTx = _maxMintPerTx;

    }



    function setMaxWhitelistMintsPerUser(uint256 _maxWhiteListMints)

        public

        onlyOwner

    {

        require(

            _maxWhiteListMints > 0,

            "Max whitelist mints must be greater than 0!"

        );

        maxWhitelistMintsPerUser = _maxWhiteListMints;

    }



    function setCurrentMinting(uint256 _currentMinting) public onlyOwner {

        require(

            _currentMinting >= 0 && _currentMinting <= 3,

            "Current minting must be between 0 and 3!"

        );

        currentMinting = _currentMinting;

    }



    function setMaxPassAndLeatherfaceMintsTotal(

        uint256 _maxPassAndLeatherfaceMintsTotal

    ) public onlyOwner {

        require(

            _maxPassAndLeatherfaceMintsTotal > 0,

            "Max pass and leatherface mints must be greater than 0!"

        );

        require(

            _maxPassAndLeatherfaceMintsTotal >

                currentTotalOfPassAndLeatherfaceMints,

            "Max pass and leatherface mints must be greater than the current total of mints using it!"

        );

        maxPassAndLeatherfaceMintsTotal = _maxPassAndLeatherfaceMintsTotal;

    }



    function setPrice(uint256 _price) public onlyOwner {

        require(_price > 0, "Price must be greater than 0!");

        price = _price * 1 ether;

    }



    function setUriPrefix(string memory _uriPrefix) public onlyOwner {

        uriPrefix = _uriPrefix;

    }



    function tokenURI(uint256 _tokenId)

        public

        view

        virtual

        override

        returns (string memory)

    {

        if (!_exists(_tokenId)) revert URIQueryForNonexistentToken();



        return

            bytes(uriPrefix).length != 0

                ? string(

                    abi.encodePacked(

                        uriPrefix,

                        Strings.toString(_tokenId),

                        ".json"

                    )

                )

                : "";

    }



    function _safeSavePasses(uint256[] memory _passes) internal {

        uint256 passCount = _passes.length;



        currentTotalOfPassAndLeatherfaceMints += passCount;



        for (uint256 i = 0; i < passCount; i++) {

            uint256 currentPass = _passes[i];



            address currentOwner = mintPassContract.ownerOf(currentPass);



            require(

                currentOwner == msg.sender,

                "You can only select your own NFTs"

            );



            require(

                !passMinted[currentPass],

                "You can only select NFTs that have not been claimed"

            );



            passMinted[currentPass] = true;

        }

    }



    function _safeSaveLeatherfaces(uint256[] memory _leatherfaces) internal {

        uint256 leatherfacesCount = _leatherfaces.length;



        for (uint256 i = 0; i < leatherfacesCount; i++) {

            uint256 currentLeatherface = _leatherfaces[i];



            address currentOwner = leatherfaceContract.ownerOf(

                currentLeatherface

            );



            require(

                currentOwner == msg.sender,

                "You can only select your own NFTs"

            );



            require(

                !leatherfaceMinted[currentLeatherface],

                "You can only select NFTs that have not been claimed"

            );



            leatherfaceMinted[currentLeatherface] = true;

        }



        currentTotalOfPassAndLeatherfaceMints += leatherfacesCount;

    }



    function mintPassAndLeatherfaceMint(

        uint256[] memory _passes,

        uint256[] memory _leatherfaces

    ) public {

        require(

            currentMinting == 0 || currentMinting == 1 || currentMinting == 2,

            "Minting is not open yet"

        );



        require(

            currentTotalOfPassAndLeatherfaceMints <=

                maxPassAndLeatherfaceMintsTotal,

            "Max pass and leatherface mints reached"

        );



        require(

            _passes.length + _leatherfaces.length > 0,

            "You must select at least one NFT"

        );



        require(

            currentTotalOfPassAndLeatherfaceMints +

                _passes.length +

                _leatherfaces.length <=

                maxPassAndLeatherfaceMintsTotal,

            "Max pass and leatherface mints reached"

        );



        require(

            mintPassContract.balanceOf(msg.sender) >= _passes.length,

            "You do not own enough NFTs"

        );



        require(

            leatherfaceContract.balanceOf(msg.sender) >= _leatherfaces.length,

            "You do not own enough NFTs"

        );



        _safeSavePasses(_passes);

        _safeSaveLeatherfaces(_leatherfaces);



        _safeMint(msg.sender, _passes.length + _leatherfaces.length);

    }



    // whitelist mint

    function whitelistMint(uint256 _quantity, bytes32[] calldata _merkleProof)

        public

        payable

        onlyListed(whitelistRoot, _merkleProof)

    {

        require(currentMinting == 1, "Whitelist minting is not active!");

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

        require(

            whitelistMinted[msg.sender] + _quantity <= maxWhitelistMintsPerUser,

            "Quantity exceeds your max whitelist mints!"

        );

        require(

            totalSupply() + _quantity <=

                (maxSupply - maxPassAndLeatherfaceMintsTotal),

            "Quantity exceeds total max of whitelist mints!"

        );



        require(msg.value == price * _quantity, "Insufficient funds to mint!");



        whitelistMinted[msg.sender] += _quantity;



        _safeMint(msg.sender, _quantity);

    }



    // dev mint

    function devMint(uint256 _quantity) public onlyOwner {

        require(currentMinting == 3, "Dev minting is not active!");

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

        require(

            totalSupply() + _quantity <= maxSupply,

            "Quantity exceeds max supply!"

        );

        require(

            devMints + _quantity <= maxDevMints,

            "Quantity exceeds max allowed for devs!"

        );



        devMints += _quantity;

        _safeMint(msg.sender, _quantity);

    }



    function mint(uint256 _quantity) external payable {

        require(currentMinting == 2, "Public minting is not active!");

        require(_quantity <= maxMintPerTx, "Quantity exceeds max mint per tx!");

        require(

            _quantity + totalSupply() <=

                (maxSupply - maxPassAndLeatherfaceMintsTotal),

            "Max supply exceeded!"

        );

        require(msg.value == price * _quantity, "Insufficient funds to mint!");



        _safeMint(msg.sender, _quantity);

    }



    function withdraw() external onlyOwner {

        (bool os, ) = payable(owner()).call{value: address(this).balance}("");



        require(os);

    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uriPrefix","type":"string"},{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"},{"internalType":"address","name":"_leatherfaceAddress","type":"address"},{"internalType":"address","name":"_mintPassAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentMinting","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTotalOfPassAndLeatherfaceMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"leatherfaceMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDevMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPassAndLeatherfaceMintsTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistMintsPerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_passes","type":"uint256[]"},{"internalType":"uint256[]","name":"_leatherfaces","type":"uint256[]"}],"name":"mintPassAndLeatherfaceMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"passMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_currentMinting","type":"uint256"}],"name":"setCurrentMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPassAndLeatherfaceMintsTotal","type":"uint256"}],"name":"setMaxPassAndLeatherfaceMintsTotal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWhiteListMints","type":"uint256"}],"name":"setMaxWhitelistMintsPerUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"}],"name":"updateWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526003600b55611194600c556005600d556002600e556658d15e17628000600f5561025860105560006011556104bd60125560006013553480156200004757600080fd5b5060405162003351380380620033518339810160408190526200006a91620002d5565b855186908690620000839060029060208501906200015b565b508051620000999060039060208401906200015b565b505050620000b6620000b06200010560201b60201c565b62000109565b8351620000cb9060179060208701906200015b565b50600980546001600160a01b039384166001600160a01b031991821617909155600a805492909316911617905560185550620003e7915050565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001699062000394565b90600052602060002090601f0160209004810192826200018d5760008555620001d8565b82601f10620001a857805160ff1916838001178555620001d8565b82800160010185558215620001d8579182015b82811115620001d8578251825591602001919060010190620001bb565b50620001e6929150620001ea565b5090565b5b80821115620001e65760008155600101620001eb565b80516001600160a01b03811681146200021957600080fd5b919050565b600082601f8301126200023057600080fd5b81516001600160401b03808211156200024d576200024d620003d1565b604051601f8301601f19908116603f01168101908282118183101715620002785762000278620003d1565b816040528381526020925086838588010111156200029557600080fd5b600091505b83821015620002b957858201830151818301840152908201906200029a565b83821115620002cb5760008385830101525b9695505050505050565b60008060008060008060c08789031215620002ef57600080fd5b86516001600160401b03808211156200030757600080fd5b620003158a838b016200021e565b975060208901519150808211156200032c57600080fd5b6200033a8a838b016200021e565b965060408901519150808211156200035157600080fd5b506200036089828a016200021e565b94505060608701519250620003786080880162000201565b91506200038860a0880162000201565b90509295509295509295565b600181811c90821680620003a957607f821691505b60208210811415620003cb57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612f5a80620003f76000396000f3fe6080604052600436106102675760003560e01c80638da5cb5b11610144578063ca43b305116100b6578063e21d1c801161007a578063e21d1c80146106f5578063e985e9c514610715578063ebf19f5b1461075e578063ed44063e14610774578063f2fde38b1461078a578063f73d308a146107aa57600080fd5b8063ca43b30514610680578063d2cab05614610696578063d5abeb01146106a9578063dd1a3e5b146106bf578063de7fcb1d146106df57600080fd5b8063a035b1fe11610108578063a035b1fe146105d7578063a0712d68146105ed578063a22cb46514610600578063a5e7198c14610620578063b88d4fde14610640578063c87b56dd1461066057600080fd5b80638da5cb5b1461054157806391b7f5ed1461055f57806395d89b411461057f57806398a8cffe146105945780639daa974c146105c157600080fd5b806342842e0e116101dd5780636352211e116101a15780636352211e1461048c5780636b9d1a0c146104ac5780636f8b44b0146104cc57806370a08231146104ec578063715018a61461050c5780637ec4a6591461052157600080fd5b806342842e0e146103d75780634bd4ab16146103f757806352595e8f14610427578063616cdb1e1461045757806362b99ad41461047757600080fd5b80631a9d5d3d1161022f5780631a9d5d3d146103405780631e895d891461035657806323b872dd1461036c578063375a069a1461038c578063386bfc98146103ac5780633ccfd60b146103c257600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806318160ddd1461031d575b600080fd5b34801561027857600080fd5b5061028c6102873660046129fe565b6107ca565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b661081c565b6040516102989190612c57565b3480156102cf57600080fd5b506102e36102de3660046129e5565b6108ae565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612956565b6108f2565b005b34801561032957600080fd5b50600154600054035b604051908152602001610298565b34801561034c57600080fd5b5061033260105481565b34801561036257600080fd5b50610332600e5481565b34801561037857600080fd5b5061031b610387366004612863565b610980565b34801561039857600080fd5b5061031b6103a73660046129e5565b61098b565b3480156103b857600080fd5b5061033260185481565b3480156103ce57600080fd5b5061031b610b5c565b3480156103e357600080fd5b5061031b6103f2366004612863565b610bf7565b34801561040357600080fd5b5061028c6104123660046129e5565b60156020526000908152604090205460ff1681565b34801561043357600080fd5b5061028c6104423660046129e5565b60166020526000908152604090205460ff1681565b34801561046357600080fd5b5061031b6104723660046129e5565b610c12565b34801561048357600080fd5b506102b6610ca1565b34801561049857600080fd5b506102e36104a73660046129e5565b610d2f565b3480156104b857600080fd5b5061031b6104c73660046129e5565b610d41565b3480156104d857600080fd5b5061031b6104e73660046129e5565b610dd4565b3480156104f857600080fd5b506103326105073660046127f0565b610ecc565b34801561051857600080fd5b5061031b610f1a565b34801561052d57600080fd5b5061031b61053c366004612a38565b610f50565b34801561054d57600080fd5b506008546001600160a01b03166102e3565b34801561056b57600080fd5b5061031b61057a3660046129e5565b610f91565b34801561058b57600080fd5b506102b6611023565b3480156105a057600080fd5b506103326105af3660046127f0565b60146020526000908152604090205481565b3480156105cd57600080fd5b5061033260135481565b3480156105e357600080fd5b50610332600f5481565b61031b6105fb3660046129e5565b611032565b34801561060c57600080fd5b5061031b61061b366004612923565b6111ac565b34801561062c57600080fd5b5061031b61063b3660046129e5565b611242565b34801561064c57600080fd5b5061031b61065b3660046128a4565b61137d565b34801561066c57600080fd5b506102b661067b3660046129e5565b6113b7565b34801561068c57600080fd5b5061033260115481565b61031b6106a4366004612a99565b61143a565b3480156106b557600080fd5b50610332600c5481565b3480156106cb57600080fd5b5061031b6106da3660046129e5565b611766565b3480156106eb57600080fd5b50610332600d5481565b34801561070157600080fd5b5061031b610710366004612982565b6117f7565b34801561072157600080fd5b5061028c61073036600461282a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076a57600080fd5b5061033260125481565b34801561078057600080fd5b50610332600b5481565b34801561079657600080fd5b5061031b6107a53660046127f0565b611add565b3480156107b657600080fd5b5061031b6107c53660046129e5565b611b75565b60006001600160e01b031982166380ac58cd60e01b14806107fb57506001600160e01b03198216635b5e139f60e01b145b8061081657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461082b90612e37565b80601f016020809104026020016040519081016040528092919081815260200182805461085790612e37565b80156108a45780601f10610879576101008083540402835291602001916108a4565b820191906000526020600020905b81548152906001019060200180831161088757829003601f168201915b5050505050905090565b60006108b982611ba4565b6108d6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108fd82610d2f565b9050806001600160a01b0316836001600160a01b031614156109325760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061095257506109508133610730565b155b15610970576040516367d9dca160e11b815260040160405180910390fd5b61097b838383611bcf565b505050565b61097b838383611c2b565b6008546001600160a01b031633146109be5760405162461bcd60e51b81526004016109b590612cfe565b60405180910390fd5b600b54600314610a105760405162461bcd60e51b815260206004820152601a60248201527f446576206d696e74696e67206973206e6f74206163746976652100000000000060448201526064016109b5565b60008111610a605760405162461bcd60e51b815260206004820181905260248201527f5175616e74697479206d7573742062652067726561746572207468616e20302160448201526064016109b5565b600c5481610a716001546000540390565b610a7b9190612da9565b1115610ac95760405162461bcd60e51b815260206004820152601c60248201527f5175616e746974792065786365656473206d617820737570706c79210000000060448201526064016109b5565b60105481601154610ada9190612da9565b1115610b375760405162461bcd60e51b815260206004820152602660248201527f5175616e746974792065786365656473206d617820616c6c6f77656420666f7260448201526520646576732160d01b60648201526084016109b5565b8060116000828254610b499190612da9565b90915550610b5990503382611e3f565b50565b6008546001600160a01b03163314610b865760405162461bcd60e51b81526004016109b590612cfe565b6000610b9a6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610be4576040519150601f19603f3d011682016040523d82523d6000602084013e610be9565b606091505b5050905080610b5957600080fd5b61097b8383836040518060200160405280600081525061137d565b6008546001600160a01b03163314610c3c5760405162461bcd60e51b81526004016109b590612cfe565b60008111610c9c5760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7420706572207478206d7573742062652067726561746572206044820152667468616e20302160c81b60648201526084016109b5565b600d55565b60178054610cae90612e37565b80601f0160208091040260200160405190810160405280929190818152602001828054610cda90612e37565b8015610d275780601f10610cfc57610100808354040283529160200191610d27565b820191906000526020600020905b815481529060010190602001808311610d0a57829003601f168201915b505050505081565b6000610d3a82611e59565b5192915050565b6008546001600160a01b03163314610d6b5760405162461bcd60e51b81526004016109b590612cfe565b60008111610dcf5760405162461bcd60e51b815260206004820152602b60248201527f4d61782077686974656c697374206d696e7473206d757374206265206772656160448201526a746572207468616e20302160a81b60648201526084016109b5565b600e55565b6008546001600160a01b03163314610dfe5760405162461bcd60e51b81526004016109b590612cfe565b60008111610e595760405162461bcd60e51b815260206004820152602260248201527f4d617820737570706c79206d7573742062652067726561746572207468616e20604482015261302160f01b60648201526084016109b5565b600c548110610ec75760405162461bcd60e51b815260206004820152603460248201527f4d617820737570706c79206d757374206265206c657373207468616e207468656044820152732063757272656e74206d617820737570706c792160601b60648201526084016109b5565b600c55565b60006001600160a01b038216610ef5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610f445760405162461bcd60e51b81526004016109b590612cfe565b610f4e6000611f72565b565b6008546001600160a01b03163314610f7a5760405162461bcd60e51b81526004016109b590612cfe565b8051610f8d90601790602084019061267b565b5050565b6008546001600160a01b03163314610fbb5760405162461bcd60e51b81526004016109b590612cfe565b6000811161100b5760405162461bcd60e51b815260206004820152601d60248201527f5072696365206d7573742062652067726561746572207468616e20302100000060448201526064016109b5565b61101d81670de0b6b3a7640000612dd5565b600f5550565b60606003805461082b90612e37565b600b546002146110845760405162461bcd60e51b815260206004820152601d60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976652100000060448201526064016109b5565b600d548111156110e05760405162461bcd60e51b815260206004820152602160248201527f5175616e746974792065786365656473206d6178206d696e74207065722074786044820152602160f81b60648201526084016109b5565b601254600c546110f09190612df4565b600154600054036111019083612da9565b11156111465760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109b5565b80600f546111549190612dd5565b34146111a25760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e742066756e647320746f206d696e7421000000000060448201526064016109b5565b610b593382611e3f565b6001600160a01b0382163314156111d65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461126c5760405162461bcd60e51b81526004016109b590612cfe565b600081116112db5760405162461bcd60e51b815260206004820152603660248201527f4d6178207061737320616e64206c65617468657266616365206d696e7473206d6044820152757573742062652067726561746572207468616e20302160501b60648201526084016109b5565b60135481116113785760405162461bcd60e51b815260206004820152605860248201527f4d6178207061737320616e64206c65617468657266616365206d696e7473206d60448201527f7573742062652067726561746572207468616e207468652063757272656e742060648201527f746f74616c206f66206d696e7473207573696e67206974210000000000000000608482015260a4016109b5565b601255565b611388848484611c2b565b61139484848484611fc4565b6113b1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606113c282611ba4565b6113df57604051630a14c4b560e41b815260040160405180910390fd5b601780546113ec90612e37565b151590506114095760405180602001604052806000815250610816565b6017611414836120d3565b604051602001611425929190612b5f565b60405160208183030381529060405292915050565b6018546040516bffffffffffffffffffffffff193360601b166020820152839083906000906034016040516020818303038152906040528051906020012090506114ba8383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508892508591506121d09050565b6115245760405162461bcd60e51b815260206004820152603560248201527f41646472657373206e6f7420616c6c6f77656420746f206d696e74206f7220696044820152741b9d985b1a59081c1c9bdbd9881c1c9bdd9a591959605a1b60648201526084016109b5565b600b546001146115765760405162461bcd60e51b815260206004820181905260248201527f57686974656c697374206d696e74696e67206973206e6f74206163746976652160448201526064016109b5565b600087116115c65760405162461bcd60e51b815260206004820181905260248201527f5175616e74697479206d7573742062652067726561746572207468616e20302160448201526064016109b5565b600e54336000908152601460205260409020546115e4908990612da9565b11156116455760405162461bcd60e51b815260206004820152602a60248201527f5175616e74697479206578636565647320796f7572206d61782077686974656c604482015269697374206d696e74732160b01b60648201526084016109b5565b601254600c546116559190612df4565b876116636001546000540390565b61166d9190612da9565b11156116d25760405162461bcd60e51b815260206004820152602e60248201527f5175616e74697479206578636565647320746f74616c206d6178206f6620776860448201526d6974656c697374206d696e74732160901b60648201526084016109b5565b86600f546116e09190612dd5565b341461172e5760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e742066756e647320746f206d696e7421000000000060448201526064016109b5565b336000908152601460205260408120805489929061174d908490612da9565b9091555061175d90503388611e3f565b50505050505050565b6008546001600160a01b031633146117905760405162461bcd60e51b81526004016109b590612cfe565b60038111156117f25760405162461bcd60e51b815260206004820152602860248201527f43757272656e74206d696e74696e67206d757374206265206265747765656e206044820152673020616e6420332160c01b60648201526084016109b5565b600b55565b600b5415806118085750600b546001145b806118155750600b546002145b6118615760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e67206973206e6f74206f70656e2079657400000000000000000060448201526064016109b5565b60125460135411156118855760405162461bcd60e51b81526004016109b590612d33565b6000815183516118959190612da9565b116118e25760405162461bcd60e51b815260206004820181905260248201527f596f75206d7573742073656c656374206174206c65617374206f6e65204e465460448201526064016109b5565b601254815183516013546118f69190612da9565b6119009190612da9565b111561191e5760405162461bcd60e51b81526004016109b590612d33565b8151600a546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561196357600080fd5b505afa158015611977573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061199b9190612a80565b10156119e95760405162461bcd60e51b815260206004820152601a60248201527f596f7520646f206e6f74206f776e20656e6f756768204e46547300000000000060448201526064016109b5565b80516009546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015611a2e57600080fd5b505afa158015611a42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a669190612a80565b1015611ab45760405162461bcd60e51b815260206004820152601a60248201527f596f7520646f206e6f74206f776e20656e6f756768204e46547300000000000060448201526064016109b5565b611abd826121e6565b611ac681612335565b610f8d3382518451611ad89190612da9565b611e3f565b6008546001600160a01b03163314611b075760405162461bcd60e51b81526004016109b590612cfe565b6001600160a01b038116611b6c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b5565b610b5981611f72565b6008546001600160a01b03163314611b9f5760405162461bcd60e51b81526004016109b590612cfe565b601855565b6000805482108015610816575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611c3682611e59565b80519091506000906001600160a01b0316336001600160a01b03161480611c6457508151611c649033610730565b80611c7f575033611c74846108ae565b6001600160a01b0316145b905080611c9f57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611cd45760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611cfb57604051633a954ecd60e21b815260040160405180910390fd5b611d0b6000848460000151611bcf565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611df557600054811015611df557825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610f8d828260405180602001604052806000815250612484565b6040805160608101825260008082526020820181905291810182905290548290811015611f5957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611f575780516001600160a01b031615611eee579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611f52579392505050565b611eee565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156120c757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612008903390899088908890600401612c1a565b602060405180830381600087803b15801561202257600080fd5b505af1925050508015612052575060408051601f3d908101601f1916820190925261204f91810190612a1b565b60015b6120ad573d808015612080576040519150601f19603f3d011682016040523d82523d6000602084013e612085565b606091505b5080516120a5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120cb565b5060015b949350505050565b6060816120f75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612121578061210b81612e72565b915061211a9050600a83612dc1565b91506120fb565b6000816001600160401b0381111561213b5761213b612ee3565b6040519080825280601f01601f191660200182016040528015612165576020820181803683370190505b5090505b84156120cb5761217a600183612df4565b9150612187600a86612e8d565b612192906030612da9565b60f81b8183815181106121a7576121a7612ecd565b60200101906001600160f81b031916908160001a9053506121c9600a86612dc1565b9450612169565b6000826121dd8584612491565b14949350505050565b60008151905080601360008282546121fe9190612da9565b90915550600090505b8181101561097b57600083828151811061222357612223612ecd565b6020908102919091010151600a546040516331a9108f60e11b8152600481018390529192506000916001600160a01b0390911690636352211e9060240160206040518083038186803b15801561227857600080fd5b505afa15801561228c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b0919061280d565b90506001600160a01b03811633146122da5760405162461bcd60e51b81526004016109b590612c6a565b60008281526016602052604090205460ff16156123095760405162461bcd60e51b81526004016109b590612cab565b506000908152601660205260409020805460ff191660011790558061232d81612e72565b915050612207565b805160005b8181101561246857600083828151811061235657612356612ecd565b60209081029190910101516009546040516331a9108f60e11b8152600481018390529192506000916001600160a01b0390911690636352211e9060240160206040518083038186803b1580156123ab57600080fd5b505afa1580156123bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123e3919061280d565b90506001600160a01b038116331461240d5760405162461bcd60e51b81526004016109b590612c6a565b60008281526015602052604090205460ff161561243c5760405162461bcd60e51b81526004016109b590612cab565b506000908152601560205260409020805460ff191660011790558061246081612e72565b91505061233a565b50806013600082825461247b9190612da9565b90915550505050565b61097b83838360016124de565b600081815b84518110156124d6576124c2828683815181106124b5576124b5612ecd565b6020026020010151612649565b9150806124ce81612e72565b915050612496565b509392505050565b6000546001600160a01b03851661250757604051622e076360e81b815260040160405180910390fd5b836125255760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156126405760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561261657506126146000888488611fc4565b155b15612634576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016125bf565b50600055611e38565b6000818310612665576000828152602084905260409020612674565b60008381526020839052604090205b9392505050565b82805461268790612e37565b90600052602060002090601f0160209004810192826126a957600085556126ef565b82601f106126c257805160ff19168380011785556126ef565b828001600101855582156126ef579182015b828111156126ef5782518255916020019190600101906126d4565b506126fb9291506126ff565b5090565b5b808211156126fb5760008155600101612700565b60006001600160401b0383111561272d5761272d612ee3565b612740601f8401601f1916602001612d79565b905082815283838301111561275457600080fd5b828260208301376000602084830101529392505050565b600082601f83011261277c57600080fd5b813560206001600160401b0382111561279757612797612ee3565b8160051b6127a6828201612d79565b8381528281019086840183880185018910156127c157600080fd5b600093505b858410156127e45780358352600193909301929184019184016127c6565b50979650505050505050565b60006020828403121561280257600080fd5b813561267481612ef9565b60006020828403121561281f57600080fd5b815161267481612ef9565b6000806040838503121561283d57600080fd5b823561284881612ef9565b9150602083013561285881612ef9565b809150509250929050565b60008060006060848603121561287857600080fd5b833561288381612ef9565b9250602084013561289381612ef9565b929592945050506040919091013590565b600080600080608085870312156128ba57600080fd5b84356128c581612ef9565b935060208501356128d581612ef9565b92506040850135915060608501356001600160401b038111156128f757600080fd5b8501601f8101871361290857600080fd5b61291787823560208401612714565b91505092959194509250565b6000806040838503121561293657600080fd5b823561294181612ef9565b91506020830135801515811461285857600080fd5b6000806040838503121561296957600080fd5b823561297481612ef9565b946020939093013593505050565b6000806040838503121561299557600080fd5b82356001600160401b03808211156129ac57600080fd5b6129b88683870161276b565b935060208501359150808211156129ce57600080fd5b506129db8582860161276b565b9150509250929050565b6000602082840312156129f757600080fd5b5035919050565b600060208284031215612a1057600080fd5b813561267481612f0e565b600060208284031215612a2d57600080fd5b815161267481612f0e565b600060208284031215612a4a57600080fd5b81356001600160401b03811115612a6057600080fd5b8201601f81018413612a7157600080fd5b6120cb84823560208401612714565b600060208284031215612a9257600080fd5b5051919050565b600080600060408486031215612aae57600080fd5b8335925060208401356001600160401b0380821115612acc57600080fd5b818601915086601f830112612ae057600080fd5b813581811115612aef57600080fd5b8760208260051b8501011115612b0457600080fd5b6020830194508093505050509250925092565b60008151808452612b2f816020860160208601612e0b565b601f01601f19169290920160200192915050565b60008151612b55818560208601612e0b565b9290920192915050565b600080845481600182811c915080831680612b7b57607f831692505b6020808410821415612b9b57634e487b7160e01b86526022600452602486fd5b818015612baf5760018114612bc057612bed565b60ff19861689528489019650612bed565b60008b81526020902060005b86811015612be55781548b820152908501908301612bcc565b505084890196505b505050505050612c11612c008286612b43565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c4d90830184612b17565b9695505050505050565b6020815260006126746020830184612b17565b60208082526021908201527f596f752063616e206f6e6c792073656c65637420796f7572206f776e204e46546040820152607360f81b606082015260800190565b60208082526033908201527f596f752063616e206f6e6c792073656c656374204e46547320746861742068616040820152721d99481b9bdd081899595b8818db185a5b5959606a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f4d6178207061737320616e64206c65617468657266616365206d696e74732072604082015265195858da195960d21b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612da157612da1612ee3565b604052919050565b60008219821115612dbc57612dbc612ea1565b500190565b600082612dd057612dd0612eb7565b500490565b6000816000190483118215151615612def57612def612ea1565b500290565b600082821015612e0657612e06612ea1565b500390565b60005b83811015612e26578181015183820152602001612e0e565b838111156113b15750506000910152565b600181811c90821680612e4b57607f821691505b60208210811415612e6c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e8657612e86612ea1565b5060010190565b600082612e9c57612e9c612eb7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b5957600080fd5b6001600160e01b031981168114610b5957600080fdfea2646970667358221220fdfd9e6568f5905ca5c7a2f2e8bcae90f0ead905eb2618547ab828f0e1b6f85e64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001401711a0010db64d6b1c0d8fbc22c7472a23db41038117b59a1c6df3728881bd6b000000000000000000000000793cb4217410e394e9a0215a6fdd2edbac18ca6000000000000000000000000002eac394763be809efdc3ec86cb89b8967c50d890000000000000000000000000000000000000000000000000000000000000007444558424f54530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034458420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f63646e2e646578626f74732e696f2f6a736f6e2f00000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c80638da5cb5b11610144578063ca43b305116100b6578063e21d1c801161007a578063e21d1c80146106f5578063e985e9c514610715578063ebf19f5b1461075e578063ed44063e14610774578063f2fde38b1461078a578063f73d308a146107aa57600080fd5b8063ca43b30514610680578063d2cab05614610696578063d5abeb01146106a9578063dd1a3e5b146106bf578063de7fcb1d146106df57600080fd5b8063a035b1fe11610108578063a035b1fe146105d7578063a0712d68146105ed578063a22cb46514610600578063a5e7198c14610620578063b88d4fde14610640578063c87b56dd1461066057600080fd5b80638da5cb5b1461054157806391b7f5ed1461055f57806395d89b411461057f57806398a8cffe146105945780639daa974c146105c157600080fd5b806342842e0e116101dd5780636352211e116101a15780636352211e1461048c5780636b9d1a0c146104ac5780636f8b44b0146104cc57806370a08231146104ec578063715018a61461050c5780637ec4a6591461052157600080fd5b806342842e0e146103d75780634bd4ab16146103f757806352595e8f14610427578063616cdb1e1461045757806362b99ad41461047757600080fd5b80631a9d5d3d1161022f5780631a9d5d3d146103405780631e895d891461035657806323b872dd1461036c578063375a069a1461038c578063386bfc98146103ac5780633ccfd60b146103c257600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806318160ddd1461031d575b600080fd5b34801561027857600080fd5b5061028c6102873660046129fe565b6107ca565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b661081c565b6040516102989190612c57565b3480156102cf57600080fd5b506102e36102de3660046129e5565b6108ae565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612956565b6108f2565b005b34801561032957600080fd5b50600154600054035b604051908152602001610298565b34801561034c57600080fd5b5061033260105481565b34801561036257600080fd5b50610332600e5481565b34801561037857600080fd5b5061031b610387366004612863565b610980565b34801561039857600080fd5b5061031b6103a73660046129e5565b61098b565b3480156103b857600080fd5b5061033260185481565b3480156103ce57600080fd5b5061031b610b5c565b3480156103e357600080fd5b5061031b6103f2366004612863565b610bf7565b34801561040357600080fd5b5061028c6104123660046129e5565b60156020526000908152604090205460ff1681565b34801561043357600080fd5b5061028c6104423660046129e5565b60166020526000908152604090205460ff1681565b34801561046357600080fd5b5061031b6104723660046129e5565b610c12565b34801561048357600080fd5b506102b6610ca1565b34801561049857600080fd5b506102e36104a73660046129e5565b610d2f565b3480156104b857600080fd5b5061031b6104c73660046129e5565b610d41565b3480156104d857600080fd5b5061031b6104e73660046129e5565b610dd4565b3480156104f857600080fd5b506103326105073660046127f0565b610ecc565b34801561051857600080fd5b5061031b610f1a565b34801561052d57600080fd5b5061031b61053c366004612a38565b610f50565b34801561054d57600080fd5b506008546001600160a01b03166102e3565b34801561056b57600080fd5b5061031b61057a3660046129e5565b610f91565b34801561058b57600080fd5b506102b6611023565b3480156105a057600080fd5b506103326105af3660046127f0565b60146020526000908152604090205481565b3480156105cd57600080fd5b5061033260135481565b3480156105e357600080fd5b50610332600f5481565b61031b6105fb3660046129e5565b611032565b34801561060c57600080fd5b5061031b61061b366004612923565b6111ac565b34801561062c57600080fd5b5061031b61063b3660046129e5565b611242565b34801561064c57600080fd5b5061031b61065b3660046128a4565b61137d565b34801561066c57600080fd5b506102b661067b3660046129e5565b6113b7565b34801561068c57600080fd5b5061033260115481565b61031b6106a4366004612a99565b61143a565b3480156106b557600080fd5b50610332600c5481565b3480156106cb57600080fd5b5061031b6106da3660046129e5565b611766565b3480156106eb57600080fd5b50610332600d5481565b34801561070157600080fd5b5061031b610710366004612982565b6117f7565b34801561072157600080fd5b5061028c61073036600461282a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076a57600080fd5b5061033260125481565b34801561078057600080fd5b50610332600b5481565b34801561079657600080fd5b5061031b6107a53660046127f0565b611add565b3480156107b657600080fd5b5061031b6107c53660046129e5565b611b75565b60006001600160e01b031982166380ac58cd60e01b14806107fb57506001600160e01b03198216635b5e139f60e01b145b8061081657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461082b90612e37565b80601f016020809104026020016040519081016040528092919081815260200182805461085790612e37565b80156108a45780601f10610879576101008083540402835291602001916108a4565b820191906000526020600020905b81548152906001019060200180831161088757829003601f168201915b5050505050905090565b60006108b982611ba4565b6108d6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108fd82610d2f565b9050806001600160a01b0316836001600160a01b031614156109325760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061095257506109508133610730565b155b15610970576040516367d9dca160e11b815260040160405180910390fd5b61097b838383611bcf565b505050565b61097b838383611c2b565b6008546001600160a01b031633146109be5760405162461bcd60e51b81526004016109b590612cfe565b60405180910390fd5b600b54600314610a105760405162461bcd60e51b815260206004820152601a60248201527f446576206d696e74696e67206973206e6f74206163746976652100000000000060448201526064016109b5565b60008111610a605760405162461bcd60e51b815260206004820181905260248201527f5175616e74697479206d7573742062652067726561746572207468616e20302160448201526064016109b5565b600c5481610a716001546000540390565b610a7b9190612da9565b1115610ac95760405162461bcd60e51b815260206004820152601c60248201527f5175616e746974792065786365656473206d617820737570706c79210000000060448201526064016109b5565b60105481601154610ada9190612da9565b1115610b375760405162461bcd60e51b815260206004820152602660248201527f5175616e746974792065786365656473206d617820616c6c6f77656420666f7260448201526520646576732160d01b60648201526084016109b5565b8060116000828254610b499190612da9565b90915550610b5990503382611e3f565b50565b6008546001600160a01b03163314610b865760405162461bcd60e51b81526004016109b590612cfe565b6000610b9a6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610be4576040519150601f19603f3d011682016040523d82523d6000602084013e610be9565b606091505b5050905080610b5957600080fd5b61097b8383836040518060200160405280600081525061137d565b6008546001600160a01b03163314610c3c5760405162461bcd60e51b81526004016109b590612cfe565b60008111610c9c5760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7420706572207478206d7573742062652067726561746572206044820152667468616e20302160c81b60648201526084016109b5565b600d55565b60178054610cae90612e37565b80601f0160208091040260200160405190810160405280929190818152602001828054610cda90612e37565b8015610d275780601f10610cfc57610100808354040283529160200191610d27565b820191906000526020600020905b815481529060010190602001808311610d0a57829003601f168201915b505050505081565b6000610d3a82611e59565b5192915050565b6008546001600160a01b03163314610d6b5760405162461bcd60e51b81526004016109b590612cfe565b60008111610dcf5760405162461bcd60e51b815260206004820152602b60248201527f4d61782077686974656c697374206d696e7473206d757374206265206772656160448201526a746572207468616e20302160a81b60648201526084016109b5565b600e55565b6008546001600160a01b03163314610dfe5760405162461bcd60e51b81526004016109b590612cfe565b60008111610e595760405162461bcd60e51b815260206004820152602260248201527f4d617820737570706c79206d7573742062652067726561746572207468616e20604482015261302160f01b60648201526084016109b5565b600c548110610ec75760405162461bcd60e51b815260206004820152603460248201527f4d617820737570706c79206d757374206265206c657373207468616e207468656044820152732063757272656e74206d617820737570706c792160601b60648201526084016109b5565b600c55565b60006001600160a01b038216610ef5576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610f445760405162461bcd60e51b81526004016109b590612cfe565b610f4e6000611f72565b565b6008546001600160a01b03163314610f7a5760405162461bcd60e51b81526004016109b590612cfe565b8051610f8d90601790602084019061267b565b5050565b6008546001600160a01b03163314610fbb5760405162461bcd60e51b81526004016109b590612cfe565b6000811161100b5760405162461bcd60e51b815260206004820152601d60248201527f5072696365206d7573742062652067726561746572207468616e20302100000060448201526064016109b5565b61101d81670de0b6b3a7640000612dd5565b600f5550565b60606003805461082b90612e37565b600b546002146110845760405162461bcd60e51b815260206004820152601d60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976652100000060448201526064016109b5565b600d548111156110e05760405162461bcd60e51b815260206004820152602160248201527f5175616e746974792065786365656473206d6178206d696e74207065722074786044820152602160f81b60648201526084016109b5565b601254600c546110f09190612df4565b600154600054036111019083612da9565b11156111465760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109b5565b80600f546111549190612dd5565b34146111a25760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e742066756e647320746f206d696e7421000000000060448201526064016109b5565b610b593382611e3f565b6001600160a01b0382163314156111d65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461126c5760405162461bcd60e51b81526004016109b590612cfe565b600081116112db5760405162461bcd60e51b815260206004820152603660248201527f4d6178207061737320616e64206c65617468657266616365206d696e7473206d6044820152757573742062652067726561746572207468616e20302160501b60648201526084016109b5565b60135481116113785760405162461bcd60e51b815260206004820152605860248201527f4d6178207061737320616e64206c65617468657266616365206d696e7473206d60448201527f7573742062652067726561746572207468616e207468652063757272656e742060648201527f746f74616c206f66206d696e7473207573696e67206974210000000000000000608482015260a4016109b5565b601255565b611388848484611c2b565b61139484848484611fc4565b6113b1576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606113c282611ba4565b6113df57604051630a14c4b560e41b815260040160405180910390fd5b601780546113ec90612e37565b151590506114095760405180602001604052806000815250610816565b6017611414836120d3565b604051602001611425929190612b5f565b60405160208183030381529060405292915050565b6018546040516bffffffffffffffffffffffff193360601b166020820152839083906000906034016040516020818303038152906040528051906020012090506114ba8383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508892508591506121d09050565b6115245760405162461bcd60e51b815260206004820152603560248201527f41646472657373206e6f7420616c6c6f77656420746f206d696e74206f7220696044820152741b9d985b1a59081c1c9bdbd9881c1c9bdd9a591959605a1b60648201526084016109b5565b600b546001146115765760405162461bcd60e51b815260206004820181905260248201527f57686974656c697374206d696e74696e67206973206e6f74206163746976652160448201526064016109b5565b600087116115c65760405162461bcd60e51b815260206004820181905260248201527f5175616e74697479206d7573742062652067726561746572207468616e20302160448201526064016109b5565b600e54336000908152601460205260409020546115e4908990612da9565b11156116455760405162461bcd60e51b815260206004820152602a60248201527f5175616e74697479206578636565647320796f7572206d61782077686974656c604482015269697374206d696e74732160b01b60648201526084016109b5565b601254600c546116559190612df4565b876116636001546000540390565b61166d9190612da9565b11156116d25760405162461bcd60e51b815260206004820152602e60248201527f5175616e74697479206578636565647320746f74616c206d6178206f6620776860448201526d6974656c697374206d696e74732160901b60648201526084016109b5565b86600f546116e09190612dd5565b341461172e5760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e742066756e647320746f206d696e7421000000000060448201526064016109b5565b336000908152601460205260408120805489929061174d908490612da9565b9091555061175d90503388611e3f565b50505050505050565b6008546001600160a01b031633146117905760405162461bcd60e51b81526004016109b590612cfe565b60038111156117f25760405162461bcd60e51b815260206004820152602860248201527f43757272656e74206d696e74696e67206d757374206265206265747765656e206044820152673020616e6420332160c01b60648201526084016109b5565b600b55565b600b5415806118085750600b546001145b806118155750600b546002145b6118615760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e67206973206e6f74206f70656e2079657400000000000000000060448201526064016109b5565b60125460135411156118855760405162461bcd60e51b81526004016109b590612d33565b6000815183516118959190612da9565b116118e25760405162461bcd60e51b815260206004820181905260248201527f596f75206d7573742073656c656374206174206c65617374206f6e65204e465460448201526064016109b5565b601254815183516013546118f69190612da9565b6119009190612da9565b111561191e5760405162461bcd60e51b81526004016109b590612d33565b8151600a546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561196357600080fd5b505afa158015611977573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061199b9190612a80565b10156119e95760405162461bcd60e51b815260206004820152601a60248201527f596f7520646f206e6f74206f776e20656e6f756768204e46547300000000000060448201526064016109b5565b80516009546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015611a2e57600080fd5b505afa158015611a42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a669190612a80565b1015611ab45760405162461bcd60e51b815260206004820152601a60248201527f596f7520646f206e6f74206f776e20656e6f756768204e46547300000000000060448201526064016109b5565b611abd826121e6565b611ac681612335565b610f8d3382518451611ad89190612da9565b611e3f565b6008546001600160a01b03163314611b075760405162461bcd60e51b81526004016109b590612cfe565b6001600160a01b038116611b6c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109b5565b610b5981611f72565b6008546001600160a01b03163314611b9f5760405162461bcd60e51b81526004016109b590612cfe565b601855565b6000805482108015610816575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611c3682611e59565b80519091506000906001600160a01b0316336001600160a01b03161480611c6457508151611c649033610730565b80611c7f575033611c74846108ae565b6001600160a01b0316145b905080611c9f57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611cd45760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611cfb57604051633a954ecd60e21b815260040160405180910390fd5b611d0b6000848460000151611bcf565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611df557600054811015611df557825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610f8d828260405180602001604052806000815250612484565b6040805160608101825260008082526020820181905291810182905290548290811015611f5957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611f575780516001600160a01b031615611eee579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611f52579392505050565b611eee565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156120c757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612008903390899088908890600401612c1a565b602060405180830381600087803b15801561202257600080fd5b505af1925050508015612052575060408051601f3d908101601f1916820190925261204f91810190612a1b565b60015b6120ad573d808015612080576040519150601f19603f3d011682016040523d82523d6000602084013e612085565b606091505b5080516120a5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120cb565b5060015b949350505050565b6060816120f75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612121578061210b81612e72565b915061211a9050600a83612dc1565b91506120fb565b6000816001600160401b0381111561213b5761213b612ee3565b6040519080825280601f01601f191660200182016040528015612165576020820181803683370190505b5090505b84156120cb5761217a600183612df4565b9150612187600a86612e8d565b612192906030612da9565b60f81b8183815181106121a7576121a7612ecd565b60200101906001600160f81b031916908160001a9053506121c9600a86612dc1565b9450612169565b6000826121dd8584612491565b14949350505050565b60008151905080601360008282546121fe9190612da9565b90915550600090505b8181101561097b57600083828151811061222357612223612ecd565b6020908102919091010151600a546040516331a9108f60e11b8152600481018390529192506000916001600160a01b0390911690636352211e9060240160206040518083038186803b15801561227857600080fd5b505afa15801561228c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b0919061280d565b90506001600160a01b03811633146122da5760405162461bcd60e51b81526004016109b590612c6a565b60008281526016602052604090205460ff16156123095760405162461bcd60e51b81526004016109b590612cab565b506000908152601660205260409020805460ff191660011790558061232d81612e72565b915050612207565b805160005b8181101561246857600083828151811061235657612356612ecd565b60209081029190910101516009546040516331a9108f60e11b8152600481018390529192506000916001600160a01b0390911690636352211e9060240160206040518083038186803b1580156123ab57600080fd5b505afa1580156123bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123e3919061280d565b90506001600160a01b038116331461240d5760405162461bcd60e51b81526004016109b590612c6a565b60008281526015602052604090205460ff161561243c5760405162461bcd60e51b81526004016109b590612cab565b506000908152601560205260409020805460ff191660011790558061246081612e72565b91505061233a565b50806013600082825461247b9190612da9565b90915550505050565b61097b83838360016124de565b600081815b84518110156124d6576124c2828683815181106124b5576124b5612ecd565b6020026020010151612649565b9150806124ce81612e72565b915050612496565b509392505050565b6000546001600160a01b03851661250757604051622e076360e81b815260040160405180910390fd5b836125255760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156126405760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561261657506126146000888488611fc4565b155b15612634576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016125bf565b50600055611e38565b6000818310612665576000828152602084905260409020612674565b60008381526020839052604090205b9392505050565b82805461268790612e37565b90600052602060002090601f0160209004810192826126a957600085556126ef565b82601f106126c257805160ff19168380011785556126ef565b828001600101855582156126ef579182015b828111156126ef5782518255916020019190600101906126d4565b506126fb9291506126ff565b5090565b5b808211156126fb5760008155600101612700565b60006001600160401b0383111561272d5761272d612ee3565b612740601f8401601f1916602001612d79565b905082815283838301111561275457600080fd5b828260208301376000602084830101529392505050565b600082601f83011261277c57600080fd5b813560206001600160401b0382111561279757612797612ee3565b8160051b6127a6828201612d79565b8381528281019086840183880185018910156127c157600080fd5b600093505b858410156127e45780358352600193909301929184019184016127c6565b50979650505050505050565b60006020828403121561280257600080fd5b813561267481612ef9565b60006020828403121561281f57600080fd5b815161267481612ef9565b6000806040838503121561283d57600080fd5b823561284881612ef9565b9150602083013561285881612ef9565b809150509250929050565b60008060006060848603121561287857600080fd5b833561288381612ef9565b9250602084013561289381612ef9565b929592945050506040919091013590565b600080600080608085870312156128ba57600080fd5b84356128c581612ef9565b935060208501356128d581612ef9565b92506040850135915060608501356001600160401b038111156128f757600080fd5b8501601f8101871361290857600080fd5b61291787823560208401612714565b91505092959194509250565b6000806040838503121561293657600080fd5b823561294181612ef9565b91506020830135801515811461285857600080fd5b6000806040838503121561296957600080fd5b823561297481612ef9565b946020939093013593505050565b6000806040838503121561299557600080fd5b82356001600160401b03808211156129ac57600080fd5b6129b88683870161276b565b935060208501359150808211156129ce57600080fd5b506129db8582860161276b565b9150509250929050565b6000602082840312156129f757600080fd5b5035919050565b600060208284031215612a1057600080fd5b813561267481612f0e565b600060208284031215612a2d57600080fd5b815161267481612f0e565b600060208284031215612a4a57600080fd5b81356001600160401b03811115612a6057600080fd5b8201601f81018413612a7157600080fd5b6120cb84823560208401612714565b600060208284031215612a9257600080fd5b5051919050565b600080600060408486031215612aae57600080fd5b8335925060208401356001600160401b0380821115612acc57600080fd5b818601915086601f830112612ae057600080fd5b813581811115612aef57600080fd5b8760208260051b8501011115612b0457600080fd5b6020830194508093505050509250925092565b60008151808452612b2f816020860160208601612e0b565b601f01601f19169290920160200192915050565b60008151612b55818560208601612e0b565b9290920192915050565b600080845481600182811c915080831680612b7b57607f831692505b6020808410821415612b9b57634e487b7160e01b86526022600452602486fd5b818015612baf5760018114612bc057612bed565b60ff19861689528489019650612bed565b60008b81526020902060005b86811015612be55781548b820152908501908301612bcc565b505084890196505b505050505050612c11612c008286612b43565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c4d90830184612b17565b9695505050505050565b6020815260006126746020830184612b17565b60208082526021908201527f596f752063616e206f6e6c792073656c65637420796f7572206f776e204e46546040820152607360f81b606082015260800190565b60208082526033908201527f596f752063616e206f6e6c792073656c656374204e46547320746861742068616040820152721d99481b9bdd081899595b8818db185a5b5959606a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f4d6178207061737320616e64206c65617468657266616365206d696e74732072604082015265195858da195960d21b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612da157612da1612ee3565b604052919050565b60008219821115612dbc57612dbc612ea1565b500190565b600082612dd057612dd0612eb7565b500490565b6000816000190483118215151615612def57612def612ea1565b500290565b600082821015612e0657612e06612ea1565b500390565b60005b83811015612e26578181015183820152602001612e0e565b838111156113b15750506000910152565b600181811c90821680612e4b57607f821691505b60208210811415612e6c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e8657612e86612ea1565b5060010190565b600082612e9c57612e9c612eb7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610b5957600080fd5b6001600160e01b031981168114610b5957600080fdfea2646970667358221220fdfd9e6568f5905ca5c7a2f2e8bcae90f0ead905eb2618547ab828f0e1b6f85e64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001401711a0010db64d6b1c0d8fbc22c7472a23db41038117b59a1c6df3728881bd6b000000000000000000000000793cb4217410e394e9a0215a6fdd2edbac18ca6000000000000000000000000002eac394763be809efdc3ec86cb89b8967c50d890000000000000000000000000000000000000000000000000000000000000007444558424f54530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034458420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f63646e2e646578626f74732e696f2f6a736f6e2f00000000

-----Decoded View---------------
Arg [0] : _name (string): DEXBOTS
Arg [1] : _symbol (string): DXB
Arg [2] : _uriPrefix (string): https://cdn.dexbots.io/json/
Arg [3] : _whitelistRoot (bytes32): 0x1711a0010db64d6b1c0d8fbc22c7472a23db41038117b59a1c6df3728881bd6b
Arg [4] : _leatherfaceAddress (address): 0x793cb4217410e394E9a0215A6fDD2EdBAC18ca60
Arg [5] : _mintPassAddress (address): 0x02eac394763be809efdc3eC86Cb89b8967c50d89

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 1711a0010db64d6b1c0d8fbc22c7472a23db41038117b59a1c6df3728881bd6b
Arg [4] : 000000000000000000000000793cb4217410e394e9a0215a6fdd2edbac18ca60
Arg [5] : 00000000000000000000000002eac394763be809efdc3ec86cb89b8967c50d89
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 444558424f545300000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 4458420000000000000000000000000000000000000000000000000000000000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [11] : 68747470733a2f2f63646e2e646578626f74732e696f2f6a736f6e2f00000000


Deployed Bytecode Sourcemap

55705:9780:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33929:377;;;;;;;;;;-1:-1:-1;33929:377:0;;;;;:::i;:::-;;:::i;:::-;;;10047:14:1;;10040:22;10022:41;;10010:2;9995:18;33929:377:0;;;;;;;;37567:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39279:263::-;;;;;;;;;;-1:-1:-1;39279:263:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9345:32:1;;;9327:51;;9315:2;9300:18;39279:263:0;9181:203:1;38814:389:0;;;;;;;;;;-1:-1:-1;38814:389:0;;;;;:::i;:::-;;:::i;:::-;;33568:279;;;;;;;;;;-1:-1:-1;33812:12:0;;33612:7;33796:13;:28;33568:279;;;10220:25:1;;;10208:2;10193:18;33568:279:0;10074:177:1;56539:32:0;;;;;;;;;;;;;;;;56440:43;;;;;;;;;;;;;;;;40330:182;;;;;;;;;;-1:-1:-1;40330:182:0;;;;;:::i;:::-;;:::i;64200:565::-;;;;;;;;;;-1:-1:-1;64200:565:0;;;;;:::i;:::-;;:::i;56979:28::-;;;;;;;;;;;;;;;;65321:159;;;;;;;;;;;;;:::i;40593:197::-;;;;;;;;;;-1:-1:-1;40593:197:0;;;;;:::i;:::-;;:::i;56810:49::-;;;;;;;;;;-1:-1:-1;56810:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;56868:42;;;;;;;;;;-1:-1:-1;56868:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;57832:198;;;;;;;;;;-1:-1:-1;57832:198:0;;;;;:::i;:::-;;:::i;56923:23::-;;;;;;;;;;;;;:::i;37362:128::-;;;;;;;;;;-1:-1:-1;37362:128:0;;;;;:::i;:::-;;:::i;58042:313::-;;;;;;;;;;-1:-1:-1;58042:313:0;;;;;:::i;:::-;;:::i;57499:321::-;;;;;;;;;;-1:-1:-1;57499:321:0;;;;;:::i;:::-;;:::i;34380:212::-;;;;;;;;;;-1:-1:-1;34380:212:0;;;;;:::i;:::-;;:::i;54424:103::-;;;;;;;;;;;;;:::i;59462:110::-;;;;;;;;;;-1:-1:-1;59462:110:0;;;;;:::i;:::-;;:::i;53773:87::-;;;;;;;;;;-1:-1:-1;53846:6:0;;-1:-1:-1;;;;;53846:6:0;53773:87;;59287:163;;;;;;;;;;-1:-1:-1;59287:163:0;;;;;:::i;:::-;;:::i;37750:108::-;;;;;;;;;;;;;:::i;56751:50::-;;;;;;;;;;-1:-1:-1;56751:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;56682:56;;;;;;;;;;;;;;;;56492:34;;;;;;;;;;;;;;;;64777:532;;;;;;:::i;:::-;;:::i;39624:318::-;;;;;;;;;;-1:-1:-1;39624:318:0;;;;;:::i;:::-;;:::i;58656:619::-;;;;;;;;;;-1:-1:-1;58656:619:0;;;;;:::i;:::-;;:::i;40871:362::-;;;;;;;;;;-1:-1:-1;40871:362:0;;;;;:::i;:::-;;:::i;59584:569::-;;;;;;;;;;-1:-1:-1;59584:569:0;;;;;:::i;:::-;;:::i;56580:27::-;;;;;;;;;;;;;;;;63262:907;;;;;;:::i;:::-;;:::i;56360:31::-;;;;;;;;;;;;;;;;58367:277;;;;;;;;;;-1:-1:-1;58367:277:0;;;;;:::i;:::-;;:::i;56400:31::-;;;;;;;;;;;;;;;;61812:1413;;;;;;;;;;-1:-1:-1;61812:1413:0;;;;;:::i;:::-;;:::i;40023:230::-;;;;;;;;;;-1:-1:-1;40023:230:0;;;;;:::i;:::-;-1:-1:-1;;;;;40208:25:0;;;40175:4;40208:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40023:230;56620:53;;;;;;;;;;;;;;;;56314:33;;;;;;;;;;;;;;;;54682:201;;;;;;;;;;-1:-1:-1;54682:201:0;;;;;:::i;:::-;;:::i;57020:123::-;;;;;;;;;;-1:-1:-1;57020:123:0;;;;;:::i;:::-;;:::i;33929:377::-;34086:4;-1:-1:-1;;;;;;34134:40:0;;-1:-1:-1;;;34134:40:0;;:107;;-1:-1:-1;;;;;;;34193:48:0;;-1:-1:-1;;;34193:48:0;34134:107;:162;;;-1:-1:-1;;;;;;;;;;11425:40:0;;;34260:36;34112:184;33929:377;-1:-1:-1;;33929:377:0:o;37567:104::-;37621:13;37656:5;37649:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37567:104;:::o;39279:263::-;39391:7;39425:16;39433:7;39425;:16::i;:::-;39420:64;;39450:34;;-1:-1:-1;;;39450:34:0;;;;;;;;;;;39420:64;-1:-1:-1;39508:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39508:24:0;;39279:263::o;38814:389::-;38889:13;38905:24;38921:7;38905:15;:24::i;:::-;38889:40;;38952:5;-1:-1:-1;;;;;38946:11:0;:2;-1:-1:-1;;;;;38946:11:0;;38942:48;;;38966:24;;-1:-1:-1;;;38966:24:0;;;;;;;;;;;38942:48;29843:10;-1:-1:-1;;;;;39011:21:0;;;;;;:63;;-1:-1:-1;39037:37:0;39054:5;29843:10;40023:230;:::i;39037:37::-;39036:38;39011:63;39007:142;;;39100:35;;-1:-1:-1;;;39100:35:0;;;;;;;;;;;39007:142;39165:28;39174:2;39178:7;39187:5;39165:8;:28::i;:::-;38876:327;38814:389;;:::o;40330:182::-;40474:28;40484:4;40490:2;40494:7;40474:9;:28::i;64200:565::-;53846:6;;-1:-1:-1;;;;;53846:6:0;29843:10;53993:23;53985:68;;;;-1:-1:-1;;;53985:68:0;;;;;;;:::i;:::-;;;;;;;;;64274:14:::1;;64292:1;64274:19;64266:58;;;::::0;-1:-1:-1;;;64266:58:0;;13177:2:1;64266:58:0::1;::::0;::::1;13159:21:1::0;13216:2;13196:18;;;13189:30;13255:28;13235:18;;;13228:56;13301:18;;64266:58:0::1;12975:350:1::0;64266:58:0::1;64357:1;64345:9;:13;64337:58;;;::::0;-1:-1:-1;;;64337:58:0;;16197:2:1;64337:58:0::1;::::0;::::1;16179:21:1::0;;;16216:18;;;16209:30;16275:34;16255:18;;;16248:62;16327:18;;64337:58:0::1;15995:356:1::0;64337:58:0::1;64461:9;;64448;64432:13;33812:12:::0;;33612:7;33796:13;:28;;33568:279;64432:13:::1;:25;;;;:::i;:::-;:38;;64408:122;;;::::0;-1:-1:-1;;;64408:122:0;;16558:2:1;64408:122:0::1;::::0;::::1;16540:21:1::0;16597:2;16577:18;;;16570:30;16636;16616:18;;;16609:58;16684:18;;64408:122:0::1;16356:352:1::0;64408:122:0::1;64591:11;;64578:9;64567:8;;:20;;;;:::i;:::-;:35;;64543:129;;;::::0;-1:-1:-1;;;64543:129:0;;12770:2:1;64543:129:0::1;::::0;::::1;12752:21:1::0;12809:2;12789:18;;;12782:30;12848:34;12828:18;;;12821:62;-1:-1:-1;;;12899:18:1;;;12892:36;12945:19;;64543:129:0::1;12568:402:1::0;64543:129:0::1;64701:9;64689:8;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;64723:32:0::1;::::0;-1:-1:-1;64733:10:0::1;64745:9:::0;64723::::1;:32::i;:::-;64200:565:::0;:::o;65321:159::-;53846:6;;-1:-1:-1;;;;;53846:6:0;29843:10;53993:23;53985:68;;;;-1:-1:-1;;;53985:68:0;;;;;;;:::i;:::-;65374:7:::1;65395;53846:6:::0;;-1:-1:-1;;;;;53846:6:0;;53773:87;65395:7:::1;-1:-1:-1::0;;;;;65387:21:0::1;65416;65387:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65373:69;;;65467:2;65459:11;;;::::0;::::1;40593:197:::0;40741:39;40758:4;40764:2;40768:7;40741:39;;;;;;;;;;;;:16;:39::i;57832:198::-;53846:6;;-1:-1:-1;;;;;53846:6:0;29843:10;53993:23;53985:68;;;;-1:-1:-1;;;53985:68:0;;;;;;;:::i;:::-;57934:1:::1;57918:13;:17;57910:69;;;::::0;-1:-1:-1;;;57910:69:0;;14676:2:1;57910:69:0::1;::::0;::::1;14658:21:1::0;14715:2;14695:18;;;14688:30;14754:34;14734:18;;;14727:62;-1:-1:-1;;;14805:18:1;;;14798:37;14852:19;;57910:69:0::1;14474:403:1::0;57910:69:0::1;57992:12;:28:::0;57832:198::o;56923:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37362:128::-;37426:7;37455:20;37467:7;37455:11;:20::i;:::-;:25;;37362:128;-1:-1:-1;;37362:128:0:o;58042:313::-;53846:6;;-1:-1:-1;;;;;53846:6:0;29843:10;53993:23;53985:68;;;;-1:-1:-1;;;53985:68:0;;;;;;;:::i;:::-;58211:1:::1;58190:18;:22;58166:121;;;::::0;-1:-1:-1;;;58166:121:0;;18933:2:1;58166:121:0::1;::::0;::::1;18915:21:1::0;18972:2;18952:18;;;18945:30;19011:34;18991:18;;;18984:62;-1:-1:-1;;;19062:18:1;;;19055:41;19113:19;;58166:121:0::1;18731:407:1::0;58166:121:0::1;58300:24;:45:::0;58042:313::o;57499:321::-;53846:6;;-1:-1:-1;;;;;53846:6:0;29843:10;53993:23;53985:68;;;;-1:-1:-1;;;53985:68:0;;;;;;;:::i;:::-;57592:1:::1;57579:10;:14;57571:61;;;::::0;-1:-1:-1;;;57571:61:0;;11870:2:1;57571:61:0::1;::::0;::::1;11852:21:1::0;11909:2;11889:18;;;11882:30;11948:34;11928:18;;;11921:62;-1:-1:-1;;;11999:18:1;;;11992:32;12041:19;;57571:61:0::1;11668:398:1::0;57571:61:0::1;57682:9;;57669:10;:22;57645:130;;;::::0;-1:-1:-1;;;57645:130:0;;17696:2:1;57645:130:0::1;::::0;::::1;17678:21:1::0;17735:2;17715:18;;;17708:30;17774:34;17754:18;;;17747:62;-1:-1:-1;;;17825:18:1;;;17818:50;17885:19;;57645:130:0::1;17494:416:1::0;57645:130:0::1;57788:9;:22:::0;57499:321::o;34380:212::-;34444:7;-1:-1:-1;;;;;34470:19:0;;34466:60;;34498:28;;-1:-1:-1;;;34498:28:0;;;;;;;;;;;34466:60;-1:-1:-1;;;;;;34554:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;34554:27:0;;34380:212::o;54424:103::-;53846:6;;-1:-1:-1;;;;;53846:6:0;29843:10;53993:23;53985:68;;;;-1:-1:-1;;;53985:68:0;;;;;;;:::i;:::-;54489:30:::1;54516:1;54489:18;:30::i;:::-;54424:103::o:0;59462:110::-;53846:6;;-1:-1:-1;;;;;53846:6:0;29843:10;53993:23;53985:68;;;;-1:-1:-1;;;53985:68:0;;;;;;;:::i;:::-;59540:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;59462:110:::0;:::o;59287:163::-;53846:6;;-1:-1:-1;;;;;53846:6:0;29843:10;53993:23;53985:68;;;;-1:-1:-1;;;53985:68:0;;;;;;;:::i;:::-;59368:1:::1;59359:6;:10;59351:52;;;::::0;-1:-1:-1;;;59351:52:0;;11105:2:1;59351:52:0::1;::::0;::::1;11087:21:1::0;11144:2;11124:18;;;11117:30;11183:31;11163:18;;;11156:59;11232:18;;59351:52:0::1;10903:353:1::0;59351:52:0::1;59424:16;:6:::0;59433:7:::1;59424:16;:::i;:::-;59416:5;:24:::0;-1:-1:-1;59287:163:0:o;37750:108::-;37806:13;37841:7;37834:14;;;;;:::i;64777:532::-;64848:14;;64866:1;64848:19;64840:61;;;;-1:-1:-1;;;64840:61:0;;21274:2:1;64840:61:0;;;21256:21:1;21313:2;21293:18;;;21286:30;21352:31;21332:18;;;21325:59;21401:18;;64840:61:0;21072:353:1;64840:61:0;64935:12;;64922:9;:25;;64914:71;;;;-1:-1:-1;;;64914:71:0;;19345:2:1;64914:71:0;;;19327:21:1;19384:2;19364:18;;;19357:30;19423:34;19403:18;;;19396:62;-1:-1:-1;;;19474:18:1;;;19467:31;19515:19;;64914:71:0;19143:397:1;64914:71:0;65083:31;;65071:9;;:43;;;;:::i;:::-;33812:12;;33612:7;33796:13;:28;65022:25;;:9;:25;:::i;:::-;:93;;64998:169;;;;-1:-1:-1;;;64998:169:0;;19747:2:1;64998:169:0;;;19729:21:1;19786:2;19766:18;;;19759:30;-1:-1:-1;;;19805:18:1;;;19798:50;19865:18;;64998:169:0;19545:344:1;64998:169:0;65209:9;65201:5;;:17;;;;:::i;:::-;65188:9;:30;65180:70;;;;-1:-1:-1;;;65180:70:0;;15084:2:1;65180:70:0;;;15066:21:1;15123:2;15103:18;;;15096:30;15162:29;15142:18;;;15135:57;15209:18;;65180:70:0;14882:351:1;65180:70:0;65267:32;65277:10;65289:9;65267;:32::i;39624:318::-;-1:-1:-1;;;;;39746:24:0;;29843:10;39746:24;39742:54;;;39779:17;;-1:-1:-1;;;39779:17:0;;;;;;;;;;;39742:54;29843:10;39813:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39813:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39813:53:0;;;;;;;;;;39884:48;;10022:41:1;;;39813:42:0;;29843:10;39884:48;;9995:18:1;39884:48:0;;;;;;;39624:318;;:::o;58656:619::-;53846:6;;-1:-1:-1;;;;;53846:6:0;29843:10;53993:23;53985:68;;;;-1:-1:-1;;;53985:68:0;;;;;;;:::i;:::-;58851:1:::1;58816:32;:36;58792:146;;;::::0;-1:-1:-1;;;58792:146:0;;10682:2:1;58792:146:0::1;::::0;::::1;10664:21:1::0;10721:2;10701:18;;;10694:30;10760:34;10740:18;;;10733:62;-1:-1:-1;;;10811:18:1;;;10804:52;10873:19;;58792:146:0::1;10480:418:1::0;58792:146:0::1;59029:37;;58975:32;:91;58951:235;;;::::0;-1:-1:-1;;;58951:235:0;;12273:2:1;58951:235:0::1;::::0;::::1;12255:21:1::0;12312:2;12292:18;;;12285:30;12351:34;12331:18;;;12324:62;12422:34;12402:18;;;12395:62;12494:26;12473:19;;;12466:55;12538:19;;58951:235:0::1;12071:492:1::0;58951:235:0::1;59199:31;:66:::0;58656:619::o;40871:362::-;41050:28;41060:4;41066:2;41070:7;41050:9;:28::i;:::-;41096:48;41119:4;41125:2;41129:7;41138:5;41096:22;:48::i;:::-;41091:133;;41170:40;;-1:-1:-1;;;41170:40:0;;;;;;;;;;;41091:133;40871:362;;;;:::o;59584:569::-;59713:13;59753:17;59761:8;59753:7;:17::i;:::-;59748:60;;59779:29;;-1:-1:-1;;;59779:29:0;;;;;;;;;;;59748:60;59853:9;59847:23;;;;;:::i;:::-;:28;;;-1:-1:-1;59847:296:0;;;;;;;;;;;;;;;;;59973:9;60011:26;60028:8;60011:16;:26::i;:::-;59928:170;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59825:318;59584:569;-1:-1:-1;;59584:569:0:o;63262:907::-;63396:13;;57260:28;;-1:-1:-1;;57277:10:0;7580:2:1;7576:15;7572:53;57260:28:0;;;7560:66:1;63411:12:0;;;;57235;;7642::1;;57260:28:0;;;;;;;;;;;;57250:39;;;;;;57235:54;;57330:44;57349:12;;57330:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57363:4:0;;-1:-1:-1;57369:4:0;;-1:-1:-1;57330:18:0;;-1:-1:-1;57330:44:0:i;:::-;57306:153;;;;-1:-1:-1;;;57306:153:0;;13893:2:1;57306:153:0;;;13875:21:1;13932:2;13912:18;;;13905:30;13971:34;13951:18;;;13944:62;-1:-1:-1;;;14022:18:1;;;14015:51;14083:19;;57306:153:0;13691:417:1;57306:153:0;63453:14:::1;;63471:1;63453:19;63445:64;;;::::0;-1:-1:-1;;;63445:64:0;;13532:2:1;63445:64:0::1;::::0;::::1;13514:21:1::0;;;13551:18;;;13544:30;13610:34;13590:18;;;13583:62;13662:18;;63445:64:0::1;13330:356:1::0;63445:64:0::1;63542:1;63530:9;:13;63522:58;;;::::0;-1:-1:-1;;;63522:58:0;;16197:2:1;63522:58:0::1;::::0;::::1;16179:21:1::0;;;16216:18;;;16209:30;16275:34;16255:18;;;16248:62;16327:18;;63522:58:0::1;15995:356:1::0;63522:58:0::1;63660:24;::::0;63633:10:::1;63617:27;::::0;;;:15:::1;:27;::::0;;;;;:39:::1;::::0;63647:9;;63617:39:::1;:::i;:::-;:67;;63593:165;;;::::0;-1:-1:-1;;;63593:165:0;;20511:2:1;63593:165:0::1;::::0;::::1;20493:21:1::0;20550:2;20530:18;;;20523:30;20589:34;20569:18;;;20562:62;-1:-1:-1;;;20640:18:1;;;20633:40;20690:19;;63593:165:0::1;20309:406:1::0;63593:165:0::1;63856:31;;63844:9;;:43;;;;:::i;:::-;63811:9;63795:13;33812:12:::0;;33612:7;33796:13;:28;;33568:279;63795:13:::1;:25;;;;:::i;:::-;:93;;63771:195;;;::::0;-1:-1:-1;;;63771:195:0;;20096:2:1;63771:195:0::1;::::0;::::1;20078:21:1::0;20135:2;20115:18;;;20108:30;20174:34;20154:18;;;20147:62;-1:-1:-1;;;20225:18:1;;;20218:44;20279:19;;63771:195:0::1;19894:410:1::0;63771:195:0::1;64012:9;64004:5;;:17;;;;:::i;:::-;63991:9;:30;63983:70;;;::::0;-1:-1:-1;;;63983:70:0;;15084:2:1;63983:70:0::1;::::0;::::1;15066:21:1::0;15123:2;15103:18;;;15096:30;15162:29;15142:18;;;15135:57;15209:18;;63983:70:0::1;14882:351:1::0;63983:70:0::1;64086:10;64070:27;::::0;;;:15:::1;:27;::::0;;;;:40;;64101:9;;64070:27;:40:::1;::::0;64101:9;;64070:40:::1;:::i;:::-;::::0;;;-1:-1:-1;64127:32:0::1;::::0;-1:-1:-1;64137:10:0::1;64149:9:::0;64127::::1;:32::i;:::-;57222:265:::0;63262:907;;;;;;:::o;58367:277::-;53846:6;;-1:-1:-1;;;;;53846:6:0;29843:10;53993:23;53985:68;;;;-1:-1:-1;;;53985:68:0;;;;;;;:::i;:::-;58516:1:::1;58497:15;:20;;58449:140;;;::::0;-1:-1:-1;;;58449:140:0;;18524:2:1;58449:140:0::1;::::0;::::1;18506:21:1::0;18563:2;18543:18;;;18536:30;18602:34;18582:18;;;18575:62;-1:-1:-1;;;18653:18:1;;;18646:38;18701:19;;58449:140:0::1;18322:404:1::0;58449:140:0::1;58602:14;:32:::0;58367:277::o;61812:1413::-;61981:14;;:19;;:42;;;62004:14;;62022:1;62004:19;61981:42;:65;;;;62027:14;;62045:1;62027:19;61981:65;61957:144;;;;-1:-1:-1;;;61957:144:0;;20922:2:1;61957:144:0;;;20904:21:1;20961:2;20941:18;;;20934:30;21000:25;20980:18;;;20973:53;21043:18;;61957:144:0;20720:347:1;61957:144:0;62202:31;;62142:37;;:91;;62118:185;;;;-1:-1:-1;;;62118:185:0;;;;;;;:::i;:::-;62384:1;62361:13;:20;62344:7;:14;:37;;;;:::i;:::-;:41;62320:129;;;;-1:-1:-1;;;62320:129:0;;14315:2:1;62320:129:0;;;14297:21:1;;;14334:18;;;14327:30;14393:34;14373:18;;;14366:62;14445:18;;62320:129:0;14113:356:1;62320:129:0;62628:31;;62585:13;:20;62549:7;:14;62490:37;;:73;;;;:::i;:::-;:115;;;;:::i;:::-;:169;;62466:263;;;;-1:-1:-1;;;62466:263:0;;;;;;;:::i;:::-;62812:14;;62770:16;;:38;;-1:-1:-1;;;62770:38:0;;62797:10;62770:38;;;9327:51:1;-1:-1:-1;;;;;62770:16:0;;;;:26;;9300:18:1;;62770:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:56;;62746:138;;;;-1:-1:-1;;;62746:138:0;;15440:2:1;62746:138:0;;;15422:21:1;15479:2;15459:18;;;15452:30;15518:28;15498:18;;;15491:56;15564:18;;62746:138:0;15238:350:1;62746:138:0;62970:20;;62925:19;;:41;;-1:-1:-1;;;62925:41:0;;62955:10;62925:41;;;9327:51:1;-1:-1:-1;;;;;62925:19:0;;;;:29;;9300:18:1;;62925:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:65;;62901:147;;;;-1:-1:-1;;;62901:147:0;;15440:2:1;62901:147:0;;;15422:21:1;15479:2;15459:18;;;15452:30;15518:28;15498:18;;;15491:56;15564:18;;62901:147:0;15238:350:1;62901:147:0;63065:24;63081:7;63065:15;:24::i;:::-;63102:36;63124:13;63102:21;:36::i;:::-;63155:60;63165:10;63194:13;:20;63177:7;:14;:37;;;;:::i;:::-;63155:9;:60::i;54682:201::-;53846:6;;-1:-1:-1;;;;;53846:6:0;29843:10;53993:23;53985:68;;;;-1:-1:-1;;;53985:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54771:22:0;::::1;54763:73;;;::::0;-1:-1:-1;;;54763:73:0;;11463:2:1;54763:73:0::1;::::0;::::1;11445:21:1::0;11502:2;11482:18;;;11475:30;11541:34;11521:18;;;11514:62;-1:-1:-1;;;11592:18:1;;;11585:36;11638:19;;54763:73:0::1;11261:402:1::0;54763:73:0::1;54847:28;54866:8;54847:18;:28::i;57020:123::-:0;53846:6;;-1:-1:-1;;;;;53846:6:0;29843:10;53993:23;53985:68;;;;-1:-1:-1;;;53985:68:0;;;;;;;:::i;:::-;57103:13:::1;:30:::0;57020:123::o;41506:148::-;41563:4;41599:13;;41589:7;:23;:55;;;;-1:-1:-1;;41617:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;41617:27:0;;;;41616:28;;41506:148::o;49208:210::-;49333:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;49333:29:0;-1:-1:-1;;;;;49333:29:0;;;;;;;;;49380:28;;49333:24;;49380:28;;;;;;;49208:210;;;:::o;44446:2230::-;44571:35;44609:20;44621:7;44609:11;:20::i;:::-;44688:18;;44571:58;;-1:-1:-1;44646:22:0;;-1:-1:-1;;;;;44672:34:0;29843:10;-1:-1:-1;;;;;44672:34:0;;:103;;;-1:-1:-1;44742:18:0;;44725:50;;29843:10;40023:230;:::i;44725:50::-;44672:158;;;-1:-1:-1;29843:10:0;44794:20;44806:7;44794:11;:20::i;:::-;-1:-1:-1;;;;;44794:36:0;;44672:158;44646:185;;44853:17;44848:66;;44879:35;;-1:-1:-1;;;44879:35:0;;;;;;;;;;;44848:66;44953:4;-1:-1:-1;;;;;44931:26:0;:13;:18;;;-1:-1:-1;;;;;44931:26:0;;44927:67;;44966:28;;-1:-1:-1;;;44966:28:0;;;;;;;;;;;44927:67;-1:-1:-1;;;;;45011:16:0;;45007:52;;45036:23;;-1:-1:-1;;;45036:23:0;;;;;;;;;;;45007:52;45190:49;45207:1;45211:7;45220:13;:18;;;45190:8;:49::i;:::-;-1:-1:-1;;;;;45547:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;45547:31:0;;;-1:-1:-1;;;;;45547:31:0;;;-1:-1:-1;;45547:31:0;;;;;;;45595:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;45595:29:0;;;;;;;;;;;45645:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;45692:61:0;;;;-1:-1:-1;;;45737:15:0;45692:61;;;;;;;;;;;46035:11;;;46067:24;;;;;:29;46035:11;;46067:29;46063:487;;46298:13;;46284:11;:27;46280:253;;;46370:18;;;46338:24;;;:11;:24;;;;;;;;:50;;46455:56;;;;-1:-1:-1;;;;;46413:98:0;-1:-1:-1;;;46413:98:0;-1:-1:-1;;;;;;46413:98:0;;;-1:-1:-1;;;;;46338:50:0;;;46413:98;;;;;;;46280:253;45520:1043;46603:7;46599:2;-1:-1:-1;;;;;46584:27:0;46593:4;-1:-1:-1;;;;;46584:27:0;;;;;;;;;;;46624:42;44558:2118;;44446:2230;;;:::o;41666:108::-;41737:27;41747:2;41751:8;41737:27;;;;;;;;;;;;:9;:27::i;36119:1171::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;36333:13:0;;36271:7;;36326:20;;36322:895;;;36369:31;36403:17;;;:11;:17;;;;;;;;;36369:51;;;;;;;;;-1:-1:-1;;;;;36369:51:0;;;;-1:-1:-1;;;36369:51:0;;-1:-1:-1;;;;;36369:51:0;;;;;;;;-1:-1:-1;;;36369:51:0;;;;;;;;;;;;;;36441:759;;36493:14;;-1:-1:-1;;;;;36493:28:0;;36489:105;;36559:9;36119:1171;-1:-1:-1;;;36119:1171:0:o;36489:105::-;-1:-1:-1;;;36948:6:0;36995:17;;;;:11;:17;;;;;;;;;36983:29;;;;;;;;;-1:-1:-1;;;;;36983:29:0;;;;;-1:-1:-1;;;36983:29:0;;-1:-1:-1;;;;;36983:29:0;;;;;;;;-1:-1:-1;;;36983:29:0;;;;;;;;;;;;;37045:28;37041:113;;37115:9;36119:1171;-1:-1:-1;;;36119:1171:0:o;37041:113::-;36906:273;;;36348:869;36322:895;37249:31;;-1:-1:-1;;;37249:31:0;;;;;;;;;;;55043:191;55136:6;;;-1:-1:-1;;;;;55153:17:0;;;-1:-1:-1;;;;;;55153:17:0;;;;;;;55186:40;;55136:6;;;55153:17;55136:6;;55186:40;;55117:16;;55186:40;55106:128;55043:191;:::o;50007:979::-;50172:4;-1:-1:-1;;;;;50195:13:0;;1528:19;:23;50191:786;;50252:185;;-1:-1:-1;;;50252:185:0;;-1:-1:-1;;;;;50252:36:0;;;;;:185;;29843:10;;50350:4;;50379:7;;50411:5;;50252:185;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50252:185:0;;;;;;;;-1:-1:-1;;50252:185:0;;;;;;;;;;;;:::i;:::-;;;50229:687;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50632:13:0;;50628:271;;50684:40;;-1:-1:-1;;;50684:40:0;;;;;;;;;;;50628:271;50845:6;50839:13;50830:6;50826:2;50822:15;50815:38;50229:687;-1:-1:-1;;;;;;50505:55:0;-1:-1:-1;;;50505:55:0;;-1:-1:-1;50498:62:0;;50191:786;-1:-1:-1;50959:4:0;50191:786;50007:979;;;;;;:::o;27325:723::-;27381:13;27602:10;27598:53;;-1:-1:-1;;27629:10:0;;;;;;;;;;;;-1:-1:-1;;;27629:10:0;;;;;27325:723::o;27598:53::-;27676:5;27661:12;27717:78;27724:9;;27717:78;;27750:8;;;;:::i;:::-;;-1:-1:-1;27773:10:0;;-1:-1:-1;27781:2:0;27773:10;;:::i;:::-;;;27717:78;;;27805:19;27837:6;-1:-1:-1;;;;;27827:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27827:17:0;;27805:39;;27855:154;27862:10;;27855:154;;27889:11;27899:1;27889:11;;:::i;:::-;;-1:-1:-1;27958:10:0;27966:2;27958:5;:10;:::i;:::-;27945:24;;:2;:24;:::i;:::-;27932:39;;27915:6;27922;27915:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;27915:56:0;;;;;;;;-1:-1:-1;27986:11:0;27995:2;27986:11;;:::i;:::-;;;27855:154;;19454:190;19579:4;19632;19603:25;19616:5;19623:4;19603:12;:25::i;:::-;:33;;19454:190;-1:-1:-1;;;;19454:190:0:o;60165:747::-;60238:17;60258:7;:14;60238:34;;60330:9;60289:37;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;60361:9:0;;-1:-1:-1;60356:547:0;60380:9;60376:1;:13;60356:547;;;60413:19;60435:7;60443:1;60435:10;;;;;;;;:::i;:::-;;;;;;;;;;;60489:16;;:37;;-1:-1:-1;;;60489:37:0;;;;;10220:25:1;;;60435:10:0;;-1:-1:-1;60466:20:0;;-1:-1:-1;;;;;60489:16:0;;;;:24;;10193:18:1;;60489:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60466:60;-1:-1:-1;;;;;;60575:26:0;;60591:10;60575:26;60547:127;;;;-1:-1:-1;;;60547:127:0;;;;;;;:::i;:::-;60724:23;;;;:10;:23;;;;;;;;60723:24;60695:143;;;;-1:-1:-1;;;60695:143:0;;;;;;;:::i;:::-;-1:-1:-1;60859:23:0;;;;:10;:23;;;;;:30;;-1:-1:-1;;60859:30:0;60885:4;60859:30;;;60391:3;;;;:::i;:::-;;;;60356:547;;60924:876;61037:20;;61009:25;61074:642;61098:17;61094:1;:21;61074:642;;;61139:26;61168:13;61182:1;61168:16;;;;;;;;:::i;:::-;;;;;;;;;;;61228:19;;:83;;-1:-1:-1;;;61228:83:0;;;;;10220:25:1;;;61168:16:0;;-1:-1:-1;61205:20:0;;-1:-1:-1;;;;;61228:19:0;;;;:27;;10193:18:1;;61228:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61205:106;-1:-1:-1;;;;;;61360:26:0;;61376:10;61360:26;61332:127;;;;-1:-1:-1;;;61332:127:0;;;;;;;:::i;:::-;61509:37;;;;:17;:37;;;;;;;;61508:38;61480:157;;;;-1:-1:-1;;;61480:157:0;;;;;;;:::i;:::-;-1:-1:-1;61658:37:0;;;;:17;:37;;;;;:44;;-1:-1:-1;;61658:44:0;61698:4;61658:44;;;61117:3;;;;:::i;:::-;;;;61074:642;;;;61773:17;61732:37;;:58;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;60924:876:0:o;42161:175::-;42294:32;42300:2;42304:8;42314:5;42321:4;42294:5;:32::i;20321:296::-;20404:7;20447:4;20404:7;20462:118;20486:5;:12;20482:1;:16;20462:118;;;20535:33;20545:12;20559:5;20565:1;20559:8;;;;;;;;:::i;:::-;;;;;;;20535:9;:33::i;:::-;20520:48;-1:-1:-1;20500:3:0;;;;:::i;:::-;;;;20462:118;;;-1:-1:-1;20597:12:0;20321:296;-1:-1:-1;;;20321:296:0:o;42619:1549::-;42770:20;42793:13;-1:-1:-1;;;;;42823:16:0;;42819:48;;42848:19;;-1:-1:-1;;;42848:19:0;;;;;;;;;;;42819:48;42884:13;42880:44;;42906:18;;-1:-1:-1;;;42906:18:0;;;;;;;;;;;42880:44;-1:-1:-1;;;;;43291:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;43352:49:0;;-1:-1:-1;;;;;43291:44:0;;;;;;;43352:49;;;;-1:-1:-1;;43291:44:0;;;;;;43352:49;;;;;;;;;;;;;;;;43422:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;43474:66:0;;;;-1:-1:-1;;;43524:15:0;43474:66;;;;;;;;;;;43422:25;;43617:407;43637:8;43633:1;:12;43617:407;;;43678:38;;43703:12;;-1:-1:-1;;;;;43678:38:0;;;43695:1;;43678:38;;43695:1;;43678:38;43765:4;:91;;;;;43797:59;43828:1;43832:2;43836:12;43850:5;43797:22;:59::i;:::-;43796:60;43765:91;43737:235;;;43910:40;;-1:-1:-1;;;43910:40:0;;;;;;;;;;;43737:235;43992:14;;;;;43647:3;43617:407;;;-1:-1:-1;44044:13:0;:28;44098:60;40871:362;26528:149;26591:7;26622:1;26618;:5;:51;;26753:13;26847:15;;;26883:4;26876:15;;;26930:4;26914:21;;26618:51;;;26753:13;26847:15;;;26883:4;26876:15;;;26930:4;26914:21;;26626:20;26611:58;26528:149;-1:-1:-1;;;26528:149:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:723::-;479:5;532:3;525:4;517:6;513:17;509:27;499:55;;550:1;547;540:12;499:55;586:6;573:20;612:4;-1:-1:-1;;;;;631:2:1;628:26;625:52;;;657:18;;:::i;:::-;703:2;700:1;696:10;726:28;750:2;746;742:11;726:28;:::i;:::-;788:15;;;819:12;;;;851:15;;;885;;;881:24;;878:33;-1:-1:-1;875:53:1;;;924:1;921;914:12;875:53;946:1;937:10;;956:163;970:2;967:1;964:9;956:163;;;1027:17;;1015:30;;988:1;981:9;;;;;1065:12;;;;1097;;956:163;;;-1:-1:-1;1137:5:1;425:723;-1:-1:-1;;;;;;;425:723:1:o;1153:247::-;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;1320:9;1307:23;1339:31;1364:5;1339:31;:::i;1405:251::-;1475:6;1528:2;1516:9;1507:7;1503:23;1499:32;1496:52;;;1544:1;1541;1534:12;1496:52;1576:9;1570:16;1595:31;1620:5;1595:31;:::i;1661:388::-;1729:6;1737;1790:2;1778:9;1769:7;1765:23;1761:32;1758:52;;;1806:1;1803;1796:12;1758:52;1845:9;1832:23;1864:31;1889:5;1864:31;:::i;:::-;1914:5;-1:-1:-1;1971:2:1;1956:18;;1943:32;1984:33;1943:32;1984:33;:::i;:::-;2036:7;2026:17;;;1661:388;;;;;:::o;2054:456::-;2131:6;2139;2147;2200:2;2188:9;2179:7;2175:23;2171:32;2168:52;;;2216:1;2213;2206:12;2168:52;2255:9;2242:23;2274:31;2299:5;2274:31;:::i;:::-;2324:5;-1:-1:-1;2381:2:1;2366:18;;2353:32;2394:33;2353:32;2394:33;:::i;:::-;2054:456;;2446:7;;-1:-1:-1;;;2500:2:1;2485:18;;;;2472:32;;2054:456::o;2515:794::-;2610:6;2618;2626;2634;2687:3;2675:9;2666:7;2662:23;2658:33;2655:53;;;2704:1;2701;2694:12;2655:53;2743:9;2730:23;2762:31;2787:5;2762:31;:::i;:::-;2812:5;-1:-1:-1;2869:2:1;2854:18;;2841:32;2882:33;2841:32;2882:33;:::i;:::-;2934:7;-1:-1:-1;2988:2:1;2973:18;;2960:32;;-1:-1:-1;3043:2:1;3028:18;;3015:32;-1:-1:-1;;;;;3059:30:1;;3056:50;;;3102:1;3099;3092:12;3056:50;3125:22;;3178:4;3170:13;;3166:27;-1:-1:-1;3156:55:1;;3207:1;3204;3197:12;3156:55;3230:73;3295:7;3290:2;3277:16;3272:2;3268;3264:11;3230:73;:::i;:::-;3220:83;;;2515:794;;;;;;;:::o;3314:416::-;3379:6;3387;3440:2;3428:9;3419:7;3415:23;3411:32;3408:52;;;3456:1;3453;3446:12;3408:52;3495:9;3482:23;3514:31;3539:5;3514:31;:::i;:::-;3564:5;-1:-1:-1;3621:2:1;3606:18;;3593:32;3663:15;;3656:23;3644:36;;3634:64;;3694:1;3691;3684:12;3735:315;3803:6;3811;3864:2;3852:9;3843:7;3839:23;3835:32;3832:52;;;3880:1;3877;3870:12;3832:52;3919:9;3906:23;3938:31;3963:5;3938:31;:::i;:::-;3988:5;4040:2;4025:18;;;;4012:32;;-1:-1:-1;;;3735:315:1:o;4055:595::-;4173:6;4181;4234:2;4222:9;4213:7;4209:23;4205:32;4202:52;;;4250:1;4247;4240:12;4202:52;4290:9;4277:23;-1:-1:-1;;;;;4360:2:1;4352:6;4349:14;4346:34;;;4376:1;4373;4366:12;4346:34;4399:61;4452:7;4443:6;4432:9;4428:22;4399:61;:::i;:::-;4389:71;;4513:2;4502:9;4498:18;4485:32;4469:48;;4542:2;4532:8;4529:16;4526:36;;;4558:1;4555;4548:12;4526:36;;4581:63;4636:7;4625:8;4614:9;4610:24;4581:63;:::i;:::-;4571:73;;;4055:595;;;;;:::o;4655:180::-;4714:6;4767:2;4755:9;4746:7;4742:23;4738:32;4735:52;;;4783:1;4780;4773:12;4735:52;-1:-1:-1;4806:23:1;;4655:180;-1:-1:-1;4655:180:1:o;4840:245::-;4898:6;4951:2;4939:9;4930:7;4926:23;4922:32;4919:52;;;4967:1;4964;4957:12;4919:52;5006:9;4993:23;5025:30;5049:5;5025:30;:::i;5090:249::-;5159:6;5212:2;5200:9;5191:7;5187:23;5183:32;5180:52;;;5228:1;5225;5218:12;5180:52;5260:9;5254:16;5279:30;5303:5;5279:30;:::i;5344:450::-;5413:6;5466:2;5454:9;5445:7;5441:23;5437:32;5434:52;;;5482:1;5479;5472:12;5434:52;5522:9;5509:23;-1:-1:-1;;;;;5547:6:1;5544:30;5541:50;;;5587:1;5584;5577:12;5541:50;5610:22;;5663:4;5655:13;;5651:27;-1:-1:-1;5641:55:1;;5692:1;5689;5682:12;5641:55;5715:73;5780:7;5775:2;5762:16;5757:2;5753;5749:11;5715:73;:::i;5984:184::-;6054:6;6107:2;6095:9;6086:7;6082:23;6078:32;6075:52;;;6123:1;6120;6113:12;6075:52;-1:-1:-1;6146:16:1;;5984:184;-1:-1:-1;5984:184:1:o;6173:683::-;6268:6;6276;6284;6337:2;6325:9;6316:7;6312:23;6308:32;6305:52;;;6353:1;6350;6343:12;6305:52;6389:9;6376:23;6366:33;;6450:2;6439:9;6435:18;6422:32;-1:-1:-1;;;;;6514:2:1;6506:6;6503:14;6500:34;;;6530:1;6527;6520:12;6500:34;6568:6;6557:9;6553:22;6543:32;;6613:7;6606:4;6602:2;6598:13;6594:27;6584:55;;6635:1;6632;6625:12;6584:55;6675:2;6662:16;6701:2;6693:6;6690:14;6687:34;;;6717:1;6714;6707:12;6687:34;6770:7;6765:2;6755:6;6752:1;6748:14;6744:2;6740:23;6736:32;6733:45;6730:65;;;6791:1;6788;6781:12;6730:65;6822:2;6818;6814:11;6804:21;;6844:6;6834:16;;;;;6173:683;;;;;:::o;6861:257::-;6902:3;6940:5;6934:12;6967:6;6962:3;6955:19;6983:63;7039:6;7032:4;7027:3;7023:14;7016:4;7009:5;7005:16;6983:63;:::i;:::-;7100:2;7079:15;-1:-1:-1;;7075:29:1;7066:39;;;;7107:4;7062:50;;6861:257;-1:-1:-1;;6861:257:1:o;7123:185::-;7165:3;7203:5;7197:12;7218:52;7263:6;7258:3;7251:4;7244:5;7240:16;7218:52;:::i;:::-;7286:16;;;;;7123:185;-1:-1:-1;;7123:185:1:o;7665:1301::-;7942:3;7971:1;8004:6;7998:13;8034:3;8056:1;8084:9;8080:2;8076:18;8066:28;;8144:2;8133:9;8129:18;8166;8156:61;;8210:4;8202:6;8198:17;8188:27;;8156:61;8236:2;8284;8276:6;8273:14;8253:18;8250:38;8247:165;;;-1:-1:-1;;;8311:33:1;;8367:4;8364:1;8357:15;8397:4;8318:3;8385:17;8247:165;8428:18;8455:104;;;;8573:1;8568:320;;;;8421:467;;8455:104;-1:-1:-1;;8488:24:1;;8476:37;;8533:16;;;;-1:-1:-1;8455:104:1;;8568:320;21965:1;21958:14;;;22002:4;21989:18;;8663:1;8677:165;8691:6;8688:1;8685:13;8677:165;;;8769:14;;8756:11;;;8749:35;8812:16;;;;8706:10;;8677:165;;;8681:3;;8871:6;8866:3;8862:16;8855:23;;8421:467;;;;;;;8904:56;8929:30;8955:3;8947:6;8929:30;:::i;:::-;-1:-1:-1;;;7373:20:1;;7418:1;7409:11;;7313:113;8904:56;8897:63;7665:1301;-1:-1:-1;;;;;7665:1301:1:o;9389:488::-;-1:-1:-1;;;;;9658:15:1;;;9640:34;;9710:15;;9705:2;9690:18;;9683:43;9757:2;9742:18;;9735:34;;;9805:3;9800:2;9785:18;;9778:31;;;9583:4;;9826:45;;9851:19;;9843:6;9826:45;:::i;:::-;9818:53;9389:488;-1:-1:-1;;;;;;9389:488:1:o;10256:219::-;10405:2;10394:9;10387:21;10368:4;10425:44;10465:2;10454:9;10450:18;10442:6;10425:44;:::i;15593:397::-;15795:2;15777:21;;;15834:2;15814:18;;;15807:30;15873:34;15868:2;15853:18;;15846:62;-1:-1:-1;;;15939:2:1;15924:18;;15917:31;15980:3;15965:19;;15593:397::o;16713:415::-;16915:2;16897:21;;;16954:2;16934:18;;;16927:30;16993:34;16988:2;16973:18;;16966:62;-1:-1:-1;;;17059:2:1;17044:18;;17037:49;17118:3;17103:19;;16713:415::o;17133:356::-;17335:2;17317:21;;;17354:18;;;17347:30;17413:34;17408:2;17393:18;;17386:62;17480:2;17465:18;;17133:356::o;17915:402::-;18117:2;18099:21;;;18156:2;18136:18;;;18129:30;18195:34;18190:2;18175:18;;18168:62;-1:-1:-1;;;18261:2:1;18246:18;;18239:36;18307:3;18292:19;;17915:402::o;21612:275::-;21683:2;21677:9;21748:2;21729:13;;-1:-1:-1;;21725:27:1;21713:40;;-1:-1:-1;;;;;21768:34:1;;21804:22;;;21765:62;21762:88;;;21830:18;;:::i;:::-;21866:2;21859:22;21612:275;;-1:-1:-1;21612:275:1:o;22018:128::-;22058:3;22089:1;22085:6;22082:1;22079:13;22076:39;;;22095:18;;:::i;:::-;-1:-1:-1;22131:9:1;;22018:128::o;22151:120::-;22191:1;22217;22207:35;;22222:18;;:::i;:::-;-1:-1:-1;22256:9:1;;22151:120::o;22276:168::-;22316:7;22382:1;22378;22374:6;22370:14;22367:1;22364:21;22359:1;22352:9;22345:17;22341:45;22338:71;;;22389:18;;:::i;:::-;-1:-1:-1;22429:9:1;;22276:168::o;22449:125::-;22489:4;22517:1;22514;22511:8;22508:34;;;22522:18;;:::i;:::-;-1:-1:-1;22559:9:1;;22449:125::o;22579:258::-;22651:1;22661:113;22675:6;22672:1;22669:13;22661:113;;;22751:11;;;22745:18;22732:11;;;22725:39;22697:2;22690:10;22661:113;;;22792:6;22789:1;22786:13;22783:48;;;-1:-1:-1;;22827:1:1;22809:16;;22802:27;22579:258::o;22842:380::-;22921:1;22917:12;;;;22964;;;22985:61;;23039:4;23031:6;23027:17;23017:27;;22985:61;23092:2;23084:6;23081:14;23061:18;23058:38;23055:161;;;23138:10;23133:3;23129:20;23126:1;23119:31;23173:4;23170:1;23163:15;23201:4;23198:1;23191:15;23055:161;;22842:380;;;:::o;23227:135::-;23266:3;-1:-1:-1;;23287:17:1;;23284:43;;;23307:18;;:::i;:::-;-1:-1:-1;23354:1:1;23343:13;;23227:135::o;23367:112::-;23399:1;23425;23415:35;;23430:18;;:::i;:::-;-1:-1:-1;23464:9:1;;23367:112::o;23484:127::-;23545:10;23540:3;23536:20;23533:1;23526:31;23576:4;23573:1;23566:15;23600:4;23597:1;23590:15;23616:127;23677:10;23672:3;23668:20;23665:1;23658:31;23708:4;23705:1;23698:15;23732:4;23729:1;23722:15;23748:127;23809:10;23804:3;23800:20;23797:1;23790:31;23840:4;23837:1;23830:15;23864:4;23861:1;23854:15;23880:127;23941:10;23936:3;23932:20;23929:1;23922:31;23972:4;23969:1;23962:15;23996:4;23993:1;23986:15;24012:131;-1:-1:-1;;;;;24087:31:1;;24077:42;;24067:70;;24133:1;24130;24123:12;24148:131;-1:-1:-1;;;;;;24222:32:1;;24212:43;;24202:71;;24269:1;24266;24259:12

Swarm Source

ipfs://fdfd9e6568f5905ca5c7a2f2e8bcae90f0ead905eb2618547ab828f0e1b6f85e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

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