ETH Price: $3,498.78 (-0.13%)
Gas: 2 Gwei

Token

Kittydinger (Kitties)
 

Overview

Max Total Supply

510 Kitties

Holders

81

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
11 Kitties
0xb0cb469dd1185e561e62b31a2b28806e662e6bd1
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:
TheKittyDinger

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: https://github.com/The-Stripes-NFT/the-stripes-nft-contract/blob/main/contracts/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: https://github.com/The-Stripes-NFT/the-stripes-nft-contract/blob/main/contracts/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: https://github.com/The-Stripes-NFT/the-stripes-nft-contract/blob/main/contracts/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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: https://github.com/The-Stripes-NFT/the-stripes-nft-contract/blob/main/contracts/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: https://github.com/The-Stripes-NFT/the-stripes-nft-contract/blob/main/contracts/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: https://github.com/The-Stripes-NFT/the-stripes-nft-contract/blob/main/contracts/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: https://github.com/The-Stripes-NFT/the-stripes-nft-contract/blob/main/contracts/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: https://github.com/The-Stripes-NFT/the-stripes-nft-contract/blob/main/contracts/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: https://github.com/The-Stripes-NFT/the-stripes-nft-contract/blob/main/contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/The-Stripes-NFT/the-stripes-nft-contract/blob/main/contracts/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: https://github.com/The-Stripes-NFT/the-stripes-nft-contract/blob/main/contracts/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
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: https://github.com/The-Stripes-NFT/the-stripes-nft-contract/blob/main/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/Kittydinger/KittyDinger.sol

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

// import "contracts/token/ERC721/extensions/ERC721Enumerable.sol";
// import "contracts/access/Ownable.sol";



contract TheKittyDinger is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.07 ether;
    uint256 public presaleCost = 0.07 ether;
    uint256 public maxSupply = 3000;
    uint256 public maxMintAmount = 12;
    uint256 public saleStartsOn;
    bool public paused = false;
    mapping(address => bool) public whitelisted;
    mapping(address => bool) public presaleWallets;


    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        uint256 _saleStartsOn
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        saleStartsOn = _saleStartsOn;
    }

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

    

    function mint(address _to, uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(!paused);
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmount);
        require(supply + _mintAmount <= maxSupply);

        if (msg.sender != owner()) {
            if (whitelisted[msg.sender] != true) {
                if (presaleWallets[msg.sender] != true) {
                    //general public
                    require(msg.value >= cost * _mintAmount);
                } else {
                    //presale
                    require(block.timestamp<saleStartsOn);
                    require(msg.value >= presaleCost * _mintAmount);
                }
            }
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(_to, supply + i);
        }
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

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

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

    //only owner
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setPresaleCost(uint256 _newCost) public onlyOwner {
        presaleCost = _newCost;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

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

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

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

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

    function addWhitelist(address[] memory _users) public onlyOwner {
        for(uint256 i = 0;i<_users.length ; i++)
        {
            whitelisted[_users[i]] = true;
        }
    }


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

    function addPresaleUser(address _user) public onlyOwner {
        presaleWallets[_user] = true;
    }

    function add100PresaleUsers(address[100] memory _users) public onlyOwner {
        for (uint256 i = 0; i < 2; i++) {
            presaleWallets[_users[i]] = true;
        }
    }

    function removePresaleUser(address _user) public onlyOwner {
        presaleWallets[_user] = false;
    }

    function withdraw() public payable onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"uint256","name":"_saleStartsOn","type":"uint256"}],"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[100]","name":"_users","type":"address[100]"}],"name":"add100PresaleUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"addPresaleUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removePresaleUser","outputs":[],"stateMutability":"nonpayable","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":[{"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":[],"name":"saleStartsOn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","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":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001b0565b5066f8b0a10e470000600d819055600e55610bb8600f55600c6010556012805460ff191690553480156200005b57600080fd5b5060405162002c6738038062002c678339810160408190526200007e916200030d565b83518490849062000097906000906020850190620001b0565b508051620000ad906001906020840190620001b0565b505050620000ca620000c4620000e260201b60201c565b620000e6565b620000d58262000138565b60115550620003f9915050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ac90600b906020840190620001b0565b5050565b828054620001be90620003a6565b90600052602060002090601f016020900481019282620001e257600085556200022d565b82601f10620001fd57805160ff19168380011785556200022d565b828001600101855582156200022d579182015b828111156200022d57825182559160200191906001019062000210565b506200023b9291506200023f565b5090565b5b808211156200023b576000815560010162000240565b600082601f8301126200026857600080fd5b81516001600160401b0380821115620002855762000285620003e3565b604051601f8301601f19908116603f01168101908282118183101715620002b057620002b0620003e3565b81604052838152602092508683858801011115620002cd57600080fd5b600091505b83821015620002f15785820183015181830184015290820190620002d2565b83821115620003035760008385830101525b9695505050505050565b600080600080608085870312156200032457600080fd5b84516001600160401b03808211156200033c57600080fd5b6200034a8883890162000256565b955060208701519150808211156200036157600080fd5b6200036f8883890162000256565b945060408701519150808211156200038657600080fd5b50620003958782880162000256565b606096909601519497939650505050565b600181811c90821680620003bb57607f821691505b60208210811415620003dd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61285e80620004096000396000f3fe6080604052600436106102675760003560e01c806355f804b311610144578063b2f3e85e116100b6578063d936547e1161007a578063d936547e146106f2578063da3ef23f14610722578063e985e9c514610742578063ed931e171461078b578063edac985b146107ab578063f2fde38b146107cb57600080fd5b8063b2f3e85e14610667578063b88d4fde14610687578063c6682862146106a7578063c87b56dd146106bc578063d5abeb01146106dc57600080fd5b8063715018a611610108578063715018a6146105bf5780637f00c7a6146105d45780638da5cb5b146105f45780638fdcf9421461061257806395d89b4114610632578063a22cb4651461064757600080fd5b806355f804b3146105305780635c975abb146105505780636352211e1461056a5780636c0360eb1461058a57806370a082311461059f57600080fd5b80632f745c59116101dd57806342842e0e116101a157806342842e0e14610463578063438b63001461048357806344a0d68a146104b05780634a4c560d146104d05780634f6ccce7146104f0578063546857c71461051057600080fd5b80632f745c59146103d857806330b2264e146103f857806330cc7ae0146104285780633ccfd60b1461044857806340c10f191461045057600080fd5b806312a794831161022f57806312a794831461033d57806313faede61461036157806318160ddd14610377578063239c70ae1461038c57806323b872dd146103a25780632a23d07d146103c257600080fd5b806301ffc9a71461026c57806302329a29146102a157806306fdde03146102c3578063081812fc146102e5578063095ea7b31461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612383565b6107eb565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004612368565b610816565b005b3480156102cf57600080fd5b506102d861085c565b6040516102989190612590565b3480156102f157600080fd5b50610305610300366004612406565b6108ee565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102c16103383660046121fa565b610983565b34801561034957600080fd5b5061035360115481565b604051908152602001610298565b34801561036d57600080fd5b50610353600d5481565b34801561038357600080fd5b50600854610353565b34801561039857600080fd5b5061035360105481565b3480156103ae57600080fd5b506102c16103bd366004612118565b610a99565b3480156103ce57600080fd5b50610353600e5481565b3480156103e457600080fd5b506103536103f33660046121fa565b610aca565b34801561040457600080fd5b5061028c6104133660046120ca565b60146020526000908152604090205460ff1681565b34801561043457600080fd5b506102c16104433660046120ca565b610b60565b6102c1610bab565b6102c161045e3660046121fa565b610c04565b34801561046f57600080fd5b506102c161047e366004612118565b610d1c565b34801561048f57600080fd5b506104a361049e3660046120ca565b610d37565b604051610298919061254c565b3480156104bc57600080fd5b506102c16104cb366004612406565b610dd9565b3480156104dc57600080fd5b506102c16104eb3660046120ca565b610e08565b3480156104fc57600080fd5b5061035361050b366004612406565b610e56565b34801561051c57600080fd5b506102c161052b366004612224565b610ee9565b34801561053c57600080fd5b506102c161054b3660046123bd565b610f7d565b34801561055c57600080fd5b5060125461028c9060ff1681565b34801561057657600080fd5b50610305610585366004612406565b610fba565b34801561059657600080fd5b506102d8611031565b3480156105ab57600080fd5b506103536105ba3660046120ca565b6110bf565b3480156105cb57600080fd5b506102c1611146565b3480156105e057600080fd5b506102c16105ef366004612406565b61117c565b34801561060057600080fd5b50600a546001600160a01b0316610305565b34801561061e57600080fd5b506102c161062d366004612406565b6111ab565b34801561063e57600080fd5b506102d86111da565b34801561065357600080fd5b506102c16106623660046121d0565b6111e9565b34801561067357600080fd5b506102c16106823660046120ca565b6112ae565b34801561069357600080fd5b506102c16106a2366004612154565b6112fc565b3480156106b357600080fd5b506102d861132e565b3480156106c857600080fd5b506102d86106d7366004612406565b61133b565b3480156106e857600080fd5b50610353600f5481565b3480156106fe57600080fd5b5061028c61070d3660046120ca565b60136020526000908152604090205460ff1681565b34801561072e57600080fd5b506102c161073d3660046123bd565b611419565b34801561074e57600080fd5b5061028c61075d3660046120e5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561079757600080fd5b506102c16107a63660046120ca565b611456565b3480156107b757600080fd5b506102c16107c63660046122b4565b6114a1565b3480156107d757600080fd5b506102c16107e63660046120ca565b611533565b60006001600160e01b0319821663780e9d6360e01b14806108105750610810826115cb565b92915050565b600a546001600160a01b031633146108495760405162461bcd60e51b8152600401610840906125f5565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461086b9061273a565b80601f01602080910402602001604051908101604052809291908181526020018280546108979061273a565b80156108e45780601f106108b9576101008083540402835291602001916108e4565b820191906000526020600020905b8154815290600101906020018083116108c757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109675760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610840565b506000908152600460205260409020546001600160a01b031690565b600061098e82610fba565b9050806001600160a01b0316836001600160a01b031614156109fc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610840565b336001600160a01b0382161480610a185750610a18813361075d565b610a8a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610840565b610a94838361161b565b505050565b610aa33382611689565b610abf5760405162461bcd60e51b81526004016108409061262a565b610a94838383611780565b6000610ad5836110bf565b8210610b375760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610840565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b8a5760405162461bcd60e51b8152600401610840906125f5565b6001600160a01b03166000908152601360205260409020805460ff19169055565b600a546001600160a01b03163314610bd55760405162461bcd60e51b8152600401610840906125f5565b60405133904780156108fc02916000818181858888f19350505050158015610c01573d6000803e3d6000fd5b50565b6000610c0f60085490565b60125490915060ff1615610c2257600080fd5b60008211610c2f57600080fd5b601054821115610c3e57600080fd5b600f54610c4b83836126ac565b1115610c5657600080fd5b600a546001600160a01b03163314610ce7573360009081526013602052604090205460ff161515600114610ce7573360009081526014602052604090205460ff161515600114610cbf5781600d54610cae91906126d8565b341015610cba57600080fd5b610ce7565b6011544210610ccd57600080fd5b81600e54610cdb91906126d8565b341015610ce757600080fd5b60015b828111610d1657610d0484610cff83856126ac565b61192b565b80610d0e81612775565b915050610cea565b50505050565b610a94838383604051806020016040528060008152506112fc565b60606000610d44836110bf565b905060008167ffffffffffffffff811115610d6157610d616127fc565b604051908082528060200260200182016040528015610d8a578160200160208202803683370190505b50905060005b82811015610dd157610da28582610aca565b828281518110610db457610db46127e6565b602090810291909101015280610dc981612775565b915050610d90565b509392505050565b600a546001600160a01b03163314610e035760405162461bcd60e51b8152600401610840906125f5565b600d55565b600a546001600160a01b03163314610e325760405162461bcd60e51b8152600401610840906125f5565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b6000610e6160085490565b8210610ec45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610840565b60088281548110610ed757610ed76127e6565b90600052602060002001549050919050565b600a546001600160a01b03163314610f135760405162461bcd60e51b8152600401610840906125f5565b60005b6002811015610f7957600160146000848460648110610f3757610f376127e6565b602090810291909101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610f7181612775565b915050610f16565b5050565b600a546001600160a01b03163314610fa75760405162461bcd60e51b8152600401610840906125f5565b8051610f7990600b906020840190611fad565b6000818152600260205260408120546001600160a01b0316806108105760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610840565b600b805461103e9061273a565b80601f016020809104026020016040519081016040528092919081815260200182805461106a9061273a565b80156110b75780601f1061108c576101008083540402835291602001916110b7565b820191906000526020600020905b81548152906001019060200180831161109a57829003601f168201915b505050505081565b60006001600160a01b03821661112a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610840565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111705760405162461bcd60e51b8152600401610840906125f5565b61117a6000611945565b565b600a546001600160a01b031633146111a65760405162461bcd60e51b8152600401610840906125f5565b601055565b600a546001600160a01b031633146111d55760405162461bcd60e51b8152600401610840906125f5565b600e55565b60606001805461086b9061273a565b6001600160a01b0382163314156112425760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610840565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146112d85760405162461bcd60e51b8152600401610840906125f5565b6001600160a01b03166000908152601460205260409020805460ff19166001179055565b6113063383611689565b6113225760405162461bcd60e51b81526004016108409061262a565b610d1684848484611997565b600c805461103e9061273a565b6000818152600260205260409020546060906001600160a01b03166113ba5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610840565b60006113c46119ca565b905060008151116113e45760405180602001604052806000815250611412565b806113ee846119d9565b600c6040516020016114029392919061244b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114435760405162461bcd60e51b8152600401610840906125f5565b8051610f7990600c906020840190611fad565b600a546001600160a01b031633146114805760405162461bcd60e51b8152600401610840906125f5565b6001600160a01b03166000908152601460205260409020805460ff19169055565b600a546001600160a01b031633146114cb5760405162461bcd60e51b8152600401610840906125f5565b60005b8151811015610f79576001601360008484815181106114ef576114ef6127e6565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061152b81612775565b9150506114ce565b600a546001600160a01b0316331461155d5760405162461bcd60e51b8152600401610840906125f5565b6001600160a01b0381166115c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610840565b610c0181611945565b60006001600160e01b031982166380ac58cd60e01b14806115fc57506001600160e01b03198216635b5e139f60e01b145b8061081057506301ffc9a760e01b6001600160e01b0319831614610810565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061165082610fba565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117025760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610840565b600061170d83610fba565b9050806001600160a01b0316846001600160a01b031614806117485750836001600160a01b031661173d846108ee565b6001600160a01b0316145b8061177857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661179382610fba565b6001600160a01b0316146117fb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610840565b6001600160a01b03821661185d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610840565b611868838383611ad7565b61187360008261161b565b6001600160a01b038316600090815260036020526040812080546001929061189c9084906126f7565b90915550506001600160a01b03821660009081526003602052604081208054600192906118ca9084906126ac565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610f79828260405180602001604052806000815250611b8f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119a2848484611780565b6119ae84848484611bc2565b610d165760405162461bcd60e51b8152600401610840906125a3565b6060600b805461086b9061273a565b6060816119fd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a275780611a1181612775565b9150611a209050600a836126c4565b9150611a01565b60008167ffffffffffffffff811115611a4257611a426127fc565b6040519080825280601f01601f191660200182016040528015611a6c576020820181803683370190505b5090505b841561177857611a816001836126f7565b9150611a8e600a86612790565b611a999060306126ac565b60f81b818381518110611aae57611aae6127e6565b60200101906001600160f81b031916908160001a905350611ad0600a866126c4565b9450611a70565b6001600160a01b038316611b3257611b2d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b55565b816001600160a01b0316836001600160a01b031614611b5557611b558382611ccf565b6001600160a01b038216611b6c57610a9481611d6c565b826001600160a01b0316826001600160a01b031614610a9457610a948282611e1b565b611b998383611e5f565b611ba66000848484611bc2565b610a945760405162461bcd60e51b8152600401610840906125a3565b60006001600160a01b0384163b15611cc457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c0690339089908890889060040161250f565b602060405180830381600087803b158015611c2057600080fd5b505af1925050508015611c50575060408051601f3d908101601f19168201909252611c4d918101906123a0565b60015b611caa573d808015611c7e576040519150601f19603f3d011682016040523d82523d6000602084013e611c83565b606091505b508051611ca25760405162461bcd60e51b8152600401610840906125a3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611778565b506001949350505050565b60006001611cdc846110bf565b611ce691906126f7565b600083815260076020526040902054909150808214611d39576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d7e906001906126f7565b60008381526009602052604081205460088054939450909284908110611da657611da66127e6565b906000526020600020015490508060088381548110611dc757611dc76127e6565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611dff57611dff6127d0565b6001900381819060005260206000200160009055905550505050565b6000611e26836110bf565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611eb55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610840565b6000818152600260205260409020546001600160a01b031615611f1a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610840565b611f2660008383611ad7565b6001600160a01b0382166000908152600360205260408120805460019290611f4f9084906126ac565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fb99061273a565b90600052602060002090601f016020900481019282611fdb5760008555612021565b82601f10611ff457805160ff1916838001178555612021565b82800160010185558215612021579182015b82811115612021578251825591602001919060010190612006565b5061202d929150612031565b5090565b5b8082111561202d5760008155600101612032565b600067ffffffffffffffff831115612060576120606127fc565b612073601f8401601f191660200161267b565b905082815283838301111561208757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146120b557600080fd5b919050565b803580151581146120b557600080fd5b6000602082840312156120dc57600080fd5b6114128261209e565b600080604083850312156120f857600080fd5b6121018361209e565b915061210f6020840161209e565b90509250929050565b60008060006060848603121561212d57600080fd5b6121368461209e565b92506121446020850161209e565b9150604084013590509250925092565b6000806000806080858703121561216a57600080fd5b6121738561209e565b93506121816020860161209e565b925060408501359150606085013567ffffffffffffffff8111156121a457600080fd5b8501601f810187136121b557600080fd5b6121c487823560208401612046565b91505092959194509250565b600080604083850312156121e357600080fd5b6121ec8361209e565b915061210f602084016120ba565b6000806040838503121561220d57600080fd5b6122168361209e565b946020939093013593505050565b6000610c8080838503121561223857600080fd5b83601f84011261224757600080fd5b60405181810181811067ffffffffffffffff82111715612269576122696127fc565b604052808483810187101561227d57600080fd5b600093505b60648410156122a9576122948161209e565b82526001939093019260209182019101612282565b509095945050505050565b600060208083850312156122c757600080fd5b823567ffffffffffffffff808211156122df57600080fd5b818501915085601f8301126122f357600080fd5b813581811115612305576123056127fc565b8060051b915061231684830161267b565b8181528481019084860184860187018a101561233157600080fd5b600095505b8386101561235b576123478161209e565b835260019590950194918601918601612336565b5098975050505050505050565b60006020828403121561237a57600080fd5b611412826120ba565b60006020828403121561239557600080fd5b813561141281612812565b6000602082840312156123b257600080fd5b815161141281612812565b6000602082840312156123cf57600080fd5b813567ffffffffffffffff8111156123e657600080fd5b8201601f810184136123f757600080fd5b61177884823560208401612046565b60006020828403121561241857600080fd5b5035919050565b6000815180845261243781602086016020860161270e565b601f01601f19169290920160200192915050565b60008451602061245e8285838a0161270e565b8551918401916124718184848a0161270e565b8554920191600090600181811c908083168061248e57607f831692505b8583108114156124ac57634e487b7160e01b85526022600452602485fd5b8080156124c057600181146124d1576124fe565b60ff198516885283880195506124fe565b60008b81526020902060005b858110156124f65781548a8201529084019088016124dd565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125429083018461241f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561258457835183529284019291840191600101612568565b50909695505050505050565b602081526000611412602083018461241f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156126a4576126a46127fc565b604052919050565b600082198211156126bf576126bf6127a4565b500190565b6000826126d3576126d36127ba565b500490565b60008160001904831182151516156126f2576126f26127a4565b500290565b600082821015612709576127096127a4565b500390565b60005b83811015612729578181015183820152602001612711565b83811115610d165750506000910152565b600181811c9082168061274e57607f821691505b6020821081141561276f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612789576127896127a4565b5060010190565b60008261279f5761279f6127ba565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c0157600080fdfea264697066735822122018ce54ed580817fe4180078fff5e47f5ed81618d8e567a096845f7f499c4244a64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000620e75b0000000000000000000000000000000000000000000000000000000000000000b4b6974747964696e67657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074b697474696573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d525a5156397333525063474b6b57314662717254625259354e415076535137486968506354316d3836556a552f00000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c806355f804b311610144578063b2f3e85e116100b6578063d936547e1161007a578063d936547e146106f2578063da3ef23f14610722578063e985e9c514610742578063ed931e171461078b578063edac985b146107ab578063f2fde38b146107cb57600080fd5b8063b2f3e85e14610667578063b88d4fde14610687578063c6682862146106a7578063c87b56dd146106bc578063d5abeb01146106dc57600080fd5b8063715018a611610108578063715018a6146105bf5780637f00c7a6146105d45780638da5cb5b146105f45780638fdcf9421461061257806395d89b4114610632578063a22cb4651461064757600080fd5b806355f804b3146105305780635c975abb146105505780636352211e1461056a5780636c0360eb1461058a57806370a082311461059f57600080fd5b80632f745c59116101dd57806342842e0e116101a157806342842e0e14610463578063438b63001461048357806344a0d68a146104b05780634a4c560d146104d05780634f6ccce7146104f0578063546857c71461051057600080fd5b80632f745c59146103d857806330b2264e146103f857806330cc7ae0146104285780633ccfd60b1461044857806340c10f191461045057600080fd5b806312a794831161022f57806312a794831461033d57806313faede61461036157806318160ddd14610377578063239c70ae1461038c57806323b872dd146103a25780632a23d07d146103c257600080fd5b806301ffc9a71461026c57806302329a29146102a157806306fdde03146102c3578063081812fc146102e5578063095ea7b31461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612383565b6107eb565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004612368565b610816565b005b3480156102cf57600080fd5b506102d861085c565b6040516102989190612590565b3480156102f157600080fd5b50610305610300366004612406565b6108ee565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102c16103383660046121fa565b610983565b34801561034957600080fd5b5061035360115481565b604051908152602001610298565b34801561036d57600080fd5b50610353600d5481565b34801561038357600080fd5b50600854610353565b34801561039857600080fd5b5061035360105481565b3480156103ae57600080fd5b506102c16103bd366004612118565b610a99565b3480156103ce57600080fd5b50610353600e5481565b3480156103e457600080fd5b506103536103f33660046121fa565b610aca565b34801561040457600080fd5b5061028c6104133660046120ca565b60146020526000908152604090205460ff1681565b34801561043457600080fd5b506102c16104433660046120ca565b610b60565b6102c1610bab565b6102c161045e3660046121fa565b610c04565b34801561046f57600080fd5b506102c161047e366004612118565b610d1c565b34801561048f57600080fd5b506104a361049e3660046120ca565b610d37565b604051610298919061254c565b3480156104bc57600080fd5b506102c16104cb366004612406565b610dd9565b3480156104dc57600080fd5b506102c16104eb3660046120ca565b610e08565b3480156104fc57600080fd5b5061035361050b366004612406565b610e56565b34801561051c57600080fd5b506102c161052b366004612224565b610ee9565b34801561053c57600080fd5b506102c161054b3660046123bd565b610f7d565b34801561055c57600080fd5b5060125461028c9060ff1681565b34801561057657600080fd5b50610305610585366004612406565b610fba565b34801561059657600080fd5b506102d8611031565b3480156105ab57600080fd5b506103536105ba3660046120ca565b6110bf565b3480156105cb57600080fd5b506102c1611146565b3480156105e057600080fd5b506102c16105ef366004612406565b61117c565b34801561060057600080fd5b50600a546001600160a01b0316610305565b34801561061e57600080fd5b506102c161062d366004612406565b6111ab565b34801561063e57600080fd5b506102d86111da565b34801561065357600080fd5b506102c16106623660046121d0565b6111e9565b34801561067357600080fd5b506102c16106823660046120ca565b6112ae565b34801561069357600080fd5b506102c16106a2366004612154565b6112fc565b3480156106b357600080fd5b506102d861132e565b3480156106c857600080fd5b506102d86106d7366004612406565b61133b565b3480156106e857600080fd5b50610353600f5481565b3480156106fe57600080fd5b5061028c61070d3660046120ca565b60136020526000908152604090205460ff1681565b34801561072e57600080fd5b506102c161073d3660046123bd565b611419565b34801561074e57600080fd5b5061028c61075d3660046120e5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561079757600080fd5b506102c16107a63660046120ca565b611456565b3480156107b757600080fd5b506102c16107c63660046122b4565b6114a1565b3480156107d757600080fd5b506102c16107e63660046120ca565b611533565b60006001600160e01b0319821663780e9d6360e01b14806108105750610810826115cb565b92915050565b600a546001600160a01b031633146108495760405162461bcd60e51b8152600401610840906125f5565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461086b9061273a565b80601f01602080910402602001604051908101604052809291908181526020018280546108979061273a565b80156108e45780601f106108b9576101008083540402835291602001916108e4565b820191906000526020600020905b8154815290600101906020018083116108c757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109675760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610840565b506000908152600460205260409020546001600160a01b031690565b600061098e82610fba565b9050806001600160a01b0316836001600160a01b031614156109fc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610840565b336001600160a01b0382161480610a185750610a18813361075d565b610a8a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610840565b610a94838361161b565b505050565b610aa33382611689565b610abf5760405162461bcd60e51b81526004016108409061262a565b610a94838383611780565b6000610ad5836110bf565b8210610b375760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610840565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b8a5760405162461bcd60e51b8152600401610840906125f5565b6001600160a01b03166000908152601360205260409020805460ff19169055565b600a546001600160a01b03163314610bd55760405162461bcd60e51b8152600401610840906125f5565b60405133904780156108fc02916000818181858888f19350505050158015610c01573d6000803e3d6000fd5b50565b6000610c0f60085490565b60125490915060ff1615610c2257600080fd5b60008211610c2f57600080fd5b601054821115610c3e57600080fd5b600f54610c4b83836126ac565b1115610c5657600080fd5b600a546001600160a01b03163314610ce7573360009081526013602052604090205460ff161515600114610ce7573360009081526014602052604090205460ff161515600114610cbf5781600d54610cae91906126d8565b341015610cba57600080fd5b610ce7565b6011544210610ccd57600080fd5b81600e54610cdb91906126d8565b341015610ce757600080fd5b60015b828111610d1657610d0484610cff83856126ac565b61192b565b80610d0e81612775565b915050610cea565b50505050565b610a94838383604051806020016040528060008152506112fc565b60606000610d44836110bf565b905060008167ffffffffffffffff811115610d6157610d616127fc565b604051908082528060200260200182016040528015610d8a578160200160208202803683370190505b50905060005b82811015610dd157610da28582610aca565b828281518110610db457610db46127e6565b602090810291909101015280610dc981612775565b915050610d90565b509392505050565b600a546001600160a01b03163314610e035760405162461bcd60e51b8152600401610840906125f5565b600d55565b600a546001600160a01b03163314610e325760405162461bcd60e51b8152600401610840906125f5565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b6000610e6160085490565b8210610ec45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610840565b60088281548110610ed757610ed76127e6565b90600052602060002001549050919050565b600a546001600160a01b03163314610f135760405162461bcd60e51b8152600401610840906125f5565b60005b6002811015610f7957600160146000848460648110610f3757610f376127e6565b602090810291909101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610f7181612775565b915050610f16565b5050565b600a546001600160a01b03163314610fa75760405162461bcd60e51b8152600401610840906125f5565b8051610f7990600b906020840190611fad565b6000818152600260205260408120546001600160a01b0316806108105760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610840565b600b805461103e9061273a565b80601f016020809104026020016040519081016040528092919081815260200182805461106a9061273a565b80156110b75780601f1061108c576101008083540402835291602001916110b7565b820191906000526020600020905b81548152906001019060200180831161109a57829003601f168201915b505050505081565b60006001600160a01b03821661112a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610840565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111705760405162461bcd60e51b8152600401610840906125f5565b61117a6000611945565b565b600a546001600160a01b031633146111a65760405162461bcd60e51b8152600401610840906125f5565b601055565b600a546001600160a01b031633146111d55760405162461bcd60e51b8152600401610840906125f5565b600e55565b60606001805461086b9061273a565b6001600160a01b0382163314156112425760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610840565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146112d85760405162461bcd60e51b8152600401610840906125f5565b6001600160a01b03166000908152601460205260409020805460ff19166001179055565b6113063383611689565b6113225760405162461bcd60e51b81526004016108409061262a565b610d1684848484611997565b600c805461103e9061273a565b6000818152600260205260409020546060906001600160a01b03166113ba5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610840565b60006113c46119ca565b905060008151116113e45760405180602001604052806000815250611412565b806113ee846119d9565b600c6040516020016114029392919061244b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114435760405162461bcd60e51b8152600401610840906125f5565b8051610f7990600c906020840190611fad565b600a546001600160a01b031633146114805760405162461bcd60e51b8152600401610840906125f5565b6001600160a01b03166000908152601460205260409020805460ff19169055565b600a546001600160a01b031633146114cb5760405162461bcd60e51b8152600401610840906125f5565b60005b8151811015610f79576001601360008484815181106114ef576114ef6127e6565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061152b81612775565b9150506114ce565b600a546001600160a01b0316331461155d5760405162461bcd60e51b8152600401610840906125f5565b6001600160a01b0381166115c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610840565b610c0181611945565b60006001600160e01b031982166380ac58cd60e01b14806115fc57506001600160e01b03198216635b5e139f60e01b145b8061081057506301ffc9a760e01b6001600160e01b0319831614610810565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061165082610fba565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117025760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610840565b600061170d83610fba565b9050806001600160a01b0316846001600160a01b031614806117485750836001600160a01b031661173d846108ee565b6001600160a01b0316145b8061177857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661179382610fba565b6001600160a01b0316146117fb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610840565b6001600160a01b03821661185d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610840565b611868838383611ad7565b61187360008261161b565b6001600160a01b038316600090815260036020526040812080546001929061189c9084906126f7565b90915550506001600160a01b03821660009081526003602052604081208054600192906118ca9084906126ac565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610f79828260405180602001604052806000815250611b8f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119a2848484611780565b6119ae84848484611bc2565b610d165760405162461bcd60e51b8152600401610840906125a3565b6060600b805461086b9061273a565b6060816119fd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a275780611a1181612775565b9150611a209050600a836126c4565b9150611a01565b60008167ffffffffffffffff811115611a4257611a426127fc565b6040519080825280601f01601f191660200182016040528015611a6c576020820181803683370190505b5090505b841561177857611a816001836126f7565b9150611a8e600a86612790565b611a999060306126ac565b60f81b818381518110611aae57611aae6127e6565b60200101906001600160f81b031916908160001a905350611ad0600a866126c4565b9450611a70565b6001600160a01b038316611b3257611b2d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b55565b816001600160a01b0316836001600160a01b031614611b5557611b558382611ccf565b6001600160a01b038216611b6c57610a9481611d6c565b826001600160a01b0316826001600160a01b031614610a9457610a948282611e1b565b611b998383611e5f565b611ba66000848484611bc2565b610a945760405162461bcd60e51b8152600401610840906125a3565b60006001600160a01b0384163b15611cc457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c0690339089908890889060040161250f565b602060405180830381600087803b158015611c2057600080fd5b505af1925050508015611c50575060408051601f3d908101601f19168201909252611c4d918101906123a0565b60015b611caa573d808015611c7e576040519150601f19603f3d011682016040523d82523d6000602084013e611c83565b606091505b508051611ca25760405162461bcd60e51b8152600401610840906125a3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611778565b506001949350505050565b60006001611cdc846110bf565b611ce691906126f7565b600083815260076020526040902054909150808214611d39576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d7e906001906126f7565b60008381526009602052604081205460088054939450909284908110611da657611da66127e6565b906000526020600020015490508060088381548110611dc757611dc76127e6565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611dff57611dff6127d0565b6001900381819060005260206000200160009055905550505050565b6000611e26836110bf565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611eb55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610840565b6000818152600260205260409020546001600160a01b031615611f1a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610840565b611f2660008383611ad7565b6001600160a01b0382166000908152600360205260408120805460019290611f4f9084906126ac565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fb99061273a565b90600052602060002090601f016020900481019282611fdb5760008555612021565b82601f10611ff457805160ff1916838001178555612021565b82800160010185558215612021579182015b82811115612021578251825591602001919060010190612006565b5061202d929150612031565b5090565b5b8082111561202d5760008155600101612032565b600067ffffffffffffffff831115612060576120606127fc565b612073601f8401601f191660200161267b565b905082815283838301111561208757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146120b557600080fd5b919050565b803580151581146120b557600080fd5b6000602082840312156120dc57600080fd5b6114128261209e565b600080604083850312156120f857600080fd5b6121018361209e565b915061210f6020840161209e565b90509250929050565b60008060006060848603121561212d57600080fd5b6121368461209e565b92506121446020850161209e565b9150604084013590509250925092565b6000806000806080858703121561216a57600080fd5b6121738561209e565b93506121816020860161209e565b925060408501359150606085013567ffffffffffffffff8111156121a457600080fd5b8501601f810187136121b557600080fd5b6121c487823560208401612046565b91505092959194509250565b600080604083850312156121e357600080fd5b6121ec8361209e565b915061210f602084016120ba565b6000806040838503121561220d57600080fd5b6122168361209e565b946020939093013593505050565b6000610c8080838503121561223857600080fd5b83601f84011261224757600080fd5b60405181810181811067ffffffffffffffff82111715612269576122696127fc565b604052808483810187101561227d57600080fd5b600093505b60648410156122a9576122948161209e565b82526001939093019260209182019101612282565b509095945050505050565b600060208083850312156122c757600080fd5b823567ffffffffffffffff808211156122df57600080fd5b818501915085601f8301126122f357600080fd5b813581811115612305576123056127fc565b8060051b915061231684830161267b565b8181528481019084860184860187018a101561233157600080fd5b600095505b8386101561235b576123478161209e565b835260019590950194918601918601612336565b5098975050505050505050565b60006020828403121561237a57600080fd5b611412826120ba565b60006020828403121561239557600080fd5b813561141281612812565b6000602082840312156123b257600080fd5b815161141281612812565b6000602082840312156123cf57600080fd5b813567ffffffffffffffff8111156123e657600080fd5b8201601f810184136123f757600080fd5b61177884823560208401612046565b60006020828403121561241857600080fd5b5035919050565b6000815180845261243781602086016020860161270e565b601f01601f19169290920160200192915050565b60008451602061245e8285838a0161270e565b8551918401916124718184848a0161270e565b8554920191600090600181811c908083168061248e57607f831692505b8583108114156124ac57634e487b7160e01b85526022600452602485fd5b8080156124c057600181146124d1576124fe565b60ff198516885283880195506124fe565b60008b81526020902060005b858110156124f65781548a8201529084019088016124dd565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125429083018461241f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561258457835183529284019291840191600101612568565b50909695505050505050565b602081526000611412602083018461241f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156126a4576126a46127fc565b604052919050565b600082198211156126bf576126bf6127a4565b500190565b6000826126d3576126d36127ba565b500490565b60008160001904831182151516156126f2576126f26127a4565b500290565b600082821015612709576127096127a4565b500390565b60005b83811015612729578181015183820152602001612711565b83811115610d165750506000910152565b600181811c9082168061274e57607f821691505b6020821081141561276f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612789576127896127a4565b5060010190565b60008261279f5761279f6127ba565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c0157600080fdfea264697066735822122018ce54ed580817fe4180078fff5e47f5ed81618d8e567a096845f7f499c4244a64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000620e75b0000000000000000000000000000000000000000000000000000000000000000b4b6974747964696e67657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074b697474696573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d525a5156397333525063474b6b57314662717254625259354e415076535137486968506354316d3836556a552f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Kittydinger
Arg [1] : _symbol (string): Kitties
Arg [2] : _initBaseURI (string): ipfs://QmRZQV9s3RPcGKkW1FbqrTbRY5NAPvSQ7HihPcT1m86UjU/
Arg [3] : _saleStartsOn (uint256): 1645114800

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 00000000000000000000000000000000000000000000000000000000620e75b0
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 4b6974747964696e676572000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 4b69747469657300000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d525a5156397333525063474b6b57314662717254625259
Arg [10] : 354e415076535137486968506354316d3836556a552f00000000000000000000


Deployed Bytecode Sourcemap

46034:4491:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39393:300;;;;;;;;;;-1:-1:-1;39393:300:0;;;;;:::i;:::-;;:::i;:::-;;;9170:14:1;;9163:22;9145:41;;9133:2;9118:18;39393:300:0;;;;;;;;49485:79;;;;;;;;;;-1:-1:-1;49485:79:0;;;;;:::i;:::-;;:::i;:::-;;26493:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28186:308::-;;;;;;;;;;-1:-1:-1;28186:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7831:32:1;;;7813:51;;7801:2;7786:18;28186:308:0;7667:203:1;27709:411:0;;;;;;;;;;-1:-1:-1;27709:411:0;;;;;:::i;:::-;;:::i;46363:27::-;;;;;;;;;;;;;;;;;;;16774:25:1;;;16762:2;16747:18;46363:27:0;16628:177:1;46200:32:0;;;;;;;;;;;;;;;;40196:113;;;;;;;;;;-1:-1:-1;40284:10:0;:17;40196:113;;46323:33;;;;;;;;;;;;;;;;29245:376;;;;;;;;;;-1:-1:-1;29245:376:0;;;;;:::i;:::-;;:::i;46239:39::-;;;;;;;;;;;;;;;;39777:343;;;;;;;;;;-1:-1:-1;39777:343:0;;;;;:::i;:::-;;:::i;46480:46::-;;;;;;;;;;-1:-1:-1;46480:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49877:106;;;;;;;;;;-1:-1:-1;49877:106:0;;;;;:::i;:::-;;:::i;50407:115::-;;;:::i;46941:867::-;;;;;;:::i;:::-;;:::i;29692:185::-;;;;;;;;;;-1:-1:-1;29692:185:0;;;;;:::i;:::-;;:::i;47816:390::-;;;;;;;;;;-1:-1:-1;47816:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48882:86::-;;;;;;;;;;-1:-1:-1;48882:86:0;;;;;:::i;:::-;;:::i;49572:99::-;;;;;;;;;;-1:-1:-1;49572:99:0;;;;;:::i;:::-;;:::i;40386:320::-;;;;;;;;;;-1:-1:-1;40386:320:0;;;;;:::i;:::-;;:::i;50102:182::-;;;;;;;;;;-1:-1:-1;50102:182:0;;;;;:::i;:::-;;:::i;49214:104::-;;;;;;;;;;-1:-1:-1;49214:104:0;;;;;:::i;:::-;;:::i;46397:26::-;;;;;;;;;;-1:-1:-1;46397:26:0;;;;;;;;26100:326;;;;;;;;;;-1:-1:-1;26100:326:0;;;;;:::i;:::-;;:::i;46128:21::-;;;;;;;;;;;;;:::i;25743:295::-;;;;;;;;;;-1:-1:-1;25743:295:0;;;;;:::i;:::-;;:::i;4783:94::-;;;;;;;;;;;;;:::i;49084:122::-;;;;;;;;;;-1:-1:-1;49084:122:0;;;;;:::i;:::-;;:::i;4132:87::-;;;;;;;;;;-1:-1:-1;4205:6:0;;-1:-1:-1;;;;;4205:6:0;4132:87;;48976:100;;;;;;;;;;-1:-1:-1;48976:100:0;;;;;:::i;:::-;;:::i;26662:104::-;;;;;;;;;;;;;:::i;28566:327::-;;;;;;;;;;-1:-1:-1;28566:327:0;;;;;:::i;:::-;;:::i;49991:103::-;;;;;;;;;;-1:-1:-1;49991:103:0;;;;;:::i;:::-;;:::i;29948:365::-;;;;;;;;;;-1:-1:-1;29948:365:0;;;;;:::i;:::-;;:::i;46156:37::-;;;;;;;;;;;;;:::i;48214:642::-;;;;;;;;;;-1:-1:-1;48214:642:0;;;;;:::i;:::-;;:::i;46285:31::-;;;;;;;;;;;;;;;;46430:43;;;;;;;;;;-1:-1:-1;46430:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49326:151;;;;;;;;;;-1:-1:-1;49326:151:0;;;;;:::i;:::-;;:::i;28964:214::-;;;;;;;;;;-1:-1:-1;28964:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;29135:25:0;;;29106:4;29135:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28964:214;50292:107;;;;;;;;;;-1:-1:-1;50292:107:0;;;;;:::i;:::-;;:::i;49679:188::-;;;;;;;;;;-1:-1:-1;49679:188:0;;;;;:::i;:::-;;:::i;5032:229::-;;;;;;;;;;-1:-1:-1;5032:229:0;;;;;:::i;:::-;;:::i;39393:300::-;39540:4;-1:-1:-1;;;;;;39582:50:0;;-1:-1:-1;;;39582:50:0;;:103;;;39649:36;39673:11;39649:23;:36::i;:::-;39562:123;39393:300;-1:-1:-1;;39393:300:0:o;49485:79::-;4205:6;;-1:-1:-1;;;;;4205:6:0;2919:10;4352:23;4344:68;;;;-1:-1:-1;;;4344:68:0;;;;;;;:::i;:::-;;;;;;;;;49541:6:::1;:15:::0;;-1:-1:-1;;49541:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49485:79::o;26493:100::-;26547:13;26580:5;26573:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26493:100;:::o;28186:308::-;28307:7;31949:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31949:16:0;28332:110;;;;-1:-1:-1;;;28332:110:0;;13997:2:1;28332:110:0;;;13979:21:1;14036:2;14016:18;;;14009:30;14075:34;14055:18;;;14048:62;-1:-1:-1;;;14126:18:1;;;14119:42;14178:19;;28332:110:0;13795:408:1;28332:110:0;-1:-1:-1;28462:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28462:24:0;;28186:308::o;27709:411::-;27790:13;27806:23;27821:7;27806:14;:23::i;:::-;27790:39;;27854:5;-1:-1:-1;;;;;27848:11:0;:2;-1:-1:-1;;;;;27848:11:0;;;27840:57;;;;-1:-1:-1;;;27840:57:0;;15597:2:1;27840:57:0;;;15579:21:1;15636:2;15616:18;;;15609:30;15675:34;15655:18;;;15648:62;-1:-1:-1;;;15726:18:1;;;15719:31;15767:19;;27840:57:0;15395:397:1;27840:57:0;2919:10;-1:-1:-1;;;;;27932:21:0;;;;:62;;-1:-1:-1;27957:37:0;27974:5;2919:10;28964:214;:::i;27957:37::-;27910:168;;;;-1:-1:-1;;;27910:168:0;;12390:2:1;27910:168:0;;;12372:21:1;12429:2;12409:18;;;12402:30;12468:34;12448:18;;;12441:62;12539:26;12519:18;;;12512:54;12583:19;;27910:168:0;12188:420:1;27910:168:0;28091:21;28100:2;28104:7;28091:8;:21::i;:::-;27779:341;27709:411;;:::o;29245:376::-;29454:41;2919:10;29487:7;29454:18;:41::i;:::-;29432:140;;;;-1:-1:-1;;;29432:140:0;;;;;;;:::i;:::-;29585:28;29595:4;29601:2;29605:7;29585:9;:28::i;39777:343::-;39919:7;39974:23;39991:5;39974:16;:23::i;:::-;39966:5;:31;39944:124;;;;-1:-1:-1;;;39944:124:0;;9623:2:1;39944:124:0;;;9605:21:1;9662:2;9642:18;;;9635:30;9701:34;9681:18;;;9674:62;-1:-1:-1;;;9752:18:1;;;9745:41;9803:19;;39944:124:0;9421:407:1;39944:124:0;-1:-1:-1;;;;;;40086:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39777:343::o;49877:106::-;4205:6;;-1:-1:-1;;;;;4205:6:0;2919:10;4352:23;4344:68;;;;-1:-1:-1;;;4344:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49949:18:0::1;49970:5;49949:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;49949:26:0::1;::::0;;49877:106::o;50407:115::-;4205:6;;-1:-1:-1;;;;;4205:6:0;2919:10;4352:23;4344:68;;;;-1:-1:-1;;;4344:68:0;;;;;;;:::i;:::-;50463:51:::1;::::0;50471:10:::1;::::0;50492:21:::1;50463:51:::0;::::1;;;::::0;::::1;::::0;;;50492:21;50471:10;50463:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;50407:115::o:0;46941:867::-;47015:14;47032:13;40284:10;:17;;40196:113;47032:13;47065:6;;47015:30;;-1:-1:-1;47065:6:0;;47064:7;47056:16;;;;;;47105:1;47091:11;:15;47083:24;;;;;;47141:13;;47126:11;:28;;47118:37;;;;;;47198:9;;47174:20;47183:11;47174:6;:20;:::i;:::-;:33;;47166:42;;;;;;4205:6;;-1:-1:-1;;;;;4205:6:0;47225:10;:21;47221:472;;47279:10;47267:23;;;;:11;:23;;;;;;;;:31;;:23;:31;47263:419;;47338:10;47323:26;;;;:14;:26;;;;;;;;:34;;:26;:34;47319:348;;47448:11;47441:4;;:18;;;;:::i;:::-;47428:9;:31;;47420:40;;;;;;47319:348;;;47564:12;;47548:15;:28;47540:37;;;;;;47635:11;47621;;:25;;;;:::i;:::-;47608:9;:38;;47600:47;;;;;;47722:1;47705:96;47730:11;47725:1;:16;47705:96;;47763:26;47773:3;47778:10;47787:1;47778:6;:10;:::i;:::-;47763:9;:26::i;:::-;47743:3;;;;:::i;:::-;;;;47705:96;;;;47004:804;46941:867;;:::o;29692:185::-;29830:39;29847:4;29853:2;29857:7;29830:39;;;;;;;;;;;;:16;:39::i;47816:390::-;47903:16;47937:23;47963:17;47973:6;47963:9;:17::i;:::-;47937:43;;47991:25;48033:15;48019:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48019:30:0;;47991:58;;48065:9;48060:113;48080:15;48076:1;:19;48060:113;;;48131:30;48151:6;48159:1;48131:19;:30::i;:::-;48117:8;48126:1;48117:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;48097:3;;;;:::i;:::-;;;;48060:113;;;-1:-1:-1;48190:8:0;47816:390;-1:-1:-1;;;47816:390:0:o;48882:86::-;4205:6;;-1:-1:-1;;;;;4205:6:0;2919:10;4352:23;4344:68;;;;-1:-1:-1;;;4344:68:0;;;;;;;:::i;:::-;48945:4:::1;:15:::0;48882:86::o;49572:99::-;4205:6;;-1:-1:-1;;;;;4205:6:0;2919:10;4352:23;4344:68;;;;-1:-1:-1;;;4344:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49638:18:0::1;;::::0;;;:11:::1;:18;::::0;;;;:25;;-1:-1:-1;;49638:25:0::1;49659:4;49638:25;::::0;;49572:99::o;40386:320::-;40506:7;40561:30;40284:10;:17;;40196:113;40561:30;40553:5;:38;40531:132;;;;-1:-1:-1;;;40531:132:0;;16417:2:1;40531:132:0;;;16399:21:1;16456:2;16436:18;;;16429:30;16495:34;16475:18;;;16468:62;-1:-1:-1;;;16546:18:1;;;16539:42;16598:19;;40531:132:0;16215:408:1;40531:132:0;40681:10;40692:5;40681:17;;;;;;;;:::i;:::-;;;;;;;;;40674:24;;40386:320;;;:::o;50102:182::-;4205:6;;-1:-1:-1;;;;;4205:6:0;2919:10;4352:23;4344:68;;;;-1:-1:-1;;;4344:68:0;;;;;;;:::i;:::-;50191:9:::1;50186:91;50210:1;50206;:5;50186:91;;;50261:4;50233:14;:25;50248:6;50255:1;50248:9;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;50233:25:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;50233:25:0;:32;;-1:-1:-1;;50233:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50213:3;::::1;::::0;::::1;:::i;:::-;;;;50186:91;;;;50102:182:::0;:::o;49214:104::-;4205:6;;-1:-1:-1;;;;;4205:6:0;2919:10;4352:23;4344:68;;;;-1:-1:-1;;;4344:68:0;;;;;;;:::i;:::-;49289:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;26100:326::-:0;26217:7;26258:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26258:16:0;26307:19;26285:110;;;;-1:-1:-1;;;26285:110:0;;13226:2:1;26285:110:0;;;13208:21:1;13265:2;13245:18;;;13238:30;13304:34;13284:18;;;13277:62;-1:-1:-1;;;13355:18:1;;;13348:39;13404:19;;26285:110:0;13024:405:1;46128:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25743:295::-;25860:7;-1:-1:-1;;;;;25907:19:0;;25885:111;;;;-1:-1:-1;;;25885:111:0;;12815:2:1;25885:111:0;;;12797:21:1;12854:2;12834:18;;;12827:30;12893:34;12873:18;;;12866:62;-1:-1:-1;;;12944:18:1;;;12937:40;12994:19;;25885:111:0;12613:406:1;25885:111:0;-1:-1:-1;;;;;;26014:16:0;;;;;:9;:16;;;;;;;25743:295::o;4783:94::-;4205:6;;-1:-1:-1;;;;;4205:6:0;2919:10;4352:23;4344:68;;;;-1:-1:-1;;;4344:68:0;;;;;;;:::i;:::-;4848:21:::1;4866:1;4848:9;:21::i;:::-;4783:94::o:0;49084:122::-;4205:6;;-1:-1:-1;;;;;4205:6:0;2919:10;4352:23;4344:68;;;;-1:-1:-1;;;4344:68:0;;;;;;;:::i;:::-;49165:13:::1;:33:::0;49084:122::o;48976:100::-;4205:6;;-1:-1:-1;;;;;4205:6:0;2919:10;4352:23;4344:68;;;;-1:-1:-1;;;4344:68:0;;;;;;;:::i;:::-;49046:11:::1;:22:::0;48976:100::o;26662:104::-;26718:13;26751:7;26744:14;;;;;:::i;28566:327::-;-1:-1:-1;;;;;28701:24:0;;2919:10;28701:24;;28693:62;;;;-1:-1:-1;;;28693:62:0;;11623:2:1;28693:62:0;;;11605:21:1;11662:2;11642:18;;;11635:30;11701:27;11681:18;;;11674:55;11746:18;;28693:62:0;11421:349:1;28693:62:0;2919:10;28768:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28768:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28768:53:0;;;;;;;;;;28837:48;;9145:41:1;;;28768:42:0;;2919:10;28837:48;;9118:18:1;28837:48:0;;;;;;;28566:327;;:::o;49991:103::-;4205:6;;-1:-1:-1;;;;;4205:6:0;2919:10;4352:23;4344:68;;;;-1:-1:-1;;;4344:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50058:21:0::1;;::::0;;;:14:::1;:21;::::0;;;;:28;;-1:-1:-1;;50058:28:0::1;50082:4;50058:28;::::0;;49991:103::o;29948:365::-;30137:41;2919:10;30170:7;30137:18;:41::i;:::-;30115:140;;;;-1:-1:-1;;;30115:140:0;;;;;;;:::i;:::-;30266:39;30280:4;30286:2;30290:7;30299:5;30266:13;:39::i;46156:37::-;;;;;;;:::i;48214:642::-;31925:4;31949:16;;;:7;:16;;;;;;48332:13;;-1:-1:-1;;;;;31949:16:0;48363:113;;;;-1:-1:-1;;;48363:113:0;;15181:2:1;48363:113:0;;;15163:21:1;15220:2;15200:18;;;15193:30;15259:34;15239:18;;;15232:62;-1:-1:-1;;;15310:18:1;;;15303:45;15365:19;;48363:113:0;14979:411:1;48363:113:0;48489:28;48520:10;:8;:10::i;:::-;48489:41;;48592:1;48567:14;48561:28;:32;:287;;;;;;;;;;;;;;;;;48685:14;48726:18;:7;:16;:18::i;:::-;48771:13;48642:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48561:287;48541:307;48214:642;-1:-1:-1;;;48214:642:0:o;49326:151::-;4205:6;;-1:-1:-1;;;;;4205:6:0;2919:10;4352:23;4344:68;;;;-1:-1:-1;;;4344:68:0;;;;;;;:::i;:::-;49436:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;50292:107::-:0;4205:6;;-1:-1:-1;;;;;4205:6:0;2919:10;4352:23;4344:68;;;;-1:-1:-1;;;4344:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50362:21:0::1;50386:5;50362:21:::0;;;:14:::1;:21;::::0;;;;:29;;-1:-1:-1;;50362:29:0::1;::::0;;50292:107::o;49679:188::-;4205:6;;-1:-1:-1;;;;;4205:6:0;2919:10;4352:23;4344:68;;;;-1:-1:-1;;;4344:68:0;;;;;;;:::i;:::-;49758:9:::1;49754:106;49774:6;:13;49772:1;:15;49754:106;;;49844:4;49819:11;:22;49831:6;49838:1;49831:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;49819:22:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;49819:22:0;:29;;-1:-1:-1;;49819:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49790:3;::::1;::::0;::::1;:::i;:::-;;;;49754:106;;5032:229:::0;4205:6;;-1:-1:-1;;;;;4205:6:0;2919:10;4352:23;4344:68;;;;-1:-1:-1;;;4344:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5135:22:0;::::1;5113:110;;;::::0;-1:-1:-1;;;5113:110:0;;10454:2:1;5113:110:0::1;::::0;::::1;10436:21:1::0;10493:2;10473:18;;;10466:30;10532:34;10512:18;;;10505:62;-1:-1:-1;;;10583:18:1;;;10576:36;10629:19;;5113:110:0::1;10252:402:1::0;5113:110:0::1;5234:19;5244:8;5234:9;:19::i;25324:355::-:0;25471:4;-1:-1:-1;;;;;;25513:40:0;;-1:-1:-1;;;25513:40:0;;:105;;-1:-1:-1;;;;;;;25570:48:0;;-1:-1:-1;;;25570:48:0;25513:105;:158;;;-1:-1:-1;;;;;;;;;;17005:40:0;;;25635:36;16846:207;35983:174;36058:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36058:29:0;-1:-1:-1;;;;;36058:29:0;;;;;;;;:24;;36112:23;36058:24;36112:14;:23::i;:::-;-1:-1:-1;;;;;36103:46:0;;;;;;;;;;;35983:174;;:::o;32154:452::-;32283:4;31949:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31949:16:0;32305:110;;;;-1:-1:-1;;;32305:110:0;;11977:2:1;32305:110:0;;;11959:21:1;12016:2;11996:18;;;11989:30;12055:34;12035:18;;;12028:62;-1:-1:-1;;;12106:18:1;;;12099:42;12158:19;;32305:110:0;11775:408:1;32305:110:0;32426:13;32442:23;32457:7;32442:14;:23::i;:::-;32426:39;;32495:5;-1:-1:-1;;;;;32484:16:0;:7;-1:-1:-1;;;;;32484:16:0;;:64;;;;32541:7;-1:-1:-1;;;;;32517:31:0;:20;32529:7;32517:11;:20::i;:::-;-1:-1:-1;;;;;32517:31:0;;32484:64;:113;;;-1:-1:-1;;;;;;29135:25:0;;;29106:4;29135:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32565:32;32476:122;32154:452;-1:-1:-1;;;;32154:452:0:o;35250:615::-;35423:4;-1:-1:-1;;;;;35396:31:0;:23;35411:7;35396:14;:23::i;:::-;-1:-1:-1;;;;;35396:31:0;;35374:122;;;;-1:-1:-1;;;35374:122:0;;14771:2:1;35374:122:0;;;14753:21:1;14810:2;14790:18;;;14783:30;14849:34;14829:18;;;14822:62;-1:-1:-1;;;14900:18:1;;;14893:39;14949:19;;35374:122:0;14569:405:1;35374:122:0;-1:-1:-1;;;;;35515:16:0;;35507:65;;;;-1:-1:-1;;;35507:65:0;;11218:2:1;35507:65:0;;;11200:21:1;11257:2;11237:18;;;11230:30;11296:34;11276:18;;;11269:62;-1:-1:-1;;;11347:18:1;;;11340:34;11391:19;;35507:65:0;11016:400:1;35507:65:0;35585:39;35606:4;35612:2;35616:7;35585:20;:39::i;:::-;35689:29;35706:1;35710:7;35689:8;:29::i;:::-;-1:-1:-1;;;;;35731:15:0;;;;;;:9;:15;;;;;:20;;35750:1;;35731:15;:20;;35750:1;;35731:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35762:13:0;;;;;;:9;:13;;;;;:18;;35779:1;;35762:13;:18;;35779:1;;35762:18;:::i;:::-;;;;-1:-1:-1;;35791:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35791:21:0;-1:-1:-1;;;;;35791:21:0;;;;;;;;;35830:27;;35791:16;;35830:27;;;;;;;35250:615;;;:::o;32948:110::-;33024:26;33034:2;33038:7;33024:26;;;;;;;;;;;;:9;:26::i;5269:173::-;5344:6;;;-1:-1:-1;;;;;5361:17:0;;;-1:-1:-1;;;;;;5361:17:0;;;;;;;5394:40;;5344:6;;;5361:17;5344:6;;5394:40;;5325:16;;5394:40;5314:128;5269:173;:::o;31195:352::-;31352:28;31362:4;31368:2;31372:7;31352:9;:28::i;:::-;31413:48;31436:4;31442:2;31446:7;31455:5;31413:22;:48::i;:::-;31391:148;;;;-1:-1:-1;;;31391:148:0;;;;;;;:::i;46817:108::-;46877:13;46910:7;46903:14;;;;;:::i;367:723::-;423:13;644:10;640:53;;-1:-1:-1;;671:10:0;;;;;;;;;;;;-1:-1:-1;;;671:10:0;;;;;367:723::o;640:53::-;718:5;703:12;759:78;766:9;;759:78;;792:8;;;;:::i;:::-;;-1:-1:-1;815:10:0;;-1:-1:-1;823:2:0;815:10;;:::i;:::-;;;759:78;;;847:19;879:6;869:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;869:17:0;;847:39;;897:154;904:10;;897:154;;931:11;941:1;931:11;;:::i;:::-;;-1:-1:-1;1000:10:0;1008:2;1000:5;:10;:::i;:::-;987:24;;:2;:24;:::i;:::-;974:39;;957:6;964;957:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;957:56:0;;;;;;;;-1:-1:-1;1028:11:0;1037:2;1028:11;;:::i;:::-;;;897:154;;41319:589;-1:-1:-1;;;;;41525:18:0;;41521:187;;41560:40;41592:7;42735:10;:17;;42708:24;;;;:15;:24;;;;;:44;;;42763:24;;;;;;;;;;;;42631:164;41560:40;41521:187;;;41630:2;-1:-1:-1;;;;;41622:10:0;:4;-1:-1:-1;;;;;41622:10:0;;41618:90;;41649:47;41682:4;41688:7;41649:32;:47::i;:::-;-1:-1:-1;;;;;41722:16:0;;41718:183;;41755:45;41792:7;41755:36;:45::i;41718:183::-;41828:4;-1:-1:-1;;;;;41822:10:0;:2;-1:-1:-1;;;;;41822:10:0;;41818:83;;41849:40;41877:2;41881:7;41849:27;:40::i;33285:321::-;33415:18;33421:2;33425:7;33415:5;:18::i;:::-;33466:54;33497:1;33501:2;33505:7;33514:5;33466:22;:54::i;:::-;33444:154;;;;-1:-1:-1;;;33444:154:0;;;;;;;:::i;36722:980::-;36877:4;-1:-1:-1;;;;;36898:13:0;;6594:20;6642:8;36894:801;;36951:175;;-1:-1:-1;;;36951:175:0;;-1:-1:-1;;;;;36951:36:0;;;;;:175;;2919:10;;37045:4;;37072:7;;37102:5;;36951:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36951:175:0;;;;;;;;-1:-1:-1;;36951:175:0;;;;;;;;;;;;:::i;:::-;;;36930:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37309:13:0;;37305:320;;37352:108;;-1:-1:-1;;;37352:108:0;;;;;;;:::i;37305:320::-;37575:6;37569:13;37560:6;37556:2;37552:15;37545:38;36930:710;-1:-1:-1;;;;;;37190:51:0;-1:-1:-1;;;37190:51:0;;-1:-1:-1;37183:58:0;;36894:801;-1:-1:-1;37679:4:0;36722:980;;;;;;:::o;43422:1002::-;43702:22;43752:1;43727:22;43744:4;43727:16;:22::i;:::-;:26;;;;:::i;:::-;43764:18;43785:26;;;:17;:26;;;;;;43702:51;;-1:-1:-1;43918:28:0;;;43914:328;;-1:-1:-1;;;;;43985:18:0;;43963:19;43985:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44036:30;;;;;;:44;;;44153:30;;:17;:30;;;;;:43;;;43914:328;-1:-1:-1;44338:26:0;;;;:17;:26;;;;;;;;44331:33;;;-1:-1:-1;;;;;44382:18:0;;;;;:12;:18;;;;;:34;;;;;;;44375:41;43422:1002::o;44719:1079::-;44997:10;:17;44972:22;;44997:21;;45017:1;;44997:21;:::i;:::-;45029:18;45050:24;;;:15;:24;;;;;;45423:10;:26;;44972:46;;-1:-1:-1;45050:24:0;;44972:46;;45423:26;;;;;;:::i;:::-;;;;;;;;;45401:48;;45487:11;45462:10;45473;45462:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45567:28;;;:15;:28;;;;;;;:41;;;45739:24;;;;;45732:31;45774:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44790:1008;;;44719:1079;:::o;42209:221::-;42294:14;42311:20;42328:2;42311:16;:20::i;:::-;-1:-1:-1;;;;;42342:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42387:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42209:221:0:o;33942:382::-;-1:-1:-1;;;;;34022:16:0;;34014:61;;;;-1:-1:-1;;;34014:61:0;;13636:2:1;34014:61:0;;;13618:21:1;;;13655:18;;;13648:30;13714:34;13694:18;;;13687:62;13766:18;;34014:61:0;13434:356:1;34014:61:0;31925:4;31949:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31949:16:0;:30;34086:58;;;;-1:-1:-1;;;34086:58:0;;10861:2:1;34086:58:0;;;10843:21:1;10900:2;10880:18;;;10873:30;10939;10919:18;;;10912:58;10987:18;;34086:58:0;10659:352:1;34086:58:0;34157:45;34186:1;34190:2;34194:7;34157:20;:45::i;:::-;-1:-1:-1;;;;;34215:13:0;;;;;;:9;:13;;;;;:18;;34232:1;;34215:13;:18;;34232:1;;34215:18;:::i;:::-;;;;-1:-1:-1;;34244:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34244:21:0;-1:-1:-1;;;;;34244:21:0;;;;;;;;34283:33;;34244:16;;;34283:33;;34244:16;;34283:33;33942:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:825::-;2830:6;2861:4;2906:2;2894:9;2885:7;2881:23;2877:32;2874:52;;;2922:1;2919;2912:12;2874:52;2971:7;2964:4;2953:9;2949:20;2945:34;2935:62;;2993:1;2990;2983:12;2935:62;3026:2;3020:9;3068:2;3060:6;3056:15;3137:6;3125:10;3122:22;3101:18;3089:10;3086:34;3083:62;3080:88;;;3148:18;;:::i;:::-;3184:2;3177:22;3219:6;3245:9;3269:18;;;3266:31;-1:-1:-1;3263:51:1;;;3310:1;3307;3300:12;3263:51;3332:1;3323:10;;3342:198;3356:4;3353:1;3350:11;3342:198;;;3415:23;3434:3;3415:23;:::i;:::-;3403:36;;3376:1;3369:9;;;;;3462:4;3486:12;;;;3518;3342:198;;;-1:-1:-1;3559:6:1;;2746:825;-1:-1:-1;;;;;2746:825:1:o;3576:963::-;3660:6;3691:2;3734;3722:9;3713:7;3709:23;3705:32;3702:52;;;3750:1;3747;3740:12;3702:52;3790:9;3777:23;3819:18;3860:2;3852:6;3849:14;3846:34;;;3876:1;3873;3866:12;3846:34;3914:6;3903:9;3899:22;3889:32;;3959:7;3952:4;3948:2;3944:13;3940:27;3930:55;;3981:1;3978;3971:12;3930:55;4017:2;4004:16;4039:2;4035;4032:10;4029:36;;;4045:18;;:::i;:::-;4091:2;4088:1;4084:10;4074:20;;4114:28;4138:2;4134;4130:11;4114:28;:::i;:::-;4176:15;;;4207:12;;;;4239:11;;;4269;;;4265:20;;4262:33;-1:-1:-1;4259:53:1;;;4308:1;4305;4298:12;4259:53;4330:1;4321:10;;4340:169;4354:2;4351:1;4348:9;4340:169;;;4411:23;4430:3;4411:23;:::i;:::-;4399:36;;4372:1;4365:9;;;;;4455:12;;;;4487;;4340:169;;;-1:-1:-1;4528:5:1;3576:963;-1:-1:-1;;;;;;;;3576:963:1:o;4544:180::-;4600:6;4653:2;4641:9;4632:7;4628:23;4624:32;4621:52;;;4669:1;4666;4659:12;4621:52;4692:26;4708:9;4692:26;:::i;4729:245::-;4787:6;4840:2;4828:9;4819:7;4815:23;4811:32;4808:52;;;4856:1;4853;4846:12;4808:52;4895:9;4882:23;4914:30;4938:5;4914:30;:::i;4979:249::-;5048:6;5101:2;5089:9;5080:7;5076:23;5072:32;5069:52;;;5117:1;5114;5107:12;5069:52;5149:9;5143:16;5168:30;5192:5;5168:30;:::i;5233:450::-;5302:6;5355:2;5343:9;5334:7;5330:23;5326:32;5323:52;;;5371:1;5368;5361:12;5323:52;5411:9;5398:23;5444:18;5436:6;5433:30;5430:50;;;5476:1;5473;5466:12;5430:50;5499:22;;5552:4;5544:13;;5540:27;-1:-1:-1;5530:55:1;;5581:1;5578;5571:12;5530:55;5604:73;5669:7;5664:2;5651:16;5646:2;5642;5638:11;5604:73;:::i;5688:180::-;5747:6;5800:2;5788:9;5779:7;5775:23;5771:32;5768:52;;;5816:1;5813;5806:12;5768:52;-1:-1:-1;5839:23:1;;5688:180;-1:-1:-1;5688:180:1:o;5873:257::-;5914:3;5952:5;5946:12;5979:6;5974:3;5967:19;5995:63;6051:6;6044:4;6039:3;6035:14;6028:4;6021:5;6017:16;5995:63;:::i;:::-;6112:2;6091:15;-1:-1:-1;;6087:29:1;6078:39;;;;6119:4;6074:50;;5873:257;-1:-1:-1;;5873:257:1:o;6135:1527::-;6359:3;6397:6;6391:13;6423:4;6436:51;6480:6;6475:3;6470:2;6462:6;6458:15;6436:51;:::i;:::-;6550:13;;6509:16;;;;6572:55;6550:13;6509:16;6594:15;;;6572:55;:::i;:::-;6716:13;;6649:20;;;6689:1;;6776;6798:18;;;;6851;;;;6878:93;;6956:4;6946:8;6942:19;6930:31;;6878:93;7019:2;7009:8;7006:16;6986:18;6983:40;6980:167;;;-1:-1:-1;;;7046:33:1;;7102:4;7099:1;7092:15;7132:4;7053:3;7120:17;6980:167;7163:18;7190:110;;;;7314:1;7309:328;;;;7156:481;;7190:110;-1:-1:-1;;7225:24:1;;7211:39;;7270:20;;;;-1:-1:-1;7190:110:1;;7309:328;17163:1;17156:14;;;17200:4;17187:18;;7404:1;7418:169;7432:8;7429:1;7426:15;7418:169;;;7514:14;;7499:13;;;7492:37;7557:16;;;;7449:10;;7418:169;;;7422:3;;7618:8;7611:5;7607:20;7600:27;;7156:481;-1:-1:-1;7653:3:1;;6135:1527;-1:-1:-1;;;;;;;;;;;6135:1527:1:o;7875:488::-;-1:-1:-1;;;;;8144:15:1;;;8126:34;;8196:15;;8191:2;8176:18;;8169:43;8243:2;8228:18;;8221:34;;;8291:3;8286:2;8271:18;;8264:31;;;8069:4;;8312:45;;8337:19;;8329:6;8312:45;:::i;:::-;8304:53;7875:488;-1:-1:-1;;;;;;7875:488:1:o;8368:632::-;8539:2;8591:21;;;8661:13;;8564:18;;;8683:22;;;8510:4;;8539:2;8762:15;;;;8736:2;8721:18;;;8510:4;8805:169;8819:6;8816:1;8813:13;8805:169;;;8880:13;;8868:26;;8949:15;;;;8914:12;;;;8841:1;8834:9;8805:169;;;-1:-1:-1;8991:3:1;;8368:632;-1:-1:-1;;;;;;8368:632:1:o;9197:219::-;9346:2;9335:9;9328:21;9309:4;9366:44;9406:2;9395:9;9391:18;9383:6;9366:44;:::i;9833:414::-;10035:2;10017:21;;;10074:2;10054:18;;;10047:30;10113:34;10108:2;10093:18;;10086:62;-1:-1:-1;;;10179:2:1;10164:18;;10157:48;10237:3;10222:19;;9833:414::o;14208:356::-;14410:2;14392:21;;;14429:18;;;14422:30;14488:34;14483:2;14468:18;;14461:62;14555:2;14540:18;;14208:356::o;15797:413::-;15999:2;15981:21;;;16038:2;16018:18;;;16011:30;16077:34;16072:2;16057:18;;16050:62;-1:-1:-1;;;16143:2:1;16128:18;;16121:47;16200:3;16185:19;;15797:413::o;16810:275::-;16881:2;16875:9;16946:2;16927:13;;-1:-1:-1;;16923:27:1;16911:40;;16981:18;16966:34;;17002:22;;;16963:62;16960:88;;;17028:18;;:::i;:::-;17064:2;17057:22;16810:275;;-1:-1:-1;16810:275:1:o;17216:128::-;17256:3;17287:1;17283:6;17280:1;17277:13;17274:39;;;17293:18;;:::i;:::-;-1:-1:-1;17329:9:1;;17216:128::o;17349:120::-;17389:1;17415;17405:35;;17420:18;;:::i;:::-;-1:-1:-1;17454:9:1;;17349:120::o;17474:168::-;17514:7;17580:1;17576;17572:6;17568:14;17565:1;17562:21;17557:1;17550:9;17543:17;17539:45;17536:71;;;17587:18;;:::i;:::-;-1:-1:-1;17627:9:1;;17474:168::o;17647:125::-;17687:4;17715:1;17712;17709:8;17706:34;;;17720:18;;:::i;:::-;-1:-1:-1;17757:9:1;;17647:125::o;17777:258::-;17849:1;17859:113;17873:6;17870:1;17867:13;17859:113;;;17949:11;;;17943:18;17930:11;;;17923:39;17895:2;17888:10;17859:113;;;17990:6;17987:1;17984:13;17981:48;;;-1:-1:-1;;18025:1:1;18007:16;;18000:27;17777:258::o;18040:380::-;18119:1;18115:12;;;;18162;;;18183:61;;18237:4;18229:6;18225:17;18215:27;;18183:61;18290:2;18282:6;18279:14;18259:18;18256:38;18253:161;;;18336:10;18331:3;18327:20;18324:1;18317:31;18371:4;18368:1;18361:15;18399:4;18396:1;18389:15;18253:161;;18040:380;;;:::o;18425:135::-;18464:3;-1:-1:-1;;18485:17:1;;18482:43;;;18505:18;;:::i;:::-;-1:-1:-1;18552:1:1;18541:13;;18425:135::o;18565:112::-;18597:1;18623;18613:35;;18628:18;;:::i;:::-;-1:-1:-1;18662:9:1;;18565:112::o;18682:127::-;18743:10;18738:3;18734:20;18731:1;18724:31;18774:4;18771:1;18764:15;18798:4;18795:1;18788:15;18814:127;18875:10;18870:3;18866:20;18863:1;18856:31;18906:4;18903:1;18896:15;18930:4;18927:1;18920:15;18946:127;19007:10;19002:3;18998:20;18995:1;18988:31;19038:4;19035:1;19028:15;19062:4;19059:1;19052:15;19078:127;19139:10;19134:3;19130:20;19127:1;19120:31;19170:4;19167:1;19160:15;19194:4;19191:1;19184:15;19210:127;19271:10;19266:3;19262:20;19259:1;19252:31;19302:4;19299:1;19292:15;19326:4;19323:1;19316:15;19342:131;-1:-1:-1;;;;;;19416:32:1;;19406:43;;19396:71;;19463:1;19460;19453:12

Swarm Source

ipfs://18ce54ed580817fe4180078fff5e47f5ed81618d8e567a096845f7f499c4244a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.