ETH Price: $3,106.70 (+1.24%)
Gas: 6 Gwei

Token

PLUMP KITTENS (PLK)
 

Overview

Max Total Supply

5,555 PLK

Holders

1,645

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
25196.eth
Balance
1 PLK
0x5d8d277eb3d552edc661e5a8073e40eb128454fb
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:
PlumpKittens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-28
*/

// SPDX-License-Identifier: MIT 
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


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

pragma solidity ^0.8.0;

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/PlumpKittens.sol



pragma solidity >=0.8.0 <0.9.0;





contract PlumpKittens is ERC721A, Ownable { 

  using Strings for uint256;

  string public uriPrefix = "";
  string public uriSuffix = ".json"; 
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.005 ether;

  uint256 public maxSupply = 5555; 
  uint256 public maxMintAmountPerTx = 10; 
  uint256 public totalMaxMintAmount = 100; 

  uint256 public freeAmount = 1600; 
  uint256 public freeMaxMintAmount = 3; 

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

  mapping(address => uint256) public addressMintedBalance; 

  constructor() ERC721A("PLUMP KITTENS", "PLK") { 
        setHiddenMetadataUri("ipfs://__CID__/hidden.json"); 
            ownerMint(100); 
    } 

  // MODIFIERS 
  
  modifier mintCompliance(uint256 _mintAmount) {
    if (msg.sender != owner()) { 
        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    }
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  } 

  modifier mintPriceCompliance(uint256 _mintAmount) {
   if (freeAmount < totalSupply()) {
        require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
   }
        _;
  }

  // MINTS 

   function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!'); 
    require(publicSale, "Not open to public yet!");
    if (totalSupply() <= freeAmount) { 
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= freeMaxMintAmount, "Exceeded Free Mint Limit");
        } else if (totalSupply() > freeAmount) { 
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= totalMaxMintAmount, "Exceeded Mint Limit");
        }

    _safeMint(_msgSender(), _mintAmount);
    for (uint256 i = 1; i <=_mintAmount; i++){
        addressMintedBalance[msg.sender]++;
    }
  }

  function ownerMint(uint256 _mintAmount) public payable onlyOwner {
     require(_mintAmount > 0, 'Invalid mint amount!');
     require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _safeMint(_msgSender(), _mintAmount);
  }

function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }
  
  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned && ownership.addr != address(0)) {
        latestOwnerAddress = ownership.addr;
      }

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

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

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

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

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

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

  function setFreeAmount(uint256 _freeAmount) public onlyOwner {
    freeAmount = _freeAmount;  
  }

   function setFreeMaxMintAmount(uint256 _freeMaxMintAmount) public onlyOwner {
    freeMaxMintAmount = _freeMaxMintAmount; 
  }

  function setTotalMaxMintAmount(uint _amount) public onlyOwner {
      require(_amount <= maxSupply, "Exceed total amount");
      totalMaxMintAmount = _amount;
  }

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

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

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

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

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

  function setPublicSale(bool _state) public onlyOwner {
    publicSale = _state;
  }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMaxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeAmount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMaxMintAmount","type":"uint256"}],"name":"setFreeMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTotalMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMaxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a06040819052600060808190526200001b9160099162000634565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600a9162000634565b506611c37937e08000600c556115b3600d55600a600e556064600f5561064060105560036011556012805462ffffff191660011790553480156200008d57600080fd5b50604080518082018252600d81526c504c554d50204b495454454e5360981b602080830191825283518085019094526003845262504c4b60e81b908401528151919291620000de9160029162000634565b508051620000f490600390602084019062000634565b5050600160005550620001073362000158565b60408051808201909152601a81527f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e00000000000060208201526200014690620001aa565b62000152606462000212565b620007ec565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001f95760405162461bcd60e51b8152602060048201819052602482015260008051602062002e1b83398151915260448201526064015b60405180910390fd5b80516200020e90600b90602084019062000634565b5050565b6008546001600160a01b031633146200025d5760405162461bcd60e51b8152602060048201819052602482015260008051602062002e1b8339815191526044820152606401620001f0565b60008111620002af5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401620001f0565b600d546001546000548391900360001901620002cc919062000788565b11156200031c5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401620001f0565b6200032833826200032b565b50565b6200020e8282604051806020016040528060008152506200034d60201b60201c565b6200035c838383600162000361565b505050565b6000546001600160a01b0385166200038b57604051622e076360e81b815260040160405180910390fd5b83620003aa5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801562000463575062000463876001600160a01b03166200052460201b620016f81760201c565b15620004e3575b60405182906001600160a01b0389169060009060008051602062002e3b833981519152908290a46001820191620004a79060009089908862000533565b620004c5576040516368d2bf6b60e11b815260040160405180910390fd5b808214156200046a578260005414620004dd57600080fd5b62000519565b5b6040516001830192906001600160a01b0389169060009060008051602062002e3b833981519152908290a480821415620004e4575b506000555050505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200056a9033908990889088906004016200070d565b602060405180830381600087803b1580156200058557600080fd5b505af1925050508015620005b8575060408051601f3d908101601f19168201909252620005b591810190620006da565b60015b62000617573d808015620005e9576040519150601f19603f3d011682016040523d82523d6000602084013e620005ee565b606091505b5080516200060f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b8280546200064290620007af565b90600052602060002090601f016020900481019282620006665760008555620006b1565b82601f106200068157805160ff1916838001178555620006b1565b82800160010185558215620006b1579182015b82811115620006b157825182559160200191906001019062000694565b50620006bf929150620006c3565b5090565b5b80821115620006bf5760008155600101620006c4565b600060208284031215620006ed57600080fd5b81516001600160e01b0319811681146200070657600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b828110156200075c5785810182015185820160a0015281016200073e565b828111156200076f57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b60008219821115620007aa57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620007c457607f821691505b60208210811415620007e657634e487b7160e01b600052602260045260246000fd5b50919050565b61261f80620007fc6000396000f3fe60806040526004361061027d5760003560e01c806362b99ad41161014f578063a45ba8e7116100c1578063e0a808531161007a578063e0a8085314610739578063e4386d2614610759578063e985e9c51461076f578063efbd73f4146107b8578063f19e75d4146107d8578063f2fde38b146107eb57600080fd5b8063a45ba8e71461068e578063b071401b146106a3578063b88d4fde146106c3578063c87b56dd146106e3578063d4fcb2ae14610703578063d5abeb011461072357600080fd5b80638da5cb5b116101135780638da5cb5b146105f257806392910eec1461061057806394354fd01461063057806395d89b4114610646578063a0712d681461065b578063a22cb4651461066e57600080fd5b806362b99ad4146105685780636352211e1461057d57806370a082311461059d578063715018a6146105bd5780637ec4a659146105d257600080fd5b806318cae269116101f357806344a0d68a116101ac57806344a0d68a146104b95780634fdd43cb146104d957806351830227146104f95780635503a0e8146105195780635aca1bb61461052e5780635c975abb1461054e57600080fd5b806318cae269146103f857806323b872dd1461042557806333bc1c5c146104455780633ccfd60b1461046457806342842e0e1461046c578063438b63001461048c57600080fd5b80631042779c116102455780631042779c146103575780631159aca41461037757806313faede61461038d57806316ba10e0146103a357806316c38b3c146103c357806318160ddd146103e357600080fd5b806301ffc9a7146102825780630451a9f1146102b757806306fdde03146102db578063081812fc146102fd578063095ea7b314610335575b600080fd5b34801561028e57600080fd5b506102a261029d3660046121af565b61080b565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cd60105481565b6040519081526020016102ae565b3480156102e757600080fd5b506102f061085d565b6040516102ae91906123df565b34801561030957600080fd5b5061031d610318366004612232565b6108ef565b6040516001600160a01b0390911681526020016102ae565b34801561034157600080fd5b5061035561035036600461216a565b610933565b005b34801561036357600080fd5b50610355610372366004612232565b6109c1565b34801561038357600080fd5b506102cd60115481565b34801561039957600080fd5b506102cd600c5481565b3480156103af57600080fd5b506103556103be3660046121e9565b610a41565b3480156103cf57600080fd5b506103556103de366004612194565b610a82565b3480156103ef57600080fd5b506102cd610abf565b34801561040457600080fd5b506102cd61041336600461203a565b60136020526000908152604090205481565b34801561043157600080fd5b50610355610440366004612088565b610acd565b34801561045157600080fd5b506012546102a290610100900460ff1681565b610355610ad8565b34801561047857600080fd5b50610355610487366004612088565b610b76565b34801561049857600080fd5b506104ac6104a736600461203a565b610b91565b6040516102ae919061239b565b3480156104c557600080fd5b506103556104d4366004612232565b610cda565b3480156104e557600080fd5b506103556104f43660046121e9565b610d09565b34801561050557600080fd5b506012546102a29062010000900460ff1681565b34801561052557600080fd5b506102f0610d46565b34801561053a57600080fd5b50610355610549366004612194565b610dd4565b34801561055a57600080fd5b506012546102a29060ff1681565b34801561057457600080fd5b506102f0610e18565b34801561058957600080fd5b5061031d610598366004612232565b610e25565b3480156105a957600080fd5b506102cd6105b836600461203a565b610e37565b3480156105c957600080fd5b50610355610e86565b3480156105de57600080fd5b506103556105ed3660046121e9565b610ebc565b3480156105fe57600080fd5b506008546001600160a01b031661031d565b34801561061c57600080fd5b5061035561062b366004612232565b610ef9565b34801561063c57600080fd5b506102cd600e5481565b34801561065257600080fd5b506102f0610f28565b610355610669366004612232565b610f37565b34801561067a57600080fd5b50610355610689366004612140565b611215565b34801561069a57600080fd5b506102f06112ab565b3480156106af57600080fd5b506103556106be366004612232565b6112b8565b3480156106cf57600080fd5b506103556106de3660046120c4565b6112e7565b3480156106ef57600080fd5b506102f06106fe366004612232565b611332565b34801561070f57600080fd5b5061035561071e366004612232565b6114a2565b34801561072f57600080fd5b506102cd600d5481565b34801561074557600080fd5b50610355610754366004612194565b6114d1565b34801561076557600080fd5b506102cd600f5481565b34801561077b57600080fd5b506102a261078a366004612055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107c457600080fd5b506103556107d336600461224b565b611517565b6103556107e6366004612232565b6115d8565b3480156107f757600080fd5b5061035561080636600461203a565b611660565b60006001600160e01b031982166380ac58cd60e01b148061083c57506001600160e01b03198216635b5e139f60e01b145b8061085757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461086c90612511565b80601f016020809104026020016040519081016040528092919081815260200182805461089890612511565b80156108e55780601f106108ba576101008083540402835291602001916108e5565b820191906000526020600020905b8154815290600101906020018083116108c857829003601f168201915b5050505050905090565b60006108fa82611707565b610917576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061093e82610e25565b9050806001600160a01b0316836001600160a01b031614156109735760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109935750610991813361078a565b155b156109b1576040516367d9dca160e11b815260040160405180910390fd5b6109bc838383611740565b505050565b6008546001600160a01b031633146109f45760405162461bcd60e51b81526004016109eb90612420565b60405180910390fd5b600d54811115610a3c5760405162461bcd60e51b8152602060048201526013602482015272115e18d95959081d1bdd185b08185b5bdd5b9d606a1b60448201526064016109eb565b600f55565b6008546001600160a01b03163314610a6b5760405162461bcd60e51b81526004016109eb90612420565b8051610a7e90600a906020840190611eff565b5050565b6008546001600160a01b03163314610aac5760405162461bcd60e51b81526004016109eb90612420565b6012805460ff1916911515919091179055565b600154600054036000190190565b6109bc83838361179c565b6008546001600160a01b03163314610b025760405162461bcd60e51b81526004016109eb90612420565b6000610b166008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b60576040519150601f19603f3d011682016040523d82523d6000602084013e610b65565b606091505b5050905080610b7357600080fd5b50565b6109bc838383604051806020016040528060008152506112e7565b60606000610b9e83610e37565b905060008167ffffffffffffffff811115610bbb57610bbb6125bd565b604051908082528060200260200182016040528015610be4578160200160208202803683370190505b50905060016000805b8482108015610bfe5750600d548311155b15610ccf57600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161580159282018390529091610c6c575080516001600160a01b031615155b15610c7657805191505b876001600160a01b0316826001600160a01b03161415610cbc5783858481518110610ca357610ca36125a7565b602090810291909101015282610cb88161254c565b9350505b83610cc68161254c565b94505050610bed565b509195945050505050565b6008546001600160a01b03163314610d045760405162461bcd60e51b81526004016109eb90612420565b600c55565b6008546001600160a01b03163314610d335760405162461bcd60e51b81526004016109eb90612420565b8051610a7e90600b906020840190611eff565b600a8054610d5390612511565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7f90612511565b8015610dcc5780601f10610da157610100808354040283529160200191610dcc565b820191906000526020600020905b815481529060010190602001808311610daf57829003601f168201915b505050505081565b6008546001600160a01b03163314610dfe5760405162461bcd60e51b81526004016109eb90612420565b601280549115156101000261ff0019909216919091179055565b60098054610d5390612511565b6000610e308261198c565b5192915050565b60006001600160a01b038216610e60576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610eb05760405162461bcd60e51b81526004016109eb90612420565b610eba6000611ab5565b565b6008546001600160a01b03163314610ee65760405162461bcd60e51b81526004016109eb90612420565b8051610a7e906009906020840190611eff565b6008546001600160a01b03163314610f235760405162461bcd60e51b81526004016109eb90612420565b601055565b60606003805461086c90612511565b80610f4a6008546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610f9057600081118015610f745750600e548111155b610f905760405162461bcd60e51b81526004016109eb906123f2565b600d5481610f9c610abf565b610fa69190612483565b1115610fc45760405162461bcd60e51b81526004016109eb90612455565b81610fcd610abf565b60105410156110295780600c54610fe491906124af565b3410156110295760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109eb565b60125460ff161561107c5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016109eb565b601254610100900460ff166110d35760405162461bcd60e51b815260206004820152601760248201527f4e6f74206f70656e20746f207075626c6963207965742100000000000000000060448201526064016109eb565b6010546110de610abf565b1161115457336000908152601360205260409020546011546111008583612483565b111561114e5760405162461bcd60e51b815260206004820152601860248201527f45786365656465642046726565204d696e74204c696d6974000000000000000060448201526064016109eb565b506111c8565b60105461115f610abf565b11156111c85733600090815260136020526040902054600f546111828583612483565b11156111c65760405162461bcd60e51b8152602060048201526013602482015272115e18d95959195908135a5b9d08131a5b5a5d606a1b60448201526064016109eb565b505b6111d23384611b07565b60015b83811161120f573360009081526013602052604081208054916111f78361254c565b919050555080806112079061254c565b9150506111d5565b50505050565b6001600160a01b03821633141561123f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610d5390612511565b6008546001600160a01b031633146112e25760405162461bcd60e51b81526004016109eb90612420565b600e55565b6112f284848461179c565b6001600160a01b0383163b15158015611314575061131284848484611b21565b155b1561120f576040516368d2bf6b60e11b815260040160405180910390fd5b606061133d82611707565b6113a15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109eb565b60125462010000900460ff1661144357600b80546113be90612511565b80601f01602080910402602001604051908101604052809291908181526020018280546113ea90612511565b80156114375780601f1061140c57610100808354040283529160200191611437565b820191906000526020600020905b81548152906001019060200180831161141a57829003601f168201915b50505050509050919050565b600061144d611c19565b9050600081511161146d576040518060200160405280600081525061149b565b8061147784611c28565b600a60405160200161148b9392919061229a565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114cc5760405162461bcd60e51b81526004016109eb90612420565b601155565b6008546001600160a01b031633146114fb5760405162461bcd60e51b81526004016109eb90612420565b60128054911515620100000262ff000019909216919091179055565b8161152a6008546001600160a01b031690565b6001600160a01b0316336001600160a01b031614611570576000811180156115545750600e548111155b6115705760405162461bcd60e51b81526004016109eb906123f2565b600d548161157c610abf565b6115869190612483565b11156115a45760405162461bcd60e51b81526004016109eb90612455565b6008546001600160a01b031633146115ce5760405162461bcd60e51b81526004016109eb90612420565b6109bc8284611b07565b6008546001600160a01b031633146116025760405162461bcd60e51b81526004016109eb90612420565b600081116116225760405162461bcd60e51b81526004016109eb906123f2565b600d548161162e610abf565b6116389190612483565b11156116565760405162461bcd60e51b81526004016109eb90612455565b610b733382611b07565b6008546001600160a01b0316331461168a5760405162461bcd60e51b81526004016109eb90612420565b6001600160a01b0381166116ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109eb565b610b7381611ab5565b6001600160a01b03163b151590565b60008160011115801561171b575060005482105b8015610857575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117a78261198c565b9050836001600160a01b031681600001516001600160a01b0316146117de5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806117fc57506117fc853361078a565b8061181757503361180c846108ef565b6001600160a01b0316145b90508061183757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661185e57604051633a954ecd60e21b815260040160405180910390fd5b61186a60008487611740565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611940576000548214611940578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156119bc575060005481105b15611a9c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611a9a5780516001600160a01b031615611a30579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611a95579392505050565b611a30565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a7e828260405180602001604052806000815250611d26565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b5690339089908890889060040161235e565b602060405180830381600087803b158015611b7057600080fd5b505af1925050508015611ba0575060408051601f3d908101601f19168201909252611b9d918101906121cc565b60015b611bfb573d808015611bce576040519150601f19603f3d011682016040523d82523d6000602084013e611bd3565b606091505b508051611bf3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461086c90612511565b606081611c4c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c765780611c608161254c565b9150611c6f9050600a8361249b565b9150611c50565b60008167ffffffffffffffff811115611c9157611c916125bd565b6040519080825280601f01601f191660200182016040528015611cbb576020820181803683370190505b5090505b8415611c1157611cd06001836124ce565b9150611cdd600a86612567565b611ce8906030612483565b60f81b818381518110611cfd57611cfd6125a7565b60200101906001600160f81b031916908160001a905350611d1f600a8661249b565b9450611cbf565b6109bc83838360016000546001600160a01b038516611d5757604051622e076360e81b815260040160405180910390fd5b83611d755760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611e2757506001600160a01b0387163b15155b15611eb0575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e786000888480600101955088611b21565b611e95576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611e2d578260005414611eab57600080fd5b611ef6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611eb1575b50600055611985565b828054611f0b90612511565b90600052602060002090601f016020900481019282611f2d5760008555611f73565b82601f10611f4657805160ff1916838001178555611f73565b82800160010185558215611f73579182015b82811115611f73578251825591602001919060010190611f58565b50611f7f929150611f83565b5090565b5b80821115611f7f5760008155600101611f84565b600067ffffffffffffffff80841115611fb357611fb36125bd565b604051601f8501601f19908116603f01168101908282118183101715611fdb57611fdb6125bd565b81604052809350858152868686011115611ff457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461202557600080fd5b919050565b8035801515811461202557600080fd5b60006020828403121561204c57600080fd5b61149b8261200e565b6000806040838503121561206857600080fd5b6120718361200e565b915061207f6020840161200e565b90509250929050565b60008060006060848603121561209d57600080fd5b6120a68461200e565b92506120b46020850161200e565b9150604084013590509250925092565b600080600080608085870312156120da57600080fd5b6120e38561200e565b93506120f16020860161200e565b925060408501359150606085013567ffffffffffffffff81111561211457600080fd5b8501601f8101871361212557600080fd5b61213487823560208401611f98565b91505092959194509250565b6000806040838503121561215357600080fd5b61215c8361200e565b915061207f6020840161202a565b6000806040838503121561217d57600080fd5b6121868361200e565b946020939093013593505050565b6000602082840312156121a657600080fd5b61149b8261202a565b6000602082840312156121c157600080fd5b813561149b816125d3565b6000602082840312156121de57600080fd5b815161149b816125d3565b6000602082840312156121fb57600080fd5b813567ffffffffffffffff81111561221257600080fd5b8201601f8101841361222357600080fd5b611c1184823560208401611f98565b60006020828403121561224457600080fd5b5035919050565b6000806040838503121561225e57600080fd5b8235915061207f6020840161200e565b600081518084526122868160208601602086016124e5565b601f01601f19169290920160200192915050565b6000845160206122ad8285838a016124e5565b8551918401916122c08184848a016124e5565b8554920191600090600181811c90808316806122dd57607f831692505b8583108114156122fb57634e487b7160e01b85526022600452602485fd5b80801561230f57600181146123205761234d565b60ff1985168852838801955061234d565b60008b81526020902060005b858110156123455781548a82015290840190880161232c565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123919083018461226e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123d3578351835292840192918401916001016123b7565b50909695505050505050565b60208152600061149b602083018461226e565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b600082198211156124965761249661257b565b500190565b6000826124aa576124aa612591565b500490565b60008160001904831182151516156124c9576124c961257b565b500290565b6000828210156124e0576124e061257b565b500390565b60005b838110156125005781810151838201526020016124e8565b8381111561120f5750506000910152565b600181811c9082168061252557607f821691505b6020821081141561254657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125605761256061257b565b5060010190565b60008261257657612576612591565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b7357600080fdfea2646970667358221220182d2c999309fd793f6444ee8115bef2501cbbe570ce3e7771e30169d01f7b8364736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806362b99ad41161014f578063a45ba8e7116100c1578063e0a808531161007a578063e0a8085314610739578063e4386d2614610759578063e985e9c51461076f578063efbd73f4146107b8578063f19e75d4146107d8578063f2fde38b146107eb57600080fd5b8063a45ba8e71461068e578063b071401b146106a3578063b88d4fde146106c3578063c87b56dd146106e3578063d4fcb2ae14610703578063d5abeb011461072357600080fd5b80638da5cb5b116101135780638da5cb5b146105f257806392910eec1461061057806394354fd01461063057806395d89b4114610646578063a0712d681461065b578063a22cb4651461066e57600080fd5b806362b99ad4146105685780636352211e1461057d57806370a082311461059d578063715018a6146105bd5780637ec4a659146105d257600080fd5b806318cae269116101f357806344a0d68a116101ac57806344a0d68a146104b95780634fdd43cb146104d957806351830227146104f95780635503a0e8146105195780635aca1bb61461052e5780635c975abb1461054e57600080fd5b806318cae269146103f857806323b872dd1461042557806333bc1c5c146104455780633ccfd60b1461046457806342842e0e1461046c578063438b63001461048c57600080fd5b80631042779c116102455780631042779c146103575780631159aca41461037757806313faede61461038d57806316ba10e0146103a357806316c38b3c146103c357806318160ddd146103e357600080fd5b806301ffc9a7146102825780630451a9f1146102b757806306fdde03146102db578063081812fc146102fd578063095ea7b314610335575b600080fd5b34801561028e57600080fd5b506102a261029d3660046121af565b61080b565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cd60105481565b6040519081526020016102ae565b3480156102e757600080fd5b506102f061085d565b6040516102ae91906123df565b34801561030957600080fd5b5061031d610318366004612232565b6108ef565b6040516001600160a01b0390911681526020016102ae565b34801561034157600080fd5b5061035561035036600461216a565b610933565b005b34801561036357600080fd5b50610355610372366004612232565b6109c1565b34801561038357600080fd5b506102cd60115481565b34801561039957600080fd5b506102cd600c5481565b3480156103af57600080fd5b506103556103be3660046121e9565b610a41565b3480156103cf57600080fd5b506103556103de366004612194565b610a82565b3480156103ef57600080fd5b506102cd610abf565b34801561040457600080fd5b506102cd61041336600461203a565b60136020526000908152604090205481565b34801561043157600080fd5b50610355610440366004612088565b610acd565b34801561045157600080fd5b506012546102a290610100900460ff1681565b610355610ad8565b34801561047857600080fd5b50610355610487366004612088565b610b76565b34801561049857600080fd5b506104ac6104a736600461203a565b610b91565b6040516102ae919061239b565b3480156104c557600080fd5b506103556104d4366004612232565b610cda565b3480156104e557600080fd5b506103556104f43660046121e9565b610d09565b34801561050557600080fd5b506012546102a29062010000900460ff1681565b34801561052557600080fd5b506102f0610d46565b34801561053a57600080fd5b50610355610549366004612194565b610dd4565b34801561055a57600080fd5b506012546102a29060ff1681565b34801561057457600080fd5b506102f0610e18565b34801561058957600080fd5b5061031d610598366004612232565b610e25565b3480156105a957600080fd5b506102cd6105b836600461203a565b610e37565b3480156105c957600080fd5b50610355610e86565b3480156105de57600080fd5b506103556105ed3660046121e9565b610ebc565b3480156105fe57600080fd5b506008546001600160a01b031661031d565b34801561061c57600080fd5b5061035561062b366004612232565b610ef9565b34801561063c57600080fd5b506102cd600e5481565b34801561065257600080fd5b506102f0610f28565b610355610669366004612232565b610f37565b34801561067a57600080fd5b50610355610689366004612140565b611215565b34801561069a57600080fd5b506102f06112ab565b3480156106af57600080fd5b506103556106be366004612232565b6112b8565b3480156106cf57600080fd5b506103556106de3660046120c4565b6112e7565b3480156106ef57600080fd5b506102f06106fe366004612232565b611332565b34801561070f57600080fd5b5061035561071e366004612232565b6114a2565b34801561072f57600080fd5b506102cd600d5481565b34801561074557600080fd5b50610355610754366004612194565b6114d1565b34801561076557600080fd5b506102cd600f5481565b34801561077b57600080fd5b506102a261078a366004612055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107c457600080fd5b506103556107d336600461224b565b611517565b6103556107e6366004612232565b6115d8565b3480156107f757600080fd5b5061035561080636600461203a565b611660565b60006001600160e01b031982166380ac58cd60e01b148061083c57506001600160e01b03198216635b5e139f60e01b145b8061085757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461086c90612511565b80601f016020809104026020016040519081016040528092919081815260200182805461089890612511565b80156108e55780601f106108ba576101008083540402835291602001916108e5565b820191906000526020600020905b8154815290600101906020018083116108c857829003601f168201915b5050505050905090565b60006108fa82611707565b610917576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061093e82610e25565b9050806001600160a01b0316836001600160a01b031614156109735760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906109935750610991813361078a565b155b156109b1576040516367d9dca160e11b815260040160405180910390fd5b6109bc838383611740565b505050565b6008546001600160a01b031633146109f45760405162461bcd60e51b81526004016109eb90612420565b60405180910390fd5b600d54811115610a3c5760405162461bcd60e51b8152602060048201526013602482015272115e18d95959081d1bdd185b08185b5bdd5b9d606a1b60448201526064016109eb565b600f55565b6008546001600160a01b03163314610a6b5760405162461bcd60e51b81526004016109eb90612420565b8051610a7e90600a906020840190611eff565b5050565b6008546001600160a01b03163314610aac5760405162461bcd60e51b81526004016109eb90612420565b6012805460ff1916911515919091179055565b600154600054036000190190565b6109bc83838361179c565b6008546001600160a01b03163314610b025760405162461bcd60e51b81526004016109eb90612420565b6000610b166008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b60576040519150601f19603f3d011682016040523d82523d6000602084013e610b65565b606091505b5050905080610b7357600080fd5b50565b6109bc838383604051806020016040528060008152506112e7565b60606000610b9e83610e37565b905060008167ffffffffffffffff811115610bbb57610bbb6125bd565b604051908082528060200260200182016040528015610be4578160200160208202803683370190505b50905060016000805b8482108015610bfe5750600d548311155b15610ccf57600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161580159282018390529091610c6c575080516001600160a01b031615155b15610c7657805191505b876001600160a01b0316826001600160a01b03161415610cbc5783858481518110610ca357610ca36125a7565b602090810291909101015282610cb88161254c565b9350505b83610cc68161254c565b94505050610bed565b509195945050505050565b6008546001600160a01b03163314610d045760405162461bcd60e51b81526004016109eb90612420565b600c55565b6008546001600160a01b03163314610d335760405162461bcd60e51b81526004016109eb90612420565b8051610a7e90600b906020840190611eff565b600a8054610d5390612511565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7f90612511565b8015610dcc5780601f10610da157610100808354040283529160200191610dcc565b820191906000526020600020905b815481529060010190602001808311610daf57829003601f168201915b505050505081565b6008546001600160a01b03163314610dfe5760405162461bcd60e51b81526004016109eb90612420565b601280549115156101000261ff0019909216919091179055565b60098054610d5390612511565b6000610e308261198c565b5192915050565b60006001600160a01b038216610e60576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610eb05760405162461bcd60e51b81526004016109eb90612420565b610eba6000611ab5565b565b6008546001600160a01b03163314610ee65760405162461bcd60e51b81526004016109eb90612420565b8051610a7e906009906020840190611eff565b6008546001600160a01b03163314610f235760405162461bcd60e51b81526004016109eb90612420565b601055565b60606003805461086c90612511565b80610f4a6008546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610f9057600081118015610f745750600e548111155b610f905760405162461bcd60e51b81526004016109eb906123f2565b600d5481610f9c610abf565b610fa69190612483565b1115610fc45760405162461bcd60e51b81526004016109eb90612455565b81610fcd610abf565b60105410156110295780600c54610fe491906124af565b3410156110295760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109eb565b60125460ff161561107c5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016109eb565b601254610100900460ff166110d35760405162461bcd60e51b815260206004820152601760248201527f4e6f74206f70656e20746f207075626c6963207965742100000000000000000060448201526064016109eb565b6010546110de610abf565b1161115457336000908152601360205260409020546011546111008583612483565b111561114e5760405162461bcd60e51b815260206004820152601860248201527f45786365656465642046726565204d696e74204c696d6974000000000000000060448201526064016109eb565b506111c8565b60105461115f610abf565b11156111c85733600090815260136020526040902054600f546111828583612483565b11156111c65760405162461bcd60e51b8152602060048201526013602482015272115e18d95959195908135a5b9d08131a5b5a5d606a1b60448201526064016109eb565b505b6111d23384611b07565b60015b83811161120f573360009081526013602052604081208054916111f78361254c565b919050555080806112079061254c565b9150506111d5565b50505050565b6001600160a01b03821633141561123f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610d5390612511565b6008546001600160a01b031633146112e25760405162461bcd60e51b81526004016109eb90612420565b600e55565b6112f284848461179c565b6001600160a01b0383163b15158015611314575061131284848484611b21565b155b1561120f576040516368d2bf6b60e11b815260040160405180910390fd5b606061133d82611707565b6113a15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109eb565b60125462010000900460ff1661144357600b80546113be90612511565b80601f01602080910402602001604051908101604052809291908181526020018280546113ea90612511565b80156114375780601f1061140c57610100808354040283529160200191611437565b820191906000526020600020905b81548152906001019060200180831161141a57829003601f168201915b50505050509050919050565b600061144d611c19565b9050600081511161146d576040518060200160405280600081525061149b565b8061147784611c28565b600a60405160200161148b9392919061229a565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114cc5760405162461bcd60e51b81526004016109eb90612420565b601155565b6008546001600160a01b031633146114fb5760405162461bcd60e51b81526004016109eb90612420565b60128054911515620100000262ff000019909216919091179055565b8161152a6008546001600160a01b031690565b6001600160a01b0316336001600160a01b031614611570576000811180156115545750600e548111155b6115705760405162461bcd60e51b81526004016109eb906123f2565b600d548161157c610abf565b6115869190612483565b11156115a45760405162461bcd60e51b81526004016109eb90612455565b6008546001600160a01b031633146115ce5760405162461bcd60e51b81526004016109eb90612420565b6109bc8284611b07565b6008546001600160a01b031633146116025760405162461bcd60e51b81526004016109eb90612420565b600081116116225760405162461bcd60e51b81526004016109eb906123f2565b600d548161162e610abf565b6116389190612483565b11156116565760405162461bcd60e51b81526004016109eb90612455565b610b733382611b07565b6008546001600160a01b0316331461168a5760405162461bcd60e51b81526004016109eb90612420565b6001600160a01b0381166116ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109eb565b610b7381611ab5565b6001600160a01b03163b151590565b60008160011115801561171b575060005482105b8015610857575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117a78261198c565b9050836001600160a01b031681600001516001600160a01b0316146117de5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806117fc57506117fc853361078a565b8061181757503361180c846108ef565b6001600160a01b0316145b90508061183757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661185e57604051633a954ecd60e21b815260040160405180910390fd5b61186a60008487611740565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611940576000548214611940578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156119bc575060005481105b15611a9c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611a9a5780516001600160a01b031615611a30579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611a95579392505050565b611a30565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a7e828260405180602001604052806000815250611d26565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b5690339089908890889060040161235e565b602060405180830381600087803b158015611b7057600080fd5b505af1925050508015611ba0575060408051601f3d908101601f19168201909252611b9d918101906121cc565b60015b611bfb573d808015611bce576040519150601f19603f3d011682016040523d82523d6000602084013e611bd3565b606091505b508051611bf3576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461086c90612511565b606081611c4c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c765780611c608161254c565b9150611c6f9050600a8361249b565b9150611c50565b60008167ffffffffffffffff811115611c9157611c916125bd565b6040519080825280601f01601f191660200182016040528015611cbb576020820181803683370190505b5090505b8415611c1157611cd06001836124ce565b9150611cdd600a86612567565b611ce8906030612483565b60f81b818381518110611cfd57611cfd6125a7565b60200101906001600160f81b031916908160001a905350611d1f600a8661249b565b9450611cbf565b6109bc83838360016000546001600160a01b038516611d5757604051622e076360e81b815260040160405180910390fd5b83611d755760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611e2757506001600160a01b0387163b15155b15611eb0575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e786000888480600101955088611b21565b611e95576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611e2d578260005414611eab57600080fd5b611ef6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611eb1575b50600055611985565b828054611f0b90612511565b90600052602060002090601f016020900481019282611f2d5760008555611f73565b82601f10611f4657805160ff1916838001178555611f73565b82800160010185558215611f73579182015b82811115611f73578251825591602001919060010190611f58565b50611f7f929150611f83565b5090565b5b80821115611f7f5760008155600101611f84565b600067ffffffffffffffff80841115611fb357611fb36125bd565b604051601f8501601f19908116603f01168101908282118183101715611fdb57611fdb6125bd565b81604052809350858152868686011115611ff457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461202557600080fd5b919050565b8035801515811461202557600080fd5b60006020828403121561204c57600080fd5b61149b8261200e565b6000806040838503121561206857600080fd5b6120718361200e565b915061207f6020840161200e565b90509250929050565b60008060006060848603121561209d57600080fd5b6120a68461200e565b92506120b46020850161200e565b9150604084013590509250925092565b600080600080608085870312156120da57600080fd5b6120e38561200e565b93506120f16020860161200e565b925060408501359150606085013567ffffffffffffffff81111561211457600080fd5b8501601f8101871361212557600080fd5b61213487823560208401611f98565b91505092959194509250565b6000806040838503121561215357600080fd5b61215c8361200e565b915061207f6020840161202a565b6000806040838503121561217d57600080fd5b6121868361200e565b946020939093013593505050565b6000602082840312156121a657600080fd5b61149b8261202a565b6000602082840312156121c157600080fd5b813561149b816125d3565b6000602082840312156121de57600080fd5b815161149b816125d3565b6000602082840312156121fb57600080fd5b813567ffffffffffffffff81111561221257600080fd5b8201601f8101841361222357600080fd5b611c1184823560208401611f98565b60006020828403121561224457600080fd5b5035919050565b6000806040838503121561225e57600080fd5b8235915061207f6020840161200e565b600081518084526122868160208601602086016124e5565b601f01601f19169290920160200192915050565b6000845160206122ad8285838a016124e5565b8551918401916122c08184848a016124e5565b8554920191600090600181811c90808316806122dd57607f831692505b8583108114156122fb57634e487b7160e01b85526022600452602485fd5b80801561230f57600181146123205761234d565b60ff1985168852838801955061234d565b60008b81526020902060005b858110156123455781548a82015290840190880161232c565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123919083018461226e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123d3578351835292840192918401916001016123b7565b50909695505050505050565b60208152600061149b602083018461226e565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b600082198211156124965761249661257b565b500190565b6000826124aa576124aa612591565b500490565b60008160001904831182151516156124c9576124c961257b565b500290565b6000828210156124e0576124e061257b565b500390565b60005b838110156125005781810151838201526020016124e8565b8381111561120f5750506000910152565b600181811c9082168061252557607f821691505b6020821081141561254657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125605761256061257b565b5060010190565b60008261257657612576612591565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b7357600080fdfea2646970667358221220182d2c999309fd793f6444ee8115bef2501cbbe570ce3e7771e30169d01f7b8364736f6c63430008070033

Deployed Bytecode Sourcemap

44837:5396:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24476:305;;;;;;;;;;-1:-1:-1;24476:305:0;;;;;:::i;:::-;;:::i;:::-;;;8066:14:1;;8059:22;8041:41;;8029:2;8014:18;24476:305:0;;;;;;;;45199:32;;;;;;;;;;;;;;;;;;;12446:25:1;;;12434:2;12419:18;45199:32:0;12300:177:1;27589:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29092:204::-;;;;;;;;;;-1:-1:-1;29092:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6727:32:1;;;6709:51;;6697:2;6682:18;29092:204:0;6563:203:1;28655:371:0;;;;;;;;;;-1:-1:-1;28655:371:0;;;;;:::i;:::-;;:::i;:::-;;49116:166;;;;;;;;;;-1:-1:-1;49116:166:0;;;;;:::i;:::-;;:::i;45237:36::-;;;;;;;;;;;;;;;;45031:33;;;;;;;;;;;;;;;;49668:100;;;;;;;;;;-1:-1:-1;49668:100:0;;;;;:::i;:::-;;:::i;49774:77::-;;;;;;;;;;-1:-1:-1;49774:77:0;;;;;:::i;:::-;;:::i;23725:303::-;;;;;;;;;;;;;:::i;45381:55::-;;;;;;;;;;-1:-1:-1;45381:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;29957:170;;;;;;;;;;-1:-1:-1;29957:170:0;;;;;:::i;:::-;;:::i;45311:30::-;;;;;;;;;;-1:-1:-1;45311:30:0;;;;;;;;;;;49965:155;;;:::i;30198:185::-;;;;;;;;;;-1:-1:-1;30198:185:0;;;;;:::i;:::-;;:::i;47354:796::-;;;;;;;;;;-1:-1:-1;47354:796:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48795:75::-;;;;;;;;;;-1:-1:-1;48795:75:0;;;;;:::i;:::-;;:::i;49424:132::-;;;;;;;;;;-1:-1:-1;49424:132:0;;;;;:::i;:::-;;:::i;45346:28::-;;;;;;;;;;-1:-1:-1;45346:28:0;;;;;;;;;;;44952:33;;;;;;;;;;;;;:::i;49857:85::-;;;;;;;;;;-1:-1:-1;49857:85:0;;;;;:::i;:::-;;:::i;45281:25::-;;;;;;;;;;-1:-1:-1;45281:25:0;;;;;;;;44919:28;;;;;;;;;;;;;:::i;27397:125::-;;;;;;;;;;-1:-1:-1;27397:125:0;;;;;:::i;:::-;;:::i;24845:206::-;;;;;;;;;;-1:-1:-1;24845:206:0;;;;;:::i;:::-;;:::i;43934:103::-;;;;;;;;;;;;;:::i;49562:100::-;;;;;;;;;;-1:-1:-1;49562:100:0;;;;;:::i;:::-;;:::i;43283:87::-;;;;;;;;;;-1:-1:-1;43356:6:0;;-1:-1:-1;;;;;43356:6:0;43283:87;;48876:100;;;;;;;;;;-1:-1:-1;48876:100:0;;;;;:::i;:::-;;:::i;45108:38::-;;;;;;;;;;;;;;;;27758:104;;;;;;;;;;;;;:::i;46111:819::-;;;;;;:::i;:::-;;:::i;29368:287::-;;;;;;;;;;-1:-1:-1;29368:287:0;;;;;:::i;:::-;;:::i;44991:31::-;;;;;;;;;;;;;:::i;49288:130::-;;;;;;;;;;-1:-1:-1;49288:130:0;;;;;:::i;:::-;;:::i;30454:369::-;;;;;;;;;;-1:-1:-1;30454:369:0;;;;;:::i;:::-;;:::i;48257:445::-;;;;;;;;;;-1:-1:-1;48257:445:0;;;;;:::i;:::-;;:::i;48983:127::-;;;;;;;;;;-1:-1:-1;48983:127:0;;;;;:::i;:::-;;:::i;45071:31::-;;;;;;;;;;;;;;;;48708:81;;;;;;;;;;-1:-1:-1;48708:81:0;;;;;:::i;:::-;;:::i;45152:39::-;;;;;;;;;;;;;;;;29726:164;;;;;;;;;;-1:-1:-1;29726:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29847:25:0;;;29823:4;29847:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29726:164;47191:155;;;;;;;;;;-1:-1:-1;47191:155:0;;;;;:::i;:::-;;:::i;46936:251::-;;;;;;:::i;:::-;;:::i;44192:201::-;;;;;;;;;;-1:-1:-1;44192:201:0;;;;;:::i;:::-;;:::i;24476:305::-;24578:4;-1:-1:-1;;;;;;24615:40:0;;-1:-1:-1;;;24615:40:0;;:105;;-1:-1:-1;;;;;;;24672:48:0;;-1:-1:-1;;;24672:48:0;24615:105;:158;;;-1:-1:-1;;;;;;;;;;13583:40:0;;;24737:36;24595:178;24476:305;-1:-1:-1;;24476:305:0:o;27589:100::-;27643:13;27676:5;27669:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27589:100;:::o;29092:204::-;29160:7;29185:16;29193:7;29185;:16::i;:::-;29180:64;;29210:34;;-1:-1:-1;;;29210:34:0;;;;;;;;;;;29180:64;-1:-1:-1;29264:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29264:24:0;;29092:204::o;28655:371::-;28728:13;28744:24;28760:7;28744:15;:24::i;:::-;28728:40;;28789:5;-1:-1:-1;;;;;28783:11:0;:2;-1:-1:-1;;;;;28783:11:0;;28779:48;;;28803:24;;-1:-1:-1;;;28803:24:0;;;;;;;;;;;28779:48;20072:10;-1:-1:-1;;;;;28844:21:0;;;;;;:63;;-1:-1:-1;28870:37:0;28887:5;20072:10;29726:164;:::i;28870:37::-;28869:38;28844:63;28840:138;;;28931:35;;-1:-1:-1;;;28931:35:0;;;;;;;;;;;28840:138;28990:28;28999:2;29003:7;29012:5;28990:8;:28::i;:::-;28717:309;28655:371;;:::o;49116:166::-;43356:6;;-1:-1:-1;;;;;43356:6:0;20072:10;43503:23;43495:68;;;;-1:-1:-1;;;43495:68:0;;;;;;;:::i;:::-;;;;;;;;;49206:9:::1;;49195:7;:20;;49187:52;;;::::0;-1:-1:-1;;;49187:52:0;;9623:2:1;49187:52:0::1;::::0;::::1;9605:21:1::0;9662:2;9642:18;;;9635:30;-1:-1:-1;;;9681:18:1;;;9674:49;9740:18;;49187:52:0::1;9421:343:1::0;49187:52:0::1;49248:18;:28:::0;49116:166::o;49668:100::-;43356:6;;-1:-1:-1;;;;;43356:6:0;20072:10;43503:23;43495:68;;;;-1:-1:-1;;;43495:68:0;;;;;;;:::i;:::-;49740:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49668:100:::0;:::o;49774:77::-;43356:6;;-1:-1:-1;;;;;43356:6:0;20072:10;43503:23;43495:68;;;;-1:-1:-1;;;43495:68:0;;;;;;;:::i;:::-;49830:6:::1;:15:::0;;-1:-1:-1;;49830:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49774:77::o;23725:303::-;48244:1;23979:12;23769:7;23963:13;:28;-1:-1:-1;;23963:46:0;;23725:303::o;29957:170::-;30091:28;30101:4;30107:2;30111:7;30091:9;:28::i;49965:155::-;43356:6;;-1:-1:-1;;;;;43356:6:0;20072:10;43503:23;43495:68;;;;-1:-1:-1;;;43495:68:0;;;;;;;:::i;:::-;50022:7:::1;50043;43356:6:::0;;-1:-1:-1;;;;;43356:6:0;;43283:87;50043:7:::1;-1:-1:-1::0;;;;;50035:21:0::1;50064;50035:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50021:69;;;50106:2;50098:11;;;::::0;::::1;;50010:110;49965:155::o:0;30198:185::-;30336:39;30353:4;30359:2;30363:7;30336:39;;;;;;;;;;;;:16;:39::i;47354:796::-;47414:16;47439:23;47465:17;47475:6;47465:9;:17::i;:::-;47439:43;;47489:30;47536:15;47522:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47522:30:0;-1:-1:-1;47489:63:0;-1:-1:-1;48244:1:0;47559:22;;47675:441;47700:15;47682;:33;:64;;;;;47737:9;;47719:14;:27;;47682:64;47675:441;;;47757:31;47791:27;;;:11;:27;;;;;;;;;47757:61;;;;;;;;;-1:-1:-1;;;;;47757:61:0;;;;-1:-1:-1;;;47757:61:0;;;;;;;;;;;-1:-1:-1;;;47757:61:0;;;;;;;;;;;;;;;;47833:49;;-1:-1:-1;47854:14:0;;-1:-1:-1;;;;;47854:28:0;;;47833:49;47829:111;;;47916:14;;;-1:-1:-1;47829:111:0;47976:6;-1:-1:-1;;;;;47954:28:0;:18;-1:-1:-1;;;;;47954:28:0;;47950:132;;;48028:14;47995:13;48009:15;47995:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;48055:17;;;;:::i;:::-;;;;47950:132;48092:16;;;;:::i;:::-;;;;47748:368;47675:441;;;-1:-1:-1;48131:13:0;;47354:796;-1:-1:-1;;;;;47354:796:0:o;48795:75::-;43356:6;;-1:-1:-1;;;;;43356:6:0;20072:10;43503:23;43495:68;;;;-1:-1:-1;;;43495:68:0;;;;;;;:::i;:::-;48851:4:::1;:12:::0;48795:75::o;49424:132::-;43356:6;;-1:-1:-1;;;;;43356:6:0;20072:10;43503:23;43495:68;;;;-1:-1:-1;;;43495:68:0;;;;;;;:::i;:::-;49512:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;44952:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49857:85::-;43356:6;;-1:-1:-1;;;;;43356:6:0;20072:10;43503:23;43495:68;;;;-1:-1:-1;;;43495:68:0;;;;;;;:::i;:::-;49917:10:::1;:19:::0;;;::::1;;;;-1:-1:-1::0;;49917:19:0;;::::1;::::0;;;::::1;::::0;;49857:85::o;44919:28::-;;;;;;;:::i;27397:125::-;27461:7;27488:21;27501:7;27488:12;:21::i;:::-;:26;;27397:125;-1:-1:-1;;27397:125:0:o;24845:206::-;24909:7;-1:-1:-1;;;;;24933:19:0;;24929:60;;24961:28;;-1:-1:-1;;;24961:28:0;;;;;;;;;;;24929:60;-1:-1:-1;;;;;;25015:19:0;;;;;:12;:19;;;;;:27;;;;24845:206::o;43934:103::-;43356:6;;-1:-1:-1;;;;;43356:6:0;20072:10;43503:23;43495:68;;;;-1:-1:-1;;;43495:68:0;;;;;;;:::i;:::-;43999:30:::1;44026:1;43999:18;:30::i;:::-;43934:103::o:0;49562:100::-;43356:6;;-1:-1:-1;;;;;43356:6:0;20072:10;43503:23;43495:68;;;;-1:-1:-1;;;43495:68:0;;;;;;;:::i;:::-;49634:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;48876:100::-:0;43356:6;;-1:-1:-1;;;;;43356:6:0;20072:10;43503:23;43495:68;;;;-1:-1:-1;;;43495:68:0;;;;;;;:::i;:::-;48944:10:::1;:24:::0;48876:100::o;27758:104::-;27814:13;27847:7;27840:14;;;;;:::i;46111:819::-;46176:11;45689:7;43356:6;;-1:-1:-1;;;;;43356:6:0;;43283:87;45689:7;-1:-1:-1;;;;;45675:21:0;:10;-1:-1:-1;;;;;45675:21:0;;45671:132;;45732:1;45718:11;:15;:52;;;;;45752:18;;45737:11;:33;;45718:52;45710:85;;;;-1:-1:-1;;;45710:85:0;;;;;;;:::i;:::-;45848:9;;45833:11;45817:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;45809:73;;;;-1:-1:-1;;;45809:73:0;;;;;;;:::i;:::-;46209:11:::1;45976:13;:11;:13::i;:::-;45963:10;;:26;45959:113;;;46030:11;46023:4;;:18;;;;:::i;:::-;46010:9;:31;;46002:63;;;::::0;-1:-1:-1;;;46002:63:0;;12154:2:1;46002:63:0::1;::::0;::::1;12136:21:1::0;12193:2;12173:18;;;12166:30;-1:-1:-1;;;12212:18:1;;;12205:49;12271:18;;46002:63:0::1;11952:343:1::0;46002:63:0::1;46238:6:::2;::::0;::::2;;46237:7;46229:43;;;::::0;-1:-1:-1;;;46229:43:0;;10685:2:1;46229:43:0::2;::::0;::::2;10667:21:1::0;10724:2;10704:18;;;10697:30;10763:25;10743:18;;;10736:53;10806:18;;46229:43:0::2;10483:347:1::0;46229:43:0::2;46288:10;::::0;::::2;::::0;::::2;;;46280:46;;;::::0;-1:-1:-1;;;46280:46:0;;11802:2:1;46280:46:0::2;::::0;::::2;11784:21:1::0;11841:2;11821:18;;;11814:30;11880:25;11860:18;;;11853:53;11923:18;;46280:46:0::2;11600:347:1::0;46280:46:0::2;46354:10;;46337:13;:11;:13::i;:::-;:27;46333:447;;46430:10;46382:24;46409:32:::0;;;:20:::2;:32;::::0;;;;;46498:17:::2;::::0;46464:30:::2;46483:11:::0;46409:32;46464:30:::2;:::i;:::-;:51;;46456:88;;;::::0;-1:-1:-1;;;46456:88:0;;9971:2:1;46456:88:0::2;::::0;::::2;9953:21:1::0;10010:2;9990:18;;;9983:30;10049:26;10029:18;;;10022:54;10093:18;;46456:88:0::2;9769:348:1::0;46456:88:0::2;46366:190;46333:447;;;46582:10;;46566:13;:11;:13::i;:::-;:26;46562:218;;;46658:10;46610:24;46637:32:::0;;;:20:::2;:32;::::0;;;;;46726:18:::2;::::0;46692:30:::2;46711:11:::0;46637:32;46692:30:::2;:::i;:::-;:52;;46684:84;;;::::0;-1:-1:-1;;;46684:84:0;;8519:2:1;46684:84:0::2;::::0;::::2;8501:21:1::0;8558:2;8538:18;;;8531:30;-1:-1:-1;;;8577:18:1;;;8570:49;8636:18;;46684:84:0::2;8317:343:1::0;46684:84:0::2;46594:186;46562:218;46788:36;20072:10:::0;46812:11:::2;46788:9;:36::i;:::-;46848:1;46831:94;46855:11;46851:1;:15;46831:94;;46904:10;46883:32;::::0;;;:20:::2;:32;::::0;;;;:34;;;::::2;::::0;::::2;:::i;:::-;;;;;;46868:3;;;;;:::i;:::-;;;;46831:94;;;;45889:1:::1;46111:819:::0;;:::o;29368:287::-;-1:-1:-1;;;;;29467:24:0;;20072:10;29467:24;29463:54;;;29500:17;;-1:-1:-1;;;29500:17:0;;;;;;;;;;;29463:54;20072:10;29530:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29530:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29530:53:0;;;;;;;;;;29599:48;;8041:41:1;;;29530:42:0;;20072:10;29599:48;;8014:18:1;29599:48:0;;;;;;;29368:287;;:::o;44991:31::-;;;;;;;:::i;49288:130::-;43356:6;;-1:-1:-1;;;;;43356:6:0;20072:10;43503:23;43495:68;;;;-1:-1:-1;;;43495:68:0;;;;;;;:::i;:::-;49372:18:::1;:40:::0;49288:130::o;30454:369::-;30621:28;30631:4;30637:2;30641:7;30621:9;:28::i;:::-;-1:-1:-1;;;;;30664:13:0;;3686:19;:23;;30664:76;;;;;30684:56;30715:4;30721:2;30725:7;30734:5;30684:30;:56::i;:::-;30683:57;30664:76;30660:156;;;30764:40;;-1:-1:-1;;;30764:40:0;;;;;;;;;;;48257:445;48331:13;48361:17;48369:8;48361:7;:17::i;:::-;48353:77;;;;-1:-1:-1;;;48353:77:0;;11037:2:1;48353:77:0;;;11019:21:1;11076:2;11056:18;;;11049:30;11115:34;11095:18;;;11088:62;-1:-1:-1;;;11166:18:1;;;11159:45;11221:19;;48353:77:0;10835:411:1;48353:77:0;48443:8;;;;;;;48439:64;;48478:17;48471:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48257:445;;;:::o;48439:64::-;48511:28;48542:10;:8;:10::i;:::-;48511:41;;48597:1;48572:14;48566:28;:32;:130;;;;;;;;;;;;;;;;;48634:14;48650:19;:8;:17;:19::i;:::-;48671:9;48617:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48566:130;48559:137;48257:445;-1:-1:-1;;;48257:445:0:o;48983:127::-;43356:6;;-1:-1:-1;;;;;43356:6:0;20072:10;43503:23;43495:68;;;;-1:-1:-1;;;43495:68:0;;;;;;;:::i;:::-;49065:17:::1;:38:::0;48983:127::o;48708:81::-;43356:6;;-1:-1:-1;;;;;43356:6:0;20072:10;43503:23;43495:68;;;;-1:-1:-1;;;43495:68:0;;;;;;;:::i;:::-;48766:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;48766:17:0;;::::1;::::0;;;::::1;::::0;;48708:81::o;47191:155::-;47277:11;45689:7;43356:6;;-1:-1:-1;;;;;43356:6:0;;43283:87;45689:7;-1:-1:-1;;;;;45675:21:0;:10;-1:-1:-1;;;;;45675:21:0;;45671:132;;45732:1;45718:11;:15;:52;;;;;45752:18;;45737:11;:33;;45718:52;45710:85;;;;-1:-1:-1;;;45710:85:0;;;;;;;:::i;:::-;45848:9;;45833:11;45817:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;45809:73;;;;-1:-1:-1;;;45809:73:0;;;;;;;:::i;:::-;43356:6;;-1:-1:-1;;;;;43356:6:0;20072:10;43503:23:::1;43495:68;;;;-1:-1:-1::0;;;43495:68:0::1;;;;;;;:::i;:::-;47307:33:::2;47317:9;47328:11;47307:9;:33::i;46936:251::-:0;43356:6;;-1:-1:-1;;;;;43356:6:0;20072:10;43503:23;43495:68;;;;-1:-1:-1;;;43495:68:0;;;;;;;:::i;:::-;47031:1:::1;47017:11;:15;47009:48;;;;-1:-1:-1::0;;;47009:48:0::1;;;;;;;:::i;:::-;47104:9;;47089:11;47073:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;47065:73;;;;-1:-1:-1::0;;;47065:73:0::1;;;;;;;:::i;:::-;47145:36;20072:10:::0;47169:11:::1;47145:9;:36::i;44192:201::-:0;43356:6;;-1:-1:-1;;;;;43356:6:0;20072:10;43503:23;43495:68;;;;-1:-1:-1;;;43495:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44281:22:0;::::1;44273:73;;;::::0;-1:-1:-1;;;44273:73:0;;8867:2:1;44273:73:0::1;::::0;::::1;8849:21:1::0;8906:2;8886:18;;;8879:30;8945:34;8925:18;;;8918:62;-1:-1:-1;;;8996:18:1;;;8989:36;9042:19;;44273:73:0::1;8665:402:1::0;44273:73:0::1;44357:28;44376:8;44357:18;:28::i;3391:326::-:0;-1:-1:-1;;;;;3686:19:0;;:23;;;3391:326::o;31078:174::-;31135:4;31178:7;48244:1;31159:26;;:53;;;;;31199:13;;31189:7;:23;31159:53;:85;;;;-1:-1:-1;;31217:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31217:27:0;;;;31216:28;;31078:174::o;39235:196::-;39350:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39350:29:0;-1:-1:-1;;;;;39350:29:0;;;;;;;;;39395:28;;39350:24;;39395:28;;;;;;;39235:196;;;:::o;34178:2130::-;34293:35;34331:21;34344:7;34331:12;:21::i;:::-;34293:59;;34391:4;-1:-1:-1;;;;;34369:26:0;:13;:18;;;-1:-1:-1;;;;;34369:26:0;;34365:67;;34404:28;;-1:-1:-1;;;34404:28:0;;;;;;;;;;;34365:67;34445:22;20072:10;-1:-1:-1;;;;;34471:20:0;;;;:73;;-1:-1:-1;34508:36:0;34525:4;20072:10;29726:164;:::i;34508:36::-;34471:126;;;-1:-1:-1;20072:10:0;34561:20;34573:7;34561:11;:20::i;:::-;-1:-1:-1;;;;;34561:36:0;;34471:126;34445:153;;34616:17;34611:66;;34642:35;;-1:-1:-1;;;34642:35:0;;;;;;;;;;;34611:66;-1:-1:-1;;;;;34692:16:0;;34688:52;;34717:23;;-1:-1:-1;;;34717:23:0;;;;;;;;;;;34688:52;34861:35;34878:1;34882:7;34891:4;34861:8;:35::i;:::-;-1:-1:-1;;;;;35192:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35192:31:0;;;;;;;-1:-1:-1;;35192:31:0;;;;;;;35238:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35238:29:0;;;;;;;;;;;35318:20;;;:11;:20;;;;;;35353:18;;-1:-1:-1;;;;;;35386:49:0;;;;-1:-1:-1;;;35419:15:0;35386:49;;;;;;;;;;35709:11;;35769:24;;;;;35812:13;;35318:20;;35769:24;;35812:13;35808:384;;36022:13;;36007:11;:28;36003:174;;36060:20;;36129:28;;;;36103:54;;-1:-1:-1;;;36103:54:0;-1:-1:-1;;;;;;36103:54:0;;;-1:-1:-1;;;;;36060:20:0;;36103:54;;;;36003:174;35167:1036;;;36239:7;36235:2;-1:-1:-1;;;;;36220:27:0;36229:4;-1:-1:-1;;;;;36220:27:0;;;;;;;;;;;36258:42;34282:2026;;34178:2130;;;:::o;26226:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26337:7:0;;48244:1;26386:23;;:47;;;;;26420:13;;26413:4;:20;26386:47;26382:886;;;26454:31;26488:17;;;:11;:17;;;;;;;;;26454:51;;;;;;;;;-1:-1:-1;;;;;26454:51:0;;;;-1:-1:-1;;;26454:51:0;;;;;;;;;;;-1:-1:-1;;;26454:51:0;;;;;;;;;;;;;;26524:729;;26574:14;;-1:-1:-1;;;;;26574:28:0;;26570:101;;26638:9;26226:1109;-1:-1:-1;;;26226:1109:0:o;26570:101::-;-1:-1:-1;;;27013:6:0;27058:17;;;;:11;:17;;;;;;;;;27046:29;;;;;;;;;-1:-1:-1;;;;;27046:29:0;;;;;-1:-1:-1;;;27046:29:0;;;;;;;;;;;-1:-1:-1;;;27046:29:0;;;;;;;;;;;;;27106:28;27102:109;;27174:9;26226:1109;-1:-1:-1;;;26226:1109:0:o;27102:109::-;26973:261;;;26435:833;26382:886;27296:31;;-1:-1:-1;;;27296:31:0;;;;;;;;;;;44553:191;44646:6;;;-1:-1:-1;;;;;44663:17:0;;;-1:-1:-1;;;;;;44663:17:0;;;;;;;44696:40;;44646:6;;;44663:17;44646:6;;44696:40;;44627:16;;44696:40;44616:128;44553:191;:::o;31260:104::-;31329:27;31339:2;31343:8;31329:27;;;;;;;;;;;;:9;:27::i;39923:667::-;40107:72;;-1:-1:-1;;;40107:72:0;;40086:4;;-1:-1:-1;;;;;40107:36:0;;;;;:72;;20072:10;;40158:4;;40164:7;;40173:5;;40107:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40107:72:0;;;;;;;;-1:-1:-1;;40107:72:0;;;;;;;;;;;;:::i;:::-;;;40103:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40341:13:0;;40337:235;;40387:40;;-1:-1:-1;;;40387:40:0;;;;;;;;;;;40337:235;40530:6;40524:13;40515:6;40511:2;40507:15;40500:38;40103:480;-1:-1:-1;;;;;;40226:55:0;-1:-1:-1;;;40226:55:0;;-1:-1:-1;40103:480:0;39923:667;;;;;;:::o;50126:104::-;50186:13;50215:9;50208:16;;;;;:::i;399:723::-;455:13;676:10;672:53;;-1:-1:-1;;703:10:0;;;;;;;;;;;;-1:-1:-1;;;703:10:0;;;;;399:723::o;672:53::-;750:5;735:12;791:78;798:9;;791:78;;824:8;;;;:::i;:::-;;-1:-1:-1;847:10:0;;-1:-1:-1;855:2:0;847:10;;:::i;:::-;;;791:78;;;879:19;911:6;901:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;901:17:0;;879:39;;929:154;936:10;;929:154;;963:11;973:1;963:11;;:::i;:::-;;-1:-1:-1;1032:10:0;1040:2;1032:5;:10;:::i;:::-;1019:24;;:2;:24;:::i;:::-;1006:39;;989:6;996;989:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;989:56:0;;;;;;;;-1:-1:-1;1060:11:0;1069:2;1060:11;;:::i;:::-;;;929:154;;31727:163;31850:32;31856:2;31860:8;31870:5;31877:4;32288:20;32311:13;-1:-1:-1;;;;;32339:16:0;;32335:48;;32364:19;;-1:-1:-1;;;32364:19:0;;;;;;;;;;;32335:48;32398:13;32394:44;;32420:18;;-1:-1:-1;;;32420:18:0;;;;;;;;;;;32394:44;-1:-1:-1;;;;;32789:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32848:49:0;;32789:44;;;;;;;;32848:49;;;;-1:-1:-1;;32789:44:0;;;;;;32848:49;;;;;;;;;;;;;;;;32914:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32964:66:0;;;;-1:-1:-1;;;33014:15:0;32964:66;;;;;;;;;;32914:25;33111:23;;;33155:4;:23;;;;-1:-1:-1;;;;;;33163:13:0;;3686:19;:23;;33163:15;33151:641;;;33199:314;33230:38;;33255:12;;-1:-1:-1;;;;;33230:38:0;;;33247:1;;33230:38;;33247:1;;33230:38;33296:69;33335:1;33339:2;33343:14;;;;;;33359:5;33296:30;:69::i;:::-;33291:174;;33401:40;;-1:-1:-1;;;33401:40:0;;;;;;;;;;;33291:174;33508:3;33492:12;:19;;33199:314;;33594:12;33577:13;;:29;33573:43;;33608:8;;;33573:43;33151:641;;;33657:120;33688:40;;33713:14;;;;;-1:-1:-1;;;;;33688:40:0;;;33705:1;;33688:40;;33705:1;;33688:40;33772:3;33756:12;:19;;33657:120;;33151:641;-1:-1:-1;33806:13:0;:28;33856:60;46111:819;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:254::-;4368:6;4376;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4481:9;4468:23;4458:33;;4510:38;4544:2;4533:9;4529:18;4510:38;:::i;4559:257::-;4600:3;4638:5;4632:12;4665:6;4660:3;4653:19;4681:63;4737:6;4730:4;4725:3;4721:14;4714:4;4707:5;4703:16;4681:63;:::i;:::-;4798:2;4777:15;-1:-1:-1;;4773:29:1;4764:39;;;;4805:4;4760:50;;4559:257;-1:-1:-1;;4559:257:1:o;4821:1527::-;5045:3;5083:6;5077:13;5109:4;5122:51;5166:6;5161:3;5156:2;5148:6;5144:15;5122:51;:::i;:::-;5236:13;;5195:16;;;;5258:55;5236:13;5195:16;5280:15;;;5258:55;:::i;:::-;5402:13;;5335:20;;;5375:1;;5462;5484:18;;;;5537;;;;5564:93;;5642:4;5632:8;5628:19;5616:31;;5564:93;5705:2;5695:8;5692:16;5672:18;5669:40;5666:167;;;-1:-1:-1;;;5732:33:1;;5788:4;5785:1;5778:15;5818:4;5739:3;5806:17;5666:167;5849:18;5876:110;;;;6000:1;5995:328;;;;5842:481;;5876:110;-1:-1:-1;;5911:24:1;;5897:39;;5956:20;;;;-1:-1:-1;5876:110:1;;5995:328;12555:1;12548:14;;;12592:4;12579:18;;6090:1;6104:169;6118:8;6115:1;6112:15;6104:169;;;6200:14;;6185:13;;;6178:37;6243:16;;;;6135:10;;6104:169;;;6108:3;;6304:8;6297:5;6293:20;6286:27;;5842:481;-1:-1:-1;6339:3:1;;4821:1527;-1:-1:-1;;;;;;;;;;;4821:1527:1:o;6771:488::-;-1:-1:-1;;;;;7040:15:1;;;7022:34;;7092:15;;7087:2;7072:18;;7065:43;7139:2;7124:18;;7117:34;;;7187:3;7182:2;7167:18;;7160:31;;;6965:4;;7208:45;;7233:19;;7225:6;7208:45;:::i;:::-;7200:53;6771:488;-1:-1:-1;;;;;;6771:488:1:o;7264:632::-;7435:2;7487:21;;;7557:13;;7460:18;;;7579:22;;;7406:4;;7435:2;7658:15;;;;7632:2;7617:18;;;7406:4;7701:169;7715:6;7712:1;7709:13;7701:169;;;7776:13;;7764:26;;7845:15;;;;7810:12;;;;7737:1;7730:9;7701:169;;;-1:-1:-1;7887:3:1;;7264:632;-1:-1:-1;;;;;;7264:632:1:o;8093:219::-;8242:2;8231:9;8224:21;8205:4;8262:44;8302:2;8291:9;8287:18;8279:6;8262:44;:::i;9072:344::-;9274:2;9256:21;;;9313:2;9293:18;;;9286:30;-1:-1:-1;;;9347:2:1;9332:18;;9325:50;9407:2;9392:18;;9072:344::o;10122:356::-;10324:2;10306:21;;;10343:18;;;10336:30;10402:34;10397:2;10382:18;;10375:62;10469:2;10454:18;;10122:356::o;11251:344::-;11453:2;11435:21;;;11492:2;11472:18;;;11465:30;-1:-1:-1;;;11526:2:1;11511:18;;11504:50;11586:2;11571:18;;11251:344::o;12608:128::-;12648:3;12679:1;12675:6;12672:1;12669:13;12666:39;;;12685:18;;:::i;:::-;-1:-1:-1;12721:9:1;;12608:128::o;12741:120::-;12781:1;12807;12797:35;;12812:18;;:::i;:::-;-1:-1:-1;12846:9:1;;12741:120::o;12866:168::-;12906:7;12972:1;12968;12964:6;12960:14;12957:1;12954:21;12949:1;12942:9;12935:17;12931:45;12928:71;;;12979:18;;:::i;:::-;-1:-1:-1;13019:9:1;;12866:168::o;13039:125::-;13079:4;13107:1;13104;13101:8;13098:34;;;13112:18;;:::i;:::-;-1:-1:-1;13149:9:1;;13039:125::o;13169:258::-;13241:1;13251:113;13265:6;13262:1;13259:13;13251:113;;;13341:11;;;13335:18;13322:11;;;13315:39;13287:2;13280:10;13251:113;;;13382:6;13379:1;13376:13;13373:48;;;-1:-1:-1;;13417:1:1;13399:16;;13392:27;13169:258::o;13432:380::-;13511:1;13507:12;;;;13554;;;13575:61;;13629:4;13621:6;13617:17;13607:27;;13575:61;13682:2;13674:6;13671:14;13651:18;13648:38;13645:161;;;13728:10;13723:3;13719:20;13716:1;13709:31;13763:4;13760:1;13753:15;13791:4;13788:1;13781:15;13645:161;;13432:380;;;:::o;13817:135::-;13856:3;-1:-1:-1;;13877:17:1;;13874:43;;;13897:18;;:::i;:::-;-1:-1:-1;13944:1:1;13933:13;;13817:135::o;13957:112::-;13989:1;14015;14005:35;;14020:18;;:::i;:::-;-1:-1:-1;14054:9:1;;13957:112::o;14074:127::-;14135:10;14130:3;14126:20;14123:1;14116:31;14166:4;14163:1;14156:15;14190:4;14187:1;14180:15;14206:127;14267:10;14262:3;14258:20;14255:1;14248:31;14298:4;14295:1;14288:15;14322:4;14319:1;14312:15;14338:127;14399:10;14394:3;14390:20;14387:1;14380:31;14430:4;14427:1;14420:15;14454:4;14451:1;14444:15;14470:127;14531:10;14526:3;14522:20;14519:1;14512:31;14562:4;14559:1;14552:15;14586:4;14583:1;14576:15;14602:131;-1:-1:-1;;;;;;14676:32:1;;14666:43;;14656:71;;14723:1;14720;14713:12

Swarm Source

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