ETH Price: $3,164.41 (+1.53%)
Gas: 1 Gwei

Token

Data Frigate (Data Frigate)
 

Overview

Max Total Supply

310 Data Frigate

Holders

310

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
kalhintz.eth
Balance
1 Data Frigate
0x396F0e55fA33513441d556f84a6eA5c6Fd7d217B
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:
ERC721MintWithSig

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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 {
    /**
     * @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) {
        // Divide the signature in r, s and v variables
        bytes32 r;
        bytes32 s;
        uint8 v;

        // 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) {
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            // solhint-disable-next-line no-inline-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
        } else if (signature.length == 64) {
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            // solhint-disable-next-line no-inline-assembly
            assembly {
                let vs := mload(add(signature, 0x40))
                r := mload(add(signature, 0x20))
                s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
                v := add(shr(255, vs), 27)
            }
        } else {
            revert("ECDSA: invalid signature length");
        }

        return recover(hash, v, r, s);
    }

    /**
     * @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) {
        // 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 (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): 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.
        require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value");
        if (v == 0 || v == 1)  v = v + 27;
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

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


pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


pragma solidity ^0.8.0;

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



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);
}



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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




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 tokenId);

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




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);
}



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;
    }
}



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}



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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}



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}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public 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 || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

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



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();
    }
}



pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}




pragma solidity ^0.8.0;




/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping (address => bool) members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if(!hasRole(role, account)) {
            revert(string(abi.encodePacked(
                "AccessControl: account ",
                Strings.toHexString(uint160(account), 20),
                " is missing role ",
                Strings.toHexString(uint256(role), 32)
            )));
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}


pragma solidity ^0.8.0;






contract ERC721MintWithSig is ERC721Enumerable, AccessControl {
    using Strings for uint256;

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    uint256 public deadline;
    address public owner; // just for opensea

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    constructor(string memory name, string memory symbol, uint256 _deadline, address _owner)
    ERC721(name, symbol)
    {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        deadline = _deadline;
        owner = _owner; 
    }

    modifier withinDeadline() {
        require(deadline == 0 || block.timestamp <= deadline, "Claim entrance is closed!");
        _;
    }

    function setOwner(address _owner) public onlyRole(DEFAULT_ADMIN_ROLE) {
        owner = _owner;
    }

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    function setDeadline(uint256 _deadline) onlyRole(DEFAULT_ADMIN_ROLE) external {
        deadline = _deadline;
    }

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

    function claim(address account, uint256 tokenId, string memory uri, bytes calldata signature)
    public withinDeadline 
    {
        require(_verify(_hash(account, tokenId, uri), signature), "Invalid signature");
        _safeMint(account, tokenId);
        _setTokenURI(tokenId, uri);
    }

    function claimBatch(address[] memory accounts, uint256[] memory tokenIds, string[] memory uris, bytes[] calldata signatures)
    external withinDeadline 
    {   
        for (uint i = 0; i < accounts.length; i++) {
            claim(accounts[i], tokenIds[i], uris[i], signatures[i]);
        }
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }

    function _hash(address account, uint256 tokenId, string memory uri)
    internal pure returns (bytes32)
    {
        return ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(tokenId, account, uri)));
    }

    function _verify(bytes32 digest, bytes memory signature)
    internal view returns (bool)
    {
        return hasRole(MINTER_ROLE, ECDSA.recover(digest, signature));
    }

    function mintWithURI(address to, uint256 tokenId, string memory uri) onlyRole(MINTER_ROLE) external {
        require(!_exists(tokenId), "token id already exist");
        _safeMint(to, tokenId);
        _setTokenURI(tokenId, uri);
    }

    function burn(uint256 tokenId) onlyRole(MINTER_ROLE) external {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: burn caller is not owner nor approved");
        _burn(tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"_deadline","type":"uint256"},{"internalType":"address","name":"_owner","type":"address"}],"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"string[]","name":"uris","type":"string[]"},{"internalType":"bytes[]","name":"signatures","type":"bytes[]"}],"name":"claimBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"mintWithURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_deadline","type":"uint256"}],"name":"setDeadline","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620030e4380380620030e48339810160408190526200003491620002ca565b8351849084906200004d90600090602085019062000157565b5080516200006390600190602084019062000157565b506200007591506000905033620000a3565b600b91909155600c80546001600160a01b0319166001600160a01b03909216919091179055506200039c9050565b620000af8282620000b3565b5050565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff16620000af576000828152600a602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620001133390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b82805462000165906200035f565b90600052602060002090601f016020900481019282620001895760008555620001d4565b82601f10620001a457805160ff1916838001178555620001d4565b82800160010185558215620001d4579182015b82811115620001d4578251825591602001919060010190620001b7565b50620001e2929150620001e6565b5090565b5b80821115620001e25760008155600101620001e7565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200022557600080fd5b81516001600160401b0380821115620002425762000242620001fd565b604051601f8301601f19908116603f011681019082821181831017156200026d576200026d620001fd565b816040528381526020925086838588010111156200028a57600080fd5b600091505b83821015620002ae57858201830151818301840152908201906200028f565b83821115620002c05760008385830101525b9695505050505050565b60008060008060808587031215620002e157600080fd5b84516001600160401b0380821115620002f957600080fd5b620003078883890162000213565b955060208701519150808211156200031e57600080fd5b506200032d8782880162000213565b60408701516060880151919550935090506001600160a01b03811681146200035457600080fd5b939692955090935050565b600181811c908216806200037457607f821691505b602082108114156200039657634e487b7160e01b600052602260045260246000fd5b50919050565b612d3880620003ac6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c80634a99950b1161010f578063a22cb465116100a2578063d547741f11610071578063d547741f1461040d578063df75101214610420578063e0f8488814610433578063e985e9c51461044657600080fd5b8063a22cb465146103bf578063b88d4fde146103d2578063c87b56dd146103e5578063d5391393146103f857600080fd5b80638da5cb5b116100de5780638da5cb5b1461038957806391d148541461039c57806395d89b41146103af578063a217fddf146103b757600080fd5b80634a99950b1461033d5780634f6ccce7146103505780636352211e1461036357806370a082311461037657600080fd5b806323b872dd116101875780632f745c59116101565780632f745c59146102f157806336568abe1461030457806342842e0e1461031757806342966c681461032a57600080fd5b806323b872dd1461029f578063248a9ca3146102b257806329dcb0cf146102d55780632f2ff15d146102de57600080fd5b8063095ea7b3116101c3578063095ea7b31461025257806313af40351461026757806318160ddd1461027a578063195199f61461028c57600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063081812fc14610227575b600080fd5b6101fd6101f83660046122e9565b610482565b60405190151581526020015b60405180910390f35b61021a610493565b604051610209919061235e565b61023a610235366004612371565b610525565b6040516001600160a01b039091168152602001610209565b6102656102603660046123a6565b6105b2565b005b6102656102753660046123d0565b6106c8565b6008545b604051908152602001610209565b61026561029a366004612371565b6106f7565b6102656102ad3660046123eb565b610709565b61027e6102c0366004612371565b6000908152600a602052604090206001015490565b61027e600b5481565b6102656102ec366004612427565b61073a565b61027e6102ff3660046123a6565b610760565b610265610312366004612427565b6107f6565b6102656103253660046123eb565b610874565b610265610338366004612371565b61088f565b61026561034b366004612512565b61091e565b61027e61035e366004612371565b6109a0565b61023a610371366004612371565b610a33565b61027e6103843660046123d0565b610aaa565b600c5461023a906001600160a01b031681565b6101fd6103aa366004612427565b610b31565b61021a610b5c565b61027e600081565b6102656103cd366004612569565b610b6b565b6102656103e03660046125a5565b610c30565b61021a6103f3366004612371565b610c61565b61027e600080516020612ce383398151915281565b61026561041b366004612427565b610dd8565b61026561042e366004612621565b610dfe565b61026561044136600461282b565b610efc565b6101fd61045436600461293b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600061048d82610ff0565b92915050565b6060600080546104a290612965565b80601f01602080910402602001604051908101604052809291908181526020018280546104ce90612965565b801561051b5780601f106104f05761010080835404028352916020019161051b565b820191906000526020600020905b8154815290600101906020018083116104fe57829003601f168201915b5050505050905090565b600061053082611015565b6105965760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105bd82610a33565b9050806001600160a01b0316836001600160a01b0316141561062b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161058d565b336001600160a01b038216148061064757506106478133610454565b6106b95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161058d565b6106c38383611032565b505050565b60006106d481336110a0565b50600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600061070381336110a0565b50600b55565b6107133382611104565b61072f5760405162461bcd60e51b815260040161058d906129a0565b6106c38383836111ea565b6000828152600a602052604090206001015461075681336110a0565b6106c38383611395565b600061076b83610aaa565b82106107cd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161058d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b03811633146108665760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161058d565b610870828261141b565b5050565b6106c383838360405180602001604052806000815250610c30565b600080516020612ce38339815191526108a881336110a0565b6108b3335b83611104565b6109155760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a206275726e2063616c6c6572206973206e6f74206f776e657260448201526c081b9bdc88185c1c1c9bdd9959609a1b606482015260840161058d565b61087082611482565b600080516020612ce383398151915261093781336110a0565b61094083611015565b156109865760405162461bcd60e51b81526020600482015260166024820152751d1bdad95b881a5908185b1c9958591e48195e1a5cdd60521b604482015260640161058d565b61099084846114c5565b61099a83836114df565b50505050565b60006109ab60085490565b8210610a0e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161058d565b60088281548110610a2157610a216129f1565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061048d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161058d565b60006001600160a01b038216610b155760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161058d565b506001600160a01b031660009081526003602052604090205490565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600180546104a290612965565b6001600160a01b038216331415610bc45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161058d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c39336108ad565b610c555760405162461bcd60e51b815260040161058d906129a0565b61099a8484848461156a565b6060610c6c82611015565b610cd25760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161058d565b6000828152600d602052604081208054610ceb90612965565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1790612965565b8015610d645780601f10610d3957610100808354040283529160200191610d64565b820191906000526020600020905b815481529060010190602001808311610d4757829003601f168201915b505050505090506000610d8260408051602081019091526000815290565b9050805160001415610d95575092915050565b815115610dc7578082604051602001610daf929190612a07565b60405160208183030381529060405292505050919050565b610dd08461159d565b949350505050565b6000828152600a6020526040902060010154610df481336110a0565b6106c3838361141b565b600b541580610e0f5750600b544211155b610e575760405162461bcd60e51b8152602060048201526019602482015278436c61696d20656e7472616e636520697320636c6f7365642160381b604482015260640161058d565b610ea1610e65868686611675565b83838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506116ef92505050565b610ee15760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015260640161058d565b610eeb85856114c5565b610ef584846114df565b5050505050565b600b541580610f0d5750600b544211155b610f555760405162461bcd60e51b8152602060048201526019602482015278436c61696d20656e7472616e636520697320636c6f7365642160381b604482015260640161058d565b60005b8551811015610fe857610fd6868281518110610f7657610f766129f1565b6020026020010151868381518110610f9057610f906129f1565b6020026020010151868481518110610faa57610faa6129f1565b6020026020010151868686818110610fc457610fc46129f1565b905060200281019061042e9190612a36565b80610fe081612a93565b915050610f58565b505050505050565b60006001600160e01b03198216637965db0b60e01b148061048d575061048d8261170d565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061106782610a33565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6110aa8282610b31565b610870576110c2816001600160a01b03166014611732565b6110cd836020611732565b6040516020016110de929190612aae565b60408051601f198184030181529082905262461bcd60e51b825261058d9160040161235e565b600061110f82611015565b6111705760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161058d565b600061117b83610a33565b9050806001600160a01b0316846001600160a01b031614806111b65750836001600160a01b03166111ab84610525565b6001600160a01b0316145b80610dd057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610dd0565b826001600160a01b03166111fd82610a33565b6001600160a01b0316146112655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161058d565b6001600160a01b0382166112c75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161058d565b6112d28383836118ce565b6112dd600082611032565b6001600160a01b0383166000908152600360205260408120805460019290611306908490612b23565b90915550506001600160a01b0382166000908152600360205260408120805460019290611334908490612b3a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61139f8282610b31565b610870576000828152600a602090815260408083206001600160a01b03851684529091529020805460ff191660011790556113d73390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6114258282610b31565b15610870576000828152600a602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b61148b81611986565b6000818152600d6020526040902080546114a490612965565b1590506114c2576000818152600d602052604081206114c291612200565b50565b610870828260405180602001604052806000815250611a2d565b6114e882611015565b61154b5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161058d565b6000828152600d6020908152604090912082516106c39284019061223a565b6115758484846111ea565b61158184848484611a60565b61099a5760405162461bcd60e51b815260040161058d90612b52565b60606115a882611015565b61160c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161058d565b600061162360408051602081019091526000815290565b90506000815111611643576040518060200160405280600081525061166e565b8061164d84611b5e565b60405160200161165e929190612a07565b6040516020818303038152906040525b9392505050565b6000610dd083858460405160200161168f93929190612ba4565b60408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b600061166e600080516020612ce38339815191526103aa8585611c5c565b60006001600160e01b0319821663780e9d6360e01b148061048d575061048d82611d12565b60606000611741836002612be3565b61174c906002612b3a565b67ffffffffffffffff81111561176457611764612453565b6040519080825280601f01601f19166020018201604052801561178e576020820181803683370190505b509050600360fc1b816000815181106117a9576117a96129f1565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106117d8576117d86129f1565b60200101906001600160f81b031916908160001a90535060006117fc846002612be3565b611807906001612b3a565b90505b600181111561187f576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061183b5761183b6129f1565b1a60f81b828281518110611851576118516129f1565b60200101906001600160f81b031916908160001a90535060049490941c9361187881612c02565b905061180a565b50831561166e5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161058d565b6001600160a01b0383166119295761192481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61194c565b816001600160a01b0316836001600160a01b03161461194c5761194c8382611d62565b6001600160a01b038216611963576106c381611dff565b826001600160a01b0316826001600160a01b0316146106c3576106c38282611eae565b600061199182610a33565b905061199f816000846118ce565b6119aa600083611032565b6001600160a01b03811660009081526003602052604081208054600192906119d3908490612b23565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611a378383611ef2565b611a446000848484611a60565b6106c35760405162461bcd60e51b815260040161058d90612b52565b60006001600160a01b0384163b15611b5357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611aa4903390899088908890600401612c19565b6020604051808303816000875af1925050508015611adf575060408051601f3d908101601f19168201909252611adc91810190612c4c565b60015b611b39573d808015611b0d576040519150601f19603f3d011682016040523d82523d6000602084013e611b12565b606091505b508051611b315760405162461bcd60e51b815260040161058d90612b52565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610dd0565b506001949350505050565b606081611b825750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bac5780611b9681612a93565b9150611ba59050600a83612c7f565b9150611b86565b60008167ffffffffffffffff811115611bc757611bc7612453565b6040519080825280601f01601f191660200182016040528015611bf1576020820181803683370190505b5090505b8415610dd057611c06600183612b23565b9150611c13600a86612c93565b611c1e906030612b3a565b60f81b818381518110611c3357611c336129f1565b60200101906001600160f81b031916908160001a905350611c55600a86612c7f565b9450611bf5565b600080600080845160411415611c865750505060208201516040830151606084015160001a611cfc565b845160401415611cb45750505060408201516020830151906001600160ff1b0381169060ff1c601b01611cfc565b60405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161058d565b611d0886828585612031565b9695505050505050565b60006001600160e01b031982166380ac58cd60e01b1480611d4357506001600160e01b03198216635b5e139f60e01b145b8061048d57506301ffc9a760e01b6001600160e01b031983161461048d565b60006001611d6f84610aaa565b611d799190612b23565b600083815260076020526040902054909150808214611dcc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e1190600190612b23565b60008381526009602052604081205460088054939450909284908110611e3957611e396129f1565b906000526020600020015490508060088381548110611e5a57611e5a6129f1565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e9257611e92612ca7565b6001900381819060005260206000200160009055905550505050565b6000611eb983610aaa565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611f485760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161058d565b611f5181611015565b15611f9e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161058d565b611faa600083836118ce565b6001600160a01b0382166000908152600360205260408120805460019290611fd3908490612b3a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156120ae5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161058d565b60ff841615806120c157508360ff166001145b156120d4576120d184601b612cbd565b93505b8360ff16601b14806120e957508360ff16601c145b6121405760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161058d565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015612194573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166121f75760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161058d565b95945050505050565b50805461220c90612965565b6000825580601f1061221c575050565b601f0160209004906000526020600020908101906114c291906122be565b82805461224690612965565b90600052602060002090601f01602090048101928261226857600085556122ae565b82601f1061228157805160ff19168380011785556122ae565b828001600101855582156122ae579182015b828111156122ae578251825591602001919060010190612293565b506122ba9291506122be565b5090565b5b808211156122ba57600081556001016122bf565b6001600160e01b0319811681146114c257600080fd5b6000602082840312156122fb57600080fd5b813561166e816122d3565b60005b83811015612321578181015183820152602001612309565b8381111561099a5750506000910152565b6000815180845261234a816020860160208601612306565b601f01601f19169290920160200192915050565b60208152600061166e6020830184612332565b60006020828403121561238357600080fd5b5035919050565b80356001600160a01b03811681146123a157600080fd5b919050565b600080604083850312156123b957600080fd5b6123c28361238a565b946020939093013593505050565b6000602082840312156123e257600080fd5b61166e8261238a565b60008060006060848603121561240057600080fd5b6124098461238a565b92506124176020850161238a565b9150604084013590509250925092565b6000806040838503121561243a57600080fd5b8235915061244a6020840161238a565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561249257612492612453565b604052919050565b600067ffffffffffffffff8311156124b4576124b4612453565b6124c7601f8401601f1916602001612469565b90508281528383830111156124db57600080fd5b828260208301376000602084830101529392505050565b600082601f83011261250357600080fd5b61166e8383356020850161249a565b60008060006060848603121561252757600080fd5b6125308461238a565b925060208401359150604084013567ffffffffffffffff81111561255357600080fd5b61255f868287016124f2565b9150509250925092565b6000806040838503121561257c57600080fd5b6125858361238a565b91506020830135801515811461259a57600080fd5b809150509250929050565b600080600080608085870312156125bb57600080fd5b6125c48561238a565b93506125d26020860161238a565b925060408501359150606085013567ffffffffffffffff8111156125f557600080fd5b8501601f8101871361260657600080fd5b6126158782356020840161249a565b91505092959194509250565b60008060008060006080868803121561263957600080fd5b6126428661238a565b945060208601359350604086013567ffffffffffffffff8082111561266657600080fd5b61267289838a016124f2565b9450606088013591508082111561268857600080fd5b818801915088601f83011261269c57600080fd5b8135818111156126ab57600080fd5b8960208285010111156126bd57600080fd5b9699959850939650602001949392505050565b600067ffffffffffffffff8211156126ea576126ea612453565b5060051b60200190565b600082601f83011261270557600080fd5b8135602061271a612715836126d0565b612469565b82815260059290921b8401810191818101908684111561273957600080fd5b8286015b84811015612754578035835291830191830161273d565b509695505050505050565b600082601f83011261277057600080fd5b81356020612780612715836126d0565b82815260059290921b8401810191818101908684111561279f57600080fd5b8286015b8481101561275457803567ffffffffffffffff8111156127c35760008081fd5b6127d18986838b01016124f2565b8452509183019183016127a3565b60008083601f8401126127f157600080fd5b50813567ffffffffffffffff81111561280957600080fd5b6020830191508360208260051b850101111561282457600080fd5b9250929050565b60008060008060006080868803121561284357600080fd5b853567ffffffffffffffff8082111561285b57600080fd5b818801915088601f83011261286f57600080fd5b8135602061287f612715836126d0565b82815260059290921b8401810191818101908c84111561289e57600080fd5b948201945b838610156128c3576128b48661238a565b825294820194908201906128a3565b995050890135925050808211156128d957600080fd5b6128e589838a016126f4565b955060408801359150808211156128fb57600080fd5b61290789838a0161275f565b9450606088013591508082111561291d57600080fd5b5061292a888289016127df565b969995985093965092949392505050565b6000806040838503121561294e57600080fd5b6129578361238a565b915061244a6020840161238a565b600181811c9082168061297957607f821691505b6020821081141561299a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60008351612a19818460208801612306565b835190830190612a2d818360208801612306565b01949350505050565b6000808335601e19843603018112612a4d57600080fd5b83018035915067ffffffffffffffff821115612a6857600080fd5b60200191503681900382131561282457600080fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612aa757612aa7612a7d565b5060010190565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612ae6816017850160208801612306565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612b17816028840160208801612306565b01602801949350505050565b600082821015612b3557612b35612a7d565b500390565b60008219821115612b4d57612b4d612a7d565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b8381526bffffffffffffffffffffffff198360601b16602082015260008251612bd4816034850160208701612306565b91909101603401949350505050565b6000816000190483118215151615612bfd57612bfd612a7d565b500290565b600081612c1157612c11612a7d565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d0890830184612332565b600060208284031215612c5e57600080fd5b815161166e816122d3565b634e487b7160e01b600052601260045260246000fd5b600082612c8e57612c8e612c69565b500490565b600082612ca257612ca2612c69565b500690565b634e487b7160e01b600052603160045260246000fd5b600060ff821660ff84168060ff03821115612cda57612cda612a7d565b01939250505056fe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220cbd9090c244560c2b6ce46c396a23433ccc27de429fccbb78d668a3a9b0933ff64736f6c634300080c0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000006329e37f000000000000000000000000cd62cd8ea5ae7d866e1f9cf916288c8ba2c4e4c6000000000000000000000000000000000000000000000000000000000000000c4461746120467269676174650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4461746120467269676174650000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c80634a99950b1161010f578063a22cb465116100a2578063d547741f11610071578063d547741f1461040d578063df75101214610420578063e0f8488814610433578063e985e9c51461044657600080fd5b8063a22cb465146103bf578063b88d4fde146103d2578063c87b56dd146103e5578063d5391393146103f857600080fd5b80638da5cb5b116100de5780638da5cb5b1461038957806391d148541461039c57806395d89b41146103af578063a217fddf146103b757600080fd5b80634a99950b1461033d5780634f6ccce7146103505780636352211e1461036357806370a082311461037657600080fd5b806323b872dd116101875780632f745c59116101565780632f745c59146102f157806336568abe1461030457806342842e0e1461031757806342966c681461032a57600080fd5b806323b872dd1461029f578063248a9ca3146102b257806329dcb0cf146102d55780632f2ff15d146102de57600080fd5b8063095ea7b3116101c3578063095ea7b31461025257806313af40351461026757806318160ddd1461027a578063195199f61461028c57600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063081812fc14610227575b600080fd5b6101fd6101f83660046122e9565b610482565b60405190151581526020015b60405180910390f35b61021a610493565b604051610209919061235e565b61023a610235366004612371565b610525565b6040516001600160a01b039091168152602001610209565b6102656102603660046123a6565b6105b2565b005b6102656102753660046123d0565b6106c8565b6008545b604051908152602001610209565b61026561029a366004612371565b6106f7565b6102656102ad3660046123eb565b610709565b61027e6102c0366004612371565b6000908152600a602052604090206001015490565b61027e600b5481565b6102656102ec366004612427565b61073a565b61027e6102ff3660046123a6565b610760565b610265610312366004612427565b6107f6565b6102656103253660046123eb565b610874565b610265610338366004612371565b61088f565b61026561034b366004612512565b61091e565b61027e61035e366004612371565b6109a0565b61023a610371366004612371565b610a33565b61027e6103843660046123d0565b610aaa565b600c5461023a906001600160a01b031681565b6101fd6103aa366004612427565b610b31565b61021a610b5c565b61027e600081565b6102656103cd366004612569565b610b6b565b6102656103e03660046125a5565b610c30565b61021a6103f3366004612371565b610c61565b61027e600080516020612ce383398151915281565b61026561041b366004612427565b610dd8565b61026561042e366004612621565b610dfe565b61026561044136600461282b565b610efc565b6101fd61045436600461293b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600061048d82610ff0565b92915050565b6060600080546104a290612965565b80601f01602080910402602001604051908101604052809291908181526020018280546104ce90612965565b801561051b5780601f106104f05761010080835404028352916020019161051b565b820191906000526020600020905b8154815290600101906020018083116104fe57829003601f168201915b5050505050905090565b600061053082611015565b6105965760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105bd82610a33565b9050806001600160a01b0316836001600160a01b0316141561062b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161058d565b336001600160a01b038216148061064757506106478133610454565b6106b95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161058d565b6106c38383611032565b505050565b60006106d481336110a0565b50600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600061070381336110a0565b50600b55565b6107133382611104565b61072f5760405162461bcd60e51b815260040161058d906129a0565b6106c38383836111ea565b6000828152600a602052604090206001015461075681336110a0565b6106c38383611395565b600061076b83610aaa565b82106107cd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161058d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b03811633146108665760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161058d565b610870828261141b565b5050565b6106c383838360405180602001604052806000815250610c30565b600080516020612ce38339815191526108a881336110a0565b6108b3335b83611104565b6109155760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a206275726e2063616c6c6572206973206e6f74206f776e657260448201526c081b9bdc88185c1c1c9bdd9959609a1b606482015260840161058d565b61087082611482565b600080516020612ce383398151915261093781336110a0565b61094083611015565b156109865760405162461bcd60e51b81526020600482015260166024820152751d1bdad95b881a5908185b1c9958591e48195e1a5cdd60521b604482015260640161058d565b61099084846114c5565b61099a83836114df565b50505050565b60006109ab60085490565b8210610a0e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161058d565b60088281548110610a2157610a216129f1565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061048d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161058d565b60006001600160a01b038216610b155760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161058d565b506001600160a01b031660009081526003602052604090205490565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600180546104a290612965565b6001600160a01b038216331415610bc45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161058d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c39336108ad565b610c555760405162461bcd60e51b815260040161058d906129a0565b61099a8484848461156a565b6060610c6c82611015565b610cd25760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161058d565b6000828152600d602052604081208054610ceb90612965565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1790612965565b8015610d645780601f10610d3957610100808354040283529160200191610d64565b820191906000526020600020905b815481529060010190602001808311610d4757829003601f168201915b505050505090506000610d8260408051602081019091526000815290565b9050805160001415610d95575092915050565b815115610dc7578082604051602001610daf929190612a07565b60405160208183030381529060405292505050919050565b610dd08461159d565b949350505050565b6000828152600a6020526040902060010154610df481336110a0565b6106c3838361141b565b600b541580610e0f5750600b544211155b610e575760405162461bcd60e51b8152602060048201526019602482015278436c61696d20656e7472616e636520697320636c6f7365642160381b604482015260640161058d565b610ea1610e65868686611675565b83838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506116ef92505050565b610ee15760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015260640161058d565b610eeb85856114c5565b610ef584846114df565b5050505050565b600b541580610f0d5750600b544211155b610f555760405162461bcd60e51b8152602060048201526019602482015278436c61696d20656e7472616e636520697320636c6f7365642160381b604482015260640161058d565b60005b8551811015610fe857610fd6868281518110610f7657610f766129f1565b6020026020010151868381518110610f9057610f906129f1565b6020026020010151868481518110610faa57610faa6129f1565b6020026020010151868686818110610fc457610fc46129f1565b905060200281019061042e9190612a36565b80610fe081612a93565b915050610f58565b505050505050565b60006001600160e01b03198216637965db0b60e01b148061048d575061048d8261170d565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061106782610a33565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6110aa8282610b31565b610870576110c2816001600160a01b03166014611732565b6110cd836020611732565b6040516020016110de929190612aae565b60408051601f198184030181529082905262461bcd60e51b825261058d9160040161235e565b600061110f82611015565b6111705760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161058d565b600061117b83610a33565b9050806001600160a01b0316846001600160a01b031614806111b65750836001600160a01b03166111ab84610525565b6001600160a01b0316145b80610dd057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610dd0565b826001600160a01b03166111fd82610a33565b6001600160a01b0316146112655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161058d565b6001600160a01b0382166112c75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161058d565b6112d28383836118ce565b6112dd600082611032565b6001600160a01b0383166000908152600360205260408120805460019290611306908490612b23565b90915550506001600160a01b0382166000908152600360205260408120805460019290611334908490612b3a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61139f8282610b31565b610870576000828152600a602090815260408083206001600160a01b03851684529091529020805460ff191660011790556113d73390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6114258282610b31565b15610870576000828152600a602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b61148b81611986565b6000818152600d6020526040902080546114a490612965565b1590506114c2576000818152600d602052604081206114c291612200565b50565b610870828260405180602001604052806000815250611a2d565b6114e882611015565b61154b5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161058d565b6000828152600d6020908152604090912082516106c39284019061223a565b6115758484846111ea565b61158184848484611a60565b61099a5760405162461bcd60e51b815260040161058d90612b52565b60606115a882611015565b61160c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161058d565b600061162360408051602081019091526000815290565b90506000815111611643576040518060200160405280600081525061166e565b8061164d84611b5e565b60405160200161165e929190612a07565b6040516020818303038152906040525b9392505050565b6000610dd083858460405160200161168f93929190612ba4565b60408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b600061166e600080516020612ce38339815191526103aa8585611c5c565b60006001600160e01b0319821663780e9d6360e01b148061048d575061048d82611d12565b60606000611741836002612be3565b61174c906002612b3a565b67ffffffffffffffff81111561176457611764612453565b6040519080825280601f01601f19166020018201604052801561178e576020820181803683370190505b509050600360fc1b816000815181106117a9576117a96129f1565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106117d8576117d86129f1565b60200101906001600160f81b031916908160001a90535060006117fc846002612be3565b611807906001612b3a565b90505b600181111561187f576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061183b5761183b6129f1565b1a60f81b828281518110611851576118516129f1565b60200101906001600160f81b031916908160001a90535060049490941c9361187881612c02565b905061180a565b50831561166e5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161058d565b6001600160a01b0383166119295761192481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61194c565b816001600160a01b0316836001600160a01b03161461194c5761194c8382611d62565b6001600160a01b038216611963576106c381611dff565b826001600160a01b0316826001600160a01b0316146106c3576106c38282611eae565b600061199182610a33565b905061199f816000846118ce565b6119aa600083611032565b6001600160a01b03811660009081526003602052604081208054600192906119d3908490612b23565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611a378383611ef2565b611a446000848484611a60565b6106c35760405162461bcd60e51b815260040161058d90612b52565b60006001600160a01b0384163b15611b5357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611aa4903390899088908890600401612c19565b6020604051808303816000875af1925050508015611adf575060408051601f3d908101601f19168201909252611adc91810190612c4c565b60015b611b39573d808015611b0d576040519150601f19603f3d011682016040523d82523d6000602084013e611b12565b606091505b508051611b315760405162461bcd60e51b815260040161058d90612b52565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610dd0565b506001949350505050565b606081611b825750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bac5780611b9681612a93565b9150611ba59050600a83612c7f565b9150611b86565b60008167ffffffffffffffff811115611bc757611bc7612453565b6040519080825280601f01601f191660200182016040528015611bf1576020820181803683370190505b5090505b8415610dd057611c06600183612b23565b9150611c13600a86612c93565b611c1e906030612b3a565b60f81b818381518110611c3357611c336129f1565b60200101906001600160f81b031916908160001a905350611c55600a86612c7f565b9450611bf5565b600080600080845160411415611c865750505060208201516040830151606084015160001a611cfc565b845160401415611cb45750505060408201516020830151906001600160ff1b0381169060ff1c601b01611cfc565b60405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161058d565b611d0886828585612031565b9695505050505050565b60006001600160e01b031982166380ac58cd60e01b1480611d4357506001600160e01b03198216635b5e139f60e01b145b8061048d57506301ffc9a760e01b6001600160e01b031983161461048d565b60006001611d6f84610aaa565b611d799190612b23565b600083815260076020526040902054909150808214611dcc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e1190600190612b23565b60008381526009602052604081205460088054939450909284908110611e3957611e396129f1565b906000526020600020015490508060088381548110611e5a57611e5a6129f1565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e9257611e92612ca7565b6001900381819060005260206000200160009055905550505050565b6000611eb983610aaa565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611f485760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161058d565b611f5181611015565b15611f9e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161058d565b611faa600083836118ce565b6001600160a01b0382166000908152600360205260408120805460019290611fd3908490612b3a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156120ae5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161058d565b60ff841615806120c157508360ff166001145b156120d4576120d184601b612cbd565b93505b8360ff16601b14806120e957508360ff16601c145b6121405760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161058d565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015612194573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166121f75760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161058d565b95945050505050565b50805461220c90612965565b6000825580601f1061221c575050565b601f0160209004906000526020600020908101906114c291906122be565b82805461224690612965565b90600052602060002090601f01602090048101928261226857600085556122ae565b82601f1061228157805160ff19168380011785556122ae565b828001600101855582156122ae579182015b828111156122ae578251825591602001919060010190612293565b506122ba9291506122be565b5090565b5b808211156122ba57600081556001016122bf565b6001600160e01b0319811681146114c257600080fd5b6000602082840312156122fb57600080fd5b813561166e816122d3565b60005b83811015612321578181015183820152602001612309565b8381111561099a5750506000910152565b6000815180845261234a816020860160208601612306565b601f01601f19169290920160200192915050565b60208152600061166e6020830184612332565b60006020828403121561238357600080fd5b5035919050565b80356001600160a01b03811681146123a157600080fd5b919050565b600080604083850312156123b957600080fd5b6123c28361238a565b946020939093013593505050565b6000602082840312156123e257600080fd5b61166e8261238a565b60008060006060848603121561240057600080fd5b6124098461238a565b92506124176020850161238a565b9150604084013590509250925092565b6000806040838503121561243a57600080fd5b8235915061244a6020840161238a565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561249257612492612453565b604052919050565b600067ffffffffffffffff8311156124b4576124b4612453565b6124c7601f8401601f1916602001612469565b90508281528383830111156124db57600080fd5b828260208301376000602084830101529392505050565b600082601f83011261250357600080fd5b61166e8383356020850161249a565b60008060006060848603121561252757600080fd5b6125308461238a565b925060208401359150604084013567ffffffffffffffff81111561255357600080fd5b61255f868287016124f2565b9150509250925092565b6000806040838503121561257c57600080fd5b6125858361238a565b91506020830135801515811461259a57600080fd5b809150509250929050565b600080600080608085870312156125bb57600080fd5b6125c48561238a565b93506125d26020860161238a565b925060408501359150606085013567ffffffffffffffff8111156125f557600080fd5b8501601f8101871361260657600080fd5b6126158782356020840161249a565b91505092959194509250565b60008060008060006080868803121561263957600080fd5b6126428661238a565b945060208601359350604086013567ffffffffffffffff8082111561266657600080fd5b61267289838a016124f2565b9450606088013591508082111561268857600080fd5b818801915088601f83011261269c57600080fd5b8135818111156126ab57600080fd5b8960208285010111156126bd57600080fd5b9699959850939650602001949392505050565b600067ffffffffffffffff8211156126ea576126ea612453565b5060051b60200190565b600082601f83011261270557600080fd5b8135602061271a612715836126d0565b612469565b82815260059290921b8401810191818101908684111561273957600080fd5b8286015b84811015612754578035835291830191830161273d565b509695505050505050565b600082601f83011261277057600080fd5b81356020612780612715836126d0565b82815260059290921b8401810191818101908684111561279f57600080fd5b8286015b8481101561275457803567ffffffffffffffff8111156127c35760008081fd5b6127d18986838b01016124f2565b8452509183019183016127a3565b60008083601f8401126127f157600080fd5b50813567ffffffffffffffff81111561280957600080fd5b6020830191508360208260051b850101111561282457600080fd5b9250929050565b60008060008060006080868803121561284357600080fd5b853567ffffffffffffffff8082111561285b57600080fd5b818801915088601f83011261286f57600080fd5b8135602061287f612715836126d0565b82815260059290921b8401810191818101908c84111561289e57600080fd5b948201945b838610156128c3576128b48661238a565b825294820194908201906128a3565b995050890135925050808211156128d957600080fd5b6128e589838a016126f4565b955060408801359150808211156128fb57600080fd5b61290789838a0161275f565b9450606088013591508082111561291d57600080fd5b5061292a888289016127df565b969995985093965092949392505050565b6000806040838503121561294e57600080fd5b6129578361238a565b915061244a6020840161238a565b600181811c9082168061297957607f821691505b6020821081141561299a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60008351612a19818460208801612306565b835190830190612a2d818360208801612306565b01949350505050565b6000808335601e19843603018112612a4d57600080fd5b83018035915067ffffffffffffffff821115612a6857600080fd5b60200191503681900382131561282457600080fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612aa757612aa7612a7d565b5060010190565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612ae6816017850160208801612306565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612b17816028840160208801612306565b01602801949350505050565b600082821015612b3557612b35612a7d565b500390565b60008219821115612b4d57612b4d612a7d565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b8381526bffffffffffffffffffffffff198360601b16602082015260008251612bd4816034850160208701612306565b91909101603401949350505050565b6000816000190483118215151615612bfd57612bfd612a7d565b500290565b600081612c1157612c11612a7d565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d0890830184612332565b600060208284031215612c5e57600080fd5b815161166e816122d3565b634e487b7160e01b600052601260045260246000fd5b600082612c8e57612c8e612c69565b500490565b600082612ca257612ca2612c69565b500690565b634e487b7160e01b600052603160045260246000fd5b600060ff821660ff84168060ff03821115612cda57612cda612a7d565b01939250505056fe9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6a2646970667358221220cbd9090c244560c2b6ce46c396a23433ccc27de429fccbb78d668a3a9b0933ff64736f6c634300080c0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000006329e37f000000000000000000000000cd62cd8ea5ae7d866e1f9cf916288c8ba2c4e4c6000000000000000000000000000000000000000000000000000000000000000c4461746120467269676174650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4461746120467269676174650000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Data Frigate
Arg [1] : symbol (string): Data Frigate
Arg [2] : _deadline (uint256): 1663689599
Arg [3] : _owner (address): 0xcD62cD8ea5ae7d866E1F9cF916288c8bA2C4E4c6

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000000000000000006329e37f
Arg [3] : 000000000000000000000000cd62cd8ea5ae7d866e1f9cf916288c8ba2c4e4c6
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 4461746120467269676174650000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [7] : 4461746120467269676174650000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

55373:4215:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57100:186;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;57100:186:0;;;;;;;;27125:100;;;:::i;:::-;;;;;;;:::i;28585:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;28585:221:0;1528:203:1;28122:397:0;;;;;;:::i;:::-;;:::i;:::-;;56114:103;;;;;;:::i;:::-;;:::i;39499:113::-;39587:10;:17;39499:113;;;2510:25:1;;;2498:2;2483:18;39499:113:0;2364:177:1;56975:117:0;;;;;;:::i;:::-;;:::i;29475:305::-;;;;;;:::i;:::-;;:::i;52179:123::-;;;;;;:::i;:::-;52245:7;52272:12;;;:6;:12;;;;;:22;;;;52179:123;55545:23;;;;;;52564:147;;;;;;:::i;:::-;;:::i;39167:256::-;;;;;;:::i;:::-;;:::i;53612:218::-;;;;;;:::i;:::-;;:::i;29851:151::-;;;;;;:::i;:::-;;:::i;59380:205::-;;;;;;:::i;:::-;;:::i;59131:241::-;;;;;;:::i;:::-;;:::i;39689:233::-;;;;;;:::i;:::-;;:::i;26819:239::-;;;;;;:::i;:::-;;:::i;26549:208::-;;;;;;:::i;:::-;;:::i;55575:20::-;;;;;-1:-1:-1;;;;;55575:20:0;;;51177:139;;;;;;:::i;:::-;;:::i;27294:104::-;;;:::i;49142:49::-;;49187:4;49142:49;;28878:295;;;;;;:::i;:::-;;:::i;30073:285::-;;;;;;:::i;:::-;;:::i;56288:679::-;;;;;;:::i;:::-;;:::i;55476:62::-;;-1:-1:-1;;;;;;;;;;;55476:62:0;;52956:149;;;;;;:::i;:::-;;:::i;57294:299::-;;;;;;:::i;:::-;;:::i;57601:306::-;;;;;;:::i;:::-;;:::i;29244:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;29365:25:0;;;29341:4;29365:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29244:164;57100:186;57218:4;57242:36;57266:11;57242:23;:36::i;:::-;57235:43;57100:186;-1:-1:-1;;57100:186:0:o;27125:100::-;27179:13;27212:5;27205:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27125:100;:::o;28585:221::-;28661:7;28689:16;28697:7;28689;:16::i;:::-;28681:73;;;;-1:-1:-1;;;28681:73:0;;11687:2:1;28681:73:0;;;11669:21:1;11726:2;11706:18;;;11699:30;11765:34;11745:18;;;11738:62;-1:-1:-1;;;11816:18:1;;;11809:42;11868:19;;28681:73:0;;;;;;;;;-1:-1:-1;28774:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28774:24:0;;28585:221::o;28122:397::-;28203:13;28219:23;28234:7;28219:14;:23::i;:::-;28203:39;;28267:5;-1:-1:-1;;;;;28261:11:0;:2;-1:-1:-1;;;;;28261:11:0;;;28253:57;;;;-1:-1:-1;;;28253:57:0;;12100:2:1;28253:57:0;;;12082:21:1;12139:2;12119:18;;;12112:30;12178:34;12158:18;;;12151:62;-1:-1:-1;;;12229:18:1;;;12222:31;12270:19;;28253:57:0;11898:397:1;28253:57:0;24647:10;-1:-1:-1;;;;;28331:21:0;;;;:62;;-1:-1:-1;28356:37:0;28373:5;24647:10;29244:164;:::i;28356:37::-;28323:154;;;;-1:-1:-1;;;28323:154:0;;12502:2:1;28323:154:0;;;12484:21:1;12541:2;12521:18;;;12514:30;12580:34;12560:18;;;12553:62;12651:26;12631:18;;;12624:54;12695:19;;28323:154:0;12300:420:1;28323:154:0;28490:21;28499:2;28503:7;28490:8;:21::i;:::-;28192:327;28122:397;;:::o;56114:103::-;49187:4;50746:30;49187:4;24647:10;50746;:30::i;:::-;-1:-1:-1;56195:5:0::1;:14:::0;;-1:-1:-1;;;;;;56195:14:0::1;-1:-1:-1::0;;;;;56195:14:0;;;::::1;::::0;;;::::1;::::0;;56114:103::o;56975:117::-;49187:4;50746:30;49187:4;24647:10;50746;:30::i;:::-;-1:-1:-1;57064:8:0::1;:20:::0;56975:117::o;29475:305::-;29636:41;24647:10;29669:7;29636:18;:41::i;:::-;29628:103;;;;-1:-1:-1;;;29628:103:0;;;;;;;:::i;:::-;29744:28;29754:4;29760:2;29764:7;29744:9;:28::i;52564:147::-;52245:7;52272:12;;;:6;:12;;;;;:22;;;50746:30;50757:4;24647:10;50746;:30::i;:::-;52678:25:::1;52689:4;52695:7;52678:10;:25::i;39167:256::-:0;39264:7;39300:23;39317:5;39300:16;:23::i;:::-;39292:5;:31;39284:87;;;;-1:-1:-1;;;39284:87:0;;13345:2:1;39284:87:0;;;13327:21:1;13384:2;13364:18;;;13357:30;13423:34;13403:18;;;13396:62;-1:-1:-1;;;13474:18:1;;;13467:41;13525:19;;39284:87:0;13143:407:1;39284:87:0;-1:-1:-1;;;;;;39389:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39167:256::o;53612:218::-;-1:-1:-1;;;;;53708:23:0;;24647:10;53708:23;53700:83;;;;-1:-1:-1;;;53700:83:0;;13757:2:1;53700:83:0;;;13739:21:1;13796:2;13776:18;;;13769:30;13835:34;13815:18;;;13808:62;-1:-1:-1;;;13886:18:1;;;13879:45;13941:19;;53700:83:0;13555:411:1;53700:83:0;53796:26;53808:4;53814:7;53796:11;:26::i;:::-;53612:218;;:::o;29851:151::-;29955:39;29972:4;29978:2;29982:7;29955:39;;;;;;;;;;;;:16;:39::i;59380:205::-;-1:-1:-1;;;;;;;;;;;50746:30:0;55514:24;24647:10;50746;:30::i;:::-;59461:41:::1;24647:10:::0;59480:12:::1;59494:7;59461:18;:41::i;:::-;59453:99;;;::::0;-1:-1:-1;;;59453:99:0;;14173:2:1;59453:99:0::1;::::0;::::1;14155:21:1::0;14212:2;14192:18;;;14185:30;14251:34;14231:18;;;14224:62;-1:-1:-1;;;14302:18:1;;;14295:43;14355:19;;59453:99:0::1;13971:409:1::0;59453:99:0::1;59563:14;59569:7;59563:5;:14::i;59131:241::-:0;-1:-1:-1;;;;;;;;;;;50746:30:0;55514:24;24647:10;50746;:30::i;:::-;59251:16:::1;59259:7;59251;:16::i;:::-;59250:17;59242:52;;;::::0;-1:-1:-1;;;59242:52:0;;14587:2:1;59242:52:0::1;::::0;::::1;14569:21:1::0;14626:2;14606:18;;;14599:30;-1:-1:-1;;;14645:18:1;;;14638:52;14707:18;;59242:52:0::1;14385:346:1::0;59242:52:0::1;59305:22;59315:2;59319:7;59305:9;:22::i;:::-;59338:26;59351:7;59360:3;59338:12;:26::i;:::-;59131:241:::0;;;;:::o;39689:233::-;39764:7;39800:30;39587:10;:17;;39499:113;39800:30;39792:5;:38;39784:95;;;;-1:-1:-1;;;39784:95:0;;14938:2:1;39784:95:0;;;14920:21:1;14977:2;14957:18;;;14950:30;15016:34;14996:18;;;14989:62;-1:-1:-1;;;15067:18:1;;;15060:42;15119:19;;39784:95:0;14736:408:1;39784:95:0;39897:10;39908:5;39897:17;;;;;;;;:::i;:::-;;;;;;;;;39890:24;;39689:233;;;:::o;26819:239::-;26891:7;26927:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26927:16:0;26962:19;26954:73;;;;-1:-1:-1;;;26954:73:0;;15483:2:1;26954:73:0;;;15465:21:1;15522:2;15502:18;;;15495:30;15561:34;15541:18;;;15534:62;-1:-1:-1;;;15612:18:1;;;15605:39;15661:19;;26954:73:0;15281:405:1;26549:208:0;26621:7;-1:-1:-1;;;;;26649:19:0;;26641:74;;;;-1:-1:-1;;;26641:74:0;;15893:2:1;26641:74:0;;;15875:21:1;15932:2;15912:18;;;15905:30;15971:34;15951:18;;;15944:62;-1:-1:-1;;;16022:18:1;;;16015:40;16072:19;;26641:74:0;15691:406:1;26641:74:0;-1:-1:-1;;;;;;26733:16:0;;;;;:9;:16;;;;;;;26549:208::o;51177:139::-;51255:4;51279:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;51279:29:0;;;;;;;;;;;;;;;51177:139::o;27294:104::-;27350:13;27383:7;27376:14;;;;;:::i;28878:295::-;-1:-1:-1;;;;;28981:24:0;;24647:10;28981:24;;28973:62;;;;-1:-1:-1;;;28973:62:0;;16304:2:1;28973:62:0;;;16286:21:1;16343:2;16323:18;;;16316:30;16382:27;16362:18;;;16355:55;16427:18;;28973:62:0;16102:349:1;28973:62:0;24647:10;29048:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29048:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29048:53:0;;;;;;;;;;29117:48;;540:41:1;;;29048:42:0;;24647:10;29117:48;;513:18:1;29117:48:0;;;;;;;28878:295;;:::o;30073:285::-;30205:41;24647:10;30224:12;24567:98;30205:41;30197:103;;;;-1:-1:-1;;;30197:103:0;;;;;;;:::i;:::-;30311:39;30325:4;30331:2;30335:7;30344:5;30311:13;:39::i;56288:679::-;56361:13;56395:16;56403:7;56395;:16::i;:::-;56387:78;;;;-1:-1:-1;;;56387:78:0;;16658:2:1;56387:78:0;;;16640:21:1;16697:2;16677:18;;;16670:30;16736:34;16716:18;;;16709:62;-1:-1:-1;;;16787:18:1;;;16780:47;16844:19;;56387:78:0;16456:413:1;56387:78:0;56478:23;56504:19;;;:10;:19;;;;;56478:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56534:18;56555:10;28043:9;;;;;;;;;-1:-1:-1;28043:9:0;;;27966:94;56555:10;56534:31;;56647:4;56641:18;56663:1;56641:23;56637:72;;;-1:-1:-1;56688:9:0;56288:679;-1:-1:-1;;56288:679:0:o;56637:72::-;56813:23;;:27;56809:108;;56888:4;56894:9;56871:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56857:48;;;;56288:679;;;:::o;56809:108::-;56936:23;56951:7;56936:14;:23::i;:::-;56929:30;56288:679;-1:-1:-1;;;;56288:679:0:o;52956:149::-;52245:7;52272:12;;;:6;:12;;;;;:22;;;50746:30;50757:4;24647:10;50746;:30::i;:::-;53071:26:::1;53083:4;53089:7;53071:11;:26::i;57294:299::-:0;56012:8;;:13;;:44;;;56048:8;;56029:15;:27;;56012:44;56004:82;;;;-1:-1:-1;;;56004:82:0;;17551:2:1;56004:82:0;;;17533:21:1;17590:2;17570:18;;;17563:30;-1:-1:-1;;;17609:18:1;;;17602:55;17674:18;;56004:82:0;17349:349:1;56004:82:0;57440:48:::1;57448:28;57454:7;57463;57472:3;57448:5;:28::i;:::-;57478:9;;57440:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;57440:7:0::1;::::0;-1:-1:-1;;;57440:48:0:i:1;:::-;57432:78;;;::::0;-1:-1:-1;;;57432:78:0;;17905:2:1;57432:78:0::1;::::0;::::1;17887:21:1::0;17944:2;17924:18;;;17917:30;-1:-1:-1;;;17963:18:1;;;17956:47;18020:18;;57432:78:0::1;17703:341:1::0;57432:78:0::1;57521:27;57531:7;57540;57521:9;:27::i;:::-;57559:26;57572:7;57581:3;57559:12;:26::i;:::-;57294:299:::0;;;;;:::o;57601:306::-;56012:8;;:13;;:44;;;56048:8;;56029:15;:27;;56012:44;56004:82;;;;-1:-1:-1;;;56004:82:0;;17551:2:1;56004:82:0;;;17533:21:1;17590:2;17570:18;;;17563:30;-1:-1:-1;;;17609:18:1;;;17602:55;17674:18;;56004:82:0;17349:349:1;56004:82:0;57780:6:::1;57775:125;57796:8;:15;57792:1;:19;57775:125;;;57833:55;57839:8;57848:1;57839:11;;;;;;;;:::i;:::-;;;;;;;57852:8;57861:1;57852:11;;;;;;;;:::i;:::-;;;;;;;57865:4;57870:1;57865:7;;;;;;;;:::i;:::-;;;;;;;57874:10;;57885:1;57874:13;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;57833:55::-;57813:3:::0;::::1;::::0;::::1;:::i;:::-;;;;57775:125;;;;57601:306:::0;;;;;:::o;50868:217::-;50953:4;-1:-1:-1;;;;;;50977:47:0;;-1:-1:-1;;;50977:47:0;;:100;;;51041:36;51065:11;51041:23;:36::i;31825:127::-;31890:4;31914:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31914:16:0;:30;;;31825:127::o;35702:174::-;35777:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35777:29:0;-1:-1:-1;;;;;35777:29:0;;;;;;;;:24;;35831:23;35777:24;35831:14;:23::i;:::-;-1:-1:-1;;;;;35822:46:0;;;;;;;;;;;35702:174;;:::o;51606:384::-;51686:22;51694:4;51700:7;51686;:22::i;:::-;51682:301;;51818:41;51846:7;-1:-1:-1;;;;;51818:41:0;51856:2;51818:19;:41::i;:::-;51916:38;51944:4;51951:2;51916:19;:38::i;:::-;51739:230;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;51739:230:0;;;;;;;;;;-1:-1:-1;;;51725:246:0;;;;;;;:::i;32119:348::-;32212:4;32237:16;32245:7;32237;:16::i;:::-;32229:73;;;;-1:-1:-1;;;32229:73:0;;19840:2:1;32229:73:0;;;19822:21:1;19879:2;19859:18;;;19852:30;19918:34;19898:18;;;19891:62;-1:-1:-1;;;19969:18:1;;;19962:42;20021:19;;32229:73:0;19638:408:1;32229:73:0;32313:13;32329:23;32344:7;32329:14;:23::i;:::-;32313:39;;32382:5;-1:-1:-1;;;;;32371:16:0;:7;-1:-1:-1;;;;;32371:16:0;;:51;;;;32415:7;-1:-1:-1;;;;;32391:31:0;:20;32403:7;32391:11;:20::i;:::-;-1:-1:-1;;;;;32391:31:0;;32371:51;:87;;;-1:-1:-1;;;;;;29365:25:0;;;29341:4;29365:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32426:32;29244:164;35040:544;35165:4;-1:-1:-1;;;;;35138:31:0;:23;35153:7;35138:14;:23::i;:::-;-1:-1:-1;;;;;35138:31:0;;35130:85;;;;-1:-1:-1;;;35130:85:0;;20253:2:1;35130:85:0;;;20235:21:1;20292:2;20272:18;;;20265:30;20331:34;20311:18;;;20304:62;-1:-1:-1;;;20382:18:1;;;20375:39;20431:19;;35130:85:0;20051:405:1;35130:85:0;-1:-1:-1;;;;;35234:16:0;;35226:65;;;;-1:-1:-1;;;35226:65:0;;20663:2:1;35226:65:0;;;20645:21:1;20702:2;20682:18;;;20675:30;20741:34;20721:18;;;20714:62;-1:-1:-1;;;20792:18:1;;;20785:34;20836:19;;35226:65:0;20461:400:1;35226:65:0;35304:39;35325:4;35331:2;35335:7;35304:20;:39::i;:::-;35408:29;35425:1;35429:7;35408:8;:29::i;:::-;-1:-1:-1;;;;;35450:15:0;;;;;;:9;:15;;;;;:20;;35469:1;;35450:15;:20;;35469:1;;35450:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35481:13:0;;;;;;:9;:13;;;;;:18;;35498:1;;35481:13;:18;;35498:1;;35481:18;:::i;:::-;;;;-1:-1:-1;;35510:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35510:21:0;-1:-1:-1;;;;;35510:21:0;;;;;;;;;35549:27;;35510:16;;35549:27;;;;;;;35040:544;;;:::o;54860:229::-;54935:22;54943:4;54949:7;54935;:22::i;:::-;54930:152;;54974:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;54974:29:0;;;;;;;;;:36;;-1:-1:-1;;54974:36:0;55006:4;54974:36;;;55057:12;24647:10;;24567:98;55057:12;-1:-1:-1;;;;;55030:40:0;55048:7;-1:-1:-1;;;;;55030:40:0;55042:4;55030:40;;;;;;;;;;54860:229;;:::o;55097:230::-;55172:22;55180:4;55186:7;55172;:22::i;:::-;55168:152;;;55243:5;55211:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;55211:29:0;;;;;;;;;;:37;;-1:-1:-1;;55211:37:0;;;55268:40;24647:10;;55211:12;;55268:40;;55243:5;55268:40;55097:230;;:::o;58509:206::-;58578:20;58590:7;58578:11;:20::i;:::-;58621:19;;;;:10;:19;;;;;58615:33;;;;;:::i;:::-;:38;;-1:-1:-1;58611:97:0;;58677:19;;;;:10;:19;;;;;58670:26;;;:::i;:::-;58509:206;:::o;32809:110::-;32885:26;32895:2;32899:7;32885:26;;;;;;;;;;;;:9;:26::i;58063:217::-;58163:16;58171:7;58163;:16::i;:::-;58155:75;;;;-1:-1:-1;;;58155:75:0;;21331:2:1;58155:75:0;;;21313:21:1;21370:2;21350:18;;;21343:30;21409:34;21389:18;;;21382:62;-1:-1:-1;;;21460:18:1;;;21453:44;21514:19;;58155:75:0;21129:410:1;58155:75:0;58241:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;31240:272::-;31354:28;31364:4;31370:2;31374:7;31354:9;:28::i;:::-;31401:48;31424:4;31430:2;31434:7;31443:5;31401:22;:48::i;:::-;31393:111;;;;-1:-1:-1;;;31393:111:0;;;;;;;:::i;27469:360::-;27542:13;27576:16;27584:7;27576;:16::i;:::-;27568:76;;;;-1:-1:-1;;;27568:76:0;;22165:2:1;27568:76:0;;;22147:21:1;22204:2;22184:18;;;22177:30;22243:34;22223:18;;;22216:62;-1:-1:-1;;;22294:18:1;;;22287:45;22349:19;;27568:76:0;21963:411:1;27568:76:0;27657:21;27681:10;28043:9;;;;;;;;;-1:-1:-1;28043:9:0;;;27966:94;27681:10;27657:34;;27733:1;27715:7;27709:21;:25;:112;;;;;;;;;;;;;;;;;27774:7;27783:18;:7;:16;:18::i;:::-;27757:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27709:112;27702:119;27469:360;-1:-1:-1;;;27469:360:0:o;58723:216::-;58819:7;58851:80;58907:7;58916;58925:3;58890:39;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;58890:39:0;;;;;;;;;58880:50;;58890:39;58880:50;;;;24883:66:1;4663:58:0;;;24871:79:1;24966:12;;;;24959:28;;;;4663:58:0;;;;;;;;;;25003:12:1;;;;4663:58:0;;;4653:69;;;;;;4461:269;58947:176;59032:4;59061:54;-1:-1:-1;;;;;;;;;;;59082:32:0;59096:6;59104:9;59082:13;:32::i;38846:237::-;38948:4;-1:-1:-1;;;;;;38972:50:0;;-1:-1:-1;;;38972:50:0;;:103;;;39039:36;39063:11;39039:23;:36::i;23541:447::-;23616:13;23642:19;23674:10;23678:6;23674:1;:10;:::i;:::-;:14;;23687:1;23674:14;:::i;:::-;23664:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23664:25:0;;23642:47;;-1:-1:-1;;;23700:6:0;23707:1;23700:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;23700:15:0;;;;;;;;;-1:-1:-1;;;23726:6:0;23733:1;23726:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;23726:15:0;;;;;;;;-1:-1:-1;23757:9:0;23769:10;23773:6;23769:1;:10;:::i;:::-;:14;;23782:1;23769:14;:::i;:::-;23757:26;;23752:131;23789:1;23785;:5;23752:131;;;-1:-1:-1;;;23833:5:0;23841:3;23833:11;23824:21;;;;;;;:::i;:::-;;;;23812:6;23819:1;23812:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;23812:33:0;;;;;;;;-1:-1:-1;23870:1:0;23860:11;;;;;23792:3;;;:::i;:::-;;;23752:131;;;-1:-1:-1;23901:10:0;;23893:55;;;;-1:-1:-1;;;23893:55:0;;23360:2:1;23893:55:0;;;23342:21:1;;;23379:18;;;23372:30;23438:34;23418:18;;;23411:62;23490:18;;23893:55:0;23158:356:1;40535:555:0;-1:-1:-1;;;;;40707:18:0;;40703:187;;40742:40;40774:7;41917:10;:17;;41890:24;;;;:15;:24;;;;;:44;;;41945:24;;;;;;;;;;;;41813:164;40742:40;40703:187;;;40812:2;-1:-1:-1;;;;;40804:10:0;:4;-1:-1:-1;;;;;40804:10:0;;40800:90;;40831:47;40864:4;40870:7;40831:32;:47::i;:::-;-1:-1:-1;;;;;40904:16:0;;40900:183;;40937:45;40974:7;40937:36;:45::i;40900:183::-;41010:4;-1:-1:-1;;;;;41004:10:0;:2;-1:-1:-1;;;;;41004:10:0;;41000:83;;41031:40;41059:2;41063:7;41031:27;:40::i;34343:360::-;34403:13;34419:23;34434:7;34419:14;:23::i;:::-;34403:39;;34455:48;34476:5;34491:1;34495:7;34455:20;:48::i;:::-;34544:29;34561:1;34565:7;34544:8;:29::i;:::-;-1:-1:-1;;;;;34586:16:0;;;;;;:9;:16;;;;;:21;;34606:1;;34586:16;:21;;34606:1;;34586:21;:::i;:::-;;;;-1:-1:-1;;34625:16:0;;;;:7;:16;;;;;;34618:23;;-1:-1:-1;;;;;;34618:23:0;;;34659:36;34633:7;;34625:16;-1:-1:-1;;;;;34659:36:0;;;;;34625:16;;34659:36;34392:311;34343:360;:::o;33146:250::-;33242:18;33248:2;33252:7;33242:5;:18::i;:::-;33279:54;33310:1;33314:2;33318:7;33327:5;33279:22;:54::i;:::-;33271:117;;;;-1:-1:-1;;;33271:117:0;;;;;;;:::i;36441:843::-;36562:4;-1:-1:-1;;;;;36588:13:0;;6360:20;6399:8;36584:693;;36624:72;;-1:-1:-1;;;36624:72:0;;-1:-1:-1;;;;;36624:36:0;;;;;:72;;24647:10;;36675:4;;36681:7;;36690:5;;36624:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36624:72:0;;;;;;;;-1:-1:-1;;36624:72:0;;;;;;;;;;;;:::i;:::-;;;36620:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36870:13:0;;36866:341;;36913:60;;-1:-1:-1;;;36913:60:0;;;;;;;:::i;36866:341::-;37157:6;37151:13;37142:6;37138:2;37134:15;37127:38;36620:602;-1:-1:-1;;;;;;36747:55:0;-1:-1:-1;;;36747:55:0;;-1:-1:-1;36740:62:0;;36584:693;-1:-1:-1;37261:4:0;36441:843;;;;;;:::o;22240:723::-;22296:13;22517:10;22513:53;;-1:-1:-1;;22544:10:0;;;;;;;;;;;;-1:-1:-1;;;22544:10:0;;;;;22240:723::o;22513:53::-;22591:5;22576:12;22632:78;22639:9;;22632:78;;22665:8;;;;:::i;:::-;;-1:-1:-1;22688:10:0;;-1:-1:-1;22696:2:0;22688:10;;:::i;:::-;;;22632:78;;;22720:19;22752:6;22742:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22742:17:0;;22720:39;;22770:154;22777:10;;22770:154;;22804:11;22814:1;22804:11;;:::i;:::-;;-1:-1:-1;22873:10:0;22881:2;22873:5;:10;:::i;:::-;22860:24;;:2;:24;:::i;:::-;22847:39;;22830:6;22837;22830:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;22830:56:0;;;;;;;;-1:-1:-1;22901:11:0;22910:2;22901:11;;:::i;:::-;;;22770:154;;1054:1492;1132:7;1209:9;1229;1249:7;1469:9;:16;1489:2;1469:22;1465:1032;;;-1:-1:-1;;;1756:4:0;1741:20;;1735:27;1806:4;1791:20;;1785:27;1864:4;1849:20;;1843:27;1840:1;1835:36;1465:1032;;;1907:9;:16;1927:2;1907:22;1903:594;;;-1:-1:-1;;;2199:4:0;2184:20;;2178:27;2249:4;2234:20;;2228:27;;-1:-1:-1;;;;;2278:75:0;;;2384:3;2380:12;2394:2;2376:21;1903:594;;;2444:41;;-1:-1:-1;;;2444:41:0;;25228:2:1;2444:41:0;;;25210:21:1;25267:2;25247:18;;;25240:30;25306:33;25286:18;;;25279:61;25357:18;;2444:41:0;25026:355:1;1903:594:0;2516:22;2524:4;2530:1;2533;2536;2516:7;:22::i;:::-;2509:29;1054:1492;-1:-1:-1;;;;;;1054:1492:0:o;26193:292::-;26295:4;-1:-1:-1;;;;;;26319:40:0;;-1:-1:-1;;;26319:40:0;;:105;;-1:-1:-1;;;;;;;26376:48:0;;-1:-1:-1;;;26376:48:0;26319:105;:158;;;-1:-1:-1;;;;;;;;;;21932:40:0;;;26441:36;21823:157;42604:988;42870:22;42920:1;42895:22;42912:4;42895:16;:22::i;:::-;:26;;;;:::i;:::-;42932:18;42953:26;;;:17;:26;;;;;;42870:51;;-1:-1:-1;43086:28:0;;;43082:328;;-1:-1:-1;;;;;43153:18:0;;43131:19;43153:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43204:30;;;;;;:44;;;43321:30;;:17;:30;;;;;:43;;;43082:328;-1:-1:-1;43506:26:0;;;;:17;:26;;;;;;;;43499:33;;;-1:-1:-1;;;;;43550:18:0;;;;;:12;:18;;;;;:34;;;;;;;43543:41;42604:988::o;43887:1079::-;44165:10;:17;44140:22;;44165:21;;44185:1;;44165:21;:::i;:::-;44197:18;44218:24;;;:15;:24;;;;;;44591:10;:26;;44140:46;;-1:-1:-1;44218:24:0;;44140:46;;44591:26;;;;;;:::i;:::-;;;;;;;;;44569:48;;44655:11;44630:10;44641;44630:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44735:28;;;:15;:28;;;;;;;:41;;;44907:24;;;;;44900:31;44942:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43958:1008;;;43887:1079;:::o;41391:221::-;41476:14;41493:20;41510:2;41493:16;:20::i;:::-;-1:-1:-1;;;;;41524:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41569:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41391:221:0:o;33732:382::-;-1:-1:-1;;;;;33812:16:0;;33804:61;;;;-1:-1:-1;;;33804:61:0;;25720:2:1;33804:61:0;;;25702:21:1;;;25739:18;;;25732:30;25798:34;25778:18;;;25771:62;25850:18;;33804:61:0;25518:356:1;33804:61:0;33885:16;33893:7;33885;:16::i;:::-;33884:17;33876:58;;;;-1:-1:-1;;;33876:58:0;;26081:2:1;33876:58:0;;;26063:21:1;26120:2;26100:18;;;26093:30;26159;26139:18;;;26132:58;26207:18;;33876:58:0;25879:352:1;33876:58:0;33947:45;33976:1;33980:2;33984:7;33947:20;:45::i;:::-;-1:-1:-1;;;;;34005:13:0;;;;;;:9;:13;;;;;:18;;34022:1;;34005:13;:18;;34022:1;;34005:18;:::i;:::-;;;;-1:-1:-1;;34034:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34034:21:0;-1:-1:-1;;;;;34034:21:0;;;;;;;;34073:33;;34034:16;;;34073:33;;34034:16;;34073:33;33732:382;;:::o;2685:1476::-;2770:7;3695:66;3681:80;;;3673:127;;;;-1:-1:-1;;;3673:127:0;;26438:2:1;3673:127:0;;;26420:21:1;26477:2;26457:18;;;26450:30;26516:34;26496:18;;;26489:62;-1:-1:-1;;;26567:18:1;;;26560:32;26609:19;;3673:127:0;26236:398:1;3673:127:0;3815:6;;;;;:16;;;3825:1;:6;;3830:1;3825:6;3815:16;3811:33;;;3838:6;:1;3842:2;3838:6;:::i;:::-;3834:10;;3811:33;3863:1;:7;;3868:2;3863:7;:18;;;;3874:1;:7;;3879:2;3874:7;3863:18;3855:65;;;;-1:-1:-1;;;3855:65:0;;27050:2:1;3855:65:0;;;27032:21:1;27089:2;27069:18;;;27062:30;27128:34;27108:18;;;27101:62;-1:-1:-1;;;27179:18:1;;;27172:32;27221:19;;3855:65:0;26848:398:1;3855:65:0;4035:24;;;4018:14;4035:24;;;;;;;;;27478:25:1;;;27551:4;27539:17;;27519:18;;;27512:45;;;;27573:18;;;27566:34;;;27616:18;;;27609:34;;;4035:24:0;;27450:19:1;;4035:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4035:24:0;;-1:-1:-1;;4035:24:0;;;-1:-1:-1;;;;;;;4078:20:0;;4070:57;;;;-1:-1:-1;;;4070:57:0;;27856:2:1;4070:57:0;;;27838:21:1;27895:2;27875:18;;;27868:30;27934:26;27914:18;;;27907:54;27978:18;;4070:57:0;27654:348:1;4070:57:0;4147:6;2685:1476;-1:-1:-1;;;;;2685:1476:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:186::-;2232:6;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2324:29;2343:9;2324:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;3246:254::-;3314:6;3322;3375:2;3363:9;3354:7;3350:23;3346:32;3343:52;;;3391:1;3388;3381:12;3343:52;3427:9;3414:23;3404:33;;3456:38;3490:2;3479:9;3475:18;3456:38;:::i;:::-;3446:48;;3246:254;;;;;:::o;3505:127::-;3566:10;3561:3;3557:20;3554:1;3547:31;3597:4;3594:1;3587:15;3621:4;3618:1;3611:15;3637:275;3708:2;3702:9;3773:2;3754:13;;-1:-1:-1;;3750:27:1;3738:40;;3808:18;3793:34;;3829:22;;;3790:62;3787:88;;;3855:18;;:::i;:::-;3891:2;3884:22;3637:275;;-1:-1:-1;3637:275:1:o;3917:407::-;3982:5;4016:18;4008:6;4005:30;4002:56;;;4038:18;;:::i;:::-;4076:57;4121:2;4100:15;;-1:-1:-1;;4096:29:1;4127:4;4092:40;4076:57;:::i;:::-;4067:66;;4156:6;4149:5;4142:21;4196:3;4187:6;4182:3;4178:16;4175:25;4172:45;;;4213:1;4210;4203:12;4172:45;4262:6;4257:3;4250:4;4243:5;4239:16;4226:43;4316:1;4309:4;4300:6;4293:5;4289:18;4285:29;4278:40;3917:407;;;;;:::o;4329:222::-;4372:5;4425:3;4418:4;4410:6;4406:17;4402:27;4392:55;;4443:1;4440;4433:12;4392:55;4465:80;4541:3;4532:6;4519:20;4512:4;4504:6;4500:17;4465:80;:::i;4556:464::-;4643:6;4651;4659;4712:2;4700:9;4691:7;4687:23;4683:32;4680:52;;;4728:1;4725;4718:12;4680:52;4751:29;4770:9;4751:29;:::i;:::-;4741:39;;4827:2;4816:9;4812:18;4799:32;4789:42;;4882:2;4871:9;4867:18;4854:32;4909:18;4901:6;4898:30;4895:50;;;4941:1;4938;4931:12;4895:50;4964;5006:7;4997:6;4986:9;4982:22;4964:50;:::i;:::-;4954:60;;;4556:464;;;;;:::o;5025:347::-;5090:6;5098;5151:2;5139:9;5130:7;5126:23;5122:32;5119:52;;;5167:1;5164;5157:12;5119:52;5190:29;5209:9;5190:29;:::i;:::-;5180:39;;5269:2;5258:9;5254:18;5241:32;5316:5;5309:13;5302:21;5295:5;5292:32;5282:60;;5338:1;5335;5328:12;5282:60;5361:5;5351:15;;;5025:347;;;;;:::o;5377:667::-;5472:6;5480;5488;5496;5549:3;5537:9;5528:7;5524:23;5520:33;5517:53;;;5566:1;5563;5556:12;5517:53;5589:29;5608:9;5589:29;:::i;:::-;5579:39;;5637:38;5671:2;5660:9;5656:18;5637:38;:::i;:::-;5627:48;;5722:2;5711:9;5707:18;5694:32;5684:42;;5777:2;5766:9;5762:18;5749:32;5804:18;5796:6;5793:30;5790:50;;;5836:1;5833;5826:12;5790:50;5859:22;;5912:4;5904:13;;5900:27;-1:-1:-1;5890:55:1;;5941:1;5938;5931:12;5890:55;5964:74;6030:7;6025:2;6012:16;6007:2;6003;5999:11;5964:74;:::i;:::-;5954:84;;;5377:667;;;;;;;:::o;6049:934::-;6156:6;6164;6172;6180;6188;6241:3;6229:9;6220:7;6216:23;6212:33;6209:53;;;6258:1;6255;6248:12;6209:53;6281:29;6300:9;6281:29;:::i;:::-;6271:39;;6357:2;6346:9;6342:18;6329:32;6319:42;;6412:2;6401:9;6397:18;6384:32;6435:18;6476:2;6468:6;6465:14;6462:34;;;6492:1;6489;6482:12;6462:34;6515:50;6557:7;6548:6;6537:9;6533:22;6515:50;:::i;:::-;6505:60;;6618:2;6607:9;6603:18;6590:32;6574:48;;6647:2;6637:8;6634:16;6631:36;;;6663:1;6660;6653:12;6631:36;6701:8;6690:9;6686:24;6676:34;;6748:7;6741:4;6737:2;6733:13;6729:27;6719:55;;6770:1;6767;6760:12;6719:55;6810:2;6797:16;6836:2;6828:6;6825:14;6822:34;;;6852:1;6849;6842:12;6822:34;6897:7;6892:2;6883:6;6879:2;6875:15;6871:24;6868:37;6865:57;;;6918:1;6915;6908:12;6865:57;6049:934;;;;-1:-1:-1;6049:934:1;;-1:-1:-1;6949:2:1;6941:11;;6971:6;6049:934;-1:-1:-1;;;6049:934:1:o;6988:183::-;7048:4;7081:18;7073:6;7070:30;7067:56;;;7103:18;;:::i;:::-;-1:-1:-1;7148:1:1;7144:14;7160:4;7140:25;;6988:183::o;7176:662::-;7230:5;7283:3;7276:4;7268:6;7264:17;7260:27;7250:55;;7301:1;7298;7291:12;7250:55;7337:6;7324:20;7363:4;7387:60;7403:43;7443:2;7403:43;:::i;:::-;7387:60;:::i;:::-;7481:15;;;7567:1;7563:10;;;;7551:23;;7547:32;;;7512:12;;;;7591:15;;;7588:35;;;7619:1;7616;7609:12;7588:35;7655:2;7647:6;7643:15;7667:142;7683:6;7678:3;7675:15;7667:142;;;7749:17;;7737:30;;7787:12;;;;7700;;7667:142;;;-1:-1:-1;7827:5:1;7176:662;-1:-1:-1;;;;;;7176:662:1:o;7843:888::-;7896:5;7949:3;7942:4;7934:6;7930:17;7926:27;7916:55;;7967:1;7964;7957:12;7916:55;8003:6;7990:20;8029:4;8053:60;8069:43;8109:2;8069:43;:::i;8053:60::-;8147:15;;;8233:1;8229:10;;;;8217:23;;8213:32;;;8178:12;;;;8257:15;;;8254:35;;;8285:1;8282;8275:12;8254:35;8321:2;8313:6;8309:15;8333:369;8349:6;8344:3;8341:15;8333:369;;;8435:3;8422:17;8471:18;8458:11;8455:35;8452:125;;;8531:1;8560:2;8556;8549:14;8452:125;8602:57;8655:3;8650:2;8636:11;8628:6;8624:24;8620:33;8602:57;:::i;:::-;8590:70;;-1:-1:-1;8680:12:1;;;;8366;;8333:369;;8736:374;8806:8;8816:6;8870:3;8863:4;8855:6;8851:17;8847:27;8837:55;;8888:1;8885;8878:12;8837:55;-1:-1:-1;8911:20:1;;8954:18;8943:30;;8940:50;;;8986:1;8983;8976:12;8940:50;9023:4;9015:6;9011:17;8999:29;;9083:3;9076:4;9066:6;9063:1;9059:14;9051:6;9047:27;9043:38;9040:47;9037:67;;;9100:1;9097;9090:12;9037:67;8736:374;;;;;:::o;9115:1715::-;9324:6;9332;9340;9348;9356;9409:3;9397:9;9388:7;9384:23;9380:33;9377:53;;;9426:1;9423;9416:12;9377:53;9466:9;9453:23;9495:18;9536:2;9528:6;9525:14;9522:34;;;9552:1;9549;9542:12;9522:34;9590:6;9579:9;9575:22;9565:32;;9635:7;9628:4;9624:2;9620:13;9616:27;9606:55;;9657:1;9654;9647:12;9606:55;9693:2;9680:16;9715:4;9739:60;9755:43;9795:2;9755:43;:::i;9739:60::-;9833:15;;;9915:1;9911:10;;;;9903:19;;9899:28;;;9864:12;;;;9939:19;;;9936:39;;;9971:1;9968;9961:12;9936:39;9995:11;;;;10015:148;10031:6;10026:3;10023:15;10015:148;;;10097:23;10116:3;10097:23;:::i;:::-;10085:36;;10048:12;;;;10141;;;;10015:148;;;10182:5;-1:-1:-1;;10225:18:1;;10212:32;;-1:-1:-1;;10256:16:1;;;10253:36;;;10285:1;10282;10275:12;10253:36;10308:63;10363:7;10352:8;10341:9;10337:24;10308:63;:::i;:::-;10298:73;;10424:2;10413:9;10409:18;10396:32;10380:48;;10453:2;10443:8;10440:16;10437:36;;;10469:1;10466;10459:12;10437:36;10492:62;10546:7;10535:8;10524:9;10520:24;10492:62;:::i;:::-;10482:72;;10607:2;10596:9;10592:18;10579:32;10563:48;;10636:2;10626:8;10623:16;10620:36;;;10652:1;10649;10642:12;10620:36;;10691:79;10762:7;10751:8;10740:9;10736:24;10691:79;:::i;:::-;9115:1715;;;;-1:-1:-1;9115:1715:1;;-1:-1:-1;10789:8:1;;10665:105;9115:1715;-1:-1:-1;;;9115:1715:1:o;10835:260::-;10903:6;10911;10964:2;10952:9;10943:7;10939:23;10935:32;10932:52;;;10980:1;10977;10970:12;10932:52;11003:29;11022:9;11003:29;:::i;:::-;10993:39;;11051:38;11085:2;11074:9;11070:18;11051:38;:::i;11100:380::-;11179:1;11175:12;;;;11222;;;11243:61;;11297:4;11289:6;11285:17;11275:27;;11243:61;11350:2;11342:6;11339:14;11319:18;11316:38;11313:161;;;11396:10;11391:3;11387:20;11384:1;11377:31;11431:4;11428:1;11421:15;11459:4;11456:1;11449:15;11313:161;;11100:380;;;:::o;12725:413::-;12927:2;12909:21;;;12966:2;12946:18;;;12939:30;13005:34;13000:2;12985:18;;12978:62;-1:-1:-1;;;13071:2:1;13056:18;;13049:47;13128:3;13113:19;;12725:413::o;15149:127::-;15210:10;15205:3;15201:20;15198:1;15191:31;15241:4;15238:1;15231:15;15265:4;15262:1;15255:15;16874:470;17053:3;17091:6;17085:13;17107:53;17153:6;17148:3;17141:4;17133:6;17129:17;17107:53;:::i;:::-;17223:13;;17182:16;;;;17245:57;17223:13;17182:16;17279:4;17267:17;;17245:57;:::i;:::-;17318:20;;16874:470;-1:-1:-1;;;;16874:470:1:o;18049:521::-;18126:4;18132:6;18192:11;18179:25;18286:2;18282:7;18271:8;18255:14;18251:29;18247:43;18227:18;18223:68;18213:96;;18305:1;18302;18295:12;18213:96;18332:33;;18384:20;;;-1:-1:-1;18427:18:1;18416:30;;18413:50;;;18459:1;18456;18449:12;18413:50;18492:4;18480:17;;-1:-1:-1;18523:14:1;18519:27;;;18509:38;;18506:58;;;18560:1;18557;18550:12;18575:127;18636:10;18631:3;18627:20;18624:1;18617:31;18667:4;18664:1;18657:15;18691:4;18688:1;18681:15;18707:135;18746:3;-1:-1:-1;;18767:17:1;;18764:43;;;18787:18;;:::i;:::-;-1:-1:-1;18834:1:1;18823:13;;18707:135::o;18847:786::-;19258:25;19253:3;19246:38;19228:3;19313:6;19307:13;19329:62;19384:6;19379:2;19374:3;19370:12;19363:4;19355:6;19351:17;19329:62;:::i;:::-;-1:-1:-1;;;19450:2:1;19410:16;;;19442:11;;;19435:40;19500:13;;19522:63;19500:13;19571:2;19563:11;;19556:4;19544:17;;19522:63;:::i;:::-;19605:17;19624:2;19601:26;;18847:786;-1:-1:-1;;;;18847:786:1:o;20866:125::-;20906:4;20934:1;20931;20928:8;20925:34;;;20939:18;;:::i;:::-;-1:-1:-1;20976:9:1;;20866:125::o;20996:128::-;21036:3;21067:1;21063:6;21060:1;21057:13;21054:39;;;21073:18;;:::i;:::-;-1:-1:-1;21109:9:1;;20996:128::o;21544:414::-;21746:2;21728:21;;;21785:2;21765:18;;;21758:30;21824:34;21819:2;21804:18;;21797:62;-1:-1:-1;;;21890:2:1;21875:18;;21868:48;21948:3;21933:19;;21544:414::o;22379:460::-;22596:6;22591:3;22584:19;22658:26;22654:31;22645:6;22641:2;22637:15;22633:53;22628:2;22623:3;22619:12;22612:75;22566:3;22716:6;22710:13;22732:60;22785:6;22780:2;22775:3;22771:12;22766:2;22758:6;22754:15;22732:60;:::i;:::-;22812:16;;;;22830:2;22808:25;;22379:460;-1:-1:-1;;;;22379:460:1:o;22844:168::-;22884:7;22950:1;22946;22942:6;22938:14;22935:1;22932:21;22927:1;22920:9;22913:17;22909:45;22906:71;;;22957:18;;:::i;:::-;-1:-1:-1;22997:9:1;;22844:168::o;23017:136::-;23056:3;23084:5;23074:39;;23093:18;;:::i;:::-;-1:-1:-1;;;23129:18:1;;23017:136::o;23519:489::-;-1:-1:-1;;;;;23788:15:1;;;23770:34;;23840:15;;23835:2;23820:18;;23813:43;23887:2;23872:18;;23865:34;;;23935:3;23930:2;23915:18;;23908:31;;;23713:4;;23956:46;;23982:19;;23974:6;23956:46;:::i;24013:249::-;24082:6;24135:2;24123:9;24114:7;24110:23;24106:32;24103:52;;;24151:1;24148;24141:12;24103:52;24183:9;24177:16;24202:30;24226:5;24202:30;:::i;24267:127::-;24328:10;24323:3;24319:20;24316:1;24309:31;24359:4;24356:1;24349:15;24383:4;24380:1;24373:15;24399:120;24439:1;24465;24455:35;;24470:18;;:::i;:::-;-1:-1:-1;24504:9:1;;24399:120::o;24524:112::-;24556:1;24582;24572:35;;24587:18;;:::i;:::-;-1:-1:-1;24621:9:1;;24524:112::o;25386:127::-;25447:10;25442:3;25438:20;25435:1;25428:31;25478:4;25475:1;25468:15;25502:4;25499:1;25492:15;26639:204;26677:3;26713:4;26710:1;26706:12;26745:4;26742:1;26738:12;26780:3;26774:4;26770:14;26765:3;26762:23;26759:49;;;26788:18;;:::i;:::-;26824:13;;26639:204;-1:-1:-1;;;26639:204:1:o

Swarm Source

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