ETH Price: $2,463.15 (+0.66%)

Token

Whaley (WHALEY)
 

Overview

Max Total Supply

101 WHALEY

Holders

60

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 WHALEY
0xcb0a7f8cb83b3156b94b3da0d755dd4156d28578
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:
Whaley

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-22
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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


// File: contracts/Waley.sol

pragma solidity >=0.7.0 <0.9.0;

contract Whaley is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public notRevealedUri = "ipfs://--/hidden.json"; 
  string public uriPrefix = "ipfs://QmNdEKnaFYF5vdaVrr138pV5sYP4892M6nshHmu32ynBzW/";
  string public uriSuffix = ".json";
  
  uint256 public cost = 0.2 ether;
  uint256 public maxSupply = 101;
  uint256 public maxMintAmountPerTx = 5;
  uint256 public nftPerAddressLimit = 5;

  bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

  bool public paused = false;
  bool public revealed = true;

  constructor() ERC721("Whaley", "WHALEY") { }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(!onlyWhitelisted, "Currently whitelist minting only!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _mintLoop(msg.sender, _mintAmount);
  }

  function mintForWhitelist(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(onlyWhitelisted, "The whitelist sale is over");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    require(isWhitelisted(msg.sender), "user is not whitelisted");
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");

    _whiteListMintLoop(msg.sender, _mintAmount);
  }
  
  function airdrop(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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

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

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }

  function setMaxSupply(uint256 _supply) public onlyOwner {
    maxSupply = _supply;
  }

  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

  function _whiteListMintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      addressMintedBalance[msg.sender]++;
      _safeMint(_receiver, supply.current());
    }
  }

  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function withdraw() public onlyOwner {
    (bool hs, ) = payable(0x744538423Ef33c693a54481874423Dd05D44950b).call{value: address(this).balance * 10 / 100}("");
    require(hs);
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"airdrop","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintForWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052601560808190527f697066733a2f2f2d2d2f68696464656e2e6a736f6e000000000000000000000060a0908152620000409160089190620001cb565b5060405180606001604052806036815260200162002c836036913980516200007191600991602090910190620001cb565b5060408051808201909152600580825264173539b7b760d91b6020909201918252620000a091600a91620001cb565b506702c68af0bb140000600b556065600c556005600d819055600e55600f805460ff191660011790556012805461ffff1916610100179055348015620000e557600080fd5b50604051806040016040528060068152602001655768616c657960d01b815250604051806040016040528060068152602001655748414c455960d01b81525081600090805190602001906200013c929190620001cb565b50805162000152906001906020840190620001cb565b5050506200016f620001696200017560201b60201c565b62000179565b620002ae565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001d99062000271565b90600052602060002090601f016020900481019282620001fd576000855562000248565b82601f106200021857805160ff191683800117855562000248565b8280016001018555821562000248579182015b82811115620002485782518255916020019190600101906200022b565b50620002569291506200025a565b5090565b5b808211156200025657600081556001016200025b565b600181811c908216806200028657607f821691505b60208210811415620002a857634e487b7160e01b600052602260045260246000fd5b50919050565b6129c580620002be6000396000f3fe60806040526004361061027d5760003560e01c80636f8b44b01161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610747578063e0a808531461075d578063e985e9c51461077d578063edec5f27146107c6578063f2c4ce1e146107e6578063f2fde38b1461080657600080fd5b8063b88d4fde14610691578063ba4e5c49146106b1578063ba7d2c76146106d1578063bc63f02e146106e7578063c87b56dd14610707578063d0eb26b01461072757600080fd5b806394354fd01161011357806394354fd0146105f957806395d89b411461060f5780639c70b51214610624578063a0712d681461063e578063a22cb46514610651578063b071401b1461067157600080fd5b80636f8b44b01461056657806370a0823114610586578063715018a6146105a65780637ec4a659146105bb5780638da5cb5b146105db57600080fd5b80632884c62a116101f357806344a0d68a116101ac57806344a0d68a146104c357806351830227146104e35780635503a0e8146105025780635c975abb1461051757806362b99ad4146105315780636352211e1461054657600080fd5b80632884c62a1461040e5780633af32abf146104215780633c952764146104415780633ccfd60b1461046157806342842e0e14610476578063438b63001461049657600080fd5b806313faede61161024557806313faede61461034857806316ba10e01461036c57806316c38b3c1461038c57806318160ddd146103ac57806318cae269146103c157806323b872dd146103ee57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063081c8c4414610311578063095ea7b314610326575b600080fd5b34801561028e57600080fd5b506102a261029d3660046124b2565b610826565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610878565b6040516102ae91906126e2565b3480156102e557600080fd5b506102f96102f4366004612535565b61090a565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b506102cc6109a4565b34801561033257600080fd5b506103466103413660046123f8565b610a32565b005b34801561035457600080fd5b5061035e600b5481565b6040519081526020016102ae565b34801561037857600080fd5b506103466103873660046124ec565b610b48565b34801561039857600080fd5b506103466103a7366004612497565b610b89565b3480156103b857600080fd5b5061035e610bc6565b3480156103cd57600080fd5b5061035e6103dc3660046122c8565b60116020526000908152604090205481565b3480156103fa57600080fd5b50610346610409366004612316565b610bd6565b61034661041c366004612535565b610c07565b34801561042d57600080fd5b506102a261043c3660046122c8565b610e27565b34801561044d57600080fd5b5061034661045c366004612497565b610e91565b34801561046d57600080fd5b50610346610ece565b34801561048257600080fd5b50610346610491366004612316565b610fe6565b3480156104a257600080fd5b506104b66104b13660046122c8565b611001565b6040516102ae919061269e565b3480156104cf57600080fd5b506103466104de366004612535565b6110e2565b3480156104ef57600080fd5b506012546102a290610100900460ff1681565b34801561050e57600080fd5b506102cc611111565b34801561052357600080fd5b506012546102a29060ff1681565b34801561053d57600080fd5b506102cc61111e565b34801561055257600080fd5b506102f9610561366004612535565b61112b565b34801561057257600080fd5b50610346610581366004612535565b6111a2565b34801561059257600080fd5b5061035e6105a13660046122c8565b6111d1565b3480156105b257600080fd5b50610346611258565b3480156105c757600080fd5b506103466105d63660046124ec565b61128e565b3480156105e757600080fd5b506006546001600160a01b03166102f9565b34801561060557600080fd5b5061035e600d5481565b34801561061b57600080fd5b506102cc6112cb565b34801561063057600080fd5b50600f546102a29060ff1681565b61034661064c366004612535565b6112da565b34801561065d57600080fd5b5061034661066c3660046123ce565b611445565b34801561067d57600080fd5b5061034661068c366004612535565b611450565b34801561069d57600080fd5b506103466106ac366004612352565b61147f565b3480156106bd57600080fd5b506102f96106cc366004612535565b6114b7565b3480156106dd57600080fd5b5061035e600e5481565b3480156106f357600080fd5b5061034661070236600461254e565b6114e1565b34801561071357600080fd5b506102cc610722366004612535565b611579565b34801561073357600080fd5b50610346610742366004612535565b6116f8565b34801561075357600080fd5b5061035e600c5481565b34801561076957600080fd5b50610346610778366004612497565b611727565b34801561078957600080fd5b506102a26107983660046122e3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107d257600080fd5b506103466107e1366004612422565b61176b565b3480156107f257600080fd5b506103466108013660046124ec565b6117ad565b34801561081257600080fd5b506103466108213660046122c8565b6117ea565b60006001600160e01b031982166380ac58cd60e01b148061085757506001600160e01b03198216635b5e139f60e01b145b8061087257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610887906128b7565b80601f01602080910402602001604051908101604052809291908181526020018280546108b3906128b7565b80156109005780601f106108d557610100808354040283529160200191610900565b820191906000526020600020905b8154815290600101906020018083116108e357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109885760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600880546109b1906128b7565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd906128b7565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b505050505081565b6000610a3d8261112b565b9050806001600160a01b0316836001600160a01b03161415610aab5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161097f565b336001600160a01b0382161480610ac75750610ac78133610798565b610b395760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161097f565b610b438383611885565b505050565b6006546001600160a01b03163314610b725760405162461bcd60e51b815260040161097f90612775565b8051610b8590600a90602084019061211c565b5050565b6006546001600160a01b03163314610bb35760405162461bcd60e51b815260040161097f90612775565b6012805460ff1916911515919091179055565b6000610bd160075490565b905090565b610be033826118f3565b610bfc5760405162461bcd60e51b815260040161097f906127d8565b610b438383836119ea565b80600081118015610c1a5750600d548111155b610c365760405162461bcd60e51b815260040161097f90612747565b600c5481610c4360075490565b610c4d9190612829565b1115610c6b5760405162461bcd60e51b815260040161097f906127aa565b60125460ff1615610cb85760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b604482015260640161097f565b600f5460ff16610d0a5760405162461bcd60e51b815260206004820152601a60248201527f5468652077686974656c6973742073616c65206973206f766572000000000000604482015260640161097f565b81600b54610d189190612855565b341015610d5d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161097f565b610d6633610e27565b610db25760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161097f565b33600090815260116020526040902054600e54610dcf8483612829565b1115610e1d5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161097f565b610b433384611b8a565b6000805b601054811015610e8857826001600160a01b031660108281548110610e5257610e5261294d565b6000918252602090912001546001600160a01b03161415610e765750600192915050565b80610e80816128f2565b915050610e2b565b50600092915050565b6006546001600160a01b03163314610ebb5760405162461bcd60e51b815260040161097f90612775565b600f805460ff1916911515919091179055565b6006546001600160a01b03163314610ef85760405162461bcd60e51b815260040161097f90612775565b600073744538423ef33c693a54481874423dd05d44950b6064610f1c47600a612855565b610f269190612841565b604051600081818185875af1925050503d8060008114610f62576040519150601f19603f3d011682016040523d82523d6000602084013e610f67565b606091505b5050905080610f7557600080fd5b6000610f896006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610fd3576040519150601f19603f3d011682016040523d82523d6000602084013e610fd8565b606091505b5050905080610b8557600080fd5b610b438383836040518060200160405280600081525061147f565b6060600061100e836111d1565b905060008167ffffffffffffffff81111561102b5761102b612963565b604051908082528060200260200182016040528015611054578160200160208202803683370190505b509050600160005b838110801561106d5750600c548211155b156110d857600061107d8361112b565b9050866001600160a01b0316816001600160a01b031614156110c557828483815181106110ac576110ac61294d565b6020908102919091010152816110c1816128f2565b9250505b826110cf816128f2565b9350505061105c565b5090949350505050565b6006546001600160a01b0316331461110c5760405162461bcd60e51b815260040161097f90612775565b600b55565b600a80546109b1906128b7565b600980546109b1906128b7565b6000818152600260205260408120546001600160a01b0316806108725760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161097f565b6006546001600160a01b031633146111cc5760405162461bcd60e51b815260040161097f90612775565b600c55565b60006001600160a01b03821661123c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161097f565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146112825760405162461bcd60e51b815260040161097f90612775565b61128c6000611be7565b565b6006546001600160a01b031633146112b85760405162461bcd60e51b815260040161097f90612775565b8051610b8590600990602084019061211c565b606060018054610887906128b7565b806000811180156112ed5750600d548111155b6113095760405162461bcd60e51b815260040161097f90612747565b600c548161131660075490565b6113209190612829565b111561133e5760405162461bcd60e51b815260040161097f906127aa565b60125460ff161561138b5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b604482015260640161097f565b600f5460ff16156113e85760405162461bcd60e51b815260206004820152602160248201527f43757272656e746c792077686974656c697374206d696e74696e67206f6e6c796044820152602160f81b606482015260840161097f565b81600b546113f69190612855565b34101561143b5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161097f565b610b853383611c39565b610b85338383611c71565b6006546001600160a01b0316331461147a5760405162461bcd60e51b815260040161097f90612775565b600d55565b61148933836118f3565b6114a55760405162461bcd60e51b815260040161097f906127d8565b6114b184848484611d40565b50505050565b601081815481106114c757600080fd5b6000918252602090912001546001600160a01b0316905081565b816000811180156114f45750600d548111155b6115105760405162461bcd60e51b815260040161097f90612747565b600c548161151d60075490565b6115279190612829565b11156115455760405162461bcd60e51b815260040161097f906127aa565b6006546001600160a01b0316331461156f5760405162461bcd60e51b815260040161097f90612775565b610b438284611c39565b6000818152600260205260409020546060906001600160a01b03166115f85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161097f565b601254610100900460ff166116995760088054611614906128b7565b80601f0160208091040260200160405190810160405280929190818152602001828054611640906128b7565b801561168d5780601f106116625761010080835404028352916020019161168d565b820191906000526020600020905b81548152906001019060200180831161167057829003601f168201915b50505050509050919050565b60006116a3611d73565b905060008151116116c357604051806020016040528060008152506116f1565b806116cd84611d82565b600a6040516020016116e19392919061259d565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146117225760405162461bcd60e51b815260040161097f90612775565b600e55565b6006546001600160a01b031633146117515760405162461bcd60e51b815260040161097f90612775565b601280549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146117955760405162461bcd60e51b815260040161097f90612775565b6117a1601060006121a0565b610b43601083836121be565b6006546001600160a01b031633146117d75760405162461bcd60e51b815260040161097f90612775565b8051610b8590600890602084019061211c565b6006546001600160a01b031633146118145760405162461bcd60e51b815260040161097f90612775565b6001600160a01b0381166118795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097f565b61188281611be7565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118ba8261112b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661196c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097f565b60006119778361112b565b9050806001600160a01b0316846001600160a01b031614806119b25750836001600160a01b03166119a78461090a565b6001600160a01b0316145b806119e257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119fd8261112b565b6001600160a01b031614611a655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161097f565b6001600160a01b038216611ac75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161097f565b611ad2600082611885565b6001600160a01b0383166000908152600360205260408120805460019290611afb908490612874565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b29908490612829565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b81811015610b4357611ba3600780546001019055565b336000908152601160205260408120805491611bbe836128f2565b9190505550611bd583611bd060075490565b611e80565b80611bdf816128f2565b915050611b8d565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610b4357611c52600780546001019055565b611c5f83611bd060075490565b80611c69816128f2565b915050611c3c565b816001600160a01b0316836001600160a01b03161415611cd35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161097f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d4b8484846119ea565b611d5784848484611e9a565b6114b15760405162461bcd60e51b815260040161097f906126f5565b606060098054610887906128b7565b606081611da65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dd05780611dba816128f2565b9150611dc99050600a83612841565b9150611daa565b60008167ffffffffffffffff811115611deb57611deb612963565b6040519080825280601f01601f191660200182016040528015611e15576020820181803683370190505b5090505b84156119e257611e2a600183612874565b9150611e37600a8661290d565b611e42906030612829565b60f81b818381518110611e5757611e5761294d565b60200101906001600160f81b031916908160001a905350611e79600a86612841565b9450611e19565b610b85828260405180602001604052806000815250611fa7565b60006001600160a01b0384163b15611f9c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ede903390899088908890600401612661565b602060405180830381600087803b158015611ef857600080fd5b505af1925050508015611f28575060408051601f3d908101601f19168201909252611f25918101906124cf565b60015b611f82573d808015611f56576040519150601f19603f3d011682016040523d82523d6000602084013e611f5b565b606091505b508051611f7a5760405162461bcd60e51b815260040161097f906126f5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119e2565b506001949350505050565b611fb18383611fda565b611fbe6000848484611e9a565b610b435760405162461bcd60e51b815260040161097f906126f5565b6001600160a01b0382166120305760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161097f565b6000818152600260205260409020546001600160a01b0316156120955760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161097f565b6001600160a01b03821660009081526003602052604081208054600192906120be908490612829565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612128906128b7565b90600052602060002090601f01602090048101928261214a5760008555612190565b82601f1061216357805160ff1916838001178555612190565b82800160010185558215612190579182015b82811115612190578251825591602001919060010190612175565b5061219c929150612211565b5090565b50805460008255906000526020600020908101906118829190612211565b828054828255906000526020600020908101928215612190579160200282015b828111156121905781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906121de565b5b8082111561219c5760008155600101612212565b600067ffffffffffffffff8084111561224157612241612963565b604051601f8501601f19908116603f0116810190828211818310171561226957612269612963565b8160405280935085815286868601111561228257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146122b357600080fd5b919050565b803580151581146122b357600080fd5b6000602082840312156122da57600080fd5b6116f18261229c565b600080604083850312156122f657600080fd5b6122ff8361229c565b915061230d6020840161229c565b90509250929050565b60008060006060848603121561232b57600080fd5b6123348461229c565b92506123426020850161229c565b9150604084013590509250925092565b6000806000806080858703121561236857600080fd5b6123718561229c565b935061237f6020860161229c565b925060408501359150606085013567ffffffffffffffff8111156123a257600080fd5b8501601f810187136123b357600080fd5b6123c287823560208401612226565b91505092959194509250565b600080604083850312156123e157600080fd5b6123ea8361229c565b915061230d602084016122b8565b6000806040838503121561240b57600080fd5b6124148361229c565b946020939093013593505050565b6000806020838503121561243557600080fd5b823567ffffffffffffffff8082111561244d57600080fd5b818501915085601f83011261246157600080fd5b81358181111561247057600080fd5b8660208260051b850101111561248557600080fd5b60209290920196919550909350505050565b6000602082840312156124a957600080fd5b6116f1826122b8565b6000602082840312156124c457600080fd5b81356116f181612979565b6000602082840312156124e157600080fd5b81516116f181612979565b6000602082840312156124fe57600080fd5b813567ffffffffffffffff81111561251557600080fd5b8201601f8101841361252657600080fd5b6119e284823560208401612226565b60006020828403121561254757600080fd5b5035919050565b6000806040838503121561256157600080fd5b8235915061230d6020840161229c565b6000815180845261258981602086016020860161288b565b601f01601f19169290920160200192915050565b6000845160206125b08285838a0161288b565b8551918401916125c38184848a0161288b565b8554920191600090600181811c90808316806125e057607f831692505b8583108114156125fe57634e487b7160e01b85526022600452602485fd5b808015612612576001811461262357612650565b60ff19851688528388019550612650565b60008b81526020902060005b858110156126485781548a82015290840190880161262f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061269490830184612571565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126d6578351835292840192918401916001016126ba565b50909695505050505050565b6020815260006116f16020830184612571565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561283c5761283c612921565b500190565b60008261285057612850612937565b500490565b600081600019048311821515161561286f5761286f612921565b500290565b60008282101561288657612886612921565b500390565b60005b838110156128a657818101518382015260200161288e565b838111156114b15750506000910152565b600181811c908216806128cb57607f821691505b602082108114156128ec57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561290657612906612921565b5060010190565b60008261291c5761291c612937565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461188257600080fdfea26469706673582212206d6e941c3352f468ebb75e3d4841b360fa29a2d021b57fb95d0db53617d1c3da64736f6c63430008070033697066733a2f2f516d4e64454b6e6146594635766461567272313338705635735950343839324d366e7368486d753332796e427a572f

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636f8b44b01161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610747578063e0a808531461075d578063e985e9c51461077d578063edec5f27146107c6578063f2c4ce1e146107e6578063f2fde38b1461080657600080fd5b8063b88d4fde14610691578063ba4e5c49146106b1578063ba7d2c76146106d1578063bc63f02e146106e7578063c87b56dd14610707578063d0eb26b01461072757600080fd5b806394354fd01161011357806394354fd0146105f957806395d89b411461060f5780639c70b51214610624578063a0712d681461063e578063a22cb46514610651578063b071401b1461067157600080fd5b80636f8b44b01461056657806370a0823114610586578063715018a6146105a65780637ec4a659146105bb5780638da5cb5b146105db57600080fd5b80632884c62a116101f357806344a0d68a116101ac57806344a0d68a146104c357806351830227146104e35780635503a0e8146105025780635c975abb1461051757806362b99ad4146105315780636352211e1461054657600080fd5b80632884c62a1461040e5780633af32abf146104215780633c952764146104415780633ccfd60b1461046157806342842e0e14610476578063438b63001461049657600080fd5b806313faede61161024557806313faede61461034857806316ba10e01461036c57806316c38b3c1461038c57806318160ddd146103ac57806318cae269146103c157806323b872dd146103ee57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063081c8c4414610311578063095ea7b314610326575b600080fd5b34801561028e57600080fd5b506102a261029d3660046124b2565b610826565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610878565b6040516102ae91906126e2565b3480156102e557600080fd5b506102f96102f4366004612535565b61090a565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b506102cc6109a4565b34801561033257600080fd5b506103466103413660046123f8565b610a32565b005b34801561035457600080fd5b5061035e600b5481565b6040519081526020016102ae565b34801561037857600080fd5b506103466103873660046124ec565b610b48565b34801561039857600080fd5b506103466103a7366004612497565b610b89565b3480156103b857600080fd5b5061035e610bc6565b3480156103cd57600080fd5b5061035e6103dc3660046122c8565b60116020526000908152604090205481565b3480156103fa57600080fd5b50610346610409366004612316565b610bd6565b61034661041c366004612535565b610c07565b34801561042d57600080fd5b506102a261043c3660046122c8565b610e27565b34801561044d57600080fd5b5061034661045c366004612497565b610e91565b34801561046d57600080fd5b50610346610ece565b34801561048257600080fd5b50610346610491366004612316565b610fe6565b3480156104a257600080fd5b506104b66104b13660046122c8565b611001565b6040516102ae919061269e565b3480156104cf57600080fd5b506103466104de366004612535565b6110e2565b3480156104ef57600080fd5b506012546102a290610100900460ff1681565b34801561050e57600080fd5b506102cc611111565b34801561052357600080fd5b506012546102a29060ff1681565b34801561053d57600080fd5b506102cc61111e565b34801561055257600080fd5b506102f9610561366004612535565b61112b565b34801561057257600080fd5b50610346610581366004612535565b6111a2565b34801561059257600080fd5b5061035e6105a13660046122c8565b6111d1565b3480156105b257600080fd5b50610346611258565b3480156105c757600080fd5b506103466105d63660046124ec565b61128e565b3480156105e757600080fd5b506006546001600160a01b03166102f9565b34801561060557600080fd5b5061035e600d5481565b34801561061b57600080fd5b506102cc6112cb565b34801561063057600080fd5b50600f546102a29060ff1681565b61034661064c366004612535565b6112da565b34801561065d57600080fd5b5061034661066c3660046123ce565b611445565b34801561067d57600080fd5b5061034661068c366004612535565b611450565b34801561069d57600080fd5b506103466106ac366004612352565b61147f565b3480156106bd57600080fd5b506102f96106cc366004612535565b6114b7565b3480156106dd57600080fd5b5061035e600e5481565b3480156106f357600080fd5b5061034661070236600461254e565b6114e1565b34801561071357600080fd5b506102cc610722366004612535565b611579565b34801561073357600080fd5b50610346610742366004612535565b6116f8565b34801561075357600080fd5b5061035e600c5481565b34801561076957600080fd5b50610346610778366004612497565b611727565b34801561078957600080fd5b506102a26107983660046122e3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107d257600080fd5b506103466107e1366004612422565b61176b565b3480156107f257600080fd5b506103466108013660046124ec565b6117ad565b34801561081257600080fd5b506103466108213660046122c8565b6117ea565b60006001600160e01b031982166380ac58cd60e01b148061085757506001600160e01b03198216635b5e139f60e01b145b8061087257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610887906128b7565b80601f01602080910402602001604051908101604052809291908181526020018280546108b3906128b7565b80156109005780601f106108d557610100808354040283529160200191610900565b820191906000526020600020905b8154815290600101906020018083116108e357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109885760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600880546109b1906128b7565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd906128b7565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b505050505081565b6000610a3d8261112b565b9050806001600160a01b0316836001600160a01b03161415610aab5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161097f565b336001600160a01b0382161480610ac75750610ac78133610798565b610b395760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161097f565b610b438383611885565b505050565b6006546001600160a01b03163314610b725760405162461bcd60e51b815260040161097f90612775565b8051610b8590600a90602084019061211c565b5050565b6006546001600160a01b03163314610bb35760405162461bcd60e51b815260040161097f90612775565b6012805460ff1916911515919091179055565b6000610bd160075490565b905090565b610be033826118f3565b610bfc5760405162461bcd60e51b815260040161097f906127d8565b610b438383836119ea565b80600081118015610c1a5750600d548111155b610c365760405162461bcd60e51b815260040161097f90612747565b600c5481610c4360075490565b610c4d9190612829565b1115610c6b5760405162461bcd60e51b815260040161097f906127aa565b60125460ff1615610cb85760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b604482015260640161097f565b600f5460ff16610d0a5760405162461bcd60e51b815260206004820152601a60248201527f5468652077686974656c6973742073616c65206973206f766572000000000000604482015260640161097f565b81600b54610d189190612855565b341015610d5d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161097f565b610d6633610e27565b610db25760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161097f565b33600090815260116020526040902054600e54610dcf8483612829565b1115610e1d5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161097f565b610b433384611b8a565b6000805b601054811015610e8857826001600160a01b031660108281548110610e5257610e5261294d565b6000918252602090912001546001600160a01b03161415610e765750600192915050565b80610e80816128f2565b915050610e2b565b50600092915050565b6006546001600160a01b03163314610ebb5760405162461bcd60e51b815260040161097f90612775565b600f805460ff1916911515919091179055565b6006546001600160a01b03163314610ef85760405162461bcd60e51b815260040161097f90612775565b600073744538423ef33c693a54481874423dd05d44950b6064610f1c47600a612855565b610f269190612841565b604051600081818185875af1925050503d8060008114610f62576040519150601f19603f3d011682016040523d82523d6000602084013e610f67565b606091505b5050905080610f7557600080fd5b6000610f896006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610fd3576040519150601f19603f3d011682016040523d82523d6000602084013e610fd8565b606091505b5050905080610b8557600080fd5b610b438383836040518060200160405280600081525061147f565b6060600061100e836111d1565b905060008167ffffffffffffffff81111561102b5761102b612963565b604051908082528060200260200182016040528015611054578160200160208202803683370190505b509050600160005b838110801561106d5750600c548211155b156110d857600061107d8361112b565b9050866001600160a01b0316816001600160a01b031614156110c557828483815181106110ac576110ac61294d565b6020908102919091010152816110c1816128f2565b9250505b826110cf816128f2565b9350505061105c565b5090949350505050565b6006546001600160a01b0316331461110c5760405162461bcd60e51b815260040161097f90612775565b600b55565b600a80546109b1906128b7565b600980546109b1906128b7565b6000818152600260205260408120546001600160a01b0316806108725760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161097f565b6006546001600160a01b031633146111cc5760405162461bcd60e51b815260040161097f90612775565b600c55565b60006001600160a01b03821661123c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161097f565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146112825760405162461bcd60e51b815260040161097f90612775565b61128c6000611be7565b565b6006546001600160a01b031633146112b85760405162461bcd60e51b815260040161097f90612775565b8051610b8590600990602084019061211c565b606060018054610887906128b7565b806000811180156112ed5750600d548111155b6113095760405162461bcd60e51b815260040161097f90612747565b600c548161131660075490565b6113209190612829565b111561133e5760405162461bcd60e51b815260040161097f906127aa565b60125460ff161561138b5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b604482015260640161097f565b600f5460ff16156113e85760405162461bcd60e51b815260206004820152602160248201527f43757272656e746c792077686974656c697374206d696e74696e67206f6e6c796044820152602160f81b606482015260840161097f565b81600b546113f69190612855565b34101561143b5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161097f565b610b853383611c39565b610b85338383611c71565b6006546001600160a01b0316331461147a5760405162461bcd60e51b815260040161097f90612775565b600d55565b61148933836118f3565b6114a55760405162461bcd60e51b815260040161097f906127d8565b6114b184848484611d40565b50505050565b601081815481106114c757600080fd5b6000918252602090912001546001600160a01b0316905081565b816000811180156114f45750600d548111155b6115105760405162461bcd60e51b815260040161097f90612747565b600c548161151d60075490565b6115279190612829565b11156115455760405162461bcd60e51b815260040161097f906127aa565b6006546001600160a01b0316331461156f5760405162461bcd60e51b815260040161097f90612775565b610b438284611c39565b6000818152600260205260409020546060906001600160a01b03166115f85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161097f565b601254610100900460ff166116995760088054611614906128b7565b80601f0160208091040260200160405190810160405280929190818152602001828054611640906128b7565b801561168d5780601f106116625761010080835404028352916020019161168d565b820191906000526020600020905b81548152906001019060200180831161167057829003601f168201915b50505050509050919050565b60006116a3611d73565b905060008151116116c357604051806020016040528060008152506116f1565b806116cd84611d82565b600a6040516020016116e19392919061259d565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146117225760405162461bcd60e51b815260040161097f90612775565b600e55565b6006546001600160a01b031633146117515760405162461bcd60e51b815260040161097f90612775565b601280549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146117955760405162461bcd60e51b815260040161097f90612775565b6117a1601060006121a0565b610b43601083836121be565b6006546001600160a01b031633146117d75760405162461bcd60e51b815260040161097f90612775565b8051610b8590600890602084019061211c565b6006546001600160a01b031633146118145760405162461bcd60e51b815260040161097f90612775565b6001600160a01b0381166118795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097f565b61188281611be7565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118ba8261112b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661196c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097f565b60006119778361112b565b9050806001600160a01b0316846001600160a01b031614806119b25750836001600160a01b03166119a78461090a565b6001600160a01b0316145b806119e257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119fd8261112b565b6001600160a01b031614611a655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161097f565b6001600160a01b038216611ac75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161097f565b611ad2600082611885565b6001600160a01b0383166000908152600360205260408120805460019290611afb908490612874565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b29908490612829565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b81811015610b4357611ba3600780546001019055565b336000908152601160205260408120805491611bbe836128f2565b9190505550611bd583611bd060075490565b611e80565b80611bdf816128f2565b915050611b8d565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610b4357611c52600780546001019055565b611c5f83611bd060075490565b80611c69816128f2565b915050611c3c565b816001600160a01b0316836001600160a01b03161415611cd35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161097f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d4b8484846119ea565b611d5784848484611e9a565b6114b15760405162461bcd60e51b815260040161097f906126f5565b606060098054610887906128b7565b606081611da65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dd05780611dba816128f2565b9150611dc99050600a83612841565b9150611daa565b60008167ffffffffffffffff811115611deb57611deb612963565b6040519080825280601f01601f191660200182016040528015611e15576020820181803683370190505b5090505b84156119e257611e2a600183612874565b9150611e37600a8661290d565b611e42906030612829565b60f81b818381518110611e5757611e5761294d565b60200101906001600160f81b031916908160001a905350611e79600a86612841565b9450611e19565b610b85828260405180602001604052806000815250611fa7565b60006001600160a01b0384163b15611f9c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ede903390899088908890600401612661565b602060405180830381600087803b158015611ef857600080fd5b505af1925050508015611f28575060408051601f3d908101601f19168201909252611f25918101906124cf565b60015b611f82573d808015611f56576040519150601f19603f3d011682016040523d82523d6000602084013e611f5b565b606091505b508051611f7a5760405162461bcd60e51b815260040161097f906126f5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119e2565b506001949350505050565b611fb18383611fda565b611fbe6000848484611e9a565b610b435760405162461bcd60e51b815260040161097f906126f5565b6001600160a01b0382166120305760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161097f565b6000818152600260205260409020546001600160a01b0316156120955760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161097f565b6001600160a01b03821660009081526003602052604081208054600192906120be908490612829565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612128906128b7565b90600052602060002090601f01602090048101928261214a5760008555612190565b82601f1061216357805160ff1916838001178555612190565b82800160010185558215612190579182015b82811115612190578251825591602001919060010190612175565b5061219c929150612211565b5090565b50805460008255906000526020600020908101906118829190612211565b828054828255906000526020600020908101928215612190579160200282015b828111156121905781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906121de565b5b8082111561219c5760008155600101612212565b600067ffffffffffffffff8084111561224157612241612963565b604051601f8501601f19908116603f0116810190828211818310171561226957612269612963565b8160405280935085815286868601111561228257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146122b357600080fd5b919050565b803580151581146122b357600080fd5b6000602082840312156122da57600080fd5b6116f18261229c565b600080604083850312156122f657600080fd5b6122ff8361229c565b915061230d6020840161229c565b90509250929050565b60008060006060848603121561232b57600080fd5b6123348461229c565b92506123426020850161229c565b9150604084013590509250925092565b6000806000806080858703121561236857600080fd5b6123718561229c565b935061237f6020860161229c565b925060408501359150606085013567ffffffffffffffff8111156123a257600080fd5b8501601f810187136123b357600080fd5b6123c287823560208401612226565b91505092959194509250565b600080604083850312156123e157600080fd5b6123ea8361229c565b915061230d602084016122b8565b6000806040838503121561240b57600080fd5b6124148361229c565b946020939093013593505050565b6000806020838503121561243557600080fd5b823567ffffffffffffffff8082111561244d57600080fd5b818501915085601f83011261246157600080fd5b81358181111561247057600080fd5b8660208260051b850101111561248557600080fd5b60209290920196919550909350505050565b6000602082840312156124a957600080fd5b6116f1826122b8565b6000602082840312156124c457600080fd5b81356116f181612979565b6000602082840312156124e157600080fd5b81516116f181612979565b6000602082840312156124fe57600080fd5b813567ffffffffffffffff81111561251557600080fd5b8201601f8101841361252657600080fd5b6119e284823560208401612226565b60006020828403121561254757600080fd5b5035919050565b6000806040838503121561256157600080fd5b8235915061230d6020840161229c565b6000815180845261258981602086016020860161288b565b601f01601f19169290920160200192915050565b6000845160206125b08285838a0161288b565b8551918401916125c38184848a0161288b565b8554920191600090600181811c90808316806125e057607f831692505b8583108114156125fe57634e487b7160e01b85526022600452602485fd5b808015612612576001811461262357612650565b60ff19851688528388019550612650565b60008b81526020902060005b858110156126485781548a82015290840190880161262f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061269490830184612571565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126d6578351835292840192918401916001016126ba565b50909695505050505050565b6020815260006116f16020830184612571565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561283c5761283c612921565b500190565b60008261285057612850612937565b500490565b600081600019048311821515161561286f5761286f612921565b500290565b60008282101561288657612886612921565b500390565b60005b838110156128a657818101518382015260200161288e565b838111156114b15750506000910152565b600181811c908216806128cb57607f821691505b602082108114156128ec57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561290657612906612921565b5060010190565b60008261291c5761291c612937565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461188257600080fdfea26469706673582212206d6e941c3352f468ebb75e3d4841b360fa29a2d021b57fb95d0db53617d1c3da64736f6c63430008070033

Deployed Bytecode Sourcemap

44640:5563:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32131:305;;;;;;;;;;-1:-1:-1;32131:305:0;;;;;:::i;:::-;;:::i;:::-;;;8686:14:1;;8679:22;8661:41;;8649:2;8634:18;32131:305:0;;;;;;;;33076:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34635:221::-;;;;;;;;;;-1:-1:-1;34635:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7347:32:1;;;7329:51;;7317:2;7302:18;34635:221:0;7183:203:1;44790:54:0;;;;;;;;;;;;;:::i;34158:411::-;;;;;;;;;;-1:-1:-1;34158:411:0;;;;;:::i;:::-;;:::i;:::-;;44979:31;;;;;;;;;;;;;;;;;;;18329:25:1;;;18317:2;18302:18;44979:31:0;18183:177:1;48567:100:0;;;;;;;;;;-1:-1:-1;48567:100:0;;;;;:::i;:::-;;:::i;48673:77::-;;;;;;;;;;-1:-1:-1;48673:77:0;;;;;:::i;:::-;;:::i;45634:89::-;;;;;;;;;;;;;:::i;45217:55::-;;;;;;;;;;-1:-1:-1;45217:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;35385:339;;;;;;;;;;-1:-1:-1;35385:339:0;;;;;:::i;:::-;;:::i;46051:563::-;;;;;;:::i;:::-;;:::i;49568:239::-;;;;;;;;;;-1:-1:-1;49568:239:0;;;;;:::i;:::-;;:::i;48843:95::-;;;;;;;;;;-1:-1:-1;48843:95:0;;;;;:::i;:::-;;:::i;49813:277::-;;;;;;;;;;;;;:::i;35795:185::-;;;;;;;;;;-1:-1:-1;35795:185:0;;;;;:::i;:::-;;:::i;46776:635::-;;;;;;;;;;-1:-1:-1;46776:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47915:74::-;;;;;;;;;;-1:-1:-1;47915:74:0;;;;;:::i;:::-;;:::i;45310:27::-;;;;;;;;;;-1:-1:-1;45310:27:0;;;;;;;;;;;44937:33;;;;;;;;;;;;;:::i;45279:26::-;;;;;;;;;;-1:-1:-1;45279:26:0;;;;;;;;44850:82;;;;;;;;;;;;;:::i;32770:239::-;;;;;;;;;;-1:-1:-1;32770:239:0;;;;;:::i;:::-;;:::i;48241:88::-;;;;;;;;;;-1:-1:-1;48241:88:0;;;;;:::i;:::-;;:::i;32500:208::-;;;;;;;;;;-1:-1:-1;32500:208:0;;;;;:::i;:::-;;:::i;9126:103::-;;;;;;;;;;;;;:::i;48461:100::-;;;;;;;;;;-1:-1:-1;48461:100:0;;;;;:::i;:::-;;:::i;8475:87::-;;;;;;;;;;-1:-1:-1;8548:6:0;;-1:-1:-1;;;;;8548:6:0;8475:87;;45050:37;;;;;;;;;;;;;;;;33245:104;;;;;;;;;;;;;:::i;45136:34::-;;;;;;;;;;-1:-1:-1;45136:34:0;;;;;;;;45729:316;;;;;;:::i;:::-;;:::i;34928:155::-;;;;;;;;;;-1:-1:-1;34928:155:0;;;;;:::i;:::-;;:::i;47995:130::-;;;;;;;;;;-1:-1:-1;47995:130:0;;;;;:::i;:::-;;:::i;36051:328::-;;;;;;;;;;-1:-1:-1;36051:328:0;;;;;:::i;:::-;;:::i;45175:37::-;;;;;;;;;;-1:-1:-1;45175:37:0;;;;;:::i;:::-;;:::i;45092:::-;;;;;;;;;;;;;;;;46622:148;;;;;;;;;;-1:-1:-1;46622:148:0;;;;;:::i;:::-;;:::i;47417:492::-;;;;;;;;;;-1:-1:-1;47417:492:0;;;;;:::i;:::-;;:::i;48131:104::-;;;;;;;;;;-1:-1:-1;48131:104:0;;;;;:::i;:::-;;:::i;45015:30::-;;;;;;;;;;;;;;;;48756:81;;;;;;;;;;-1:-1:-1;48756:81:0;;;;;:::i;:::-;;:::i;35154:164::-;;;;;;;;;;-1:-1:-1;35154:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35275:25:0;;;35251:4;35275:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35154:164;48946:144;;;;;;;;;;-1:-1:-1;48946:144:0;;;;;:::i;:::-;;:::i;48335:120::-;;;;;;;;;;-1:-1:-1;48335:120:0;;;;;:::i;:::-;;:::i;9384:201::-;;;;;;;;;;-1:-1:-1;9384:201:0;;;;;:::i;:::-;;:::i;32131:305::-;32233:4;-1:-1:-1;;;;;;32270:40:0;;-1:-1:-1;;;32270:40:0;;:105;;-1:-1:-1;;;;;;;32327:48:0;;-1:-1:-1;;;32327:48:0;32270:105;:158;;;-1:-1:-1;;;;;;;;;;25009:40:0;;;32392:36;32250:178;32131:305;-1:-1:-1;;32131:305:0:o;33076:100::-;33130:13;33163:5;33156:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33076:100;:::o;34635:221::-;34711:7;37978:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37978:16:0;34731:73;;;;-1:-1:-1;;;34731:73:0;;14162:2:1;34731:73:0;;;14144:21:1;14201:2;14181:18;;;14174:30;14240:34;14220:18;;;14213:62;-1:-1:-1;;;14291:18:1;;;14284:42;14343:19;;34731:73:0;;;;;;;;;-1:-1:-1;34824:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34824:24:0;;34635:221::o;44790:54::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34158:411::-;34239:13;34255:23;34270:7;34255:14;:23::i;:::-;34239:39;;34303:5;-1:-1:-1;;;;;34297:11:0;:2;-1:-1:-1;;;;;34297:11:0;;;34289:57;;;;-1:-1:-1;;;34289:57:0;;16114:2:1;34289:57:0;;;16096:21:1;16153:2;16133:18;;;16126:30;16192:34;16172:18;;;16165:62;-1:-1:-1;;;16243:18:1;;;16236:31;16284:19;;34289:57:0;15912:397:1;34289:57:0;7279:10;-1:-1:-1;;;;;34381:21:0;;;;:62;;-1:-1:-1;34406:37:0;34423:5;7279:10;35154:164;:::i;34406:37::-;34359:168;;;;-1:-1:-1;;;34359:168:0;;12200:2:1;34359:168:0;;;12182:21:1;12239:2;12219:18;;;12212:30;12278:34;12258:18;;;12251:62;12349:26;12329:18;;;12322:54;12393:19;;34359:168:0;11998:420:1;34359:168:0;34540:21;34549:2;34553:7;34540:8;:21::i;:::-;34228:341;34158:411;;:::o;48567:100::-;8548:6;;-1:-1:-1;;;;;8548:6:0;7279:10;8695:23;8687:68;;;;-1:-1:-1;;;8687:68:0;;;;;;;:::i;:::-;48639:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48567:100:::0;:::o;48673:77::-;8548:6;;-1:-1:-1;;;;;8548:6:0;7279:10;8695:23;8687:68;;;;-1:-1:-1;;;8687:68:0;;;;;;;:::i;:::-;48729:6:::1;:15:::0;;-1:-1:-1;;48729:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48673:77::o;45634:89::-;45678:7;45701:16;:6;3895:14;;3803:114;45701:16;45694:23;;45634:89;:::o;35385:339::-;35580:41;7279:10;35613:7;35580:18;:41::i;:::-;35572:103;;;;-1:-1:-1;;;35572:103:0;;;;;;;:::i;:::-;35688:28;35698:4;35704:2;35708:7;35688:9;:28::i;46051:563::-;46128:11;45468:1;45454:11;:15;:52;;;;;45488:18;;45473:11;:33;;45454:52;45446:85;;;;-1:-1:-1;;;45446:85:0;;;;;;;:::i;:::-;45580:9;;45565:11;45546:16;:6;3895:14;;3803:114;45546:16;:30;;;;:::i;:::-;:43;;45538:76;;;;-1:-1:-1;;;45538:76:0;;;;;;;:::i;:::-;46157:6:::1;::::0;::::1;;46156:7;46148:43;;;::::0;-1:-1:-1;;;46148:43:0;;14936:2:1;46148:43:0::1;::::0;::::1;14918:21:1::0;14975:2;14955:18;;;14948:30;-1:-1:-1;;;14994:18:1;;;14987:53;15057:18;;46148:43:0::1;14734:347:1::0;46148:43:0::1;46206:15;::::0;::::1;;46198:54;;;::::0;-1:-1:-1;;;46198:54:0;;13446:2:1;46198:54:0::1;::::0;::::1;13428:21:1::0;13485:2;13465:18;;;13458:30;13524:28;13504:18;;;13497:56;13570:18;;46198:54:0::1;13244:350:1::0;46198:54:0::1;46287:11;46280:4;;:18;;;;:::i;:::-;46267:9;:31;;46259:63;;;::::0;-1:-1:-1;;;46259:63:0;;17635:2:1;46259:63:0::1;::::0;::::1;17617:21:1::0;17674:2;17654:18;;;17647:30;-1:-1:-1;;;17693:18:1;;;17686:49;17752:18;;46259:63:0::1;17433:343:1::0;46259:63:0::1;46337:25;46351:10;46337:13;:25::i;:::-;46329:61;;;::::0;-1:-1:-1;;;46329:61:0;;17283:2:1;46329:61:0::1;::::0;::::1;17265:21:1::0;17322:2;17302:18;;;17295:30;17361:25;17341:18;;;17334:53;17404:18;;46329:61:0::1;17081:347:1::0;46329:61:0::1;46445:10;46397:24;46424:32:::0;;;:20:::1;:32;::::0;;;;;46505:18:::1;::::0;46471:30:::1;46490:11:::0;46424:32;46471:30:::1;:::i;:::-;:52;;46463:93;;;::::0;-1:-1:-1;;;46463:93:0;;10671:2:1;46463:93:0::1;::::0;::::1;10653:21:1::0;10710:2;10690:18;;;10683:30;10749;10729:18;;;10722:58;10797:18;;46463:93:0::1;10469:352:1::0;46463:93:0::1;46565:43;46584:10;46596:11;46565:18;:43::i;49568:239::-:0;49627:4;;49640:143;49661:20;:27;49657:31;;49640:143;;;49735:5;-1:-1:-1;;;;;49708:32:0;:20;49729:1;49708:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;49708:23:0;:32;49704:72;;;-1:-1:-1;49762:4:0;;49568:239;-1:-1:-1;;49568:239:0:o;49704:72::-;49690:3;;;;:::i;:::-;;;;49640:143;;;-1:-1:-1;49796:5:0;;49568:239;-1:-1:-1;;49568:239:0:o;48843:95::-;8548:6;;-1:-1:-1;;;;;8548:6:0;7279:10;8695:23;8687:68;;;;-1:-1:-1;;;8687:68:0;;;;;;;:::i;:::-;48908:15:::1;:24:::0;;-1:-1:-1;;48908:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48843:95::o;49813:277::-;8548:6;;-1:-1:-1;;;;;8548:6:0;7279:10;8695:23;8687:68;;;;-1:-1:-1;;;8687:68:0;;;;;;;:::i;:::-;49858:7:::1;49879:42;49964:3;49935:26;:21;49959:2;49935:26;:::i;:::-;:32;;;;:::i;:::-;49871:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49857:115;;;49987:2;49979:11;;;::::0;::::1;;49998:7;50019;8548:6:::0;;-1:-1:-1;;;;;8548:6:0;;8475:87;50019:7:::1;-1:-1:-1::0;;;;;50011:21:0::1;50040;50011:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49997:69;;;50081:2;50073:11;;;::::0;::::1;35795:185:::0;35933:39;35950:4;35956:2;35960:7;35933:39;;;;;;;;;;;;:16;:39::i;46776:635::-;46851:16;46879:23;46905:17;46915:6;46905:9;:17::i;:::-;46879:43;;46929:30;46976:15;46962:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46962:30:0;-1:-1:-1;46929:63:0;-1:-1:-1;47024:1:0;46999:22;47068:309;47093:15;47075;:33;:64;;;;;47130:9;;47112:14;:27;;47075:64;47068:309;;;47150:25;47178:23;47186:14;47178:7;:23::i;:::-;47150:51;;47237:6;-1:-1:-1;;;;;47216:27:0;:17;-1:-1:-1;;;;;47216:27:0;;47212:131;;;47289:14;47256:13;47270:15;47256:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;47316:17;;;;:::i;:::-;;;;47212:131;47353:16;;;;:::i;:::-;;;;47141:236;47068:309;;;-1:-1:-1;47392:13:0;;46776:635;-1:-1:-1;;;;46776:635:0:o;47915:74::-;8548:6;;-1:-1:-1;;;;;8548:6:0;7279:10;8695:23;8687:68;;;;-1:-1:-1;;;8687:68:0;;;;;;;:::i;:::-;47971:4:::1;:12:::0;47915:74::o;44937:33::-;;;;;;;:::i;44850:82::-;;;;;;;:::i;32770:239::-;32842:7;32878:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32878:16:0;32913:19;32905:73;;;;-1:-1:-1;;;32905:73:0;;13036:2:1;32905:73:0;;;13018:21:1;13075:2;13055:18;;;13048:30;13114:34;13094:18;;;13087:62;-1:-1:-1;;;13165:18:1;;;13158:39;13214:19;;32905:73:0;12834:405:1;48241:88:0;8548:6;;-1:-1:-1;;;;;8548:6:0;7279:10;8695:23;8687:68;;;;-1:-1:-1;;;8687:68:0;;;;;;;:::i;:::-;48304:9:::1;:19:::0;48241:88::o;32500:208::-;32572:7;-1:-1:-1;;;;;32600:19:0;;32592:74;;;;-1:-1:-1;;;32592:74:0;;12625:2:1;32592:74:0;;;12607:21:1;12664:2;12644:18;;;12637:30;12703:34;12683:18;;;12676:62;-1:-1:-1;;;12754:18:1;;;12747:40;12804:19;;32592:74:0;12423:406:1;32592:74:0;-1:-1:-1;;;;;;32684:16:0;;;;;:9;:16;;;;;;;32500:208::o;9126:103::-;8548:6;;-1:-1:-1;;;;;8548:6:0;7279:10;8695:23;8687:68;;;;-1:-1:-1;;;8687:68:0;;;;;;;:::i;:::-;9191:30:::1;9218:1;9191:18;:30::i;:::-;9126:103::o:0;48461:100::-;8548:6;;-1:-1:-1;;;;;8548:6:0;7279:10;8695:23;8687:68;;;;-1:-1:-1;;;8687:68:0;;;;;;;:::i;:::-;48533:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;33245:104::-:0;33301:13;33334:7;33327:14;;;;;:::i;45729:316::-;45794:11;45468:1;45454:11;:15;:52;;;;;45488:18;;45473:11;:33;;45454:52;45446:85;;;;-1:-1:-1;;;45446:85:0;;;;;;;:::i;:::-;45580:9;;45565:11;45546:16;:6;3895:14;;3803:114;45546:16;:30;;;;:::i;:::-;:43;;45538:76;;;;-1:-1:-1;;;45538:76:0;;;;;;;:::i;:::-;45823:6:::1;::::0;::::1;;45822:7;45814:43;;;::::0;-1:-1:-1;;;45814:43:0;;14936:2:1;45814:43:0::1;::::0;::::1;14918:21:1::0;14975:2;14955:18;;;14948:30;-1:-1:-1;;;14994:18:1;;;14987:53;15057:18;;45814:43:0::1;14734:347:1::0;45814:43:0::1;45873:15;::::0;::::1;;45872:16;45864:62;;;::::0;-1:-1:-1;;;45864:62:0;;17983:2:1;45864:62:0::1;::::0;::::1;17965:21:1::0;18022:2;18002:18;;;17995:30;18061:34;18041:18;;;18034:62;-1:-1:-1;;;18112:18:1;;;18105:31;18153:19;;45864:62:0::1;17781:397:1::0;45864:62:0::1;45961:11;45954:4;;:18;;;;:::i;:::-;45941:9;:31;;45933:63;;;::::0;-1:-1:-1;;;45933:63:0;;17635:2:1;45933:63:0::1;::::0;::::1;17617:21:1::0;17674:2;17654:18;;;17647:30;-1:-1:-1;;;17693:18:1;;;17686:49;17752:18;;45933:63:0::1;17433:343:1::0;45933:63:0::1;46005:34;46015:10;46027:11;46005:9;:34::i;34928:155::-:0;35023:52;7279:10;35056:8;35066;35023:18;:52::i;47995:130::-;8548:6;;-1:-1:-1;;;;;8548:6:0;7279:10;8695:23;8687:68;;;;-1:-1:-1;;;8687:68:0;;;;;;;:::i;:::-;48079:18:::1;:40:::0;47995:130::o;36051:328::-;36226:41;7279:10;36259:7;36226:18;:41::i;:::-;36218:103;;;;-1:-1:-1;;;36218:103:0;;;;;;;:::i;:::-;36332:39;36346:4;36352:2;36356:7;36365:5;36332:13;:39::i;:::-;36051:328;;;;:::o;45175:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45175:37:0;;-1:-1:-1;45175:37:0;:::o;46622:148::-;46701:11;45468:1;45454:11;:15;:52;;;;;45488:18;;45473:11;:33;;45454:52;45446:85;;;;-1:-1:-1;;;45446:85:0;;;;;;;:::i;:::-;45580:9;;45565:11;45546:16;:6;3895:14;;3803:114;45546:16;:30;;;;:::i;:::-;:43;;45538:76;;;;-1:-1:-1;;;45538:76:0;;;;;;;:::i;:::-;8548:6;;-1:-1:-1;;;;;8548:6:0;7279:10;8695:23:::1;8687:68;;;;-1:-1:-1::0;;;8687:68:0::1;;;;;;;:::i;:::-;46731:33:::2;46741:9;46752:11;46731:9;:33::i;47417:492::-:0;37954:4;37978:16;;;:7;:16;;;;;;47516:13;;-1:-1:-1;;;;;37978:16:0;47541:98;;;;-1:-1:-1;;;47541:98:0;;15698:2:1;47541:98:0;;;15680:21:1;15737:2;15717:18;;;15710:30;15776:34;15756:18;;;15749:62;-1:-1:-1;;;15827:18:1;;;15820:45;15882:19;;47541:98:0;15496:411:1;47541:98:0;47651:8;;;;;;;47648:62;;47688:14;47681:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47417:492;;;:::o;47648:62::-;47718:28;47749:10;:8;:10::i;:::-;47718:41;;47804:1;47779:14;47773:28;:32;:130;;;;;;;;;;;;;;;;;47841:14;47857:19;:8;:17;:19::i;:::-;47878:9;47824:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47773:130;47766:137;47417:492;-1:-1:-1;;;47417:492:0:o;48131:104::-;8548:6;;-1:-1:-1;;;;;8548:6:0;7279:10;8695:23;8687:68;;;;-1:-1:-1;;;8687:68:0;;;;;;;:::i;:::-;48202:18:::1;:27:::0;48131:104::o;48756:81::-;8548:6;;-1:-1:-1;;;;;8548:6:0;7279:10;8695:23;8687:68;;;;-1:-1:-1;;;8687:68:0;;;;;;;:::i;:::-;48814:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;48814:17:0;;::::1;::::0;;;::::1;::::0;;48756:81::o;48946:144::-;8548:6;;-1:-1:-1;;;;;8548:6:0;7279:10;8695:23;8687:68;;;;-1:-1:-1;;;8687:68:0;;;;;;;:::i;:::-;49021:27:::1;49028:20;;49021:27;:::i;:::-;49055:29;:20;49078:6:::0;;49055:29:::1;:::i;48335:120::-:0;8548:6;;-1:-1:-1;;;;;8548:6:0;7279:10;8695:23;8687:68;;;;-1:-1:-1;;;8687:68:0;;;;;;;:::i;:::-;48417:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;9384:201::-:0;8548:6;;-1:-1:-1;;;;;8548:6:0;7279:10;8695:23;8687:68;;;;-1:-1:-1;;;8687:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9473:22:0;::::1;9465:73;;;::::0;-1:-1:-1;;;9465:73:0;;9558:2:1;9465:73:0::1;::::0;::::1;9540:21:1::0;9597:2;9577:18;;;9570:30;9636:34;9616:18;;;9609:62;-1:-1:-1;;;9687:18:1;;;9680:36;9733:19;;9465:73:0::1;9356:402:1::0;9465:73:0::1;9549:28;9568:8;9549:18;:28::i;:::-;9384:201:::0;:::o;41871:174::-;41946:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41946:29:0;-1:-1:-1;;;;;41946:29:0;;;;;;;;:24;;42000:23;41946:24;42000:14;:23::i;:::-;-1:-1:-1;;;;;41991:46:0;;;;;;;;;;;41871:174;;:::o;38183:348::-;38276:4;37978:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37978:16:0;38293:73;;;;-1:-1:-1;;;38293:73:0;;11787:2:1;38293:73:0;;;11769:21:1;11826:2;11806:18;;;11799:30;11865:34;11845:18;;;11838:62;-1:-1:-1;;;11916:18:1;;;11909:42;11968:19;;38293:73:0;11585:408:1;38293:73:0;38377:13;38393:23;38408:7;38393:14;:23::i;:::-;38377:39;;38446:5;-1:-1:-1;;;;;38435:16:0;:7;-1:-1:-1;;;;;38435:16:0;;:51;;;;38479:7;-1:-1:-1;;;;;38455:31:0;:20;38467:7;38455:11;:20::i;:::-;-1:-1:-1;;;;;38455:31:0;;38435:51;:87;;;-1:-1:-1;;;;;;35275:25:0;;;35251:4;35275:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38490:32;38427:96;38183:348;-1:-1:-1;;;;38183:348:0:o;41175:578::-;41334:4;-1:-1:-1;;;;;41307:31:0;:23;41322:7;41307:14;:23::i;:::-;-1:-1:-1;;;;;41307:31:0;;41299:85;;;;-1:-1:-1;;;41299:85:0;;15288:2:1;41299:85:0;;;15270:21:1;15327:2;15307:18;;;15300:30;15366:34;15346:18;;;15339:62;-1:-1:-1;;;15417:18:1;;;15410:39;15466:19;;41299:85:0;15086:405:1;41299:85:0;-1:-1:-1;;;;;41403:16:0;;41395:65;;;;-1:-1:-1;;;41395:65:0;;11028:2:1;41395:65:0;;;11010:21:1;11067:2;11047:18;;;11040:30;11106:34;11086:18;;;11079:62;-1:-1:-1;;;11157:18:1;;;11150:34;11201:19;;41395:65:0;10826:400:1;41395:65:0;41577:29;41594:1;41598:7;41577:8;:29::i;:::-;-1:-1:-1;;;;;41619:15:0;;;;;;:9;:15;;;;;:20;;41638:1;;41619:15;:20;;41638:1;;41619:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41650:13:0;;;;;;:9;:13;;;;;:18;;41667:1;;41650:13;:18;;41667:1;;41650:18;:::i;:::-;;;;-1:-1:-1;;41679:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41679:21:0;-1:-1:-1;;;;;41679:21:0;;;;;;;;;41718:27;;41679:16;;41718:27;;;;;;;41175:578;;;:::o;49306:256::-;49395:9;49390:167;49414:11;49410:1;:15;49390:167;;;49441:18;:6;4014:19;;4032:1;4014:19;;;3925:127;49441:18;49489:10;49468:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;49511:38;49521:9;49532:16;:6;3895:14;;3803:114;49532:16;49511:9;:38::i;:::-;49427:3;;;;:::i;:::-;;;;49390:167;;9745:191;9838:6;;;-1:-1:-1;;;;;9855:17:0;;;-1:-1:-1;;;;;;9855:17:0;;;;;;;9888:40;;9838:6;;;9855:17;9838:6;;9888:40;;9819:16;;9888:40;9808:128;9745:191;:::o;49096:204::-;49176:9;49171:124;49195:11;49191:1;:15;49171:124;;;49222:18;:6;4014:19;;4032:1;4014:19;;;3925:127;49222:18;49249:38;49259:9;49270:16;:6;3895:14;;3803:114;49249:38;49208:3;;;;:::i;:::-;;;;49171:124;;42187:315;42342:8;-1:-1:-1;;;;;42333:17:0;:5;-1:-1:-1;;;;;42333:17:0;;;42325:55;;;;-1:-1:-1;;;42325:55:0;;11433:2:1;42325:55:0;;;11415:21:1;11472:2;11452:18;;;11445:30;11511:27;11491:18;;;11484:55;11556:18;;42325:55:0;11231:349:1;42325:55:0;-1:-1:-1;;;;;42391:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;42391:46:0;;;;;;;;;;42453:41;;8661::1;;;42453::0;;8634:18:1;42453:41:0;;;;;;;42187:315;;;:::o;37261:::-;37418:28;37428:4;37434:2;37438:7;37418:9;:28::i;:::-;37465:48;37488:4;37494:2;37498:7;37507:5;37465:22;:48::i;:::-;37457:111;;;;-1:-1:-1;;;37457:111:0;;;;;;;:::i;50096:104::-;50156:13;50185:9;50178:16;;;;;:::i;4761:723::-;4817:13;5038:10;5034:53;;-1:-1:-1;;5065:10:0;;;;;;;;;;;;-1:-1:-1;;;5065:10:0;;;;;4761:723::o;5034:53::-;5112:5;5097:12;5153:78;5160:9;;5153:78;;5186:8;;;;:::i;:::-;;-1:-1:-1;5209:10:0;;-1:-1:-1;5217:2:0;5209:10;;:::i;:::-;;;5153:78;;;5241:19;5273:6;5263:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5263:17:0;;5241:39;;5291:154;5298:10;;5291:154;;5325:11;5335:1;5325:11;;:::i;:::-;;-1:-1:-1;5394:10:0;5402:2;5394:5;:10;:::i;:::-;5381:24;;:2;:24;:::i;:::-;5368:39;;5351:6;5358;5351:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5351:56:0;;;;;;;;-1:-1:-1;5422:11:0;5431:2;5422:11;;:::i;:::-;;;5291:154;;38873:110;38949:26;38959:2;38963:7;38949:26;;;;;;;;;;;;:9;:26::i;43067:799::-;43222:4;-1:-1:-1;;;;;43243:13:0;;11086:20;11134:8;43239:620;;43279:72;;-1:-1:-1;;;43279:72:0;;-1:-1:-1;;;;;43279:36:0;;;;;:72;;7279:10;;43330:4;;43336:7;;43345:5;;43279:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43279:72:0;;;;;;;;-1:-1:-1;;43279:72:0;;;;;;;;;;;;:::i;:::-;;;43275:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43521:13:0;;43517:272;;43564:60;;-1:-1:-1;;;43564:60:0;;;;;;;:::i;43517:272::-;43739:6;43733:13;43724:6;43720:2;43716:15;43709:38;43275:529;-1:-1:-1;;;;;;43402:51:0;-1:-1:-1;;;43402:51:0;;-1:-1:-1;43395:58:0;;43239:620;-1:-1:-1;43843:4:0;43067:799;;;;;;:::o;39210:321::-;39340:18;39346:2;39350:7;39340:5;:18::i;:::-;39391:54;39422:1;39426:2;39430:7;39439:5;39391:22;:54::i;:::-;39369:154;;;;-1:-1:-1;;;39369:154:0;;;;;;;:::i;39867:382::-;-1:-1:-1;;;;;39947:16:0;;39939:61;;;;-1:-1:-1;;;39939:61:0;;13801:2:1;39939:61:0;;;13783:21:1;;;13820:18;;;13813:30;13879:34;13859:18;;;13852:62;13931:18;;39939:61:0;13599:356:1;39939:61:0;37954:4;37978:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37978:16:0;:30;40011:58;;;;-1:-1:-1;;;40011:58:0;;9965:2:1;40011:58:0;;;9947:21:1;10004:2;9984:18;;;9977:30;10043;10023:18;;;10016:58;10091:18;;40011:58:0;9763:352:1;40011:58:0;-1:-1:-1;;;;;40140:13:0;;;;;;:9;:13;;;;;:18;;40157:1;;40140:13;:18;;40157:1;;40140:18;:::i;:::-;;;;-1:-1:-1;;40169:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40169:21:0;-1:-1:-1;;;;;40169:21:0;;;;;;;;40208:33;;40169:16;;;40208:33;;40169:16;;40208:33;39867:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:254::-;4988:6;4996;5049:2;5037:9;5028:7;5024:23;5020:32;5017:52;;;5065:1;5062;5055:12;5017:52;5101:9;5088:23;5078:33;;5130:38;5164:2;5153:9;5149:18;5130:38;:::i;5179:257::-;5220:3;5258:5;5252:12;5285:6;5280:3;5273:19;5301:63;5357:6;5350:4;5345:3;5341:14;5334:4;5327:5;5323:16;5301:63;:::i;:::-;5418:2;5397:15;-1:-1:-1;;5393:29:1;5384:39;;;;5425:4;5380:50;;5179:257;-1:-1:-1;;5179:257:1:o;5441:1527::-;5665:3;5703:6;5697:13;5729:4;5742:51;5786:6;5781:3;5776:2;5768:6;5764:15;5742:51;:::i;:::-;5856:13;;5815:16;;;;5878:55;5856:13;5815:16;5900:15;;;5878:55;:::i;:::-;6022:13;;5955:20;;;5995:1;;6082;6104:18;;;;6157;;;;6184:93;;6262:4;6252:8;6248:19;6236:31;;6184:93;6325:2;6315:8;6312:16;6292:18;6289:40;6286:167;;;-1:-1:-1;;;6352:33:1;;6408:4;6405:1;6398:15;6438:4;6359:3;6426:17;6286:167;6469:18;6496:110;;;;6620:1;6615:328;;;;6462:481;;6496:110;-1:-1:-1;;6531:24:1;;6517:39;;6576:20;;;;-1:-1:-1;6496:110:1;;6615:328;18438:1;18431:14;;;18475:4;18462:18;;6710:1;6724:169;6738:8;6735:1;6732:15;6724:169;;;6820:14;;6805:13;;;6798:37;6863:16;;;;6755:10;;6724:169;;;6728:3;;6924:8;6917:5;6913:20;6906:27;;6462:481;-1:-1:-1;6959:3:1;;5441:1527;-1:-1:-1;;;;;;;;;;;5441:1527:1:o;7391:488::-;-1:-1:-1;;;;;7660:15:1;;;7642:34;;7712:15;;7707:2;7692:18;;7685:43;7759:2;7744:18;;7737:34;;;7807:3;7802:2;7787:18;;7780:31;;;7585:4;;7828:45;;7853:19;;7845:6;7828:45;:::i;:::-;7820:53;7391:488;-1:-1:-1;;;;;;7391:488:1:o;7884:632::-;8055:2;8107:21;;;8177:13;;8080:18;;;8199:22;;;8026:4;;8055:2;8278:15;;;;8252:2;8237:18;;;8026:4;8321:169;8335:6;8332:1;8329:13;8321:169;;;8396:13;;8384:26;;8465:15;;;;8430:12;;;;8357:1;8350:9;8321:169;;;-1:-1:-1;8507:3:1;;7884:632;-1:-1:-1;;;;;;7884:632:1:o;8713:219::-;8862:2;8851:9;8844:21;8825:4;8882:44;8922:2;8911:9;8907:18;8899:6;8882:44;:::i;8937:414::-;9139:2;9121:21;;;9178:2;9158:18;;;9151:30;9217:34;9212:2;9197:18;;9190:62;-1:-1:-1;;;9283:2:1;9268:18;;9261:48;9341:3;9326:19;;8937:414::o;10120:344::-;10322:2;10304:21;;;10361:2;10341:18;;;10334:30;-1:-1:-1;;;10395:2:1;10380:18;;10373:50;10455:2;10440:18;;10120:344::o;14373:356::-;14575:2;14557:21;;;14594:18;;;14587:30;14653:34;14648:2;14633:18;;14626:62;14720:2;14705:18;;14373:356::o;16314:344::-;16516:2;16498:21;;;16555:2;16535:18;;;16528:30;-1:-1:-1;;;16589:2:1;16574:18;;16567:50;16649:2;16634:18;;16314:344::o;16663:413::-;16865:2;16847:21;;;16904:2;16884:18;;;16877:30;16943:34;16938:2;16923:18;;16916:62;-1:-1:-1;;;17009:2:1;16994:18;;16987:47;17066:3;17051:19;;16663:413::o;18491:128::-;18531:3;18562:1;18558:6;18555:1;18552:13;18549:39;;;18568:18;;:::i;:::-;-1:-1:-1;18604:9:1;;18491:128::o;18624:120::-;18664:1;18690;18680:35;;18695:18;;:::i;:::-;-1:-1:-1;18729:9:1;;18624:120::o;18749:168::-;18789:7;18855:1;18851;18847:6;18843:14;18840:1;18837:21;18832:1;18825:9;18818:17;18814:45;18811:71;;;18862:18;;:::i;:::-;-1:-1:-1;18902:9:1;;18749:168::o;18922:125::-;18962:4;18990:1;18987;18984:8;18981:34;;;18995:18;;:::i;:::-;-1:-1:-1;19032:9:1;;18922:125::o;19052:258::-;19124:1;19134:113;19148:6;19145:1;19142:13;19134:113;;;19224:11;;;19218:18;19205:11;;;19198:39;19170:2;19163:10;19134:113;;;19265:6;19262:1;19259:13;19256:48;;;-1:-1:-1;;19300:1:1;19282:16;;19275:27;19052:258::o;19315:380::-;19394:1;19390:12;;;;19437;;;19458:61;;19512:4;19504:6;19500:17;19490:27;;19458:61;19565:2;19557:6;19554:14;19534:18;19531:38;19528:161;;;19611:10;19606:3;19602:20;19599:1;19592:31;19646:4;19643:1;19636:15;19674:4;19671:1;19664:15;19528:161;;19315:380;;;:::o;19700:135::-;19739:3;-1:-1:-1;;19760:17:1;;19757:43;;;19780:18;;:::i;:::-;-1:-1:-1;19827:1:1;19816:13;;19700:135::o;19840:112::-;19872:1;19898;19888:35;;19903:18;;:::i;:::-;-1:-1:-1;19937:9:1;;19840:112::o;19957:127::-;20018:10;20013:3;20009:20;20006:1;19999:31;20049:4;20046:1;20039:15;20073:4;20070:1;20063:15;20089:127;20150:10;20145:3;20141:20;20138:1;20131:31;20181:4;20178:1;20171:15;20205:4;20202:1;20195:15;20221:127;20282:10;20277:3;20273:20;20270:1;20263:31;20313:4;20310:1;20303:15;20337:4;20334:1;20327:15;20353:127;20414:10;20409:3;20405:20;20402:1;20395:31;20445:4;20442:1;20435:15;20469:4;20466:1;20459:15;20485:131;-1:-1:-1;;;;;;20559:32:1;;20549:43;;20539:71;;20606:1;20603;20596:12

Swarm Source

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