ETH Price: $3,502.91 (+2.15%)
Gas: 2 Gwei

Token

The Pickleverse (PKVS)
 

Overview

Max Total Supply

1,000 PKVS

Holders

297

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PKVS
0xb73fdcaf8a52dfb157b424ee25e271a48156f01c
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:
ThePickleverse

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 99999 runs

Other Settings:
default evmVersion
File 1 of 1 : ThePickleverse.sol
// SPDX-License-Identifier: MIT

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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

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


// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

pragma solidity >=0.7.0 <0.9.0;

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

  string public baseURI;
  string public baseExtension = "";
  uint256 public publicCost = 0.05 ether;
  uint256 public maxSupply = 6666;
  uint256 public maxMintAmount = 25;
  uint256 public freeMints = 500;
  uint256 public reservedPickles = 50;
  uint256 public reservedClaimed = 0;
  bool public saleIsActive = true;
  bool public preSaleIsActive = true;
  string name_ = 'The Pickleverse';
  string symbol_ = 'PKVS';
  string baseURI_ = 'ipfs://QmXTb9HCFkcDsQE9AWfS5xW8d8iekcg9nqZXXFw36yYFCj/';
 

  mapping(address => uint256) public addressMintedBalance;

  constructor(
  ) ERC721(name_, symbol_) {
    setBaseURI(baseURI_);
  }

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

  // Reserve
    function claimReserved(address recipient, uint256 amount) external onlyOwner {
        require(reservedClaimed <= reservedPickles, "Already have claimed all reserved pickles");
        require(reservedClaimed + amount <= reservedPickles, "Minting would exceed max pickles");
        require(recipient != address(0), "Cannot add null address");
        uint256 supply = totalSupply();
        require(supply < maxSupply, "All tokens have been minted");
        require(supply + amount <= maxSupply, "Minting would exceed max supply");

        uint256 _nextTokenId = supply + 1;

        for (uint256 i = 0; i < amount; i++) {
            _safeMint(recipient, _nextTokenId + i);
        }
        reservedClaimed += amount;
    }


  // Free Mint
  function mintFreePickle(uint256 _mintAmount) public {
        require(preSaleIsActive, "Free mints are not available yet.");
        require(_mintAmount > 0, "need to mint at least 1 Pickle");
        require(_mintAmount <= 3, "Max free mint amount");
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= freeMints, "No more free mints"); 
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];
        require(ownerMintedCount + _mintAmount <= 3, "No more free mints for this address");

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

  }

  // public MINT
  function mintPickle(uint256 _mintAmount) public payable {
    require(saleIsActive, "Minting is currently pasued, please check our social media for updates.");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 Pickle");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max Pickles mint exceeded supply");

    if (msg.sender != owner() ) {
        require(msg.value >= publicCost * _mintAmount, "Not enough ether to buy a pickle");
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }
  
  //For Airdrop/Burn Purposes
  function airDrop(address[] calldata _addresses) public payable onlyOwner {
    uint256 supply = totalSupply();
    supply += 1;
    for (uint i=0; i<_addresses.length; i++) {
      _safeMint(_addresses[i], supply + i);
    }
  }

  //Get the tokens that exist for this wallet
  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }
  
  //Set Public Sale Cost
  function setCost(uint256 _newCost) public onlyOwner() {
    publicCost = _newCost;
  }

  //Set Max Mint Amount
  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
    maxMintAmount = _newmaxMintAmount;
  }

  //Set Base URI
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  //Update Base Extension if necessary
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  //Pause Presale
  function pausePreSale() external onlyOwner {
    preSaleIsActive = false;
  }
  
  //Start Presale 
  function startPreSale() external onlyOwner {
    preSaleIsActive = true;
  }

  //Pause Sale
  function pauseSale() public onlyOwner {
    saleIsActive = false;
  }
  
  //Start Sale
  function startSale() public onlyOwner {
    saleIsActive = true;
  }
  
  //Update Free Mint Amount
  function setFreeMintCount(uint256 _freeMintAmount) public onlyOwner {
   freeMints = _freeMintAmount;
  }

  function withdrawAll() public {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        
        address[6] memory addresses = [
            0x79ae957493e81182B3701686892C5f244bfAA764,
            0x69b75456bB8243326d18869c4D41fCe1C5d096D2,
            0x276e464FB0973F99BaD1a1bb3bCC98Ff6b07957d,
            0x6C86ab754f6B8d1c5618D5B0ab7AfE1D98843F69,
            0x60e55Ea69cD7ddDc74b1dfa9Eb04E1b2Bc382A5A,
            0x739cC4746e106d050f757bCeCE2AAfC9F2EAaA28 
        ];

        uint32[6] memory shares = [
            uint32(4250),
            uint32(2500),
            uint32(1500),
            uint32(750),
            uint32(500),
            uint32(500)
        ];

        for (uint32 i = 0; i < addresses.length; i++) {
            uint256 amount = i == addresses.length - 1 ? address(this).balance : balance * shares[i] / 10000;
            _widthdraw(addresses[i], amount);
        }
    }
 
    //Withdraw balance from contract
    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{ value: _amount }("");
        require(success, "Failed to withdraw Ether");
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 99999
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"airDrop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintFreePickle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPickle","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reservedPickles","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintAmount","type":"uint256"}],"name":"setFreeMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600c91620003d8565b5066b1a2bc2ec50000600d55611a0a600e556019600f9081556101f4601055603260115560006012556013805461ffff1916610101179055604080518082019091528181526e546865205069636b6c65766572736560881b60209091019081526200008a9160149190620003d8565b5060408051808201909152600480825263504b565360e01b6020909201918252620000b891601591620003d8565b506040518060600160405280603681526020016200440d603691398051620000e991601691602090910190620003d8565b50348015620000f757600080fd5b506014805462000107906200047e565b80601f016020809104026020016040519081016040528092919081815260200182805462000135906200047e565b8015620001865780601f106200015a5761010080835404028352916020019162000186565b820191906000526020600020905b8154815290600101906020018083116200016857829003601f168201915b5050505050601580546200019a906200047e565b80601f0160208091040260200160405190810160405280929190818152602001828054620001c8906200047e565b8015620002195780601f10620001ed5761010080835404028352916020019162000219565b820191906000526020600020905b815481529060010190602001808311620001fb57829003601f168201915b5050845162000233935060009250602086019150620003d8565b50805162000249906001906020840190620003d8565b50505062000266620002606200030a60201b60201c565b6200030e565b620003046016805462000279906200047e565b80601f0160208091040260200160405190810160405280929190818152602001828054620002a7906200047e565b8015620002f85780601f10620002cc57610100808354040283529160200191620002f8565b820191906000526020600020905b815481529060010190602001808311620002da57829003601f168201915b50506200036092505050565b620004bb565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620003bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620003d490600b906020840190620003d8565b5050565b828054620003e6906200047e565b90600052602060002090601f0160209004810192826200040a576000855562000455565b82601f106200042557805160ff191683800117855562000455565b8280016001018555821562000455579182015b828111156200045557825182559160200191906001019062000438565b506200046392915062000467565b5090565b5b8082111562000463576000815560010162000468565b600181811c908216806200049357607f821691505b60208210811415620004b557634e487b7160e01b600052602260045260246000fd5b50919050565b613f4280620004cb6000396000f3fe6080604052600436106102f15760003560e01c80636228d6201161018f5780639918bb8b116100e1578063c87b56dd1161008a578063e985e9c511610064578063e985e9c5146107de578063eb8d244414610834578063f2fde38b1461084e57600080fd5b8063c87b56dd14610788578063d5abeb01146107a8578063da3ef23f146107be57600080fd5b8063b66a0e5d116100bb578063b66a0e5d1461073e578063b88d4fde14610753578063c66828621461077357600080fd5b80639918bb8b146106eb5780639d063a74146106fe578063a22cb4651461071e57600080fd5b80637f00c7a6116101435780638693da201161011d5780638693da20146106955780638da5cb5b146106ab57806395d89b41146106d657600080fd5b80637f00c7a61461064a57806380b173351461066a578063853828b61461068057600080fd5b80636c0360eb116101745780636c0360eb1461060057806370a0823114610615578063715018a61461063557600080fd5b80636228d620146105ca5780636352211e146105e057600080fd5b80632451004311610248578063438b6300116101fc57806355367ba9116101d657806355367ba91461058057806355dd574c1461059557806355f804b3146105aa57600080fd5b8063438b63001461051357806344a0d68a146105405780634f6ccce71461056057600080fd5b80632f745c591161022d5780632f745c59146104be57806342842e0e146104de5780634357da58146104fe57600080fd5b80632451004314610488578063253ca9341461049e57600080fd5b806318160ddd116102aa5780631f0234d8116102845780631f0234d814610433578063239c70ae1461045257806323b872dd1461046857600080fd5b806318160ddd146103c757806318cae269146103e65780631b5757f21461041357600080fd5b806306fdde03116102db57806306fdde0314610340578063081812fc14610362578063095ea7b3146103a757600080fd5b8062b6849f146102f657806301ffc9a71461030b575b600080fd5b610309610304366004613763565b61086e565b005b34801561031757600080fd5b5061032b610326366004613806565b61096a565b60405190151581526020015b60405180910390f35b34801561034c57600080fd5b506103556109c6565b6040516103379190613899565b34801561036e57600080fd5b5061038261037d3660046138ac565b610a58565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610337565b3480156103b357600080fd5b506103096103c23660046138ee565b610b32565b3480156103d357600080fd5b506008545b604051908152602001610337565b3480156103f257600080fd5b506103d8610401366004613918565b60176020526000908152604090205481565b34801561041f57600080fd5b5061030961042e3660046138ee565b610cbf565b34801561043f57600080fd5b5060135461032b90610100900460ff1681565b34801561045e57600080fd5b506103d8600f5481565b34801561047457600080fd5b50610309610483366004613933565b61100f565b34801561049457600080fd5b506103d860125481565b3480156104aa57600080fd5b506103096104b93660046138ac565b6110b0565b3480156104ca57600080fd5b506103d86104d93660046138ee565b611136565b3480156104ea57600080fd5b506103096104f9366004613933565b611205565b34801561050a57600080fd5b50610309611220565b34801561051f57600080fd5b5061053361052e366004613918565b6112cb565b604051610337919061396f565b34801561054c57600080fd5b5061030961055b3660046138ac565b61136d565b34801561056c57600080fd5b506103d861057b3660046138ac565b6113f3565b34801561058c57600080fd5b506103096114b1565b3480156105a157600080fd5b5061030961155c565b3480156105b657600080fd5b506103096105c5366004613a76565b61160b565b3480156105d657600080fd5b506103d860115481565b3480156105ec57600080fd5b506103826105fb3660046138ac565b6116a3565b34801561060c57600080fd5b50610355611755565b34801561062157600080fd5b506103d8610630366004613918565b6117e3565b34801561064157600080fd5b506103096118b1565b34801561065657600080fd5b506103096106653660046138ac565b611934565b34801561067657600080fd5b506103d860105481565b34801561068c57600080fd5b506103096119ba565b3480156106a157600080fd5b506103d8600d5481565b3480156106b757600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff16610382565b3480156106e257600080fd5b50610355611bb4565b6103096106f93660046138ac565b611bc3565b34801561070a57600080fd5b506103096107193660046138ac565b611ed9565b34801561072a57600080fd5b50610309610739366004613abf565b6121bd565b34801561074a57600080fd5b506103096122d4565b34801561075f57600080fd5b5061030961076e366004613afb565b612382565b34801561077f57600080fd5b50610355612424565b34801561079457600080fd5b506103556107a33660046138ac565b612431565b3480156107b457600080fd5b506103d8600e5481565b3480156107ca57600080fd5b506103096107d9366004613a76565b612544565b3480156107ea57600080fd5b5061032b6107f9366004613b77565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561084057600080fd5b5060135461032b9060ff1681565b34801561085a57600080fd5b50610309610869366004613918565b6125d8565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146108f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60006108ff60085490565b905061090c600182613bd9565b905060005b828110156109645761095284848381811061092e5761092e613bf1565b90506020020160208101906109439190613918565b61094d8385613bd9565b612708565b8061095c81613c20565b915050610911565b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806109c057506109c082612722565b92915050565b6060600080546109d590613c59565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0190613c59565b8015610a4e5780601f10610a2357610100808354040283529160200191610a4e565b820191906000526020600020905b815481529060010190602001808311610a3157829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610b09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016108eb565b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b3d826116a3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bfb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016108eb565b3373ffffffffffffffffffffffffffffffffffffffff82161480610c245750610c2481336107f9565b610cb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108eb565b610cba8383612805565b505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610d40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b6011546012541115610dd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f416c7265616479206861766520636c61696d656420616c6c207265736572766560448201527f64207069636b6c6573000000000000000000000000000000000000000000000060648201526084016108eb565b60115481601254610de59190613bd9565b1115610e4d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d696e74696e6720776f756c6420657863656564206d6178207069636b6c657360448201526064016108eb565b73ffffffffffffffffffffffffffffffffffffffff8216610eca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f43616e6e6f7420616464206e756c6c206164647265737300000000000000000060448201526064016108eb565b6000610ed560085490565b9050600e548110610f42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e746564000000000060448201526064016108eb565b600e54610f4f8383613bd9565b1115610fb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c790060448201526064016108eb565b6000610fc4826001613bd9565b905060005b83811015610ff157610fdf8561094d8385613bd9565b80610fe981613c20565b915050610fc9565b5082601260008282546110049190613bd9565b909155505050505050565b61101933826128a5565b6110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108eb565b610cba838383612a15565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b601055565b6000611141836117e3565b82106111cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016108eb565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b610cba83838360405180602001604052806000815250612382565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146112a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055565b606060006112d8836117e3565b905060008167ffffffffffffffff8111156112f5576112f56139b3565b60405190808252806020026020018201604052801561131e578160200160208202803683370190505b50905060005b82811015611365576113368582611136565b82828151811061134857611348613bf1565b60209081029190910101528061135d81613c20565b915050611324565b509392505050565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146113ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b600d55565b60006113fe60085490565b821061148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016108eb565b6008828154811061149f5761149f613bf1565b90600052602060002001549050919050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146115dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461168c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b805161169f90600b9060208401906136ca565b5050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806109c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016108eb565b600b805461176290613c59565b80601f016020809104026020016040519081016040528092919081815260200182805461178e90613c59565b80156117db5780601f106117b0576101008083540402835291602001916117db565b820191906000526020600020905b8154815290600101906020018083116117be57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216611888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016108eb565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146119b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b600f55565b4780611a22576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496e737566666963656e742062616c616e63650000000000000000000000000060448201526064016108eb565b6040805160c080820183527379ae957493e81182b3701686892c5f244bfaa76482527369b75456bb8243326d18869c4d41fce1c5d096d260208084019190915273276e464fb0973f99bad1a1bb3bcc98ff6b07957d83850152736c86ab754f6b8d1c5618d5b0ab7afe1d98843f696060808501919091527360e55ea69cd7dddc74b1dfa9eb04e1b2bc382a5a60808086019190915273739cc4746e106d050f757bcece2aafc9f2eaaa2860a0808701919091528651948501875261109a85526109c4938501939093526105dc958401959095526102ee908301526101f49382018490528101929092529060005b60068163ffffffff161015610964576000611b2c60016006613cad565b8263ffffffff1614611b7757612710838363ffffffff1660068110611b5357611b53613bf1565b6020020151611b689063ffffffff1687613cc4565b611b729190613d30565b611b79565b475b9050611ba1848363ffffffff1660068110611b9657611b96613bf1565b602002015182612c87565b5080611bac81613d44565b915050611b0f565b6060600180546109d590613c59565b60135460ff16611c7b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604760248201527f4d696e74696e672069732063757272656e746c79207061737565642c20706c6560448201527f61736520636865636b206f757220736f6369616c206d6564696120666f72207560648201527f7064617465732e00000000000000000000000000000000000000000000000000608482015260a4016108eb565b6000611c8660085490565b905060008211611cf2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f6e65656420746f206d696e74206174206c656173742031205069636b6c65000060448201526064016108eb565b600f54821115611d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560448201527f656465640000000000000000000000000000000000000000000000000000000060648201526084016108eb565b600e54611d908383613bd9565b1115611df8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f6d6178205069636b6c6573206d696e7420657863656564656420737570706c7960448201526064016108eb565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611e8e5781600d54611e259190613cc4565b341015611e8e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4e6f7420656e6f75676820657468657220746f206275792061207069636b6c6560448201526064016108eb565b60015b828111610cba57336000908152601760205260408120805491611eb383613c20565b90915550611ec790503361094d8385613bd9565b80611ed181613c20565b915050611e91565b601354610100900460ff16611f70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f46726565206d696e747320617265206e6f7420617661696c61626c652079657460448201527f2e0000000000000000000000000000000000000000000000000000000000000060648201526084016108eb565b60008111611fda576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f6e65656420746f206d696e74206174206c656173742031205069636b6c65000060448201526064016108eb565b6003811115612045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4d61782066726565206d696e7420616d6f756e7400000000000000000000000060448201526064016108eb565b600061205060085490565b6010549091506120608383613bd9565b11156120c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f206d6f72652066726565206d696e7473000000000000000000000000000060448201526064016108eb565b3360009081526017602052604090205460036120e48483613bd9565b1115612172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4e6f206d6f72652066726565206d696e747320666f722074686973206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016108eb565b60015b8381116109645733600090815260176020526040812080549161219783613c20565b909155506121ab90503361094d8386613bd9565b806121b581613c20565b915050612175565b73ffffffffffffffffffffffffffffffffffffffff821633141561223d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108eb565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b61238c33836128a5565b612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108eb565b61096484848484612d51565b600c805461176290613c59565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166124e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108eb565b60006124ef612df4565b9050600081511161250f576040518060200160405280600081525061253d565b8061251984612e03565b600c60405160200161252d93929190613d68565b6040516020818303038152906040525b9392505050565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146125c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b805161169f90600c9060208401906136ca565b600a5473ffffffffffffffffffffffffffffffffffffffff163314612659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b73ffffffffffffffffffffffffffffffffffffffff81166126fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108eb565b61270581612f35565b50565b61169f828260405180602001604052806000815250612fac565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806127b557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109c057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146109c0565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061285f826116a3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16612956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016108eb565b6000612961836116a3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129d057508373ffffffffffffffffffffffffffffffffffffffff166129b884610a58565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a0d575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16612a35826116a3565b73ffffffffffffffffffffffffffffffffffffffff1614612ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016108eb565b73ffffffffffffffffffffffffffffffffffffffff8216612b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108eb565b612b8583838361304f565b612b90600082612805565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290612bc6908490613cad565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290612c01908490613bd9565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114612ce1576040519150601f19603f3d011682016040523d82523d6000602084013e612ce6565b606091505b5050905080610cba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016108eb565b612d5c848484612a15565b612d6884848484613155565b610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108eb565b6060600b80546109d590613c59565b606081612e4357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612e6d5780612e5781613c20565b9150612e669050600a83613d30565b9150612e47565b60008167ffffffffffffffff811115612e8857612e886139b3565b6040519080825280601f01601f191660200182016040528015612eb2576020820181803683370190505b5090505b8415612a0d57612ec7600183613cad565b9150612ed4600a86613e63565b612edf906030613bd9565b60f81b818381518110612ef457612ef4613bf1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612f2e600a86613d30565b9450612eb6565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612fb68383613345565b612fc36000848484613155565b610cba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108eb565b73ffffffffffffffffffffffffffffffffffffffff83166130b7576130b281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6130f4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146130f4576130f48382613513565b73ffffffffffffffffffffffffffffffffffffffff821661311857610cba816135ca565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610cba57610cba8282613679565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561333a576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906131cc903390899088908890600401613e77565b6020604051808303816000875af1925050508015613225575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261322291810190613ec0565b60015b6132ef573d808015613253576040519150601f19603f3d011682016040523d82523d6000602084013e613258565b606091505b5080516132e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108eb565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612a0d565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff82166133c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108eb565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff161561344e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108eb565b61345a6000838361304f565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290613490908490613bd9565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001613520846117e3565b61352a9190613cad565b60008381526007602052604090205490915080821461358a5773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b6008546000906135dc90600190613cad565b6000838152600960205260408120546008805493945090928490811061360457613604613bf1565b90600052602060002001549050806008838154811061362557613625613bf1565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061365d5761365d613edd565b6001900381819060005260206000200160009055905550505050565b6000613684836117e3565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546136d690613c59565b90600052602060002090601f0160209004810192826136f8576000855561373e565b82601f1061371157805160ff191683800117855561373e565b8280016001018555821561373e579182015b8281111561373e578251825591602001919060010190613723565b5061374a92915061374e565b5090565b5b8082111561374a576000815560010161374f565b6000806020838503121561377657600080fd5b823567ffffffffffffffff8082111561378e57600080fd5b818501915085601f8301126137a257600080fd5b8135818111156137b157600080fd5b8660208260051b85010111156137c657600080fd5b60209290920196919550909350505050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461270557600080fd5b60006020828403121561381857600080fd5b813561253d816137d8565b60005b8381101561383e578181015183820152602001613826565b838111156109645750506000910152565b60008151808452613867816020860160208601613823565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061253d602083018461384f565b6000602082840312156138be57600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff811681146138e957600080fd5b919050565b6000806040838503121561390157600080fd5b61390a836138c5565b946020939093013593505050565b60006020828403121561392a57600080fd5b61253d826138c5565b60008060006060848603121561394857600080fd5b613951846138c5565b925061395f602085016138c5565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156139a75783518352928401929184019160010161398b565b50909695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156139fd576139fd6139b3565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613a4357613a436139b3565b81604052809350858152868686011115613a5c57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215613a8857600080fd5b813567ffffffffffffffff811115613a9f57600080fd5b8201601f81018413613ab057600080fd5b612a0d848235602084016139e2565b60008060408385031215613ad257600080fd5b613adb836138c5565b915060208301358015158114613af057600080fd5b809150509250929050565b60008060008060808587031215613b1157600080fd5b613b1a856138c5565b9350613b28602086016138c5565b925060408501359150606085013567ffffffffffffffff811115613b4b57600080fd5b8501601f81018713613b5c57600080fd5b613b6b878235602084016139e2565b91505092959194509250565b60008060408385031215613b8a57600080fd5b613b93836138c5565b9150613ba1602084016138c5565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115613bec57613bec613baa565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c5257613c52613baa565b5060010190565b600181811c90821680613c6d57607f821691505b60208210811415613ca7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600082821015613cbf57613cbf613baa565b500390565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cfc57613cfc613baa565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613d3f57613d3f613d01565b500490565b600063ffffffff80831681811415613d5e57613d5e613baa565b6001019392505050565b600084516020613d7b8285838a01613823565b855191840191613d8e8184848a01613823565b8554920191600090600181811c9080831680613dab57607f831692505b858310811415613de2577f4e487b710000000000000000000000000000000000000000000000000000000085526022600452602485fd5b808015613df65760018114613e2557613e52565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00851688528388019550613e52565b60008b81526020902060005b85811015613e4a5781548a820152908401908801613e31565b505083880195505b50939b9a5050505050505050505050565b600082613e7257613e72613d01565b500690565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613eb6608083018461384f565b9695505050505050565b600060208284031215613ed257600080fd5b815161253d816137d8565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220c05a70ccc5c655c1e7a7d44beb2ed996eece7e6d81ef49b9bc01e9a4d2c09ec264736f6c634300080a0033697066733a2f2f516d585462394843466b6344735145394157665335785738643869656b6367396e715a585846773336795946436a2f

Deployed Bytecode

0x6080604052600436106102f15760003560e01c80636228d6201161018f5780639918bb8b116100e1578063c87b56dd1161008a578063e985e9c511610064578063e985e9c5146107de578063eb8d244414610834578063f2fde38b1461084e57600080fd5b8063c87b56dd14610788578063d5abeb01146107a8578063da3ef23f146107be57600080fd5b8063b66a0e5d116100bb578063b66a0e5d1461073e578063b88d4fde14610753578063c66828621461077357600080fd5b80639918bb8b146106eb5780639d063a74146106fe578063a22cb4651461071e57600080fd5b80637f00c7a6116101435780638693da201161011d5780638693da20146106955780638da5cb5b146106ab57806395d89b41146106d657600080fd5b80637f00c7a61461064a57806380b173351461066a578063853828b61461068057600080fd5b80636c0360eb116101745780636c0360eb1461060057806370a0823114610615578063715018a61461063557600080fd5b80636228d620146105ca5780636352211e146105e057600080fd5b80632451004311610248578063438b6300116101fc57806355367ba9116101d657806355367ba91461058057806355dd574c1461059557806355f804b3146105aa57600080fd5b8063438b63001461051357806344a0d68a146105405780634f6ccce71461056057600080fd5b80632f745c591161022d5780632f745c59146104be57806342842e0e146104de5780634357da58146104fe57600080fd5b80632451004314610488578063253ca9341461049e57600080fd5b806318160ddd116102aa5780631f0234d8116102845780631f0234d814610433578063239c70ae1461045257806323b872dd1461046857600080fd5b806318160ddd146103c757806318cae269146103e65780631b5757f21461041357600080fd5b806306fdde03116102db57806306fdde0314610340578063081812fc14610362578063095ea7b3146103a757600080fd5b8062b6849f146102f657806301ffc9a71461030b575b600080fd5b610309610304366004613763565b61086e565b005b34801561031757600080fd5b5061032b610326366004613806565b61096a565b60405190151581526020015b60405180910390f35b34801561034c57600080fd5b506103556109c6565b6040516103379190613899565b34801561036e57600080fd5b5061038261037d3660046138ac565b610a58565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610337565b3480156103b357600080fd5b506103096103c23660046138ee565b610b32565b3480156103d357600080fd5b506008545b604051908152602001610337565b3480156103f257600080fd5b506103d8610401366004613918565b60176020526000908152604090205481565b34801561041f57600080fd5b5061030961042e3660046138ee565b610cbf565b34801561043f57600080fd5b5060135461032b90610100900460ff1681565b34801561045e57600080fd5b506103d8600f5481565b34801561047457600080fd5b50610309610483366004613933565b61100f565b34801561049457600080fd5b506103d860125481565b3480156104aa57600080fd5b506103096104b93660046138ac565b6110b0565b3480156104ca57600080fd5b506103d86104d93660046138ee565b611136565b3480156104ea57600080fd5b506103096104f9366004613933565b611205565b34801561050a57600080fd5b50610309611220565b34801561051f57600080fd5b5061053361052e366004613918565b6112cb565b604051610337919061396f565b34801561054c57600080fd5b5061030961055b3660046138ac565b61136d565b34801561056c57600080fd5b506103d861057b3660046138ac565b6113f3565b34801561058c57600080fd5b506103096114b1565b3480156105a157600080fd5b5061030961155c565b3480156105b657600080fd5b506103096105c5366004613a76565b61160b565b3480156105d657600080fd5b506103d860115481565b3480156105ec57600080fd5b506103826105fb3660046138ac565b6116a3565b34801561060c57600080fd5b50610355611755565b34801561062157600080fd5b506103d8610630366004613918565b6117e3565b34801561064157600080fd5b506103096118b1565b34801561065657600080fd5b506103096106653660046138ac565b611934565b34801561067657600080fd5b506103d860105481565b34801561068c57600080fd5b506103096119ba565b3480156106a157600080fd5b506103d8600d5481565b3480156106b757600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff16610382565b3480156106e257600080fd5b50610355611bb4565b6103096106f93660046138ac565b611bc3565b34801561070a57600080fd5b506103096107193660046138ac565b611ed9565b34801561072a57600080fd5b50610309610739366004613abf565b6121bd565b34801561074a57600080fd5b506103096122d4565b34801561075f57600080fd5b5061030961076e366004613afb565b612382565b34801561077f57600080fd5b50610355612424565b34801561079457600080fd5b506103556107a33660046138ac565b612431565b3480156107b457600080fd5b506103d8600e5481565b3480156107ca57600080fd5b506103096107d9366004613a76565b612544565b3480156107ea57600080fd5b5061032b6107f9366004613b77565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561084057600080fd5b5060135461032b9060ff1681565b34801561085a57600080fd5b50610309610869366004613918565b6125d8565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146108f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60006108ff60085490565b905061090c600182613bd9565b905060005b828110156109645761095284848381811061092e5761092e613bf1565b90506020020160208101906109439190613918565b61094d8385613bd9565b612708565b8061095c81613c20565b915050610911565b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806109c057506109c082612722565b92915050565b6060600080546109d590613c59565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0190613c59565b8015610a4e5780601f10610a2357610100808354040283529160200191610a4e565b820191906000526020600020905b815481529060010190602001808311610a3157829003601f168201915b5050505050905090565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16610b09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016108eb565b5060009081526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610b3d826116a3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bfb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016108eb565b3373ffffffffffffffffffffffffffffffffffffffff82161480610c245750610c2481336107f9565b610cb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108eb565b610cba8383612805565b505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610d40576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b6011546012541115610dd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f416c7265616479206861766520636c61696d656420616c6c207265736572766560448201527f64207069636b6c6573000000000000000000000000000000000000000000000060648201526084016108eb565b60115481601254610de59190613bd9565b1115610e4d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d696e74696e6720776f756c6420657863656564206d6178207069636b6c657360448201526064016108eb565b73ffffffffffffffffffffffffffffffffffffffff8216610eca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f43616e6e6f7420616464206e756c6c206164647265737300000000000000000060448201526064016108eb565b6000610ed560085490565b9050600e548110610f42576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e746564000000000060448201526064016108eb565b600e54610f4f8383613bd9565b1115610fb7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c790060448201526064016108eb565b6000610fc4826001613bd9565b905060005b83811015610ff157610fdf8561094d8385613bd9565b80610fe981613c20565b915050610fc9565b5082601260008282546110049190613bd9565b909155505050505050565b61101933826128a5565b6110a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108eb565b610cba838383612a15565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b601055565b6000611141836117e3565b82106111cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016108eb565b5073ffffffffffffffffffffffffffffffffffffffff919091166000908152600660209081526040808320938352929052205490565b610cba83838360405180602001604052806000815250612382565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146112a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055565b606060006112d8836117e3565b905060008167ffffffffffffffff8111156112f5576112f56139b3565b60405190808252806020026020018201604052801561131e578160200160208202803683370190505b50905060005b82811015611365576113368582611136565b82828151811061134857611348613bf1565b60209081029190910101528061135d81613c20565b915050611324565b509392505050565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146113ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b600d55565b60006113fe60085490565b821061148c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016108eb565b6008828154811061149f5761149f613bf1565b90600052602060002001549050919050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611532576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146115dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055565b600a5473ffffffffffffffffffffffffffffffffffffffff16331461168c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b805161169f90600b9060208401906136ca565b5050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806109c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016108eb565b600b805461176290613c59565b80601f016020809104026020016040519081016040528092919081815260200182805461178e90613c59565b80156117db5780601f106117b0576101008083540402835291602001916117db565b820191906000526020600020905b8154815290600101906020018083116117be57829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216611888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016108eb565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146119b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b600f55565b4780611a22576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496e737566666963656e742062616c616e63650000000000000000000000000060448201526064016108eb565b6040805160c080820183527379ae957493e81182b3701686892c5f244bfaa76482527369b75456bb8243326d18869c4d41fce1c5d096d260208084019190915273276e464fb0973f99bad1a1bb3bcc98ff6b07957d83850152736c86ab754f6b8d1c5618d5b0ab7afe1d98843f696060808501919091527360e55ea69cd7dddc74b1dfa9eb04e1b2bc382a5a60808086019190915273739cc4746e106d050f757bcece2aafc9f2eaaa2860a0808701919091528651948501875261109a85526109c4938501939093526105dc958401959095526102ee908301526101f49382018490528101929092529060005b60068163ffffffff161015610964576000611b2c60016006613cad565b8263ffffffff1614611b7757612710838363ffffffff1660068110611b5357611b53613bf1565b6020020151611b689063ffffffff1687613cc4565b611b729190613d30565b611b79565b475b9050611ba1848363ffffffff1660068110611b9657611b96613bf1565b602002015182612c87565b5080611bac81613d44565b915050611b0f565b6060600180546109d590613c59565b60135460ff16611c7b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604760248201527f4d696e74696e672069732063757272656e746c79207061737565642c20706c6560448201527f61736520636865636b206f757220736f6369616c206d6564696120666f72207560648201527f7064617465732e00000000000000000000000000000000000000000000000000608482015260a4016108eb565b6000611c8660085490565b905060008211611cf2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f6e65656420746f206d696e74206174206c656173742031205069636b6c65000060448201526064016108eb565b600f54821115611d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560448201527f656465640000000000000000000000000000000000000000000000000000000060648201526084016108eb565b600e54611d908383613bd9565b1115611df8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f6d6178205069636b6c6573206d696e7420657863656564656420737570706c7960448201526064016108eb565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611e8e5781600d54611e259190613cc4565b341015611e8e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4e6f7420656e6f75676820657468657220746f206275792061207069636b6c6560448201526064016108eb565b60015b828111610cba57336000908152601760205260408120805491611eb383613c20565b90915550611ec790503361094d8385613bd9565b80611ed181613c20565b915050611e91565b601354610100900460ff16611f70576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f46726565206d696e747320617265206e6f7420617661696c61626c652079657460448201527f2e0000000000000000000000000000000000000000000000000000000000000060648201526084016108eb565b60008111611fda576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f6e65656420746f206d696e74206174206c656173742031205069636b6c65000060448201526064016108eb565b6003811115612045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4d61782066726565206d696e7420616d6f756e7400000000000000000000000060448201526064016108eb565b600061205060085490565b6010549091506120608383613bd9565b11156120c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f206d6f72652066726565206d696e7473000000000000000000000000000060448201526064016108eb565b3360009081526017602052604090205460036120e48483613bd9565b1115612172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f4e6f206d6f72652066726565206d696e747320666f722074686973206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016108eb565b60015b8381116109645733600090815260176020526040812080549161219783613c20565b909155506121ab90503361094d8386613bd9565b806121b581613c20565b915050612175565b73ffffffffffffffffffffffffffffffffffffffff821633141561223d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108eb565b33600081815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314612355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b61238c33836128a5565b612418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016108eb565b61096484848484612d51565b600c805461176290613c59565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166124e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016108eb565b60006124ef612df4565b9050600081511161250f576040518060200160405280600081525061253d565b8061251984612e03565b600c60405160200161252d93929190613d68565b6040516020818303038152906040525b9392505050565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146125c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b805161169f90600c9060208401906136ca565b600a5473ffffffffffffffffffffffffffffffffffffffff163314612659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108eb565b73ffffffffffffffffffffffffffffffffffffffff81166126fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016108eb565b61270581612f35565b50565b61169f828260405180602001604052806000815250612fac565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806127b557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109c057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146109c0565b600081815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155819061285f826116a3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16612956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016108eb565b6000612961836116a3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129d057508373ffffffffffffffffffffffffffffffffffffffff166129b884610a58565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a0d575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16612a35826116a3565b73ffffffffffffffffffffffffffffffffffffffff1614612ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016108eb565b73ffffffffffffffffffffffffffffffffffffffff8216612b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016108eb565b612b8583838361304f565b612b90600082612805565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600360205260408120805460019290612bc6908490613cad565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290612c01908490613bd9565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114612ce1576040519150601f19603f3d011682016040523d82523d6000602084013e612ce6565b606091505b5050905080610cba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f4661696c656420746f207769746864726177204574686572000000000000000060448201526064016108eb565b612d5c848484612a15565b612d6884848484613155565b610964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108eb565b6060600b80546109d590613c59565b606081612e4357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612e6d5780612e5781613c20565b9150612e669050600a83613d30565b9150612e47565b60008167ffffffffffffffff811115612e8857612e886139b3565b6040519080825280601f01601f191660200182016040528015612eb2576020820181803683370190505b5090505b8415612a0d57612ec7600183613cad565b9150612ed4600a86613e63565b612edf906030613bd9565b60f81b818381518110612ef457612ef4613bf1565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612f2e600a86613d30565b9450612eb6565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612fb68383613345565b612fc36000848484613155565b610cba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108eb565b73ffffffffffffffffffffffffffffffffffffffff83166130b7576130b281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6130f4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146130f4576130f48382613513565b73ffffffffffffffffffffffffffffffffffffffff821661311857610cba816135ca565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614610cba57610cba8282613679565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561333a576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906131cc903390899088908890600401613e77565b6020604051808303816000875af1925050508015613225575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261322291810190613ec0565b60015b6132ef573d808015613253576040519150601f19603f3d011682016040523d82523d6000602084013e613258565b606091505b5080516132e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016108eb565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612a0d565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff82166133c2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108eb565b60008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff161561344e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108eb565b61345a6000838361304f565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805460019290613490908490613bd9565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001613520846117e3565b61352a9190613cad565b60008381526007602052604090205490915080821461358a5773ffffffffffffffffffffffffffffffffffffffff841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b50600091825260076020908152604080842084905573ffffffffffffffffffffffffffffffffffffffff9094168352600681528383209183525290812055565b6008546000906135dc90600190613cad565b6000838152600960205260408120546008805493945090928490811061360457613604613bf1565b90600052602060002001549050806008838154811061362557613625613bf1565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061365d5761365d613edd565b6001900381819060005260206000200160009055905550505050565b6000613684836117e3565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546136d690613c59565b90600052602060002090601f0160209004810192826136f8576000855561373e565b82601f1061371157805160ff191683800117855561373e565b8280016001018555821561373e579182015b8281111561373e578251825591602001919060010190613723565b5061374a92915061374e565b5090565b5b8082111561374a576000815560010161374f565b6000806020838503121561377657600080fd5b823567ffffffffffffffff8082111561378e57600080fd5b818501915085601f8301126137a257600080fd5b8135818111156137b157600080fd5b8660208260051b85010111156137c657600080fd5b60209290920196919550909350505050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461270557600080fd5b60006020828403121561381857600080fd5b813561253d816137d8565b60005b8381101561383e578181015183820152602001613826565b838111156109645750506000910152565b60008151808452613867816020860160208601613823565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061253d602083018461384f565b6000602082840312156138be57600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff811681146138e957600080fd5b919050565b6000806040838503121561390157600080fd5b61390a836138c5565b946020939093013593505050565b60006020828403121561392a57600080fd5b61253d826138c5565b60008060006060848603121561394857600080fd5b613951846138c5565b925061395f602085016138c5565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156139a75783518352928401929184019160010161398b565b50909695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156139fd576139fd6139b3565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613a4357613a436139b3565b81604052809350858152868686011115613a5c57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215613a8857600080fd5b813567ffffffffffffffff811115613a9f57600080fd5b8201601f81018413613ab057600080fd5b612a0d848235602084016139e2565b60008060408385031215613ad257600080fd5b613adb836138c5565b915060208301358015158114613af057600080fd5b809150509250929050565b60008060008060808587031215613b1157600080fd5b613b1a856138c5565b9350613b28602086016138c5565b925060408501359150606085013567ffffffffffffffff811115613b4b57600080fd5b8501601f81018713613b5c57600080fd5b613b6b878235602084016139e2565b91505092959194509250565b60008060408385031215613b8a57600080fd5b613b93836138c5565b9150613ba1602084016138c5565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115613bec57613bec613baa565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c5257613c52613baa565b5060010190565b600181811c90821680613c6d57607f821691505b60208210811415613ca7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600082821015613cbf57613cbf613baa565b500390565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cfc57613cfc613baa565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613d3f57613d3f613d01565b500490565b600063ffffffff80831681811415613d5e57613d5e613baa565b6001019392505050565b600084516020613d7b8285838a01613823565b855191840191613d8e8184848a01613823565b8554920191600090600181811c9080831680613dab57607f831692505b858310811415613de2577f4e487b710000000000000000000000000000000000000000000000000000000085526022600452602485fd5b808015613df65760018114613e2557613e52565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00851688528388019550613e52565b60008b81526020902060005b85811015613e4a5781548a820152908401908801613e31565b505083880195505b50939b9a5050505050505050505050565b600082613e7257613e72613d01565b500690565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613eb6608083018461384f565b9695505050505050565b600060208284031215613ed257600080fd5b815161253d816137d8565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220c05a70ccc5c655c1e7a7d44beb2ed996eece7e6d81ef49b9bc01e9a4d2c09ec264736f6c634300080a0033

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.