ETH Price: $3,459.85 (+1.60%)
Gas: 7 Gwei

Token

Frosted Fam (FAM)
 

Overview

Max Total Supply

1,099 FAM

Holders

170

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 FAM
0xca0308ca4c245a65a7d339c3ddcc5e1a22c29d6a
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:
FrostedFam

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

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/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 {}
}


pragma solidity >=0.7.0 <0.9.0;

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

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.038 ether;
  uint256 public maxSupply = 4444;
  uint256 public maxPreMintAmountPerTx = 3;
  uint256 public maxMintAmountPerTx = 5;
  uint256 public maxPrePerWallet = 3;
  uint256 public maxPerWallet = 5;

  bool public paused = true;
  bool public prepaused = true;
  bool public revealed = false;
  
  mapping(address => uint256) public mintsPerWallet;
  mapping(address => bool) public whitelisted;

  constructor() ERC721("Frosted Fam", "FAM") {
    setHiddenMetadataUri("https://www.frostedfam.com/frosted/hidden.json");
  }

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

  modifier preMintCompliance(uint256 _preMintAmount) {
    require(_preMintAmount > 0 && _preMintAmount <= maxPreMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _preMintAmount <= 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(msg.value >= cost * _mintAmount, "Insufficient funds!");

    uint256 walletCount = mintsPerWallet[_msgSender()];
    require(_mintAmount + walletCount <= maxPerWallet, "Exceeds max allowed per wallet!");
    mintsPerWallet[_msgSender()] = mintsPerWallet[_msgSender()] + _mintAmount;

    _mintLoop(msg.sender, _mintAmount);
  }

  function presaleMint(uint256 _preMintAmount) public payable preMintCompliance(_preMintAmount) {
    require(!prepaused, "The Presale is paused!");
    require(msg.value >= cost * _preMintAmount, "Insufficient funds!");
    require(whitelisted[msg.sender] == true, "You are not Whitelisted!");

    uint256 preWalletCount = mintsPerWallet[_msgSender()];
    require(_preMintAmount + preWalletCount <= maxPrePerWallet, "Exceeds max allowed in Presale per wallet!");
    mintsPerWallet[_msgSender()] = mintsPerWallet[_msgSender()] + _preMintAmount;

    _preMintLoop(msg.sender, _preMintAmount);
  }
  
  function mintForAddress(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 hiddenMetadataUri;
    }

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

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

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

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

  function setMaxPreMintAmountPerTx(uint256 _maxPreMintAmountPerTx) public onlyOwner {
    maxPreMintAmountPerTx = _maxPreMintAmountPerTx;
  }

  function setMaxPerWallet(uint256 _maxValue) external onlyOwner {
    maxPerWallet = _maxValue;
  }

  function setMaxPrePerWallet(uint256 _maxPreValue) external onlyOwner {
    maxPrePerWallet = _maxPreValue;
  }

  function whitelistUser(address _user) public onlyOwner {
    whitelisted[_user] = true;
  }

  function removeWhitelistUser(address _user) public onlyOwner {
    whitelisted[_user] = false;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  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 setPrePaused(bool _state) public onlyOwner {
    prepaused = _state;
  }

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

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

  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":"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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPrePerWallet","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"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prepaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preMintAmount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","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":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxValue","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPreMintAmountPerTx","type":"uint256"}],"name":"setMaxPreMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPreValue","type":"uint256"}],"name":"setMaxPrePerWallet","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":"setPrePaused","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":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b916008916200020a565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a916009916200020a565b50668700cc75770000600b5561115c600c556003600d8190556005600e819055600f919091556010556011805462ffffff19166101011790553480156200009057600080fd5b50604080518082018252600b81526a46726f737465642046616d60a81b60208083019182528351808501909452600384526246414d60e81b908401528151919291620000df916000916200020a565b508051620000f59060019060208401906200020a565b505050620001126200010c6200013c60201b60201c565b62000140565b620001366040518060600160405280602e815260200162002c12602e913962000192565b620002ed565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001f15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200020690600a9060208401906200020a565b5050565b8280546200021890620002b0565b90600052602060002090601f0160209004810192826200023c576000855562000287565b82601f106200025757805160ff191683800117855562000287565b8280016001018555821562000287579182015b82811115620002875782518255916020019190600101906200026a565b506200029592915062000299565b5090565b5b808211156200029557600081556001016200029a565b600181811c90821680620002c557607f821691505b60208210811415620002e757634e487b7160e01b600052602260045260246000fd5b50919050565b61291580620002fd6000396000f3fe6080604052600436106102ae5760003560e01c80636352211e11610175578063b70bef0e116100dc578063d936547e11610095578063e268e4d31161006f578063e268e4d314610810578063e985e9c514610830578063efbd73f414610879578063f2fde38b1461089957600080fd5b8063d936547e146107a0578063de240790146107d0578063e0a80853146107f057600080fd5b8063b70bef0e146106f8578063b86245d114610717578063b88d4fde14610737578063c87b56dd14610757578063c9b298f114610777578063d5abeb011461078a57600080fd5b806395d89b411161012e57806395d89b4114610665578063a0712d681461067a578063a13a5a311461068d578063a22cb465146106a3578063a45ba8e7146106c3578063b071401b146106d857600080fd5b80636352211e146105bc57806370a08231146105dc578063715018a6146105fc5780637ec4a659146106115780638da5cb5b1461063157806394354fd01461064f57600080fd5b806342842e0e116102195780634fdd43cb116101d25780634fdd43cb1461051857806350af35da1461053857806351830227146105585780635503a0e8146105785780635c975abb1461058d57806362b99ad4146105a757600080fd5b806342842e0e14610448578063438b63001461046857806344a0d68a14610495578063453c2310146104b55780634a4c560d146104cb5780634d0df5fc146104eb57600080fd5b806316ba10e01161026b57806316ba10e01461039e57806316c38b3c146103be57806318160ddd146103de57806323b872dd146103f357806330cc7ae0146104135780633ccfd60b1461043357600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a578063095ea7b3146103425780630df21e541461036457806313faede614610388575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612402565b6108b9565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd61090b565b6040516102df9190612632565b34801561031657600080fd5b5061032a610325366004612485565b61099d565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061036261035d3660046123bd565b610a37565b005b34801561037057600080fd5b5061037a600d5481565b6040519081526020016102df565b34801561039457600080fd5b5061037a600b5481565b3480156103aa57600080fd5b506103626103b936600461243c565b610b4d565b3480156103ca57600080fd5b506103626103d93660046123e7565b610b8e565b3480156103ea57600080fd5b5061037a610bcb565b3480156103ff57600080fd5b5061036261040e3660046122db565b610bdb565b34801561041f57600080fd5b5061036261042e36600461228d565b610c0c565b34801561043f57600080fd5b50610362610c57565b34801561045457600080fd5b506103626104633660046122db565b610cf5565b34801561047457600080fd5b5061048861048336600461228d565b610d10565b6040516102df91906125ee565b3480156104a157600080fd5b506103626104b0366004612485565b610df1565b3480156104c157600080fd5b5061037a60105481565b3480156104d757600080fd5b506103626104e636600461228d565b610e20565b3480156104f757600080fd5b5061037a61050636600461228d565b60126020526000908152604090205481565b34801561052457600080fd5b5061036261053336600461243c565b610e6e565b34801561054457600080fd5b506103626105533660046123e7565b610eab565b34801561056457600080fd5b506011546102d39062010000900460ff1681565b34801561058457600080fd5b506102fd610eef565b34801561059957600080fd5b506011546102d39060ff1681565b3480156105b357600080fd5b506102fd610f7d565b3480156105c857600080fd5b5061032a6105d7366004612485565b610f8a565b3480156105e857600080fd5b5061037a6105f736600461228d565b611001565b34801561060857600080fd5b50610362611088565b34801561061d57600080fd5b5061036261062c36600461243c565b6110be565b34801561063d57600080fd5b506006546001600160a01b031661032a565b34801561065b57600080fd5b5061037a600e5481565b34801561067157600080fd5b506102fd6110fb565b610362610688366004612485565b61110a565b34801561069957600080fd5b5061037a600f5481565b3480156106af57600080fd5b506103626106be366004612393565b6112b7565b3480156106cf57600080fd5b506102fd6112c2565b3480156106e457600080fd5b506103626106f3366004612485565b6112cf565b34801561070457600080fd5b506011546102d390610100900460ff1681565b34801561072357600080fd5b50610362610732366004612485565b6112fe565b34801561074357600080fd5b50610362610752366004612317565b61132d565b34801561076357600080fd5b506102fd610772366004612485565b611365565b610362610785366004612485565b6114e5565b34801561079657600080fd5b5061037a600c5481565b3480156107ac57600080fd5b506102d36107bb36600461228d565b60136020526000908152604090205460ff1681565b3480156107dc57600080fd5b506103626107eb366004612485565b611707565b3480156107fc57600080fd5b5061036261080b3660046123e7565b611736565b34801561081c57600080fd5b5061036261082b366004612485565b61177c565b34801561083c57600080fd5b506102d361084b3660046122a8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561088557600080fd5b5061036261089436600461249e565b6117ab565b3480156108a557600080fd5b506103626108b436600461228d565b611843565b60006001600160e01b031982166380ac58cd60e01b14806108ea57506001600160e01b03198216635b5e139f60e01b145b8061090557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461091a90612807565b80601f016020809104026020016040519081016040528092919081815260200182805461094690612807565b80156109935780601f1061096857610100808354040283529160200191610993565b820191906000526020600020905b81548152906001019060200180831161097657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a1b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a4282610f8a565b9050806001600160a01b0316836001600160a01b03161415610ab05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a12565b336001600160a01b0382161480610acc5750610acc813361084b565b610b3e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a12565b610b4883836118db565b505050565b6006546001600160a01b03163314610b775760405162461bcd60e51b8152600401610a12906126c5565b8051610b8a906009906020840190612152565b5050565b6006546001600160a01b03163314610bb85760405162461bcd60e51b8152600401610a12906126c5565b6011805460ff1916911515919091179055565b6000610bd660075490565b905090565b610be53382611949565b610c015760405162461bcd60e51b8152600401610a1290612728565b610b48838383611a40565b6006546001600160a01b03163314610c365760405162461bcd60e51b8152600401610a12906126c5565b6001600160a01b03166000908152601360205260409020805460ff19169055565b6006546001600160a01b03163314610c815760405162461bcd60e51b8152600401610a12906126c5565b6000610c956006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cdf576040519150601f19603f3d011682016040523d82523d6000602084013e610ce4565b606091505b5050905080610cf257600080fd5b50565b610b488383836040518060200160405280600081525061132d565b60606000610d1d83611001565b905060008167ffffffffffffffff811115610d3a57610d3a6128b3565b604051908082528060200260200182016040528015610d63578160200160208202803683370190505b509050600160005b8381108015610d7c5750600c548211155b15610de7576000610d8c83610f8a565b9050866001600160a01b0316816001600160a01b03161415610dd45782848381518110610dbb57610dbb61289d565b602090810291909101015281610dd081612842565b9250505b82610dde81612842565b93505050610d6b565b5090949350505050565b6006546001600160a01b03163314610e1b5760405162461bcd60e51b8152600401610a12906126c5565b600b55565b6006546001600160a01b03163314610e4a5760405162461bcd60e51b8152600401610a12906126c5565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b6006546001600160a01b03163314610e985760405162461bcd60e51b8152600401610a12906126c5565b8051610b8a90600a906020840190612152565b6006546001600160a01b03163314610ed55760405162461bcd60e51b8152600401610a12906126c5565b601180549115156101000261ff0019909216919091179055565b60098054610efc90612807565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2890612807565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b505050505081565b60088054610efc90612807565b6000818152600260205260408120546001600160a01b0316806109055760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a12565b60006001600160a01b03821661106c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a12565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110b25760405162461bcd60e51b8152600401610a12906126c5565b6110bc6000611be0565b565b6006546001600160a01b031633146110e85760405162461bcd60e51b8152600401610a12906126c5565b8051610b8a906008906020840190612152565b60606001805461091a90612807565b8060008111801561111d5750600e548111155b6111395760405162461bcd60e51b8152600401610a1290612697565b600c548161114660075490565b6111509190612779565b111561116e5760405162461bcd60e51b8152600401610a12906126fa565b60115460ff16156111c15760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610a12565b81600b546111cf91906127a5565b3410156112145760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a12565b336000908152601260205260409020546010546112318285612779565b111561127f5760405162461bcd60e51b815260206004820152601f60248201527f45786365656473206d617820616c6c6f776564207065722077616c6c657421006044820152606401610a12565b3360009081526012602052604090205461129a908490612779565b33600081815260126020526040902091909155610b489084611c32565b610b8a338383611c6f565b600a8054610efc90612807565b6006546001600160a01b031633146112f95760405162461bcd60e51b8152600401610a12906126c5565b600e55565b6006546001600160a01b031633146113285760405162461bcd60e51b8152600401610a12906126c5565b600f55565b6113373383611949565b6113535760405162461bcd60e51b8152600401610a1290612728565b61135f84848484611d3e565b50505050565b6000818152600260205260409020546060906001600160a01b03166113e45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a12565b60115462010000900460ff1661148657600a805461140190612807565b80601f016020809104026020016040519081016040528092919081815260200182805461142d90612807565b801561147a5780601f1061144f5761010080835404028352916020019161147a565b820191906000526020600020905b81548152906001019060200180831161145d57829003601f168201915b50505050509050919050565b6000611490611d71565b905060008151116114b057604051806020016040528060008152506114de565b806114ba84611d80565b60096040516020016114ce939291906124ed565b6040516020818303038152906040525b9392505050565b806000811180156114f85750600d548111155b6115145760405162461bcd60e51b8152600401610a1290612697565b600c548161152160075490565b61152b9190612779565b11156115495760405162461bcd60e51b8152600401610a12906126fa565b601154610100900460ff161561159a5760405162461bcd60e51b81526020600482015260166024820152755468652050726573616c65206973207061757365642160501b6044820152606401610a12565b81600b546115a891906127a5565b3410156115ed5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a12565b3360009081526013602052604090205460ff1615156001146116515760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742057686974656c69737465642100000000000000006044820152606401610a12565b33600090815260126020526040902054600f5461166e8285612779565b11156116cf5760405162461bcd60e51b815260206004820152602a60248201527f45786365656473206d617820616c6c6f77656420696e2050726573616c65207060448201526965722077616c6c65742160b01b6064820152608401610a12565b336000908152601260205260409020546116ea908490612779565b33600081815260126020526040902091909155610b489084611e7e565b6006546001600160a01b031633146117315760405162461bcd60e51b8152600401610a12906126c5565b600d55565b6006546001600160a01b031633146117605760405162461bcd60e51b8152600401610a12906126c5565b60118054911515620100000262ff000019909216919091179055565b6006546001600160a01b031633146117a65760405162461bcd60e51b8152600401610a12906126c5565b601055565b816000811180156117be5750600e548111155b6117da5760405162461bcd60e51b8152600401610a1290612697565b600c54816117e760075490565b6117f19190612779565b111561180f5760405162461bcd60e51b8152600401610a12906126fa565b6006546001600160a01b031633146118395760405162461bcd60e51b8152600401610a12906126c5565b610b488284611c32565b6006546001600160a01b0316331461186d5760405162461bcd60e51b8152600401610a12906126c5565b6001600160a01b0381166118d25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a12565b610cf281611be0565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061191082610f8a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119c25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a12565b60006119cd83610f8a565b9050806001600160a01b0316846001600160a01b03161480611a085750836001600160a01b03166119fd8461099d565b6001600160a01b0316145b80611a3857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a5382610f8a565b6001600160a01b031614611abb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a12565b6001600160a01b038216611b1d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a12565b611b286000826118db565b6001600160a01b0383166000908152600360205260408120805460019290611b519084906127c4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b7f908490612779565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610b4857611c4b600780546001019055565b611c5d83611c5860075490565b611eb6565b80611c6781612842565b915050611c35565b816001600160a01b0316836001600160a01b03161415611cd15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a12565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d49848484611a40565b611d5584848484611ed0565b61135f5760405162461bcd60e51b8152600401610a1290612645565b60606008805461091a90612807565b606081611da45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dce5780611db881612842565b9150611dc79050600a83612791565b9150611da8565b60008167ffffffffffffffff811115611de957611de96128b3565b6040519080825280601f01601f191660200182016040528015611e13576020820181803683370190505b5090505b8415611a3857611e286001836127c4565b9150611e35600a8661285d565b611e40906030612779565b60f81b818381518110611e5557611e5561289d565b60200101906001600160f81b031916908160001a905350611e77600a86612791565b9450611e17565b60005b81811015610b4857611e97600780546001019055565b611ea483611c5860075490565b80611eae81612842565b915050611e81565b610b8a828260405180602001604052806000815250611fdd565b60006001600160a01b0384163b15611fd257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f149033908990889088906004016125b1565b602060405180830381600087803b158015611f2e57600080fd5b505af1925050508015611f5e575060408051601f3d908101601f19168201909252611f5b9181019061241f565b60015b611fb8573d808015611f8c576040519150601f19603f3d011682016040523d82523d6000602084013e611f91565b606091505b508051611fb05760405162461bcd60e51b8152600401610a1290612645565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a38565b506001949350505050565b611fe78383612010565b611ff46000848484611ed0565b610b485760405162461bcd60e51b8152600401610a1290612645565b6001600160a01b0382166120665760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a12565b6000818152600260205260409020546001600160a01b0316156120cb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a12565b6001600160a01b03821660009081526003602052604081208054600192906120f4908490612779565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461215e90612807565b90600052602060002090601f01602090048101928261218057600085556121c6565b82601f1061219957805160ff19168380011785556121c6565b828001600101855582156121c6579182015b828111156121c65782518255916020019190600101906121ab565b506121d29291506121d6565b5090565b5b808211156121d257600081556001016121d7565b600067ffffffffffffffff80841115612206576122066128b3565b604051601f8501601f19908116603f0116810190828211818310171561222e5761222e6128b3565b8160405280935085815286868601111561224757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461227857600080fd5b919050565b8035801515811461227857600080fd5b60006020828403121561229f57600080fd5b6114de82612261565b600080604083850312156122bb57600080fd5b6122c483612261565b91506122d260208401612261565b90509250929050565b6000806000606084860312156122f057600080fd5b6122f984612261565b925061230760208501612261565b9150604084013590509250925092565b6000806000806080858703121561232d57600080fd5b61233685612261565b935061234460208601612261565b925060408501359150606085013567ffffffffffffffff81111561236757600080fd5b8501601f8101871361237857600080fd5b612387878235602084016121eb565b91505092959194509250565b600080604083850312156123a657600080fd5b6123af83612261565b91506122d26020840161227d565b600080604083850312156123d057600080fd5b6123d983612261565b946020939093013593505050565b6000602082840312156123f957600080fd5b6114de8261227d565b60006020828403121561241457600080fd5b81356114de816128c9565b60006020828403121561243157600080fd5b81516114de816128c9565b60006020828403121561244e57600080fd5b813567ffffffffffffffff81111561246557600080fd5b8201601f8101841361247657600080fd5b611a38848235602084016121eb565b60006020828403121561249757600080fd5b5035919050565b600080604083850312156124b157600080fd5b823591506122d260208401612261565b600081518084526124d98160208601602086016127db565b601f01601f19169290920160200192915050565b6000845160206125008285838a016127db565b8551918401916125138184848a016127db565b8554920191600090600181811c908083168061253057607f831692505b85831081141561254e57634e487b7160e01b85526022600452602485fd5b8080156125625760018114612573576125a0565b60ff198516885283880195506125a0565b60008b81526020902060005b858110156125985781548a82015290840190880161257f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125e4908301846124c1565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126265783518352928401929184019160010161260a565b50909695505050505050565b6020815260006114de60208301846124c1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561278c5761278c612871565b500190565b6000826127a0576127a0612887565b500490565b60008160001904831182151516156127bf576127bf612871565b500290565b6000828210156127d6576127d6612871565b500390565b60005b838110156127f65781810151838201526020016127de565b8381111561135f5750506000910152565b600181811c9082168061281b57607f821691505b6020821081141561283c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561285657612856612871565b5060010190565b60008261286c5761286c612887565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cf257600080fdfea264697066735822122034f60fab160fea9c38e429d8f19dff1e5956a3eb9ed2e72a03b6f390a393c9d864736f6c6343000807003368747470733a2f2f7777772e66726f7374656466616d2e636f6d2f66726f737465642f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80636352211e11610175578063b70bef0e116100dc578063d936547e11610095578063e268e4d31161006f578063e268e4d314610810578063e985e9c514610830578063efbd73f414610879578063f2fde38b1461089957600080fd5b8063d936547e146107a0578063de240790146107d0578063e0a80853146107f057600080fd5b8063b70bef0e146106f8578063b86245d114610717578063b88d4fde14610737578063c87b56dd14610757578063c9b298f114610777578063d5abeb011461078a57600080fd5b806395d89b411161012e57806395d89b4114610665578063a0712d681461067a578063a13a5a311461068d578063a22cb465146106a3578063a45ba8e7146106c3578063b071401b146106d857600080fd5b80636352211e146105bc57806370a08231146105dc578063715018a6146105fc5780637ec4a659146106115780638da5cb5b1461063157806394354fd01461064f57600080fd5b806342842e0e116102195780634fdd43cb116101d25780634fdd43cb1461051857806350af35da1461053857806351830227146105585780635503a0e8146105785780635c975abb1461058d57806362b99ad4146105a757600080fd5b806342842e0e14610448578063438b63001461046857806344a0d68a14610495578063453c2310146104b55780634a4c560d146104cb5780634d0df5fc146104eb57600080fd5b806316ba10e01161026b57806316ba10e01461039e57806316c38b3c146103be57806318160ddd146103de57806323b872dd146103f357806330cc7ae0146104135780633ccfd60b1461043357600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a578063095ea7b3146103425780630df21e541461036457806313faede614610388575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612402565b6108b9565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd61090b565b6040516102df9190612632565b34801561031657600080fd5b5061032a610325366004612485565b61099d565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061036261035d3660046123bd565b610a37565b005b34801561037057600080fd5b5061037a600d5481565b6040519081526020016102df565b34801561039457600080fd5b5061037a600b5481565b3480156103aa57600080fd5b506103626103b936600461243c565b610b4d565b3480156103ca57600080fd5b506103626103d93660046123e7565b610b8e565b3480156103ea57600080fd5b5061037a610bcb565b3480156103ff57600080fd5b5061036261040e3660046122db565b610bdb565b34801561041f57600080fd5b5061036261042e36600461228d565b610c0c565b34801561043f57600080fd5b50610362610c57565b34801561045457600080fd5b506103626104633660046122db565b610cf5565b34801561047457600080fd5b5061048861048336600461228d565b610d10565b6040516102df91906125ee565b3480156104a157600080fd5b506103626104b0366004612485565b610df1565b3480156104c157600080fd5b5061037a60105481565b3480156104d757600080fd5b506103626104e636600461228d565b610e20565b3480156104f757600080fd5b5061037a61050636600461228d565b60126020526000908152604090205481565b34801561052457600080fd5b5061036261053336600461243c565b610e6e565b34801561054457600080fd5b506103626105533660046123e7565b610eab565b34801561056457600080fd5b506011546102d39062010000900460ff1681565b34801561058457600080fd5b506102fd610eef565b34801561059957600080fd5b506011546102d39060ff1681565b3480156105b357600080fd5b506102fd610f7d565b3480156105c857600080fd5b5061032a6105d7366004612485565b610f8a565b3480156105e857600080fd5b5061037a6105f736600461228d565b611001565b34801561060857600080fd5b50610362611088565b34801561061d57600080fd5b5061036261062c36600461243c565b6110be565b34801561063d57600080fd5b506006546001600160a01b031661032a565b34801561065b57600080fd5b5061037a600e5481565b34801561067157600080fd5b506102fd6110fb565b610362610688366004612485565b61110a565b34801561069957600080fd5b5061037a600f5481565b3480156106af57600080fd5b506103626106be366004612393565b6112b7565b3480156106cf57600080fd5b506102fd6112c2565b3480156106e457600080fd5b506103626106f3366004612485565b6112cf565b34801561070457600080fd5b506011546102d390610100900460ff1681565b34801561072357600080fd5b50610362610732366004612485565b6112fe565b34801561074357600080fd5b50610362610752366004612317565b61132d565b34801561076357600080fd5b506102fd610772366004612485565b611365565b610362610785366004612485565b6114e5565b34801561079657600080fd5b5061037a600c5481565b3480156107ac57600080fd5b506102d36107bb36600461228d565b60136020526000908152604090205460ff1681565b3480156107dc57600080fd5b506103626107eb366004612485565b611707565b3480156107fc57600080fd5b5061036261080b3660046123e7565b611736565b34801561081c57600080fd5b5061036261082b366004612485565b61177c565b34801561083c57600080fd5b506102d361084b3660046122a8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561088557600080fd5b5061036261089436600461249e565b6117ab565b3480156108a557600080fd5b506103626108b436600461228d565b611843565b60006001600160e01b031982166380ac58cd60e01b14806108ea57506001600160e01b03198216635b5e139f60e01b145b8061090557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461091a90612807565b80601f016020809104026020016040519081016040528092919081815260200182805461094690612807565b80156109935780601f1061096857610100808354040283529160200191610993565b820191906000526020600020905b81548152906001019060200180831161097657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a1b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a4282610f8a565b9050806001600160a01b0316836001600160a01b03161415610ab05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a12565b336001600160a01b0382161480610acc5750610acc813361084b565b610b3e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a12565b610b4883836118db565b505050565b6006546001600160a01b03163314610b775760405162461bcd60e51b8152600401610a12906126c5565b8051610b8a906009906020840190612152565b5050565b6006546001600160a01b03163314610bb85760405162461bcd60e51b8152600401610a12906126c5565b6011805460ff1916911515919091179055565b6000610bd660075490565b905090565b610be53382611949565b610c015760405162461bcd60e51b8152600401610a1290612728565b610b48838383611a40565b6006546001600160a01b03163314610c365760405162461bcd60e51b8152600401610a12906126c5565b6001600160a01b03166000908152601360205260409020805460ff19169055565b6006546001600160a01b03163314610c815760405162461bcd60e51b8152600401610a12906126c5565b6000610c956006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cdf576040519150601f19603f3d011682016040523d82523d6000602084013e610ce4565b606091505b5050905080610cf257600080fd5b50565b610b488383836040518060200160405280600081525061132d565b60606000610d1d83611001565b905060008167ffffffffffffffff811115610d3a57610d3a6128b3565b604051908082528060200260200182016040528015610d63578160200160208202803683370190505b509050600160005b8381108015610d7c5750600c548211155b15610de7576000610d8c83610f8a565b9050866001600160a01b0316816001600160a01b03161415610dd45782848381518110610dbb57610dbb61289d565b602090810291909101015281610dd081612842565b9250505b82610dde81612842565b93505050610d6b565b5090949350505050565b6006546001600160a01b03163314610e1b5760405162461bcd60e51b8152600401610a12906126c5565b600b55565b6006546001600160a01b03163314610e4a5760405162461bcd60e51b8152600401610a12906126c5565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b6006546001600160a01b03163314610e985760405162461bcd60e51b8152600401610a12906126c5565b8051610b8a90600a906020840190612152565b6006546001600160a01b03163314610ed55760405162461bcd60e51b8152600401610a12906126c5565b601180549115156101000261ff0019909216919091179055565b60098054610efc90612807565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2890612807565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b505050505081565b60088054610efc90612807565b6000818152600260205260408120546001600160a01b0316806109055760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a12565b60006001600160a01b03821661106c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a12565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110b25760405162461bcd60e51b8152600401610a12906126c5565b6110bc6000611be0565b565b6006546001600160a01b031633146110e85760405162461bcd60e51b8152600401610a12906126c5565b8051610b8a906008906020840190612152565b60606001805461091a90612807565b8060008111801561111d5750600e548111155b6111395760405162461bcd60e51b8152600401610a1290612697565b600c548161114660075490565b6111509190612779565b111561116e5760405162461bcd60e51b8152600401610a12906126fa565b60115460ff16156111c15760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610a12565b81600b546111cf91906127a5565b3410156112145760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a12565b336000908152601260205260409020546010546112318285612779565b111561127f5760405162461bcd60e51b815260206004820152601f60248201527f45786365656473206d617820616c6c6f776564207065722077616c6c657421006044820152606401610a12565b3360009081526012602052604090205461129a908490612779565b33600081815260126020526040902091909155610b489084611c32565b610b8a338383611c6f565b600a8054610efc90612807565b6006546001600160a01b031633146112f95760405162461bcd60e51b8152600401610a12906126c5565b600e55565b6006546001600160a01b031633146113285760405162461bcd60e51b8152600401610a12906126c5565b600f55565b6113373383611949565b6113535760405162461bcd60e51b8152600401610a1290612728565b61135f84848484611d3e565b50505050565b6000818152600260205260409020546060906001600160a01b03166113e45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a12565b60115462010000900460ff1661148657600a805461140190612807565b80601f016020809104026020016040519081016040528092919081815260200182805461142d90612807565b801561147a5780601f1061144f5761010080835404028352916020019161147a565b820191906000526020600020905b81548152906001019060200180831161145d57829003601f168201915b50505050509050919050565b6000611490611d71565b905060008151116114b057604051806020016040528060008152506114de565b806114ba84611d80565b60096040516020016114ce939291906124ed565b6040516020818303038152906040525b9392505050565b806000811180156114f85750600d548111155b6115145760405162461bcd60e51b8152600401610a1290612697565b600c548161152160075490565b61152b9190612779565b11156115495760405162461bcd60e51b8152600401610a12906126fa565b601154610100900460ff161561159a5760405162461bcd60e51b81526020600482015260166024820152755468652050726573616c65206973207061757365642160501b6044820152606401610a12565b81600b546115a891906127a5565b3410156115ed5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610a12565b3360009081526013602052604090205460ff1615156001146116515760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742057686974656c69737465642100000000000000006044820152606401610a12565b33600090815260126020526040902054600f5461166e8285612779565b11156116cf5760405162461bcd60e51b815260206004820152602a60248201527f45786365656473206d617820616c6c6f77656420696e2050726573616c65207060448201526965722077616c6c65742160b01b6064820152608401610a12565b336000908152601260205260409020546116ea908490612779565b33600081815260126020526040902091909155610b489084611e7e565b6006546001600160a01b031633146117315760405162461bcd60e51b8152600401610a12906126c5565b600d55565b6006546001600160a01b031633146117605760405162461bcd60e51b8152600401610a12906126c5565b60118054911515620100000262ff000019909216919091179055565b6006546001600160a01b031633146117a65760405162461bcd60e51b8152600401610a12906126c5565b601055565b816000811180156117be5750600e548111155b6117da5760405162461bcd60e51b8152600401610a1290612697565b600c54816117e760075490565b6117f19190612779565b111561180f5760405162461bcd60e51b8152600401610a12906126fa565b6006546001600160a01b031633146118395760405162461bcd60e51b8152600401610a12906126c5565b610b488284611c32565b6006546001600160a01b0316331461186d5760405162461bcd60e51b8152600401610a12906126c5565b6001600160a01b0381166118d25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a12565b610cf281611be0565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061191082610f8a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119c25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a12565b60006119cd83610f8a565b9050806001600160a01b0316846001600160a01b03161480611a085750836001600160a01b03166119fd8461099d565b6001600160a01b0316145b80611a3857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a5382610f8a565b6001600160a01b031614611abb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a12565b6001600160a01b038216611b1d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a12565b611b286000826118db565b6001600160a01b0383166000908152600360205260408120805460019290611b519084906127c4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b7f908490612779565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610b4857611c4b600780546001019055565b611c5d83611c5860075490565b611eb6565b80611c6781612842565b915050611c35565b816001600160a01b0316836001600160a01b03161415611cd15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a12565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d49848484611a40565b611d5584848484611ed0565b61135f5760405162461bcd60e51b8152600401610a1290612645565b60606008805461091a90612807565b606081611da45750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dce5780611db881612842565b9150611dc79050600a83612791565b9150611da8565b60008167ffffffffffffffff811115611de957611de96128b3565b6040519080825280601f01601f191660200182016040528015611e13576020820181803683370190505b5090505b8415611a3857611e286001836127c4565b9150611e35600a8661285d565b611e40906030612779565b60f81b818381518110611e5557611e5561289d565b60200101906001600160f81b031916908160001a905350611e77600a86612791565b9450611e17565b60005b81811015610b4857611e97600780546001019055565b611ea483611c5860075490565b80611eae81612842565b915050611e81565b610b8a828260405180602001604052806000815250611fdd565b60006001600160a01b0384163b15611fd257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f149033908990889088906004016125b1565b602060405180830381600087803b158015611f2e57600080fd5b505af1925050508015611f5e575060408051601f3d908101601f19168201909252611f5b9181019061241f565b60015b611fb8573d808015611f8c576040519150601f19603f3d011682016040523d82523d6000602084013e611f91565b606091505b508051611fb05760405162461bcd60e51b8152600401610a1290612645565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a38565b506001949350505050565b611fe78383612010565b611ff46000848484611ed0565b610b485760405162461bcd60e51b8152600401610a1290612645565b6001600160a01b0382166120665760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a12565b6000818152600260205260409020546001600160a01b0316156120cb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a12565b6001600160a01b03821660009081526003602052604081208054600192906120f4908490612779565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461215e90612807565b90600052602060002090601f01602090048101928261218057600085556121c6565b82601f1061219957805160ff19168380011785556121c6565b828001600101855582156121c6579182015b828111156121c65782518255916020019190600101906121ab565b506121d29291506121d6565b5090565b5b808211156121d257600081556001016121d7565b600067ffffffffffffffff80841115612206576122066128b3565b604051601f8501601f19908116603f0116810190828211818310171561222e5761222e6128b3565b8160405280935085815286868601111561224757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461227857600080fd5b919050565b8035801515811461227857600080fd5b60006020828403121561229f57600080fd5b6114de82612261565b600080604083850312156122bb57600080fd5b6122c483612261565b91506122d260208401612261565b90509250929050565b6000806000606084860312156122f057600080fd5b6122f984612261565b925061230760208501612261565b9150604084013590509250925092565b6000806000806080858703121561232d57600080fd5b61233685612261565b935061234460208601612261565b925060408501359150606085013567ffffffffffffffff81111561236757600080fd5b8501601f8101871361237857600080fd5b612387878235602084016121eb565b91505092959194509250565b600080604083850312156123a657600080fd5b6123af83612261565b91506122d26020840161227d565b600080604083850312156123d057600080fd5b6123d983612261565b946020939093013593505050565b6000602082840312156123f957600080fd5b6114de8261227d565b60006020828403121561241457600080fd5b81356114de816128c9565b60006020828403121561243157600080fd5b81516114de816128c9565b60006020828403121561244e57600080fd5b813567ffffffffffffffff81111561246557600080fd5b8201601f8101841361247657600080fd5b611a38848235602084016121eb565b60006020828403121561249757600080fd5b5035919050565b600080604083850312156124b157600080fd5b823591506122d260208401612261565b600081518084526124d98160208601602086016127db565b601f01601f19169290920160200192915050565b6000845160206125008285838a016127db565b8551918401916125138184848a016127db565b8554920191600090600181811c908083168061253057607f831692505b85831081141561254e57634e487b7160e01b85526022600452602485fd5b8080156125625760018114612573576125a0565b60ff198516885283880195506125a0565b60008b81526020902060005b858110156125985781548a82015290840190880161257f565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125e4908301846124c1565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126265783518352928401929184019160010161260a565b50909695505050505050565b6020815260006114de60208301846124c1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561278c5761278c612871565b500190565b6000826127a0576127a0612887565b500490565b60008160001904831182151516156127bf576127bf612871565b500290565b6000828210156127d6576127d6612871565b500390565b60005b838110156127f65781810151838201526020016127de565b8381111561135f5750506000910152565b600181811c9082168061281b57607f821691505b6020821081141561283c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561285657612856612871565b5060010190565b60008261286c5761286c612887565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cf257600080fdfea264697066735822122034f60fab160fea9c38e429d8f19dff1e5956a3eb9ed2e72a03b6f390a393c9d864736f6c63430008070033

Deployed Bytecode Sourcemap

37570:5911:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25093:305;;;;;;;;;;-1:-1:-1;25093:305:0;;;;;:::i;:::-;;:::i;:::-;;;8066:14:1;;8059:22;8041:41;;8029:2;8014:18;25093:305:0;;;;;;;;26038:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27597:221::-;;;;;;;;;;-1:-1:-1;27597:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6727:32:1;;;6709:51;;6697:2;6682:18;27597:221:0;6563:203:1;27120:411:0;;;;;;;;;;-1:-1:-1;27120:411:0;;;;;:::i;:::-;;:::i;:::-;;37909:40;;;;;;;;;;;;;;;;;;;17718:25:1;;;17706:2;17691:18;37909:40:0;17572:177:1;37835:33:0;;;;;;;;;;;;;;;;42526:100;;;;;;;;;;-1:-1:-1;42526:100:0;;;;;:::i;:::-;;:::i;42632:77::-;;;;;;;;;;-1:-1:-1;42632:77:0;;;;;:::i;:::-;;:::i;38907:89::-;;;;;;;;;;;;;:::i;28347:339::-;;;;;;;;;;-1:-1:-1;28347:339:0;;;;;:::i;:::-;;:::i;42176:100::-;;;;;;;;;;-1:-1:-1;42176:100:0;;;;;:::i;:::-;;:::i;42804:137::-;;;;;;;;;;;;;:::i;28757:185::-;;;;;;;;;;-1:-1:-1;28757:185:0;;;;;:::i;:::-;;:::i;40261:635::-;;;;;;;;;;-1:-1:-1;40261:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41489:74::-;;;;;;;;;;-1:-1:-1;41489:74:0;;;;;:::i;:::-;;:::i;38035:31::-;;;;;;;;;;;;;;;;42077:93;;;;;;;;;;-1:-1:-1;42077:93:0;;;;;:::i;:::-;;:::i;38173:49::-;;;;;;;;;;-1:-1:-1;38173:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;42282:132;;;;;;;;;;-1:-1:-1;42282:132:0;;;;;:::i;:::-;;:::i;42715:83::-;;;;;;;;;;-1:-1:-1;42715:83:0;;;;;:::i;:::-;;:::i;38136:28::-;;;;;;;;;;-1:-1:-1;38136:28:0;;;;;;;;;;;37757:33;;;;;;;;;;;;;:::i;38073:25::-;;;;;;;;;;-1:-1:-1;38073:25:0;;;;;;;;37724:28;;;;;;;;;;;;;:::i;25732:239::-;;;;;;;;;;-1:-1:-1;25732:239:0;;;;;:::i;:::-;;:::i;25462:208::-;;;;;;;;;;-1:-1:-1;25462:208:0;;;;;:::i;:::-;;:::i;6081:103::-;;;;;;;;;;;;;:::i;42420:100::-;;;;;;;;;;-1:-1:-1;42420:100:0;;;;;:::i;:::-;;:::i;5430:87::-;;;;;;;;;;-1:-1:-1;5503:6:0;;-1:-1:-1;;;;;5503:6:0;5430:87;;37954:37;;;;;;;;;;;;;;;;26207:104;;;;;;;;;;;;;:::i;39002:478::-;;;;;;:::i;:::-;;:::i;37996:34::-;;;;;;;;;;;;;;;;27890:155;;;;;;;;;;-1:-1:-1;27890:155:0;;;;;:::i;:::-;;:::i;37795:31::-;;;;;;;;;;;;;:::i;41569:130::-;;;;;;;;;;-1:-1:-1;41569:130:0;;;;;:::i;:::-;;:::i;38103:28::-;;;;;;;;;;-1:-1:-1;38103:28:0;;;;;;;;;;;41959:112;;;;;;;;;;-1:-1:-1;41959:112:0;;;;;:::i;:::-;;:::i;29013:328::-;;;;;;;;;;-1:-1:-1;29013:328:0;;;;;:::i;:::-;;:::i;40902:494::-;;;;;;;;;;-1:-1:-1;40902:494:0;;;;;:::i;:::-;;:::i;39486:606::-;;;;;;:::i;:::-;;:::i;37873:31::-;;;;;;;;;;;;;;;;38227:43;;;;;;;;;;-1:-1:-1;38227:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;41705:142;;;;;;;;;;-1:-1:-1;41705:142:0;;;;;:::i;:::-;;:::i;41402:81::-;;;;;;;;;;-1:-1:-1;41402:81:0;;;;;:::i;:::-;;:::i;41853:100::-;;;;;;;;;;-1:-1:-1;41853:100:0;;;;;:::i;:::-;;:::i;28116:164::-;;;;;;;;;;-1:-1:-1;28116:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28237:25:0;;;28213:4;28237:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28116:164;40100:155;;;;;;;;;;-1:-1:-1;40100:155:0;;;;;:::i;:::-;;:::i;6339:201::-;;;;;;;;;;-1:-1:-1;6339:201:0;;;;;:::i;:::-;;:::i;25093:305::-;25195:4;-1:-1:-1;;;;;;25232:40:0;;-1:-1:-1;;;25232:40:0;;:105;;-1:-1:-1;;;;;;;25289:48:0;;-1:-1:-1;;;25289:48:0;25232:105;:158;;;-1:-1:-1;;;;;;;;;;17971:40:0;;;25354:36;25212:178;25093:305;-1:-1:-1;;25093:305:0:o;26038:100::-;26092:13;26125:5;26118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26038:100;:::o;27597:221::-;27673:7;30940:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30940:16:0;27693:73;;;;-1:-1:-1;;;27693:73:0;;13601:2:1;27693:73:0;;;13583:21:1;13640:2;13620:18;;;13613:30;13679:34;13659:18;;;13652:62;-1:-1:-1;;;13730:18:1;;;13723:42;13782:19;;27693:73:0;;;;;;;;;-1:-1:-1;27786:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27786:24:0;;27597:221::o;27120:411::-;27201:13;27217:23;27232:7;27217:14;:23::i;:::-;27201:39;;27265:5;-1:-1:-1;;;;;27259:11:0;:2;-1:-1:-1;;;;;27259:11:0;;;27251:57;;;;-1:-1:-1;;;27251:57:0;;15906:2:1;27251:57:0;;;15888:21:1;15945:2;15925:18;;;15918:30;15984:34;15964:18;;;15957:62;-1:-1:-1;;;16035:18:1;;;16028:31;16076:19;;27251:57:0;15704:397:1;27251:57:0;4234:10;-1:-1:-1;;;;;27343:21:0;;;;:62;;-1:-1:-1;27368:37:0;27385:5;4234:10;28116:164;:::i;27368:37::-;27321:168;;;;-1:-1:-1;;;27321:168:0;;11994:2:1;27321:168:0;;;11976:21:1;12033:2;12013:18;;;12006:30;12072:34;12052:18;;;12045:62;12143:26;12123:18;;;12116:54;12187:19;;27321:168:0;11792:420:1;27321:168:0;27502:21;27511:2;27515:7;27502:8;:21::i;:::-;27190:341;27120:411;;:::o;42526:100::-;5503:6;;-1:-1:-1;;;;;5503:6:0;4234:10;5650:23;5642:68;;;;-1:-1:-1;;;5642:68:0;;;;;;;:::i;:::-;42598:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42526:100:::0;:::o;42632:77::-;5503:6;;-1:-1:-1;;;;;5503:6:0;4234:10;5650:23;5642:68;;;;-1:-1:-1;;;5642:68:0;;;;;;;:::i;:::-;42688:6:::1;:15:::0;;-1:-1:-1;;42688:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42632:77::o;38907:89::-;38951:7;38974:16;:6;850:14;;758:114;38974:16;38967:23;;38907:89;:::o;28347:339::-;28542:41;4234:10;28575:7;28542:18;:41::i;:::-;28534:103;;;;-1:-1:-1;;;28534:103:0;;;;;;;:::i;:::-;28650:28;28660:4;28666:2;28670:7;28650:9;:28::i;42176:100::-;5503:6;;-1:-1:-1;;;;;5503:6:0;4234:10;5650:23;5642:68;;;;-1:-1:-1;;;5642:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42244:18:0::1;42265:5;42244:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;42244:26:0::1;::::0;;42176:100::o;42804:137::-;5503:6;;-1:-1:-1;;;;;5503:6:0;4234:10;5650:23;5642:68;;;;-1:-1:-1;;;5642:68:0;;;;;;;:::i;:::-;42849:7:::1;42870;5503:6:::0;;-1:-1:-1;;;;;5503:6:0;;5430:87;42870:7:::1;-1:-1:-1::0;;;;;42862:21:0::1;42891;42862:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42848:69;;;42932:2;42924:11;;;::::0;::::1;;42841:100;42804:137::o:0;28757:185::-;28895:39;28912:4;28918:2;28922:7;28895:39;;;;;;;;;;;;:16;:39::i;40261:635::-;40336:16;40364:23;40390:17;40400:6;40390:9;:17::i;:::-;40364:43;;40414:30;40461:15;40447:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40447:30:0;-1:-1:-1;40414:63:0;-1:-1:-1;40509:1:0;40484:22;40553:309;40578:15;40560;:33;:64;;;;;40615:9;;40597:14;:27;;40560:64;40553:309;;;40635:25;40663:23;40671:14;40663:7;:23::i;:::-;40635:51;;40722:6;-1:-1:-1;;;;;40701:27:0;:17;-1:-1:-1;;;;;40701:27:0;;40697:131;;;40774:14;40741:13;40755:15;40741:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;40801:17;;;;:::i;:::-;;;;40697:131;40838:16;;;;:::i;:::-;;;;40626:236;40553:309;;;-1:-1:-1;40877:13:0;;40261:635;-1:-1:-1;;;;40261:635:0:o;41489:74::-;5503:6;;-1:-1:-1;;;;;5503:6:0;4234:10;5650:23;5642:68;;;;-1:-1:-1;;;5642:68:0;;;;;;;:::i;:::-;41545:4:::1;:12:::0;41489:74::o;42077:93::-;5503:6;;-1:-1:-1;;;;;5503:6:0;4234:10;5650:23;5642:68;;;;-1:-1:-1;;;5642:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42139:18:0::1;;::::0;;;:11:::1;:18;::::0;;;;:25;;-1:-1:-1;;42139:25:0::1;42160:4;42139:25;::::0;;42077:93::o;42282:132::-;5503:6;;-1:-1:-1;;;;;5503:6:0;4234:10;5650:23;5642:68;;;;-1:-1:-1;;;5642:68:0;;;;;;;:::i;:::-;42370:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;42715:83::-:0;5503:6;;-1:-1:-1;;;;;5503:6:0;4234:10;5650:23;5642:68;;;;-1:-1:-1;;;5642:68:0;;;;;;;:::i;:::-;42774:9:::1;:18:::0;;;::::1;;;;-1:-1:-1::0;;42774:18:0;;::::1;::::0;;;::::1;::::0;;42715:83::o;37757:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37724:28::-;;;;;;;:::i;25732:239::-;25804:7;25840:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25840:16:0;25875:19;25867:73;;;;-1:-1:-1;;;25867:73:0;;12830:2:1;25867:73:0;;;12812:21:1;12869:2;12849:18;;;12842:30;12908:34;12888:18;;;12881:62;-1:-1:-1;;;12959:18:1;;;12952:39;13008:19;;25867:73:0;12628:405:1;25462:208:0;25534:7;-1:-1:-1;;;;;25562:19:0;;25554:74;;;;-1:-1:-1;;;25554:74:0;;12419:2:1;25554:74:0;;;12401:21:1;12458:2;12438:18;;;12431:30;12497:34;12477:18;;;12470:62;-1:-1:-1;;;12548:18:1;;;12541:40;12598:19;;25554:74:0;12217:406:1;25554:74:0;-1:-1:-1;;;;;;25646:16:0;;;;;:9;:16;;;;;;;25462:208::o;6081:103::-;5503:6;;-1:-1:-1;;;;;5503:6:0;4234:10;5650:23;5642:68;;;;-1:-1:-1;;;5642:68:0;;;;;;;:::i;:::-;6146:30:::1;6173:1;6146:18;:30::i;:::-;6081:103::o:0;42420:100::-;5503:6;;-1:-1:-1;;;;;5503:6:0;4234:10;5650:23;5642:68;;;;-1:-1:-1;;;5642:68:0;;;;;;;:::i;:::-;42492:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;26207:104::-:0;26263:13;26296:7;26289:14;;;;;:::i;39002:478::-;39067:11;38483:1;38469:11;:15;:52;;;;;38503:18;;38488:11;:33;;38469:52;38461:85;;;;-1:-1:-1;;;38461:85:0;;;;;;;:::i;:::-;38595:9;;38580:11;38561:16;:6;850:14;;758:114;38561:16;:30;;;;:::i;:::-;:43;;38553:76;;;;-1:-1:-1;;;38553:76:0;;;;;;;:::i;:::-;39096:6:::1;::::0;::::1;;39095:7;39087:43;;;::::0;-1:-1:-1;;;39087:43:0;;14375:2:1;39087:43:0::1;::::0;::::1;14357:21:1::0;14414:2;14394:18;;;14387:30;14453:25;14433:18;;;14426:53;14496:18;;39087:43:0::1;14173:347:1::0;39087:43:0::1;39165:11;39158:4;;:18;;;;:::i;:::-;39145:9;:31;;39137:63;;;::::0;-1:-1:-1;;;39137:63:0;;17426:2:1;39137:63:0::1;::::0;::::1;17408:21:1::0;17465:2;17445:18;;;17438:30;-1:-1:-1;;;17484:18:1;;;17477:49;17543:18;;39137:63:0::1;17224:343:1::0;39137:63:0::1;4234:10:::0;39209:19:::1;39231:28:::0;;;:14:::1;:28;::::0;;;;;39303:12:::1;::::0;39274:25:::1;39231:28:::0;39274:11;:25:::1;:::i;:::-;:41;;39266:85;;;::::0;-1:-1:-1;;;39266:85:0;;11223:2:1;39266:85:0::1;::::0;::::1;11205:21:1::0;11262:2;11242:18;;;11235:30;11301:33;11281:18;;;11274:61;11352:18;;39266:85:0::1;11021:355:1::0;39266:85:0::1;4234:10:::0;39389:28:::1;::::0;;;:14:::1;:28;::::0;;;;;:42:::1;::::0;39420:11;;39389:42:::1;:::i;:::-;4234:10:::0;39358:28:::1;::::0;;;:14:::1;:28;::::0;;;;:73;;;;39440:34:::1;::::0;39462:11;39440:9:::1;:34::i;27890:155::-:0;27985:52;4234:10;28018:8;28028;27985:18;:52::i;37795:31::-;;;;;;;:::i;41569:130::-;5503:6;;-1:-1:-1;;;;;5503:6:0;4234:10;5650:23;5642:68;;;;-1:-1:-1;;;5642:68:0;;;;;;;:::i;:::-;41653:18:::1;:40:::0;41569:130::o;41959:112::-;5503:6;;-1:-1:-1;;;;;5503:6:0;4234:10;5650:23;5642:68;;;;-1:-1:-1;;;5642:68:0;;;;;;;:::i;:::-;42035:15:::1;:30:::0;41959:112::o;29013:328::-;29188:41;4234:10;29221:7;29188:18;:41::i;:::-;29180:103;;;;-1:-1:-1;;;29180:103:0;;;;;;;:::i;:::-;29294:39;29308:4;29314:2;29318:7;29327:5;29294:13;:39::i;:::-;29013:328;;;;:::o;40902:494::-;30916:4;30940:16;;;:7;:16;;;;;;41001:13;;-1:-1:-1;;;;;30940:16:0;41026:98;;;;-1:-1:-1;;;41026:98:0;;15137:2:1;41026:98:0;;;15119:21:1;15176:2;15156:18;;;15149:30;15215:34;15195:18;;;15188:62;-1:-1:-1;;;15266:18:1;;;15259:45;15321:19;;41026:98:0;14935:411:1;41026:98:0;41137:8;;;;;;;41133:64;;41172:17;41165:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40902:494;;;:::o;41133:64::-;41205:28;41236:10;:8;:10::i;:::-;41205:41;;41291:1;41266:14;41260:28;:32;:130;;;;;;;;;;;;;;;;;41328:14;41344:19;:8;:17;:19::i;:::-;41365:9;41311:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41260:130;41253:137;40902:494;-1:-1:-1;;;40902:494:0:o;39486:606::-;39564:14;38732:1;38715:14;:18;:61;;;;;38755:21;;38737:14;:39;;38715:61;38707:94;;;;-1:-1:-1;;;38707:94:0;;;;;;;:::i;:::-;38853:9;;38835:14;38816:16;:6;850:14;;758:114;38816:16;:33;;;;:::i;:::-;:46;;38808:79;;;;-1:-1:-1;;;38808:79:0;;;;;;;:::i;:::-;39596:9:::1;::::0;::::1;::::0;::::1;;;39595:10;39587:45;;;::::0;-1:-1:-1;;;39587:45:0;;17075:2:1;39587:45:0::1;::::0;::::1;17057:21:1::0;17114:2;17094:18;;;17087:30;-1:-1:-1;;;17133:18:1;;;17126:52;17195:18;;39587:45:0::1;16873:346:1::0;39587:45:0::1;39667:14;39660:4;;:21;;;;:::i;:::-;39647:9;:34;;39639:66;;;::::0;-1:-1:-1;;;39639:66:0;;17426:2:1;39639:66:0::1;::::0;::::1;17408:21:1::0;17465:2;17445:18;;;17438:30;-1:-1:-1;;;17484:18:1;;;17477:49;17543:18;;39639:66:0::1;17224:343:1::0;39639:66:0::1;39732:10;39720:23;::::0;;;:11:::1;:23;::::0;;;;;::::1;;:31;;:23:::0;:31:::1;39712:68;;;::::0;-1:-1:-1;;;39712:68:0;;15553:2:1;39712:68:0::1;::::0;::::1;15535:21:1::0;15592:2;15572:18;;;15565:30;15631:26;15611:18;;;15604:54;15675:18;;39712:68:0::1;15351:348:1::0;39712:68:0::1;4234:10:::0;39789:22:::1;39814:28:::0;;;:14:::1;:28;::::0;;;;;39892:15:::1;::::0;39857:31:::1;39814:28:::0;39857:14;:31:::1;:::i;:::-;:50;;39849:105;;;::::0;-1:-1:-1;;;39849:105:0;;11583:2:1;39849:105:0::1;::::0;::::1;11565:21:1::0;11622:2;11602:18;;;11595:30;11661:34;11641:18;;;11634:62;-1:-1:-1;;;11712:18:1;;;11705:40;11762:19;;39849:105:0::1;11381:406:1::0;39849:105:0::1;4234:10:::0;39992:28:::1;::::0;;;:14:::1;:28;::::0;;;;;:45:::1;::::0;40023:14;;39992:45:::1;:::i;:::-;4234:10:::0;39961:28:::1;::::0;;;:14:::1;:28;::::0;;;;:76;;;;40046:40:::1;::::0;40071:14;40046:12:::1;:40::i;41705:142::-:0;5503:6;;-1:-1:-1;;;;;5503:6:0;4234:10;5650:23;5642:68;;;;-1:-1:-1;;;5642:68:0;;;;;;;:::i;:::-;41795:21:::1;:46:::0;41705:142::o;41402:81::-;5503:6;;-1:-1:-1;;;;;5503:6:0;4234:10;5650:23;5642:68;;;;-1:-1:-1;;;5642:68:0;;;;;;;:::i;:::-;41460:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;41460:17:0;;::::1;::::0;;;::::1;::::0;;41402:81::o;41853:100::-;5503:6;;-1:-1:-1;;;;;5503:6:0;4234:10;5650:23;5642:68;;;;-1:-1:-1;;;5642:68:0;;;;;;;:::i;:::-;41923:12:::1;:24:::0;41853:100::o;40100:155::-;40186:11;38483:1;38469:11;:15;:52;;;;;38503:18;;38488:11;:33;;38469:52;38461:85;;;;-1:-1:-1;;;38461:85:0;;;;;;;:::i;:::-;38595:9;;38580:11;38561:16;:6;850:14;;758:114;38561:16;:30;;;;:::i;:::-;:43;;38553:76;;;;-1:-1:-1;;;38553:76:0;;;;;;;:::i;:::-;5503:6;;-1:-1:-1;;;;;5503:6:0;4234:10;5650:23:::1;5642:68;;;;-1:-1:-1::0;;;5642:68:0::1;;;;;;;:::i;:::-;40216:33:::2;40226:9;40237:11;40216:9;:33::i;6339:201::-:0;5503:6;;-1:-1:-1;;;;;5503:6:0;4234:10;5650:23;5642:68;;;;-1:-1:-1;;;5642:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6428:22:0;::::1;6420:73;;;::::0;-1:-1:-1;;;6420:73:0;;8938:2:1;6420:73:0::1;::::0;::::1;8920:21:1::0;8977:2;8957:18;;;8950:30;9016:34;8996:18;;;8989:62;-1:-1:-1;;;9067:18:1;;;9060:36;9113:19;;6420:73:0::1;8736:402:1::0;6420:73:0::1;6504:28;6523:8;6504:18;:28::i;34833:174::-:0;34908:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34908:29:0;-1:-1:-1;;;;;34908:29:0;;;;;;;;:24;;34962:23;34908:24;34962:14;:23::i;:::-;-1:-1:-1;;;;;34953:46:0;;;;;;;;;;;34833:174;;:::o;31145:348::-;31238:4;30940:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30940:16:0;31255:73;;;;-1:-1:-1;;;31255:73:0;;10810:2:1;31255:73:0;;;10792:21:1;10849:2;10829:18;;;10822:30;10888:34;10868:18;;;10861:62;-1:-1:-1;;;10939:18:1;;;10932:42;10991:19;;31255:73:0;10608:408:1;31255:73:0;31339:13;31355:23;31370:7;31355:14;:23::i;:::-;31339:39;;31408:5;-1:-1:-1;;;;;31397:16:0;:7;-1:-1:-1;;;;;31397:16:0;;:51;;;;31441:7;-1:-1:-1;;;;;31417:31:0;:20;31429:7;31417:11;:20::i;:::-;-1:-1:-1;;;;;31417:31:0;;31397:51;:87;;;-1:-1:-1;;;;;;28237:25:0;;;28213:4;28237:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31452:32;31389:96;31145:348;-1:-1:-1;;;;31145:348:0:o;34137:578::-;34296:4;-1:-1:-1;;;;;34269:31:0;:23;34284:7;34269:14;:23::i;:::-;-1:-1:-1;;;;;34269:31:0;;34261:85;;;;-1:-1:-1;;;34261:85:0;;14727:2:1;34261:85:0;;;14709:21:1;14766:2;14746:18;;;14739:30;14805:34;14785:18;;;14778:62;-1:-1:-1;;;14856:18:1;;;14849:39;14905:19;;34261:85:0;14525:405:1;34261:85:0;-1:-1:-1;;;;;34365:16:0;;34357:65;;;;-1:-1:-1;;;34357:65:0;;10051:2:1;34357:65:0;;;10033:21:1;10090:2;10070:18;;;10063:30;10129:34;10109:18;;;10102:62;-1:-1:-1;;;10180:18:1;;;10173:34;10224:19;;34357:65:0;9849:400:1;34357:65:0;34539:29;34556:1;34560:7;34539:8;:29::i;:::-;-1:-1:-1;;;;;34581:15:0;;;;;;:9;:15;;;;;:20;;34600:1;;34581:15;:20;;34600:1;;34581:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34612:13:0;;;;;;:9;:13;;;;;:18;;34629:1;;34612:13;:18;;34629:1;;34612:18;:::i;:::-;;;;-1:-1:-1;;34641:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34641:21:0;-1:-1:-1;;;;;34641:21:0;;;;;;;;;34680:27;;34641:16;;34680:27;;;;;;;34137:578;;;:::o;6700:191::-;6793:6;;;-1:-1:-1;;;;;6810:17:0;;;-1:-1:-1;;;;;;6810:17:0;;;;;;;6843:40;;6793:6;;;6810:17;6793:6;;6843:40;;6774:16;;6843:40;6763:128;6700:191;:::o;42947:204::-;43027:9;43022:124;43046:11;43042:1;:15;43022:124;;;43073:18;:6;969:19;;987:1;969:19;;;880:127;43073:18;43100:38;43110:9;43121:16;:6;850:14;;758:114;43121:16;43100:9;:38::i;:::-;43059:3;;;;:::i;:::-;;;;43022:124;;35149:315;35304:8;-1:-1:-1;;;;;35295:17:0;:5;-1:-1:-1;;;;;35295:17:0;;;35287:55;;;;-1:-1:-1;;;35287:55:0;;10456:2:1;35287:55:0;;;10438:21:1;10495:2;10475:18;;;10468:30;10534:27;10514:18;;;10507:55;10579:18;;35287:55:0;10254:349:1;35287:55:0;-1:-1:-1;;;;;35353:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35353:46:0;;;;;;;;;;35415:41;;8041::1;;;35415::0;;8014:18:1;35415:41:0;;;;;;;35149:315;;;:::o;30223:::-;30380:28;30390:4;30396:2;30400:7;30380:9;:28::i;:::-;30427:48;30450:4;30456:2;30460:7;30469:5;30427:22;:48::i;:::-;30419:111;;;;-1:-1:-1;;;30419:111:0;;;;;;;:::i;43374:104::-;43434:13;43463:9;43456:16;;;;;:::i;1716:723::-;1772:13;1993:10;1989:53;;-1:-1:-1;;2020:10:0;;;;;;;;;;;;-1:-1:-1;;;2020:10:0;;;;;1716:723::o;1989:53::-;2067:5;2052:12;2108:78;2115:9;;2108:78;;2141:8;;;;:::i;:::-;;-1:-1:-1;2164:10:0;;-1:-1:-1;2172:2:0;2164:10;;:::i;:::-;;;2108:78;;;2196:19;2228:6;2218:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2218:17:0;;2196:39;;2246:154;2253:10;;2246:154;;2280:11;2290:1;2280:11;;:::i;:::-;;-1:-1:-1;2349:10:0;2357:2;2349:5;:10;:::i;:::-;2336:24;;:2;:24;:::i;:::-;2323:39;;2306:6;2313;2306:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2306:56:0;;;;;;;;-1:-1:-1;2377:11:0;2386:2;2377:11;;:::i;:::-;;;2246:154;;43155:213;43241:9;43236:127;43260:14;43256:1;:18;43236:127;;;43290:18;:6;969:19;;987:1;969:19;;;880:127;43290:18;43317:38;43327:9;43338:16;:6;850:14;;758:114;43317:38;43276:3;;;;:::i;:::-;;;;43236:127;;31835:110;31911:26;31921:2;31925:7;31911:26;;;;;;;;;;;;:9;:26::i;36029:799::-;36184:4;-1:-1:-1;;;;;36205:13:0;;8041:20;8089:8;36201:620;;36241:72;;-1:-1:-1;;;36241:72:0;;-1:-1:-1;;;;;36241:36:0;;;;;:72;;4234:10;;36292:4;;36298:7;;36307:5;;36241:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36241:72:0;;;;;;;;-1:-1:-1;;36241:72:0;;;;;;;;;;;;:::i;:::-;;;36237:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36483:13:0;;36479:272;;36526:60;;-1:-1:-1;;;36526:60:0;;;;;;;:::i;36479:272::-;36701:6;36695:13;36686:6;36682:2;36678:15;36671:38;36237:529;-1:-1:-1;;;;;;36364:51:0;-1:-1:-1;;;36364:51:0;;-1:-1:-1;36357:58:0;;36201:620;-1:-1:-1;36805:4:0;36029:799;;;;;;:::o;32172:321::-;32302:18;32308:2;32312:7;32302:5;:18::i;:::-;32353:54;32384:1;32388:2;32392:7;32401:5;32353:22;:54::i;:::-;32331:154;;;;-1:-1:-1;;;32331:154:0;;;;;;;:::i;32829:382::-;-1:-1:-1;;;;;32909:16:0;;32901:61;;;;-1:-1:-1;;;32901:61:0;;13240:2:1;32901:61:0;;;13222:21:1;;;13259:18;;;13252:30;13318:34;13298:18;;;13291:62;13370:18;;32901:61:0;13038:356:1;32901:61:0;30916:4;30940:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30940:16:0;:30;32973:58;;;;-1:-1:-1;;;32973:58:0;;9345:2:1;32973:58:0;;;9327:21:1;9384:2;9364:18;;;9357:30;9423;9403:18;;;9396:58;9471:18;;32973:58:0;9143:352:1;32973:58:0;-1:-1:-1;;;;;33102:13:0;;;;;;:9;:13;;;;;:18;;33119:1;;33102:13;:18;;33119:1;;33102:18;:::i;:::-;;;;-1:-1:-1;;33131:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33131:21:0;-1:-1:-1;;;;;33131:21:0;;;;;;;;33170:33;;33131:16;;;33170:33;;33131:16;;33170:33;32829:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:254::-;4368:6;4376;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4481:9;4468:23;4458:33;;4510:38;4544:2;4533:9;4529:18;4510:38;:::i;4559:257::-;4600:3;4638:5;4632:12;4665:6;4660:3;4653:19;4681:63;4737:6;4730:4;4725:3;4721:14;4714:4;4707:5;4703:16;4681:63;:::i;:::-;4798:2;4777:15;-1:-1:-1;;4773:29:1;4764:39;;;;4805:4;4760:50;;4559:257;-1:-1:-1;;4559:257:1:o;4821:1527::-;5045:3;5083:6;5077:13;5109:4;5122:51;5166:6;5161:3;5156:2;5148:6;5144:15;5122:51;:::i;:::-;5236:13;;5195:16;;;;5258:55;5236:13;5195:16;5280:15;;;5258:55;:::i;:::-;5402:13;;5335:20;;;5375:1;;5462;5484:18;;;;5537;;;;5564:93;;5642:4;5632:8;5628:19;5616:31;;5564:93;5705:2;5695:8;5692:16;5672:18;5669:40;5666:167;;;-1:-1:-1;;;5732:33:1;;5788:4;5785:1;5778:15;5818:4;5739:3;5806:17;5666:167;5849:18;5876:110;;;;6000:1;5995:328;;;;5842:481;;5876:110;-1:-1:-1;;5911:24:1;;5897:39;;5956:20;;;;-1:-1:-1;5876:110:1;;5995:328;17827:1;17820:14;;;17864:4;17851:18;;6090:1;6104:169;6118:8;6115:1;6112:15;6104:169;;;6200:14;;6185:13;;;6178:37;6243:16;;;;6135:10;;6104:169;;;6108:3;;6304:8;6297:5;6293:20;6286:27;;5842:481;-1:-1:-1;6339:3:1;;4821:1527;-1:-1:-1;;;;;;;;;;;4821:1527:1:o;6771:488::-;-1:-1:-1;;;;;7040:15:1;;;7022:34;;7092:15;;7087:2;7072:18;;7065:43;7139:2;7124:18;;7117:34;;;7187:3;7182:2;7167:18;;7160:31;;;6965:4;;7208:45;;7233:19;;7225:6;7208:45;:::i;:::-;7200:53;6771:488;-1:-1:-1;;;;;;6771:488:1:o;7264:632::-;7435:2;7487:21;;;7557:13;;7460:18;;;7579:22;;;7406:4;;7435:2;7658:15;;;;7632:2;7617:18;;;7406:4;7701:169;7715:6;7712:1;7709:13;7701:169;;;7776:13;;7764:26;;7845:15;;;;7810:12;;;;7737:1;7730:9;7701:169;;;-1:-1:-1;7887:3:1;;7264:632;-1:-1:-1;;;;;;7264:632:1:o;8093:219::-;8242:2;8231:9;8224:21;8205:4;8262:44;8302:2;8291:9;8287:18;8279:6;8262:44;:::i;8317:414::-;8519:2;8501:21;;;8558:2;8538:18;;;8531:30;8597:34;8592:2;8577:18;;8570:62;-1:-1:-1;;;8663:2:1;8648:18;;8641:48;8721:3;8706:19;;8317:414::o;9500:344::-;9702:2;9684:21;;;9741:2;9721:18;;;9714:30;-1:-1:-1;;;9775:2:1;9760:18;;9753:50;9835:2;9820:18;;9500:344::o;13812:356::-;14014:2;13996:21;;;14033:18;;;14026:30;14092:34;14087:2;14072:18;;14065:62;14159:2;14144:18;;13812:356::o;16106:344::-;16308:2;16290:21;;;16347:2;16327:18;;;16320:30;-1:-1:-1;;;16381:2:1;16366:18;;16359:50;16441:2;16426:18;;16106:344::o;16455:413::-;16657:2;16639:21;;;16696:2;16676:18;;;16669:30;16735:34;16730:2;16715:18;;16708:62;-1:-1:-1;;;16801:2:1;16786:18;;16779:47;16858:3;16843:19;;16455:413::o;17880:128::-;17920:3;17951:1;17947:6;17944:1;17941:13;17938:39;;;17957:18;;:::i;:::-;-1:-1:-1;17993:9:1;;17880:128::o;18013:120::-;18053:1;18079;18069:35;;18084:18;;:::i;:::-;-1:-1:-1;18118:9:1;;18013:120::o;18138:168::-;18178:7;18244:1;18240;18236:6;18232:14;18229:1;18226:21;18221:1;18214:9;18207:17;18203:45;18200:71;;;18251:18;;:::i;:::-;-1:-1:-1;18291:9:1;;18138:168::o;18311:125::-;18351:4;18379:1;18376;18373:8;18370:34;;;18384:18;;:::i;:::-;-1:-1:-1;18421:9:1;;18311:125::o;18441:258::-;18513:1;18523:113;18537:6;18534:1;18531:13;18523:113;;;18613:11;;;18607:18;18594:11;;;18587:39;18559:2;18552:10;18523:113;;;18654:6;18651:1;18648:13;18645:48;;;-1:-1:-1;;18689:1:1;18671:16;;18664:27;18441:258::o;18704:380::-;18783:1;18779:12;;;;18826;;;18847:61;;18901:4;18893:6;18889:17;18879:27;;18847:61;18954:2;18946:6;18943:14;18923:18;18920:38;18917:161;;;19000:10;18995:3;18991:20;18988:1;18981:31;19035:4;19032:1;19025:15;19063:4;19060:1;19053:15;18917:161;;18704:380;;;:::o;19089:135::-;19128:3;-1:-1:-1;;19149:17:1;;19146:43;;;19169:18;;:::i;:::-;-1:-1:-1;19216:1:1;19205:13;;19089:135::o;19229:112::-;19261:1;19287;19277:35;;19292:18;;:::i;:::-;-1:-1:-1;19326:9:1;;19229:112::o;19346:127::-;19407:10;19402:3;19398:20;19395:1;19388:31;19438:4;19435:1;19428:15;19462:4;19459:1;19452:15;19478:127;19539:10;19534:3;19530:20;19527:1;19520:31;19570:4;19567:1;19560:15;19594:4;19591:1;19584:15;19610:127;19671:10;19666:3;19662:20;19659:1;19652:31;19702:4;19699:1;19692:15;19726:4;19723:1;19716:15;19742:127;19803:10;19798:3;19794:20;19791:1;19784:31;19834:4;19831:1;19824:15;19858:4;19855:1;19848:15;19874:131;-1:-1:-1;;;;;;19948:32:1;;19938:43;;19928:71;;19995:1;19992;19985:12

Swarm Source

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