ETH Price: $3,486.67 (+3.42%)
Gas: 4 Gwei

Token

Kid Kongz (KID)
 

Overview

Max Total Supply

4,000 KID

Holders

1,331

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
encircl3.eth
Balance
2 KID
0x408e5416c6bd8008da54cd2362b6500a9702f205
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:
KidKongz

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0

// www.KidKongz.com

// Ooo-oo-ah-ah! 4,000 Kid Kongz looking for their Daddies.

// www.discord.gg/KidKongz
// www.twitter.com/KidKongz

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

pragma solidity ^0.8.0;

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    function toString(uint256 value) internal pure returns (string memory) {


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

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

    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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



pragma solidity ^0.8.0;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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



pragma solidity ^0.8.0;


abstract contract Ownable is Context {
    address private _owner;

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


    constructor() {
        _setOwner(_msgSender());
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }


    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    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: @openzeppelin/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: @openzeppelin/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: @openzeppelin/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: @openzeppelin/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: @openzeppelin/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: @openzeppelin/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: @openzeppelin/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: @openzeppelin/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: @openzeppelin/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/KidKongz.sol


pragma solidity >=0.7.0 <0.9.0;



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

// Set metadata for revealed Kid Kongz
  string public baseURI;
// Extension for metata files
  string public baseExtension = ".json";
// Not revealed metadata
  string public notRevealedUri;
// Cost per Kid Kongz
  uint256 public cost = 0.04 ether;
// Max amount of Kid Kongz
  uint256 public maxSupply = 4000;
// Max amount to mint per transaction
  uint256 public maxMintAmount = 20;
// Max amount of Kid Kongz per wallet
  uint256 public nftPerAddressLimit = 60;

  bool public paused = false;
  bool public revealed = false;
  bool public onlyWl = false;
  address[] public wlAddresses;
  mapping(address => uint256) public addressMintedBalance;


  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if(onlyWl == true) {
            require(isWl(msg.sender), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        }
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }
  
  function isWl(address _user) public view returns (bool) {
    for (uint i = 0; i < wlAddresses.length; i++) {
      if (wlAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  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"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _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 setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWl(bool _state) public onlyOwner {
    onlyWl = _state;
  }
  
  function wlUsers(address[] calldata _users) public onlyOwner {
    delete wlAddresses;
    wlAddresses = _users;
  }
 
  function withdraw() public payable onlyOwner {

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

  }
}

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":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWl","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":"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":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWl","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_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":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWl","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"wlAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"wlUsers","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000205565b50668e1bc9bf040000600e55610fa0600f556014601055603c6011556012805462ffffff191690553480156200005d57600080fd5b5060405162002ed138038062002ed183398101604081905262000080916200035e565b8351849084906200009990600090602085019062000205565b508051620000af90600190602084019062000205565b505050620000cc620000c6620000ec60201b60201c565b620000f0565b620000d78262000142565b620000e281620001aa565b5050505062000465565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001915760405162461bcd60e51b8152602060048201819052602482015260008051602062002eb183398151915260448201526064015b60405180910390fd5b8051620001a690600b90602084019062000205565b5050565b600a546001600160a01b03163314620001f55760405162461bcd60e51b8152602060048201819052602482015260008051602062002eb1833981519152604482015260640162000188565b8051620001a690600d9060208401905b828054620002139062000412565b90600052602060002090601f01602090048101928262000237576000855562000282565b82601f106200025257805160ff191683800117855562000282565b8280016001018555821562000282579182015b828111156200028257825182559160200191906001019062000265565b506200029092915062000294565b5090565b5b8082111562000290576000815560010162000295565b600082601f830112620002bc578081fd5b81516001600160401b0380821115620002d957620002d96200044f565b604051601f8301601f19908116603f011681019082821181831017156200030457620003046200044f565b8160405283815260209250868385880101111562000320578485fd5b8491505b8382101562000343578582018301518183018401529082019062000324565b838211156200035457848385830101525b9695505050505050565b6000806000806080858703121562000374578384fd5b84516001600160401b03808211156200038b578586fd5b6200039988838901620002ab565b95506020870151915080821115620003af578485fd5b620003bd88838901620002ab565b94506040870151915080821115620003d3578384fd5b620003e188838901620002ab565b93506060870151915080821115620003f7578283fd5b506200040687828801620002ab565b91505092959194509250565b600181811c908216806200042757607f821691505b602082108114156200044957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612a3c80620004756000396000f3fe6080604052600436106102725760003560e01c80636c0360eb1161014f578063ba7d2c76116100c1578063da3ef23f1161007a578063da3ef23f1461070d578063df5dcbbf1461072d578063e985e9c51461074d578063f2c4ce1e14610796578063f2fde38b146107b6578063f9d596a6146107d657600080fd5b8063ba7d2c761461066c578063c2edb87614610682578063c6682862146106a2578063c87b56dd146106b7578063d0eb26b0146106d7578063d5abeb01146106f757600080fd5b806395d89b411161011357806395d89b41146105cf578063a0712d68146105e4578063a22cb465146105f7578063a475b5dd14610617578063aa6d4b9d1461062c578063b88d4fde1461064c57600080fd5b80636c0360eb1461054757806370a082311461055c578063715018a61461057c5780637f00c7a6146105915780638da5cb5b146105b157600080fd5b806323b872dd116101e857806344a0d68a116101ac57806344a0d68a1461048e5780634f6ccce7146104ae57806351830227146104ce57806355f804b3146104ed5780635c975abb1461050d5780636352211e1461052757600080fd5b806323b872dd146103f95780632f745c59146104195780633ccfd60b1461043957806342842e0e14610441578063438b63001461046157600080fd5b8063081c8c441161023a578063081c8c4414610348578063095ea7b31461035d57806313faede61461037d57806318160ddd146103a157806318cae269146103b6578063239c70ae146103e357600080fd5b806301ffc9a71461027757806302329a29146102ac5780630676a177146102ce57806306fdde03146102ee578063081812fc14610310575b600080fd5b34801561028357600080fd5b506102976102923660046125c6565b6107f6565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c73660046125ac565b610821565b005b3480156102da57600080fd5b506102cc6102e936600461253c565b610867565b3480156102fa57600080fd5b506103036108ae565b6040516102a391906127cb565b34801561031c57600080fd5b5061033061032b366004612644565b610940565b6040516001600160a01b0390911681526020016102a3565b34801561035457600080fd5b506103036109d5565b34801561036957600080fd5b506102cc610378366004612513565b610a63565b34801561038957600080fd5b50610393600e5481565b6040519081526020016102a3565b3480156103ad57600080fd5b50600854610393565b3480156103c257600080fd5b506103936103d13660046123ea565b60146020526000908152604090205481565b3480156103ef57600080fd5b5061039360105481565b34801561040557600080fd5b506102cc610414366004612436565b610b74565b34801561042557600080fd5b50610393610434366004612513565b610ba5565b6102cc610c3b565b34801561044d57600080fd5b506102cc61045c366004612436565b610cd9565b34801561046d57600080fd5b5061048161047c3660046123ea565b610cf4565b6040516102a39190612787565b34801561049a57600080fd5b506102cc6104a9366004612644565b610db2565b3480156104ba57600080fd5b506103936104c9366004612644565b610de1565b3480156104da57600080fd5b5060125461029790610100900460ff1681565b3480156104f957600080fd5b506102cc6105083660046125fe565b610e82565b34801561051957600080fd5b506012546102979060ff1681565b34801561053357600080fd5b50610330610542366004612644565b610ec3565b34801561055357600080fd5b50610303610f3a565b34801561056857600080fd5b506103936105773660046123ea565b610f47565b34801561058857600080fd5b506102cc610fce565b34801561059d57600080fd5b506102cc6105ac366004612644565b611004565b3480156105bd57600080fd5b50600a546001600160a01b0316610330565b3480156105db57600080fd5b50610303611033565b6102cc6105f2366004612644565b611042565b34801561060357600080fd5b506102cc6106123660046124ea565b611329565b34801561062357600080fd5b506102cc6113ee565b34801561063857600080fd5b50610330610647366004612644565b611429565b34801561065857600080fd5b506102cc610667366004612471565b611453565b34801561067857600080fd5b5061039360115481565b34801561068e57600080fd5b506012546102979062010000900460ff1681565b3480156106ae57600080fd5b5061030361148b565b3480156106c357600080fd5b506103036106d2366004612644565b611498565b3480156106e357600080fd5b506102cc6106f2366004612644565b611617565b34801561070357600080fd5b50610393600f5481565b34801561071957600080fd5b506102cc6107283660046125fe565b611646565b34801561073957600080fd5b506102cc6107483660046125ac565b611683565b34801561075957600080fd5b50610297610768366004612404565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102cc6107b13660046125fe565b6116c9565b3480156107c257600080fd5b506102cc6107d13660046123ea565b611706565b3480156107e257600080fd5b506102976107f13660046123ea565b61179e565b60006001600160e01b0319821663780e9d6360e01b148061081b575061081b82611816565b92915050565b600a546001600160a01b031633146108545760405162461bcd60e51b815260040161084b90612830565b60405180910390fd5b6012805460ff1916911515919091179055565b600a546001600160a01b031633146108915760405162461bcd60e51b815260040161084b90612830565b61089d6013600061223e565b6108a96013838361225c565b505050565b6060600080546108bd90612944565b80601f01602080910402602001604051908101604052809291908181526020018280546108e990612944565b80156109365780601f1061090b57610100808354040283529160200191610936565b820191906000526020600020905b81548152906001019060200180831161091957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109b95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b506000908152600460205260409020546001600160a01b031690565b600d80546109e290612944565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0e90612944565b8015610a5b5780601f10610a3057610100808354040283529160200191610a5b565b820191906000526020600020905b815481529060010190602001808311610a3e57829003601f168201915b505050505081565b6000610a6e82610ec3565b9050806001600160a01b0316836001600160a01b03161415610adc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084b565b336001600160a01b0382161480610af85750610af88133610768565b610b6a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084b565b6108a98383611866565b610b7e33826118d4565b610b9a5760405162461bcd60e51b815260040161084b90612865565b6108a98383836119cb565b6000610bb083610f47565b8210610c125760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161084b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c655760405162461bcd60e51b815260040161084b90612830565b6000610c79600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cc3576040519150601f19603f3d011682016040523d82523d6000602084013e610cc8565b606091505b5050905080610cd657600080fd5b50565b6108a983838360405180602001604052806000815250611453565b60606000610d0183610f47565b905060008167ffffffffffffffff811115610d2c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610d55578160200160208202803683370190505b50905060005b82811015610daa57610d6d8582610ba5565b828281518110610d8d57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610da28161297f565b915050610d5b565b509392505050565b600a546001600160a01b03163314610ddc5760405162461bcd60e51b815260040161084b90612830565b600e55565b6000610dec60085490565b8210610e4f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161084b565b60088281548110610e7057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610eac5760405162461bcd60e51b815260040161084b90612830565b8051610ebf90600b9060208401906122bf565b5050565b6000818152600260205260408120546001600160a01b03168061081b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084b565b600b80546109e290612944565b60006001600160a01b038216610fb25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ff85760405162461bcd60e51b815260040161084b90612830565b6110026000611b76565b565b600a546001600160a01b0316331461102e5760405162461bcd60e51b815260040161084b90612830565b601055565b6060600180546108bd90612944565b60125460ff161561108e5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161084b565b600061109960085490565b9050600082116110eb5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161084b565b6010548211156111495760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161084b565b600f5461115683836128b6565b111561119d5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161084b565b600a546001600160a01b031633146112d95760125462010000900460ff16151560011415611287576111ce3361179e565b61121a5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161084b565b3360009081526014602052604090205460115461123784836128b6565b11156112855760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161084b565b505b81600e5461129591906128e2565b3410156112d95760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161084b565b60015b8281116108a9573360009081526014602052604081208054916112fe8361297f565b9091555061131790503361131283856128b6565b611bc8565b806113218161297f565b9150506112dc565b6001600160a01b0382163314156113825760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114185760405162461bcd60e51b815260040161084b90612830565b6012805461ff001916610100179055565b6013818154811061143957600080fd5b6000918252602090912001546001600160a01b0316905081565b61145d33836118d4565b6114795760405162461bcd60e51b815260040161084b90612865565b61148584848484611be2565b50505050565b600c80546109e290612944565b6000818152600260205260409020546060906001600160a01b03166115175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084b565b601254610100900460ff166115b857600d805461153390612944565b80601f016020809104026020016040519081016040528092919081815260200182805461155f90612944565b80156115ac5780601f10611581576101008083540402835291602001916115ac565b820191906000526020600020905b81548152906001019060200180831161158f57829003601f168201915b50505050509050919050565b60006115c2611c15565b905060008151116115e25760405180602001604052806000815250611610565b806115ec84611c24565b600c60405160200161160093929190612688565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116415760405162461bcd60e51b815260040161084b90612830565b601155565b600a546001600160a01b031633146116705760405162461bcd60e51b815260040161084b90612830565b8051610ebf90600c9060208401906122bf565b600a546001600160a01b031633146116ad5760405162461bcd60e51b815260040161084b90612830565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b031633146116f35760405162461bcd60e51b815260040161084b90612830565b8051610ebf90600d9060208401906122bf565b600a546001600160a01b031633146117305760405162461bcd60e51b815260040161084b90612830565b6001600160a01b0381166117955760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084b565b610cd681611b76565b6000805b60135481101561180d57826001600160a01b0316601382815481106117d757634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031614156117fb5750600192915050565b806118058161297f565b9150506117a2565b50600092915050565b60006001600160e01b031982166380ac58cd60e01b148061184757506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b031983161461081b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061189b82610ec3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661194d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b600061195883610ec3565b9050806001600160a01b0316846001600160a01b031614806119935750836001600160a01b031661198884610940565b6001600160a01b0316145b806119c357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119de82610ec3565b6001600160a01b031614611a465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084b565b6001600160a01b038216611aa85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084b565b611ab3838383611d3e565b611abe600082611866565b6001600160a01b0383166000908152600360205260408120805460019290611ae7908490612901565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b159084906128b6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ebf828260405180602001604052806000815250611df6565b611bed8484846119cb565b611bf984848484611e29565b6114855760405162461bcd60e51b815260040161084b906127de565b6060600b80546108bd90612944565b606081611c485750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c725780611c5c8161297f565b9150611c6b9050600a836128ce565b9150611c4c565b60008167ffffffffffffffff811115611c9b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611cc5576020820181803683370190505b5090505b84156119c357611cda600183612901565b9150611ce7600a8661299a565b611cf29060306128b6565b60f81b818381518110611d1557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d37600a866128ce565b9450611cc9565b6001600160a01b038316611d9957611d9481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611dbc565b816001600160a01b0316836001600160a01b031614611dbc57611dbc8382611f36565b6001600160a01b038216611dd3576108a981611fd3565b826001600160a01b0316826001600160a01b0316146108a9576108a982826120ac565b611e0083836120f0565b611e0d6000848484611e29565b6108a95760405162461bcd60e51b815260040161084b906127de565b60006001600160a01b0384163b15611f2b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e6d90339089908890889060040161274a565b602060405180830381600087803b158015611e8757600080fd5b505af1925050508015611eb7575060408051601f3d908101601f19168201909252611eb4918101906125e2565b60015b611f11573d808015611ee5576040519150601f19603f3d011682016040523d82523d6000602084013e611eea565b606091505b508051611f095760405162461bcd60e51b815260040161084b906127de565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119c3565b506001949350505050565b60006001611f4384610f47565b611f4d9190612901565b600083815260076020526040902054909150808214611fa0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fe590600190612901565b6000838152600960205260408120546008805493945090928490811061201b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061204a57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061209057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006120b783610f47565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121465760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084b565b6000818152600260205260409020546001600160a01b0316156121ab5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084b565b6121b760008383611d3e565b6001600160a01b03821660009081526003602052604081208054600192906121e09084906128b6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5080546000825590600052602060002090810190610cd69190612333565b8280548282559060005260206000209081019282156122af579160200282015b828111156122af5781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061227c565b506122bb929150612333565b5090565b8280546122cb90612944565b90600052602060002090601f0160209004810192826122ed57600085556122af565b82601f1061230657805160ff19168380011785556122af565b828001600101855582156122af579182015b828111156122af578251825591602001919060010190612318565b5b808211156122bb5760008155600101612334565b600067ffffffffffffffff80841115612363576123636129da565b604051601f8501601f19908116603f0116810190828211818310171561238b5761238b6129da565b816040528093508581528686860111156123a457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123d557600080fd5b919050565b803580151581146123d557600080fd5b6000602082840312156123fb578081fd5b611610826123be565b60008060408385031215612416578081fd5b61241f836123be565b915061242d602084016123be565b90509250929050565b60008060006060848603121561244a578081fd5b612453846123be565b9250612461602085016123be565b9150604084013590509250925092565b60008060008060808587031215612486578081fd5b61248f856123be565b935061249d602086016123be565b925060408501359150606085013567ffffffffffffffff8111156124bf578182fd5b8501601f810187136124cf578182fd5b6124de87823560208401612348565b91505092959194509250565b600080604083850312156124fc578182fd5b612505836123be565b915061242d602084016123da565b60008060408385031215612525578182fd5b61252e836123be565b946020939093013593505050565b6000806020838503121561254e578182fd5b823567ffffffffffffffff80821115612565578384fd5b818501915085601f830112612578578384fd5b813581811115612586578485fd5b8660208260051b850101111561259a578485fd5b60209290920196919550909350505050565b6000602082840312156125bd578081fd5b611610826123da565b6000602082840312156125d7578081fd5b8135611610816129f0565b6000602082840312156125f3578081fd5b8151611610816129f0565b60006020828403121561260f578081fd5b813567ffffffffffffffff811115612625578182fd5b8201601f81018413612635578182fd5b6119c384823560208401612348565b600060208284031215612655578081fd5b5035919050565b60008151808452612674816020860160208601612918565b601f01601f19169290920160200192915050565b60008451602061269b8285838a01612918565b8551918401916126ae8184848a01612918565b85549201918390600181811c90808316806126ca57607f831692505b8583108114156126e857634e487b7160e01b88526022600452602488fd5b8080156126fc576001811461270d57612739565b60ff19851688528388019550612739565b60008b815260209020895b858110156127315781548a820152908401908801612718565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061277d9083018461265c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127bf578351835292840192918401916001016127a3565b50909695505050505050565b602081526000611610602083018461265c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128c9576128c96129ae565b500190565b6000826128dd576128dd6129c4565b500490565b60008160001904831182151516156128fc576128fc6129ae565b500290565b600082821015612913576129136129ae565b500390565b60005b8381101561293357818101518382015260200161291b565b838111156114855750506000910152565b600181811c9082168061295857607f821691505b6020821081141561297957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612993576129936129ae565b5060010190565b6000826129a9576129a96129c4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cd657600080fdfea2646970667358221220dc3e94ba91b1f5d0ad3b8e9875468da36f200aa39a01f4f443bb6493454c3e8064736f6c634300080400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000094b6964204b6f6e677a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034b4944000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f626166796265696433766a6a36766e346f656d34716f363766796664737975356664347475617a78796c6236627379646b766e356e6a7779647165000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636c0360eb1161014f578063ba7d2c76116100c1578063da3ef23f1161007a578063da3ef23f1461070d578063df5dcbbf1461072d578063e985e9c51461074d578063f2c4ce1e14610796578063f2fde38b146107b6578063f9d596a6146107d657600080fd5b8063ba7d2c761461066c578063c2edb87614610682578063c6682862146106a2578063c87b56dd146106b7578063d0eb26b0146106d7578063d5abeb01146106f757600080fd5b806395d89b411161011357806395d89b41146105cf578063a0712d68146105e4578063a22cb465146105f7578063a475b5dd14610617578063aa6d4b9d1461062c578063b88d4fde1461064c57600080fd5b80636c0360eb1461054757806370a082311461055c578063715018a61461057c5780637f00c7a6146105915780638da5cb5b146105b157600080fd5b806323b872dd116101e857806344a0d68a116101ac57806344a0d68a1461048e5780634f6ccce7146104ae57806351830227146104ce57806355f804b3146104ed5780635c975abb1461050d5780636352211e1461052757600080fd5b806323b872dd146103f95780632f745c59146104195780633ccfd60b1461043957806342842e0e14610441578063438b63001461046157600080fd5b8063081c8c441161023a578063081c8c4414610348578063095ea7b31461035d57806313faede61461037d57806318160ddd146103a157806318cae269146103b6578063239c70ae146103e357600080fd5b806301ffc9a71461027757806302329a29146102ac5780630676a177146102ce57806306fdde03146102ee578063081812fc14610310575b600080fd5b34801561028357600080fd5b506102976102923660046125c6565b6107f6565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c73660046125ac565b610821565b005b3480156102da57600080fd5b506102cc6102e936600461253c565b610867565b3480156102fa57600080fd5b506103036108ae565b6040516102a391906127cb565b34801561031c57600080fd5b5061033061032b366004612644565b610940565b6040516001600160a01b0390911681526020016102a3565b34801561035457600080fd5b506103036109d5565b34801561036957600080fd5b506102cc610378366004612513565b610a63565b34801561038957600080fd5b50610393600e5481565b6040519081526020016102a3565b3480156103ad57600080fd5b50600854610393565b3480156103c257600080fd5b506103936103d13660046123ea565b60146020526000908152604090205481565b3480156103ef57600080fd5b5061039360105481565b34801561040557600080fd5b506102cc610414366004612436565b610b74565b34801561042557600080fd5b50610393610434366004612513565b610ba5565b6102cc610c3b565b34801561044d57600080fd5b506102cc61045c366004612436565b610cd9565b34801561046d57600080fd5b5061048161047c3660046123ea565b610cf4565b6040516102a39190612787565b34801561049a57600080fd5b506102cc6104a9366004612644565b610db2565b3480156104ba57600080fd5b506103936104c9366004612644565b610de1565b3480156104da57600080fd5b5060125461029790610100900460ff1681565b3480156104f957600080fd5b506102cc6105083660046125fe565b610e82565b34801561051957600080fd5b506012546102979060ff1681565b34801561053357600080fd5b50610330610542366004612644565b610ec3565b34801561055357600080fd5b50610303610f3a565b34801561056857600080fd5b506103936105773660046123ea565b610f47565b34801561058857600080fd5b506102cc610fce565b34801561059d57600080fd5b506102cc6105ac366004612644565b611004565b3480156105bd57600080fd5b50600a546001600160a01b0316610330565b3480156105db57600080fd5b50610303611033565b6102cc6105f2366004612644565b611042565b34801561060357600080fd5b506102cc6106123660046124ea565b611329565b34801561062357600080fd5b506102cc6113ee565b34801561063857600080fd5b50610330610647366004612644565b611429565b34801561065857600080fd5b506102cc610667366004612471565b611453565b34801561067857600080fd5b5061039360115481565b34801561068e57600080fd5b506012546102979062010000900460ff1681565b3480156106ae57600080fd5b5061030361148b565b3480156106c357600080fd5b506103036106d2366004612644565b611498565b3480156106e357600080fd5b506102cc6106f2366004612644565b611617565b34801561070357600080fd5b50610393600f5481565b34801561071957600080fd5b506102cc6107283660046125fe565b611646565b34801561073957600080fd5b506102cc6107483660046125ac565b611683565b34801561075957600080fd5b50610297610768366004612404565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102cc6107b13660046125fe565b6116c9565b3480156107c257600080fd5b506102cc6107d13660046123ea565b611706565b3480156107e257600080fd5b506102976107f13660046123ea565b61179e565b60006001600160e01b0319821663780e9d6360e01b148061081b575061081b82611816565b92915050565b600a546001600160a01b031633146108545760405162461bcd60e51b815260040161084b90612830565b60405180910390fd5b6012805460ff1916911515919091179055565b600a546001600160a01b031633146108915760405162461bcd60e51b815260040161084b90612830565b61089d6013600061223e565b6108a96013838361225c565b505050565b6060600080546108bd90612944565b80601f01602080910402602001604051908101604052809291908181526020018280546108e990612944565b80156109365780601f1061090b57610100808354040283529160200191610936565b820191906000526020600020905b81548152906001019060200180831161091957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109b95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b506000908152600460205260409020546001600160a01b031690565b600d80546109e290612944565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0e90612944565b8015610a5b5780601f10610a3057610100808354040283529160200191610a5b565b820191906000526020600020905b815481529060010190602001808311610a3e57829003601f168201915b505050505081565b6000610a6e82610ec3565b9050806001600160a01b0316836001600160a01b03161415610adc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084b565b336001600160a01b0382161480610af85750610af88133610768565b610b6a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084b565b6108a98383611866565b610b7e33826118d4565b610b9a5760405162461bcd60e51b815260040161084b90612865565b6108a98383836119cb565b6000610bb083610f47565b8210610c125760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161084b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c655760405162461bcd60e51b815260040161084b90612830565b6000610c79600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610cc3576040519150601f19603f3d011682016040523d82523d6000602084013e610cc8565b606091505b5050905080610cd657600080fd5b50565b6108a983838360405180602001604052806000815250611453565b60606000610d0183610f47565b905060008167ffffffffffffffff811115610d2c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610d55578160200160208202803683370190505b50905060005b82811015610daa57610d6d8582610ba5565b828281518110610d8d57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610da28161297f565b915050610d5b565b509392505050565b600a546001600160a01b03163314610ddc5760405162461bcd60e51b815260040161084b90612830565b600e55565b6000610dec60085490565b8210610e4f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161084b565b60088281548110610e7057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610eac5760405162461bcd60e51b815260040161084b90612830565b8051610ebf90600b9060208401906122bf565b5050565b6000818152600260205260408120546001600160a01b03168061081b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084b565b600b80546109e290612944565b60006001600160a01b038216610fb25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ff85760405162461bcd60e51b815260040161084b90612830565b6110026000611b76565b565b600a546001600160a01b0316331461102e5760405162461bcd60e51b815260040161084b90612830565b601055565b6060600180546108bd90612944565b60125460ff161561108e5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161084b565b600061109960085490565b9050600082116110eb5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161084b565b6010548211156111495760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161084b565b600f5461115683836128b6565b111561119d5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161084b565b600a546001600160a01b031633146112d95760125462010000900460ff16151560011415611287576111ce3361179e565b61121a5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161084b565b3360009081526014602052604090205460115461123784836128b6565b11156112855760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161084b565b505b81600e5461129591906128e2565b3410156112d95760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161084b565b60015b8281116108a9573360009081526014602052604081208054916112fe8361297f565b9091555061131790503361131283856128b6565b611bc8565b806113218161297f565b9150506112dc565b6001600160a01b0382163314156113825760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114185760405162461bcd60e51b815260040161084b90612830565b6012805461ff001916610100179055565b6013818154811061143957600080fd5b6000918252602090912001546001600160a01b0316905081565b61145d33836118d4565b6114795760405162461bcd60e51b815260040161084b90612865565b61148584848484611be2565b50505050565b600c80546109e290612944565b6000818152600260205260409020546060906001600160a01b03166115175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084b565b601254610100900460ff166115b857600d805461153390612944565b80601f016020809104026020016040519081016040528092919081815260200182805461155f90612944565b80156115ac5780601f10611581576101008083540402835291602001916115ac565b820191906000526020600020905b81548152906001019060200180831161158f57829003601f168201915b50505050509050919050565b60006115c2611c15565b905060008151116115e25760405180602001604052806000815250611610565b806115ec84611c24565b600c60405160200161160093929190612688565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116415760405162461bcd60e51b815260040161084b90612830565b601155565b600a546001600160a01b031633146116705760405162461bcd60e51b815260040161084b90612830565b8051610ebf90600c9060208401906122bf565b600a546001600160a01b031633146116ad5760405162461bcd60e51b815260040161084b90612830565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b031633146116f35760405162461bcd60e51b815260040161084b90612830565b8051610ebf90600d9060208401906122bf565b600a546001600160a01b031633146117305760405162461bcd60e51b815260040161084b90612830565b6001600160a01b0381166117955760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084b565b610cd681611b76565b6000805b60135481101561180d57826001600160a01b0316601382815481106117d757634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031614156117fb5750600192915050565b806118058161297f565b9150506117a2565b50600092915050565b60006001600160e01b031982166380ac58cd60e01b148061184757506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b031983161461081b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061189b82610ec3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661194d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b600061195883610ec3565b9050806001600160a01b0316846001600160a01b031614806119935750836001600160a01b031661198884610940565b6001600160a01b0316145b806119c357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119de82610ec3565b6001600160a01b031614611a465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084b565b6001600160a01b038216611aa85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084b565b611ab3838383611d3e565b611abe600082611866565b6001600160a01b0383166000908152600360205260408120805460019290611ae7908490612901565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b159084906128b6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ebf828260405180602001604052806000815250611df6565b611bed8484846119cb565b611bf984848484611e29565b6114855760405162461bcd60e51b815260040161084b906127de565b6060600b80546108bd90612944565b606081611c485750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c725780611c5c8161297f565b9150611c6b9050600a836128ce565b9150611c4c565b60008167ffffffffffffffff811115611c9b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611cc5576020820181803683370190505b5090505b84156119c357611cda600183612901565b9150611ce7600a8661299a565b611cf29060306128b6565b60f81b818381518110611d1557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d37600a866128ce565b9450611cc9565b6001600160a01b038316611d9957611d9481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611dbc565b816001600160a01b0316836001600160a01b031614611dbc57611dbc8382611f36565b6001600160a01b038216611dd3576108a981611fd3565b826001600160a01b0316826001600160a01b0316146108a9576108a982826120ac565b611e0083836120f0565b611e0d6000848484611e29565b6108a95760405162461bcd60e51b815260040161084b906127de565b60006001600160a01b0384163b15611f2b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e6d90339089908890889060040161274a565b602060405180830381600087803b158015611e8757600080fd5b505af1925050508015611eb7575060408051601f3d908101601f19168201909252611eb4918101906125e2565b60015b611f11573d808015611ee5576040519150601f19603f3d011682016040523d82523d6000602084013e611eea565b606091505b508051611f095760405162461bcd60e51b815260040161084b906127de565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119c3565b506001949350505050565b60006001611f4384610f47565b611f4d9190612901565b600083815260076020526040902054909150808214611fa0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fe590600190612901565b6000838152600960205260408120546008805493945090928490811061201b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061204a57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061209057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006120b783610f47565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121465760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084b565b6000818152600260205260409020546001600160a01b0316156121ab5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084b565b6121b760008383611d3e565b6001600160a01b03821660009081526003602052604081208054600192906121e09084906128b6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5080546000825590600052602060002090810190610cd69190612333565b8280548282559060005260206000209081019282156122af579160200282015b828111156122af5781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061227c565b506122bb929150612333565b5090565b8280546122cb90612944565b90600052602060002090601f0160209004810192826122ed57600085556122af565b82601f1061230657805160ff19168380011785556122af565b828001600101855582156122af579182015b828111156122af578251825591602001919060010190612318565b5b808211156122bb5760008155600101612334565b600067ffffffffffffffff80841115612363576123636129da565b604051601f8501601f19908116603f0116810190828211818310171561238b5761238b6129da565b816040528093508581528686860111156123a457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123d557600080fd5b919050565b803580151581146123d557600080fd5b6000602082840312156123fb578081fd5b611610826123be565b60008060408385031215612416578081fd5b61241f836123be565b915061242d602084016123be565b90509250929050565b60008060006060848603121561244a578081fd5b612453846123be565b9250612461602085016123be565b9150604084013590509250925092565b60008060008060808587031215612486578081fd5b61248f856123be565b935061249d602086016123be565b925060408501359150606085013567ffffffffffffffff8111156124bf578182fd5b8501601f810187136124cf578182fd5b6124de87823560208401612348565b91505092959194509250565b600080604083850312156124fc578182fd5b612505836123be565b915061242d602084016123da565b60008060408385031215612525578182fd5b61252e836123be565b946020939093013593505050565b6000806020838503121561254e578182fd5b823567ffffffffffffffff80821115612565578384fd5b818501915085601f830112612578578384fd5b813581811115612586578485fd5b8660208260051b850101111561259a578485fd5b60209290920196919550909350505050565b6000602082840312156125bd578081fd5b611610826123da565b6000602082840312156125d7578081fd5b8135611610816129f0565b6000602082840312156125f3578081fd5b8151611610816129f0565b60006020828403121561260f578081fd5b813567ffffffffffffffff811115612625578182fd5b8201601f81018413612635578182fd5b6119c384823560208401612348565b600060208284031215612655578081fd5b5035919050565b60008151808452612674816020860160208601612918565b601f01601f19169290920160200192915050565b60008451602061269b8285838a01612918565b8551918401916126ae8184848a01612918565b85549201918390600181811c90808316806126ca57607f831692505b8583108114156126e857634e487b7160e01b88526022600452602488fd5b8080156126fc576001811461270d57612739565b60ff19851688528388019550612739565b60008b815260209020895b858110156127315781548a820152908401908801612718565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061277d9083018461265c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127bf578351835292840192918401916001016127a3565b50909695505050505050565b602081526000611610602083018461265c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128c9576128c96129ae565b500190565b6000826128dd576128dd6129c4565b500490565b60008160001904831182151516156128fc576128fc6129ae565b500290565b600082821015612913576129136129ae565b500390565b60005b8381101561293357818101518382015260200161291b565b838111156114855750506000910152565b600181811c9082168061295857607f821691505b6020821081141561297957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612993576129936129ae565b5060010190565b6000826129a9576129a96129c4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cd657600080fdfea2646970667358221220dc3e94ba91b1f5d0ad3b8e9875468da36f200aa39a01f4f443bb6493454c3e8064736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000094b6964204b6f6e677a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034b4944000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f626166796265696433766a6a36766e346f656d34716f363766796664737975356664347475617a78796c6236627379646b766e356e6a7779647165000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Kid Kongz
Arg [1] : _symbol (string): KID
Arg [2] : _initBaseURI (string):
Arg [3] : _initNotRevealedUri (string): ipfs://bafybeid3vjj6vn4oem4qo67fyfdsyu5fd4tuazxylb6bsydkvn5njwydqe

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 4b6964204b6f6e677a0000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4b49440000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [10] : 697066733a2f2f626166796265696433766a6a36766e346f656d34716f363766
Arg [11] : 796664737975356664347475617a78796c6236627379646b766e356e6a777964
Arg [12] : 7165000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

41069:4365:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34845:224;;;;;;;;;;-1:-1:-1;34845:224:0;;;;;:::i;:::-;;:::i;:::-;;;8634:14:1;;8627:22;8609:41;;8597:2;8582:18;34845:224:0;;;;;;;;44990:73;;;;;;;;;;-1:-1:-1;44990:73:0;;;;;:::i;:::-;;:::i;:::-;;45156:119;;;;;;;;;;-1:-1:-1;45156:119:0;;;;;:::i;:::-;;:::i;22737:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24296:221::-;;;;;;;;;;-1:-1:-1;24296:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7292:32:1;;;7274:51;;7262:2;7247:18;24296:221:0;7229:102:1;41318:28:0;;;;;;;;;;;;;:::i;23819:411::-;;;;;;;;;;-1:-1:-1;23819:411:0;;;;;:::i;:::-;;:::i;41374:32::-;;;;;;;;;;;;;;;;;;;18757:25:1;;;18745:2;18730:18;41374:32:0;18712:76:1;35485:113:0;;;;;;;;;;-1:-1:-1;35573:10:0;:17;35485:113;;41764:55;;;;;;;;;;-1:-1:-1;41764:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;41514:33;;;;;;;;;;;;;;;;25186:339;;;;;;;;;;-1:-1:-1;25186:339:0;;;;;:::i;:::-;;:::i;35153:256::-;;;;;;;;;;-1:-1:-1;35153:256:0;;;;;:::i;:::-;;:::i;45282:149::-;;;:::i;25596:185::-;;;;;;;;;;-1:-1:-1;25596:185:0;;;;;:::i;:::-;;:::i;43364:348::-;;;;;;;;;;-1:-1:-1;43364:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44422:80::-;;;;;;;;;;-1:-1:-1;44422:80:0;;;;;:::i;:::-;;:::i;35675:233::-;;;;;;;;;;-1:-1:-1;35675:233:0;;;;;:::i;:::-;;:::i;41667:28::-;;;;;;;;;;-1:-1:-1;41667:28:0;;;;;;;;;;;44630:98;;;;;;;;;;-1:-1:-1;44630:98:0;;;;;:::i;:::-;;:::i;41636:26::-;;;;;;;;;;-1:-1:-1;41636:26:0;;;;;;;;22431:239;;;;;;;;;;-1:-1:-1;22431:239:0;;;;;:::i;:::-;;:::i;41193:21::-;;;;;;;;;;;;;:::i;22161:208::-;;;;;;;;;;-1:-1:-1;22161:208:0;;;;;:::i;:::-;;:::i;2583:94::-;;;;;;;;;;;;;:::i;44508:116::-;;;;;;;;;;-1:-1:-1;44508:116:0;;;;;:::i;:::-;;:::i;2358:87::-;;;;;;;;;;-1:-1:-1;2431:6:0;;-1:-1:-1;;;;;2431:6:0;2358:87;;22906:104;;;;;;;;;;;;;:::i;42219:919::-;;;;;;:::i;:::-;;:::i;24589:295::-;;;;;;;;;;-1:-1:-1;24589:295:0;;;;;:::i;:::-;;:::i;44237:65::-;;;;;;;;;;;;;:::i;41731:28::-;;;;;;;;;;-1:-1:-1;41731:28:0;;;;;:::i;:::-;;:::i;25852:328::-;;;;;;;;;;-1:-1:-1;25852:328:0;;;;;:::i;:::-;;:::i;41591:38::-;;;;;;;;;;;;;;;;41700:26;;;;;;;;;;-1:-1:-1;41700:26:0;;;;;;;;;;;41250:37;;;;;;;;;;;;;:::i;43718:497::-;;;;;;;;;;-1:-1:-1;43718:497:0;;;;;:::i;:::-;;:::i;44310:104::-;;;;;;;;;;-1:-1:-1;44310:104:0;;;;;:::i;:::-;;:::i;41439:31::-;;;;;;;;;;;;;;;;44734:122;;;;;;;;;;-1:-1:-1;44734:122:0;;;;;:::i;:::-;;:::i;45071:77::-;;;;;;;;;;-1:-1:-1;45071:77:0;;;;;:::i;:::-;;:::i;24955:164::-;;;;;;;;;;-1:-1:-1;24955:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25076:25:0;;;25052:4;25076:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24955:164;44864:120;;;;;;;;;;-1:-1:-1;44864:120:0;;;;;:::i;:::-;;:::i;2685:192::-;;;;;;;;;;-1:-1:-1;2685:192:0;;;;;:::i;:::-;;:::i;43146:212::-;;;;;;;;;;-1:-1:-1;43146:212:0;;;;;:::i;:::-;;:::i;34845:224::-;34947:4;-1:-1:-1;;;;;;34971:50:0;;-1:-1:-1;;;34971:50:0;;:90;;;35025:36;35049:11;35025:23;:36::i;:::-;34964:97;34845:224;-1:-1:-1;;34845:224:0:o;44990:73::-;2431:6;;-1:-1:-1;;;;;2431:6:0;1903:10;2493:23;2485:68;;;;-1:-1:-1;;;2485:68:0;;;;;;;:::i;:::-;;;;;;;;;45042:6:::1;:15:::0;;-1:-1:-1;;45042:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44990:73::o;45156:119::-;2431:6;;-1:-1:-1;;;;;2431:6:0;1903:10;2493:23;2485:68;;;;-1:-1:-1;;;2485:68:0;;;;;;;:::i;:::-;45224:18:::1;45231:11;;45224:18;:::i;:::-;45249:20;:11;45263:6:::0;;45249:20:::1;:::i;:::-;;45156:119:::0;;:::o;22737:100::-;22791:13;22824:5;22817:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22737:100;:::o;24296:221::-;24372:7;27779:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27779:16:0;24392:73;;;;-1:-1:-1;;;24392:73:0;;14574:2:1;24392:73:0;;;14556:21:1;14613:2;14593:18;;;14586:30;14652:34;14632:18;;;14625:62;-1:-1:-1;;;14703:18:1;;;14696:42;14755:19;;24392:73:0;14546:234:1;24392:73:0;-1:-1:-1;24485:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24485:24:0;;24296:221::o;41318:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23819:411::-;23900:13;23916:23;23931:7;23916:14;:23::i;:::-;23900:39;;23964:5;-1:-1:-1;;;;;23958:11:0;:2;-1:-1:-1;;;;;23958:11:0;;;23950:57;;;;-1:-1:-1;;;23950:57:0;;16525:2:1;23950:57:0;;;16507:21:1;16564:2;16544:18;;;16537:30;16603:34;16583:18;;;16576:62;-1:-1:-1;;;16654:18:1;;;16647:31;16695:19;;23950:57:0;16497:223:1;23950:57:0;1903:10;-1:-1:-1;;;;;24042:21:0;;;;:62;;-1:-1:-1;24067:37:0;24084:5;1903:10;24955:164;:::i;24067:37::-;24020:168;;;;-1:-1:-1;;;24020:168:0;;12211:2:1;24020:168:0;;;12193:21:1;12250:2;12230:18;;;12223:30;12289:34;12269:18;;;12262:62;12360:26;12340:18;;;12333:54;12404:19;;24020:168:0;12183:246:1;24020:168:0;24201:21;24210:2;24214:7;24201:8;:21::i;25186:339::-;25381:41;1903:10;25414:7;25381:18;:41::i;:::-;25373:103;;;;-1:-1:-1;;;25373:103:0;;;;;;;:::i;:::-;25489:28;25499:4;25505:2;25509:7;25489:9;:28::i;35153:256::-;35250:7;35286:23;35303:5;35286:16;:23::i;:::-;35278:5;:31;35270:87;;;;-1:-1:-1;;;35270:87:0;;9087:2:1;35270:87:0;;;9069:21:1;9126:2;9106:18;;;9099:30;9165:34;9145:18;;;9138:62;-1:-1:-1;;;9216:18:1;;;9209:41;9267:19;;35270:87:0;9059:233:1;35270:87:0;-1:-1:-1;;;;;;35375:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35153:256::o;45282:149::-;2431:6;;-1:-1:-1;;;;;2431:6:0;1903:10;2493:23;2485:68;;;;-1:-1:-1;;;2485:68:0;;;;;;;:::i;:::-;45337:7:::1;45358;2431:6:::0;;-1:-1:-1;;;;;2431:6:0;;2358:87;45358:7:::1;-1:-1:-1::0;;;;;45350:21:0::1;45379;45350:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45336:69;;;45420:2;45412:11;;;::::0;::::1;;2564:1;45282:149::o:0;25596:185::-;25734:39;25751:4;25757:2;25761:7;25734:39;;;;;;;;;;;;:16;:39::i;43364:348::-;43439:16;43467:23;43493:17;43503:6;43493:9;:17::i;:::-;43467:43;;43517:25;43559:15;43545:30;;;;;;-1:-1:-1;;;43545:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43545:30:0;;43517:58;;43587:9;43582:103;43602:15;43598:1;:19;43582:103;;;43647:30;43667:6;43675:1;43647:19;:30::i;:::-;43633:8;43642:1;43633:11;;;;;;-1:-1:-1;;;43633:11:0;;;;;;;;;;;;;;;;;;:44;43619:3;;;;:::i;:::-;;;;43582:103;;;-1:-1:-1;43698:8:0;43364:348;-1:-1:-1;;;43364:348:0:o;44422:80::-;2431:6;;-1:-1:-1;;;;;2431:6:0;1903:10;2493:23;2485:68;;;;-1:-1:-1;;;2485:68:0;;;;;;;:::i;:::-;44481:4:::1;:15:::0;44422:80::o;35675:233::-;35750:7;35786:30;35573:10;:17;;35485:113;35786:30;35778:5;:38;35770:95;;;;-1:-1:-1;;;35770:95:0;;17692:2:1;35770:95:0;;;17674:21:1;17731:2;17711:18;;;17704:30;17770:34;17750:18;;;17743:62;-1:-1:-1;;;17821:18:1;;;17814:42;17873:19;;35770:95:0;17664:234:1;35770:95:0;35883:10;35894:5;35883:17;;;;;;-1:-1:-1;;;35883:17:0;;;;;;;;;;;;;;;;;35876:24;;35675:233;;;:::o;44630:98::-;2431:6;;-1:-1:-1;;;;;2431:6:0;1903:10;2493:23;2485:68;;;;-1:-1:-1;;;2485:68:0;;;;;;;:::i;:::-;44701:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44630:98:::0;:::o;22431:239::-;22503:7;22539:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22539:16:0;22574:19;22566:73;;;;-1:-1:-1;;;22566:73:0;;13047:2:1;22566:73:0;;;13029:21:1;13086:2;13066:18;;;13059:30;13125:34;13105:18;;;13098:62;-1:-1:-1;;;13176:18:1;;;13169:39;13225:19;;22566:73:0;13019:231:1;41193:21:0;;;;;;;:::i;22161:208::-;22233:7;-1:-1:-1;;;;;22261:19:0;;22253:74;;;;-1:-1:-1;;;22253:74:0;;12636:2:1;22253:74:0;;;12618:21:1;12675:2;12655:18;;;12648:30;12714:34;12694:18;;;12687:62;-1:-1:-1;;;12765:18:1;;;12758:40;12815:19;;22253:74:0;12608:232:1;22253:74:0;-1:-1:-1;;;;;;22345:16:0;;;;;:9;:16;;;;;;;22161:208::o;2583:94::-;2431:6;;-1:-1:-1;;;;;2431:6:0;1903:10;2493:23;2485:68;;;;-1:-1:-1;;;2485:68:0;;;;;;;:::i;:::-;2648:21:::1;2666:1;2648:9;:21::i;:::-;2583:94::o:0;44508:116::-;2431:6;;-1:-1:-1;;;;;2431:6:0;1903:10;2493:23;2485:68;;;;-1:-1:-1;;;2485:68:0;;;;;;;:::i;:::-;44585:13:::1;:33:::0;44508:116::o;22906:104::-;22962:13;22995:7;22988:14;;;;;:::i;42219:919::-;42285:6;;;;42284:7;42276:42;;;;-1:-1:-1;;;42276:42:0;;15348:2:1;42276:42:0;;;15330:21:1;15387:2;15367:18;;;15360:30;-1:-1:-1;;;15406:18:1;;;15399:52;15468:18;;42276:42:0;15320:172:1;42276:42:0;42325:14;42342:13;35573:10;:17;;35485:113;42342:13;42325:30;;42384:1;42370:11;:15;42362:55;;;;-1:-1:-1;;;42362:55:0;;18457:2:1;42362:55:0;;;18439:21:1;18496:2;18476:18;;;18469:30;18535:29;18515:18;;;18508:57;18582:18;;42362:55:0;18429:177:1;42362:55:0;42447:13;;42432:11;:28;;42424:77;;;;-1:-1:-1;;;42424:77:0;;13808:2:1;42424:77:0;;;13790:21:1;13847:2;13827:18;;;13820:30;13886:34;13866:18;;;13859:62;-1:-1:-1;;;13937:18:1;;;13930:34;13981:19;;42424:77:0;13780:226:1;42424:77:0;42540:9;;42516:20;42525:11;42516:6;:20;:::i;:::-;:33;;42508:68;;;;-1:-1:-1;;;42508:68:0;;13457:2:1;42508:68:0;;;13439:21:1;13496:2;13476:18;;;13469:30;-1:-1:-1;;;13515:18:1;;;13508:52;13577:18;;42508:68:0;13429:172:1;42508:68:0;2431:6;;-1:-1:-1;;;;;2431:6:0;42589:10;:21;42585:398;;42626:6;;;;;;;:14;;42636:4;42626:14;42623:280;;;42665:16;42670:10;42665:4;:16::i;:::-;42657:52;;;;-1:-1:-1;;;42657:52:0;;18105:2:1;42657:52:0;;;18087:21:1;18144:2;18124:18;;;18117:30;18183:25;18163:18;;;18156:53;18226:18;;42657:52:0;18077:173:1;42657:52:0;42772:10;42724:24;42751:32;;;:20;:32;;;;;;42840:18;;42806:30;42825:11;42751:32;42806:30;:::i;:::-;:52;;42798:93;;;;-1:-1:-1;;;42798:93:0;;10682:2:1;42798:93:0;;;10664:21:1;10721:2;10701:18;;;10694:30;10760;10740:18;;;10733:58;10808:18;;42798:93:0;10654:178:1;42798:93:0;42623:280;;42941:11;42934:4;;:18;;;;:::i;:::-;42921:9;:31;;42913:62;;;;-1:-1:-1;;;42913:62:0;;16927:2:1;42913:62:0;;;16909:21:1;16966:2;16946:18;;;16939:30;-1:-1:-1;;;16985:18:1;;;16978:48;17043:18;;42913:62:0;16899:168:1;42913:62:0;43012:1;42995:138;43020:11;43015:1;:16;42995:138;;43070:10;43049:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;43092:33:0;;-1:-1:-1;43102:10:0;43114;43123:1;43114:6;:10;:::i;:::-;43092:9;:33::i;:::-;43033:3;;;;:::i;:::-;;;;42995:138;;24589:295;-1:-1:-1;;;;;24692:24:0;;1903:10;24692:24;;24684:62;;;;-1:-1:-1;;;24684:62:0;;11444:2:1;24684:62:0;;;11426:21:1;11483:2;11463:18;;;11456:30;11522:27;11502:18;;;11495:55;11567:18;;24684:62:0;11416:175:1;24684:62:0;1903:10;24759:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24759:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24759:53:0;;;;;;;;;;24828:48;;8609:41:1;;;24759:42:0;;1903:10;24828:48;;8582:18:1;24828:48:0;;;;;;;24589:295;;:::o;44237:65::-;2431:6;;-1:-1:-1;;;;;2431:6:0;1903:10;2493:23;2485:68;;;;-1:-1:-1;;;2485:68:0;;;;;;;:::i;:::-;44281:8:::1;:15:::0;;-1:-1:-1;;44281:15:0::1;;;::::0;;44237:65::o;41731:28::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41731:28:0;;-1:-1:-1;41731:28:0;:::o;25852:328::-;26027:41;1903:10;26060:7;26027:18;:41::i;:::-;26019:103;;;;-1:-1:-1;;;26019:103:0;;;;;;;:::i;:::-;26133:39;26147:4;26153:2;26157:7;26166:5;26133:13;:39::i;:::-;25852:328;;;;:::o;41250:37::-;;;;;;;:::i;43718:497::-;27755:4;27779:16;;;:7;:16;;;;;;43816:13;;-1:-1:-1;;;;;27779:16:0;43841:97;;;;-1:-1:-1;;;43841:97:0;;16109:2:1;43841:97:0;;;16091:21:1;16148:2;16128:18;;;16121:30;16187:34;16167:18;;;16160:62;-1:-1:-1;;;16238:18:1;;;16231:45;16293:19;;43841:97:0;16081:237:1;43841:97:0;43954:8;;;;;;;43951:62;;43991:14;43984:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43718:497;;;:::o;43951:62::-;44021:28;44052:10;:8;:10::i;:::-;44021:41;;44107:1;44082:14;44076:28;:32;:133;;;;;;;;;;;;;;;;;44144:14;44160:18;:7;:16;:18::i;:::-;44180:13;44127:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44076:133;44069:140;43718:497;-1:-1:-1;;;43718:497:0:o;44310:104::-;2431:6;;-1:-1:-1;;;;;2431:6:0;1903:10;2493:23;2485:68;;;;-1:-1:-1;;;2485:68:0;;;;;;;:::i;:::-;44381:18:::1;:27:::0;44310:104::o;44734:122::-;2431:6;;-1:-1:-1;;;;;2431:6:0;1903:10;2493:23;2485:68;;;;-1:-1:-1;;;2485:68:0;;;;;;;:::i;:::-;44817:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;45071:77::-:0;2431:6;;-1:-1:-1;;;;;2431:6:0;1903:10;2493:23;2485:68;;;;-1:-1:-1;;;2485:68:0;;;;;;;:::i;:::-;45127:6:::1;:15:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;45127:15:0;;::::1;::::0;;;::::1;::::0;;45071:77::o;44864:120::-;2431:6;;-1:-1:-1;;;;;2431:6:0;1903:10;2493:23;2485:68;;;;-1:-1:-1;;;2485:68:0;;;;;;;:::i;:::-;44946:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;2685:192::-:0;2431:6;;-1:-1:-1;;;;;2431:6:0;1903:10;2493:23;2485:68;;;;-1:-1:-1;;;2485:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2774:22:0;::::1;2766:73;;;::::0;-1:-1:-1;;;2766:73:0;;9918:2:1;2766:73:0::1;::::0;::::1;9900:21:1::0;9957:2;9937:18;;;9930:30;9996:34;9976:18;;;9969:62;-1:-1:-1;;;10047:18:1;;;10040:36;10093:19;;2766:73:0::1;9890:228:1::0;2766:73:0::1;2850:19;2860:8;2850:9;:19::i;43146:212::-:0;43196:4;;43209:125;43230:11;:18;43226:22;;43209:125;;;43286:5;-1:-1:-1;;;;;43268:23:0;:11;43280:1;43268:14;;;;;;-1:-1:-1;;;43268:14:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43268:14:0;:23;43264:63;;;-1:-1:-1;43313:4:0;;43146:212;-1:-1:-1;;43146:212:0:o;43264:63::-;43250:3;;;;:::i;:::-;;;;43209:125;;;-1:-1:-1;43347:5:0;;43146:212;-1:-1:-1;;43146:212:0:o;21792:305::-;21894:4;-1:-1:-1;;;;;;21931:40:0;;-1:-1:-1;;;21931:40:0;;:105;;-1:-1:-1;;;;;;;21988:48:0;;-1:-1:-1;;;21988:48:0;21931:105;:158;;;-1:-1:-1;;;;;;;;;;13880:40:0;;;22053:36;13771:157;31672:174;31747:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31747:29:0;-1:-1:-1;;;;;31747:29:0;;;;;;;;:24;;31801:23;31747:24;31801:14;:23::i;:::-;-1:-1:-1;;;;;31792:46:0;;;;;;;;;;;31672:174;;:::o;27984:348::-;28077:4;27779:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27779:16:0;28094:73;;;;-1:-1:-1;;;28094:73:0;;11798:2:1;28094:73:0;;;11780:21:1;11837:2;11817:18;;;11810:30;11876:34;11856:18;;;11849:62;-1:-1:-1;;;11927:18:1;;;11920:42;11979:19;;28094:73:0;11770:234:1;28094:73:0;28178:13;28194:23;28209:7;28194:14;:23::i;:::-;28178:39;;28247:5;-1:-1:-1;;;;;28236:16:0;:7;-1:-1:-1;;;;;28236:16:0;;:51;;;;28280:7;-1:-1:-1;;;;;28256:31:0;:20;28268:7;28256:11;:20::i;:::-;-1:-1:-1;;;;;28256:31:0;;28236:51;:87;;;-1:-1:-1;;;;;;25076:25:0;;;25052:4;25076:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28291:32;28228:96;27984:348;-1:-1:-1;;;;27984:348:0:o;30976:578::-;31135:4;-1:-1:-1;;;;;31108:31:0;:23;31123:7;31108:14;:23::i;:::-;-1:-1:-1;;;;;31108:31:0;;31100:85;;;;-1:-1:-1;;;31100:85:0;;15699:2:1;31100:85:0;;;15681:21:1;15738:2;15718:18;;;15711:30;15777:34;15757:18;;;15750:62;-1:-1:-1;;;15828:18:1;;;15821:39;15877:19;;31100:85:0;15671:231:1;31100:85:0;-1:-1:-1;;;;;31204:16:0;;31196:65;;;;-1:-1:-1;;;31196:65:0;;11039:2:1;31196:65:0;;;11021:21:1;11078:2;11058:18;;;11051:30;11117:34;11097:18;;;11090:62;-1:-1:-1;;;11168:18:1;;;11161:34;11212:19;;31196:65:0;11011:226:1;31196:65:0;31274:39;31295:4;31301:2;31305:7;31274:20;:39::i;:::-;31378:29;31395:1;31399:7;31378:8;:29::i;:::-;-1:-1:-1;;;;;31420:15:0;;;;;;:9;:15;;;;;:20;;31439:1;;31420:15;:20;;31439:1;;31420:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31451:13:0;;;;;;:9;:13;;;;;:18;;31468:1;;31451:13;:18;;31468:1;;31451:18;:::i;:::-;;;;-1:-1:-1;;31480:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31480:21:0;-1:-1:-1;;;;;31480:21:0;;;;;;;;;31519:27;;31480:16;;31519:27;;;;;;;30976:578;;;:::o;2885:173::-;2960:6;;;-1:-1:-1;;;;;2977:17:0;;;-1:-1:-1;;;;;;2977:17:0;;;;;;;3010:40;;2960:6;;;2977:17;2960:6;;3010:40;;2941:16;;3010:40;2885:173;;:::o;28674:110::-;28750:26;28760:2;28764:7;28750:26;;;;;;;;;;;;:9;:26::i;27062:315::-;27219:28;27229:4;27235:2;27239:7;27219:9;:28::i;:::-;27266:48;27289:4;27295:2;27299:7;27308:5;27266:22;:48::i;:::-;27258:111;;;;-1:-1:-1;;;27258:111:0;;;;;;;:::i;42098:102::-;42158:13;42187:7;42180:14;;;;;:::i;355:536::-;411:13;445:10;441:53;;-1:-1:-1;;472:10:0;;;;;;;;;;;;-1:-1:-1;;;472:10:0;;;;;355:536::o;441:53::-;519:5;504:12;560:78;567:9;;560:78;;593:8;;;;:::i;:::-;;-1:-1:-1;616:10:0;;-1:-1:-1;624:2:0;616:10;;:::i;:::-;;;560:78;;;648:19;680:6;670:17;;;;;;-1:-1:-1;;;670:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;670:17:0;;648:39;;698:154;705:10;;698:154;;732:11;742:1;732:11;;:::i;:::-;;-1:-1:-1;801:10:0;809:2;801:5;:10;:::i;:::-;788:24;;:2;:24;:::i;:::-;775:39;;758:6;765;758:14;;;;;;-1:-1:-1;;;758:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;758:56:0;;;;;;;;-1:-1:-1;829:11:0;838:2;829:11;;:::i;:::-;;;698:154;;36521:589;-1:-1:-1;;;;;36727:18:0;;36723:187;;36762:40;36794:7;37937:10;:17;;37910:24;;;;:15;:24;;;;;:44;;;37965:24;;;;;;;;;;;;37833:164;36762:40;36723:187;;;36832:2;-1:-1:-1;;;;;36824:10:0;:4;-1:-1:-1;;;;;36824:10:0;;36820:90;;36851:47;36884:4;36890:7;36851:32;:47::i;:::-;-1:-1:-1;;;;;36924:16:0;;36920:183;;36957:45;36994:7;36957:36;:45::i;36920:183::-;37030:4;-1:-1:-1;;;;;37024:10:0;:2;-1:-1:-1;;;;;37024:10:0;;37020:83;;37051:40;37079:2;37083:7;37051:27;:40::i;29011:321::-;29141:18;29147:2;29151:7;29141:5;:18::i;:::-;29192:54;29223:1;29227:2;29231:7;29240:5;29192:22;:54::i;:::-;29170:154;;;;-1:-1:-1;;;29170:154:0;;;;;;;:::i;32411:799::-;32566:4;-1:-1:-1;;;;;32587:13:0;;4154:20;4202:8;32583:620;;32623:72;;-1:-1:-1;;;32623:72:0;;-1:-1:-1;;;;;32623:36:0;;;;;:72;;1903:10;;32674:4;;32680:7;;32689:5;;32623:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32623:72:0;;;;;;;;-1:-1:-1;;32623:72:0;;;;;;;;;;;;:::i;:::-;;;32619:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32865:13:0;;32861:272;;32908:60;;-1:-1:-1;;;32908:60:0;;;;;;;:::i;32861:272::-;33083:6;33077:13;33068:6;33064:2;33060:15;33053:38;32619:529;-1:-1:-1;;;;;;32746:51:0;-1:-1:-1;;;32746:51:0;;-1:-1:-1;32739:58:0;;32583:620;-1:-1:-1;33187:4:0;32411:799;;;;;;:::o;38624:988::-;38890:22;38940:1;38915:22;38932:4;38915:16;:22::i;:::-;:26;;;;:::i;:::-;38952:18;38973:26;;;:17;:26;;;;;;38890:51;;-1:-1:-1;39106:28:0;;;39102:328;;-1:-1:-1;;;;;39173:18:0;;39151:19;39173:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39224:30;;;;;;:44;;;39341:30;;:17;:30;;;;;:43;;;39102:328;-1:-1:-1;39526:26:0;;;;:17;:26;;;;;;;;39519:33;;;-1:-1:-1;;;;;39570:18:0;;;;;:12;:18;;;;;:34;;;;;;;39563:41;38624:988::o;39907:1079::-;40185:10;:17;40160:22;;40185:21;;40205:1;;40185:21;:::i;:::-;40217:18;40238:24;;;:15;:24;;;;;;40611:10;:26;;40160:46;;-1:-1:-1;40238:24:0;;40160:46;;40611:26;;;;-1:-1:-1;;;40611:26:0;;;;;;;;;;;;;;;;;40589:48;;40675:11;40650:10;40661;40650:22;;;;;;-1:-1:-1;;;40650:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40755:28;;;:15;:28;;;;;;;:41;;;40927:24;;;;;40920:31;40962:10;:16;;;;;-1:-1:-1;;;40962:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39907:1079;;;;:::o;37411:221::-;37496:14;37513:20;37530:2;37513:16;:20::i;:::-;-1:-1:-1;;;;;37544:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37589:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37411:221:0:o;29668:382::-;-1:-1:-1;;;;;29748:16:0;;29740:61;;;;-1:-1:-1;;;29740:61:0;;14213:2:1;29740:61:0;;;14195:21:1;;;14232:18;;;14225:30;14291:34;14271:18;;;14264:62;14343:18;;29740:61:0;14185:182:1;29740:61:0;27755:4;27779:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27779:16:0;:30;29812:58;;;;-1:-1:-1;;;29812:58:0;;10325:2:1;29812:58:0;;;10307:21:1;10364:2;10344:18;;;10337:30;10403;10383:18;;;10376:58;10451:18;;29812:58:0;10297:178:1;29812:58:0;29883:45;29912:1;29916:2;29920:7;29883:20;:45::i;:::-;-1:-1:-1;;;;;29941:13:0;;;;;;:9;:13;;;;;:18;;29958:1;;29941:13;:18;;29958:1;;29941:18;:::i;:::-;;;;-1:-1:-1;;29970:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29970:21:0;-1:-1:-1;;;;;29970:21:0;;;;;;;;30009:33;;29970:16;;;30009:33;;29970:16;;30009:33;29668:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:665::-;3137:6;3145;3198:2;3186:9;3177:7;3173:23;3169:32;3166:2;;;3219:6;3211;3204:22;3166:2;3264:9;3251:23;3293:18;3334:2;3326:6;3323:14;3320:2;;;3355:6;3347;3340:22;3320:2;3398:6;3387:9;3383:22;3373:32;;3443:7;3436:4;3432:2;3428:13;3424:27;3414:2;;3470:6;3462;3455:22;3414:2;3515;3502:16;3541:2;3533:6;3530:14;3527:2;;;3562:6;3554;3547:22;3527:2;3620:7;3615:2;3605:6;3602:1;3598:14;3594:2;3590:23;3586:32;3583:45;3580:2;;;3646:6;3638;3631:22;3580:2;3682;3674:11;;;;;3704:6;;-1:-1:-1;3156:560:1;;-1:-1:-1;;;;3156:560:1:o;3721:190::-;3777:6;3830:2;3818:9;3809:7;3805:23;3801:32;3798:2;;;3851:6;3843;3836:22;3798:2;3879:26;3895:9;3879:26;:::i;3916:255::-;3974:6;4027:2;4015:9;4006:7;4002:23;3998:32;3995:2;;;4048:6;4040;4033:22;3995:2;4092:9;4079:23;4111:30;4135:5;4111:30;:::i;4176:259::-;4245:6;4298:2;4286:9;4277:7;4273:23;4269:32;4266:2;;;4319:6;4311;4304:22;4266:2;4356:9;4350:16;4375:30;4399:5;4375:30;:::i;4440:480::-;4509:6;4562:2;4550:9;4541:7;4537:23;4533:32;4530:2;;;4583:6;4575;4568:22;4530:2;4628:9;4615:23;4661:18;4653:6;4650:30;4647:2;;;4698:6;4690;4683:22;4647:2;4726:22;;4779:4;4771:13;;4767:27;-1:-1:-1;4757:2:1;;4813:6;4805;4798:22;4757:2;4841:73;4906:7;4901:2;4888:16;4883:2;4879;4875:11;4841:73;:::i;4925:190::-;4984:6;5037:2;5025:9;5016:7;5012:23;5008:32;5005:2;;;5058:6;5050;5043:22;5005:2;-1:-1:-1;5086:23:1;;4995:120;-1:-1:-1;4995:120:1:o;5120:257::-;5161:3;5199:5;5193:12;5226:6;5221:3;5214:19;5242:63;5298:6;5291:4;5286:3;5282:14;5275:4;5268:5;5264:16;5242:63;:::i;:::-;5359:2;5338:15;-1:-1:-1;;5334:29:1;5325:39;;;;5366:4;5321:50;;5169:208;-1:-1:-1;;5169:208:1:o;5382:1531::-;5606:3;5644:6;5638:13;5670:4;5683:51;5727:6;5722:3;5717:2;5709:6;5705:15;5683:51;:::i;:::-;5797:13;;5756:16;;;;5819:55;5797:13;5756:16;5841:15;;;5819:55;:::i;:::-;5965:13;;5896:20;;;5936:3;;6025:1;6047:18;;;;6100;;;;6127:2;;6205:4;6195:8;6191:19;6179:31;;6127:2;6268;6258:8;6255:16;6235:18;6232:40;6229:2;;;-1:-1:-1;;;6295:33:1;;6351:4;6348:1;6341:15;6381:4;6302:3;6369:17;6229:2;6412:18;6439:110;;;;6563:1;6558:330;;;;6405:483;;6439:110;-1:-1:-1;;6474:24:1;;6460:39;;6519:20;;;;-1:-1:-1;6439:110:1;;6558:330;18840:4;18859:17;;;18909:4;18893:21;;6653:3;6669:169;6683:8;6680:1;6677:15;6669:169;;;6765:14;;6750:13;;;6743:37;6808:16;;;;6700:10;;6669:169;;;6673:3;;6869:8;6862:5;6858:20;6851:27;;6405:483;-1:-1:-1;6904:3:1;;5614:1299;-1:-1:-1;;;;;;;;;;;5614:1299:1:o;7336:488::-;-1:-1:-1;;;;;7605:15:1;;;7587:34;;7657:15;;7652:2;7637:18;;7630:43;7704:2;7689:18;;7682:34;;;7752:3;7747:2;7732:18;;7725:31;;;7530:4;;7773:45;;7798:19;;7790:6;7773:45;:::i;:::-;7765:53;7539:285;-1:-1:-1;;;;;;7539:285:1:o;7829:635::-;8000:2;8052:21;;;8122:13;;8025:18;;;8144:22;;;7971:4;;8000:2;8223:15;;;;8197:2;8182:18;;;7971:4;8269:169;8283:6;8280:1;8277:13;8269:169;;;8344:13;;8332:26;;8413:15;;;;8378:12;;;;8305:1;8298:9;8269:169;;;-1:-1:-1;8455:3:1;;7980:484;-1:-1:-1;;;;;;7980:484:1:o;8661:219::-;8810:2;8799:9;8792:21;8773:4;8830:44;8870:2;8859:9;8855:18;8847:6;8830:44;:::i;9297:414::-;9499:2;9481:21;;;9538:2;9518:18;;;9511:30;9577:34;9572:2;9557:18;;9550:62;-1:-1:-1;;;9643:2:1;9628:18;;9621:48;9701:3;9686:19;;9471:240::o;14785:356::-;14987:2;14969:21;;;15006:18;;;14999:30;15065:34;15060:2;15045:18;;15038:62;15132:2;15117:18;;14959:182::o;17072:413::-;17274:2;17256:21;;;17313:2;17293:18;;;17286:30;17352:34;17347:2;17332:18;;17325:62;-1:-1:-1;;;17418:2:1;17403:18;;17396:47;17475:3;17460:19;;17246:239::o;18925:128::-;18965:3;18996:1;18992:6;18989:1;18986:13;18983:2;;;19002:18;;:::i;:::-;-1:-1:-1;19038:9:1;;18973:80::o;19058:120::-;19098:1;19124;19114:2;;19129:18;;:::i;:::-;-1:-1:-1;19163:9:1;;19104:74::o;19183:168::-;19223:7;19289:1;19285;19281:6;19277:14;19274:1;19271:21;19266:1;19259:9;19252:17;19248:45;19245:2;;;19296:18;;:::i;:::-;-1:-1:-1;19336:9:1;;19235:116::o;19356:125::-;19396:4;19424:1;19421;19418:8;19415:2;;;19429:18;;:::i;:::-;-1:-1:-1;19466:9:1;;19405:76::o;19486:258::-;19558:1;19568:113;19582:6;19579:1;19576:13;19568:113;;;19658:11;;;19652:18;19639:11;;;19632:39;19604:2;19597:10;19568:113;;;19699:6;19696:1;19693:13;19690:2;;;-1:-1:-1;;19734:1:1;19716:16;;19709:27;19539:205::o;19749:380::-;19828:1;19824:12;;;;19871;;;19892:2;;19946:4;19938:6;19934:17;19924:27;;19892:2;19999;19991:6;19988:14;19968:18;19965:38;19962:2;;;20045:10;20040:3;20036:20;20033:1;20026:31;20080:4;20077:1;20070:15;20108:4;20105:1;20098:15;19962:2;;19804:325;;;:::o;20134:135::-;20173:3;-1:-1:-1;;20194:17:1;;20191:2;;;20214:18;;:::i;:::-;-1:-1:-1;20261:1:1;20250:13;;20181:88::o;20274:112::-;20306:1;20332;20322:2;;20337:18;;:::i;:::-;-1:-1:-1;20371:9:1;;20312:74::o;20391:127::-;20452:10;20447:3;20443:20;20440:1;20433:31;20483:4;20480:1;20473:15;20507:4;20504:1;20497:15;20523:127;20584:10;20579:3;20575:20;20572:1;20565:31;20615:4;20612:1;20605:15;20639:4;20636:1;20629:15;20655:127;20716:10;20711:3;20707:20;20704:1;20697:31;20747:4;20744:1;20737:15;20771:4;20768:1;20761:15;20787:131;-1:-1:-1;;;;;;20861:32:1;;20851:43;;20841:2;;20908:1;20905;20898:12

Swarm Source

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