ETH Price: $2,526.21 (+0.44%)

Token

AlreadyDead (DEAD)
 

Overview

Max Total Supply

118 DEAD

Holders

68

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xmraa.eth
Balance
1 DEAD
0xA8C078BeE4f3D33Da13669D73F2822ee1000F6BA
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:
AlreadyDead

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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: WAGDIE/AlreadyDead.sol



pragma solidity ^0.8.4;






contract AlreadyDead is ERC721Enumerable, Ownable {

    string public baseURI = "ipfs://QmNrHsNgPYPFfQbXJ6Mtej4uU6Ba3sJMD4vCaFK8EQgWkz/";

    address private signer = 0x7B0c04da32690fB660D1918Bb0b2207968577f6F;

    mapping(bytes32 => bool) private usedHash;
	
	constructor() ERC721("AlreadyDead", "DEAD") {}
    
    function verify(bytes32 hash, bytes memory signature) internal view returns (bool) {
        return ECDSA.recover(hash, signature) == signer;
    }

    function mint(uint256 tokenId, bytes memory signature) public {
        bytes32 hash = ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(msg.sender, tokenId)));
        require(!usedHash[hash], "Already used hash");
        require(verify(hash, signature), "Invalid Signature");

        usedHash[hash] = true;

        _safeMint(msg.sender, tokenId);
    }

	function setBaseURI(string memory _newBaseURI) public onlyOwner {
		baseURI = _newBaseURI;
	}

	function _BaseURI() internal view virtual returns (string memory) {
		return baseURI;
	}

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
		require(_exists(tokenId), "Token doesn't exist");

        return string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json"));
	}

    function tokenExists(uint256 tokenId) public view returns (bool) {
		return _exists(tokenId);
	}

    function setSigner(address _address) external onlyOwner {
        signer = _address;
    }

    function withdraw() public payable onlyOwner {
	    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
		require(success);
	}

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60e06040526036608081815290620025fd60a03980516200002991600b916020909101906200013c565b50600c80546001600160a01b031916737b0c04da32690fb660d1918bb0b2207968577f6f1790553480156200005d57600080fd5b50604080518082018252600b81526a105b1c9958591e5119585960aa1b6020808301918252835180850190945260048452631111505160e21b908401528151919291620000ad916000916200013c565b508051620000c39060019060208401906200013c565b505050620000e0620000da620000e660201b60201c565b620000ea565b6200021e565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014a90620001e2565b90600052602060002090601f0160209004810192826200016e5760008555620001b9565b82601f106200018957805160ff1916838001178555620001b9565b82800160010185558215620001b9579182015b82811115620001b95782518255916020019190600101906200019c565b50620001c7929150620001cb565b5090565b5b80821115620001c75760008155600101620001cc565b600181811c90821680620001f757607f821691505b6020821081036200021857634e487b7160e01b600052602260045260246000fd5b50919050565b6123cf806200022e6000396000f3fe6080604052600436106101655760003560e01c80636352211e116100d157806395d89b411161008a578063c87b56dd11610064578063c87b56dd146103ff578063db7fd4081461041f578063e985e9c51461043f578063f2fde38b1461048857600080fd5b806395d89b41146103aa578063a22cb465146103bf578063b88d4fde146103df57600080fd5b80636352211e146103025780636c0360eb146103225780636c19e7831461033757806370a0823114610357578063715018a6146103775780638da5cb5b1461038c57600080fd5b806323b872dd1161012357806323b872dd1461025a5780632f745c591461027a5780633ccfd60b1461029a57806342842e0e146102a25780634f6ccce7146102c257806355f804b3146102e257600080fd5b8062923f9e1461016a57806301ffc9a71461019f57806306fdde03146101bf578063081812fc146101e1578063095ea7b31461021957806318160ddd1461023b575b600080fd5b34801561017657600080fd5b5061018a610185366004611d0b565b6104a8565b60405190151581526020015b60405180910390f35b3480156101ab57600080fd5b5061018a6101ba366004611d3a565b6104c9565b3480156101cb57600080fd5b506101d46104ee565b6040516101969190611db6565b3480156101ed57600080fd5b506102016101fc366004611d0b565b610580565b6040516001600160a01b039091168152602001610196565b34801561022557600080fd5b50610239610234366004611de5565b61061a565b005b34801561024757600080fd5b506008545b604051908152602001610196565b34801561026657600080fd5b50610239610275366004611e0f565b61072f565b34801561028657600080fd5b5061024c610295366004611de5565b610760565b6102396107f6565b3480156102ae57600080fd5b506102396102bd366004611e0f565b610878565b3480156102ce57600080fd5b5061024c6102dd366004611d0b565b610893565b3480156102ee57600080fd5b506102396102fd366004611ed7565b610926565b34801561030e57600080fd5b5061020161031d366004611d0b565b610967565b34801561032e57600080fd5b506101d46109de565b34801561034357600080fd5b50610239610352366004611f20565b610a6c565b34801561036357600080fd5b5061024c610372366004611f20565b610ab8565b34801561038357600080fd5b50610239610b3f565b34801561039857600080fd5b50600a546001600160a01b0316610201565b3480156103b657600080fd5b506101d4610b75565b3480156103cb57600080fd5b506102396103da366004611f3b565b610b84565b3480156103eb57600080fd5b506102396103fa366004611f97565b610b8f565b34801561040b57600080fd5b506101d461041a366004611d0b565b610bc7565b34801561042b57600080fd5b5061023961043a366004611fff565b610c56565b34801561044b57600080fd5b5061018a61045a366004612046565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561049457600080fd5b506102396104a3366004611f20565b610dae565b6000818152600260205260408120546001600160a01b031615155b92915050565b60006001600160e01b0319821663780e9d6360e01b14806104c357506104c382610e46565b6060600080546104fd90612079565b80601f016020809104026020016040519081016040528092919081815260200182805461052990612079565b80156105765780601f1061054b57610100808354040283529160200191610576565b820191906000526020600020905b81548152906001019060200180831161055957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105fe5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062582610967565b9050806001600160a01b0316836001600160a01b0316036106925760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105f5565b336001600160a01b03821614806106ae57506106ae813361045a565b6107205760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105f5565b61072a8383610e96565b505050565b6107393382610f04565b6107555760405162461bcd60e51b81526004016105f5906120b3565b61072a838383610ffb565b600061076b83610ab8565b82106107cd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105f5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108205760405162461bcd60e51b81526004016105f590612104565b604051600090339047908381818185875af1925050503d8060008114610862576040519150601f19603f3d011682016040523d82523d6000602084013e610867565b606091505b505090508061087557600080fd5b50565b61072a83838360405180602001604052806000815250610b8f565b600061089e60085490565b82106109015760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105f5565b6008828154811061091457610914612139565b90600052602060002001549050919050565b600a546001600160a01b031633146109505760405162461bcd60e51b81526004016105f590612104565b805161096390600b906020840190611c72565b5050565b6000818152600260205260408120546001600160a01b0316806104c35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105f5565b600b80546109eb90612079565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1790612079565b8015610a645780601f10610a3957610100808354040283529160200191610a64565b820191906000526020600020905b815481529060010190602001808311610a4757829003601f168201915b505050505081565b600a546001600160a01b03163314610a965760405162461bcd60e51b81526004016105f590612104565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610b235760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105f5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b695760405162461bcd60e51b81526004016105f590612104565b610b7360006111a2565b565b6060600180546104fd90612079565b6109633383836111f4565b610b993383610f04565b610bb55760405162461bcd60e51b81526004016105f5906120b3565b610bc1848484846112c2565b50505050565b6000818152600260205260409020546060906001600160a01b0316610c245760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88191bd95cdb89dd08195e1a5cdd606a1b60448201526064016105f5565b600b610c2f836112f5565b604051602001610c4092919061216b565b6040516020818303038152906040529050919050565b6040516bffffffffffffffffffffffff193360601b16602082015260348101839052600090610ceb90605401604051602081830303815290604052805190602001206040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b6000818152600d602052604090205490915060ff1615610d415760405162461bcd60e51b8152602060048201526011602482015270082d8e4cac2c8f240eae6cac840d0c2e6d607b1b60448201526064016105f5565b610d4b81836113f6565b610d8b5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b60448201526064016105f5565b6000818152600d60205260409020805460ff1916600117905561072a3384611420565b600a546001600160a01b03163314610dd85760405162461bcd60e51b81526004016105f590612104565b6001600160a01b038116610e3d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f5565b610875816111a2565b60006001600160e01b031982166380ac58cd60e01b1480610e7757506001600160e01b03198216635b5e139f60e01b145b806104c357506301ffc9a760e01b6001600160e01b03198316146104c3565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ecb82610967565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f7d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105f5565b6000610f8883610967565b9050806001600160a01b0316846001600160a01b03161480610fcf57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610ff35750836001600160a01b0316610fe884610580565b6001600160a01b0316145b949350505050565b826001600160a01b031661100e82610967565b6001600160a01b0316146110725760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016105f5565b6001600160a01b0382166110d45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105f5565b6110df83838361143a565b6110ea600082610e96565b6001600160a01b038316600090815260036020526040812080546001929061111390849061223b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611141908490612252565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036112555760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105f5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112cd848484610ffb565b6112d9848484846114f2565b610bc15760405162461bcd60e51b81526004016105f59061226a565b60608160000361131c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113465780611330816122bc565b915061133f9050600a836122eb565b9150611320565b60008167ffffffffffffffff81111561136157611361611e4b565b6040519080825280601f01601f19166020018201604052801561138b576020820181803683370190505b5090505b8415610ff3576113a060018361223b565b91506113ad600a866122ff565b6113b8906030612252565b60f81b8183815181106113cd576113cd612139565b60200101906001600160f81b031916908160001a9053506113ef600a866122eb565b945061138f565b600c546000906001600160a01b031661140f84846115f3565b6001600160a01b0316149392505050565b610963828260405180602001604052806000815250611617565b6001600160a01b0383166114955761149081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6114b8565b816001600160a01b0316836001600160a01b0316146114b8576114b8838261164a565b6001600160a01b0382166114cf5761072a816116e7565b826001600160a01b0316826001600160a01b03161461072a5761072a8282611796565b60006001600160a01b0384163b156115e857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611536903390899088908890600401612313565b6020604051808303816000875af1925050508015611571575060408051601f3d908101601f1916820190925261156e91810190612350565b60015b6115ce573d80801561159f576040519150601f19603f3d011682016040523d82523d6000602084013e6115a4565b606091505b5080516000036115c65760405162461bcd60e51b81526004016105f59061226a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ff3565b506001949350505050565b600080600061160285856117da565b9150915061160f81611848565b509392505050565b61162183836119fe565b61162e60008484846114f2565b61072a5760405162461bcd60e51b81526004016105f59061226a565b6000600161165784610ab8565b611661919061223b565b6000838152600760205260409020549091508082146116b4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906116f99060019061223b565b6000838152600960205260408120546008805493945090928490811061172157611721612139565b90600052602060002001549050806008838154811061174257611742612139565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061177a5761177a61236d565b6001900381819060005260206000200160009055905550505050565b60006117a183610ab8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60008082516041036118105760208301516040840151606085015160001a61180487828585611b4c565b94509450505050611841565b8251604003611839576020830151604084015161182e868383611c39565b935093505050611841565b506000905060025b9250929050565b600081600481111561185c5761185c612383565b036118645750565b600181600481111561187857611878612383565b036118c55760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016105f5565b60028160048111156118d9576118d9612383565b036119265760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016105f5565b600381600481111561193a5761193a612383565b036119925760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016105f5565b60048160048111156119a6576119a6612383565b036108755760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016105f5565b6001600160a01b038216611a545760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105f5565b6000818152600260205260409020546001600160a01b031615611ab95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105f5565b611ac56000838361143a565b6001600160a01b0382166000908152600360205260408120805460019290611aee908490612252565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611b835750600090506003611c30565b8460ff16601b14158015611b9b57508460ff16601c14155b15611bac5750600090506004611c30565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611c00573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611c2957600060019250925050611c30565b9150600090505b94509492505050565b6000806001600160ff1b03831681611c5660ff86901c601b612252565b9050611c6487828885611b4c565b935093505050935093915050565b828054611c7e90612079565b90600052602060002090601f016020900481019282611ca05760008555611ce6565b82601f10611cb957805160ff1916838001178555611ce6565b82800160010185558215611ce6579182015b82811115611ce6578251825591602001919060010190611ccb565b50611cf2929150611cf6565b5090565b5b80821115611cf25760008155600101611cf7565b600060208284031215611d1d57600080fd5b5035919050565b6001600160e01b03198116811461087557600080fd5b600060208284031215611d4c57600080fd5b8135611d5781611d24565b9392505050565b60005b83811015611d79578181015183820152602001611d61565b83811115610bc15750506000910152565b60008151808452611da2816020860160208601611d5e565b601f01601f19169290920160200192915050565b602081526000611d576020830184611d8a565b80356001600160a01b0381168114611de057600080fd5b919050565b60008060408385031215611df857600080fd5b611e0183611dc9565b946020939093013593505050565b600080600060608486031215611e2457600080fd5b611e2d84611dc9565b9250611e3b60208501611dc9565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e7c57611e7c611e4b565b604051601f8501601f19908116603f01168101908282118183101715611ea457611ea4611e4b565b81604052809350858152868686011115611ebd57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ee957600080fd5b813567ffffffffffffffff811115611f0057600080fd5b8201601f81018413611f1157600080fd5b610ff384823560208401611e61565b600060208284031215611f3257600080fd5b611d5782611dc9565b60008060408385031215611f4e57600080fd5b611f5783611dc9565b915060208301358015158114611f6c57600080fd5b809150509250929050565b600082601f830112611f8857600080fd5b611d5783833560208501611e61565b60008060008060808587031215611fad57600080fd5b611fb685611dc9565b9350611fc460208601611dc9565b925060408501359150606085013567ffffffffffffffff811115611fe757600080fd5b611ff387828801611f77565b91505092959194509250565b6000806040838503121561201257600080fd5b82359150602083013567ffffffffffffffff81111561203057600080fd5b61203c85828601611f77565b9150509250929050565b6000806040838503121561205957600080fd5b61206283611dc9565b915061207060208401611dc9565b90509250929050565b600181811c9082168061208d57607f821691505b6020821081036120ad57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60008151612161818560208601611d5e565b9290920192915050565b600080845481600182811c91508083168061218757607f831692505b602080841082036121a657634e487b7160e01b86526022600452602486fd5b8180156121ba57600181146121cb576121f8565b60ff198616895284890196506121f8565b60008b81526020902060005b868110156121f05781548b8201529085019083016121d7565b505084890196505b50505050505061221c61220b828661214f565b64173539b7b760d91b815260050190565b95945050505050565b634e487b7160e01b600052601160045260246000fd5b60008282101561224d5761224d612225565b500390565b6000821982111561226557612265612225565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000600182016122ce576122ce612225565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826122fa576122fa6122d5565b500490565b60008261230e5761230e6122d5565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061234690830184611d8a565b9695505050505050565b60006020828403121561236257600080fd5b8151611d5781611d24565b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052602160045260246000fdfea2646970667358221220a001479e6a046e478ff3aa9bc92282ab466f4e9bf1e931168145df37469036c264736f6c634300080e0033697066733a2f2f516d4e7248734e6750595046665162584a364d74656a34755536426133734a4d4434764361464b38455167576b7a2f

Deployed Bytecode

0x6080604052600436106101655760003560e01c80636352211e116100d157806395d89b411161008a578063c87b56dd11610064578063c87b56dd146103ff578063db7fd4081461041f578063e985e9c51461043f578063f2fde38b1461048857600080fd5b806395d89b41146103aa578063a22cb465146103bf578063b88d4fde146103df57600080fd5b80636352211e146103025780636c0360eb146103225780636c19e7831461033757806370a0823114610357578063715018a6146103775780638da5cb5b1461038c57600080fd5b806323b872dd1161012357806323b872dd1461025a5780632f745c591461027a5780633ccfd60b1461029a57806342842e0e146102a25780634f6ccce7146102c257806355f804b3146102e257600080fd5b8062923f9e1461016a57806301ffc9a71461019f57806306fdde03146101bf578063081812fc146101e1578063095ea7b31461021957806318160ddd1461023b575b600080fd5b34801561017657600080fd5b5061018a610185366004611d0b565b6104a8565b60405190151581526020015b60405180910390f35b3480156101ab57600080fd5b5061018a6101ba366004611d3a565b6104c9565b3480156101cb57600080fd5b506101d46104ee565b6040516101969190611db6565b3480156101ed57600080fd5b506102016101fc366004611d0b565b610580565b6040516001600160a01b039091168152602001610196565b34801561022557600080fd5b50610239610234366004611de5565b61061a565b005b34801561024757600080fd5b506008545b604051908152602001610196565b34801561026657600080fd5b50610239610275366004611e0f565b61072f565b34801561028657600080fd5b5061024c610295366004611de5565b610760565b6102396107f6565b3480156102ae57600080fd5b506102396102bd366004611e0f565b610878565b3480156102ce57600080fd5b5061024c6102dd366004611d0b565b610893565b3480156102ee57600080fd5b506102396102fd366004611ed7565b610926565b34801561030e57600080fd5b5061020161031d366004611d0b565b610967565b34801561032e57600080fd5b506101d46109de565b34801561034357600080fd5b50610239610352366004611f20565b610a6c565b34801561036357600080fd5b5061024c610372366004611f20565b610ab8565b34801561038357600080fd5b50610239610b3f565b34801561039857600080fd5b50600a546001600160a01b0316610201565b3480156103b657600080fd5b506101d4610b75565b3480156103cb57600080fd5b506102396103da366004611f3b565b610b84565b3480156103eb57600080fd5b506102396103fa366004611f97565b610b8f565b34801561040b57600080fd5b506101d461041a366004611d0b565b610bc7565b34801561042b57600080fd5b5061023961043a366004611fff565b610c56565b34801561044b57600080fd5b5061018a61045a366004612046565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561049457600080fd5b506102396104a3366004611f20565b610dae565b6000818152600260205260408120546001600160a01b031615155b92915050565b60006001600160e01b0319821663780e9d6360e01b14806104c357506104c382610e46565b6060600080546104fd90612079565b80601f016020809104026020016040519081016040528092919081815260200182805461052990612079565b80156105765780601f1061054b57610100808354040283529160200191610576565b820191906000526020600020905b81548152906001019060200180831161055957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105fe5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062582610967565b9050806001600160a01b0316836001600160a01b0316036106925760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105f5565b336001600160a01b03821614806106ae57506106ae813361045a565b6107205760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105f5565b61072a8383610e96565b505050565b6107393382610f04565b6107555760405162461bcd60e51b81526004016105f5906120b3565b61072a838383610ffb565b600061076b83610ab8565b82106107cd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105f5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108205760405162461bcd60e51b81526004016105f590612104565b604051600090339047908381818185875af1925050503d8060008114610862576040519150601f19603f3d011682016040523d82523d6000602084013e610867565b606091505b505090508061087557600080fd5b50565b61072a83838360405180602001604052806000815250610b8f565b600061089e60085490565b82106109015760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105f5565b6008828154811061091457610914612139565b90600052602060002001549050919050565b600a546001600160a01b031633146109505760405162461bcd60e51b81526004016105f590612104565b805161096390600b906020840190611c72565b5050565b6000818152600260205260408120546001600160a01b0316806104c35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105f5565b600b80546109eb90612079565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1790612079565b8015610a645780601f10610a3957610100808354040283529160200191610a64565b820191906000526020600020905b815481529060010190602001808311610a4757829003601f168201915b505050505081565b600a546001600160a01b03163314610a965760405162461bcd60e51b81526004016105f590612104565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610b235760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105f5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b695760405162461bcd60e51b81526004016105f590612104565b610b7360006111a2565b565b6060600180546104fd90612079565b6109633383836111f4565b610b993383610f04565b610bb55760405162461bcd60e51b81526004016105f5906120b3565b610bc1848484846112c2565b50505050565b6000818152600260205260409020546060906001600160a01b0316610c245760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88191bd95cdb89dd08195e1a5cdd606a1b60448201526064016105f5565b600b610c2f836112f5565b604051602001610c4092919061216b565b6040516020818303038152906040529050919050565b6040516bffffffffffffffffffffffff193360601b16602082015260348101839052600090610ceb90605401604051602081830303815290604052805190602001206040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b6000818152600d602052604090205490915060ff1615610d415760405162461bcd60e51b8152602060048201526011602482015270082d8e4cac2c8f240eae6cac840d0c2e6d607b1b60448201526064016105f5565b610d4b81836113f6565b610d8b5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b60448201526064016105f5565b6000818152600d60205260409020805460ff1916600117905561072a3384611420565b600a546001600160a01b03163314610dd85760405162461bcd60e51b81526004016105f590612104565b6001600160a01b038116610e3d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105f5565b610875816111a2565b60006001600160e01b031982166380ac58cd60e01b1480610e7757506001600160e01b03198216635b5e139f60e01b145b806104c357506301ffc9a760e01b6001600160e01b03198316146104c3565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ecb82610967565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610f7d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105f5565b6000610f8883610967565b9050806001600160a01b0316846001600160a01b03161480610fcf57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610ff35750836001600160a01b0316610fe884610580565b6001600160a01b0316145b949350505050565b826001600160a01b031661100e82610967565b6001600160a01b0316146110725760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016105f5565b6001600160a01b0382166110d45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105f5565b6110df83838361143a565b6110ea600082610e96565b6001600160a01b038316600090815260036020526040812080546001929061111390849061223b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611141908490612252565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036112555760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105f5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112cd848484610ffb565b6112d9848484846114f2565b610bc15760405162461bcd60e51b81526004016105f59061226a565b60608160000361131c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113465780611330816122bc565b915061133f9050600a836122eb565b9150611320565b60008167ffffffffffffffff81111561136157611361611e4b565b6040519080825280601f01601f19166020018201604052801561138b576020820181803683370190505b5090505b8415610ff3576113a060018361223b565b91506113ad600a866122ff565b6113b8906030612252565b60f81b8183815181106113cd576113cd612139565b60200101906001600160f81b031916908160001a9053506113ef600a866122eb565b945061138f565b600c546000906001600160a01b031661140f84846115f3565b6001600160a01b0316149392505050565b610963828260405180602001604052806000815250611617565b6001600160a01b0383166114955761149081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6114b8565b816001600160a01b0316836001600160a01b0316146114b8576114b8838261164a565b6001600160a01b0382166114cf5761072a816116e7565b826001600160a01b0316826001600160a01b03161461072a5761072a8282611796565b60006001600160a01b0384163b156115e857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611536903390899088908890600401612313565b6020604051808303816000875af1925050508015611571575060408051601f3d908101601f1916820190925261156e91810190612350565b60015b6115ce573d80801561159f576040519150601f19603f3d011682016040523d82523d6000602084013e6115a4565b606091505b5080516000036115c65760405162461bcd60e51b81526004016105f59061226a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ff3565b506001949350505050565b600080600061160285856117da565b9150915061160f81611848565b509392505050565b61162183836119fe565b61162e60008484846114f2565b61072a5760405162461bcd60e51b81526004016105f59061226a565b6000600161165784610ab8565b611661919061223b565b6000838152600760205260409020549091508082146116b4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906116f99060019061223b565b6000838152600960205260408120546008805493945090928490811061172157611721612139565b90600052602060002001549050806008838154811061174257611742612139565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061177a5761177a61236d565b6001900381819060005260206000200160009055905550505050565b60006117a183610ab8565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60008082516041036118105760208301516040840151606085015160001a61180487828585611b4c565b94509450505050611841565b8251604003611839576020830151604084015161182e868383611c39565b935093505050611841565b506000905060025b9250929050565b600081600481111561185c5761185c612383565b036118645750565b600181600481111561187857611878612383565b036118c55760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016105f5565b60028160048111156118d9576118d9612383565b036119265760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016105f5565b600381600481111561193a5761193a612383565b036119925760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016105f5565b60048160048111156119a6576119a6612383565b036108755760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016105f5565b6001600160a01b038216611a545760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105f5565b6000818152600260205260409020546001600160a01b031615611ab95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105f5565b611ac56000838361143a565b6001600160a01b0382166000908152600360205260408120805460019290611aee908490612252565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611b835750600090506003611c30565b8460ff16601b14158015611b9b57508460ff16601c14155b15611bac5750600090506004611c30565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611c00573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611c2957600060019250925050611c30565b9150600090505b94509492505050565b6000806001600160ff1b03831681611c5660ff86901c601b612252565b9050611c6487828885611b4c565b935093505050935093915050565b828054611c7e90612079565b90600052602060002090601f016020900481019282611ca05760008555611ce6565b82601f10611cb957805160ff1916838001178555611ce6565b82800160010185558215611ce6579182015b82811115611ce6578251825591602001919060010190611ccb565b50611cf2929150611cf6565b5090565b5b80821115611cf25760008155600101611cf7565b600060208284031215611d1d57600080fd5b5035919050565b6001600160e01b03198116811461087557600080fd5b600060208284031215611d4c57600080fd5b8135611d5781611d24565b9392505050565b60005b83811015611d79578181015183820152602001611d61565b83811115610bc15750506000910152565b60008151808452611da2816020860160208601611d5e565b601f01601f19169290920160200192915050565b602081526000611d576020830184611d8a565b80356001600160a01b0381168114611de057600080fd5b919050565b60008060408385031215611df857600080fd5b611e0183611dc9565b946020939093013593505050565b600080600060608486031215611e2457600080fd5b611e2d84611dc9565b9250611e3b60208501611dc9565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e7c57611e7c611e4b565b604051601f8501601f19908116603f01168101908282118183101715611ea457611ea4611e4b565b81604052809350858152868686011115611ebd57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ee957600080fd5b813567ffffffffffffffff811115611f0057600080fd5b8201601f81018413611f1157600080fd5b610ff384823560208401611e61565b600060208284031215611f3257600080fd5b611d5782611dc9565b60008060408385031215611f4e57600080fd5b611f5783611dc9565b915060208301358015158114611f6c57600080fd5b809150509250929050565b600082601f830112611f8857600080fd5b611d5783833560208501611e61565b60008060008060808587031215611fad57600080fd5b611fb685611dc9565b9350611fc460208601611dc9565b925060408501359150606085013567ffffffffffffffff811115611fe757600080fd5b611ff387828801611f77565b91505092959194509250565b6000806040838503121561201257600080fd5b82359150602083013567ffffffffffffffff81111561203057600080fd5b61203c85828601611f77565b9150509250929050565b6000806040838503121561205957600080fd5b61206283611dc9565b915061207060208401611dc9565b90509250929050565b600181811c9082168061208d57607f821691505b6020821081036120ad57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60008151612161818560208601611d5e565b9290920192915050565b600080845481600182811c91508083168061218757607f831692505b602080841082036121a657634e487b7160e01b86526022600452602486fd5b8180156121ba57600181146121cb576121f8565b60ff198616895284890196506121f8565b60008b81526020902060005b868110156121f05781548b8201529085019083016121d7565b505084890196505b50505050505061221c61220b828661214f565b64173539b7b760d91b815260050190565b95945050505050565b634e487b7160e01b600052601160045260246000fd5b60008282101561224d5761224d612225565b500390565b6000821982111561226557612265612225565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000600182016122ce576122ce612225565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826122fa576122fa6122d5565b500490565b60008261230e5761230e6122d5565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061234690830184611d8a565b9695505050505050565b60006020828403121561236257600080fd5b8151611d5781611d24565b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052602160045260246000fdfea2646970667358221220a001479e6a046e478ff3aa9bc92282ab466f4e9bf1e931168145df37469036c264736f6c634300080e0033

Deployed Bytecode Sourcemap

55111:1671:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56415:98;;;;;;;;;;-1:-1:-1;56415:98:0;;;;;:::i;:::-;;:::i;:::-;;;364:14:1;;357:22;339:41;;327:2;312:18;56415:98:0;;;;;;;;46357:224;;;;;;;;;;-1:-1:-1;46357:224:0;;;;;:::i;:::-;;:::i;33176:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34736:221::-;;;;;;;;;;-1:-1:-1;34736:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;34736:221:0;1550:203:1;34259:411:0;;;;;;;;;;-1:-1:-1;34259:411:0;;;;;:::i;:::-;;:::i;:::-;;46997:113;;;;;;;;;;-1:-1:-1;47085:10:0;:17;46997:113;;;2341:25:1;;;2329:2;2314:18;46997:113:0;2195:177:1;35486:339:0;;;;;;;;;;-1:-1:-1;35486:339:0;;;;;:::i;:::-;;:::i;46665:256::-;;;;;;;;;;-1:-1:-1;46665:256:0;;;;;:::i;:::-;;:::i;56621:156::-;;;:::i;35896:185::-;;;;;;;;;;-1:-1:-1;35896:185:0;;;;;:::i;:::-;;:::i;47187:233::-;;;;;;;;;;-1:-1:-1;47187:233:0;;;;;:::i;:::-;;:::i;55974:95::-;;;;;;;;;;-1:-1:-1;55974:95:0;;;;;:::i;:::-;;:::i;32870:239::-;;;;;;;;;;-1:-1:-1;32870:239:0;;;;;:::i;:::-;;:::i;55170:80::-;;;;;;;;;;;;;:::i;56521:92::-;;;;;;;;;;-1:-1:-1;56521:92:0;;;;;:::i;:::-;;:::i;32600:208::-;;;;;;;;;;-1:-1:-1;32600:208:0;;;;;:::i;:::-;;:::i;54218:103::-;;;;;;;;;;;;;:::i;53567:87::-;;;;;;;;;;-1:-1:-1;53640:6:0;;-1:-1:-1;;;;;53640:6:0;53567:87;;33345:104;;;;;;;;;;;;;:::i;35029:155::-;;;;;;;;;;-1:-1:-1;35029:155:0;;;;;:::i;:::-;;:::i;36152:328::-;;;;;;;;;;-1:-1:-1;36152:328:0;;;;;:::i;:::-;;:::i;56172:235::-;;;;;;;;;;-1:-1:-1;56172:235:0;;;;;:::i;:::-;;:::i;55598:371::-;;;;;;;;;;-1:-1:-1;55598:371:0;;;;;:::i;:::-;;:::i;35255:164::-;;;;;;;;;;-1:-1:-1;35255:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35376:25:0;;;35352:4;35376:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35255:164;54476:201;;;;;;;;;;-1:-1:-1;54476:201:0;;;;;:::i;:::-;;:::i;56415:98::-;56474:4;38079:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38079:16:0;:30;;56492:16;56485:23;56415:98;-1:-1:-1;;56415:98:0:o;46357:224::-;46459:4;-1:-1:-1;;;;;;46483:50:0;;-1:-1:-1;;;46483:50:0;;:90;;;46537:36;46561:11;46537:23;:36::i;33176:100::-;33230:13;33263:5;33256:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33176:100;:::o;34736:221::-;34812:7;38079:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38079:16:0;34832:73;;;;-1:-1:-1;;;34832:73:0;;6491:2:1;34832:73:0;;;6473:21:1;6530:2;6510:18;;;6503:30;6569:34;6549:18;;;6542:62;-1:-1:-1;;;6620:18:1;;;6613:42;6672:19;;34832:73:0;;;;;;;;;-1:-1:-1;34925:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34925:24:0;;34736:221::o;34259:411::-;34340:13;34356:23;34371:7;34356:14;:23::i;:::-;34340:39;;34404:5;-1:-1:-1;;;;;34398:11:0;:2;-1:-1:-1;;;;;34398:11:0;;34390:57;;;;-1:-1:-1;;;34390:57:0;;6904:2:1;34390:57:0;;;6886:21:1;6943:2;6923:18;;;6916:30;6982:34;6962:18;;;6955:62;-1:-1:-1;;;7033:18:1;;;7026:31;7074:19;;34390:57:0;6702:397:1;34390:57:0;30690:10;-1:-1:-1;;;;;34482:21:0;;;;:62;;-1:-1:-1;34507:37:0;34524:5;30690:10;35255:164;:::i;34507:37::-;34460:168;;;;-1:-1:-1;;;34460:168:0;;7306:2:1;34460:168:0;;;7288:21:1;7345:2;7325:18;;;7318:30;7384:34;7364:18;;;7357:62;7455:26;7435:18;;;7428:54;7499:19;;34460:168:0;7104:420:1;34460:168:0;34641:21;34650:2;34654:7;34641:8;:21::i;:::-;34329:341;34259:411;;:::o;35486:339::-;35681:41;30690:10;35714:7;35681:18;:41::i;:::-;35673:103;;;;-1:-1:-1;;;35673:103:0;;;;;;;:::i;:::-;35789:28;35799:4;35805:2;35809:7;35789:9;:28::i;46665:256::-;46762:7;46798:23;46815:5;46798:16;:23::i;:::-;46790:5;:31;46782:87;;;;-1:-1:-1;;;46782:87:0;;8149:2:1;46782:87:0;;;8131:21:1;8188:2;8168:18;;;8161:30;8227:34;8207:18;;;8200:62;-1:-1:-1;;;8278:18:1;;;8271:41;8329:19;;46782:87:0;7947:407:1;46782:87:0;-1:-1:-1;;;;;;46887:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;46665:256::o;56621:156::-;53640:6;;-1:-1:-1;;;;;53640:6:0;30690:10;53787:23;53779:68;;;;-1:-1:-1;;;53779:68:0;;;;;;;:::i;:::-;56693:58:::1;::::0;56675:12:::1;::::0;56701:10:::1;::::0;56725:21:::1;::::0;56675:12;56693:58;56675:12;56693:58;56725:21;56701:10;56693:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56674:77;;;56764:7;56756:16;;;::::0;::::1;;56666:111;56621:156::o:0;35896:185::-;36034:39;36051:4;36057:2;36061:7;36034:39;;;;;;;;;;;;:16;:39::i;47187:233::-;47262:7;47298:30;47085:10;:17;;46997:113;47298:30;47290:5;:38;47282:95;;;;-1:-1:-1;;;47282:95:0;;9132:2:1;47282:95:0;;;9114:21:1;9171:2;9151:18;;;9144:30;9210:34;9190:18;;;9183:62;-1:-1:-1;;;9261:18:1;;;9254:42;9313:19;;47282:95:0;8930:408:1;47282:95:0;47395:10;47406:5;47395:17;;;;;;;;:::i;:::-;;;;;;;;;47388:24;;47187:233;;;:::o;55974:95::-;53640:6;;-1:-1:-1;;;;;53640:6:0;30690:10;53787:23;53779:68;;;;-1:-1:-1;;;53779:68:0;;;;;;;:::i;:::-;56043:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55974:95:::0;:::o;32870:239::-;32942:7;32978:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32978:16:0;;33005:73;;;;-1:-1:-1;;;33005:73:0;;9677:2:1;33005:73:0;;;9659:21:1;9716:2;9696:18;;;9689:30;9755:34;9735:18;;;9728:62;-1:-1:-1;;;9806:18:1;;;9799:39;9855:19;;33005:73:0;9475:405:1;55170:80:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56521:92::-;53640:6;;-1:-1:-1;;;;;53640:6:0;30690:10;53787:23;53779:68;;;;-1:-1:-1;;;53779:68:0;;;;;;;:::i;:::-;56588:6:::1;:17:::0;;-1:-1:-1;;;;;;56588:17:0::1;-1:-1:-1::0;;;;;56588:17:0;;;::::1;::::0;;;::::1;::::0;;56521:92::o;32600:208::-;32672:7;-1:-1:-1;;;;;32700:19:0;;32692:74;;;;-1:-1:-1;;;32692:74:0;;10087:2:1;32692:74:0;;;10069:21:1;10126:2;10106:18;;;10099:30;10165:34;10145:18;;;10138:62;-1:-1:-1;;;10216:18:1;;;10209:40;10266:19;;32692:74:0;9885:406:1;32692:74:0;-1:-1:-1;;;;;;32784:16:0;;;;;:9;:16;;;;;;;32600:208::o;54218:103::-;53640:6;;-1:-1:-1;;;;;53640:6:0;30690:10;53787:23;53779:68;;;;-1:-1:-1;;;53779:68:0;;;;;;;:::i;:::-;54283:30:::1;54310:1;54283:18;:30::i;:::-;54218:103::o:0;33345:104::-;33401:13;33434:7;33427:14;;;;;:::i;35029:155::-;35124:52;30690:10;35157:8;35167;35124:18;:52::i;36152:328::-;36327:41;30690:10;36360:7;36327:18;:41::i;:::-;36319:103;;;;-1:-1:-1;;;36319:103:0;;;;;;;:::i;:::-;36433:39;36447:4;36453:2;36457:7;36466:5;36433:13;:39::i;:::-;36152:328;;;;:::o;56172:235::-;38055:4;38079:16;;;:7;:16;;;;;;56245:13;;-1:-1:-1;;;;;38079:16:0;56265:48;;;;-1:-1:-1;;;56265:48:0;;10498:2:1;56265:48:0;;;10480:21:1;10537:2;10517:18;;;10510:30;-1:-1:-1;;;10556:18:1;;;10549:49;10615:18;;56265:48:0;10296:343:1;56265:48:0;56357:7;56366:25;56383:7;56366:16;:25::i;:::-;56340:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56326:76;;56172:235;;;:::o;55598:371::-;55725:37;;-1:-1:-1;;55742:10:0;12561:2:1;12557:15;12553:53;55725:37:0;;;12541:66:1;12623:12;;;12616:28;;;55671:12:0;;55686:78;;12660:12:1;;55725:37:0;;;;;;;;;;;;55715:48;;;;;;10545:58;;16930:66:1;10545:58:0;;;16918:79:1;17013:12;;;17006:28;;;10412:7:0;;17050:12:1;;10545:58:0;;;;;;;;;;;;10535:69;;;;;;10528:76;;10343:269;;;;55686:78;55784:14;;;;:8;:14;;;;;;55671:93;;-1:-1:-1;55784:14:0;;55783:15;55775:45;;;;-1:-1:-1;;;55775:45:0;;12885:2:1;55775:45:0;;;12867:21:1;12924:2;12904:18;;;12897:30;-1:-1:-1;;;12943:18:1;;;12936:47;13000:18;;55775:45:0;12683:341:1;55775:45:0;55839:23;55846:4;55852:9;55839:6;:23::i;:::-;55831:53;;;;-1:-1:-1;;;55831:53:0;;13231:2:1;55831:53:0;;;13213:21:1;13270:2;13250:18;;;13243:30;-1:-1:-1;;;13289:18:1;;;13282:47;13346:18;;55831:53:0;13029:341:1;55831:53:0;55897:14;;;;:8;:14;;;;;:21;;-1:-1:-1;;55897:21:0;55914:4;55897:21;;;55931:30;55941:10;55953:7;55931:9;:30::i;54476:201::-;53640:6;;-1:-1:-1;;;;;53640:6:0;30690:10;53787:23;53779:68;;;;-1:-1:-1;;;53779:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54565:22:0;::::1;54557:73;;;::::0;-1:-1:-1;;;54557:73:0;;13577:2:1;54557:73:0::1;::::0;::::1;13559:21:1::0;13616:2;13596:18;;;13589:30;13655:34;13635:18;;;13628:62;-1:-1:-1;;;13706:18:1;;;13699:36;13752:19;;54557:73:0::1;13375:402:1::0;54557:73:0::1;54641:28;54660:8;54641:18;:28::i;32231:305::-:0;32333:4;-1:-1:-1;;;;;;32370:40:0;;-1:-1:-1;;;32370:40:0;;:105;;-1:-1:-1;;;;;;;32427:48:0;;-1:-1:-1;;;32427:48:0;32370:105;:158;;;-1:-1:-1;;;;;;;;;;23106:40:0;;;32492:36;22997:157;42136:174;42211:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42211:29:0;-1:-1:-1;;;;;42211:29:0;;;;;;;;:24;;42265:23;42211:24;42265:14;:23::i;:::-;-1:-1:-1;;;;;42256:46:0;;;;;;;;;;;42136:174;;:::o;38284:348::-;38377:4;38079:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38079:16:0;38394:73;;;;-1:-1:-1;;;38394:73:0;;13984:2:1;38394:73:0;;;13966:21:1;14023:2;14003:18;;;13996:30;14062:34;14042:18;;;14035:62;-1:-1:-1;;;14113:18:1;;;14106:42;14165:19;;38394:73:0;13782:408:1;38394:73:0;38478:13;38494:23;38509:7;38494:14;:23::i;:::-;38478:39;;38547:5;-1:-1:-1;;;;;38536:16:0;:7;-1:-1:-1;;;;;38536:16:0;;:52;;;-1:-1:-1;;;;;;35376:25:0;;;35352:4;35376:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38556:32;38536:87;;;;38616:7;-1:-1:-1;;;;;38592:31:0;:20;38604:7;38592:11;:20::i;:::-;-1:-1:-1;;;;;38592:31:0;;38536:87;38528:96;38284:348;-1:-1:-1;;;;38284:348:0:o;41393:625::-;41552:4;-1:-1:-1;;;;;41525:31:0;:23;41540:7;41525:14;:23::i;:::-;-1:-1:-1;;;;;41525:31:0;;41517:81;;;;-1:-1:-1;;;41517:81:0;;14397:2:1;41517:81:0;;;14379:21:1;14436:2;14416:18;;;14409:30;14475:34;14455:18;;;14448:62;-1:-1:-1;;;14526:18:1;;;14519:35;14571:19;;41517:81:0;14195:401:1;41517:81:0;-1:-1:-1;;;;;41617:16:0;;41609:65;;;;-1:-1:-1;;;41609:65:0;;14803:2:1;41609:65:0;;;14785:21:1;14842:2;14822:18;;;14815:30;14881:34;14861:18;;;14854:62;-1:-1:-1;;;14932:18:1;;;14925:34;14976:19;;41609:65:0;14601:400:1;41609:65:0;41687:39;41708:4;41714:2;41718:7;41687:20;:39::i;:::-;41791:29;41808:1;41812:7;41791:8;:29::i;:::-;-1:-1:-1;;;;;41833:15:0;;;;;;:9;:15;;;;;:20;;41852:1;;41833:15;:20;;41852:1;;41833:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41864:13:0;;;;;;:9;:13;;;;;:18;;41881:1;;41864:13;:18;;41881:1;;41864:18;:::i;:::-;;;;-1:-1:-1;;41893:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41893:21:0;-1:-1:-1;;;;;41893:21:0;;;;;;;;;41932:27;;41893:16;;41932:27;;;;;;;34329:341;34259:411;;:::o;54837:191::-;54930:6;;;-1:-1:-1;;;;;54947:17:0;;;-1:-1:-1;;;;;;54947:17:0;;;;;;;54980:40;;54930:6;;;54947:17;54930:6;;54980:40;;54911:16;;54980:40;54900:128;54837:191;:::o;42452:315::-;42607:8;-1:-1:-1;;;;;42598:17:0;:5;-1:-1:-1;;;;;42598:17:0;;42590:55;;;;-1:-1:-1;;;42590:55:0;;15603:2:1;42590:55:0;;;15585:21:1;15642:2;15622:18;;;15615:30;15681:27;15661:18;;;15654:55;15726:18;;42590:55:0;15401:349:1;42590:55:0;-1:-1:-1;;;;;42656:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;42656:46:0;;;;;;;;;;42718:41;;339::1;;;42718::0;;312:18:1;42718:41:0;;;;;;;42452:315;;;:::o;37362:::-;37519:28;37529:4;37535:2;37539:7;37519:9;:28::i;:::-;37566:48;37589:4;37595:2;37599:7;37608:5;37566:22;:48::i;:::-;37558:111;;;;-1:-1:-1;;;37558:111:0;;;;;;;:::i;365:723::-;421:13;642:5;651:1;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;55441:149;55576:6;;55518:4;;-1:-1:-1;;;;;55576:6:0;55542:30;55556:4;55562:9;55542:13;:30::i;:::-;-1:-1:-1;;;;;55542:40:0;;;55441:149;-1:-1:-1;;;55441:149:0:o;38974:110::-;39050:26;39060:2;39064:7;39050:26;;;;;;;;;;;;:9;:26::i;48033:589::-;-1:-1:-1;;;;;48239:18:0;;48235:187;;48274:40;48306:7;49449:10;:17;;49422:24;;;;:15;:24;;;;;:44;;;49477:24;;;;;;;;;;;;49345:164;48274:40;48235:187;;;48344:2;-1:-1:-1;;;;;48336:10:0;:4;-1:-1:-1;;;;;48336:10:0;;48332:90;;48363:47;48396:4;48402:7;48363:32;:47::i;:::-;-1:-1:-1;;;;;48436:16:0;;48432:183;;48469:45;48506:7;48469:36;:45::i;48432:183::-;48542:4;-1:-1:-1;;;;;48536:10:0;:2;-1:-1:-1;;;;;48536:10:0;;48532:83;;48563:40;48591:2;48595:7;48563:27;:40::i;43332:799::-;43487:4;-1:-1:-1;;;;;43508:13:0;;13186:19;:23;43504:620;;43544:72;;-1:-1:-1;;;43544:72:0;;-1:-1:-1;;;;;43544:36:0;;;;;:72;;30690:10;;43595:4;;43601:7;;43610:5;;43544:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43544:72:0;;;;;;;;-1:-1:-1;;43544:72:0;;;;;;;;;;;;:::i;:::-;;;43540:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43786:6;:13;43803:1;43786:18;43782:272;;43829:60;;-1:-1:-1;;;43829:60:0;;;;;;;:::i;43782:272::-;44004:6;43998:13;43989:6;43985:2;43981:15;43974:38;43540:529;-1:-1:-1;;;;;;43667:51:0;-1:-1:-1;;;43667:51:0;;-1:-1:-1;43660:58:0;;43504:620;-1:-1:-1;44108:4:0;43332:799;;;;;;:::o;6541:231::-;6619:7;6640:17;6659:18;6681:27;6692:4;6698:9;6681:10;:27::i;:::-;6639:69;;;;6719:18;6731:5;6719:11;:18::i;:::-;-1:-1:-1;6755:9:0;6541:231;-1:-1:-1;;;6541:231:0:o;39311:321::-;39441:18;39447:2;39451:7;39441:5;:18::i;:::-;39492:54;39523:1;39527:2;39531:7;39540:5;39492:22;:54::i;:::-;39470:154;;;;-1:-1:-1;;;39470:154:0;;;;;;;:::i;50136:988::-;50402:22;50452:1;50427:22;50444:4;50427:16;:22::i;:::-;:26;;;;:::i;:::-;50464:18;50485:26;;;:17;:26;;;;;;50402:51;;-1:-1:-1;50618:28:0;;;50614:328;;-1:-1:-1;;;;;50685:18:0;;50663:19;50685:18;;;:12;:18;;;;;;;;:34;;;;;;;;;50736:30;;;;;;:44;;;50853:30;;:17;:30;;;;;:43;;;50614:328;-1:-1:-1;51038:26:0;;;;:17;:26;;;;;;;;51031:33;;;-1:-1:-1;;;;;51082:18:0;;;;;:12;:18;;;;;:34;;;;;;;51075:41;50136:988::o;51419:1079::-;51697:10;:17;51672:22;;51697:21;;51717:1;;51697:21;:::i;:::-;51729:18;51750:24;;;:15;:24;;;;;;52123:10;:26;;51672:46;;-1:-1:-1;51750:24:0;;51672:46;;52123:26;;;;;;:::i;:::-;;;;;;;;;52101:48;;52187:11;52162:10;52173;52162:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;52267:28;;;:15;:28;;;;;;;:41;;;52439:24;;;;;52432:31;52474:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;51490:1008;;;51419:1079;:::o;48923:221::-;49008:14;49025:20;49042:2;49025:16;:20::i;:::-;-1:-1:-1;;;;;49056:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;49101:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;48923:221:0:o;4431:1308::-;4512:7;4521:12;4746:9;:16;4766:2;4746:22;4742:990;;5042:4;5027:20;;5021:27;5092:4;5077:20;;5071:27;5150:4;5135:20;;5129:27;4785:9;5121:36;5193:25;5204:4;5121:36;5021:27;5071;5193:10;:25::i;:::-;5186:32;;;;;;;;;4742:990;5240:9;:16;5260:2;5240:22;5236:496;;5515:4;5500:20;;5494:27;5566:4;5551:20;;5545:27;5608:23;5619:4;5494:27;5545;5608:10;:23::i;:::-;5601:30;;;;;;;;5236:496;-1:-1:-1;5680:1:0;;-1:-1:-1;5684:35:0;5236:496;4431:1308;;;;;:::o;2702:643::-;2780:20;2771:5;:29;;;;;;;;:::i;:::-;;2767:571;;2702:643;:::o;2767:571::-;2878:29;2869:5;:38;;;;;;;;:::i;:::-;;2865:473;;2924:34;;-1:-1:-1;;;2924:34:0;;18298:2:1;2924:34:0;;;18280:21:1;18337:2;18317:18;;;18310:30;18376:26;18356:18;;;18349:54;18420:18;;2924:34:0;18096:348:1;2865:473:0;2989:35;2980:5;:44;;;;;;;;:::i;:::-;;2976:362;;3041:41;;-1:-1:-1;;;3041:41:0;;18651:2:1;3041:41:0;;;18633:21:1;18690:2;18670:18;;;18663:30;18729:33;18709:18;;;18702:61;18780:18;;3041:41:0;18449:355:1;2976:362:0;3113:30;3104:5;:39;;;;;;;;:::i;:::-;;3100:238;;3160:44;;-1:-1:-1;;;3160:44:0;;19011:2:1;3160:44:0;;;18993:21:1;19050:2;19030:18;;;19023:30;19089:34;19069:18;;;19062:62;-1:-1:-1;;;19140:18:1;;;19133:32;19182:19;;3160:44:0;18809:398:1;3100:238:0;3235:30;3226:5;:39;;;;;;;;:::i;:::-;;3222:116;;3282:44;;-1:-1:-1;;;3282:44:0;;19414:2:1;3282:44:0;;;19396:21:1;19453:2;19433:18;;;19426:30;19492:34;19472:18;;;19465:62;-1:-1:-1;;;19543:18:1;;;19536:32;19585:19;;3282:44:0;19212:398:1;39968:439:0;-1:-1:-1;;;;;40048:16:0;;40040:61;;;;-1:-1:-1;;;40040:61:0;;19817:2:1;40040:61:0;;;19799:21:1;;;19836:18;;;19829:30;19895:34;19875:18;;;19868:62;19947:18;;40040:61:0;19615:356:1;40040:61:0;38055:4;38079:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38079:16:0;:30;40112:58;;;;-1:-1:-1;;;40112:58:0;;20178:2:1;40112:58:0;;;20160:21:1;20217:2;20197:18;;;20190:30;20256;20236:18;;;20229:58;20304:18;;40112:58:0;19976:352:1;40112:58:0;40183:45;40212:1;40216:2;40220:7;40183:20;:45::i;:::-;-1:-1:-1;;;;;40241:13:0;;;;;;:9;:13;;;;;:18;;40258:1;;40241:13;:18;;40258:1;;40241:18;:::i;:::-;;;;-1:-1:-1;;40270:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40270:21:0;-1:-1:-1;;;;;40270:21:0;;;;;;;;40309:33;;40270:16;;;40309:33;;40270:16;;40309:33;56043:21:::1;55974:95:::0;:::o;7993:1632::-;8124:7;;9058:66;9045:79;;9041:163;;;-1:-1:-1;9157:1:0;;-1:-1:-1;9161:30:0;9141:51;;9041:163;9218:1;:7;;9223:2;9218:7;;:18;;;;;9229:1;:7;;9234:2;9229:7;;9218:18;9214:102;;;-1:-1:-1;9269:1:0;;-1:-1:-1;9273:30:0;9253:51;;9214:102;9430:24;;;9413:14;9430:24;;;;;;;;;20560:25:1;;;20633:4;20621:17;;20601:18;;;20594:45;;;;20655:18;;;20648:34;;;20698:18;;;20691:34;;;9430:24:0;;20532:19:1;;9430:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9430:24:0;;-1:-1:-1;;9430:24:0;;;-1:-1:-1;;;;;;;9469:20:0;;9465:103;;9522:1;9526:29;9506:50;;;;;;;9465:103;9588:6;-1:-1:-1;9596:20:0;;-1:-1:-1;7993:1632:0;;;;;;;;:::o;7035:344::-;7149:7;;-1:-1:-1;;;;;7195:80:0;;7149:7;7302:25;7318:3;7303:18;;;7325:2;7302:25;:::i;:::-;7286:42;;7346:25;7357:4;7363:1;7366;7369;7346:10;:25::i;:::-;7339:32;;;;;;7035:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;391:131::-;-1:-1:-1;;;;;;465:32:1;;455:43;;445:71;;512:1;509;502:12;527:245;585:6;638:2;626:9;617:7;613:23;609:32;606:52;;;654:1;651;644:12;606:52;693:9;680:23;712:30;736:5;712:30;:::i;:::-;761:5;527:245;-1:-1:-1;;;527:245:1:o;777:258::-;849:1;859:113;873:6;870:1;867:13;859:113;;;949:11;;;943:18;930:11;;;923:39;895:2;888:10;859:113;;;990:6;987:1;984:13;981:48;;;-1:-1:-1;;1025:1:1;1007:16;;1000:27;777:258::o;1040:269::-;1093:3;1131:5;1125:12;1158:6;1153:3;1146:19;1174:63;1230:6;1223:4;1218:3;1214:14;1207:4;1200:5;1196:16;1174:63;:::i;:::-;1291:2;1270:15;-1:-1:-1;;1266:29:1;1257:39;;;;1298:4;1253:50;;1040:269;-1:-1:-1;;1040:269:1:o;1314:231::-;1463:2;1452:9;1445:21;1426:4;1483:56;1535:2;1524:9;1520:18;1512:6;1483:56;:::i;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2710:127::-;2771:10;2766:3;2762:20;2759:1;2752:31;2802:4;2799:1;2792:15;2826:4;2823:1;2816:15;2842:632;2907:5;2937:18;2978:2;2970:6;2967:14;2964:40;;;2984:18;;:::i;:::-;3059:2;3053:9;3027:2;3113:15;;-1:-1:-1;;3109:24:1;;;3135:2;3105:33;3101:42;3089:55;;;3159:18;;;3179:22;;;3156:46;3153:72;;;3205:18;;:::i;:::-;3245:10;3241:2;3234:22;3274:6;3265:15;;3304:6;3296;3289:22;3344:3;3335:6;3330:3;3326:16;3323:25;3320:45;;;3361:1;3358;3351:12;3320:45;3411:6;3406:3;3399:4;3391:6;3387:17;3374:44;3466:1;3459:4;3450:6;3442;3438:19;3434:30;3427:41;;;;2842:632;;;;;:::o;3479:451::-;3548:6;3601:2;3589:9;3580:7;3576:23;3572:32;3569:52;;;3617:1;3614;3607:12;3569:52;3657:9;3644:23;3690:18;3682:6;3679:30;3676:50;;;3722:1;3719;3712:12;3676:50;3745:22;;3798:4;3790:13;;3786:27;-1:-1:-1;3776:55:1;;3827:1;3824;3817:12;3776:55;3850:74;3916:7;3911:2;3898:16;3893:2;3889;3885:11;3850:74;:::i;3935:186::-;3994:6;4047:2;4035:9;4026:7;4022:23;4018:32;4015:52;;;4063:1;4060;4053:12;4015:52;4086:29;4105:9;4086:29;:::i;4126:347::-;4191:6;4199;4252:2;4240:9;4231:7;4227:23;4223:32;4220:52;;;4268:1;4265;4258:12;4220:52;4291:29;4310:9;4291:29;:::i;:::-;4281:39;;4370:2;4359:9;4355:18;4342:32;4417:5;4410:13;4403:21;4396:5;4393:32;4383:60;;4439:1;4436;4429:12;4383:60;4462:5;4452:15;;;4126:347;;;;;:::o;4478:221::-;4520:5;4573:3;4566:4;4558:6;4554:17;4550:27;4540:55;;4591:1;4588;4581:12;4540:55;4613:80;4689:3;4680:6;4667:20;4660:4;4652:6;4648:17;4613:80;:::i;4704:537::-;4799:6;4807;4815;4823;4876:3;4864:9;4855:7;4851:23;4847:33;4844:53;;;4893:1;4890;4883:12;4844:53;4916:29;4935:9;4916:29;:::i;:::-;4906:39;;4964:38;4998:2;4987:9;4983:18;4964:38;:::i;:::-;4954:48;;5049:2;5038:9;5034:18;5021:32;5011:42;;5104:2;5093:9;5089:18;5076:32;5131:18;5123:6;5120:30;5117:50;;;5163:1;5160;5153:12;5117:50;5186:49;5227:7;5218:6;5207:9;5203:22;5186:49;:::i;:::-;5176:59;;;4704:537;;;;;;;:::o;5246:388::-;5323:6;5331;5384:2;5372:9;5363:7;5359:23;5355:32;5352:52;;;5400:1;5397;5390:12;5352:52;5436:9;5423:23;5413:33;;5497:2;5486:9;5482:18;5469:32;5524:18;5516:6;5513:30;5510:50;;;5556:1;5553;5546:12;5510:50;5579:49;5620:7;5611:6;5600:9;5596:22;5579:49;:::i;:::-;5569:59;;;5246:388;;;;;:::o;5639:260::-;5707:6;5715;5768:2;5756:9;5747:7;5743:23;5739:32;5736:52;;;5784:1;5781;5774:12;5736:52;5807:29;5826:9;5807:29;:::i;:::-;5797:39;;5855:38;5889:2;5878:9;5874:18;5855:38;:::i;:::-;5845:48;;5639:260;;;;;:::o;5904:380::-;5983:1;5979:12;;;;6026;;;6047:61;;6101:4;6093:6;6089:17;6079:27;;6047:61;6154:2;6146:6;6143:14;6123:18;6120:38;6117:161;;6200:10;6195:3;6191:20;6188:1;6181:31;6235:4;6232:1;6225:15;6263:4;6260:1;6253:15;6117:161;;5904:380;;;:::o;7529:413::-;7731:2;7713:21;;;7770:2;7750:18;;;7743:30;7809:34;7804:2;7789:18;;7782:62;-1:-1:-1;;;7875:2:1;7860:18;;7853:47;7932:3;7917:19;;7529:413::o;8359:356::-;8561:2;8543:21;;;8580:18;;;8573:30;8639:34;8634:2;8619:18;;8612:62;8706:2;8691:18;;8359:356::o;9343:127::-;9404:10;9399:3;9395:20;9392:1;9385:31;9435:4;9432:1;9425:15;9459:4;9456:1;9449:15;10770:185;10812:3;10850:5;10844:12;10865:52;10910:6;10905:3;10898:4;10891:5;10887:16;10865:52;:::i;:::-;10933:16;;;;;10770:185;-1:-1:-1;;10770:185:1:o;11078:1301::-;11355:3;11384:1;11417:6;11411:13;11447:3;11469:1;11497:9;11493:2;11489:18;11479:28;;11557:2;11546:9;11542:18;11579;11569:61;;11623:4;11615:6;11611:17;11601:27;;11569:61;11649:2;11697;11689:6;11686:14;11666:18;11663:38;11660:165;;-1:-1:-1;;;11724:33:1;;11780:4;11777:1;11770:15;11810:4;11731:3;11798:17;11660:165;11841:18;11868:104;;;;11986:1;11981:320;;;;11834:467;;11868:104;-1:-1:-1;;11901:24:1;;11889:37;;11946:16;;;;-1:-1:-1;11868:104:1;;11981:320;10717:1;10710:14;;;10754:4;10741:18;;12076:1;12090:165;12104:6;12101:1;12098:13;12090:165;;;12182:14;;12169:11;;;12162:35;12225:16;;;;12119:10;;12090:165;;;12094:3;;12284:6;12279:3;12275:16;12268:23;;11834:467;;;;;;;12317:56;12342:30;12368:3;12360:6;12342:30;:::i;:::-;-1:-1:-1;;;11020:20:1;;11065:1;11056:11;;10960:113;12317:56;12310:63;11078:1301;-1:-1:-1;;;;;11078:1301:1:o;15006:127::-;15067:10;15062:3;15058:20;15055:1;15048:31;15098:4;15095:1;15088:15;15122:4;15119:1;15112:15;15138:125;15178:4;15206:1;15203;15200:8;15197:34;;;15211:18;;:::i;:::-;-1:-1:-1;15248:9:1;;15138:125::o;15268:128::-;15308:3;15339:1;15335:6;15332:1;15329:13;15326:39;;;15345:18;;:::i;:::-;-1:-1:-1;15381:9:1;;15268:128::o;15755:414::-;15957:2;15939:21;;;15996:2;15976:18;;;15969:30;16035:34;16030:2;16015:18;;16008:62;-1:-1:-1;;;16101:2:1;16086:18;;16079:48;16159:3;16144:19;;15755:414::o;16174:135::-;16213:3;16234:17;;;16231:43;;16254:18;;:::i;:::-;-1:-1:-1;16301:1:1;16290:13;;16174:135::o;16314:127::-;16375:10;16370:3;16366:20;16363:1;16356:31;16406:4;16403:1;16396:15;16430:4;16427:1;16420:15;16446:120;16486:1;16512;16502:35;;16517:18;;:::i;:::-;-1:-1:-1;16551:9:1;;16446:120::o;16571:112::-;16603:1;16629;16619:35;;16634:18;;:::i;:::-;-1:-1:-1;16668:9:1;;16571:112::o;17073:500::-;-1:-1:-1;;;;;17342:15:1;;;17324:34;;17394:15;;17389:2;17374:18;;17367:43;17441:2;17426:18;;17419:34;;;17489:3;17484:2;17469:18;;17462:31;;;17267:4;;17510:57;;17547:19;;17539:6;17510:57;:::i;:::-;17502:65;17073:500;-1:-1:-1;;;;;;17073:500:1:o;17578:249::-;17647:6;17700:2;17688:9;17679:7;17675:23;17671:32;17668:52;;;17716:1;17713;17706:12;17668:52;17748:9;17742:16;17767:30;17791:5;17767:30;:::i;17832:127::-;17893:10;17888:3;17884:20;17881:1;17874:31;17924:4;17921:1;17914:15;17948:4;17945:1;17938:15;17964:127;18025:10;18020:3;18016:20;18013:1;18006:31;18056:4;18053:1;18046:15;18080:4;18077:1;18070:15

Swarm Source

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