ETH Price: $2,483.55 (+2.76%)

Token

Rave The Future (RTF)
 

Overview

Max Total Supply

128 RTF

Holders

29

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vsquared.eth
Balance
1 RTF
0x07e56b134d4b455dc59582e65f45b34f41baa0fb
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:
RaveTheFuture

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-03
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: contracts/gio.sol



pragma solidity 0.8.10;




contract RaveTheFuture is ERC721A, Ownable {
    using Strings for uint256;
    using ECDSA for bytes32;
    
    // Hash of RaveTheFuture UTF8.
    bytes32 constant private salt = bytes32(0xc8d833f97514b9aca948ff45c18163ad2ba8c7f132864c8aa94cadd638177fdf);

    uint256 constant public MAX_SUPPLY = 10000;
    uint256 constant public MAX_TX_LIMIT = 20;
    uint256 constant public WHITELIST_LIMIT = 5;
    uint256 constant public MAX_RESERVED = 500; // for giveaways/team.

    uint256 public presalePrice = 0.08 ether;
    uint256 public publicPrice = 0.1 ether;

    bool public isPresale;  
    bool public isPublicSale; 
    bool public isURIFrozen;
    bool public revealed;

    string private baseURI;
    string public provenance;
    
    string public unrevealedURI = "ipfs://QmfKYGvAQc8mrw6Up7ayWitJA41uFzig8Y1XDQWiBoHvM8";
    string public baseExtension = ".json";
    
    address private _signatureVerifier = 0x7d2fB00d7E33144Ae23CCf98aCb9f2a854E0fe19; // TODO: update this who is gonna sign messages on discord bot

    uint private reserved;

    constructor() ERC721A("Rave The Future", "RTF") {
        
    }

    function mint(uint256 amount) external payable {
        require(isPublicSale, "Public Sale Inactive");
        require(amount > 0, "Number of tokens should be more than 0");
        require(amount <= MAX_TX_LIMIT, "Mint Overflow");
        require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out");
        require(publicPrice * amount <= msg.value, "Insufficient Funds");

        _safeMint(msg.sender, amount);
    }

    function mintPresale(uint256 amount, bytes calldata signature) external payable {
        require(isPresale, "Pre Sale Inactive");
        require(amount > 0, "Number of tokens should be more than 0");
        require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out");
        require(presalePrice * amount <= msg.value, "Insufficient Funds"); 

        // presale limit check
        uint newAmount = _getAux(msg.sender) + amount;
        if(newAmount > WHITELIST_LIMIT) revert("Max NFT per Address Exceeded in presale");
        _setAux(msg.sender, uint64(newAmount));
        
        require(isUserWhitelisted(msg.sender, signature), "User not whitelisted");

        _safeMint(msg.sender, amount);
    }

    // owner functions
    function reserve(uint256 amount, address destination) external onlyOwner {
        require(amount > 0, "cannot mint 0");
        require(amount <= MAX_TX_LIMIT, "Mint Overflow");
        require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out");
        require(reserved + amount <= MAX_RESERVED, "Exceeds maximum number of reserved tokens");

        reserved += amount;

        _safeMint(destination, amount);
    }

    function isUserWhitelisted(address _user, bytes calldata _signature) public view returns(bool) {
        bytes32 messageHash = hashMessage(_user);
        return messageHash.recover(_signature) == _signatureVerifier;
    }

    function setUnrevealedURI(string calldata _unrevealedURI) external onlyOwner {
        unrevealedURI = _unrevealedURI;
    }

    function reveal() external onlyOwner {
        require(!isURIFrozen, "URI is Frozen");
        revealed = !revealed;
    }

    function setBaseExtension(string calldata _newBaseExtension) external onlyOwner {
        require(!isURIFrozen, "URI is Frozen");
        baseExtension = _newBaseExtension;
    }

    function setBaseURI(string calldata newURI) external onlyOwner {
        require(!isURIFrozen, "URI is Frozen");
        baseURI = newURI;
    }

    function setPresalePrice(uint256 _price) external onlyOwner {
        presalePrice = _price;
    }

    function setPublicPrice(uint256 _price) external onlyOwner {
        publicPrice = _price;
    }

    function togglePreSale() external onlyOwner {
        isPresale = !isPresale;
    }

    function togglePublicSale() external onlyOwner {
        isPublicSale = !isPublicSale;
    }

    function freezeURI() external onlyOwner {
        isURIFrozen = true;
    }

    function setSignatureVerifier(address newVerifier) external onlyOwner {
        _signatureVerifier = newVerifier;
    }

    function withdraw() external onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    function addProvenance(string calldata _provenance) external onlyOwner {
        provenance = _provenance;
    }

    // view functions
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        if(revealed == false) {
            return unrevealedURI;
        }

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

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    // private & internal functions
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    function hashMessage(address sender) internal pure returns(bytes32) {
        bytes32 payloadHash = keccak256(abi.encode(sender, salt));
        bytes32 messageHash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", payloadHash));

        return messageHash;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_provenance","type":"string"}],"name":"addProvenance","outputs":[],"stateMutability":"nonpayable","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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isURIFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"isUserWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newVerifier","type":"address"}],"name":"setSignatureVerifier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_unrevealedURI","type":"string"}],"name":"setUnrevealedURI","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":[],"name":"togglePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

67011c37937e08000060095567016345785d8a0000600a5560e0604052603560808181529062002ce160a03980516200004191600e9160209091019062000178565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200007091600f9162000178565b50601080546001600160a01b031916737d2fb00d7e33144ae23ccf98acb9f2a854e0fe19179055348015620000a457600080fd5b50604080518082018252600f81526e52617665205468652046757475726560881b602080830191825283518085019094526003845262292a2360e91b908401528151919291620000f79160029162000178565b5080516200010d90600390602084019062000178565b5050600160005550620001203362000126565b6200025b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000186906200021e565b90600052602060002090601f016020900481019282620001aa5760008555620001f5565b82601f10620001c557805160ff1916838001178555620001f5565b82800160010185558215620001f5579182015b82811115620001f5578251825591602001919060010190620001d8565b506200020392915062000207565b5090565b5b8082111562000203576000815560010162000208565b600181811c908216806200023357607f821691505b602082108114156200025557634e487b7160e01b600052602260045260246000fd5b50919050565b612a76806200026b6000396000f3fe60806040526004361061027c5760003560e01c80638da5cb5b1161014f578063c6275255116100c1578063e08a66051161007a578063e08a6605146106fb578063e222c7f91461071b578063e985e9c514610730578063f2fde38b14610779578063fcd4b21214610799578063fe2c7fee146107b957600080fd5b8063c62752551461065c578063c66828621461067c578063c793803c14610691578063c87b56dd146106a6578063ca3cb522146106c6578063da3ef23f146106db57600080fd5b8063a22cb46511610113578063a22cb465146105b2578063a475b5dd146105d2578063a5a865dc146105e7578063a945bf8014610606578063b30723c11461061c578063b88d4fde1461063c57600080fd5b80638da5cb5b1461053d57806395364a841461055b57806395d89b4114610575578063a0712d681461058a578063a08c61d31461059d57600080fd5b80633549345e116101f35780636ba42fef116101ac5780636ba42fef146104a85780636ba90c6e146104c85780636ebcb2a0146104de5780637035bf18146104f357806370a0823114610508578063715018a61461052857600080fd5b80633549345e146103f25780633ccfd60b1461041257806342842e0e14610427578063518302271461044757806355f804b3146104685780636352211e1461048857600080fd5b8063095ea7b311610245578063095ea7b3146103565780630d06ed72146103765780630f7309e81461038957806318160ddd1461039e57806323b872dd146103bc57806332cb6b0c146103dc57600080fd5b80620e7fa81461028157806301ffc9a7146102aa57806303339bcb146102da57806306fdde03146102fc578063081812fc1461031e575b600080fd5b34801561028d57600080fd5b5061029760095481565b6040519081526020015b60405180910390f35b3480156102b657600080fd5b506102ca6102c5366004612373565b6107d9565b60405190151581526020016102a1565b3480156102e657600080fd5b506102fa6102f53660046123ac565b61082b565b005b34801561030857600080fd5b506103116109b3565b6040516102a19190612430565b34801561032a57600080fd5b5061033e610339366004612443565b610a45565b6040516001600160a01b0390911681526020016102a1565b34801561036257600080fd5b506102fa61037136600461245c565b610a89565b6102fa6103843660046124c7565b610b17565b34801561039557600080fd5b50610311610d25565b3480156103aa57600080fd5b50610297600154600054036000190190565b3480156103c857600080fd5b506102fa6103d7366004612512565b610db3565b3480156103e857600080fd5b5061029761271081565b3480156103fe57600080fd5b506102fa61040d366004612443565b610dbe565b34801561041e57600080fd5b506102fa610ded565b34801561043357600080fd5b506102fa610442366004612512565b610e8b565b34801561045357600080fd5b50600b546102ca906301000000900460ff1681565b34801561047457600080fd5b506102fa61048336600461254e565b610ea6565b34801561049457600080fd5b5061033e6104a3366004612443565b610f05565b3480156104b457600080fd5b506102fa6104c336600461254e565b610f17565b3480156104d457600080fd5b506102976101f481565b3480156104ea57600080fd5b50610297601481565b3480156104ff57600080fd5b50610311610f4d565b34801561051457600080fd5b5061029761052336600461258f565b610f5a565b34801561053457600080fd5b506102fa610fa8565b34801561054957600080fd5b506008546001600160a01b031661033e565b34801561056757600080fd5b50600b546102ca9060ff1681565b34801561058157600080fd5b50610311610fde565b6102fa610598366004612443565b610fed565b3480156105a957600080fd5b50610297600581565b3480156105be57600080fd5b506102fa6105cd3660046125aa565b611135565b3480156105de57600080fd5b506102fa6111cb565b3480156105f357600080fd5b50600b546102ca90610100900460ff1681565b34801561061257600080fd5b50610297600a5481565b34801561062857600080fd5b506102ca6106373660046125e6565b61123f565b34801561064857600080fd5b506102fa610657366004612635565b611334565b34801561066857600080fd5b506102fa610677366004612443565b61137f565b34801561068857600080fd5b506103116113ae565b34801561069d57600080fd5b506102fa6113bb565b3480156106b257600080fd5b506103116106c1366004612443565b6113f8565b3480156106d257600080fd5b506102fa611569565b3480156106e757600080fd5b506102fa6106f636600461254e565b6115a7565b34801561070757600080fd5b506102fa61071636600461258f565b611606565b34801561072757600080fd5b506102fa611652565b34801561073c57600080fd5b506102ca61074b366004612710565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561078557600080fd5b506102fa61079436600461258f565b611699565b3480156107a557600080fd5b50600b546102ca9062010000900460ff1681565b3480156107c557600080fd5b506102fa6107d436600461254e565b611731565b60006001600160e01b031982166380ac58cd60e01b148061080a57506001600160e01b03198216635b5e139f60e01b145b8061082557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461085e5760405162461bcd60e51b81526004016108559061273a565b60405180910390fd5b6000821161089e5760405162461bcd60e51b815260206004820152600d60248201526c063616e6e6f74206d696e74203609c1b6044820152606401610855565b60148211156108df5760405162461bcd60e51b815260206004820152600d60248201526c4d696e74204f766572666c6f7760981b6044820152606401610855565b612710826108f4600154600054036000190190565b6108fe9190612785565b111561091c5760405162461bcd60e51b81526004016108559061279d565b6101f48260115461092d9190612785565b111561098d5760405162461bcd60e51b815260206004820152602960248201527f45786365656473206d6178696d756d206e756d626572206f6620726573657276604482015268656420746f6b656e7360b81b6064820152608401610855565b816011600082825461099f9190612785565b909155506109af90508183611767565b5050565b6060600280546109c2906127bf565b80601f01602080910402602001604051908101604052809291908181526020018280546109ee906127bf565b8015610a3b5780601f10610a1057610100808354040283529160200191610a3b565b820191906000526020600020905b815481529060010190602001808311610a1e57829003601f168201915b5050505050905090565b6000610a5082611781565b610a6d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a9482610f05565b9050806001600160a01b0316836001600160a01b03161415610ac95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ae95750610ae7813361074b565b155b15610b07576040516367d9dca160e11b815260040160405180910390fd5b610b128383836117ba565b505050565b600b5460ff16610b5d5760405162461bcd60e51b81526020600482015260116024820152705072652053616c6520496e61637469766560781b6044820152606401610855565b60008311610b7d5760405162461bcd60e51b8152600401610855906127fa565b61271083610b92600154600054036000190190565b610b9c9190612785565b1115610bba5760405162461bcd60e51b81526004016108559061279d565b3483600954610bc99190612840565b1115610c0c5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610855565b33600090815260056020526040812054610c37908590600160c01b90046001600160401b0316612785565b90506005811115610c9a5760405162461bcd60e51b815260206004820152602760248201527f4d6178204e465420706572204164647265737320457863656564656420696e2060448201526670726573616c6560c81b6064820152608401610855565b33600090815260056020526040902080546001600160c01b0316600160c01b6001600160401b03841602179055610cd233848461123f565b610d155760405162461bcd60e51b8152602060048201526014602482015273155cd95c881b9bdd081dda1a5d195b1a5cdd195960621b6044820152606401610855565b610d1f3385611767565b50505050565b600d8054610d32906127bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5e906127bf565b8015610dab5780601f10610d8057610100808354040283529160200191610dab565b820191906000526020600020905b815481529060010190602001808311610d8e57829003601f168201915b505050505081565b610b12838383611816565b6008546001600160a01b03163314610de85760405162461bcd60e51b81526004016108559061273a565b600955565b6008546001600160a01b03163314610e175760405162461bcd60e51b81526004016108559061273a565b6000610e2b6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e75576040519150601f19603f3d011682016040523d82523d6000602084013e610e7a565b606091505b5050905080610e8857600080fd5b50565b610b1283838360405180602001604052806000815250611334565b6008546001600160a01b03163314610ed05760405162461bcd60e51b81526004016108559061273a565b600b5462010000900460ff1615610ef95760405162461bcd60e51b81526004016108559061285f565b610b12600c83836122c4565b6000610f1082611a04565b5192915050565b6008546001600160a01b03163314610f415760405162461bcd60e51b81526004016108559061273a565b610b12600d83836122c4565b600e8054610d32906127bf565b60006001600160a01b038216610f83576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610fd25760405162461bcd60e51b81526004016108559061273a565b610fdc6000611b2b565b565b6060600380546109c2906127bf565b600b54610100900460ff1661103b5760405162461bcd60e51b81526020600482015260146024820152735075626c69632053616c6520496e61637469766560601b6044820152606401610855565b6000811161105b5760405162461bcd60e51b8152600401610855906127fa565b601481111561109c5760405162461bcd60e51b815260206004820152600d60248201526c4d696e74204f766572666c6f7760981b6044820152606401610855565b612710816110b1600154600054036000190190565b6110bb9190612785565b11156110d95760405162461bcd60e51b81526004016108559061279d565b3481600a546110e89190612840565b111561112b5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610855565b610e883382611767565b6001600160a01b03821633141561115f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111f55760405162461bcd60e51b81526004016108559061273a565b600b5462010000900460ff161561121e5760405162461bcd60e51b81526004016108559061285f565b600b805463ff00000019811663010000009182900460ff1615909102179055565b604080516001600160a01b038581166020808401919091527fc8d833f97514b9aca948ff45c18163ad2ba8c7f132864c8aa94cadd638177fdf838501528351808403850181526060840185528051908201207f19457468657265756d205369676e6564204d6573736167653a0a3332000000006080850152609c808501919091528451808503909101815260bc840180865281519183019190912060105460dc601f890185900490940286018401909652868252600095909493169261132192889188918291018382808284376000920191909152508693925050611b7d9050565b6001600160a01b03161495945050505050565b61133f848484611816565b6001600160a01b0383163b15158015611361575061135f84848484611ba1565b155b15610d1f576040516368d2bf6b60e11b815260040160405180910390fd5b6008546001600160a01b031633146113a95760405162461bcd60e51b81526004016108559061273a565b600a55565b600f8054610d32906127bf565b6008546001600160a01b031633146113e55760405162461bcd60e51b81526004016108559061273a565b600b805462ff0000191662010000179055565b606061140382611781565b6114675760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610855565b600b546301000000900460ff1661150a57600e8054611485906127bf565b80601f01602080910402602001604051908101604052809291908181526020018280546114b1906127bf565b80156114fe5780601f106114d3576101008083540402835291602001916114fe565b820191906000526020600020905b8154815290600101906020018083116114e157829003601f168201915b50505050509050919050565b6000611514611c8a565b905060008151116115345760405180602001604052806000815250611562565b8061153e84611c99565b600f60405160200161155293929190612886565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146115935760405162461bcd60e51b81526004016108559061273a565b600b805460ff19811660ff90911615179055565b6008546001600160a01b031633146115d15760405162461bcd60e51b81526004016108559061273a565b600b5462010000900460ff16156115fa5760405162461bcd60e51b81526004016108559061285f565b610b12600f83836122c4565b6008546001600160a01b031633146116305760405162461bcd60e51b81526004016108559061273a565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b0316331461167c5760405162461bcd60e51b81526004016108559061273a565b600b805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146116c35760405162461bcd60e51b81526004016108559061273a565b6001600160a01b0381166117285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610855565b610e8881611b2b565b6008546001600160a01b0316331461175b5760405162461bcd60e51b81526004016108559061273a565b610b12600e83836122c4565b6109af828260405180602001604052806000815250611d96565b600081600111158015611795575060005482105b8015610825575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061182182611a04565b9050836001600160a01b031681600001516001600160a01b0316146118585760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806118765750611876853361074b565b8061189157503361188684610a45565b6001600160a01b0316145b9050806118b157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166118d857604051633a954ecd60e21b815260040160405180910390fd5b6118e4600084876117ba565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166119b85760005482146119b857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611a34575060005481105b15611b1257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b105780516001600160a01b031615611aa7579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b0b579392505050565b611aa7565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000806000611b8c8585611da3565b91509150611b9981611e13565b509392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bd690339089908890889060040161294a565b6020604051808303816000875af1925050508015611c11575060408051601f3d908101601f19168201909252611c0e91810190612987565b60015b611c6c573d808015611c3f576040519150601f19603f3d011682016040523d82523d6000602084013e611c44565b606091505b508051611c64576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546109c2906127bf565b606081611cbd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ce75780611cd1816129a4565b9150611ce09050600a836129d5565b9150611cc1565b6000816001600160401b03811115611d0157611d0161261f565b6040519080825280601f01601f191660200182016040528015611d2b576020820181803683370190505b5090505b8415611c8257611d406001836129e9565b9150611d4d600a86612a00565b611d58906030612785565b60f81b818381518110611d6d57611d6d612a14565b60200101906001600160f81b031916908160001a905350611d8f600a866129d5565b9450611d2f565b610b128383836001611fce565b600080825160411415611dda5760208301516040840151606085015160001a611dce8782858561219e565b94509450505050611e0c565b825160401415611e045760208301516040840151611df986838361228b565b935093505050611e0c565b506000905060025b9250929050565b6000816004811115611e2757611e27612a2a565b1415611e305750565b6001816004811115611e4457611e44612a2a565b1415611e925760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610855565b6002816004811115611ea657611ea6612a2a565b1415611ef45760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610855565b6003816004811115611f0857611f08612a2a565b1415611f615760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610855565b6004816004811115611f7557611f75612a2a565b1415610e885760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610855565b6000546001600160a01b038516611ff757604051622e076360e81b815260040160405180910390fd5b836120155760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156120c657506001600160a01b0387163b15155b1561214f575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121176000888480600101955088611ba1565b612134576040516368d2bf6b60e11b815260040160405180910390fd5b808214156120cc57826000541461214a57600080fd5b612195565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612150575b506000556119fd565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156121d55750600090506003612282565b8460ff16601b141580156121ed57508460ff16601c14155b156121fe5750600090506004612282565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612252573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661227b57600060019250925050612282565b9150600090505b94509492505050565b6000806001600160ff1b038316816122a860ff86901c601b612785565b90506122b68782888561219e565b935093505050935093915050565b8280546122d0906127bf565b90600052602060002090601f0160209004810192826122f25760008555612338565b82601f1061230b5782800160ff19823516178555612338565b82800160010185558215612338579182015b8281111561233857823582559160200191906001019061231d565b50612344929150612348565b5090565b5b808211156123445760008155600101612349565b6001600160e01b031981168114610e8857600080fd5b60006020828403121561238557600080fd5b81356115628161235d565b80356001600160a01b03811681146123a757600080fd5b919050565b600080604083850312156123bf57600080fd5b823591506123cf60208401612390565b90509250929050565b60005b838110156123f35781810151838201526020016123db565b83811115610d1f5750506000910152565b6000815180845261241c8160208601602086016123d8565b601f01601f19169290920160200192915050565b6020815260006115626020830184612404565b60006020828403121561245557600080fd5b5035919050565b6000806040838503121561246f57600080fd5b61247883612390565b946020939093013593505050565b60008083601f84011261249857600080fd5b5081356001600160401b038111156124af57600080fd5b602083019150836020828501011115611e0c57600080fd5b6000806000604084860312156124dc57600080fd5b8335925060208401356001600160401b038111156124f957600080fd5b61250586828701612486565b9497909650939450505050565b60008060006060848603121561252757600080fd5b61253084612390565b925061253e60208501612390565b9150604084013590509250925092565b6000806020838503121561256157600080fd5b82356001600160401b0381111561257757600080fd5b61258385828601612486565b90969095509350505050565b6000602082840312156125a157600080fd5b61156282612390565b600080604083850312156125bd57600080fd5b6125c683612390565b9150602083013580151581146125db57600080fd5b809150509250929050565b6000806000604084860312156125fb57600080fd5b61260484612390565b925060208401356001600160401b038111156124f957600080fd5b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561264b57600080fd5b61265485612390565b935061266260208601612390565b92506040850135915060608501356001600160401b038082111561268557600080fd5b818701915087601f83011261269957600080fd5b8135818111156126ab576126ab61261f565b604051601f8201601f19908116603f011681019083821181831017156126d3576126d361261f565b816040528281528a60208487010111156126ec57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561272357600080fd5b61272c83612390565b91506123cf60208401612390565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156127985761279861276f565b500190565b60208082526008908201526714dbdb190813dd5d60c21b604082015260600190565b600181811c908216806127d357607f821691505b602082108114156127f457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f4e756d626572206f6620746f6b656e732073686f756c64206265206d6f72652060408201526507468616e20360d41b606082015260800190565b600081600019048311821515161561285a5761285a61276f565b500290565b6020808252600d908201526c2aa9249034b990233937bd32b760991b604082015260600190565b6000845160206128998285838a016123d8565b8551918401916128ac8184848a016123d8565b8554920191600090600181811c90808316806128c957607f831692505b8583108114156128e757634e487b7160e01b85526022600452602485fd5b8080156128fb576001811461290c57612939565b60ff19851688528388019550612939565b60008b81526020902060005b858110156129315781548a820152908401908801612918565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061297d90830184612404565b9695505050505050565b60006020828403121561299957600080fd5b81516115628161235d565b60006000198214156129b8576129b861276f565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826129e4576129e46129bf565b500490565b6000828210156129fb576129fb61276f565b500390565b600082612a0f57612a0f6129bf565b500690565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fdfea264697066735822122005f845c0677673d497c97544b4717bfd4b1a57000f6151b4b8fa35a49b8359d664736f6c634300080a0033697066733a2f2f516d664b594776415163386d72773655703761795769744a41343175467a69673859315844515769426f48764d38

Deployed Bytecode

0x60806040526004361061027c5760003560e01c80638da5cb5b1161014f578063c6275255116100c1578063e08a66051161007a578063e08a6605146106fb578063e222c7f91461071b578063e985e9c514610730578063f2fde38b14610779578063fcd4b21214610799578063fe2c7fee146107b957600080fd5b8063c62752551461065c578063c66828621461067c578063c793803c14610691578063c87b56dd146106a6578063ca3cb522146106c6578063da3ef23f146106db57600080fd5b8063a22cb46511610113578063a22cb465146105b2578063a475b5dd146105d2578063a5a865dc146105e7578063a945bf8014610606578063b30723c11461061c578063b88d4fde1461063c57600080fd5b80638da5cb5b1461053d57806395364a841461055b57806395d89b4114610575578063a0712d681461058a578063a08c61d31461059d57600080fd5b80633549345e116101f35780636ba42fef116101ac5780636ba42fef146104a85780636ba90c6e146104c85780636ebcb2a0146104de5780637035bf18146104f357806370a0823114610508578063715018a61461052857600080fd5b80633549345e146103f25780633ccfd60b1461041257806342842e0e14610427578063518302271461044757806355f804b3146104685780636352211e1461048857600080fd5b8063095ea7b311610245578063095ea7b3146103565780630d06ed72146103765780630f7309e81461038957806318160ddd1461039e57806323b872dd146103bc57806332cb6b0c146103dc57600080fd5b80620e7fa81461028157806301ffc9a7146102aa57806303339bcb146102da57806306fdde03146102fc578063081812fc1461031e575b600080fd5b34801561028d57600080fd5b5061029760095481565b6040519081526020015b60405180910390f35b3480156102b657600080fd5b506102ca6102c5366004612373565b6107d9565b60405190151581526020016102a1565b3480156102e657600080fd5b506102fa6102f53660046123ac565b61082b565b005b34801561030857600080fd5b506103116109b3565b6040516102a19190612430565b34801561032a57600080fd5b5061033e610339366004612443565b610a45565b6040516001600160a01b0390911681526020016102a1565b34801561036257600080fd5b506102fa61037136600461245c565b610a89565b6102fa6103843660046124c7565b610b17565b34801561039557600080fd5b50610311610d25565b3480156103aa57600080fd5b50610297600154600054036000190190565b3480156103c857600080fd5b506102fa6103d7366004612512565b610db3565b3480156103e857600080fd5b5061029761271081565b3480156103fe57600080fd5b506102fa61040d366004612443565b610dbe565b34801561041e57600080fd5b506102fa610ded565b34801561043357600080fd5b506102fa610442366004612512565b610e8b565b34801561045357600080fd5b50600b546102ca906301000000900460ff1681565b34801561047457600080fd5b506102fa61048336600461254e565b610ea6565b34801561049457600080fd5b5061033e6104a3366004612443565b610f05565b3480156104b457600080fd5b506102fa6104c336600461254e565b610f17565b3480156104d457600080fd5b506102976101f481565b3480156104ea57600080fd5b50610297601481565b3480156104ff57600080fd5b50610311610f4d565b34801561051457600080fd5b5061029761052336600461258f565b610f5a565b34801561053457600080fd5b506102fa610fa8565b34801561054957600080fd5b506008546001600160a01b031661033e565b34801561056757600080fd5b50600b546102ca9060ff1681565b34801561058157600080fd5b50610311610fde565b6102fa610598366004612443565b610fed565b3480156105a957600080fd5b50610297600581565b3480156105be57600080fd5b506102fa6105cd3660046125aa565b611135565b3480156105de57600080fd5b506102fa6111cb565b3480156105f357600080fd5b50600b546102ca90610100900460ff1681565b34801561061257600080fd5b50610297600a5481565b34801561062857600080fd5b506102ca6106373660046125e6565b61123f565b34801561064857600080fd5b506102fa610657366004612635565b611334565b34801561066857600080fd5b506102fa610677366004612443565b61137f565b34801561068857600080fd5b506103116113ae565b34801561069d57600080fd5b506102fa6113bb565b3480156106b257600080fd5b506103116106c1366004612443565b6113f8565b3480156106d257600080fd5b506102fa611569565b3480156106e757600080fd5b506102fa6106f636600461254e565b6115a7565b34801561070757600080fd5b506102fa61071636600461258f565b611606565b34801561072757600080fd5b506102fa611652565b34801561073c57600080fd5b506102ca61074b366004612710565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561078557600080fd5b506102fa61079436600461258f565b611699565b3480156107a557600080fd5b50600b546102ca9062010000900460ff1681565b3480156107c557600080fd5b506102fa6107d436600461254e565b611731565b60006001600160e01b031982166380ac58cd60e01b148061080a57506001600160e01b03198216635b5e139f60e01b145b8061082557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461085e5760405162461bcd60e51b81526004016108559061273a565b60405180910390fd5b6000821161089e5760405162461bcd60e51b815260206004820152600d60248201526c063616e6e6f74206d696e74203609c1b6044820152606401610855565b60148211156108df5760405162461bcd60e51b815260206004820152600d60248201526c4d696e74204f766572666c6f7760981b6044820152606401610855565b612710826108f4600154600054036000190190565b6108fe9190612785565b111561091c5760405162461bcd60e51b81526004016108559061279d565b6101f48260115461092d9190612785565b111561098d5760405162461bcd60e51b815260206004820152602960248201527f45786365656473206d6178696d756d206e756d626572206f6620726573657276604482015268656420746f6b656e7360b81b6064820152608401610855565b816011600082825461099f9190612785565b909155506109af90508183611767565b5050565b6060600280546109c2906127bf565b80601f01602080910402602001604051908101604052809291908181526020018280546109ee906127bf565b8015610a3b5780601f10610a1057610100808354040283529160200191610a3b565b820191906000526020600020905b815481529060010190602001808311610a1e57829003601f168201915b5050505050905090565b6000610a5082611781565b610a6d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a9482610f05565b9050806001600160a01b0316836001600160a01b03161415610ac95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ae95750610ae7813361074b565b155b15610b07576040516367d9dca160e11b815260040160405180910390fd5b610b128383836117ba565b505050565b600b5460ff16610b5d5760405162461bcd60e51b81526020600482015260116024820152705072652053616c6520496e61637469766560781b6044820152606401610855565b60008311610b7d5760405162461bcd60e51b8152600401610855906127fa565b61271083610b92600154600054036000190190565b610b9c9190612785565b1115610bba5760405162461bcd60e51b81526004016108559061279d565b3483600954610bc99190612840565b1115610c0c5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610855565b33600090815260056020526040812054610c37908590600160c01b90046001600160401b0316612785565b90506005811115610c9a5760405162461bcd60e51b815260206004820152602760248201527f4d6178204e465420706572204164647265737320457863656564656420696e2060448201526670726573616c6560c81b6064820152608401610855565b33600090815260056020526040902080546001600160c01b0316600160c01b6001600160401b03841602179055610cd233848461123f565b610d155760405162461bcd60e51b8152602060048201526014602482015273155cd95c881b9bdd081dda1a5d195b1a5cdd195960621b6044820152606401610855565b610d1f3385611767565b50505050565b600d8054610d32906127bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5e906127bf565b8015610dab5780601f10610d8057610100808354040283529160200191610dab565b820191906000526020600020905b815481529060010190602001808311610d8e57829003601f168201915b505050505081565b610b12838383611816565b6008546001600160a01b03163314610de85760405162461bcd60e51b81526004016108559061273a565b600955565b6008546001600160a01b03163314610e175760405162461bcd60e51b81526004016108559061273a565b6000610e2b6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e75576040519150601f19603f3d011682016040523d82523d6000602084013e610e7a565b606091505b5050905080610e8857600080fd5b50565b610b1283838360405180602001604052806000815250611334565b6008546001600160a01b03163314610ed05760405162461bcd60e51b81526004016108559061273a565b600b5462010000900460ff1615610ef95760405162461bcd60e51b81526004016108559061285f565b610b12600c83836122c4565b6000610f1082611a04565b5192915050565b6008546001600160a01b03163314610f415760405162461bcd60e51b81526004016108559061273a565b610b12600d83836122c4565b600e8054610d32906127bf565b60006001600160a01b038216610f83576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610fd25760405162461bcd60e51b81526004016108559061273a565b610fdc6000611b2b565b565b6060600380546109c2906127bf565b600b54610100900460ff1661103b5760405162461bcd60e51b81526020600482015260146024820152735075626c69632053616c6520496e61637469766560601b6044820152606401610855565b6000811161105b5760405162461bcd60e51b8152600401610855906127fa565b601481111561109c5760405162461bcd60e51b815260206004820152600d60248201526c4d696e74204f766572666c6f7760981b6044820152606401610855565b612710816110b1600154600054036000190190565b6110bb9190612785565b11156110d95760405162461bcd60e51b81526004016108559061279d565b3481600a546110e89190612840565b111561112b5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742046756e647360701b6044820152606401610855565b610e883382611767565b6001600160a01b03821633141561115f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111f55760405162461bcd60e51b81526004016108559061273a565b600b5462010000900460ff161561121e5760405162461bcd60e51b81526004016108559061285f565b600b805463ff00000019811663010000009182900460ff1615909102179055565b604080516001600160a01b038581166020808401919091527fc8d833f97514b9aca948ff45c18163ad2ba8c7f132864c8aa94cadd638177fdf838501528351808403850181526060840185528051908201207f19457468657265756d205369676e6564204d6573736167653a0a3332000000006080850152609c808501919091528451808503909101815260bc840180865281519183019190912060105460dc601f890185900490940286018401909652868252600095909493169261132192889188918291018382808284376000920191909152508693925050611b7d9050565b6001600160a01b03161495945050505050565b61133f848484611816565b6001600160a01b0383163b15158015611361575061135f84848484611ba1565b155b15610d1f576040516368d2bf6b60e11b815260040160405180910390fd5b6008546001600160a01b031633146113a95760405162461bcd60e51b81526004016108559061273a565b600a55565b600f8054610d32906127bf565b6008546001600160a01b031633146113e55760405162461bcd60e51b81526004016108559061273a565b600b805462ff0000191662010000179055565b606061140382611781565b6114675760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610855565b600b546301000000900460ff1661150a57600e8054611485906127bf565b80601f01602080910402602001604051908101604052809291908181526020018280546114b1906127bf565b80156114fe5780601f106114d3576101008083540402835291602001916114fe565b820191906000526020600020905b8154815290600101906020018083116114e157829003601f168201915b50505050509050919050565b6000611514611c8a565b905060008151116115345760405180602001604052806000815250611562565b8061153e84611c99565b600f60405160200161155293929190612886565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146115935760405162461bcd60e51b81526004016108559061273a565b600b805460ff19811660ff90911615179055565b6008546001600160a01b031633146115d15760405162461bcd60e51b81526004016108559061273a565b600b5462010000900460ff16156115fa5760405162461bcd60e51b81526004016108559061285f565b610b12600f83836122c4565b6008546001600160a01b031633146116305760405162461bcd60e51b81526004016108559061273a565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b0316331461167c5760405162461bcd60e51b81526004016108559061273a565b600b805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146116c35760405162461bcd60e51b81526004016108559061273a565b6001600160a01b0381166117285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610855565b610e8881611b2b565b6008546001600160a01b0316331461175b5760405162461bcd60e51b81526004016108559061273a565b610b12600e83836122c4565b6109af828260405180602001604052806000815250611d96565b600081600111158015611795575060005482105b8015610825575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061182182611a04565b9050836001600160a01b031681600001516001600160a01b0316146118585760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806118765750611876853361074b565b8061189157503361188684610a45565b6001600160a01b0316145b9050806118b157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166118d857604051633a954ecd60e21b815260040160405180910390fd5b6118e4600084876117ba565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166119b85760005482146119b857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611a34575060005481105b15611b1257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b105780516001600160a01b031615611aa7579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b0b579392505050565b611aa7565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000806000611b8c8585611da3565b91509150611b9981611e13565b509392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bd690339089908890889060040161294a565b6020604051808303816000875af1925050508015611c11575060408051601f3d908101601f19168201909252611c0e91810190612987565b60015b611c6c573d808015611c3f576040519150601f19603f3d011682016040523d82523d6000602084013e611c44565b606091505b508051611c64576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546109c2906127bf565b606081611cbd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ce75780611cd1816129a4565b9150611ce09050600a836129d5565b9150611cc1565b6000816001600160401b03811115611d0157611d0161261f565b6040519080825280601f01601f191660200182016040528015611d2b576020820181803683370190505b5090505b8415611c8257611d406001836129e9565b9150611d4d600a86612a00565b611d58906030612785565b60f81b818381518110611d6d57611d6d612a14565b60200101906001600160f81b031916908160001a905350611d8f600a866129d5565b9450611d2f565b610b128383836001611fce565b600080825160411415611dda5760208301516040840151606085015160001a611dce8782858561219e565b94509450505050611e0c565b825160401415611e045760208301516040840151611df986838361228b565b935093505050611e0c565b506000905060025b9250929050565b6000816004811115611e2757611e27612a2a565b1415611e305750565b6001816004811115611e4457611e44612a2a565b1415611e925760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610855565b6002816004811115611ea657611ea6612a2a565b1415611ef45760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610855565b6003816004811115611f0857611f08612a2a565b1415611f615760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610855565b6004816004811115611f7557611f75612a2a565b1415610e885760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610855565b6000546001600160a01b038516611ff757604051622e076360e81b815260040160405180910390fd5b836120155760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156120c657506001600160a01b0387163b15155b1561214f575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121176000888480600101955088611ba1565b612134576040516368d2bf6b60e11b815260040160405180910390fd5b808214156120cc57826000541461214a57600080fd5b612195565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612150575b506000556119fd565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156121d55750600090506003612282565b8460ff16601b141580156121ed57508460ff16601c14155b156121fe5750600090506004612282565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612252573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661227b57600060019250925050612282565b9150600090505b94509492505050565b6000806001600160ff1b038316816122a860ff86901c601b612785565b90506122b68782888561219e565b935093505050935093915050565b8280546122d0906127bf565b90600052602060002090601f0160209004810192826122f25760008555612338565b82601f1061230b5782800160ff19823516178555612338565b82800160010185558215612338579182015b8281111561233857823582559160200191906001019061231d565b50612344929150612348565b5090565b5b808211156123445760008155600101612349565b6001600160e01b031981168114610e8857600080fd5b60006020828403121561238557600080fd5b81356115628161235d565b80356001600160a01b03811681146123a757600080fd5b919050565b600080604083850312156123bf57600080fd5b823591506123cf60208401612390565b90509250929050565b60005b838110156123f35781810151838201526020016123db565b83811115610d1f5750506000910152565b6000815180845261241c8160208601602086016123d8565b601f01601f19169290920160200192915050565b6020815260006115626020830184612404565b60006020828403121561245557600080fd5b5035919050565b6000806040838503121561246f57600080fd5b61247883612390565b946020939093013593505050565b60008083601f84011261249857600080fd5b5081356001600160401b038111156124af57600080fd5b602083019150836020828501011115611e0c57600080fd5b6000806000604084860312156124dc57600080fd5b8335925060208401356001600160401b038111156124f957600080fd5b61250586828701612486565b9497909650939450505050565b60008060006060848603121561252757600080fd5b61253084612390565b925061253e60208501612390565b9150604084013590509250925092565b6000806020838503121561256157600080fd5b82356001600160401b0381111561257757600080fd5b61258385828601612486565b90969095509350505050565b6000602082840312156125a157600080fd5b61156282612390565b600080604083850312156125bd57600080fd5b6125c683612390565b9150602083013580151581146125db57600080fd5b809150509250929050565b6000806000604084860312156125fb57600080fd5b61260484612390565b925060208401356001600160401b038111156124f957600080fd5b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561264b57600080fd5b61265485612390565b935061266260208601612390565b92506040850135915060608501356001600160401b038082111561268557600080fd5b818701915087601f83011261269957600080fd5b8135818111156126ab576126ab61261f565b604051601f8201601f19908116603f011681019083821181831017156126d3576126d361261f565b816040528281528a60208487010111156126ec57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561272357600080fd5b61272c83612390565b91506123cf60208401612390565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156127985761279861276f565b500190565b60208082526008908201526714dbdb190813dd5d60c21b604082015260600190565b600181811c908216806127d357607f821691505b602082108114156127f457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f4e756d626572206f6620746f6b656e732073686f756c64206265206d6f72652060408201526507468616e20360d41b606082015260800190565b600081600019048311821515161561285a5761285a61276f565b500290565b6020808252600d908201526c2aa9249034b990233937bd32b760991b604082015260600190565b6000845160206128998285838a016123d8565b8551918401916128ac8184848a016123d8565b8554920191600090600181811c90808316806128c957607f831692505b8583108114156128e757634e487b7160e01b85526022600452602485fd5b8080156128fb576001811461290c57612939565b60ff19851688528388019550612939565b60008b81526020902060005b858110156129315781548a820152908401908801612918565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061297d90830184612404565b9695505050505050565b60006020828403121561299957600080fd5b81516115628161235d565b60006000198214156129b8576129b861276f565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826129e4576129e46129bf565b500490565b6000828210156129fb576129fb61276f565b500390565b600082612a0f57612a0f6129bf565b500690565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052602160045260246000fdfea264697066735822122005f845c0677673d497c97544b4717bfd4b1a57000f6151b4b8fa35a49b8359d664736f6c634300080a0033

Deployed Bytecode Sourcemap

54331:5591:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54822:40;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;54822:40:0;;;;;;;;36506:305;;;;;;;;;;-1:-1:-1;36506:305:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;36506:305:0;582:187:1;56689:427:0;;;;;;;;;;-1:-1:-1;56689:427:0;;;;;:::i;:::-;;:::i;:::-;;39619:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41122:204::-;;;;;;;;;;-1:-1:-1;41122:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2311:32:1;;;2293:51;;2281:2;2266:18;41122:204:0;2147:203:1;40685:371:0;;;;;;;;;;-1:-1:-1;40685:371:0;;;;;:::i;:::-;;:::i;55935:722::-;;;;;;:::i;:::-;;:::i;55066:24::-;;;;;;;;;;;;;:::i;35755:303::-;;;;;;;;;;;;59471:1;36009:12;35799:7;35993:13;:28;-1:-1:-1;;35993:46:0;;35755:303;41987:170;;;;;;;;;;-1:-1:-1;41987:170:0;;;;;:::i;:::-;;:::i;54601:42::-;;;;;;;;;;;;54638:5;54601:42;;57968:100;;;;;;;;;;-1:-1:-1;57968:100:0;;;;;:::i;:::-;;:::i;58591:149::-;;;;;;;;;;;;;:::i;42228:185::-;;;;;;;;;;-1:-1:-1;42228:185:0;;;;;:::i;:::-;;:::i;55008:20::-;;;;;;;;;;-1:-1:-1;55008:20:0;;;;;;;;;;;57813:147;;;;;;;;;;-1:-1:-1;57813:147:0;;;;;:::i;:::-;;:::i;39427:125::-;;;;;;;;;;-1:-1:-1;39427:125:0;;;;;:::i;:::-;;:::i;58748:114::-;;;;;;;;;;-1:-1:-1;58748:114:0;;;;;:::i;:::-;;:::i;54748:42::-;;;;;;;;;;;;54787:3;54748:42;;54650:41;;;;;;;;;;;;54689:2;54650:41;;55103:85;;;;;;;;;;;;;:::i;36875:206::-;;;;;;;;;;-1:-1:-1;36875:206:0;;;;;:::i;:::-;;:::i;14264:103::-;;;;;;;;;;;;;:::i;13613:87::-;;;;;;;;;;-1:-1:-1;13686:6:0;;-1:-1:-1;;;;;13686:6:0;13613:87;;54916:21;;;;;;;;;;-1:-1:-1;54916:21:0;;;;;;;;39788:104;;;;;;;;;;;;;:::i;55500:427::-;;;;;;:::i;:::-;;:::i;54698:43::-;;;;;;;;;;;;54740:1;54698:43;;41398:287;;;;;;;;;;-1:-1:-1;41398:287:0;;;;;:::i;:::-;;:::i;57491:125::-;;;;;;;;;;;;;:::i;54946:24::-;;;;;;;;;;-1:-1:-1;54946:24:0;;;;;;;;;;;54869:38;;;;;;;;;;;;;;;;57124:225;;;;;;;;;;-1:-1:-1;57124:225:0;;;;;:::i;:::-;;:::i;42484:369::-;;;;;;;;;;-1:-1:-1;42484:369:0;;;;;:::i;:::-;;:::i;58076:98::-;;;;;;;;;;-1:-1:-1;58076:98:0;;;;;:::i;:::-;;:::i;55195:37::-;;;;;;;;;;;;;:::i;58377:77::-;;;;;;;;;;;;;:::i;58893:478::-;;;;;;;;;;-1:-1:-1;58893:478:0;;;;;:::i;:::-;;:::i;58182:85::-;;;;;;;;;;;;;:::i;57624:181::-;;;;;;;;;;-1:-1:-1;57624:181:0;;;;;:::i;:::-;;:::i;58462:121::-;;;;;;;;;;-1:-1:-1;58462:121:0;;;;;:::i;:::-;;:::i;58275:94::-;;;;;;;;;;;;;:::i;41756:164::-;;;;;;;;;;-1:-1:-1;41756:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41877:25:0;;;41853:4;41877:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41756:164;14522:201;;;;;;;;;;-1:-1:-1;14522:201:0;;;;;:::i;:::-;;:::i;54978:23::-;;;;;;;;;;-1:-1:-1;54978:23:0;;;;;;;;;;;57357:126;;;;;;;;;;-1:-1:-1;57357:126:0;;;;;:::i;:::-;;:::i;36506:305::-;36608:4;-1:-1:-1;;;;;;36645:40:0;;-1:-1:-1;;;36645:40:0;;:105;;-1:-1:-1;;;;;;;36702:48:0;;-1:-1:-1;;;36702:48:0;36645:105;:158;;;-1:-1:-1;;;;;;;;;;26506:40:0;;;36767:36;36625:178;36506:305;-1:-1:-1;;36506:305:0:o;56689:427::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;;;;;;;;;56790:1:::1;56781:6;:10;56773:36;;;::::0;-1:-1:-1;;;56773:36:0;;7330:2:1;56773:36:0::1;::::0;::::1;7312:21:1::0;7369:2;7349:18;;;7342:30;-1:-1:-1;;;7388:18:1;;;7381:43;7441:18;;56773:36:0::1;7128:337:1::0;56773:36:0::1;54689:2;56828:6;:22;;56820:48;;;::::0;-1:-1:-1;;;56820:48:0;;7672:2:1;56820:48:0::1;::::0;::::1;7654:21:1::0;7711:2;7691:18;;;7684:30;-1:-1:-1;;;7730:18:1;;;7723:43;7783:18;;56820:48:0::1;7470:337:1::0;56820:48:0::1;54638:5;56903:6;56887:13;59471:1:::0;36009:12;35799:7;35993:13;:28;-1:-1:-1;;35993:46:0;;35755:303;56887:13:::1;:22;;;;:::i;:::-;:36;;56879:57;;;;-1:-1:-1::0;;;56879:57:0::1;;;;;;;:::i;:::-;54787:3;56966:6;56955:8;;:17;;;;:::i;:::-;:33;;56947:87;;;::::0;-1:-1:-1;;;56947:87:0;;8615:2:1;56947:87:0::1;::::0;::::1;8597:21:1::0;8654:2;8634:18;;;8627:30;8693:34;8673:18;;;8666:62;-1:-1:-1;;;8744:18:1;;;8737:39;8793:19;;56947:87:0::1;8413:405:1::0;56947:87:0::1;57059:6;57047:8;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;57078:30:0::1;::::0;-1:-1:-1;57088:11:0;57101:6;57078:9:::1;:30::i;:::-;56689:427:::0;;:::o;39619:100::-;39673:13;39706:5;39699:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39619:100;:::o;41122:204::-;41190:7;41215:16;41223:7;41215;:16::i;:::-;41210:64;;41240:34;;-1:-1:-1;;;41240:34:0;;;;;;;;;;;41210:64;-1:-1:-1;41294:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41294:24:0;;41122:204::o;40685:371::-;40758:13;40774:24;40790:7;40774:15;:24::i;:::-;40758:40;;40819:5;-1:-1:-1;;;;;40813:11:0;:2;-1:-1:-1;;;;;40813:11:0;;40809:48;;;40833:24;;-1:-1:-1;;;40833:24:0;;;;;;;;;;;40809:48;12417:10;-1:-1:-1;;;;;40874:21:0;;;;;;:63;;-1:-1:-1;40900:37:0;40917:5;12417:10;41756:164;:::i;40900:37::-;40899:38;40874:63;40870:138;;;40961:35;;-1:-1:-1;;;40961:35:0;;;;;;;;;;;40870:138;41020:28;41029:2;41033:7;41042:5;41020:8;:28::i;:::-;40747:309;40685:371;;:::o;55935:722::-;56034:9;;;;56026:39;;;;-1:-1:-1;;;56026:39:0;;9410:2:1;56026:39:0;;;9392:21:1;9449:2;9429:18;;;9422:30;-1:-1:-1;;;9468:18:1;;;9461:47;9525:18;;56026:39:0;9208:341:1;56026:39:0;56093:1;56084:6;:10;56076:61;;;;-1:-1:-1;;;56076:61:0;;;;;;;:::i;:::-;54638:5;56172:6;56156:13;59471:1;36009:12;35799:7;35993:13;:28;-1:-1:-1;;35993:46:0;;35755:303;56156:13;:22;;;;:::i;:::-;:36;;56148:57;;;;-1:-1:-1;;;56148:57:0;;;;;;;:::i;:::-;56249:9;56239:6;56224:12;;:21;;;;:::i;:::-;:34;;56216:65;;;;-1:-1:-1;;;56216:65:0;;10336:2:1;56216:65:0;;;10318:21:1;10375:2;10355:18;;;10348:30;-1:-1:-1;;;10394:18:1;;;10387:48;10452:18;;56216:65:0;10134:342:1;56216:65:0;56352:10;56327:14;37734:19;;;:12;:19;;;;;:23;56344:28;;56366:6;;-1:-1:-1;;;37734:23:0;;-1:-1:-1;;;;;37734:23:0;56344:28;:::i;:::-;56327:45;;54740:1;56386:9;:27;56383:81;;;56415:49;;-1:-1:-1;;;56415:49:0;;10683:2:1;56415:49:0;;;10665:21:1;10722:2;10702:18;;;10695:30;10761:34;10741:18;;;10734:62;-1:-1:-1;;;10812:18:1;;;10805:37;10859:19;;56415:49:0;10481:403:1;56383:81:0;56483:10;38017:19;;;;:12;:19;;;;;:29;;-1:-1:-1;;;;;38017:29:0;-1:-1:-1;;;;;;;;38017:29:0;;;;;;56542:40;56560:10;56572:9;;56542:17;:40::i;:::-;56534:73;;;;-1:-1:-1;;;56534:73:0;;11091:2:1;56534:73:0;;;11073:21:1;11130:2;11110:18;;;11103:30;-1:-1:-1;;;11149:18:1;;;11142:50;11209:18;;56534:73:0;10889:344:1;56534:73:0;56620:29;56630:10;56642:6;56620:9;:29::i;:::-;56015:642;55935:722;;;:::o;55066:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41987:170::-;42121:28;42131:4;42137:2;42141:7;42121:9;:28::i;57968:100::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;58039:12:::1;:21:::0;57968:100::o;58591:149::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;58642:7:::1;58663;13686:6:::0;;-1:-1:-1;;;;;13686:6:0;;13613:87;58663:7:::1;-1:-1:-1::0;;;;;58655:21:0::1;58684;58655:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58641:69;;;58729:2;58721:11;;;::::0;::::1;;58630:110;58591:149::o:0;42228:185::-;42366:39;42383:4;42389:2;42393:7;42366:39;;;;;;;;;;;;:16;:39::i;57813:147::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;57896:11:::1;::::0;;;::::1;;;57895:12;57887:38;;;;-1:-1:-1::0;;;57887:38:0::1;;;;;;;:::i;:::-;57936:16;:7;57946:6:::0;;57936:16:::1;:::i;39427:125::-:0;39491:7;39518:21;39531:7;39518:12;:21::i;:::-;:26;;39427:125;-1:-1:-1;;39427:125:0:o;58748:114::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;58830:24:::1;:10;58843:11:::0;;58830:24:::1;:::i;55103:85::-:0;;;;;;;:::i;36875:206::-;36939:7;-1:-1:-1;;;;;36963:19:0;;36959:60;;36991:28;;-1:-1:-1;;;36991:28:0;;;;;;;;;;;36959:60;-1:-1:-1;;;;;;37045:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37045:27:0;;36875:206::o;14264:103::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;14329:30:::1;14356:1;14329:18;:30::i;:::-;14264:103::o:0;39788:104::-;39844:13;39877:7;39870:14;;;;;:::i;55500:427::-;55566:12;;;;;;;55558:45;;;;-1:-1:-1;;;55558:45:0;;11992:2:1;55558:45:0;;;11974:21:1;12031:2;12011:18;;;12004:30;-1:-1:-1;;;12050:18:1;;;12043:50;12110:18;;55558:45:0;11790:344:1;55558:45:0;55631:1;55622:6;:10;55614:61;;;;-1:-1:-1;;;55614:61:0;;;;;;;:::i;:::-;54689:2;55694:6;:22;;55686:48;;;;-1:-1:-1;;;55686:48:0;;7672:2:1;55686:48:0;;;7654:21:1;7711:2;7691:18;;;7684:30;-1:-1:-1;;;7730:18:1;;;7723:43;7783:18;;55686:48:0;7470:337:1;55686:48:0;54638:5;55769:6;55753:13;59471:1;36009:12;35799:7;35993:13;:28;-1:-1:-1;;35993:46:0;;35755:303;55753:13;:22;;;;:::i;:::-;:36;;55745:57;;;;-1:-1:-1;;;55745:57:0;;;;;;;:::i;:::-;55845:9;55835:6;55821:11;;:20;;;;:::i;:::-;:33;;55813:64;;;;-1:-1:-1;;;55813:64:0;;10336:2:1;55813:64:0;;;10318:21:1;10375:2;10355:18;;;10348:30;-1:-1:-1;;;10394:18:1;;;10387:48;10452:18;;55813:64:0;10134:342:1;55813:64:0;55890:29;55900:10;55912:6;55890:9;:29::i;41398:287::-;-1:-1:-1;;;;;41497:24:0;;12417:10;41497:24;41493:54;;;41530:17;;-1:-1:-1;;;41530:17:0;;;;;;;;;;;41493:54;12417:10;41560:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;41560:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;41560:53:0;;;;;;;;;;41629:48;;722:41:1;;;41560:42:0;;12417:10;41629:48;;695:18:1;41629:48:0;;;;;;;41398:287;;:::o;57491:125::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;57548:11:::1;::::0;;;::::1;;;57547:12;57539:38;;;;-1:-1:-1::0;;;57539:38:0::1;;;;;;;:::i;:::-;57600:8;::::0;;-1:-1:-1;;57588:20:0;::::1;57600:8:::0;;;;::::1;;;57599:9;57588:20:::0;;::::1;;::::0;;57491:125::o;57124:225::-;59744:24;;;-1:-1:-1;;;;;14812:32:1;;;59744:24:0;;;;14794:51:1;;;;54525:66:0;14861:18:1;;;14854:34;59744:24:0;;;;;;;;;14767:18:1;;;59744:24:0;;59734:35;;;;;;15141:66:1;59812:65:0;;;15129:79:1;15224:12;;;;15217:28;;;;59812:65:0;;;;;;;;;;15261:12:1;;;59812:65:0;;;59802:76;;;;;;;;;57323:18;;57288:31;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;59802:76:0;;57323:18;;;57288:31;;57308:10;;57288:31;;;;;57308:10;57288:31;;57308:10;57288:31;;;;;;;;;-1:-1:-1;57288:11:0;;:31;-1:-1:-1;;57288:19:0;:31;-1:-1:-1;57288:31:0:i;:::-;-1:-1:-1;;;;;57288:53:0;;;57124:225;-1:-1:-1;;;;;57124:225:0:o;42484:369::-;42651:28;42661:4;42667:2;42671:7;42651:9;:28::i;:::-;-1:-1:-1;;;;;42694:13:0;;16609:19;:23;;42694:76;;;;;42714:56;42745:4;42751:2;42755:7;42764:5;42714:30;:56::i;:::-;42713:57;42694:76;42690:156;;;42794:40;;-1:-1:-1;;;42794:40:0;;;;;;;;;;;58076:98;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;58146:11:::1;:20:::0;58076:98::o;55195:37::-;;;;;;;:::i;58377:77::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;58428:11:::1;:18:::0;;-1:-1:-1;;58428:18:0::1;::::0;::::1;::::0;;58377:77::o;58893:478::-;58966:13;59000:16;59008:7;59000;:16::i;:::-;58992:76;;;;-1:-1:-1;;;58992:76:0;;12341:2:1;58992:76:0;;;12323:21:1;12380:2;12360:18;;;12353:30;12419:34;12399:18;;;12392:62;-1:-1:-1;;;12470:18:1;;;12463:45;12525:19;;58992:76:0;12139:411:1;58992:76:0;59084:8;;;;;;;59081:69;;59125:13;59118:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58893:478;;;:::o;59081:69::-;59162:28;59193:10;:8;:10::i;:::-;59162:41;;59252:1;59227:14;59221:28;:32;:142;;;;;;;;;;;;;;;;;59294:14;59310:18;:7;:16;:18::i;:::-;59330:13;59277:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59221:142;59214:149;58893:478;-1:-1:-1;;;58893:478:0:o;58182:85::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;58250:9:::1;::::0;;-1:-1:-1;;58237:22:0;::::1;58250:9;::::0;;::::1;58249:10;58237:22;::::0;;58182:85::o;57624:181::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;57724:11:::1;::::0;;;::::1;;;57723:12;57715:38;;;;-1:-1:-1::0;;;57715:38:0::1;;;;;;;:::i;:::-;57764:33;:13;57780:17:::0;;57764:33:::1;:::i;58462:121::-:0;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;58543:18:::1;:32:::0;;-1:-1:-1;;;;;;58543:32:0::1;-1:-1:-1::0;;;;;58543:32:0;;;::::1;::::0;;;::::1;::::0;;58462:121::o;58275:94::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;58349:12:::1;::::0;;-1:-1:-1;;58333:28:0;::::1;58349:12;::::0;;;::::1;;;58348:13;58333:28:::0;;::::1;;::::0;;58275:94::o;14522:201::-;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14611:22:0;::::1;14603:73;;;::::0;-1:-1:-1;;;14603:73:0;;14415:2:1;14603:73:0::1;::::0;::::1;14397:21:1::0;14454:2;14434:18;;;14427:30;14493:34;14473:18;;;14466:62;-1:-1:-1;;;14544:18:1;;;14537:36;14590:19;;14603:73:0::1;14213:402:1::0;14603:73:0::1;14687:28;14706:8;14687:18;:28::i;57357:126::-:0;13686:6;;-1:-1:-1;;;;;13686:6:0;12417:10;13833:23;13825:68;;;;-1:-1:-1;;;13825:68:0;;;;;;;:::i;:::-;57445:30:::1;:13;57461:14:::0;;57445:30:::1;:::i;43303:104::-:0;43372:27;43382:2;43386:8;43372:27;;;;;;;;;;;;:9;:27::i;43108:187::-;43165:4;43208:7;59471:1;43189:26;;:53;;;;;43229:13;;43219:7;:23;43189:53;:98;;;;-1:-1:-1;;43260:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;43260:27:0;;;;43259:28;;43108:187::o;51278:196::-;51393:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;51393:29:0;-1:-1:-1;;;;;51393:29:0;;;;;;;;;51438:28;;51393:24;;51438:28;;;;;;;51278:196;;;:::o;46221:2130::-;46336:35;46374:21;46387:7;46374:12;:21::i;:::-;46336:59;;46434:4;-1:-1:-1;;;;;46412:26:0;:13;:18;;;-1:-1:-1;;;;;46412:26:0;;46408:67;;46447:28;;-1:-1:-1;;;46447:28:0;;;;;;;;;;;46408:67;46488:22;12417:10;-1:-1:-1;;;;;46514:20:0;;;;:73;;-1:-1:-1;46551:36:0;46568:4;12417:10;41756:164;:::i;46551:36::-;46514:126;;;-1:-1:-1;12417:10:0;46604:20;46616:7;46604:11;:20::i;:::-;-1:-1:-1;;;;;46604:36:0;;46514:126;46488:153;;46659:17;46654:66;;46685:35;;-1:-1:-1;;;46685:35:0;;;;;;;;;;;46654:66;-1:-1:-1;;;;;46735:16:0;;46731:52;;46760:23;;-1:-1:-1;;;46760:23:0;;;;;;;;;;;46731:52;46904:35;46921:1;46925:7;46934:4;46904:8;:35::i;:::-;-1:-1:-1;;;;;47235:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;47235:31:0;;;-1:-1:-1;;;;;47235:31:0;;;-1:-1:-1;;47235:31:0;;;;;;;47281:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;47281:29:0;;;;;;;;;;;47361:20;;;:11;:20;;;;;;47396:18;;-1:-1:-1;;;;;;47429:49:0;;;;-1:-1:-1;;;47462:15:0;47429:49;;;;;;;;;;47752:11;;47812:24;;;;;47855:13;;47361:20;;47812:24;;47855:13;47851:384;;48065:13;;48050:11;:28;48046:174;;48103:20;;48172:28;;;;-1:-1:-1;;;;;48146:54:0;-1:-1:-1;;;48146:54:0;-1:-1:-1;;;;;;48146:54:0;;;-1:-1:-1;;;;;48103:20:0;;48146:54;;;;48046:174;47210:1036;;;48282:7;48278:2;-1:-1:-1;;;;;48263:27:0;48272:4;-1:-1:-1;;;;;48263:27:0;;;;;;;;;;;48301:42;46325:2026;;46221:2130;;;:::o;38256:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;38367:7:0;;59471:1;38416:23;;:47;;;;;38450:13;;38443:4;:20;38416:47;38412:886;;;38484:31;38518:17;;;:11;:17;;;;;;;;;38484:51;;;;;;;;;-1:-1:-1;;;;;38484:51:0;;;;-1:-1:-1;;;38484:51:0;;-1:-1:-1;;;;;38484:51:0;;;;;;;;-1:-1:-1;;;38484:51:0;;;;;;;;;;;;;;38554:729;;38604:14;;-1:-1:-1;;;;;38604:28:0;;38600:101;;38668:9;38256:1109;-1:-1:-1;;;38256:1109:0:o;38600:101::-;-1:-1:-1;;;39043:6:0;39088:17;;;;:11;:17;;;;;;;;;39076:29;;;;;;;;;-1:-1:-1;;;;;39076:29:0;;;;;-1:-1:-1;;;39076:29:0;;-1:-1:-1;;;;;39076:29:0;;;;;;;;-1:-1:-1;;;39076:29:0;;;;;;;;;;;;;39136:28;39132:109;;39204:9;38256:1109;-1:-1:-1;;;38256:1109:0:o;39132:109::-;39003:261;;;38465:833;38412:886;39326:31;;-1:-1:-1;;;39326:31:0;;;;;;;;;;;14883:191;14976:6;;;-1:-1:-1;;;;;14993:17:0;;;-1:-1:-1;;;;;;14993:17:0;;;;;;;15026:40;;14976:6;;;14993:17;14976:6;;15026:40;;14957:16;;15026:40;14946:128;14883:191;:::o;6541:231::-;6619:7;6640:17;6659:18;6681:27;6692:4;6698:9;6681:10;:27::i;:::-;6639:69;;;;6719:18;6731:5;6719:11;:18::i;:::-;-1:-1:-1;6755:9:0;6541:231;-1:-1:-1;;;6541:231:0:o;51966:667::-;52150:72;;-1:-1:-1;;;52150:72:0;;52129:4;;-1:-1:-1;;;;;52150:36:0;;;;;:72;;12417:10;;52201:4;;52207:7;;52216:5;;52150:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52150:72:0;;;;;;;;-1:-1:-1;;52150:72:0;;;;;;;;;;;;:::i;:::-;;;52146:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52384:13:0;;52380:235;;52430:40;;-1:-1:-1;;;52430:40:0;;;;;;;;;;;52380:235;52573:6;52567:13;52558:6;52554:2;52550:15;52543:38;52146:480;-1:-1:-1;;;;;;52269:55:0;-1:-1:-1;;;52269:55:0;;-1:-1:-1;52146:480:0;51966:667;;;;;;:::o;59525:100::-;59577:13;59610:7;59603:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;-1:-1:-1;;;;;867:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;43770:163;43893:32;43899:2;43903:8;43913:5;43920:4;43893:5;:32::i;4431:1308::-;4512:7;4521:12;4746:9;:16;4766:2;4746:22;4742:990;;;5042:4;5027:20;;5021:27;5092:4;5077:20;;5071:27;5150:4;5135:20;;5129:27;4785:9;5121:36;5193:25;5204:4;5121:36;5021:27;5071;5193:10;:25::i;:::-;5186:32;;;;;;;;;4742:990;5240:9;:16;5260:2;5240:22;5236:496;;;5515:4;5500:20;;5494:27;5566:4;5551:20;;5545:27;5608:23;5619:4;5494:27;5545;5608:10;:23::i;:::-;5601:30;;;;;;;;5236:496;-1:-1:-1;5680:1:0;;-1:-1:-1;5684:35:0;5236:496;4431:1308;;;;;:::o;2702:643::-;2780:20;2771:5;:29;;;;;;;;:::i;:::-;;2767:571;;;2702:643;:::o;2767:571::-;2878:29;2869:5;:38;;;;;;;;:::i;:::-;;2865:473;;;2924:34;;-1:-1:-1;;;2924:34:0;;17142:2:1;2924:34:0;;;17124:21:1;17181:2;17161:18;;;17154:30;17220:26;17200:18;;;17193:54;17264:18;;2924:34:0;16940:348:1;2865:473:0;2989:35;2980:5;:44;;;;;;;;:::i;:::-;;2976:362;;;3041:41;;-1:-1:-1;;;3041:41:0;;17495:2:1;3041:41:0;;;17477:21:1;17534:2;17514:18;;;17507:30;17573:33;17553:18;;;17546:61;17624:18;;3041:41:0;17293:355:1;2976:362:0;3113:30;3104:5;:39;;;;;;;;:::i;:::-;;3100:238;;;3160:44;;-1:-1:-1;;;3160:44:0;;17855:2:1;3160:44:0;;;17837:21:1;17894:2;17874:18;;;17867:30;17933:34;17913:18;;;17906:62;-1:-1:-1;;;17984:18:1;;;17977:32;18026:19;;3160:44:0;17653:398:1;3100:238:0;3235:30;3226:5;:39;;;;;;;;:::i;:::-;;3222:116;;;3282:44;;-1:-1:-1;;;3282:44:0;;18258:2:1;3282:44:0;;;18240:21:1;18297:2;18277:18;;;18270:30;18336:34;18316:18;;;18309:62;-1:-1:-1;;;18387:18:1;;;18380:32;18429:19;;3282:44:0;18056:398:1;44192:1775:0;44331:20;44354:13;-1:-1:-1;;;;;44382:16:0;;44378:48;;44407:19;;-1:-1:-1;;;44407:19:0;;;;;;;;;;;44378:48;44441:13;44437:44;;44463:18;;-1:-1:-1;;;44463:18:0;;;;;;;;;;;44437:44;-1:-1:-1;;;;;44832:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;44891:49:0;;-1:-1:-1;;;;;44832:44:0;;;;;;;44891:49;;;;-1:-1:-1;;44832:44:0;;;;;;44891:49;;;;;;;;;;;;;;;;44957:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;45007:66:0;;;;-1:-1:-1;;;45057:15:0;45007:66;;;;;;;;;;44957:25;45154:23;;;45198:4;:23;;;;-1:-1:-1;;;;;;45206:13:0;;16609:19;:23;;45206:15;45194:641;;;45242:314;45273:38;;45298:12;;-1:-1:-1;;;;;45273:38:0;;;45290:1;;45273:38;;45290:1;;45273:38;45339:69;45378:1;45382:2;45386:14;;;;;;45402:5;45339:30;:69::i;:::-;45334:174;;45444:40;;-1:-1:-1;;;45444:40:0;;;;;;;;;;;45334:174;45551:3;45535:12;:19;;45242:314;;45637:12;45620:13;;:29;45616:43;;45651:8;;;45616:43;45194:641;;;45700:120;45731:40;;45756:14;;;;;-1:-1:-1;;;;;45731:40:0;;;45748:1;;45731:40;;45748:1;;45731:40;45815:3;45799:12;:19;;45700:120;;45194:641;-1:-1:-1;45849:13:0;:28;45899:60;55935:722;7993:1632;8124:7;;9058:66;9045:79;;9041:163;;;-1:-1:-1;9157:1:0;;-1:-1:-1;9161:30:0;9141:51;;9041:163;9218:1;:7;;9223:2;9218:7;;:18;;;;;9229:1;:7;;9234:2;9229:7;;9218:18;9214:102;;;-1:-1:-1;9269:1:0;;-1:-1:-1;9273:30:0;9253:51;;9214:102;9430:24;;;9413:14;9430:24;;;;;;;;;18686:25:1;;;18759:4;18747:17;;18727:18;;;18720:45;;;;18781:18;;;18774:34;;;18824:18;;;18817:34;;;9430:24:0;;18658:19:1;;9430:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9430:24:0;;-1:-1:-1;;9430:24:0;;;-1:-1:-1;;;;;;;9469:20:0;;9465:103;;9522:1;9526:29;9506:50;;;;;;;9465:103;9588:6;-1:-1:-1;9596:20:0;;-1:-1:-1;7993:1632:0;;;;;;;;:::o;7035:344::-;7149:7;;-1:-1:-1;;;;;7195:80:0;;7149:7;7302:25;7318:3;7303:18;;;7325:2;7302:25;:::i;:::-;7286:42;;7346:25;7357:4;7363:1;7366;7369;7346:10;:25::i;:::-;7339:32;;;;;;7035:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:173::-;842:20;;-1:-1:-1;;;;;891:31:1;;881:42;;871:70;;937:1;934;927:12;871:70;774:173;;;:::o;952:254::-;1020:6;1028;1081:2;1069:9;1060:7;1056:23;1052:32;1049:52;;;1097:1;1094;1087:12;1049:52;1133:9;1120:23;1110:33;;1162:38;1196:2;1185:9;1181:18;1162:38;:::i;:::-;1152:48;;952:254;;;;;:::o;1211:258::-;1283:1;1293:113;1307:6;1304:1;1301:13;1293:113;;;1383:11;;;1377:18;1364:11;;;1357:39;1329:2;1322:10;1293:113;;;1424:6;1421:1;1418:13;1415:48;;;-1:-1:-1;;1459:1:1;1441:16;;1434:27;1211:258::o;1474:::-;1516:3;1554:5;1548:12;1581:6;1576:3;1569:19;1597:63;1653:6;1646:4;1641:3;1637:14;1630:4;1623:5;1619:16;1597:63;:::i;:::-;1714:2;1693:15;-1:-1:-1;;1689:29:1;1680:39;;;;1721:4;1676:50;;1474:258;-1:-1:-1;;1474:258:1:o;1737:220::-;1886:2;1875:9;1868:21;1849:4;1906:45;1947:2;1936:9;1932:18;1924:6;1906:45;:::i;1962:180::-;2021:6;2074:2;2062:9;2053:7;2049:23;2045:32;2042:52;;;2090:1;2087;2080:12;2042:52;-1:-1:-1;2113:23:1;;1962:180;-1:-1:-1;1962:180:1:o;2355:254::-;2423:6;2431;2484:2;2472:9;2463:7;2459:23;2455:32;2452:52;;;2500:1;2497;2490:12;2452:52;2523:29;2542:9;2523:29;:::i;:::-;2513:39;2599:2;2584:18;;;;2571:32;;-1:-1:-1;;;2355:254:1:o;2614:347::-;2665:8;2675:6;2729:3;2722:4;2714:6;2710:17;2706:27;2696:55;;2747:1;2744;2737:12;2696:55;-1:-1:-1;2770:20:1;;-1:-1:-1;;;;;2802:30:1;;2799:50;;;2845:1;2842;2835:12;2799:50;2882:4;2874:6;2870:17;2858:29;;2934:3;2927:4;2918:6;2910;2906:19;2902:30;2899:39;2896:59;;;2951:1;2948;2941:12;2966:477;3045:6;3053;3061;3114:2;3102:9;3093:7;3089:23;3085:32;3082:52;;;3130:1;3127;3120:12;3082:52;3166:9;3153:23;3143:33;;3227:2;3216:9;3212:18;3199:32;-1:-1:-1;;;;;3246:6:1;3243:30;3240:50;;;3286:1;3283;3276:12;3240:50;3325:58;3375:7;3366:6;3355:9;3351:22;3325:58;:::i;:::-;2966:477;;3402:8;;-1:-1:-1;3299:84:1;;-1:-1:-1;;;;2966:477:1:o;3448:328::-;3525:6;3533;3541;3594:2;3582:9;3573:7;3569:23;3565:32;3562:52;;;3610:1;3607;3600:12;3562:52;3633:29;3652:9;3633:29;:::i;:::-;3623:39;;3681:38;3715:2;3704:9;3700:18;3681:38;:::i;:::-;3671:48;;3766:2;3755:9;3751:18;3738:32;3728:42;;3448:328;;;;;:::o;3781:410::-;3852:6;3860;3913:2;3901:9;3892:7;3888:23;3884:32;3881:52;;;3929:1;3926;3919:12;3881:52;3969:9;3956:23;-1:-1:-1;;;;;3994:6:1;3991:30;3988:50;;;4034:1;4031;4024:12;3988:50;4073:58;4123:7;4114:6;4103:9;4099:22;4073:58;:::i;:::-;4150:8;;4047:84;;-1:-1:-1;3781:410:1;-1:-1:-1;;;;3781:410:1:o;4196:186::-;4255:6;4308:2;4296:9;4287:7;4283:23;4279:32;4276:52;;;4324:1;4321;4314:12;4276:52;4347:29;4366:9;4347:29;:::i;4387:347::-;4452:6;4460;4513:2;4501:9;4492:7;4488:23;4484:32;4481:52;;;4529:1;4526;4519:12;4481:52;4552:29;4571:9;4552:29;:::i;:::-;4542:39;;4631:2;4620:9;4616:18;4603:32;4678:5;4671:13;4664:21;4657:5;4654:32;4644:60;;4700:1;4697;4690:12;4644:60;4723:5;4713:15;;;4387:347;;;;;:::o;4739:483::-;4818:6;4826;4834;4887:2;4875:9;4866:7;4862:23;4858:32;4855:52;;;4903:1;4900;4893:12;4855:52;4926:29;4945:9;4926:29;:::i;:::-;4916:39;;5006:2;4995:9;4991:18;4978:32;-1:-1:-1;;;;;5025:6:1;5022:30;5019:50;;;5065:1;5062;5055:12;5227:127;5288:10;5283:3;5279:20;5276:1;5269:31;5319:4;5316:1;5309:15;5343:4;5340:1;5333:15;5359:1138;5454:6;5462;5470;5478;5531:3;5519:9;5510:7;5506:23;5502:33;5499:53;;;5548:1;5545;5538:12;5499:53;5571:29;5590:9;5571:29;:::i;:::-;5561:39;;5619:38;5653:2;5642:9;5638:18;5619:38;:::i;:::-;5609:48;;5704:2;5693:9;5689:18;5676:32;5666:42;;5759:2;5748:9;5744:18;5731:32;-1:-1:-1;;;;;5823:2:1;5815:6;5812:14;5809:34;;;5839:1;5836;5829:12;5809:34;5877:6;5866:9;5862:22;5852:32;;5922:7;5915:4;5911:2;5907:13;5903:27;5893:55;;5944:1;5941;5934:12;5893:55;5980:2;5967:16;6002:2;5998;5995:10;5992:36;;;6008:18;;:::i;:::-;6083:2;6077:9;6051:2;6137:13;;-1:-1:-1;;6133:22:1;;;6157:2;6129:31;6125:40;6113:53;;;6181:18;;;6201:22;;;6178:46;6175:72;;;6227:18;;:::i;:::-;6267:10;6263:2;6256:22;6302:2;6294:6;6287:18;6342:7;6337:2;6332;6328;6324:11;6320:20;6317:33;6314:53;;;6363:1;6360;6353:12;6314:53;6419:2;6414;6410;6406:11;6401:2;6393:6;6389:15;6376:46;6464:1;6459:2;6454;6446:6;6442:15;6438:24;6431:35;6485:6;6475:16;;;;;;;5359:1138;;;;;;;:::o;6502:260::-;6570:6;6578;6631:2;6619:9;6610:7;6606:23;6602:32;6599:52;;;6647:1;6644;6637:12;6599:52;6670:29;6689:9;6670:29;:::i;:::-;6660:39;;6718:38;6752:2;6741:9;6737:18;6718:38;:::i;6767:356::-;6969:2;6951:21;;;6988:18;;;6981:30;7047:34;7042:2;7027:18;;7020:62;7114:2;7099:18;;6767:356::o;7812:127::-;7873:10;7868:3;7864:20;7861:1;7854:31;7904:4;7901:1;7894:15;7928:4;7925:1;7918:15;7944:128;7984:3;8015:1;8011:6;8008:1;8005:13;8002:39;;;8021:18;;:::i;:::-;-1:-1:-1;8057:9:1;;7944:128::o;8077:331::-;8279:2;8261:21;;;8318:1;8298:18;;;8291:29;-1:-1:-1;;;8351:2:1;8336:18;;8329:38;8399:2;8384:18;;8077:331::o;8823:380::-;8902:1;8898:12;;;;8945;;;8966:61;;9020:4;9012:6;9008:17;8998:27;;8966:61;9073:2;9065:6;9062:14;9042:18;9039:38;9036:161;;;9119:10;9114:3;9110:20;9107:1;9100:31;9154:4;9151:1;9144:15;9182:4;9179:1;9172:15;9036:161;;8823:380;;;:::o;9554:402::-;9756:2;9738:21;;;9795:2;9775:18;;;9768:30;9834:34;9829:2;9814:18;;9807:62;-1:-1:-1;;;9900:2:1;9885:18;;9878:36;9946:3;9931:19;;9554:402::o;9961:168::-;10001:7;10067:1;10063;10059:6;10055:14;10052:1;10049:21;10044:1;10037:9;10030:17;10026:45;10023:71;;;10074:18;;:::i;:::-;-1:-1:-1;10114:9:1;;9961:168::o;11448:337::-;11650:2;11632:21;;;11689:2;11669:18;;;11662:30;-1:-1:-1;;;11723:2:1;11708:18;;11701:43;11776:2;11761:18;;11448:337::o;12681:1527::-;12905:3;12943:6;12937:13;12969:4;12982:51;13026:6;13021:3;13016:2;13008:6;13004:15;12982:51;:::i;:::-;13096:13;;13055:16;;;;13118:55;13096:13;13055:16;13140:15;;;13118:55;:::i;:::-;13262:13;;13195:20;;;13235:1;;13322;13344:18;;;;13397;;;;13424:93;;13502:4;13492:8;13488:19;13476:31;;13424:93;13565:2;13555:8;13552:16;13532:18;13529:40;13526:167;;;-1:-1:-1;;;13592:33:1;;13648:4;13645:1;13638:15;13678:4;13599:3;13666:17;13526:167;13709:18;13736:110;;;;13860:1;13855:328;;;;13702:481;;13736:110;-1:-1:-1;;13771:24:1;;13757:39;;13816:20;;;;-1:-1:-1;13736:110:1;;13855:328;12628:1;12621:14;;;12665:4;12652:18;;13950:1;13964:169;13978:8;13975:1;13972:15;13964:169;;;14060:14;;14045:13;;;14038:37;14103:16;;;;13995:10;;13964:169;;;13968:3;;14164:8;14157:5;14153:20;14146:27;;13702:481;-1:-1:-1;14199:3:1;;12681:1527;-1:-1:-1;;;;;;;;;;;12681:1527:1:o;15284:489::-;-1:-1:-1;;;;;15553:15:1;;;15535:34;;15605:15;;15600:2;15585:18;;15578:43;15652:2;15637:18;;15630:34;;;15700:3;15695:2;15680:18;;15673:31;;;15478:4;;15721:46;;15747:19;;15739:6;15721:46;:::i;:::-;15713:54;15284:489;-1:-1:-1;;;;;;15284:489:1:o;15778:249::-;15847:6;15900:2;15888:9;15879:7;15875:23;15871:32;15868:52;;;15916:1;15913;15906:12;15868:52;15948:9;15942:16;15967:30;15991:5;15967:30;:::i;16032:135::-;16071:3;-1:-1:-1;;16092:17:1;;16089:43;;;16112:18;;:::i;:::-;-1:-1:-1;16159:1:1;16148:13;;16032:135::o;16172:127::-;16233:10;16228:3;16224:20;16221:1;16214:31;16264:4;16261:1;16254:15;16288:4;16285:1;16278:15;16304:120;16344:1;16370;16360:35;;16375:18;;:::i;:::-;-1:-1:-1;16409:9:1;;16304:120::o;16429:125::-;16469:4;16497:1;16494;16491:8;16488:34;;;16502:18;;:::i;:::-;-1:-1:-1;16539:9:1;;16429:125::o;16559:112::-;16591:1;16617;16607:35;;16622:18;;:::i;:::-;-1:-1:-1;16656:9:1;;16559:112::o;16676:127::-;16737:10;16732:3;16728:20;16725:1;16718:31;16768:4;16765:1;16758:15;16792:4;16789:1;16782:15;16808:127;16869:10;16864:3;16860:20;16857:1;16850:31;16900:4;16897:1;16890:15;16924:4;16921:1;16914:15

Swarm Source

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