ETH Price: $3,418.83 (-2.26%)
Gas: 5 Gwei

Token

 

Overview

Max Total Supply

193

Holders

179

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x6e47cb2299a2dba6825177e9060c7ebd39804548
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:
EtherjumpChristmasItems

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-12-23
*/

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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 simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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 sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _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}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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/[email protected]/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Address.sol


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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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/[email protected]/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/[email protected]/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/[email protected]/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/[email protected]/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/[email protected]/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: @openzeppelin/[email protected]/token/ERC1155/ERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: contracts/Contract.sol


pragma solidity ^0.8.0;


contract EtherjumpChristmasItems is ERC1155, Ownable{

    struct Item {
        uint256 cost;
        uint256 supply;
        uint256 minted;
        bytes32 merkleRoot;

        bool exists;
        bool mintable;
        bool whitelist;

    }

    mapping (address => uint256) public mintedWallets;
    mapping (uint256 => Item) public items;

    string metadataURI;
    string _contractURI;

    constructor() ERC1155("https://api.etherjump.game/builderItemsMetadata/") { // No minting on deployoment
        metadataURI = "https://api.etherjump.game/christmasItemsMetadata/";
        _contractURI = "https://api.etherjump.game/christmasItemsInfo";
    }

    // Getters
    function getItemInfoFromID(uint256 id) external view returns (Item memory) {
        return items[id];
    }
    function getMetadataURI() external view returns (string memory) {
        return metadataURI;
    }
    function getContractURI() external view returns (string memory) {
        return _contractURI;
    }

    function whitelistMint(uint256 id, uint256 amount, bytes32[] calldata proof) external payable{
        require(items[id].whitelist, "Use public mint for this token");
        require(items[id].mintable, "Item is not currently mintable");
        require(MerkleProof.verify(proof, items[id].merkleRoot, keccak256(abi.encodePacked(msg.sender))), "Invalid proof");
        require(items[id].exists, "Token doesn't exist");
        require(mintedWallets[msg.sender] + amount <= 1, "already minted");

        require(msg.value >= (amount * items[id].cost), "Insufficient Funds");
        require(items[id].minted + amount <= items[id].supply, "Not enough supply");
        require (msg.sender == tx.origin, ""); // Not mintable through other contracts

        items[id].minted = items[id].minted + amount;
        mintedWallets[msg.sender] += amount;

        _mint(msg.sender, id, amount, "");
    }


    // Burn method
    // For Emergency use / Contract migration
    function burnTokenInAddress(address wallet, uint256 tokenID, uint256 amount) public onlyOwner {
        _burn(wallet, tokenID, amount);
    }
    function massBurnTokensInAddress(address wallet, uint256[] memory tokenIDs, uint256[] memory amounts) public onlyOwner{
        _burnBatch(wallet, tokenIDs, amounts);
    }

    
    //*********
    // Admin
    //*********
    // Team Mint
    function mintTeam(uint256 id, uint256 amount) external onlyOwner {
        require(items[id].exists, "Token doesn't exist");

        items[id].minted = items[id].minted + amount;
        _mint(msg.sender, id, amount, "");
    }

    // Setters
    function setMetadataURI(string memory uri) public onlyOwner {
        metadataURI = uri;
    }
    function setContractURI(string memory uri) public onlyOwner {
        _contractURI = uri;
    }

    // Token modifiers
    function addWhitelistedToken(uint256 id, uint256 cost, uint256 supply, bool mintable, bytes32 merkleRoot) public onlyOwner{
        items[id] = Item(cost, supply, 0, merkleRoot, true, mintable, true);
    }

    function removeToken(uint256 id) public onlyOwner{
        items[id].mintable = false;
        items[id].exists = false;
        items[id].whitelist = false;
    }

    function alterToken(uint256 id, uint256 cost, uint256 supply, bool mintable, bytes32 merkleRoot, bool whitelist) public onlyOwner{
        items[id].cost = cost;
        items[id].supply = supply;
        items[id].merkleRoot = merkleRoot;
        items[id].mintable = mintable;
        items[id].whitelist = false;
    }

    // function setTokenWhitelist(uint256 id, bytes32 merkleRoot) public onlyOwner {
    //     items[id].merkleRoot = merkleRoot;
    //     items[id].whitelist = true;
    // }
    // function removeWhitelist(uint256 id) public onlyOwner {
    //     items[id].whitelist = false;
    // }

    // function setTokenSupply(uint256 id, uint256 supply) public onlyOwner {
    //     items[id].supply = supply;
    // }
    // function setTokenCost(uint256 id, uint256 cost) public onlyOwner {
    //     items[id].cost = cost;
    // }
    function toggleMint(uint256 id) public onlyOwner{
        items[id].mintable = !items[id].mintable;
    }


    // Withdraw money!!!
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "");

        (bool success, ) = payable(msg.sender).call{value: balance}("");
        require(success, "");
    }



    // Overrides
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return items[id].supply;
    }


    function uri(uint256 id)
    public
    view                
    override
    returns (string memory)
    {
        return
            bytes(metadataURI).length > 0
                ? string(abi.encodePacked(metadataURI, Strings.toString(id)))
                : metadataURI;
    }


    function contractURI() public view returns (string memory) {
        return (
            string(abi.encodePacked(
                _contractURI
            ))
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"bool","name":"mintable","type":"bool"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"addWhitelistedToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"bool","name":"mintable","type":"bool"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"bool","name":"whitelist","type":"bool"}],"name":"alterToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnTokenInAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getItemInfoFromID","outputs":[{"components":[{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"minted","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"bool","name":"exists","type":"bool"},{"internalType":"bool","name":"mintable","type":"bool"},{"internalType":"bool","name":"whitelist","type":"bool"}],"internalType":"struct EtherjumpChristmasItems.Item","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","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":"items","outputs":[{"internalType":"uint256","name":"cost","type":"uint256"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"minted","type":"uint256"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"bool","name":"exists","type":"bool"},{"internalType":"bool","name":"mintable","type":"bool"},{"internalType":"bool","name":"whitelist","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256[]","name":"tokenIDs","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"massBurnTokensInAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"removeToken","outputs":[],"stateMutability":"nonpayable","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setMetadataURI","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":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405180606001604052806030815260200162003008603091396200003781620000ab565b506200004333620000c4565b60405180606001604052806032815260200162002fd6603291398051620000739160069160209091019062000116565b506040518060600160405280602d815260200162003038602d91398051620000a49160079160209091019062000116565b50620001f9565b8051620000c090600290602084019062000116565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012490620001bc565b90600052602060002090601f01602090048101928262000148576000855562000193565b82601f106200016357805160ff191683800117855562000193565b8280016001018555821562000193579182015b828111156200019357825182559160200191906001019062000176565b50620001a1929150620001a5565b5090565b5b80821115620001a15760008155600101620001a6565b600181811c90821680620001d157607f821691505b60208210811415620001f357634e487b7160e01b600052602260045260246000fd5b50919050565b612dcd80620002096000396000f3fe6080604052600436106101c15760003560e01c80638da5cb5b116100f7578063c4be5b5911610095578063eaaed45d11610064578063eaaed45d146106ad578063f242432a146106cd578063f2fde38b146106ed578063fd1123381461070d57600080fd5b8063c4be5b591461061c578063ca4b4a251461062f578063e8a3d4851461064f578063e985e9c51461066457600080fd5b8063ada7c4ed116100d1578063ada7c4ed14610504578063b7fcca0714610531578063bd85b03914610551578063bfb231d21461058157600080fd5b80638da5cb5b1461049c578063938e3d7b146104c4578063a22cb465146104e457600080fd5b80634e1273f411610164578063715018a61161013e578063715018a61461032f578063750521f51461034457806386a92af7146103645780638788014c1461037957600080fd5b80634e1273f4146102c2578063602e7587146102ef57806362118afa1461030f57600080fd5b80632eb2c2d6116101a05780632eb2c2d61461025657806336c5d7241461027857806337929eb4146102985780633ccfd60b146102ad57600080fd5b8062fdd58e146101c657806301ffc9a7146101f95780630e89341c14610229575b600080fd5b3480156101d257600080fd5b506101e66101e1366004612428565b61072d565b6040519081526020015b60405180910390f35b34801561020557600080fd5b50610219610214366004612556565b6107c4565b60405190151581526020016101f0565b34801561023557600080fd5b506102496102443660046125d9565b610816565b6040516101f0919061294c565b34801561026257600080fd5b5061027661027136600461227b565b6108ef565b005b34801561028457600080fd5b506102766102933660046125d9565b610986565b3480156102a457600080fd5b506102496109cd565b3480156102b957600080fd5b50610276610a5f565b3480156102ce57600080fd5b506102e26102dd366004612485565b610b27565b6040516101f0919061290b565b3480156102fb57600080fd5b5061027661030a3660046125d9565b610c51565b34801561031b57600080fd5b5061027661032a366004612697565b610ca7565b34801561033b57600080fd5b50610276610d7a565b34801561035057600080fd5b5061027661035f366004612590565b610db0565b34801561037057600080fd5b50610249610ded565b34801561038557600080fd5b506104406103943660046125d9565b6040805160e081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c081019190915250600090815260056020908152604091829020825160e081018452815481526001820154928101929092526002810154928201929092526003820154606082015260049091015460ff8082161515608084015261010082048116151560a08401526201000090910416151560c082015290565b6040516101f09190600060e0820190508251825260208301516020830152604083015160408301526060830151606083015260808301511515608083015260a0830151151560a083015260c0830151151560c083015292915050565b3480156104a857600080fd5b506003546040516001600160a01b0390911681526020016101f0565b3480156104d057600080fd5b506102766104df366004612590565b610dfc565b3480156104f057600080fd5b506102766104ff3660046123fe565b610e39565b34801561051057600080fd5b506101e661051f36600461222d565b60046020526000908152604090205481565b34801561053d57600080fd5b5061027661054c3660046125f2565b610e44565b34801561055d57600080fd5b506101e661056c3660046125d9565b60009081526005602052604090206001015490565b34801561058d57600080fd5b506105e161059c3660046125d9565b600560205260009081526040902080546001820154600283015460038401546004909401549293919290919060ff808216916101008104821691620100009091041687565b60408051978852602088019690965294860193909352606085019190915215156080840152151560a0830152151560c082015260e0016101f0565b61027661062a366004612614565b610f17565b34801561063b57600080fd5b5061027661064a36600461238a565b6112c3565b34801561065b57600080fd5b506102496112fd565b34801561067057600080fd5b5061021961067f366004612248565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b3480156106b957600080fd5b506102766106c83660046126de565b611325565b3480156106d957600080fd5b506102766106e8366004612325565b611395565b3480156106f957600080fd5b5061027661070836600461222d565b61141c565b34801561071957600080fd5b50610276610728366004612452565b6114b7565b60006001600160a01b03831661079e5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806107f557506001600160e01b031982166303a24d0760e21b145b8061081057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060006006805461082790612bec565b9050116108be576006805461083b90612bec565b80601f016020809104026020016040519081016040528092919081815260200182805461086790612bec565b80156108b45780601f10610889576101008083540402835291602001916108b4565b820191906000526020600020905b81548152906001019060200180831161089757829003601f168201915b5050505050610810565b60066108c9836114ec565b6040516020016108da929190612843565b60405160208183030381529060405292915050565b6001600160a01b03851633148061090b575061090b853361067f565b6109725760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610795565b61097f85858585856115f2565b5050505050565b6003546001600160a01b031633146109b05760405162461bcd60e51b815260040161079590612abd565b6000908152600560205260409020600401805462ffffff19169055565b6060600780546109dc90612bec565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0890612bec565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b5050505050905090565b6003546001600160a01b03163314610a895760405162461bcd60e51b815260040161079590612abd565b4780610ab15760405162461bcd60e51b81526020600482015260006024820152604401610795565b604051600090339083908381818185875af1925050503d8060008114610af3576040519150601f19603f3d011682016040523d82523d6000602084013e610af8565b606091505b5050905080610b235760405162461bcd60e51b81526020600482015260006024820152604401610795565b5050565b60608151835114610b8c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610795565b6000835167ffffffffffffffff811115610ba857610ba8612cc5565b604051908082528060200260200182016040528015610bd1578160200160208202803683370190505b50905060005b8451811015610c4957610c1c858281518110610bf557610bf5612caf565b6020026020010151858381518110610c0f57610c0f612caf565b602002602001015161072d565b828281518110610c2e57610c2e612caf565b6020908102919091010152610c4281612c54565b9050610bd7565b509392505050565b6003546001600160a01b03163314610c7b5760405162461bcd60e51b815260040161079590612abd565b6000908152600560205260409020600401805461ff001981166101009182900460ff1615909102179055565b6003546001600160a01b03163314610cd15760405162461bcd60e51b815260040161079590612abd565b6040805160e081018252948552602080860194855260008683018181526060880194855260016080890181815296151560a08a0190815260c08a018281529a845260059094529390912096518755945191860191909155925160028501555160038401555160049092018054915193511515620100000262ff0000199415156101000261ff00199415159490941661ffff19909316929092179290921792909216919091179055565b6003546001600160a01b03163314610da45760405162461bcd60e51b815260040161079590612abd565b610dae600061178e565b565b6003546001600160a01b03163314610dda5760405162461bcd60e51b815260040161079590612abd565b8051610b23906006906020840190612073565b6060600680546109dc90612bec565b6003546001600160a01b03163314610e265760405162461bcd60e51b815260040161079590612abd565b8051610b23906007906020840190612073565b610b233383836117e0565b6003546001600160a01b03163314610e6e5760405162461bcd60e51b815260040161079590612abd565b60008281526005602052604090206004015460ff16610ec55760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88191bd95cdb89dd08195e1a5cdd606a1b6044820152606401610795565b600082815260056020526040902060020154610ee2908290612b5e565b6005600084815260200190815260200160002060020181905550610b23338383604051806020016040528060008152506118c1565b60008481526005602052604090206004015462010000900460ff16610f7e5760405162461bcd60e51b815260206004820152601e60248201527f557365207075626c6963206d696e7420666f72207468697320746f6b656e00006044820152606401610795565b600084815260056020526040902060040154610100900460ff16610fe45760405162461bcd60e51b815260206004820152601e60248201527f4974656d206973206e6f742063757272656e746c79206d696e7461626c6500006044820152606401610795565b61107082828080602002602001604051908101604052809392919081815260200183836020028082843760009201829052508981526005602090815260409182902060030154915191945061105593503392500160609190911b6bffffffffffffffffffffffff1916815260140190565b604051602081830303815290604052805190602001206119cb565b6110ac5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610795565b60008481526005602052604090206004015460ff166111035760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88191bd95cdb89dd08195e1a5cdd606a1b6044820152606401610795565b33600090815260046020526040902054600190611121908590612b5e565b11156111605760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b6044820152606401610795565b6000848152600560205260409020546111799084612b8a565b3410156111bd5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610795565b600084815260056020526040902060018101546002909101546111e1908590612b5e565b11156112235760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b6044820152606401610795565b33321461124c5760405162461bcd60e51b81526020600482015260006024820152604401610795565b600084815260056020526040902060020154611269908490612b5e565b60008581526005602090815260408083206002019390935533825260049052908120805485929061129b908490612b5e565b925050819055506112bd338585604051806020016040528060008152506118c1565b50505050565b6003546001600160a01b031633146112ed5760405162461bcd60e51b815260040161079590612abd565b6112f88383836119e1565b505050565b606060076040516020016113119190612837565b604051602081830303815290604052905090565b6003546001600160a01b0316331461134f5760405162461bcd60e51b815260040161079590612abd565b5060009485526005602052604090942092835560018301919091556003820192909255600401805462ffff0019166101009215159290920262ff00001916919091179055565b6001600160a01b0385163314806113b157506113b1853361067f565b61140f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610795565b61097f8585858585611b5d565b6003546001600160a01b031633146114465760405162461bcd60e51b815260040161079590612abd565b6001600160a01b0381166114ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610795565b6114b48161178e565b50565b6003546001600160a01b031633146114e15760405162461bcd60e51b815260040161079590612abd565b6112f8838383611c7a565b6060816115105750506040805180820190915260018152600360fc1b602082015290565b8160005b811561153a578061152481612c54565b91506115339050600a83612b76565b9150611514565b60008167ffffffffffffffff81111561155557611555612cc5565b6040519080825280601f01601f19166020018201604052801561157f576020820181803683370190505b5090505b84156115ea57611594600183612ba9565b91506115a1600a86612c6f565b6115ac906030612b5e565b60f81b8183815181106115c1576115c1612caf565b60200101906001600160f81b031916908160001a9053506115e3600a86612b76565b9450611583565b949350505050565b81518351146116135760405162461bcd60e51b815260040161079590612af2565b6001600160a01b0384166116395760405162461bcd60e51b8152600401610795906129eb565b3360005b845181101561172057600085828151811061165a5761165a612caf565b60200260200101519050600085838151811061167857611678612caf565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156116c85760405162461bcd60e51b815260040161079590612a73565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611705908490612b5e565b925050819055505050508061171990612c54565b905061163d565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161177092919061291e565b60405180910390a4611786818787878787611d7c565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118545760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610795565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166119215760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610795565b3361193b8160008761193288611ee7565b61097f88611ee7565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061196b908490612b5e565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461097f81600087878787611f32565b6000826119d88584611ffc565b14949350505050565b6001600160a01b038316611a075760405162461bcd60e51b815260040161079590612a30565b8051825114611a285760405162461bcd60e51b815260040161079590612af2565b604080516020810190915260009081905233905b8351811015611afe576000848281518110611a5957611a59612caf565b602002602001015190506000848381518110611a7757611a77612caf565b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015611ac75760405162461bcd60e51b8152600401610795906129a7565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580611af681612c54565b915050611a3c565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611b4f92919061291e565b60405180910390a450505050565b6001600160a01b038416611b835760405162461bcd60e51b8152600401610795906129eb565b33611b9381878761193288611ee7565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611bd45760405162461bcd60e51b815260040161079590612a73565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611c11908490612b5e565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611c71828888888888611f32565b50505050505050565b6001600160a01b038316611ca05760405162461bcd60e51b815260040161079590612a30565b33611cd081856000611cb187611ee7565b611cba87611ee7565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b038816845290915290205482811015611d115760405162461bcd60e51b8152600401610795906129a7565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6001600160a01b0384163b156117865760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611dc09089908990889088908890600401612868565b602060405180830381600087803b158015611dda57600080fd5b505af1925050508015611e0a575060408051601f3d908101601f19168201909252611e0791810190612573565b60015b611eb757611e16612cdb565b806308c379a01415611e505750611e2b612cf7565b80611e365750611e52565b8060405162461bcd60e51b8152600401610795919061294c565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610795565b6001600160e01b0319811663bc197c8160e01b14611c715760405162461bcd60e51b81526004016107959061295f565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611f2157611f21612caf565b602090810291909101015292915050565b6001600160a01b0384163b156117865760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611f7690899089908890889088906004016128c6565b602060405180830381600087803b158015611f9057600080fd5b505af1925050508015611fc0575060408051601f3d908101601f19168201909252611fbd91810190612573565b60015b611fcc57611e16612cdb565b6001600160e01b0319811663f23a6e6160e01b14611c715760405162461bcd60e51b81526004016107959061295f565b600081815b8451811015610c495761202d8286838151811061202057612020612caf565b6020026020010151612041565b91508061203981612c54565b915050612001565b600081831061205d57600082815260208490526040902061206c565b60008381526020839052604090205b9392505050565b82805461207f90612bec565b90600052602060002090601f0160209004810192826120a157600085556120e7565b82601f106120ba57805160ff19168380011785556120e7565b828001600101855582156120e7579182015b828111156120e75782518255916020019190600101906120cc565b506120f39291506120f7565b5090565b5b808211156120f357600081556001016120f8565b600067ffffffffffffffff83111561212657612126612cc5565b60405161213d601f8501601f191660200182612c27565b80915083815284848401111561215257600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461218157600080fd5b919050565b600082601f83011261219757600080fd5b813560206121a482612b3a565b6040516121b18282612c27565b8381528281019150858301600585901b870184018810156121d157600080fd5b60005b858110156121f0578135845292840192908401906001016121d4565b5090979650505050505050565b8035801515811461218157600080fd5b600082601f83011261221e57600080fd5b61206c8383356020850161210c565b60006020828403121561223f57600080fd5b61206c8261216a565b6000806040838503121561225b57600080fd5b6122648361216a565b91506122726020840161216a565b90509250929050565b600080600080600060a0868803121561229357600080fd5b61229c8661216a565b94506122aa6020870161216a565b9350604086013567ffffffffffffffff808211156122c757600080fd5b6122d389838a01612186565b945060608801359150808211156122e957600080fd5b6122f589838a01612186565b9350608088013591508082111561230b57600080fd5b506123188882890161220d565b9150509295509295909350565b600080600080600060a0868803121561233d57600080fd5b6123468661216a565b94506123546020870161216a565b93506040860135925060608601359150608086013567ffffffffffffffff81111561237e57600080fd5b6123188882890161220d565b60008060006060848603121561239f57600080fd5b6123a88461216a565b9250602084013567ffffffffffffffff808211156123c557600080fd5b6123d187838801612186565b935060408601359150808211156123e757600080fd5b506123f486828701612186565b9150509250925092565b6000806040838503121561241157600080fd5b61241a8361216a565b9150612272602084016121fd565b6000806040838503121561243b57600080fd5b6124448361216a565b946020939093013593505050565b60008060006060848603121561246757600080fd5b6124708461216a565b95602085013595506040909401359392505050565b6000806040838503121561249857600080fd5b823567ffffffffffffffff808211156124b057600080fd5b818501915085601f8301126124c457600080fd5b813560206124d182612b3a565b6040516124de8282612c27565b8381528281019150858301600585901b870184018b10156124fe57600080fd5b600096505b84871015612528576125148161216a565b835260019690960195918301918301612503565b509650508601359250508082111561253f57600080fd5b5061254c85828601612186565b9150509250929050565b60006020828403121561256857600080fd5b813561206c81612d81565b60006020828403121561258557600080fd5b815161206c81612d81565b6000602082840312156125a257600080fd5b813567ffffffffffffffff8111156125b957600080fd5b8201601f810184136125ca57600080fd5b6115ea8482356020840161210c565b6000602082840312156125eb57600080fd5b5035919050565b6000806040838503121561260557600080fd5b50508035926020909101359150565b6000806000806060858703121561262a57600080fd5b8435935060208501359250604085013567ffffffffffffffff8082111561265057600080fd5b818701915087601f83011261266457600080fd5b81358181111561267357600080fd5b8860208260051b850101111561268857600080fd5b95989497505060200194505050565b600080600080600060a086880312156126af57600080fd5b8535945060208601359350604086013592506126cd606087016121fd565b949793965091946080013592915050565b60008060008060008060c087890312156126f757600080fd5b863595506020870135945060408701359350612715606088016121fd565b92506080870135915061272a60a088016121fd565b90509295509295509295565b600081518084526020808501945080840160005b838110156127665781518752958201959082019060010161274a565b509495945050505050565b60008151808452612789816020860160208601612bc0565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806127b757607f831692505b60208084108214156127d957634e487b7160e01b600052602260045260246000fd5b8180156127ed57600181146127fe5761282b565b60ff1986168952848901965061282b565b60008881526020902060005b868110156128235781548b82015290850190830161280a565b505084890196505b50505050505092915050565b600061206c828461279d565b600061284f828561279d565b835161285f818360208801612bc0565b01949350505050565b6001600160a01b0386811682528516602082015260a06040820181905260009061289490830186612736565b82810360608401526128a68186612736565b905082810360808401526128ba8185612771565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061290090830184612771565b979650505050505050565b60208152600061206c6020830184612736565b6040815260006129316040830185612736565b82810360208401526129438185612736565b95945050505050565b60208152600061206c6020830184612771565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b600067ffffffffffffffff821115612b5457612b54612cc5565b5060051b60200190565b60008219821115612b7157612b71612c83565b500190565b600082612b8557612b85612c99565b500490565b6000816000190483118215151615612ba457612ba4612c83565b500290565b600082821015612bbb57612bbb612c83565b500390565b60005b83811015612bdb578181015183820152602001612bc3565b838111156112bd5750506000910152565b600181811c90821680612c0057607f821691505b60208210811415612c2157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715612c4d57612c4d612cc5565b6040525050565b6000600019821415612c6857612c68612c83565b5060010190565b600082612c7e57612c7e612c99565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115612cf45760046000803e5060005160e01c5b90565b600060443d1015612d055790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715612d3557505050505090565b8285019150815181811115612d4d5750505050505090565b843d8701016020828501011115612d675750505050505090565b612d7660208286010187612c27565b509095945050505050565b6001600160e01b0319811681146114b457600080fdfea26469706673582212206bc9defb254029b06c6831f0fa585ead1ef0884a920786b14a28a0d2fb78d8a564736f6c6343000807003368747470733a2f2f6170692e65746865726a756d702e67616d652f6368726973746d61734974656d734d657461646174612f68747470733a2f2f6170692e65746865726a756d702e67616d652f6275696c6465724974656d734d657461646174612f68747470733a2f2f6170692e65746865726a756d702e67616d652f6368726973746d61734974656d73496e666f

Deployed Bytecode

0x6080604052600436106101c15760003560e01c80638da5cb5b116100f7578063c4be5b5911610095578063eaaed45d11610064578063eaaed45d146106ad578063f242432a146106cd578063f2fde38b146106ed578063fd1123381461070d57600080fd5b8063c4be5b591461061c578063ca4b4a251461062f578063e8a3d4851461064f578063e985e9c51461066457600080fd5b8063ada7c4ed116100d1578063ada7c4ed14610504578063b7fcca0714610531578063bd85b03914610551578063bfb231d21461058157600080fd5b80638da5cb5b1461049c578063938e3d7b146104c4578063a22cb465146104e457600080fd5b80634e1273f411610164578063715018a61161013e578063715018a61461032f578063750521f51461034457806386a92af7146103645780638788014c1461037957600080fd5b80634e1273f4146102c2578063602e7587146102ef57806362118afa1461030f57600080fd5b80632eb2c2d6116101a05780632eb2c2d61461025657806336c5d7241461027857806337929eb4146102985780633ccfd60b146102ad57600080fd5b8062fdd58e146101c657806301ffc9a7146101f95780630e89341c14610229575b600080fd5b3480156101d257600080fd5b506101e66101e1366004612428565b61072d565b6040519081526020015b60405180910390f35b34801561020557600080fd5b50610219610214366004612556565b6107c4565b60405190151581526020016101f0565b34801561023557600080fd5b506102496102443660046125d9565b610816565b6040516101f0919061294c565b34801561026257600080fd5b5061027661027136600461227b565b6108ef565b005b34801561028457600080fd5b506102766102933660046125d9565b610986565b3480156102a457600080fd5b506102496109cd565b3480156102b957600080fd5b50610276610a5f565b3480156102ce57600080fd5b506102e26102dd366004612485565b610b27565b6040516101f0919061290b565b3480156102fb57600080fd5b5061027661030a3660046125d9565b610c51565b34801561031b57600080fd5b5061027661032a366004612697565b610ca7565b34801561033b57600080fd5b50610276610d7a565b34801561035057600080fd5b5061027661035f366004612590565b610db0565b34801561037057600080fd5b50610249610ded565b34801561038557600080fd5b506104406103943660046125d9565b6040805160e081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c081019190915250600090815260056020908152604091829020825160e081018452815481526001820154928101929092526002810154928201929092526003820154606082015260049091015460ff8082161515608084015261010082048116151560a08401526201000090910416151560c082015290565b6040516101f09190600060e0820190508251825260208301516020830152604083015160408301526060830151606083015260808301511515608083015260a0830151151560a083015260c0830151151560c083015292915050565b3480156104a857600080fd5b506003546040516001600160a01b0390911681526020016101f0565b3480156104d057600080fd5b506102766104df366004612590565b610dfc565b3480156104f057600080fd5b506102766104ff3660046123fe565b610e39565b34801561051057600080fd5b506101e661051f36600461222d565b60046020526000908152604090205481565b34801561053d57600080fd5b5061027661054c3660046125f2565b610e44565b34801561055d57600080fd5b506101e661056c3660046125d9565b60009081526005602052604090206001015490565b34801561058d57600080fd5b506105e161059c3660046125d9565b600560205260009081526040902080546001820154600283015460038401546004909401549293919290919060ff808216916101008104821691620100009091041687565b60408051978852602088019690965294860193909352606085019190915215156080840152151560a0830152151560c082015260e0016101f0565b61027661062a366004612614565b610f17565b34801561063b57600080fd5b5061027661064a36600461238a565b6112c3565b34801561065b57600080fd5b506102496112fd565b34801561067057600080fd5b5061021961067f366004612248565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b3480156106b957600080fd5b506102766106c83660046126de565b611325565b3480156106d957600080fd5b506102766106e8366004612325565b611395565b3480156106f957600080fd5b5061027661070836600461222d565b61141c565b34801561071957600080fd5b50610276610728366004612452565b6114b7565b60006001600160a01b03831661079e5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806107f557506001600160e01b031982166303a24d0760e21b145b8061081057506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060006006805461082790612bec565b9050116108be576006805461083b90612bec565b80601f016020809104026020016040519081016040528092919081815260200182805461086790612bec565b80156108b45780601f10610889576101008083540402835291602001916108b4565b820191906000526020600020905b81548152906001019060200180831161089757829003601f168201915b5050505050610810565b60066108c9836114ec565b6040516020016108da929190612843565b60405160208183030381529060405292915050565b6001600160a01b03851633148061090b575061090b853361067f565b6109725760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610795565b61097f85858585856115f2565b5050505050565b6003546001600160a01b031633146109b05760405162461bcd60e51b815260040161079590612abd565b6000908152600560205260409020600401805462ffffff19169055565b6060600780546109dc90612bec565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0890612bec565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b5050505050905090565b6003546001600160a01b03163314610a895760405162461bcd60e51b815260040161079590612abd565b4780610ab15760405162461bcd60e51b81526020600482015260006024820152604401610795565b604051600090339083908381818185875af1925050503d8060008114610af3576040519150601f19603f3d011682016040523d82523d6000602084013e610af8565b606091505b5050905080610b235760405162461bcd60e51b81526020600482015260006024820152604401610795565b5050565b60608151835114610b8c5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610795565b6000835167ffffffffffffffff811115610ba857610ba8612cc5565b604051908082528060200260200182016040528015610bd1578160200160208202803683370190505b50905060005b8451811015610c4957610c1c858281518110610bf557610bf5612caf565b6020026020010151858381518110610c0f57610c0f612caf565b602002602001015161072d565b828281518110610c2e57610c2e612caf565b6020908102919091010152610c4281612c54565b9050610bd7565b509392505050565b6003546001600160a01b03163314610c7b5760405162461bcd60e51b815260040161079590612abd565b6000908152600560205260409020600401805461ff001981166101009182900460ff1615909102179055565b6003546001600160a01b03163314610cd15760405162461bcd60e51b815260040161079590612abd565b6040805160e081018252948552602080860194855260008683018181526060880194855260016080890181815296151560a08a0190815260c08a018281529a845260059094529390912096518755945191860191909155925160028501555160038401555160049092018054915193511515620100000262ff0000199415156101000261ff00199415159490941661ffff19909316929092179290921792909216919091179055565b6003546001600160a01b03163314610da45760405162461bcd60e51b815260040161079590612abd565b610dae600061178e565b565b6003546001600160a01b03163314610dda5760405162461bcd60e51b815260040161079590612abd565b8051610b23906006906020840190612073565b6060600680546109dc90612bec565b6003546001600160a01b03163314610e265760405162461bcd60e51b815260040161079590612abd565b8051610b23906007906020840190612073565b610b233383836117e0565b6003546001600160a01b03163314610e6e5760405162461bcd60e51b815260040161079590612abd565b60008281526005602052604090206004015460ff16610ec55760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88191bd95cdb89dd08195e1a5cdd606a1b6044820152606401610795565b600082815260056020526040902060020154610ee2908290612b5e565b6005600084815260200190815260200160002060020181905550610b23338383604051806020016040528060008152506118c1565b60008481526005602052604090206004015462010000900460ff16610f7e5760405162461bcd60e51b815260206004820152601e60248201527f557365207075626c6963206d696e7420666f72207468697320746f6b656e00006044820152606401610795565b600084815260056020526040902060040154610100900460ff16610fe45760405162461bcd60e51b815260206004820152601e60248201527f4974656d206973206e6f742063757272656e746c79206d696e7461626c6500006044820152606401610795565b61107082828080602002602001604051908101604052809392919081815260200183836020028082843760009201829052508981526005602090815260409182902060030154915191945061105593503392500160609190911b6bffffffffffffffffffffffff1916815260140190565b604051602081830303815290604052805190602001206119cb565b6110ac5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b6044820152606401610795565b60008481526005602052604090206004015460ff166111035760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88191bd95cdb89dd08195e1a5cdd606a1b6044820152606401610795565b33600090815260046020526040902054600190611121908590612b5e565b11156111605760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b6044820152606401610795565b6000848152600560205260409020546111799084612b8a565b3410156111bd5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610795565b600084815260056020526040902060018101546002909101546111e1908590612b5e565b11156112235760405162461bcd60e51b81526020600482015260116024820152704e6f7420656e6f75676820737570706c7960781b6044820152606401610795565b33321461124c5760405162461bcd60e51b81526020600482015260006024820152604401610795565b600084815260056020526040902060020154611269908490612b5e565b60008581526005602090815260408083206002019390935533825260049052908120805485929061129b908490612b5e565b925050819055506112bd338585604051806020016040528060008152506118c1565b50505050565b6003546001600160a01b031633146112ed5760405162461bcd60e51b815260040161079590612abd565b6112f88383836119e1565b505050565b606060076040516020016113119190612837565b604051602081830303815290604052905090565b6003546001600160a01b0316331461134f5760405162461bcd60e51b815260040161079590612abd565b5060009485526005602052604090942092835560018301919091556003820192909255600401805462ffff0019166101009215159290920262ff00001916919091179055565b6001600160a01b0385163314806113b157506113b1853361067f565b61140f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610795565b61097f8585858585611b5d565b6003546001600160a01b031633146114465760405162461bcd60e51b815260040161079590612abd565b6001600160a01b0381166114ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610795565b6114b48161178e565b50565b6003546001600160a01b031633146114e15760405162461bcd60e51b815260040161079590612abd565b6112f8838383611c7a565b6060816115105750506040805180820190915260018152600360fc1b602082015290565b8160005b811561153a578061152481612c54565b91506115339050600a83612b76565b9150611514565b60008167ffffffffffffffff81111561155557611555612cc5565b6040519080825280601f01601f19166020018201604052801561157f576020820181803683370190505b5090505b84156115ea57611594600183612ba9565b91506115a1600a86612c6f565b6115ac906030612b5e565b60f81b8183815181106115c1576115c1612caf565b60200101906001600160f81b031916908160001a9053506115e3600a86612b76565b9450611583565b949350505050565b81518351146116135760405162461bcd60e51b815260040161079590612af2565b6001600160a01b0384166116395760405162461bcd60e51b8152600401610795906129eb565b3360005b845181101561172057600085828151811061165a5761165a612caf565b60200260200101519050600085838151811061167857611678612caf565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156116c85760405162461bcd60e51b815260040161079590612a73565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611705908490612b5e565b925050819055505050508061171990612c54565b905061163d565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161177092919061291e565b60405180910390a4611786818787878787611d7c565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118545760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610795565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166119215760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610795565b3361193b8160008761193288611ee7565b61097f88611ee7565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061196b908490612b5e565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461097f81600087878787611f32565b6000826119d88584611ffc565b14949350505050565b6001600160a01b038316611a075760405162461bcd60e51b815260040161079590612a30565b8051825114611a285760405162461bcd60e51b815260040161079590612af2565b604080516020810190915260009081905233905b8351811015611afe576000848281518110611a5957611a59612caf565b602002602001015190506000848381518110611a7757611a77612caf565b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015611ac75760405162461bcd60e51b8152600401610795906129a7565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580611af681612c54565b915050611a3c565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611b4f92919061291e565b60405180910390a450505050565b6001600160a01b038416611b835760405162461bcd60e51b8152600401610795906129eb565b33611b9381878761193288611ee7565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611bd45760405162461bcd60e51b815260040161079590612a73565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611c11908490612b5e565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611c71828888888888611f32565b50505050505050565b6001600160a01b038316611ca05760405162461bcd60e51b815260040161079590612a30565b33611cd081856000611cb187611ee7565b611cba87611ee7565b5050604080516020810190915260009052505050565b6000838152602081815260408083206001600160a01b038816845290915290205482811015611d115760405162461bcd60e51b8152600401610795906129a7565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6001600160a01b0384163b156117865760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611dc09089908990889088908890600401612868565b602060405180830381600087803b158015611dda57600080fd5b505af1925050508015611e0a575060408051601f3d908101601f19168201909252611e0791810190612573565b60015b611eb757611e16612cdb565b806308c379a01415611e505750611e2b612cf7565b80611e365750611e52565b8060405162461bcd60e51b8152600401610795919061294c565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610795565b6001600160e01b0319811663bc197c8160e01b14611c715760405162461bcd60e51b81526004016107959061295f565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611f2157611f21612caf565b602090810291909101015292915050565b6001600160a01b0384163b156117865760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611f7690899089908890889088906004016128c6565b602060405180830381600087803b158015611f9057600080fd5b505af1925050508015611fc0575060408051601f3d908101601f19168201909252611fbd91810190612573565b60015b611fcc57611e16612cdb565b6001600160e01b0319811663f23a6e6160e01b14611c715760405162461bcd60e51b81526004016107959061295f565b600081815b8451811015610c495761202d8286838151811061202057612020612caf565b6020026020010151612041565b91508061203981612c54565b915050612001565b600081831061205d57600082815260208490526040902061206c565b60008381526020839052604090205b9392505050565b82805461207f90612bec565b90600052602060002090601f0160209004810192826120a157600085556120e7565b82601f106120ba57805160ff19168380011785556120e7565b828001600101855582156120e7579182015b828111156120e75782518255916020019190600101906120cc565b506120f39291506120f7565b5090565b5b808211156120f357600081556001016120f8565b600067ffffffffffffffff83111561212657612126612cc5565b60405161213d601f8501601f191660200182612c27565b80915083815284848401111561215257600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461218157600080fd5b919050565b600082601f83011261219757600080fd5b813560206121a482612b3a565b6040516121b18282612c27565b8381528281019150858301600585901b870184018810156121d157600080fd5b60005b858110156121f0578135845292840192908401906001016121d4565b5090979650505050505050565b8035801515811461218157600080fd5b600082601f83011261221e57600080fd5b61206c8383356020850161210c565b60006020828403121561223f57600080fd5b61206c8261216a565b6000806040838503121561225b57600080fd5b6122648361216a565b91506122726020840161216a565b90509250929050565b600080600080600060a0868803121561229357600080fd5b61229c8661216a565b94506122aa6020870161216a565b9350604086013567ffffffffffffffff808211156122c757600080fd5b6122d389838a01612186565b945060608801359150808211156122e957600080fd5b6122f589838a01612186565b9350608088013591508082111561230b57600080fd5b506123188882890161220d565b9150509295509295909350565b600080600080600060a0868803121561233d57600080fd5b6123468661216a565b94506123546020870161216a565b93506040860135925060608601359150608086013567ffffffffffffffff81111561237e57600080fd5b6123188882890161220d565b60008060006060848603121561239f57600080fd5b6123a88461216a565b9250602084013567ffffffffffffffff808211156123c557600080fd5b6123d187838801612186565b935060408601359150808211156123e757600080fd5b506123f486828701612186565b9150509250925092565b6000806040838503121561241157600080fd5b61241a8361216a565b9150612272602084016121fd565b6000806040838503121561243b57600080fd5b6124448361216a565b946020939093013593505050565b60008060006060848603121561246757600080fd5b6124708461216a565b95602085013595506040909401359392505050565b6000806040838503121561249857600080fd5b823567ffffffffffffffff808211156124b057600080fd5b818501915085601f8301126124c457600080fd5b813560206124d182612b3a565b6040516124de8282612c27565b8381528281019150858301600585901b870184018b10156124fe57600080fd5b600096505b84871015612528576125148161216a565b835260019690960195918301918301612503565b509650508601359250508082111561253f57600080fd5b5061254c85828601612186565b9150509250929050565b60006020828403121561256857600080fd5b813561206c81612d81565b60006020828403121561258557600080fd5b815161206c81612d81565b6000602082840312156125a257600080fd5b813567ffffffffffffffff8111156125b957600080fd5b8201601f810184136125ca57600080fd5b6115ea8482356020840161210c565b6000602082840312156125eb57600080fd5b5035919050565b6000806040838503121561260557600080fd5b50508035926020909101359150565b6000806000806060858703121561262a57600080fd5b8435935060208501359250604085013567ffffffffffffffff8082111561265057600080fd5b818701915087601f83011261266457600080fd5b81358181111561267357600080fd5b8860208260051b850101111561268857600080fd5b95989497505060200194505050565b600080600080600060a086880312156126af57600080fd5b8535945060208601359350604086013592506126cd606087016121fd565b949793965091946080013592915050565b60008060008060008060c087890312156126f757600080fd5b863595506020870135945060408701359350612715606088016121fd565b92506080870135915061272a60a088016121fd565b90509295509295509295565b600081518084526020808501945080840160005b838110156127665781518752958201959082019060010161274a565b509495945050505050565b60008151808452612789816020860160208601612bc0565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806127b757607f831692505b60208084108214156127d957634e487b7160e01b600052602260045260246000fd5b8180156127ed57600181146127fe5761282b565b60ff1986168952848901965061282b565b60008881526020902060005b868110156128235781548b82015290850190830161280a565b505084890196505b50505050505092915050565b600061206c828461279d565b600061284f828561279d565b835161285f818360208801612bc0565b01949350505050565b6001600160a01b0386811682528516602082015260a06040820181905260009061289490830186612736565b82810360608401526128a68186612736565b905082810360808401526128ba8185612771565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061290090830184612771565b979650505050505050565b60208152600061206c6020830184612736565b6040815260006129316040830185612736565b82810360208401526129438185612736565b95945050505050565b60208152600061206c6020830184612771565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b600067ffffffffffffffff821115612b5457612b54612cc5565b5060051b60200190565b60008219821115612b7157612b71612c83565b500190565b600082612b8557612b85612c99565b500490565b6000816000190483118215151615612ba457612ba4612c83565b500290565b600082821015612bbb57612bbb612c83565b500390565b60005b83811015612bdb578181015183820152602001612bc3565b838111156112bd5750506000910152565b600181811c90821680612c0057607f821691505b60208210811415612c2157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715612c4d57612c4d612cc5565b6040525050565b6000600019821415612c6857612c68612c83565b5060010190565b600082612c7e57612c7e612c99565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115612cf45760046000803e5060005160e01c5b90565b600060443d1015612d055790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715612d3557505050505090565b8285019150815181811115612d4d5750505050505090565b843d8701016020828501011115612d675750505050505090565b612d7660208286010187612c27565b509095945050505050565b6001600160e01b0319811681146114b457600080fdfea26469706673582212206bc9defb254029b06c6831f0fa585ead1ef0884a920786b14a28a0d2fb78d8a564736f6c63430008070033

Deployed Bytecode Sourcemap

48653:5212:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35084:231;;;;;;;;;;-1:-1:-1;35084:231:0;;;;;:::i;:::-;;:::i;:::-;;;24791:25:1;;;24779:2;24764:18;35084:231:0;;;;;;;;34107:310;;;;;;;;;;-1:-1:-1;34107:310:0;;;;;:::i;:::-;;:::i;:::-;;;14905:14:1;;14898:22;14880:41;;14868:2;14853:18;34107:310:0;14740:187:1;53382:289:0;;;;;;;;;;-1:-1:-1;53382:289:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;37023:442::-;;;;;;;;;;-1:-1:-1;37023:442:0;;;;;:::i;:::-;;:::i;:::-;;51789:167;;;;;;;;;;-1:-1:-1;51789:167:0;;;;;:::i;:::-;;:::i;49583:102::-;;;;;;;;;;;;;:::i;52990:239::-;;;;;;;;;;;;;:::i;35481:524::-;;;;;;;;;;-1:-1:-1;35481:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;52847:107::-;;;;;;;;;;-1:-1:-1;52847:107:0;;;;;:::i;:::-;;:::i;51573:208::-;;;;;;;;;;-1:-1:-1;51573:208:0;;;;;:::i;:::-;;:::i;14670:103::-;;;;;;;;;;;;;:::i;51342:96::-;;;;;;;;;;-1:-1:-1;51342:96:0;;;;;:::i;:::-;;:::i;49476:101::-;;;;;;;;;;;;;:::i;49360:110::-;;;;;;;;;;-1:-1:-1;49360:110:0;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49453:9:0;;;;:5;:9;;;;;;;;;49446:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49360:110;;;;;;;24121:4:1;24163:3;24152:9;24148:19;24140:27;;24200:6;24194:13;24183:9;24176:32;24264:4;24256:6;24252:17;24246:24;24239:4;24228:9;24224:20;24217:54;24327:4;24319:6;24315:17;24309:24;24302:4;24291:9;24287:20;24280:54;24390:4;24382:6;24378:17;24372:24;24365:4;24354:9;24350:20;24343:54;24467:4;24459:6;24455:17;24449:24;24442:32;24435:40;24428:4;24417:9;24413:20;24406:70;24546:4;24538:6;24534:17;24528:24;24521:32;24514:40;24507:4;24496:9;24492:20;24485:70;24625:4;24617:6;24613:17;24607:24;24600:32;24593:40;24586:4;24575:9;24571:20;24564:70;23985:655;;;;;14019:87:0;;;;;;;;;;-1:-1:-1;14092:6:0;;14019:87;;-1:-1:-1;;;;;14092:6:0;;;12546:51:1;;12534:2;12519:18;14019:87:0;12400:203:1;51444:97:0;;;;;;;;;;-1:-1:-1;51444:97:0;;;;;:::i;:::-;;:::i;36078:155::-;;;;;;;;;;-1:-1:-1;36078:155:0;;;;;:::i;:::-;;:::i;48919:49::-;;;;;;;;;;-1:-1:-1;48919:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;51085:233;;;;;;;;;;-1:-1:-1;51085:233:0;;;;;:::i;:::-;;:::i;53259:113::-;;;;;;;;;;-1:-1:-1;53259:113:0;;;;;:::i;:::-;53321:7;53348:9;;;:5;:9;;;;;:16;;;;53259:113;48975:38;;;;;;;;;;-1:-1:-1;48975:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25377:25:1;;;25433:2;25418:18;;25411:34;;;;25461:18;;;25454:34;;;;25519:2;25504:18;;25497:34;;;;25575:14;25568:22;25562:3;25547:19;;25540:51;25635:14;25628:22;25622:3;25607:19;;25600:51;25695:14;25688:22;25682:3;25667:19;;25660:51;25364:3;25349:19;48975:38:0;25080:637:1;49693:912:0;;;;;;:::i;:::-;;:::i;50831:174::-;;;;;;;;;;-1:-1:-1;50831:174:0;;;;;:::i;:::-;;:::i;53681:181::-;;;;;;;;;;;;;:::i;36305:168::-;;;;;;;;;;-1:-1:-1;36305:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;36428:27:0;;;36404:4;36428:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;36305:168;51964:327;;;;;;;;;;-1:-1:-1;51964:327:0;;;;;:::i;:::-;;:::i;36545:401::-;;;;;;;;;;-1:-1:-1;36545:401:0;;;;;:::i;:::-;;:::i;14928:201::-;;;;;;;;;;-1:-1:-1;14928:201:0;;;;;:::i;:::-;;:::i;50682:143::-;;;;;;;;;;-1:-1:-1;50682:143:0;;;;;:::i;:::-;;:::i;35084:231::-;35170:7;-1:-1:-1;;;;;35198:21:0;;35190:77;;;;-1:-1:-1;;;35190:77:0;;16882:2:1;35190:77:0;;;16864:21:1;16921:2;16901:18;;;16894:30;16960:34;16940:18;;;16933:62;-1:-1:-1;;;17011:18:1;;;17004:41;17062:19;;35190:77:0;;;;;;;;;-1:-1:-1;35285:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;35285:22:0;;;;;;;;;;;;35084:231::o;34107:310::-;34209:4;-1:-1:-1;;;;;;34246:41:0;;-1:-1:-1;;;34246:41:0;;:110;;-1:-1:-1;;;;;;;34304:52:0;;-1:-1:-1;;;34304:52:0;34246:110;:163;;;-1:-1:-1;;;;;;;;;;25547:40:0;;;34373:36;34226:183;34107:310;-1:-1:-1;;34107:310:0:o;53382:289::-;53473:13;53552:1;53530:11;53524:25;;;;;:::i;:::-;;;:29;:139;;53652:11;53524:139;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53597:11;53610:20;53627:2;53610:16;:20::i;:::-;53580:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53504:159;53382:289;-1:-1:-1;;53382:289:0:o;37023:442::-;-1:-1:-1;;;;;37256:20:0;;12817:10;37256:20;;:60;;-1:-1:-1;37280:36:0;37297:4;12817:10;36305:168;:::i;37280:36::-;37234:160;;;;-1:-1:-1;;;37234:160:0;;19628:2:1;37234:160:0;;;19610:21:1;19667:2;19647:18;;;19640:30;19706:34;19686:18;;;19679:62;-1:-1:-1;;;19757:18:1;;;19750:48;19815:19;;37234:160:0;19426:414:1;37234:160:0;37405:52;37428:4;37434:2;37438:3;37443:7;37452:4;37405:22;:52::i;:::-;37023:442;;;;;:::o;51789:167::-;14092:6;;-1:-1:-1;;;;;14092:6:0;12817:10;14239:23;14231:68;;;;-1:-1:-1;;;14231:68:0;;;;;;;:::i;:::-;51870:5:::1;51849:9:::0;;;:5:::1;:9;::::0;;;;:18:::1;;:26:::0;;-1:-1:-1;;51921:27:0;;;51789:167::o;49583:102::-;49632:13;49665:12;49658:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49583:102;:::o;52990:239::-;14092:6;;-1:-1:-1;;;;;14092:6:0;12817:10;14239:23;14231:68;;;;-1:-1:-1;;;14231:68:0;;;;;;;:::i;:::-;53058:21:::1;53098:11:::0;53090:24:::1;;;::::0;-1:-1:-1;;;53090:24:0;;21582:2:1;53090:24:0::1;::::0;::::1;21564:21:1::0;-1:-1:-1;21601:18:1;;;21594:29;21640:18;;53090:24:0::1;21380:284:1::0;53090:24:0::1;53146:44;::::0;53128:12:::1;::::0;53154:10:::1;::::0;53178:7;;53128:12;53146:44;53128:12;53146:44;53178:7;53154:10;53146:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53127:63;;;53209:7;53201:20;;;::::0;-1:-1:-1;;;53201:20:0;;21582:2:1;53201:20:0::1;::::0;::::1;21564:21:1::0;-1:-1:-1;21601:18:1;;;21594:29;21640:18;;53201:20:0::1;21380:284:1::0;53201:20:0::1;53029:200;;52990:239::o:0;35481:524::-;35637:16;35698:3;:10;35679:8;:15;:29;35671:83;;;;-1:-1:-1;;;35671:83:0;;22623:2:1;35671:83:0;;;22605:21:1;22662:2;22642:18;;;22635:30;22701:34;22681:18;;;22674:62;-1:-1:-1;;;22752:18:1;;;22745:39;22801:19;;35671:83:0;22421:405:1;35671:83:0;35767:30;35814:8;:15;35800:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35800:30:0;;35767:63;;35848:9;35843:122;35867:8;:15;35863:1;:19;35843:122;;;35923:30;35933:8;35942:1;35933:11;;;;;;;;:::i;:::-;;;;;;;35946:3;35950:1;35946:6;;;;;;;;:::i;:::-;;;;;;;35923:9;:30::i;:::-;35904:13;35918:1;35904:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;35884:3;;;:::i;:::-;;;35843:122;;;-1:-1:-1;35984:13:0;35481:524;-1:-1:-1;;;35481:524:0:o;52847:107::-;14092:6;;-1:-1:-1;;;;;14092:6:0;12817:10;14239:23;14231:68;;;;-1:-1:-1;;;14231:68:0;;;;;;;:::i;:::-;52928:9:::1;::::0;;;:5:::1;:9;::::0;;;;:18:::1;;::::0;;-1:-1:-1;;52906:40:0;::::1;52928:18;::::0;;;::::1;;;52927:19;52906:40:::0;;::::1;;::::0;;52847:107::o;51573:208::-;14092:6;;-1:-1:-1;;;;;14092:6:0;12817:10;14239:23;14231:68;;;;-1:-1:-1;;;14231:68:0;;;;;;;:::i;:::-;51718:55:::1;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;;;-1:-1:-1;51718:55:0;;;;;;;;;;;;51752:4:::1;51718:55:::0;;;;;;;::::1;;::::0;;;;;;;;;;;;51706:9;;;:5:::1;:9:::0;;;;;;;:67;;;;;;;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;::::1;;::::0;::::1;-1:-1:-1::0;;51706:67:0;::::1;;;;-1:-1:-1::0;;51706:67:0;::::1;;::::0;;;;-1:-1:-1;;51706:67:0;;;;;;;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;51573:208::o;14670:103::-;14092:6;;-1:-1:-1;;;;;14092:6:0;12817:10;14239:23;14231:68;;;;-1:-1:-1;;;14231:68:0;;;;;;;:::i;:::-;14735:30:::1;14762:1;14735:18;:30::i;:::-;14670:103::o:0;51342:96::-;14092:6;;-1:-1:-1;;;;;14092:6:0;12817:10;14239:23;14231:68;;;;-1:-1:-1;;;14231:68:0;;;;;;;:::i;:::-;51413:17;;::::1;::::0;:11:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;49476:101::-:0;49525:13;49558:11;49551:18;;;;;:::i;51444:97::-;14092:6;;-1:-1:-1;;;;;14092:6:0;12817:10;14239:23;14231:68;;;;-1:-1:-1;;;14231:68:0;;;;;;;:::i;:::-;51515:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;36078:155::-:0;36173:52;12817:10;36206:8;36216;36173:18;:52::i;51085:233::-;14092:6;;-1:-1:-1;;;;;14092:6:0;12817:10;14239:23;14231:68;;;;-1:-1:-1;;;14231:68:0;;;;;;;:::i;:::-;51169:9:::1;::::0;;;:5:::1;:9;::::0;;;;:16:::1;;::::0;::::1;;51161:48;;;::::0;-1:-1:-1;;;51161:48:0;;15779:2:1;51161:48:0::1;::::0;::::1;15761:21:1::0;15818:2;15798:18;;;15791:30;-1:-1:-1;;;15837:18:1;;;15830:49;15896:18;;51161:48:0::1;15577:343:1::0;51161:48:0::1;51241:9;::::0;;;:5:::1;:9;::::0;;;;:16:::1;;::::0;:25:::1;::::0;51260:6;;51241:25:::1;:::i;:::-;51222:5;:9;51228:2;51222:9;;;;;;;;;;;:16;;:44;;;;51277:33;51283:10;51295:2;51299:6;51277:33;;;;;;;;;;;::::0;:5:::1;:33::i;49693:912::-:0;49805:9;;;;:5;:9;;;;;:19;;;;;;;;49797:62;;;;-1:-1:-1;;;49797:62:0;;21223:2:1;49797:62:0;;;21205:21:1;21262:2;21242:18;;;21235:30;21301:32;21281:18;;;21274:60;21351:18;;49797:62:0;21021:354:1;49797:62:0;49878:9;;;;:5;:9;;;;;:18;;;;;;;;49870:61;;;;-1:-1:-1;;;49870:61:0;;18863:2:1;49870:61:0;;;18845:21:1;18902:2;18882:18;;;18875:30;18941:32;18921:18;;;18914:60;18991:18;;49870:61:0;18661:354:1;49870:61:0;49950:88;49969:5;;49950:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49976:9:0;;;:5;:9;;;;;;;;;:20;;;50008:28;;49976:20;;-1:-1:-1;50008:28:0;;-1:-1:-1;50025:10:0;;-1:-1:-1;50008:28:0;11522:2:1;11518:15;;;;-1:-1:-1;;11514:53:1;11502:66;;11593:2;11584:12;;11373:229;50008:28:0;;;;;;;;;;;;;49998:39;;;;;;49950:18;:88::i;:::-;49942:114;;;;-1:-1:-1;;;49942:114:0;;21871:2:1;49942:114:0;;;21853:21:1;21910:2;21890:18;;;21883:30;-1:-1:-1;;;21929:18:1;;;21922:43;21982:18;;49942:114:0;21669:337:1;49942:114:0;50075:9;;;;:5;:9;;;;;:16;;;;;50067:48;;;;-1:-1:-1;;;50067:48:0;;15779:2:1;50067:48:0;;;15761:21:1;15818:2;15798:18;;;15791:30;-1:-1:-1;;;15837:18:1;;;15830:49;15896:18;;50067:48:0;15577:343:1;50067:48:0;50148:10;50134:25;;;;:13;:25;;;;;;50172:1;;50134:34;;50162:6;;50134:34;:::i;:::-;:39;;50126:66;;;;-1:-1:-1;;;50126:66:0;;23844:2:1;50126:66:0;;;23826:21:1;23883:2;23863:18;;;23856:30;-1:-1:-1;;;23902:18:1;;;23895:44;23956:18;;50126:66:0;23642:338:1;50126:66:0;50236:9;;;;:5;:9;;;;;:14;50227:23;;:6;:23;:::i;:::-;50213:9;:38;;50205:69;;;;-1:-1:-1;;;50205:69:0;;18516:2:1;50205:69:0;;;18498:21:1;18555:2;18535:18;;;18528:30;-1:-1:-1;;;18574:18:1;;;18567:48;18632:18;;50205:69:0;18314:342:1;50205:69:0;50322:9;;;;:5;:9;;;;;:16;;;;50293;;;;;:25;;50312:6;;50293:25;:::i;:::-;:45;;50285:75;;;;-1:-1:-1;;;50285:75:0;;16536:2:1;50285:75:0;;;16518:21:1;16575:2;16555:18;;;16548:30;-1:-1:-1;;;16594:18:1;;;16587:47;16651:18;;50285:75:0;16334:341:1;50285:75:0;50380:10;50394:9;50380:23;50371:37;;;;-1:-1:-1;;;50371:37:0;;21582:2:1;50371:37:0;;;21564:21:1;-1:-1:-1;21601:18:1;;;21594:29;21640:18;;50371:37:0;21380:284:1;50371:37:0;50480:9;;;;:5;:9;;;;;:16;;;:25;;50499:6;;50480:25;:::i;:::-;50461:9;;;;:5;:9;;;;;;;;:16;;:44;;;;50530:10;50516:25;;:13;:25;;;;;:35;;50545:6;;50461:9;50516:35;;50545:6;;50516:35;:::i;:::-;;;;;;;;50564:33;50570:10;50582:2;50586:6;50564:33;;;;;;;;;;;;:5;:33::i;:::-;49693:912;;;;:::o;50831:174::-;14092:6;;-1:-1:-1;;;;;14092:6:0;12817:10;14239:23;14231:68;;;;-1:-1:-1;;;14231:68:0;;;;;;;:::i;:::-;50960:37:::1;50971:6;50979:8;50989:7;50960:10;:37::i;:::-;50831:174:::0;;;:::o;53681:181::-;53725:13;53815:12;53780:62;;;;;;;;:::i;:::-;;;;;;;;;;;;;53751:103;;53681:181;:::o;51964:327::-;14092:6;;-1:-1:-1;;;;;14092:6:0;12817:10;14239:23;14231:68;;;;-1:-1:-1;;;14231:68:0;;;;;;;:::i;:::-;-1:-1:-1;52104:9:0::1;::::0;;;:5:::1;:9;::::0;;;;;:21;;;52136:16:::1;::::0;::::1;:25:::0;;;;52172:20:::1;::::0;::::1;:33:::0;;;;52216:18:::1;;:29:::0;;-1:-1:-1;;52256:27:0;52216:29:::1;::::0;::::1;;::::0;;;::::1;-1:-1:-1::0;;52256:27:0;;;;;;;51964:327::o;36545:401::-;-1:-1:-1;;;;;36753:20:0;;12817:10;36753:20;;:60;;-1:-1:-1;36777:36:0;36794:4;12817:10;36305:168;:::i;36777:36::-;36731:151;;;;-1:-1:-1;;;36731:151:0;;18106:2:1;36731:151:0;;;18088:21:1;18145:2;18125:18;;;18118:30;18184:34;18164:18;;;18157:62;-1:-1:-1;;;18235:18:1;;;18228:39;18284:19;;36731:151:0;17904:405:1;36731:151:0;36893:45;36911:4;36917:2;36921;36925:6;36933:4;36893:17;:45::i;14928:201::-;14092:6;;-1:-1:-1;;;;;14092:6:0;12817:10;14239:23;14231:68;;;;-1:-1:-1;;;14231:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15017:22:0;::::1;15009:73;;;::::0;-1:-1:-1;;;15009:73:0;;17294:2:1;15009:73:0::1;::::0;::::1;17276:21:1::0;17333:2;17313:18;;;17306:30;17372:34;17352:18;;;17345:62;-1:-1:-1;;;17423:18:1;;;17416:36;17469:19;;15009:73:0::1;17092:402:1::0;15009:73:0::1;15093:28;15112:8;15093:18;:28::i;:::-;14928:201:::0;:::o;50682:143::-;14092:6;;-1:-1:-1;;;;;14092:6:0;12817:10;14239:23;14231:68;;;;-1:-1:-1;;;14231:68:0;;;;;;;:::i;:::-;50787:30:::1;50793:6;50801:7;50810:6;50787:5;:30::i;374:723::-:0;430:13;651:10;647:53;;-1:-1:-1;;678:10:0;;;;;;;;;;;;-1:-1:-1;;;678:10:0;;;;;374:723::o;647:53::-;725:5;710:12;766:78;773:9;;766:78;;799:8;;;;:::i;:::-;;-1:-1:-1;822:10:0;;-1:-1:-1;830:2:0;822:10;;:::i;:::-;;;766:78;;;854:19;886:6;876:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;876:17:0;;854:39;;904:154;911:10;;904:154;;938:11;948:1;938:11;;:::i;:::-;;-1:-1:-1;1007:10:0;1015:2;1007:5;:10;:::i;:::-;994:24;;:2;:24;:::i;:::-;981:39;;964:6;971;964:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;964:56:0;;;;;;;;-1:-1:-1;1035:11:0;1044:2;1035:11;;:::i;:::-;;;904:154;;;1082:6;374:723;-1:-1:-1;;;;374:723:0:o;39107:1074::-;39334:7;:14;39320:3;:10;:28;39312:81;;;;-1:-1:-1;;;39312:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39412:16:0;;39404:66;;;;-1:-1:-1;;;39404:66:0;;;;;;;:::i;:::-;12817:10;39483:16;39600:421;39624:3;:10;39620:1;:14;39600:421;;;39656:10;39669:3;39673:1;39669:6;;;;;;;;:::i;:::-;;;;;;;39656:19;;39690:14;39707:7;39715:1;39707:10;;;;;;;;:::i;:::-;;;;;;;;;;;;39734:19;39756:13;;;;;;;;;;-1:-1:-1;;;;;39756:19:0;;;;;;;;;;;;39707:10;;-1:-1:-1;39798:21:0;;;;39790:76;;;;-1:-1:-1;;;39790:76:0;;;;;;;:::i;:::-;39910:9;:13;;;;;;;;;;;-1:-1:-1;;;;;39910:19:0;;;;;;;;;;39932:20;;;39910:42;;39982:17;;;;;;;:27;;39932:20;;39910:9;39982:27;;39932:20;;39982:27;:::i;:::-;;;;;;;;39641:380;;;39636:3;;;;:::i;:::-;;;39600:421;;;;40068:2;-1:-1:-1;;;;;40038:47:0;40062:4;-1:-1:-1;;;;;40038:47:0;40052:8;-1:-1:-1;;;;;40038:47:0;;40072:3;40077:7;40038:47;;;;;;;:::i;:::-;;;;;;;;40098:75;40134:8;40144:4;40150:2;40154:3;40159:7;40168:4;40098:35;:75::i;:::-;39301:880;39107:1074;;;;;:::o;15289:191::-;15382:6;;;-1:-1:-1;;;;;15399:17:0;;;-1:-1:-1;;;;;;15399:17:0;;;;;;;15432:40;;15382:6;;;15399:17;15382:6;;15432:40;;15363:16;;15432:40;15352:128;15289:191;:::o;45293:331::-;45448:8;-1:-1:-1;;;;;45439:17:0;:5;-1:-1:-1;;;;;45439:17:0;;;45431:71;;;;-1:-1:-1;;;45431:71:0;;22213:2:1;45431:71:0;;;22195:21:1;22252:2;22232:18;;;22225:30;22291:34;22271:18;;;22264:62;-1:-1:-1;;;22342:18:1;;;22335:39;22391:19;;45431:71:0;22011:405:1;45431:71:0;-1:-1:-1;;;;;45513:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;45513:46:0;;;;;;;;;;45575:41;;14880::1;;;45575::0;;14853:18:1;45575:41:0;;;;;;;45293:331;;;:::o;41499:569::-;-1:-1:-1;;;;;41652:16:0;;41644:62;;;;-1:-1:-1;;;41644:62:0;;23442:2:1;41644:62:0;;;23424:21:1;23481:2;23461:18;;;23454:30;23520:34;23500:18;;;23493:62;-1:-1:-1;;;23571:18:1;;;23564:31;23612:19;;41644:62:0;23240:397:1;41644:62:0;12817:10;41763:102;12817:10;41719:16;41806:2;41810:21;41828:2;41810:17;:21::i;:::-;41833:25;41851:6;41833:17;:25::i;41763:102::-;41878:9;:13;;;;;;;;;;;-1:-1:-1;;;;;41878:17:0;;;;;;;;;:27;;41899:6;;41878:9;:27;;41899:6;;41878:27;:::i;:::-;;;;-1:-1:-1;;41921:52:0;;;25001:25:1;;;25057:2;25042:18;;25035:34;;;-1:-1:-1;;;;;41921:52:0;;;;41954:1;;41921:52;;;;;;24974:18:1;41921:52:0;;;;;;;41986:74;42017:8;42035:1;42039:2;42043;42047:6;42055:4;41986:30;:74::i;3713:190::-;3838:4;3891;3862:25;3875:5;3882:4;3862:12;:25::i;:::-;:33;;3713:190;-1:-1:-1;;;;3713:190:0:o;44260:891::-;-1:-1:-1;;;;;44412:18:0;;44404:66;;;;-1:-1:-1;;;44404:66:0;;;;;;;:::i;:::-;44503:7;:14;44489:3;:10;:28;44481:81;;;;-1:-1:-1;;;44481:81:0;;;;;;;:::i;:::-;44619:66;;;;;;;;;44575:16;44619:66;;;;12817:10;;44698:373;44722:3;:10;44718:1;:14;44698:373;;;44754:10;44767:3;44771:1;44767:6;;;;;;;;:::i;:::-;;;;;;;44754:19;;44788:14;44805:7;44813:1;44805:10;;;;;;;;:::i;:::-;;;;;;;;;;;;44832:19;44854:13;;;;;;;;;;-1:-1:-1;;;;;44854:19:0;;;;;;;;;;;;44805:10;;-1:-1:-1;44896:21:0;;;;44888:70;;;;-1:-1:-1;;;44888:70:0;;;;;;;:::i;:::-;45002:9;:13;;;;;;;;;;;-1:-1:-1;;;;;45002:19:0;;;;;;;;;;45024:20;;45002:42;;44734:3;;;;:::i;:::-;;;;44698:373;;;;45126:1;-1:-1:-1;;;;;45088:55:0;45112:4;-1:-1:-1;;;;;45088:55:0;45102:8;-1:-1:-1;;;;;45088:55:0;;45130:3;45135:7;45088:55;;;;;;;:::i;:::-;;;;;;;;44393:758;44260:891;;;:::o;37929:820::-;-1:-1:-1;;;;;38117:16:0;;38109:66;;;;-1:-1:-1;;;38109:66:0;;;;;;;:::i;:::-;12817:10;38232:96;12817:10;38263:4;38269:2;38273:21;38291:2;38273:17;:21::i;38232:96::-;38341:19;38363:13;;;;;;;;;;;-1:-1:-1;;;;;38363:19:0;;;;;;;;;;38401:21;;;;38393:76;;;;-1:-1:-1;;;38393:76:0;;;;;;;:::i;:::-;38505:9;:13;;;;;;;;;;;-1:-1:-1;;;;;38505:19:0;;;;;;;;;;38527:20;;;38505:42;;38569:17;;;;;;;:27;;38527:20;;38505:9;38569:27;;38527:20;;38569:27;:::i;:::-;;;;-1:-1:-1;;38614:46:0;;;25001:25:1;;;25057:2;25042:18;;25035:34;;;-1:-1:-1;;;;;38614:46:0;;;;;;;;;;;;;;24974:18:1;38614:46:0;;;;;;;38673:68;38704:8;38714:4;38720:2;38724;38728:6;38736:4;38673:30;:68::i;:::-;38098:651;;37929:820;;;;;:::o;43409:648::-;-1:-1:-1;;;;;43536:18:0;;43528:66;;;;-1:-1:-1;;;43528:66:0;;;;;;;:::i;:::-;12817:10;43651:102;12817:10;43682:4;43607:16;43700:21;43718:2;43700:17;:21::i;:::-;43723:25;43741:6;43723:17;:25::i;:::-;-1:-1:-1;;43651:102:0;;;;;;;;;-1:-1:-1;43651:102:0;;-1:-1:-1;;;39107:1074:0;43651:102;43766:19;43788:13;;;;;;;;;;;-1:-1:-1;;;;;43788:19:0;;;;;;;;;;43826:21;;;;43818:70;;;;-1:-1:-1;;;43818:70:0;;;;;;;:::i;:::-;43924:9;:13;;;;;;;;;;;-1:-1:-1;;;;;43924:19:0;;;;;;;;;;;;43946:20;;;43924:42;;43995:54;;25001:25:1;;;25042:18;;;25035:34;;;43924:19:0;;43995:54;;;;;;24974:18:1;43995:54:0;;;;;;;43517:540;;43409:648;;;:::o;47561:813::-;-1:-1:-1;;;;;47801:13:0;;16636:20;16684:8;47797:570;;47837:79;;-1:-1:-1;;;47837:79:0;;-1:-1:-1;;;;;47837:43:0;;;;;:79;;47881:8;;47891:4;;47897:3;;47902:7;;47911:4;;47837:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47837:79:0;;;;;;;;-1:-1:-1;;47837:79:0;;;;;;;;;;;;:::i;:::-;;;47833:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;48229:6;48222:14;;-1:-1:-1;;;48222:14:0;;;;;;;;:::i;47833:523::-;;;48278:62;;-1:-1:-1;;;48278:62:0;;15358:2:1;48278:62:0;;;15340:21:1;15397:2;15377:18;;;15370:30;15436:34;15416:18;;;15409:62;-1:-1:-1;;;15487:18:1;;;15480:50;15547:19;;48278:62:0;15156:416:1;47833:523:0;-1:-1:-1;;;;;;47998:60:0;;-1:-1:-1;;;47998:60:0;47994:159;;48083:50;;-1:-1:-1;;;48083:50:0;;;;;;;:::i;48382:198::-;48502:16;;;48516:1;48502:16;;;;;;;;;48448;;48477:22;;48502:16;;;;;;;;;;;;-1:-1:-1;48502:16:0;48477:41;;48540:7;48529:5;48535:1;48529:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;48567:5;48382:198;-1:-1:-1;;48382:198:0:o;46809:744::-;-1:-1:-1;;;;;47024:13:0;;16636:20;16684:8;47020:526;;47060:72;;-1:-1:-1;;;47060:72:0;;-1:-1:-1;;;;;47060:38:0;;;;;:72;;47099:8;;47109:4;;47115:2;;47119:6;;47127:4;;47060:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47060:72:0;;;;;;;;-1:-1:-1;;47060:72:0;;;;;;;;;;;;:::i;:::-;;;47056:479;;;;:::i;:::-;-1:-1:-1;;;;;;47182:55:0;;-1:-1:-1;;;47182:55:0;47178:154;;47262:50;;-1:-1:-1;;;47262:50:0;;;;;;;:::i;4580:296::-;4663:7;4706:4;4663:7;4721:118;4745:5;:12;4741:1;:16;4721:118;;;4794:33;4804:12;4818:5;4824:1;4818:8;;;;;;;;:::i;:::-;;;;;;;4794:9;:33::i;:::-;4779:48;-1:-1:-1;4759:3:0;;;;:::i;:::-;;;;4721:118;;11620:149;11683:7;11714:1;11710;:5;:51;;11845:13;11939:15;;;11975:4;11968:15;;;12022:4;12006:21;;11710:51;;;11845:13;11939:15;;;11975:4;11968:15;;;12022:4;12006:21;;11718:20;11703:58;11620:149;-1:-1:-1;;;11620:149:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:70;;650:1;647;640:12;584:70;487:173;;;:::o;665:735::-;719:5;772:3;765:4;757:6;753:17;749:27;739:55;;790:1;787;780:12;739:55;826:6;813:20;852:4;875:43;915:2;875:43;:::i;:::-;947:2;941:9;959:31;987:2;979:6;959:31;:::i;:::-;1025:18;;;1059:15;;;;-1:-1:-1;1094:15:1;;;1144:1;1140:10;;;1128:23;;1124:32;;1121:41;-1:-1:-1;1118:61:1;;;1175:1;1172;1165:12;1118:61;1197:1;1207:163;1221:2;1218:1;1215:9;1207:163;;;1278:17;;1266:30;;1316:12;;;;1348;;;;1239:1;1232:9;1207:163;;;-1:-1:-1;1388:6:1;;665:735;-1:-1:-1;;;;;;;665:735:1:o;1405:160::-;1470:20;;1526:13;;1519:21;1509:32;;1499:60;;1555:1;1552;1545:12;1570:220;1612:5;1665:3;1658:4;1650:6;1646:17;1642:27;1632:55;;1683:1;1680;1673:12;1632:55;1705:79;1780:3;1771:6;1758:20;1751:4;1743:6;1739:17;1705:79;:::i;1795:186::-;1854:6;1907:2;1895:9;1886:7;1882:23;1878:32;1875:52;;;1923:1;1920;1913:12;1875:52;1946:29;1965:9;1946:29;:::i;1986:260::-;2054:6;2062;2115:2;2103:9;2094:7;2090:23;2086:32;2083:52;;;2131:1;2128;2121:12;2083:52;2154:29;2173:9;2154:29;:::i;:::-;2144:39;;2202:38;2236:2;2225:9;2221:18;2202:38;:::i;:::-;2192:48;;1986:260;;;;;:::o;2251:943::-;2405:6;2413;2421;2429;2437;2490:3;2478:9;2469:7;2465:23;2461:33;2458:53;;;2507:1;2504;2497:12;2458:53;2530:29;2549:9;2530:29;:::i;:::-;2520:39;;2578:38;2612:2;2601:9;2597:18;2578:38;:::i;:::-;2568:48;;2667:2;2656:9;2652:18;2639:32;2690:18;2731:2;2723:6;2720:14;2717:34;;;2747:1;2744;2737:12;2717:34;2770:61;2823:7;2814:6;2803:9;2799:22;2770:61;:::i;:::-;2760:71;;2884:2;2873:9;2869:18;2856:32;2840:48;;2913:2;2903:8;2900:16;2897:36;;;2929:1;2926;2919:12;2897:36;2952:63;3007:7;2996:8;2985:9;2981:24;2952:63;:::i;:::-;2942:73;;3068:3;3057:9;3053:19;3040:33;3024:49;;3098:2;3088:8;3085:16;3082:36;;;3114:1;3111;3104:12;3082:36;;3137:51;3180:7;3169:8;3158:9;3154:24;3137:51;:::i;:::-;3127:61;;;2251:943;;;;;;;;:::o;3199:606::-;3303:6;3311;3319;3327;3335;3388:3;3376:9;3367:7;3363:23;3359:33;3356:53;;;3405:1;3402;3395:12;3356:53;3428:29;3447:9;3428:29;:::i;:::-;3418:39;;3476:38;3510:2;3499:9;3495:18;3476:38;:::i;:::-;3466:48;;3561:2;3550:9;3546:18;3533:32;3523:42;;3612:2;3601:9;3597:18;3584:32;3574:42;;3667:3;3656:9;3652:19;3639:33;3695:18;3687:6;3684:30;3681:50;;;3727:1;3724;3717:12;3681:50;3750:49;3791:7;3782:6;3771:9;3767:22;3750:49;:::i;3810:669::-;3937:6;3945;3953;4006:2;3994:9;3985:7;3981:23;3977:32;3974:52;;;4022:1;4019;4012:12;3974:52;4045:29;4064:9;4045:29;:::i;:::-;4035:39;;4125:2;4114:9;4110:18;4097:32;4148:18;4189:2;4181:6;4178:14;4175:34;;;4205:1;4202;4195:12;4175:34;4228:61;4281:7;4272:6;4261:9;4257:22;4228:61;:::i;:::-;4218:71;;4342:2;4331:9;4327:18;4314:32;4298:48;;4371:2;4361:8;4358:16;4355:36;;;4387:1;4384;4377:12;4355:36;;4410:63;4465:7;4454:8;4443:9;4439:24;4410:63;:::i;:::-;4400:73;;;3810:669;;;;;:::o;4484:254::-;4549:6;4557;4610:2;4598:9;4589:7;4585:23;4581:32;4578:52;;;4626:1;4623;4616:12;4578:52;4649:29;4668:9;4649:29;:::i;:::-;4639:39;;4697:35;4728:2;4717:9;4713:18;4697:35;:::i;4743:254::-;4811:6;4819;4872:2;4860:9;4851:7;4847:23;4843:32;4840:52;;;4888:1;4885;4878:12;4840:52;4911:29;4930:9;4911:29;:::i;:::-;4901:39;4987:2;4972:18;;;;4959:32;;-1:-1:-1;;;4743:254:1:o;5002:322::-;5079:6;5087;5095;5148:2;5136:9;5127:7;5123:23;5119:32;5116:52;;;5164:1;5161;5154:12;5116:52;5187:29;5206:9;5187:29;:::i;:::-;5177:39;5263:2;5248:18;;5235:32;;-1:-1:-1;5314:2:1;5299:18;;;5286:32;;5002:322;-1:-1:-1;;;5002:322:1:o;5329:1219::-;5447:6;5455;5508:2;5496:9;5487:7;5483:23;5479:32;5476:52;;;5524:1;5521;5514:12;5476:52;5564:9;5551:23;5593:18;5634:2;5626:6;5623:14;5620:34;;;5650:1;5647;5640:12;5620:34;5688:6;5677:9;5673:22;5663:32;;5733:7;5726:4;5722:2;5718:13;5714:27;5704:55;;5755:1;5752;5745:12;5704:55;5791:2;5778:16;5813:4;5836:43;5876:2;5836:43;:::i;:::-;5908:2;5902:9;5920:31;5948:2;5940:6;5920:31;:::i;:::-;5986:18;;;6020:15;;;;-1:-1:-1;6055:11:1;;;6097:1;6093:10;;;6085:19;;6081:28;;6078:41;-1:-1:-1;6075:61:1;;;6132:1;6129;6122:12;6075:61;6154:1;6145:10;;6164:169;6178:2;6175:1;6172:9;6164:169;;;6235:23;6254:3;6235:23;:::i;:::-;6223:36;;6196:1;6189:9;;;;;6279:12;;;;6311;;6164:169;;;-1:-1:-1;6352:6:1;-1:-1:-1;;6396:18:1;;6383:32;;-1:-1:-1;;6427:16:1;;;6424:36;;;6456:1;6453;6446:12;6424:36;;6479:63;6534:7;6523:8;6512:9;6508:24;6479:63;:::i;:::-;6469:73;;;5329:1219;;;;;:::o;6553:245::-;6611:6;6664:2;6652:9;6643:7;6639:23;6635:32;6632:52;;;6680:1;6677;6670:12;6632:52;6719:9;6706:23;6738:30;6762:5;6738:30;:::i;6803:249::-;6872:6;6925:2;6913:9;6904:7;6900:23;6896:32;6893:52;;;6941:1;6938;6931:12;6893:52;6973:9;6967:16;6992:30;7016:5;6992:30;:::i;7057:450::-;7126:6;7179:2;7167:9;7158:7;7154:23;7150:32;7147:52;;;7195:1;7192;7185:12;7147:52;7235:9;7222:23;7268:18;7260:6;7257:30;7254:50;;;7300:1;7297;7290:12;7254:50;7323:22;;7376:4;7368:13;;7364:27;-1:-1:-1;7354:55:1;;7405:1;7402;7395:12;7354:55;7428:73;7493:7;7488:2;7475:16;7470:2;7466;7462:11;7428:73;:::i;7512:180::-;7571:6;7624:2;7612:9;7603:7;7599:23;7595:32;7592:52;;;7640:1;7637;7630:12;7592:52;-1:-1:-1;7663:23:1;;7512:180;-1:-1:-1;7512:180:1:o;7697:248::-;7765:6;7773;7826:2;7814:9;7805:7;7801:23;7797:32;7794:52;;;7842:1;7839;7832:12;7794:52;-1:-1:-1;;7865:23:1;;;7935:2;7920:18;;;7907:32;;-1:-1:-1;7697:248:1:o;7950:751::-;8054:6;8062;8070;8078;8131:2;8119:9;8110:7;8106:23;8102:32;8099:52;;;8147:1;8144;8137:12;8099:52;8183:9;8170:23;8160:33;;8240:2;8229:9;8225:18;8212:32;8202:42;;8295:2;8284:9;8280:18;8267:32;8318:18;8359:2;8351:6;8348:14;8345:34;;;8375:1;8372;8365:12;8345:34;8413:6;8402:9;8398:22;8388:32;;8458:7;8451:4;8447:2;8443:13;8439:27;8429:55;;8480:1;8477;8470:12;8429:55;8520:2;8507:16;8546:2;8538:6;8535:14;8532:34;;;8562:1;8559;8552:12;8532:34;8615:7;8610:2;8600:6;8597:1;8593:14;8589:2;8585:23;8581:32;8578:45;8575:65;;;8636:1;8633;8626:12;8575:65;7950:751;;;;-1:-1:-1;;8667:2:1;8659:11;;-1:-1:-1;;;7950:751:1:o;8706:454::-;8798:6;8806;8814;8822;8830;8883:3;8871:9;8862:7;8858:23;8854:33;8851:53;;;8900:1;8897;8890:12;8851:53;8936:9;8923:23;8913:33;;8993:2;8982:9;8978:18;8965:32;8955:42;;9044:2;9033:9;9029:18;9016:32;9006:42;;9067:35;9098:2;9087:9;9083:18;9067:35;:::i;:::-;8706:454;;;;-1:-1:-1;8706:454:1;;9149:3;9134:19;9121:33;;8706:454;-1:-1:-1;;8706:454:1:o;9165:523::-;9263:6;9271;9279;9287;9295;9303;9356:3;9344:9;9335:7;9331:23;9327:33;9324:53;;;9373:1;9370;9363:12;9324:53;9409:9;9396:23;9386:33;;9466:2;9455:9;9451:18;9438:32;9428:42;;9517:2;9506:9;9502:18;9489:32;9479:42;;9540:35;9571:2;9560:9;9556:18;9540:35;:::i;:::-;9530:45;;9622:3;9611:9;9607:19;9594:33;9584:43;;9646:36;9677:3;9666:9;9662:19;9646:36;:::i;:::-;9636:46;;9165:523;;;;;;;;:::o;9693:435::-;9746:3;9784:5;9778:12;9811:6;9806:3;9799:19;9837:4;9866:2;9861:3;9857:12;9850:19;;9903:2;9896:5;9892:14;9924:1;9934:169;9948:6;9945:1;9942:13;9934:169;;;10009:13;;9997:26;;10043:12;;;;10078:15;;;;9970:1;9963:9;9934:169;;;-1:-1:-1;10119:3:1;;9693:435;-1:-1:-1;;;;;9693:435:1:o;10133:257::-;10174:3;10212:5;10206:12;10239:6;10234:3;10227:19;10255:63;10311:6;10304:4;10299:3;10295:14;10288:4;10281:5;10277:16;10255:63;:::i;:::-;10372:2;10351:15;-1:-1:-1;;10347:29:1;10338:39;;;;10379:4;10334:50;;10133:257;-1:-1:-1;;10133:257:1:o;10395:973::-;10480:12;;10445:3;;10535:1;10555:18;;;;10608;;;;10635:61;;10689:4;10681:6;10677:17;10667:27;;10635:61;10715:2;10763;10755:6;10752:14;10732:18;10729:38;10726:161;;;10809:10;10804:3;10800:20;10797:1;10790:31;10844:4;10841:1;10834:15;10872:4;10869:1;10862:15;10726:161;10903:18;10930:104;;;;11048:1;11043:319;;;;10896:466;;10930:104;-1:-1:-1;;10963:24:1;;10951:37;;11008:16;;;;-1:-1:-1;10930:104:1;;11043:319;25983:1;25976:14;;;26020:4;26007:18;;11137:1;11151:165;11165:6;11162:1;11159:13;11151:165;;;11243:14;;11230:11;;;11223:35;11286:16;;;;11180:10;;11151:165;;;11155:3;;11345:6;11340:3;11336:16;11329:23;;10896:466;;;;;;;10395:973;;;;:::o;11607:197::-;11735:3;11760:38;11794:3;11786:6;11760:38;:::i;11809:376::-;11985:3;12013:38;12047:3;12039:6;12013:38;:::i;:::-;12080:6;12074:13;12096:52;12141:6;12137:2;12130:4;12122:6;12118:17;12096:52;:::i;:::-;12164:15;;11809:376;-1:-1:-1;;;;11809:376:1:o;12608:826::-;-1:-1:-1;;;;;13005:15:1;;;12987:34;;13057:15;;13052:2;13037:18;;13030:43;12967:3;13104:2;13089:18;;13082:31;;;12930:4;;13136:57;;13173:19;;13165:6;13136:57;:::i;:::-;13241:9;13233:6;13229:22;13224:2;13213:9;13209:18;13202:50;13275:44;13312:6;13304;13275:44;:::i;:::-;13261:58;;13368:9;13360:6;13356:22;13350:3;13339:9;13335:19;13328:51;13396:32;13421:6;13413;13396:32;:::i;:::-;13388:40;12608:826;-1:-1:-1;;;;;;;;12608:826:1:o;13439:560::-;-1:-1:-1;;;;;13736:15:1;;;13718:34;;13788:15;;13783:2;13768:18;;13761:43;13835:2;13820:18;;13813:34;;;13878:2;13863:18;;13856:34;;;13698:3;13921;13906:19;;13899:32;;;13661:4;;13948:45;;13973:19;;13965:6;13948:45;:::i;:::-;13940:53;13439:560;-1:-1:-1;;;;;;;13439:560:1:o;14004:261::-;14183:2;14172:9;14165:21;14146:4;14203:56;14255:2;14244:9;14240:18;14232:6;14203:56;:::i;14270:465::-;14527:2;14516:9;14509:21;14490:4;14553:56;14605:2;14594:9;14590:18;14582:6;14553:56;:::i;:::-;14657:9;14649:6;14645:22;14640:2;14629:9;14625:18;14618:50;14685:44;14722:6;14714;14685:44;:::i;:::-;14677:52;14270:465;-1:-1:-1;;;;;14270:465:1:o;14932:219::-;15081:2;15070:9;15063:21;15044:4;15101:44;15141:2;15130:9;15126:18;15118:6;15101:44;:::i;15925:404::-;16127:2;16109:21;;;16166:2;16146:18;;;16139:30;16205:34;16200:2;16185:18;;16178:62;-1:-1:-1;;;16271:2:1;16256:18;;16249:38;16319:3;16304:19;;15925:404::o;17499:400::-;17701:2;17683:21;;;17740:2;17720:18;;;17713:30;17779:34;17774:2;17759:18;;17752:62;-1:-1:-1;;;17845:2:1;17830:18;;17823:34;17889:3;17874:19;;17499:400::o;19020:401::-;19222:2;19204:21;;;19261:2;19241:18;;;19234:30;19300:34;19295:2;19280:18;;19273:62;-1:-1:-1;;;19366:2:1;19351:18;;19344:35;19411:3;19396:19;;19020:401::o;19845:399::-;20047:2;20029:21;;;20086:2;20066:18;;;20059:30;20125:34;20120:2;20105:18;;20098:62;-1:-1:-1;;;20191:2:1;20176:18;;20169:33;20234:3;20219:19;;19845:399::o;20249:406::-;20451:2;20433:21;;;20490:2;20470:18;;;20463:30;20529:34;20524:2;20509:18;;20502:62;-1:-1:-1;;;20595:2:1;20580:18;;20573:40;20645:3;20630:19;;20249:406::o;20660:356::-;20862:2;20844:21;;;20881:18;;;20874:30;20940:34;20935:2;20920:18;;20913:62;21007:2;20992:18;;20660:356::o;22831:404::-;23033:2;23015:21;;;23072:2;23052:18;;;23045:30;23111:34;23106:2;23091:18;;23084:62;-1:-1:-1;;;23177:2:1;23162:18;;23155:38;23225:3;23210:19;;22831:404::o;25722:183::-;25782:4;25815:18;25807:6;25804:30;25801:56;;;25837:18;;:::i;:::-;-1:-1:-1;25882:1:1;25878:14;25894:4;25874:25;;25722:183::o;26036:128::-;26076:3;26107:1;26103:6;26100:1;26097:13;26094:39;;;26113:18;;:::i;:::-;-1:-1:-1;26149:9:1;;26036:128::o;26169:120::-;26209:1;26235;26225:35;;26240:18;;:::i;:::-;-1:-1:-1;26274:9:1;;26169:120::o;26294:168::-;26334:7;26400:1;26396;26392:6;26388:14;26385:1;26382:21;26377:1;26370:9;26363:17;26359:45;26356:71;;;26407:18;;:::i;:::-;-1:-1:-1;26447:9:1;;26294:168::o;26467:125::-;26507:4;26535:1;26532;26529:8;26526:34;;;26540:18;;:::i;:::-;-1:-1:-1;26577:9:1;;26467:125::o;26597:258::-;26669:1;26679:113;26693:6;26690:1;26687:13;26679:113;;;26769:11;;;26763:18;26750:11;;;26743:39;26715:2;26708:10;26679:113;;;26810:6;26807:1;26804:13;26801:48;;;-1:-1:-1;;26845:1:1;26827:16;;26820:27;26597:258::o;26860:380::-;26939:1;26935:12;;;;26982;;;27003:61;;27057:4;27049:6;27045:17;27035:27;;27003:61;27110:2;27102:6;27099:14;27079:18;27076:38;27073:161;;;27156:10;27151:3;27147:20;27144:1;27137:31;27191:4;27188:1;27181:15;27219:4;27216:1;27209:15;27073:161;;26860:380;;;:::o;27245:249::-;27355:2;27336:13;;-1:-1:-1;;27332:27:1;27320:40;;27390:18;27375:34;;27411:22;;;27372:62;27369:88;;;27437:18;;:::i;:::-;27473:2;27466:22;-1:-1:-1;;27245:249:1:o;27499:135::-;27538:3;-1:-1:-1;;27559:17:1;;27556:43;;;27579:18;;:::i;:::-;-1:-1:-1;27626:1:1;27615:13;;27499:135::o;27639:112::-;27671:1;27697;27687:35;;27702:18;;:::i;:::-;-1:-1:-1;27736:9:1;;27639:112::o;27756:127::-;27817:10;27812:3;27808:20;27805:1;27798:31;27848:4;27845:1;27838:15;27872:4;27869:1;27862:15;27888:127;27949:10;27944:3;27940:20;27937:1;27930:31;27980:4;27977:1;27970:15;28004:4;28001:1;27994:15;28020:127;28081:10;28076:3;28072:20;28069:1;28062:31;28112:4;28109:1;28102:15;28136:4;28133:1;28126:15;28152:127;28213:10;28208:3;28204:20;28201:1;28194:31;28244:4;28241:1;28234:15;28268:4;28265:1;28258:15;28284:179;28319:3;28361:1;28343:16;28340:23;28337:120;;;28407:1;28404;28401;28386:23;-1:-1:-1;28444:1:1;28438:8;28433:3;28429:18;28337:120;28284:179;:::o;28468:671::-;28507:3;28549:4;28531:16;28528:26;28525:39;;;28468:671;:::o;28525:39::-;28591:2;28585:9;-1:-1:-1;;28656:16:1;28652:25;;28649:1;28585:9;28628:50;28707:4;28701:11;28731:16;28766:18;28837:2;28830:4;28822:6;28818:17;28815:25;28810:2;28802:6;28799:14;28796:45;28793:58;;;28844:5;;;;;28468:671;:::o;28793:58::-;28881:6;28875:4;28871:17;28860:28;;28917:3;28911:10;28944:2;28936:6;28933:14;28930:27;;;28950:5;;;;;;28468:671;:::o;28930:27::-;29034:2;29015:16;29009:4;29005:27;29001:36;28994:4;28985:6;28980:3;28976:16;28972:27;28969:69;28966:82;;;29041:5;;;;;;28468:671;:::o;28966:82::-;29057:57;29108:4;29099:6;29091;29087:19;29083:30;29077:4;29057:57;:::i;:::-;-1:-1:-1;29130:3:1;;28468:671;-1:-1:-1;;;;;28468:671:1:o;29144:131::-;-1:-1:-1;;;;;;29218:32:1;;29208:43;;29198:71;;29265:1;29262;29255:12

Swarm Source

ipfs://6bc9defb254029b06c6831f0fa585ead1ef0884a920786b14a28a0d2fb78d8a5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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