ETH Price: $2,527.84 (+0.36%)
Gas: 0.65 Gwei

Token

Kandi Kids (KANDI)
 

Overview

Max Total Supply

500 KANDI

Holders

303

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 KANDI
0x69fb44F2d038AE5a54Bde332175Ef28A7a0ea9eb
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:
KandiKids

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

/**
 *Submitted for verification at Etherscan.io on 2021-10-29
*/

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/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/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/access/Ownable.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @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/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/utils/Strings.sol

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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/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/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/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(to).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: KandiKids.sol

pragma solidity ^0.8.0;

contract KandiKids is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenId;

    uint256 public constant MAX_KANDIKIDS = 10000;
    uint256 public price = 60000000000000000; //0.06 Ether
    string baseTokenURI;
    bool public saleOpen = false;
    bool public isWhitelistSale = true;   // Else public sale for anyone

    address public constant address1 =
        0x17664e13ef9662e098ec9E92c7Df4d647c29DD69;
    address public constant address2 =
        0x66A8Cdd1d92D1e344463580c27d2Db019ac003Bc;

    
    mapping(address => bool) private whitelistAdminRole;
    mapping(address => bool) private whitelistedUsers;

    event KandiKidsMinted(uint256 totalMinted);

        modifier onlyWhitelistedUser() {
        require(
            whitelistedUsers[msg.sender] == true,
            "User must be whitelisted"
        );
        _;
    }
    modifier onlyWhitelistAdmin() {
        require(
            whitelistAdminRole[msg.sender] == true,
            "Only whitelist admin can access"
        );
        _;
    }



    constructor(string memory baseURI) ERC721("Kandi Kids", "KANDI") {
        setBaseURI(baseURI);
        whitelistAdminRole[msg.sender] = true;
    }

    //Get token Ids of all tokens owned by _owner
    function walletOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

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

    //Close sale if open, open sale if closed
    function flipSaleState() external onlyOwner {
        saleOpen = !saleOpen;
    }

    function flipWhitelistState() external onlyOwner {
        isWhitelistSale = !isWhitelistSale;
    }

    function withdrawAll() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "No funds");
        _widthdraw(address1, (balance * 50) / 100);
        _widthdraw(address2, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

    function Airdrop(address[] calldata _recipients) external onlyOwner {
        require(
            totalSupply() + _recipients.length <= MAX_KANDIKIDS,
            "Airdrop will exceed maximum supply of Kandi Kids"
        );
        for (uint256 i = 0; i < _recipients.length; i++) {
            require(_recipients[i] != address(0), "Airdrop to Null address");
            _mint(_recipients[i]);
        }
    }
    
    // WhiteList admin
    function addWhitelistAdmin(address user) external onlyOwner {
        require(
            whitelistAdminRole[user] == false,
            "User already whitelist admin"
        );
        whitelistAdminRole[user] = true;
    }


    // Whitelisting
    function addWhitelistedUser(address[] calldata users)
        external
        onlyWhitelistAdmin
    {
        for (uint256 i = 0; i < users.length; i++) {
            require(users[i] != address(0), "Can't add the null address");
            if(whitelistedUsers[users[i]] == false){
                whitelistedUsers[users[i]] = true;}
        }
    }

    /**
    * Reserve NFTs for the team

    function reserveKandiKids(uint256 _count) public onlyOwner {   
        require(
            totalSupply() + _count <= MAX_KANDIKIDS,
            "Transaction will exceed maximum supply of Kandi Kids"
        );

        for (uint256 i = 0; i < _count; i++) {
            _mint(address1);
        }
    }
     */
    
    //mint KandiKids
    function mintKandiKids(uint256 _count) external payable {
        if (msg.sender != owner()) {

            if (isWhitelistSale) {
                require(
                    whitelistedUsers[msg.sender] == true,
                    "User must be whitelisted"
                );
            }

            require(saleOpen, "Sale is not open yet");
            require(
                _count > 0 && _count <= 5,
                "Min 1 & Max 5 Kandi Kids can be minted per transaction"
            );
            require(
                msg.value >= price * _count,
                "Ether sent with this transaction is not correct"
            );
        }
        require(
            totalSupply() + _count <= MAX_KANDIKIDS,
            "Transaction will exceed maximum supply of Kandi Kids"
        );

        // address _to = (msg.sender != owner()) ? msg.sender : address1;
        address _to = msg.sender;
        for (uint256 i = 0; i < _count; i++) {
            _mint(_to);
        }
    }

    function _mint(address _to) private {
        _tokenId.increment();
        uint256 tokenId = _tokenId.current();
        _safeMint(_to, tokenId);
        emit KandiKidsMinted(tokenId);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","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":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"KandiKidsMinted","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":"_recipients","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_KANDIKIDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"addWhitelistAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"addWhitelistedUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"address1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"address2","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintKandiKids","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266d529ae9e860000600c55600e805461ffff19166101001790553480156200002b57600080fd5b5060405162002ea538038062002ea58339810160408190526200004e916200026f565b604080518082018252600a8152694b616e6469204b69647360b01b6020808301918252835180850190945260058452644b414e444960d81b9084015281519192916200009d91600091620001c9565b508051620000b3906001906020840190620001c9565b505050620000d0620000ca620000fc60201b60201c565b62000100565b620000db8162000152565b50336000908152600f60205260409020805460ff19166001179055620003c6565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200015c620000fc565b6001600160a01b03166200016f620001ba565b6001600160a01b031614620001a15760405162461bcd60e51b815260040162000198906200033e565b60405180910390fd5b8051620001b690600d906020840190620001c9565b5050565b600a546001600160a01b031690565b828054620001d79062000373565b90600052602060002090601f016020900481019282620001fb576000855562000246565b82601f106200021657805160ff191683800117855562000246565b8280016001018555821562000246579182015b828111156200024657825182559160200191906001019062000229565b506200025492915062000258565b5090565b5b8082111562000254576000815560010162000259565b6000602080838503121562000282578182fd5b82516001600160401b038082111562000299578384fd5b818501915085601f830112620002ad578384fd5b815181811115620002c257620002c2620003b0565b604051601f8201601f1916810185018381118282101715620002e857620002e8620003b0565b6040528181528382018501881015620002ff578586fd5b8592505b8183101562000322578383018501518184018601529184019162000303565b818311156200033357858583830101525b979650505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200038857607f821691505b60208210811415620003aa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612acf80620003d66000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd1461054e578063e985e9c51461056e578063ece8c31c1461058e578063f2fde38b146105ae578063f6fa26ab146105ce576101f9565b8063a035b1fe146104d9578063a22cb465146104ee578063b633cd801461050e578063b88d4fde1461052e576101f9565b806395d89b41116100dc57806395d89b411461048757806399288dbb1461049c5780639c8e5ac8146104b15780639eea4a3a146104c4576101f9565b8063715018a6146104285780637362d9c81461043d578063853828b61461045d5780638da5cb5b14610472576101f9565b80632f745c5911610190578063438b63001161015f578063438b63001461037b5780634f6ccce7146103a857806355f804b3146103c85780636352211e146103e857806370a0823114610408576101f9565b80632f745c591461031157806334918dfd146103315780633a36399e1461034657806342842e0e1461035b576101f9565b80631455b1e2116101cc5780631455b1e2146102a557806318160ddd146102ba57806319b8c198146102dc57806323b872dd146102f1576101f9565b806301ffc9a7146101fe57806306fdde0314610234578063081812fc14610256578063095ea7b314610283575b600080fd5b34801561020a57600080fd5b5061021e610219366004611fc6565b6105e3565b60405161022b919061214f565b60405180910390f35b34801561024057600080fd5b50610249610610565b60405161022b919061215a565b34801561026257600080fd5b50610276610271366004612044565b6106a2565b60405161022b91906120ba565b34801561028f57600080fd5b506102a361029e366004611f2e565b6106ee565b005b3480156102b157600080fd5b5061021e610786565b3480156102c657600080fd5b506102cf610794565b60405161022b9190612940565b3480156102e857600080fd5b506102cf61079a565b3480156102fd57600080fd5b506102a361030c366004611e40565b6107a0565b34801561031d57600080fd5b506102cf61032c366004611f2e565b6107d8565b34801561033d57600080fd5b506102a361082a565b34801561035257600080fd5b5061027661087d565b34801561036757600080fd5b506102a3610376366004611e40565b610895565b34801561038757600080fd5b5061039b610396366004611df4565b6108b0565b60405161022b919061210b565b3480156103b457600080fd5b506102cf6103c3366004612044565b61096e565b3480156103d457600080fd5b506102a36103e3366004611ffe565b6109c9565b3480156103f457600080fd5b50610276610403366004612044565b610a1f565b34801561041457600080fd5b506102cf610423366004611df4565b610a54565b34801561043457600080fd5b506102a3610a98565b34801561044957600080fd5b506102a3610458366004611df4565b610ae3565b34801561046957600080fd5b506102a3610b7f565b34801561047e57600080fd5b50610276610c31565b34801561049357600080fd5b50610249610c40565b3480156104a857600080fd5b5061021e610c4f565b6102a36104bf366004612044565b610c58565b3480156104d057600080fd5b50610276610d93565b3480156104e557600080fd5b506102cf610dab565b3480156104fa57600080fd5b506102a3610509366004611ef4565b610db1565b34801561051a57600080fd5b506102a3610529366004611f57565b610e7f565b34801561053a57600080fd5b506102a3610549366004611e7b565b610fec565b34801561055a57600080fd5b50610249610569366004612044565b61102b565b34801561057a57600080fd5b5061021e610589366004611e0e565b6110ae565b34801561059a57600080fd5b506102a36105a9366004611f57565b6110dc565b3480156105ba57600080fd5b506102a36105c9366004611df4565b611207565b3480156105da57600080fd5b506102a3611275565b60006001600160e01b0319821663780e9d6360e01b14806106085750610608826112d1565b90505b919050565b60606000805461061f906129d7565b80601f016020809104026020016040519081016040528092919081815260200182805461064b906129d7565b80156106985780601f1061066d57610100808354040283529160200191610698565b820191906000526020600020905b81548152906001019060200180831161067b57829003601f168201915b5050505050905090565b60006106ad82611311565b6106d25760405162461bcd60e51b81526004016106c99061257e565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106f982610a1f565b9050806001600160a01b0316836001600160a01b0316141561072d5760405162461bcd60e51b81526004016106c990612771565b806001600160a01b031661073f61132e565b6001600160a01b0316148061075b575061075b8161058961132e565b6107775760405162461bcd60e51b81526004016106c990612459565b6107818383611332565b505050565b600e54610100900460ff1681565b60085490565b61271081565b6107b16107ab61132e565b826113a0565b6107cd5760405162461bcd60e51b81526004016106c990612813565b610781838383611425565b60006107e383610a54565b82106108015760405162461bcd60e51b81526004016106c9906121c3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61083261132e565b6001600160a01b0316610843610c31565b6001600160a01b0316146108695760405162461bcd60e51b81526004016106c990612619565b600e805460ff19811660ff90911615179055565b7317664e13ef9662e098ec9e92c7df4d647c29dd6981565b61078183838360405180602001604052806000815250610fec565b606060006108bd83610a54565b905060008167ffffffffffffffff8111156108e857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610911578160200160208202803683370190505b50905060005b828110156109665761092985826107d8565b82828151811061094957634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061095e81612a12565b915050610917565b509392505050565b6000610978610794565b82106109965760405162461bcd60e51b81526004016106c990612864565b600882815481106109b757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6109d161132e565b6001600160a01b03166109e2610c31565b6001600160a01b031614610a085760405162461bcd60e51b81526004016106c990612619565b8051610a1b90600d906020840190611cd4565b5050565b6000818152600260205260408120546001600160a01b0316806106085760405162461bcd60e51b81526004016106c990612500565b60006001600160a01b038216610a7c5760405162461bcd60e51b81526004016106c9906124b6565b506001600160a01b031660009081526003602052604090205490565b610aa061132e565b6001600160a01b0316610ab1610c31565b6001600160a01b031614610ad75760405162461bcd60e51b81526004016106c990612619565b610ae16000611552565b565b610aeb61132e565b6001600160a01b0316610afc610c31565b6001600160a01b031614610b225760405162461bcd60e51b81526004016106c990612619565b6001600160a01b0381166000908152600f602052604090205460ff1615610b5b5760405162461bcd60e51b81526004016106c9906127b2565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b610b8761132e565b6001600160a01b0316610b98610c31565b6001600160a01b031614610bbe5760405162461bcd60e51b81526004016106c990612619565b4780610bdc5760405162461bcd60e51b81526004016106c9906128e7565b610c107317664e13ef9662e098ec9e92c7df4d647c29dd696064610c01846032612975565b610c0b9190612961565b6115a4565b610c2e7366a8cdd1d92d1e344463580c27d2db019ac003bc476115a4565b50565b600a546001600160a01b031690565b60606001805461061f906129d7565b600e5460ff1681565b610c60610c31565b6001600160a01b0316336001600160a01b031614610d3857600e54610100900460ff1615610cbc573360009081526010602052604090205460ff161515600114610cbc5760405162461bcd60e51b81526004016106c9906128b0565b600e5460ff16610cde5760405162461bcd60e51b81526004016106c99061238f565b600081118015610cef575060058111155b610d0b5760405162461bcd60e51b81526004016106c99061216d565b80600c54610d199190612975565b341015610d385760405162461bcd60e51b81526004016106c9906125ca565b61271081610d44610794565b610d4e9190612949565b1115610d6c5760405162461bcd60e51b81526004016106c990612685565b3360005b8281101561078157610d8182611620565b80610d8b81612a12565b915050610d70565b7366a8cdd1d92d1e344463580c27d2db019ac003bc81565b600c5481565b610db961132e565b6001600160a01b0316826001600160a01b03161415610dea5760405162461bcd60e51b81526004016106c990612358565b8060056000610df761132e565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e3b61132e565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e73919061214f565b60405180910390a35050565b336000908152600f602052604090205460ff161515600114610eb35760405162461bcd60e51b81526004016106c990612909565b60005b81811015610781576000838383818110610ee057634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610ef59190611df4565b6001600160a01b03161415610f1c5760405162461bcd60e51b81526004016106c99061264e565b60106000848484818110610f4057634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610f559190611df4565b6001600160a01b0316815260208101919091526040016000205460ff16610fda57600160106000858585818110610f9c57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610fb19190611df4565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b80610fe481612a12565b915050610eb6565b610ffd610ff761132e565b836113a0565b6110195760405162461bcd60e51b81526004016106c990612813565b6110258484848461167d565b50505050565b606061103682611311565b6110525760405162461bcd60e51b81526004016106c990612722565b600061105c6116b0565b9050600081511161107c57604051806020016040528060008152506110a7565b80611086846116bf565b604051602001611097929190612088565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6110e461132e565b6001600160a01b03166110f5610c31565b6001600160a01b03161461111b5760405162461bcd60e51b81526004016106c990612619565b61271081611127610794565b6111319190612949565b111561114f5760405162461bcd60e51b81526004016106c9906123bd565b60005b8181101561078157600083838381811061117c57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906111919190611df4565b6001600160a01b031614156111b85760405162461bcd60e51b81526004016106c9906122dd565b6111f58383838181106111db57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906111f09190611df4565b611620565b806111ff81612a12565b915050611152565b61120f61132e565b6001600160a01b0316611220610c31565b6001600160a01b0316146112465760405162461bcd60e51b81526004016106c990612619565b6001600160a01b03811661126c5760405162461bcd60e51b81526004016106c990612260565b610c2e81611552565b61127d61132e565b6001600160a01b031661128e610c31565b6001600160a01b0316146112b45760405162461bcd60e51b81526004016106c990612619565b600e805461ff001981166101009182900460ff1615909102179055565b60006001600160e01b031982166380ac58cd60e01b148061130257506001600160e01b03198216635b5e139f60e01b145b806106085750610608826117da565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061136782610a1f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113ab82611311565b6113c75760405162461bcd60e51b81526004016106c99061240d565b60006113d283610a1f565b9050806001600160a01b0316846001600160a01b0316148061140d5750836001600160a01b0316611402846106a2565b6001600160a01b0316145b8061141d575061141d81856110ae565b949350505050565b826001600160a01b031661143882610a1f565b6001600160a01b03161461145e5760405162461bcd60e51b81526004016106c9906126d9565b6001600160a01b0382166114845760405162461bcd60e51b81526004016106c990612314565b61148f8383836117f3565b61149a600082611332565b6001600160a01b03831660009081526003602052604081208054600192906114c3908490612994565b90915550506001600160a01b03821660009081526003602052604081208054600192906114f1908490612949565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b0316826040516115bd906120b7565b60006040518083038185875af1925050503d80600081146115fa576040519150601f19603f3d011682016040523d82523d6000602084013e6115ff565b606091505b50509050806107815760405162461bcd60e51b81526004016106c9906127e9565b61162a600b61187c565b6000611636600b611885565b90506116428282611889565b7faba09799bb53bc31fd4dd3c58ccc12c975967e40431d1f386683c01fbe2e8d9c816040516116719190612940565b60405180910390a15050565b611688848484611425565b611694848484846118a3565b6110255760405162461bcd60e51b81526004016106c99061220e565b6060600d805461061f906129d7565b6060816116e457506040805180820190915260018152600360fc1b602082015261060b565b8160005b811561170e57806116f881612a12565b91506117079050600a83612961565b91506116e8565b60008167ffffffffffffffff81111561173757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611761576020820181803683370190505b5090505b841561141d57611776600183612994565b9150611783600a86612a2d565b61178e906030612949565b60f81b8183815181106117b157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117d3600a86612961565b9450611765565b6001600160e01b031981166301ffc9a760e01b14919050565b6117fe838383610781565b6001600160a01b03831661181a57611815816119be565b61183d565b816001600160a01b0316836001600160a01b03161461183d5761183d8382611a02565b6001600160a01b0382166118595761185481611a9f565b610781565b826001600160a01b0316826001600160a01b031614610781576107818282611b78565b80546001019055565b5490565b610a1b828260405180602001604052806000815250611bbc565b60006118b7846001600160a01b0316611bef565b156119b357836001600160a01b031663150b7a026118d361132e565b8786866040518563ffffffff1660e01b81526004016118f594939291906120ce565b602060405180830381600087803b15801561190f57600080fd5b505af192505050801561193f575060408051601f3d908101601f1916820190925261193c91810190611fe2565b60015b611999573d80801561196d576040519150601f19603f3d011682016040523d82523d6000602084013e611972565b606091505b5080516119915760405162461bcd60e51b81526004016106c99061220e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061141d565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611a0f84610a54565b611a199190612994565b600083815260076020526040902054909150808214611a6c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ab190600190612994565b60008381526009602052604081205460088054939450909284908110611ae757634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611b1657634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b5c57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b8383610a54565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611bc68383611bf5565b611bd360008484846118a3565b6107815760405162461bcd60e51b81526004016106c99061220e565b3b151590565b6001600160a01b038216611c1b5760405162461bcd60e51b81526004016106c990612549565b611c2481611311565b15611c415760405162461bcd60e51b81526004016106c9906122a6565b611c4d600083836117f3565b6001600160a01b0382166000908152600360205260408120805460019290611c76908490612949565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ce0906129d7565b90600052602060002090601f016020900481019282611d025760008555611d48565b82601f10611d1b57805160ff1916838001178555611d48565b82800160010185558215611d48579182015b82811115611d48578251825591602001919060010190611d2d565b50611d54929150611d58565b5090565b5b80821115611d545760008155600101611d59565b600067ffffffffffffffff80841115611d8857611d88612a6d565b604051601f8501601f191681016020018281118282101715611dac57611dac612a6d565b604052848152915081838501861015611dc457600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461060b57600080fd5b600060208284031215611e05578081fd5b6110a782611ddd565b60008060408385031215611e20578081fd5b611e2983611ddd565b9150611e3760208401611ddd565b90509250929050565b600080600060608486031215611e54578081fd5b611e5d84611ddd565b9250611e6b60208501611ddd565b9150604084013590509250925092565b60008060008060808587031215611e90578081fd5b611e9985611ddd565b9350611ea760208601611ddd565b925060408501359150606085013567ffffffffffffffff811115611ec9578182fd5b8501601f81018713611ed9578182fd5b611ee887823560208401611d6d565b91505092959194509250565b60008060408385031215611f06578182fd5b611f0f83611ddd565b915060208301358015158114611f23578182fd5b809150509250929050565b60008060408385031215611f40578182fd5b611f4983611ddd565b946020939093013593505050565b60008060208385031215611f69578182fd5b823567ffffffffffffffff80821115611f80578384fd5b818501915085601f830112611f93578384fd5b813581811115611fa1578485fd5b8660208083028501011115611fb4578485fd5b60209290920196919550909350505050565b600060208284031215611fd7578081fd5b81356110a781612a83565b600060208284031215611ff3578081fd5b81516110a781612a83565b60006020828403121561200f578081fd5b813567ffffffffffffffff811115612025578182fd5b8201601f81018413612035578182fd5b61141d84823560208401611d6d565b600060208284031215612055578081fd5b5035919050565b600081518084526120748160208601602086016129ab565b601f01601f19169290920160200192915050565b6000835161209a8184602088016129ab565b8351908301906120ae8183602088016129ab565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121019083018461205c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561214357835183529284019291840191600101612127565b50909695505050505050565b901515815260200190565b6000602082526110a7602083018461205c565b60208082526036908201527f4d696e20312026204d61782035204b616e6469204b6964732063616e2062652060408201527536b4b73a32b2103832b9103a3930b739b0b1ba34b7b760511b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526017908201527f41697264726f7020746f204e756c6c2061646472657373000000000000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b60208082526030908201527f41697264726f702077696c6c20657863656564206d6178696d756d207375707060408201526f6c79206f66204b616e6469204b69647360801b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f43616e27742061646420746865206e756c6c2061646472657373000000000000604082015260600190565b60208082526034908201527f5472616e73616374696f6e2077696c6c20657863656564206d6178696d756d20604082015273737570706c79206f66204b616e6469204b69647360601b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601c908201527f5573657220616c72656164792077686974656c6973742061646d696e00000000604082015260600190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526018908201527f55736572206d7573742062652077686974656c69737465640000000000000000604082015260600190565b6020808252600890820152674e6f2066756e647360c01b604082015260600190565b6020808252601f908201527f4f6e6c792077686974656c6973742061646d696e2063616e2061636365737300604082015260600190565b90815260200190565b6000821982111561295c5761295c612a41565b500190565b60008261297057612970612a57565b500490565b600081600019048311821515161561298f5761298f612a41565b500290565b6000828210156129a6576129a6612a41565b500390565b60005b838110156129c65781810151838201526020016129ae565b838111156110255750506000910152565b6002810460018216806129eb57607f821691505b60208210811415612a0c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a2657612a26612a41565b5060010190565b600082612a3c57612a3c612a57565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c2e57600080fdfea2646970667358221220ac375aba2fa95967ccf97af1f667053fb585a165e633ddfa5217d25ebf1124ac64736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd1461054e578063e985e9c51461056e578063ece8c31c1461058e578063f2fde38b146105ae578063f6fa26ab146105ce576101f9565b8063a035b1fe146104d9578063a22cb465146104ee578063b633cd801461050e578063b88d4fde1461052e576101f9565b806395d89b41116100dc57806395d89b411461048757806399288dbb1461049c5780639c8e5ac8146104b15780639eea4a3a146104c4576101f9565b8063715018a6146104285780637362d9c81461043d578063853828b61461045d5780638da5cb5b14610472576101f9565b80632f745c5911610190578063438b63001161015f578063438b63001461037b5780634f6ccce7146103a857806355f804b3146103c85780636352211e146103e857806370a0823114610408576101f9565b80632f745c591461031157806334918dfd146103315780633a36399e1461034657806342842e0e1461035b576101f9565b80631455b1e2116101cc5780631455b1e2146102a557806318160ddd146102ba57806319b8c198146102dc57806323b872dd146102f1576101f9565b806301ffc9a7146101fe57806306fdde0314610234578063081812fc14610256578063095ea7b314610283575b600080fd5b34801561020a57600080fd5b5061021e610219366004611fc6565b6105e3565b60405161022b919061214f565b60405180910390f35b34801561024057600080fd5b50610249610610565b60405161022b919061215a565b34801561026257600080fd5b50610276610271366004612044565b6106a2565b60405161022b91906120ba565b34801561028f57600080fd5b506102a361029e366004611f2e565b6106ee565b005b3480156102b157600080fd5b5061021e610786565b3480156102c657600080fd5b506102cf610794565b60405161022b9190612940565b3480156102e857600080fd5b506102cf61079a565b3480156102fd57600080fd5b506102a361030c366004611e40565b6107a0565b34801561031d57600080fd5b506102cf61032c366004611f2e565b6107d8565b34801561033d57600080fd5b506102a361082a565b34801561035257600080fd5b5061027661087d565b34801561036757600080fd5b506102a3610376366004611e40565b610895565b34801561038757600080fd5b5061039b610396366004611df4565b6108b0565b60405161022b919061210b565b3480156103b457600080fd5b506102cf6103c3366004612044565b61096e565b3480156103d457600080fd5b506102a36103e3366004611ffe565b6109c9565b3480156103f457600080fd5b50610276610403366004612044565b610a1f565b34801561041457600080fd5b506102cf610423366004611df4565b610a54565b34801561043457600080fd5b506102a3610a98565b34801561044957600080fd5b506102a3610458366004611df4565b610ae3565b34801561046957600080fd5b506102a3610b7f565b34801561047e57600080fd5b50610276610c31565b34801561049357600080fd5b50610249610c40565b3480156104a857600080fd5b5061021e610c4f565b6102a36104bf366004612044565b610c58565b3480156104d057600080fd5b50610276610d93565b3480156104e557600080fd5b506102cf610dab565b3480156104fa57600080fd5b506102a3610509366004611ef4565b610db1565b34801561051a57600080fd5b506102a3610529366004611f57565b610e7f565b34801561053a57600080fd5b506102a3610549366004611e7b565b610fec565b34801561055a57600080fd5b50610249610569366004612044565b61102b565b34801561057a57600080fd5b5061021e610589366004611e0e565b6110ae565b34801561059a57600080fd5b506102a36105a9366004611f57565b6110dc565b3480156105ba57600080fd5b506102a36105c9366004611df4565b611207565b3480156105da57600080fd5b506102a3611275565b60006001600160e01b0319821663780e9d6360e01b14806106085750610608826112d1565b90505b919050565b60606000805461061f906129d7565b80601f016020809104026020016040519081016040528092919081815260200182805461064b906129d7565b80156106985780601f1061066d57610100808354040283529160200191610698565b820191906000526020600020905b81548152906001019060200180831161067b57829003601f168201915b5050505050905090565b60006106ad82611311565b6106d25760405162461bcd60e51b81526004016106c99061257e565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106f982610a1f565b9050806001600160a01b0316836001600160a01b0316141561072d5760405162461bcd60e51b81526004016106c990612771565b806001600160a01b031661073f61132e565b6001600160a01b0316148061075b575061075b8161058961132e565b6107775760405162461bcd60e51b81526004016106c990612459565b6107818383611332565b505050565b600e54610100900460ff1681565b60085490565b61271081565b6107b16107ab61132e565b826113a0565b6107cd5760405162461bcd60e51b81526004016106c990612813565b610781838383611425565b60006107e383610a54565b82106108015760405162461bcd60e51b81526004016106c9906121c3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61083261132e565b6001600160a01b0316610843610c31565b6001600160a01b0316146108695760405162461bcd60e51b81526004016106c990612619565b600e805460ff19811660ff90911615179055565b7317664e13ef9662e098ec9e92c7df4d647c29dd6981565b61078183838360405180602001604052806000815250610fec565b606060006108bd83610a54565b905060008167ffffffffffffffff8111156108e857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610911578160200160208202803683370190505b50905060005b828110156109665761092985826107d8565b82828151811061094957634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061095e81612a12565b915050610917565b509392505050565b6000610978610794565b82106109965760405162461bcd60e51b81526004016106c990612864565b600882815481106109b757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6109d161132e565b6001600160a01b03166109e2610c31565b6001600160a01b031614610a085760405162461bcd60e51b81526004016106c990612619565b8051610a1b90600d906020840190611cd4565b5050565b6000818152600260205260408120546001600160a01b0316806106085760405162461bcd60e51b81526004016106c990612500565b60006001600160a01b038216610a7c5760405162461bcd60e51b81526004016106c9906124b6565b506001600160a01b031660009081526003602052604090205490565b610aa061132e565b6001600160a01b0316610ab1610c31565b6001600160a01b031614610ad75760405162461bcd60e51b81526004016106c990612619565b610ae16000611552565b565b610aeb61132e565b6001600160a01b0316610afc610c31565b6001600160a01b031614610b225760405162461bcd60e51b81526004016106c990612619565b6001600160a01b0381166000908152600f602052604090205460ff1615610b5b5760405162461bcd60e51b81526004016106c9906127b2565b6001600160a01b03166000908152600f60205260409020805460ff19166001179055565b610b8761132e565b6001600160a01b0316610b98610c31565b6001600160a01b031614610bbe5760405162461bcd60e51b81526004016106c990612619565b4780610bdc5760405162461bcd60e51b81526004016106c9906128e7565b610c107317664e13ef9662e098ec9e92c7df4d647c29dd696064610c01846032612975565b610c0b9190612961565b6115a4565b610c2e7366a8cdd1d92d1e344463580c27d2db019ac003bc476115a4565b50565b600a546001600160a01b031690565b60606001805461061f906129d7565b600e5460ff1681565b610c60610c31565b6001600160a01b0316336001600160a01b031614610d3857600e54610100900460ff1615610cbc573360009081526010602052604090205460ff161515600114610cbc5760405162461bcd60e51b81526004016106c9906128b0565b600e5460ff16610cde5760405162461bcd60e51b81526004016106c99061238f565b600081118015610cef575060058111155b610d0b5760405162461bcd60e51b81526004016106c99061216d565b80600c54610d199190612975565b341015610d385760405162461bcd60e51b81526004016106c9906125ca565b61271081610d44610794565b610d4e9190612949565b1115610d6c5760405162461bcd60e51b81526004016106c990612685565b3360005b8281101561078157610d8182611620565b80610d8b81612a12565b915050610d70565b7366a8cdd1d92d1e344463580c27d2db019ac003bc81565b600c5481565b610db961132e565b6001600160a01b0316826001600160a01b03161415610dea5760405162461bcd60e51b81526004016106c990612358565b8060056000610df761132e565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e3b61132e565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e73919061214f565b60405180910390a35050565b336000908152600f602052604090205460ff161515600114610eb35760405162461bcd60e51b81526004016106c990612909565b60005b81811015610781576000838383818110610ee057634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610ef59190611df4565b6001600160a01b03161415610f1c5760405162461bcd60e51b81526004016106c99061264e565b60106000848484818110610f4057634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610f559190611df4565b6001600160a01b0316815260208101919091526040016000205460ff16610fda57600160106000858585818110610f9c57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610fb19190611df4565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b80610fe481612a12565b915050610eb6565b610ffd610ff761132e565b836113a0565b6110195760405162461bcd60e51b81526004016106c990612813565b6110258484848461167d565b50505050565b606061103682611311565b6110525760405162461bcd60e51b81526004016106c990612722565b600061105c6116b0565b9050600081511161107c57604051806020016040528060008152506110a7565b80611086846116bf565b604051602001611097929190612088565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6110e461132e565b6001600160a01b03166110f5610c31565b6001600160a01b03161461111b5760405162461bcd60e51b81526004016106c990612619565b61271081611127610794565b6111319190612949565b111561114f5760405162461bcd60e51b81526004016106c9906123bd565b60005b8181101561078157600083838381811061117c57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906111919190611df4565b6001600160a01b031614156111b85760405162461bcd60e51b81526004016106c9906122dd565b6111f58383838181106111db57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906111f09190611df4565b611620565b806111ff81612a12565b915050611152565b61120f61132e565b6001600160a01b0316611220610c31565b6001600160a01b0316146112465760405162461bcd60e51b81526004016106c990612619565b6001600160a01b03811661126c5760405162461bcd60e51b81526004016106c990612260565b610c2e81611552565b61127d61132e565b6001600160a01b031661128e610c31565b6001600160a01b0316146112b45760405162461bcd60e51b81526004016106c990612619565b600e805461ff001981166101009182900460ff1615909102179055565b60006001600160e01b031982166380ac58cd60e01b148061130257506001600160e01b03198216635b5e139f60e01b145b806106085750610608826117da565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061136782610a1f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113ab82611311565b6113c75760405162461bcd60e51b81526004016106c99061240d565b60006113d283610a1f565b9050806001600160a01b0316846001600160a01b0316148061140d5750836001600160a01b0316611402846106a2565b6001600160a01b0316145b8061141d575061141d81856110ae565b949350505050565b826001600160a01b031661143882610a1f565b6001600160a01b03161461145e5760405162461bcd60e51b81526004016106c9906126d9565b6001600160a01b0382166114845760405162461bcd60e51b81526004016106c990612314565b61148f8383836117f3565b61149a600082611332565b6001600160a01b03831660009081526003602052604081208054600192906114c3908490612994565b90915550506001600160a01b03821660009081526003602052604081208054600192906114f1908490612949565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b0316826040516115bd906120b7565b60006040518083038185875af1925050503d80600081146115fa576040519150601f19603f3d011682016040523d82523d6000602084013e6115ff565b606091505b50509050806107815760405162461bcd60e51b81526004016106c9906127e9565b61162a600b61187c565b6000611636600b611885565b90506116428282611889565b7faba09799bb53bc31fd4dd3c58ccc12c975967e40431d1f386683c01fbe2e8d9c816040516116719190612940565b60405180910390a15050565b611688848484611425565b611694848484846118a3565b6110255760405162461bcd60e51b81526004016106c99061220e565b6060600d805461061f906129d7565b6060816116e457506040805180820190915260018152600360fc1b602082015261060b565b8160005b811561170e57806116f881612a12565b91506117079050600a83612961565b91506116e8565b60008167ffffffffffffffff81111561173757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611761576020820181803683370190505b5090505b841561141d57611776600183612994565b9150611783600a86612a2d565b61178e906030612949565b60f81b8183815181106117b157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117d3600a86612961565b9450611765565b6001600160e01b031981166301ffc9a760e01b14919050565b6117fe838383610781565b6001600160a01b03831661181a57611815816119be565b61183d565b816001600160a01b0316836001600160a01b03161461183d5761183d8382611a02565b6001600160a01b0382166118595761185481611a9f565b610781565b826001600160a01b0316826001600160a01b031614610781576107818282611b78565b80546001019055565b5490565b610a1b828260405180602001604052806000815250611bbc565b60006118b7846001600160a01b0316611bef565b156119b357836001600160a01b031663150b7a026118d361132e565b8786866040518563ffffffff1660e01b81526004016118f594939291906120ce565b602060405180830381600087803b15801561190f57600080fd5b505af192505050801561193f575060408051601f3d908101601f1916820190925261193c91810190611fe2565b60015b611999573d80801561196d576040519150601f19603f3d011682016040523d82523d6000602084013e611972565b606091505b5080516119915760405162461bcd60e51b81526004016106c99061220e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061141d565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611a0f84610a54565b611a199190612994565b600083815260076020526040902054909150808214611a6c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ab190600190612994565b60008381526009602052604081205460088054939450909284908110611ae757634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611b1657634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b5c57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b8383610a54565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611bc68383611bf5565b611bd360008484846118a3565b6107815760405162461bcd60e51b81526004016106c99061220e565b3b151590565b6001600160a01b038216611c1b5760405162461bcd60e51b81526004016106c990612549565b611c2481611311565b15611c415760405162461bcd60e51b81526004016106c9906122a6565b611c4d600083836117f3565b6001600160a01b0382166000908152600360205260408120805460019290611c76908490612949565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ce0906129d7565b90600052602060002090601f016020900481019282611d025760008555611d48565b82601f10611d1b57805160ff1916838001178555611d48565b82800160010185558215611d48579182015b82811115611d48578251825591602001919060010190611d2d565b50611d54929150611d58565b5090565b5b80821115611d545760008155600101611d59565b600067ffffffffffffffff80841115611d8857611d88612a6d565b604051601f8501601f191681016020018281118282101715611dac57611dac612a6d565b604052848152915081838501861015611dc457600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461060b57600080fd5b600060208284031215611e05578081fd5b6110a782611ddd565b60008060408385031215611e20578081fd5b611e2983611ddd565b9150611e3760208401611ddd565b90509250929050565b600080600060608486031215611e54578081fd5b611e5d84611ddd565b9250611e6b60208501611ddd565b9150604084013590509250925092565b60008060008060808587031215611e90578081fd5b611e9985611ddd565b9350611ea760208601611ddd565b925060408501359150606085013567ffffffffffffffff811115611ec9578182fd5b8501601f81018713611ed9578182fd5b611ee887823560208401611d6d565b91505092959194509250565b60008060408385031215611f06578182fd5b611f0f83611ddd565b915060208301358015158114611f23578182fd5b809150509250929050565b60008060408385031215611f40578182fd5b611f4983611ddd565b946020939093013593505050565b60008060208385031215611f69578182fd5b823567ffffffffffffffff80821115611f80578384fd5b818501915085601f830112611f93578384fd5b813581811115611fa1578485fd5b8660208083028501011115611fb4578485fd5b60209290920196919550909350505050565b600060208284031215611fd7578081fd5b81356110a781612a83565b600060208284031215611ff3578081fd5b81516110a781612a83565b60006020828403121561200f578081fd5b813567ffffffffffffffff811115612025578182fd5b8201601f81018413612035578182fd5b61141d84823560208401611d6d565b600060208284031215612055578081fd5b5035919050565b600081518084526120748160208601602086016129ab565b601f01601f19169290920160200192915050565b6000835161209a8184602088016129ab565b8351908301906120ae8183602088016129ab565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121019083018461205c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561214357835183529284019291840191600101612127565b50909695505050505050565b901515815260200190565b6000602082526110a7602083018461205c565b60208082526036908201527f4d696e20312026204d61782035204b616e6469204b6964732063616e2062652060408201527536b4b73a32b2103832b9103a3930b739b0b1ba34b7b760511b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526017908201527f41697264726f7020746f204e756c6c2061646472657373000000000000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b60208082526030908201527f41697264726f702077696c6c20657863656564206d6178696d756d207375707060408201526f6c79206f66204b616e6469204b69647360801b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f43616e27742061646420746865206e756c6c2061646472657373000000000000604082015260600190565b60208082526034908201527f5472616e73616374696f6e2077696c6c20657863656564206d6178696d756d20604082015273737570706c79206f66204b616e6469204b69647360601b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601c908201527f5573657220616c72656164792077686974656c6973742061646d696e00000000604082015260600190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526018908201527f55736572206d7573742062652077686974656c69737465640000000000000000604082015260600190565b6020808252600890820152674e6f2066756e647360c01b604082015260600190565b6020808252601f908201527f4f6e6c792077686974656c6973742061646d696e2063616e2061636365737300604082015260600190565b90815260200190565b6000821982111561295c5761295c612a41565b500190565b60008261297057612970612a57565b500490565b600081600019048311821515161561298f5761298f612a41565b500290565b6000828210156129a6576129a6612a41565b500390565b60005b838110156129c65781810151838201526020016129ae565b838111156110255750506000910152565b6002810460018216806129eb57607f821691505b60208210811415612a0c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a2657612a26612a41565b5060010190565b600082612a3c57612a3c612a57565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c2e57600080fdfea2646970667358221220ac375aba2fa95967ccf97af1f667053fb585a165e633ddfa5217d25ebf1124ac64736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46479:5380:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40014:300;;;;;;;;;;-1:-1:-1;40014:300:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27174:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28867:308::-;;;;;;;;;;-1:-1:-1;28867:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28390:411::-;;;;;;;;;;-1:-1:-1;28390:411:0;;;;;:::i;:::-;;:::i;:::-;;46791:34;;;;;;;;;;;;;:::i;40817:113::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46618:45::-;;;;;;;;;;;;;:::i;29926:376::-;;;;;;;;;;-1:-1:-1;29926:376:0;;;;;:::i;:::-;;:::i;40398:343::-;;;;;;;;;;-1:-1:-1;40398:343:0;;;;;:::i;:::-;;:::i;48361:83::-;;;;;;;;;;;;;:::i;46867:86::-;;;;;;;;;;;;;:::i;30373:185::-;;;;;;;;;;-1:-1:-1;30373:185:0;;;;;:::i;:::-;;:::i;47812:385::-;;;;;;;;;;-1:-1:-1;47812:385:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41007:320::-;;;;;;;;;;-1:-1:-1;41007:320:0;;;;;:::i;:::-;;:::i;48205:101::-;;;;;;;;;;-1:-1:-1;48205:101:0;;;;;:::i;:::-;;:::i;26781:326::-;;;;;;;;;;-1:-1:-1;26781:326:0;;;;;:::i;:::-;;:::i;26424:295::-;;;;;;;;;;-1:-1:-1;26424:295:0;;;;;:::i;:::-;;:::i;9881:94::-;;;;;;;;;;;;;:::i;49467:232::-;;;;;;;;;;-1:-1:-1;49467:232:0;;;;;:::i;:::-;;:::i;48562:250::-;;;;;;;;;;;;;:::i;9230:87::-;;;;;;;;;;;;;:::i;27343:104::-;;;;;;;;;;;;;:::i;46756:28::-;;;;;;;;;;;;;:::i;50499:1032::-;;;;;;:::i;:::-;;:::i;46960:86::-;;;;;;;;;;;;;:::i;46670:40::-;;;;;;;;;;;;;:::i;29247:327::-;;;;;;;;;;-1:-1:-1;29247:327:0;;;;;:::i;:::-;;:::i;49730:361::-;;;;;;;;;;-1:-1:-1;49730:361:0;;;;;:::i;:::-;;:::i;30629:365::-;;;;;;;;;;-1:-1:-1;30629:365:0;;;;;:::i;:::-;;:::i;27518:468::-;;;;;;;;;;-1:-1:-1;27518:468:0;;;;;:::i;:::-;;:::i;29645:214::-;;;;;;;;;;-1:-1:-1;29645:214:0;;;;;:::i;:::-;;:::i;49009:422::-;;;;;;;;;;-1:-1:-1;49009:422:0;;;;;:::i;:::-;;:::i;10130:229::-;;;;;;;;;;-1:-1:-1;10130:229:0;;;;;:::i;:::-;;:::i;48452:102::-;;;;;;;;;;;;;:::i;40014:300::-;40161:4;-1:-1:-1;;;;;;40203:50:0;;-1:-1:-1;;;40203:50:0;;:103;;;40270:36;40294:11;40270:23;:36::i;:::-;40183:123;;40014:300;;;;:::o;27174:100::-;27228:13;27261:5;27254:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27174:100;:::o;28867:308::-;28988:7;29035:16;29043:7;29035;:16::i;:::-;29013:110;;;;-1:-1:-1;;;29013:110:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;29143:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29143:24:0;;28867:308::o;28390:411::-;28471:13;28487:23;28502:7;28487:14;:23::i;:::-;28471:39;;28535:5;-1:-1:-1;;;;;28529:11:0;:2;-1:-1:-1;;;;;28529:11:0;;;28521:57;;;;-1:-1:-1;;;28521:57:0;;;;;;;:::i;:::-;28629:5;-1:-1:-1;;;;;28613:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;28613:21:0;;:62;;;;28638:37;28655:5;28662:12;:10;:12::i;28638:37::-;28591:168;;;;-1:-1:-1;;;28591:168:0;;;;;;;:::i;:::-;28772:21;28781:2;28785:7;28772:8;:21::i;:::-;28390:411;;;:::o;46791:34::-;;;;;;;;;:::o;40817:113::-;40905:10;:17;40817:113;:::o;46618:45::-;46658:5;46618:45;:::o;29926:376::-;30135:41;30154:12;:10;:12::i;:::-;30168:7;30135:18;:41::i;:::-;30113:140;;;;-1:-1:-1;;;30113:140:0;;;;;;;:::i;:::-;30266:28;30276:4;30282:2;30286:7;30266:9;:28::i;40398:343::-;40540:7;40595:23;40612:5;40595:16;:23::i;:::-;40587:5;:31;40565:124;;;;-1:-1:-1;;;40565:124:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;40707:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40398:343::o;48361:83::-;9461:12;:10;:12::i;:::-;-1:-1:-1;;;;;9450:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9450:23:0;;9442:68;;;;-1:-1:-1;;;9442:68:0;;;;;;;:::i;:::-;48428:8:::1;::::0;;-1:-1:-1;;48416:20:0;::::1;48428:8;::::0;;::::1;48427:9;48416:20;::::0;;48361:83::o;46867:86::-;46911:42;46867:86;:::o;30373:185::-;30511:39;30528:4;30534:2;30538:7;30511:39;;;;;;;;;;;;:16;:39::i;47812:385::-;47901:16;47935:18;47956:17;47966:6;47956:9;:17::i;:::-;47935:38;;47986:25;48028:10;48014:25;;;;;;-1:-1:-1;;;48014:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48014:25:0;;47986:53;;48055:9;48050:112;48074:10;48070:1;:14;48050:112;;;48120:30;48140:6;48148:1;48120:19;:30::i;:::-;48106:8;48115:1;48106:11;;;;;;-1:-1:-1;;;48106:11:0;;;;;;;;;;;;;;;;;;:44;48086:3;;;;:::i;:::-;;;;48050:112;;;-1:-1:-1;48181:8:0;47812:385;-1:-1:-1;;;47812:385:0:o;41007:320::-;41127:7;41182:30;:28;:30::i;:::-;41174:5;:38;41152:132;;;;-1:-1:-1;;;41152:132:0;;;;;;;:::i;:::-;41302:10;41313:5;41302:17;;;;;;-1:-1:-1;;;41302:17:0;;;;;;;;;;;;;;;;;41295:24;;41007:320;;;:::o;48205:101::-;9461:12;:10;:12::i;:::-;-1:-1:-1;;;;;9450:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9450:23:0;;9442:68;;;;-1:-1:-1;;;9442:68:0;;;;;;;:::i;:::-;48276:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48205:101:::0;:::o;26781:326::-;26898:7;26939:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26939:16:0;26988:19;26966:110;;;;-1:-1:-1;;;26966:110:0;;;;;;;:::i;26424:295::-;26541:7;-1:-1:-1;;;;;26588:19:0;;26566:111;;;;-1:-1:-1;;;26566:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;26695:16:0;;;;;:9;:16;;;;;;;26424:295::o;9881:94::-;9461:12;:10;:12::i;:::-;-1:-1:-1;;;;;9450:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9450:23:0;;9442:68;;;;-1:-1:-1;;;9442:68:0;;;;;;;:::i;:::-;9946:21:::1;9964:1;9946:9;:21::i;:::-;9881:94::o:0;49467:232::-;9461:12;:10;:12::i;:::-;-1:-1:-1;;;;;9450:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9450:23:0;;9442:68;;;;-1:-1:-1;;;9442:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49560:24:0;::::1;;::::0;;;:18:::1;:24;::::0;;;;;::::1;;:33;49538:111;;;;-1:-1:-1::0;;;49538:111:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49660:24:0::1;;::::0;;;:18:::1;:24;::::0;;;;:31;;-1:-1:-1;;49660:31:0::1;49687:4;49660:31;::::0;;49467:232::o;48562:250::-;9461:12;:10;:12::i;:::-;-1:-1:-1;;;;;9450:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9450:23:0;;9442:68;;;;-1:-1:-1;;;9442:68:0;;;;;;;:::i;:::-;48633:21:::1;48673:11:::0;48665:32:::1;;;;-1:-1:-1::0;;;48665:32:0::1;;;;;;;:::i;:::-;48708:42;46911;48746:3;48730:12;:7:::0;48740:2:::1;48730:12;:::i;:::-;48729:20;;;;:::i;:::-;48708:10;:42::i;:::-;48761:43;47004:42;48782:21;48761:10;:43::i;:::-;9521:1;48562:250::o:0;9230:87::-;9303:6;;-1:-1:-1;;;;;9303:6:0;9230:87;:::o;27343:104::-;27399:13;27432:7;27425:14;;;;;:::i;46756:28::-;;;;;;:::o;50499:1032::-;50584:7;:5;:7::i;:::-;-1:-1:-1;;;;;50570:21:0;:10;-1:-1:-1;;;;;50570:21:0;;50566:610;;50614:15;;;;;;;50610:190;;;50697:10;50680:28;;;;:16;:28;;;;;;;;:36;;:28;:36;50650:134;;;;-1:-1:-1;;;50650:134:0;;;;;;;:::i;:::-;50824:8;;;;50816:41;;;;-1:-1:-1;;;50816:41:0;;;;;;;:::i;:::-;50907:1;50898:6;:10;:25;;;;;50922:1;50912:6;:11;;50898:25;50872:141;;;;-1:-1:-1;;;50872:141:0;;;;;;;:::i;:::-;51075:6;51067:5;;:14;;;;:::i;:::-;51054:9;:27;;51028:136;;;;-1:-1:-1;;;51028:136:0;;;;;;;:::i;:::-;46658:5;51224:6;51208:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:39;;51186:141;;;;-1:-1:-1;;;51186:141:0;;;;;;;:::i;:::-;51429:10;51415:11;51450:74;51474:6;51470:1;:10;51450:74;;;51502:10;51508:3;51502:5;:10::i;:::-;51482:3;;;;:::i;:::-;;;;51450:74;;46960:86;47004:42;46960:86;:::o;46670:40::-;;;;:::o;29247:327::-;29394:12;:10;:12::i;:::-;-1:-1:-1;;;;;29382:24:0;:8;-1:-1:-1;;;;;29382:24:0;;;29374:62;;;;-1:-1:-1;;;29374:62:0;;;;;;;:::i;:::-;29494:8;29449:18;:32;29468:12;:10;:12::i;:::-;-1:-1:-1;;;;;29449:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;29449:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;29449:53:0;;;;;;;;;;;29533:12;:10;:12::i;:::-;-1:-1:-1;;;;;29518:48:0;;29557:8;29518:48;;;;;;:::i;:::-;;;;;;;;29247:327;;:::o;49730:361::-;47492:10;47473:30;;;;:18;:30;;;;;;;;:38;;:30;:38;47451:119;;;;-1:-1:-1;;;47451:119:0;;;;;;;:::i;:::-;49851:9:::1;49846:238;49866:16:::0;;::::1;49846:238;;;49932:1;49912:5:::0;;49918:1;49912:8;;::::1;;;-1:-1:-1::0;;;49912:8:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49912:22:0::1;;;49904:61;;;;-1:-1:-1::0;;;49904:61:0::1;;;;;;;:::i;:::-;49983:16;:26;50000:5;;50006:1;50000:8;;;;;-1:-1:-1::0;;;50000:8:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49983:26:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;49983:26:0;;::::1;;49980:93;;50067:4;50038:16;:26;50055:5;;50061:1;50055:8;;;;;-1:-1:-1::0;;;50055:8:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50038:26:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;50038:26:0;:33;;-1:-1:-1;;50038:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49980:93:::1;49884:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49846:238;;30629:365:::0;30818:41;30837:12;:10;:12::i;:::-;30851:7;30818:18;:41::i;:::-;30796:140;;;;-1:-1:-1;;;30796:140:0;;;;;;;:::i;:::-;30947:39;30961:4;30967:2;30971:7;30980:5;30947:13;:39::i;:::-;30629:365;;;;:::o;27518:468::-;27636:13;27689:16;27697:7;27689;:16::i;:::-;27667:113;;;;-1:-1:-1;;;27667:113:0;;;;;;;:::i;:::-;27793:21;27817:10;:8;:10::i;:::-;27793:34;;27882:1;27864:7;27858:21;:25;:120;;;;;;;;;;;;;;;;;27927:7;27936:18;:7;:16;:18::i;:::-;27910:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27858:120;27838:140;27518:468;-1:-1:-1;;;27518:468:0:o;29645:214::-;-1:-1:-1;;;;;29816:25:0;;;29787:4;29816:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29645:214::o;49009:422::-;9461:12;:10;:12::i;:::-;-1:-1:-1;;;;;9450:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9450:23:0;;9442:68;;;;-1:-1:-1;;;9442:68:0;;;;;;;:::i;:::-;46658:5:::1;49126:11:::0;49110:13:::1;:11;:13::i;:::-;:34;;;;:::i;:::-;:51;;49088:149;;;;-1:-1:-1::0;;;49088:149:0::1;;;;;;;:::i;:::-;49253:9;49248:176;49268:22:::0;;::::1;49248:176;;;49346:1;49320:11:::0;;49332:1;49320:14;;::::1;;;-1:-1:-1::0;;;49320:14:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;49320:28:0::1;;;49312:64;;;;-1:-1:-1::0;;;49312:64:0::1;;;;;;;:::i;:::-;49391:21;49397:11;;49409:1;49397:14;;;;;-1:-1:-1::0;;;49397:14:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49391:5;:21::i;:::-;49292:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49248:176;;10130:229:::0;9461:12;:10;:12::i;:::-;-1:-1:-1;;;;;9450:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9450:23:0;;9442:68;;;;-1:-1:-1;;;9442:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10233:22:0;::::1;10211:110;;;;-1:-1:-1::0;;;10211:110:0::1;;;;;;;:::i;:::-;10332:19;10342:8;10332:9;:19::i;48452:102::-:0;9461:12;:10;:12::i;:::-;-1:-1:-1;;;;;9450:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9450:23:0;;9442:68;;;;-1:-1:-1;;;9442:68:0;;;;;;;:::i;:::-;48531:15:::1;::::0;;-1:-1:-1;;48512:34:0;::::1;48531:15;::::0;;;::::1;;;48530:16;48512:34:::0;;::::1;;::::0;;48452:102::o;26005:355::-;26152:4;-1:-1:-1;;;;;;26194:40:0;;-1:-1:-1;;;26194:40:0;;:105;;-1:-1:-1;;;;;;;26251:48:0;;-1:-1:-1;;;26251:48:0;26194:105;:158;;;;26316:36;26340:11;26316:23;:36::i;32541:127::-;32606:4;32630:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32630:16:0;:30;;;32541:127::o;2203:98::-;2283:10;2203:98;:::o;36664:174::-;36739:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36739:29:0;-1:-1:-1;;;;;36739:29:0;;;;;;;;:24;;36793:23;36739:24;36793:14;:23::i;:::-;-1:-1:-1;;;;;36784:46:0;;;;;;;;;;;36664:174;;:::o;32835:452::-;32964:4;33008:16;33016:7;33008;:16::i;:::-;32986:110;;;;-1:-1:-1;;;32986:110:0;;;;;;;:::i;:::-;33107:13;33123:23;33138:7;33123:14;:23::i;:::-;33107:39;;33176:5;-1:-1:-1;;;;;33165:16:0;:7;-1:-1:-1;;;;;33165:16:0;;:64;;;;33222:7;-1:-1:-1;;;;;33198:31:0;:20;33210:7;33198:11;:20::i;:::-;-1:-1:-1;;;;;33198:31:0;;33165:64;:113;;;;33246:32;33263:5;33270:7;33246:16;:32::i;:::-;33157:122;32835:452;-1:-1:-1;;;;32835:452:0:o;35931:615::-;36104:4;-1:-1:-1;;;;;36077:31:0;:23;36092:7;36077:14;:23::i;:::-;-1:-1:-1;;;;;36077:31:0;;36055:122;;;;-1:-1:-1;;;36055:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36196:16:0;;36188:65;;;;-1:-1:-1;;;36188:65:0;;;;;;;:::i;:::-;36266:39;36287:4;36293:2;36297:7;36266:20;:39::i;:::-;36370:29;36387:1;36391:7;36370:8;:29::i;:::-;-1:-1:-1;;;;;36412:15:0;;;;;;:9;:15;;;;;:20;;36431:1;;36412:15;:20;;36431:1;;36412:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36443:13:0;;;;;;:9;:13;;;;;:18;;36460:1;;36443:13;:18;;36460:1;;36443:18;:::i;:::-;;;;-1:-1:-1;;36472:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36472:21:0;-1:-1:-1;;;;;36472:21:0;;;;;;;;;36511:27;;36472:16;;36511:27;;;;;;;35931:615;;;:::o;10367:173::-;10442:6;;;-1:-1:-1;;;;;10459:17:0;;;-1:-1:-1;;;;;;10459:17:0;;;;;;;10492:40;;10442:6;;;10459:17;10442:6;;10492:40;;10423:16;;10492:40;10367:173;;:::o;48820:181::-;48895:12;48913:8;-1:-1:-1;;;;;48913:13:0;48934:7;48913:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48894:52;;;48965:7;48957:36;;;;-1:-1:-1;;;48957:36:0;;;;;;;:::i;51539:196::-;51586:20;:8;:18;:20::i;:::-;51617:15;51635:18;:8;:16;:18::i;:::-;51617:36;;51664:23;51674:3;51679:7;51664:9;:23::i;:::-;51703:24;51719:7;51703:24;;;;;;:::i;:::-;;;;;;;;51539:196;;:::o;31876:352::-;32033:28;32043:4;32049:2;32053:7;32033:9;:28::i;:::-;32094:48;32117:4;32123:2;32127:7;32136:5;32094:22;:48::i;:::-;32072:148;;;;-1:-1:-1;;;32072:148:0;;;;;;;:::i;51743:113::-;51803:13;51836:12;51829:19;;;;;:::i;12872:723::-;12928:13;13149:10;13145:53;;-1:-1:-1;13176:10:0;;;;;;;;;;;;-1:-1:-1;;;13176:10:0;;;;;;13145:53;13223:5;13208:12;13264:78;13271:9;;13264:78;;13297:8;;;;:::i;:::-;;-1:-1:-1;13320:10:0;;-1:-1:-1;13328:2:0;13320:10;;:::i;:::-;;;13264:78;;;13352:19;13384:6;13374:17;;;;;;-1:-1:-1;;;13374:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13374:17:0;;13352:39;;13402:154;13409:10;;13402:154;;13436:11;13446:1;13436:11;;:::i;:::-;;-1:-1:-1;13505:10:0;13513:2;13505:5;:10;:::i;:::-;13492:24;;:2;:24;:::i;:::-;13479:39;;13462:6;13469;13462:14;;;;;;-1:-1:-1;;;13462:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;13462:56:0;;;;;;;;-1:-1:-1;13533:11:0;13542:2;13533:11;;:::i;:::-;;;13402:154;;12351:207;-1:-1:-1;;;;;;12510:40:0;;-1:-1:-1;;;12510:40:0;12351:207;;;:::o;41940:589::-;42084:45;42111:4;42117:2;42121:7;42084:26;:45::i;:::-;-1:-1:-1;;;;;42146:18:0;;42142:187;;42181:40;42213:7;42181:31;:40::i;:::-;42142:187;;;42251:2;-1:-1:-1;;;;;42243:10:0;:4;-1:-1:-1;;;;;42243:10:0;;42239:90;;42270:47;42303:4;42309:7;42270:32;:47::i;:::-;-1:-1:-1;;;;;42343:16:0;;42339:183;;42376:45;42413:7;42376:36;:45::i;:::-;42339:183;;;42449:4;-1:-1:-1;;;;;42443:10:0;:2;-1:-1:-1;;;;;42443:10:0;;42439:83;;42470:40;42498:2;42502:7;42470:27;:40::i;1112:127::-;1201:19;;1219:1;1201:19;;;1112:127::o;990:114::-;1082:14;;990:114::o;33629:110::-;33705:26;33715:2;33719:7;33705:26;;;;;;;;;;;;:9;:26::i;37403:984::-;37558:4;37579:15;:2;-1:-1:-1;;;;;37579:13:0;;:15::i;:::-;37575:805;;;37648:2;-1:-1:-1;;;;;37632:36:0;;37691:12;:10;:12::i;:::-;37726:4;37753:7;37783:5;37632:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37632:175:0;;;;;;;;-1:-1:-1;;37632:175:0;;;;;;;;;;;;:::i;:::-;;;37611:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37994:13:0;;37990:320;;38037:108;;-1:-1:-1;;;38037:108:0;;;;;;;:::i;37990:320::-;38260:6;38254:13;38245:6;38241:2;38237:15;38230:38;37611:714;-1:-1:-1;;;;;;37871:55:0;-1:-1:-1;;;37871:55:0;;-1:-1:-1;37864:62:0;;37575:805;-1:-1:-1;38364:4:0;37403:984;;;;;;:::o;43252:164::-;43356:10;:17;;43329:24;;;;:15;:24;;;;;:44;;;43384:24;;;;;;;;;;;;43252:164::o;44043:1002::-;44323:22;44373:1;44348:22;44365:4;44348:16;:22::i;:::-;:26;;;;:::i;:::-;44385:18;44406:26;;;:17;:26;;;;;;44323:51;;-1:-1:-1;44539:28:0;;;44535:328;;-1:-1:-1;;;;;44606:18:0;;44584:19;44606:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44657:30;;;;;;:44;;;44774:30;;:17;:30;;;;;:43;;;44535:328;-1:-1:-1;44959:26:0;;;;:17;:26;;;;;;;;44952:33;;;-1:-1:-1;;;;;45003:18:0;;;;;:12;:18;;;;;:34;;;;;;;44996:41;44043:1002::o;45340:1079::-;45618:10;:17;45593:22;;45618:21;;45638:1;;45618:21;:::i;:::-;45650:18;45671:24;;;:15;:24;;;;;;46044:10;:26;;45593:46;;-1:-1:-1;45671:24:0;;45593:46;;46044:26;;;;-1:-1:-1;;;46044:26:0;;;;;;;;;;;;;;;;;46022:48;;46108:11;46083:10;46094;46083:22;;;;;;-1:-1:-1;;;46083:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;46188:28;;;:15;:28;;;;;;;:41;;;46360:24;;;;;46353:31;46395:10;:16;;;;;-1:-1:-1;;;46395:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;45340:1079;;;;:::o;42830:221::-;42915:14;42932:20;42949:2;42932:16;:20::i;:::-;-1:-1:-1;;;;;42963:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43008:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42830:221:0:o;33966:321::-;34096:18;34102:2;34106:7;34096:5;:18::i;:::-;34147:54;34178:1;34182:2;34186:7;34195:5;34147:22;:54::i;:::-;34125:154;;;;-1:-1:-1;;;34125:154:0;;;;;;;:::i;15425:387::-;15748:20;15796:8;;;15425:387::o;34623:382::-;-1:-1:-1;;;;;34703:16:0;;34695:61;;;;-1:-1:-1;;;34695:61:0;;;;;;;:::i;:::-;34776:16;34784:7;34776;:16::i;:::-;34775:17;34767:58;;;;-1:-1:-1;;;34767:58:0;;;;;;;:::i;:::-;34838:45;34867:1;34871:2;34875:7;34838:20;:45::i;:::-;-1:-1:-1;;;;;34896:13:0;;;;;;:9;:13;;;;;:18;;34913:1;;34896:13;:18;;34913:1;;34896:18;:::i;:::-;;;;-1:-1:-1;;34925:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34925:21:0;-1:-1:-1;;;;;34925:21:0;;;;;;;;34964:33;;34925:16;;;34964:33;;34925:16;;34964:33;34623:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:666::-;;;3134:2;3122:9;3113:7;3109:23;3105:32;3102:2;;;3155:6;3147;3140:22;3102:2;3200:9;3187:23;3229:18;3270:2;3262:6;3259:14;3256:2;;;3291:6;3283;3276:22;3256:2;3334:6;3323:9;3319:22;3309:32;;3379:7;3372:4;3368:2;3364:13;3360:27;3350:2;;3406:6;3398;3391:22;3350:2;3451;3438:16;3477:2;3469:6;3466:14;3463:2;;;3498:6;3490;3483:22;3463:2;3557:7;3552:2;3546;3538:6;3534:15;3530:2;3526:24;3522:33;3519:46;3516:2;;;3583:6;3575;3568:22;3516:2;3619;3611:11;;;;;3641:6;;-1:-1:-1;3092:561:1;;-1:-1:-1;;;;3092:561:1:o;3658:257::-;;3769:2;3757:9;3748:7;3744:23;3740:32;3737:2;;;3790:6;3782;3775:22;3737:2;3834:9;3821:23;3853:32;3879:5;3853:32;:::i;3920:261::-;;4042:2;4030:9;4021:7;4017:23;4013:32;4010:2;;;4063:6;4055;4048:22;4010:2;4100:9;4094:16;4119:32;4145:5;4119:32;:::i;4186:482::-;;4308:2;4296:9;4287:7;4283:23;4279:32;4276:2;;;4329:6;4321;4314:22;4276:2;4374:9;4361:23;4407:18;4399:6;4396:30;4393:2;;;4444:6;4436;4429:22;4393:2;4472:22;;4525:4;4517:13;;4513:27;-1:-1:-1;4503:2:1;;4559:6;4551;4544:22;4503:2;4587:75;4654:7;4649:2;4636:16;4631:2;4627;4623:11;4587:75;:::i;4673:190::-;;4785:2;4773:9;4764:7;4760:23;4756:32;4753:2;;;4806:6;4798;4791:22;4753:2;-1:-1:-1;4834:23:1;;4743:120;-1:-1:-1;4743:120:1:o;4868:259::-;;4949:5;4943:12;4976:6;4971:3;4964:19;4992:63;5048:6;5041:4;5036:3;5032:14;5025:4;5018:5;5014:16;4992:63;:::i;:::-;5109:2;5088:15;-1:-1:-1;;5084:29:1;5075:39;;;;5116:4;5071:50;;4919:208;-1:-1:-1;;4919:208:1:o;5132:470::-;;5349:6;5343:13;5365:53;5411:6;5406:3;5399:4;5391:6;5387:17;5365:53;:::i;:::-;5481:13;;5440:16;;;;5503:57;5481:13;5440:16;5537:4;5525:17;;5503:57;:::i;:::-;5576:20;;5319:283;-1:-1:-1;;;;5319:283:1:o;5607:205::-;5807:3;5798:14::o;5817:203::-;-1:-1:-1;;;;;5981:32:1;;;;5963:51;;5951:2;5936:18;;5918:102::o;6025:490::-;-1:-1:-1;;;;;6294:15:1;;;6276:34;;6346:15;;6341:2;6326:18;;6319:43;6393:2;6378:18;;6371:34;;;6441:3;6436:2;6421:18;;6414:31;;;6025:490;;6462:47;;6489:19;;6481:6;6462:47;:::i;:::-;6454:55;6228:287;-1:-1:-1;;;;;;6228:287:1:o;6520:635::-;6691:2;6743:21;;;6813:13;;6716:18;;;6835:22;;;6520:635;;6691:2;6914:15;;;;6888:2;6873:18;;;6520:635;6960:169;6974:6;6971:1;6968:13;6960:169;;;7035:13;;7023:26;;7104:15;;;;7069:12;;;;6996:1;6989:9;6960:169;;;-1:-1:-1;7146:3:1;;6671:484;-1:-1:-1;;;;;;6671:484:1:o;7160:187::-;7325:14;;7318:22;7300:41;;7288:2;7273:18;;7255:92::o;7352:221::-;;7501:2;7490:9;7483:21;7521:46;7563:2;7552:9;7548:18;7540:6;7521:46;:::i;7578:418::-;7780:2;7762:21;;;7819:2;7799:18;;;7792:30;7858:34;7853:2;7838:18;;7831:62;-1:-1:-1;;;7924:2:1;7909:18;;7902:52;7986:3;7971:19;;7752:244::o;8001:407::-;8203:2;8185:21;;;8242:2;8222:18;;;8215:30;8281:34;8276:2;8261:18;;8254:62;-1:-1:-1;;;8347:2:1;8332:18;;8325:41;8398:3;8383:19;;8175:233::o;8413:414::-;8615:2;8597:21;;;8654:2;8634:18;;;8627:30;8693:34;8688:2;8673:18;;8666:62;-1:-1:-1;;;8759:2:1;8744:18;;8737:48;8817:3;8802:19;;8587:240::o;8832:402::-;9034:2;9016:21;;;9073:2;9053:18;;;9046:30;9112:34;9107:2;9092:18;;9085:62;-1:-1:-1;;;9178:2:1;9163:18;;9156:36;9224:3;9209:19;;9006:228::o;9239:352::-;9441:2;9423:21;;;9480:2;9460:18;;;9453:30;9519;9514:2;9499:18;;9492:58;9582:2;9567:18;;9413:178::o;9596:347::-;9798:2;9780:21;;;9837:2;9817:18;;;9810:30;9876:25;9871:2;9856:18;;9849:53;9934:2;9919:18;;9770:173::o;9948:400::-;10150:2;10132:21;;;10189:2;10169:18;;;10162:30;10228:34;10223:2;10208:18;;10201:62;-1:-1:-1;;;10294:2:1;10279:18;;10272:34;10338:3;10323:19;;10122:226::o;10353:349::-;10555:2;10537:21;;;10594:2;10574:18;;;10567:30;10633:27;10628:2;10613:18;;10606:55;10693:2;10678:18;;10527:175::o;10707:344::-;10909:2;10891:21;;;10948:2;10928:18;;;10921:30;-1:-1:-1;;;10982:2:1;10967:18;;10960:50;11042:2;11027:18;;10881:170::o;11056:412::-;11258:2;11240:21;;;11297:2;11277:18;;;11270:30;11336:34;11331:2;11316:18;;11309:62;-1:-1:-1;;;11402:2:1;11387:18;;11380:46;11458:3;11443:19;;11230:238::o;11473:408::-;11675:2;11657:21;;;11714:2;11694:18;;;11687:30;11753:34;11748:2;11733:18;;11726:62;-1:-1:-1;;;11819:2:1;11804:18;;11797:42;11871:3;11856:19;;11647:234::o;11886:420::-;12088:2;12070:21;;;12127:2;12107:18;;;12100:30;12166:34;12161:2;12146:18;;12139:62;12237:26;12232:2;12217:18;;12210:54;12296:3;12281:19;;12060:246::o;12311:406::-;12513:2;12495:21;;;12552:2;12532:18;;;12525:30;12591:34;12586:2;12571:18;;12564:62;-1:-1:-1;;;12657:2:1;12642:18;;12635:40;12707:3;12692:19;;12485:232::o;12722:405::-;12924:2;12906:21;;;12963:2;12943:18;;;12936:30;13002:34;12997:2;12982:18;;12975:62;-1:-1:-1;;;13068:2:1;13053:18;;13046:39;13117:3;13102:19;;12896:231::o;13132:356::-;13334:2;13316:21;;;13353:18;;;13346:30;13412:34;13407:2;13392:18;;13385:62;13479:2;13464:18;;13306:182::o;13493:408::-;13695:2;13677:21;;;13734:2;13714:18;;;13707:30;13773:34;13768:2;13753:18;;13746:62;-1:-1:-1;;;13839:2:1;13824:18;;13817:42;13891:3;13876:19;;13667:234::o;13906:411::-;14108:2;14090:21;;;14147:2;14127:18;;;14120:30;14186:34;14181:2;14166:18;;14159:62;-1:-1:-1;;;14252:2:1;14237:18;;14230:45;14307:3;14292:19;;14080:237::o;14322:356::-;14524:2;14506:21;;;14543:18;;;14536:30;14602:34;14597:2;14582:18;;14575:62;14669:2;14654:18;;14496:182::o;14683:350::-;14885:2;14867:21;;;14924:2;14904:18;;;14897:30;14963:28;14958:2;14943:18;;14936:56;15024:2;15009:18;;14857:176::o;15038:416::-;15240:2;15222:21;;;15279:2;15259:18;;;15252:30;15318:34;15313:2;15298:18;;15291:62;-1:-1:-1;;;15384:2:1;15369:18;;15362:50;15444:3;15429:19;;15212:242::o;15459:405::-;15661:2;15643:21;;;15700:2;15680:18;;;15673:30;15739:34;15734:2;15719:18;;15712:62;-1:-1:-1;;;15805:2:1;15790:18;;15783:39;15854:3;15839:19;;15633:231::o;15869:411::-;16071:2;16053:21;;;16110:2;16090:18;;;16083:30;16149:34;16144:2;16129:18;;16122:62;-1:-1:-1;;;16215:2:1;16200:18;;16193:45;16270:3;16255:19;;16043:237::o;16285:397::-;16487:2;16469:21;;;16526:2;16506:18;;;16499:30;16565:34;16560:2;16545:18;;16538:62;-1:-1:-1;;;16631:2:1;16616:18;;16609:31;16672:3;16657:19;;16459:223::o;16687:352::-;16889:2;16871:21;;;16928:2;16908:18;;;16901:30;16967;16962:2;16947:18;;16940:58;17030:2;17015:18;;16861:178::o;17044:340::-;17246:2;17228:21;;;17285:2;17265:18;;;17258:30;-1:-1:-1;;;17319:2:1;17304:18;;17297:46;17375:2;17360:18;;17218:166::o;17389:413::-;17591:2;17573:21;;;17630:2;17610:18;;;17603:30;17669:34;17664:2;17649:18;;17642:62;-1:-1:-1;;;17735:2:1;17720:18;;17713:47;17792:3;17777:19;;17563:239::o;17807:408::-;18009:2;17991:21;;;18048:2;18028:18;;;18021:30;18087:34;18082:2;18067:18;;18060:62;-1:-1:-1;;;18153:2:1;18138:18;;18131:42;18205:3;18190:19;;17981:234::o;18220:348::-;18422:2;18404:21;;;18461:2;18441:18;;;18434:30;18500:26;18495:2;18480:18;;18473:54;18559:2;18544:18;;18394:174::o;18573:331::-;18775:2;18757:21;;;18814:1;18794:18;;;18787:29;-1:-1:-1;;;18847:2:1;18832:18;;18825:38;18895:2;18880:18;;18747:157::o;18909:355::-;19111:2;19093:21;;;19150:2;19130:18;;;19123:30;19189:33;19184:2;19169:18;;19162:61;19255:2;19240:18;;19083:181::o;19269:177::-;19415:25;;;19403:2;19388:18;;19370:76::o;19451:128::-;;19522:1;19518:6;19515:1;19512:13;19509:2;;;19528:18;;:::i;:::-;-1:-1:-1;19564:9:1;;19499:80::o;19584:120::-;;19650:1;19640:2;;19655:18;;:::i;:::-;-1:-1:-1;19689:9:1;;19630:74::o;19709:168::-;;19815:1;19811;19807:6;19803:14;19800:1;19797:21;19792:1;19785:9;19778:17;19774:45;19771:2;;;19822:18;;:::i;:::-;-1:-1:-1;19862:9:1;;19761:116::o;19882:125::-;;19950:1;19947;19944:8;19941:2;;;19955:18;;:::i;:::-;-1:-1:-1;19992:9:1;;19931:76::o;20012:258::-;20084:1;20094:113;20108:6;20105:1;20102:13;20094:113;;;20184:11;;;20178:18;20165:11;;;20158:39;20130:2;20123:10;20094:113;;;20225:6;20222:1;20219:13;20216:2;;;-1:-1:-1;;20260:1:1;20242:16;;20235:27;20065:205::o;20275:380::-;20360:1;20350:12;;20407:1;20397:12;;;20418:2;;20472:4;20464:6;20460:17;20450:27;;20418:2;20525;20517:6;20514:14;20494:18;20491:38;20488:2;;;20571:10;20566:3;20562:20;20559:1;20552:31;20606:4;20603:1;20596:15;20634:4;20631:1;20624:15;20488:2;;20330:325;;;:::o;20660:135::-;;-1:-1:-1;;20720:17:1;;20717:2;;;20740:18;;:::i;:::-;-1:-1:-1;20787:1:1;20776:13;;20707:88::o;20800:112::-;;20858:1;20848:2;;20863:18;;:::i;:::-;-1:-1:-1;20897:9:1;;20838:74::o;20917:127::-;20978:10;20973:3;20969:20;20966:1;20959:31;21009:4;21006:1;20999:15;21033:4;21030:1;21023:15;21049:127;21110:10;21105:3;21101:20;21098:1;21091:31;21141:4;21138:1;21131:15;21165:4;21162:1;21155:15;21181:127;21242:10;21237:3;21233:20;21230:1;21223:31;21273:4;21270:1;21263:15;21297:4;21294:1;21287:15;21313:133;-1:-1:-1;;;;;;21389:32:1;;21379:43;;21369:2;;21436:1;21433;21426:12

Swarm Source

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