ETH Price: $3,079.71 (+1.01%)
Gas: 3 Gwei

Token

Recovery Punk (RPUNKS)
 

Overview

Max Total Supply

6,735 RPUNKS

Holders

713

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
scottharvey.eth
Balance
9 RPUNKS
0x12bE1594144737D6739C9570f8f1188CE742c06E
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:
RecoveryPunk

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-16
*/

// SPDX-License-Identifier: MIT

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (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);

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


// OpenZeppelin Contracts v4.4.1 (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: Wolpups.sol


pragma solidity ^0.8.4;


 

contract RecoveryPunk is ERC721, ERC721Enumerable, Ownable {
    string public BASE_URI = "";
    uint256 public constant MAX_SUPPLY = 10000;

    mapping(address => bool) public mintApproved;

    // Provenance hash for all recovery punks
    string public constant RECOVERYPUNK_PROVENANCE =
        "b2816ce44009fd52cb17864cd3b60818a798be5d1b8307de23c168e68a339fcb";

    constructor() ERC721("Recovery Punk", "RPUNKS") {
        mintApproved[_msgSender()] = true;
    }

    modifier onlyMinter() {
        require(
            mintApproved[_msgSender()],
            "Mint: caller is not minter approved"
        );
        _;
    }

    function approveForMinting(address _approver, bool status)
        external
        onlyOwner
    {
        mintApproved[_approver] = status;
    }

    function safeMint(address to, uint256 tokenId) public onlyMinter {
        require(tokenId != 0, "safeMint: zero id cant be minted");
        require(tokenId <= MAX_SUPPLY, "safeMint: tokenId exceed max supply");
        _safeMint(to, tokenId);
    }

    function batchMint(
        address to,
        uint256 startRange,
        uint256 endRange
    ) public onlyMinter {
        require(
            endRange <= MAX_SUPPLY,
            "batchMint: endrandge exceed max supply"
        );
        for (uint256 i = startRange; i <= endRange; i++) {
            safeMint(to, i);
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

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

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

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        // only doesn't exist if user is mintApproved
        if (!_exists(tokenId) && mintApproved[_msgSender()]) {
            safeMint(to, tokenId);
        } else {
            require(
                _isApprovedOrOwner(_msgSender(), tokenId),
                "ERC721: transfer caller is not owner nor approved"
            );
            _transfer(from, to, tokenId);
        }
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        // only doesn't exist if user is mintApproved
        if (!_exists(tokenId) && mintApproved[_msgSender()]) {
            safeMint(to, tokenId);
        } else {
            require(
                _isApprovedOrOwner(_msgSender(), tokenId),
                "ERC721: caller is not token owner nor approved"
            );
            _safeTransfer(from, to, tokenId, _data);
        }
    }
}

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":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RECOVERYPUNK_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_approver","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"approveForMinting","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"startRange","type":"uint256"},{"internalType":"uint256","name":"endRange","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintApproved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600b9162000126565b503480156200002957600080fd5b50604080518082018252600d81526c5265636f766572792050756e6b60981b6020808301918252835180850190945260068452655250554e4b5360d01b9084015281519192916200007d9160009162000126565b5080516200009390600190602084019062000126565b505050620000b0620000aa620000d060201b60201c565b620000d4565b336000908152600c60205260409020805460ff1916600117905562000209565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013490620001cc565b90600052602060002090601f016020900481019282620001585760008555620001a3565b82601f106200017357805160ff1916838001178555620001a3565b82800160010185558215620001a3579182015b82811115620001a357825182559160200191906001019062000186565b50620001b1929150620001b5565b5090565b5b80821115620001b15760008155600101620001b6565b600181811c90821680620001e157607f821691505b602082108114156200020357634e487b7160e01b600052602260045260246000fd5b50919050565b611eae80620002196000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80636352211e116100f9578063a22cb46511610097578063dbddb26a11610071578063dbddb26a14610366578063e985e9c51461036e578063f2fde38b146103aa578063fea0f7dd146103bd57600080fd5b8063a22cb4651461032d578063b88d4fde14610340578063c87b56dd1461035357600080fd5b8063840d560c116100d3578063840d560c146102ee5780638da5cb5b1461030157806395d89b4114610312578063a14481941461031a57600080fd5b80636352211e146102c057806370a08231146102d3578063715018a6146102e657600080fd5b806323b872dd1161016657806332cb6b0c1161014057806332cb6b0c1461027e57806342842e0e146102875780634f6ccce71461029a57806355f804b3146102ad57600080fd5b806323b872dd146102455780632a959b89146102585780632f745c591461026b57600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b31461021657806318160ddd1461022b578063212927d41461023d575b600080fd5b6101c16101bc3660046118e4565b6103e0565b60405190151581526020015b60405180910390f35b6101de6103f1565b6040516101cd9190611959565b6101fe6101f936600461196c565b610483565b6040516001600160a01b0390911681526020016101cd565b6102296102243660046119a1565b6104aa565b005b6008545b6040519081526020016101cd565b6101de6105c5565b6102296102533660046119cb565b6105e1565b610229610266366004611a07565b61069f565b61022f6102793660046119a1565b61075a565b61022f61271081565b6102296102953660046119cb565b6107f0565b61022f6102a836600461196c565b61080b565b6102296102bb366004611ac6565b61089e565b6101fe6102ce36600461196c565b6108bd565b61022f6102e1366004611b0f565b61091d565b6102296109a3565b6102296102fc366004611b2a565b6109b7565b600a546001600160a01b03166101fe565b6101de6109ea565b6102296103283660046119a1565b6109f9565b61022961033b366004611b2a565b610add565b61022961034e366004611b66565b610ae8565b6101de61036136600461196c565b610ba9565b6101de610c10565b6101c161037c366004611be2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102296103b8366004611b0f565b610c9e565b6101c16103cb366004611b0f565b600c6020526000908152604090205460ff1681565b60006103eb82610d17565b92915050565b60606000805461040090611c15565b80601f016020809104026020016040519081016040528092919081815260200182805461042c90611c15565b80156104795780601f1061044e57610100808354040283529160200191610479565b820191906000526020600020905b81548152906001019060200180831161045c57829003601f168201915b5050505050905090565b600061048e82610d3c565b506000908152600460205260409020546001600160a01b031690565b60006104b5826108bd565b9050806001600160a01b0316836001600160a01b031614156105285760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806105445750610544813361037c565b6105b65760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161051f565b6105c08383610d9b565b505050565b604051806060016040528060408152602001611e396040913981565b6000818152600260205260409020546001600160a01b03161580156106155750336000908152600c602052604090205460ff165b15610624576105c082826109f9565b61062e3382610e09565b6106945760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606482015260840161051f565b6105c0838383610e88565b336000908152600c602052604090205460ff166106ce5760405162461bcd60e51b815260040161051f90611c50565b61271081111561072f5760405162461bcd60e51b815260206004820152602660248201527f62617463684d696e743a20656e6472616e64676520657863656564206d617820604482015265737570706c7960d01b606482015260840161051f565b815b8181116107545761074284826109f9565b8061074c81611ca9565b915050610731565b50505050565b60006107658361091d565b82106107c75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161051f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6105c083838360405180602001604052806000815250610ae8565b600061081660085490565b82106108795760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161051f565b6008828154811061088c5761088c611cc4565b90600052602060002001549050919050565b6108a661102f565b80516108b990600b906020840190611835565b5050565b6000818152600260205260408120546001600160a01b0316806103eb5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161051f565b60006001600160a01b0382166109875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161051f565b506001600160a01b031660009081526003602052604090205490565b6109ab61102f565b6109b56000611089565b565b6109bf61102f565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b60606001805461040090611c15565b336000908152600c602052604090205460ff16610a285760405162461bcd60e51b815260040161051f90611c50565b80610a755760405162461bcd60e51b815260206004820181905260248201527f736166654d696e743a207a65726f2069642063616e74206265206d696e746564604482015260640161051f565b612710811115610ad35760405162461bcd60e51b815260206004820152602360248201527f736166654d696e743a20746f6b656e496420657863656564206d617820737570604482015262706c7960e81b606482015260840161051f565b6108b982826110db565b6108b93383836110f5565b6000828152600260205260409020546001600160a01b0316158015610b1c5750336000908152600c602052604090205460ff165b15610b3057610b2b83836109f9565b610754565b610b3a3383610e09565b610b9d5760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b606482015260840161051f565b610754848484846111c4565b6060610bb482610d3c565b6000610bbe6111f7565b90506000815111610bde5760405180602001604052806000815250610c09565b80610be884611206565b604051602001610bf9929190611cda565b6040516020818303038152906040525b9392505050565b600b8054610c1d90611c15565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4990611c15565b8015610c965780601f10610c6b57610100808354040283529160200191610c96565b820191906000526020600020905b815481529060010190602001808311610c7957829003601f168201915b505050505081565b610ca661102f565b6001600160a01b038116610d0b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161051f565b610d1481611089565b50565b60006001600160e01b0319821663780e9d6360e01b14806103eb57506103eb82611304565b6000818152600260205260409020546001600160a01b0316610d145760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161051f565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610dd0826108bd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610e15836108bd565b9050806001600160a01b0316846001600160a01b03161480610e5c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610e805750836001600160a01b0316610e7584610483565b6001600160a01b0316145b949350505050565b826001600160a01b0316610e9b826108bd565b6001600160a01b031614610eff5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161051f565b6001600160a01b038216610f615760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161051f565b610f6c838383611354565b610f77600082610d9b565b6001600160a01b0383166000908152600360205260408120805460019290610fa0908490611d09565b90915550506001600160a01b0382166000908152600360205260408120805460019290610fce908490611d20565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b031633146109b55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161051f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108b982826040518060200160405280600081525061135f565b816001600160a01b0316836001600160a01b031614156111575760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161051f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6111cf848484610e88565b6111db84848484611392565b6107545760405162461bcd60e51b815260040161051f90611d38565b6060600b805461040090611c15565b60608161122a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611254578061123e81611ca9565b915061124d9050600a83611da0565b915061122e565b60008167ffffffffffffffff81111561126f5761126f611a3a565b6040519080825280601f01601f191660200182016040528015611299576020820181803683370190505b5090505b8415610e80576112ae600183611d09565b91506112bb600a86611db4565b6112c6906030611d20565b60f81b8183815181106112db576112db611cc4565b60200101906001600160f81b031916908160001a9053506112fd600a86611da0565b945061129d565b60006001600160e01b031982166380ac58cd60e01b148061133557506001600160e01b03198216635b5e139f60e01b145b806103eb57506301ffc9a760e01b6001600160e01b03198316146103eb565b6105c083838361149f565b6113698383611557565b6113766000848484611392565b6105c05760405162461bcd60e51b815260040161051f90611d38565b60006001600160a01b0384163b1561149457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113d6903390899088908890600401611dc8565b602060405180830381600087803b1580156113f057600080fd5b505af1925050508015611420575060408051601f3d908101601f1916820190925261141d91810190611e05565b60015b61147a573d80801561144e576040519150601f19603f3d011682016040523d82523d6000602084013e611453565b606091505b5080516114725760405162461bcd60e51b815260040161051f90611d38565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e80565b506001949350505050565b6001600160a01b0383166114fa576114f581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61151d565b816001600160a01b0316836001600160a01b03161461151d5761151d83826116a5565b6001600160a01b038216611534576105c081611742565b826001600160a01b0316826001600160a01b0316146105c0576105c082826117f1565b6001600160a01b0382166115ad5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161051f565b6000818152600260205260409020546001600160a01b0316156116125760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161051f565b61161e60008383611354565b6001600160a01b0382166000908152600360205260408120805460019290611647908490611d20565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016116b28461091d565b6116bc9190611d09565b60008381526007602052604090205490915080821461170f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061175490600190611d09565b6000838152600960205260408120546008805493945090928490811061177c5761177c611cc4565b90600052602060002001549050806008838154811061179d5761179d611cc4565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806117d5576117d5611e22565b6001900381819060005260206000200160009055905550505050565b60006117fc8361091d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461184190611c15565b90600052602060002090601f01602090048101928261186357600085556118a9565b82601f1061187c57805160ff19168380011785556118a9565b828001600101855582156118a9579182015b828111156118a957825182559160200191906001019061188e565b506118b59291506118b9565b5090565b5b808211156118b557600081556001016118ba565b6001600160e01b031981168114610d1457600080fd5b6000602082840312156118f657600080fd5b8135610c09816118ce565b60005b8381101561191c578181015183820152602001611904565b838111156107545750506000910152565b60008151808452611945816020860160208601611901565b601f01601f19169290920160200192915050565b602081526000610c09602083018461192d565b60006020828403121561197e57600080fd5b5035919050565b80356001600160a01b038116811461199c57600080fd5b919050565b600080604083850312156119b457600080fd5b6119bd83611985565b946020939093013593505050565b6000806000606084860312156119e057600080fd5b6119e984611985565b92506119f760208501611985565b9150604084013590509250925092565b600080600060608486031215611a1c57600080fd5b611a2584611985565b95602085013595506040909401359392505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a6b57611a6b611a3a565b604051601f8501601f19908116603f01168101908282118183101715611a9357611a93611a3a565b81604052809350858152868686011115611aac57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ad857600080fd5b813567ffffffffffffffff811115611aef57600080fd5b8201601f81018413611b0057600080fd5b610e8084823560208401611a50565b600060208284031215611b2157600080fd5b610c0982611985565b60008060408385031215611b3d57600080fd5b611b4683611985565b915060208301358015158114611b5b57600080fd5b809150509250929050565b60008060008060808587031215611b7c57600080fd5b611b8585611985565b9350611b9360208601611985565b925060408501359150606085013567ffffffffffffffff811115611bb657600080fd5b8501601f81018713611bc757600080fd5b611bd687823560208401611a50565b91505092959194509250565b60008060408385031215611bf557600080fd5b611bfe83611985565b9150611c0c60208401611985565b90509250929050565b600181811c90821680611c2957607f821691505b60208210811415611c4a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526023908201527f4d696e743a2063616c6c6572206973206e6f74206d696e74657220617070726f6040820152621d995960ea1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415611cbd57611cbd611c93565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60008351611cec818460208801611901565b835190830190611d00818360208801611901565b01949350505050565b600082821015611d1b57611d1b611c93565b500390565b60008219821115611d3357611d33611c93565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611daf57611daf611d8a565b500490565b600082611dc357611dc3611d8a565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dfb9083018461192d565b9695505050505050565b600060208284031215611e1757600080fd5b8151610c09816118ce565b634e487b7160e01b600052603160045260246000fdfe62323831366365343430303966643532636231373836346364336236303831386137393862653564316238333037646532336331363865363861333339666362a2646970667358221220b20406d0319310034b101afba8e175ed54f6f23474a1da297a084bcb923ffa2a64736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80636352211e116100f9578063a22cb46511610097578063dbddb26a11610071578063dbddb26a14610366578063e985e9c51461036e578063f2fde38b146103aa578063fea0f7dd146103bd57600080fd5b8063a22cb4651461032d578063b88d4fde14610340578063c87b56dd1461035357600080fd5b8063840d560c116100d3578063840d560c146102ee5780638da5cb5b1461030157806395d89b4114610312578063a14481941461031a57600080fd5b80636352211e146102c057806370a08231146102d3578063715018a6146102e657600080fd5b806323b872dd1161016657806332cb6b0c1161014057806332cb6b0c1461027e57806342842e0e146102875780634f6ccce71461029a57806355f804b3146102ad57600080fd5b806323b872dd146102455780632a959b89146102585780632f745c591461026b57600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b31461021657806318160ddd1461022b578063212927d41461023d575b600080fd5b6101c16101bc3660046118e4565b6103e0565b60405190151581526020015b60405180910390f35b6101de6103f1565b6040516101cd9190611959565b6101fe6101f936600461196c565b610483565b6040516001600160a01b0390911681526020016101cd565b6102296102243660046119a1565b6104aa565b005b6008545b6040519081526020016101cd565b6101de6105c5565b6102296102533660046119cb565b6105e1565b610229610266366004611a07565b61069f565b61022f6102793660046119a1565b61075a565b61022f61271081565b6102296102953660046119cb565b6107f0565b61022f6102a836600461196c565b61080b565b6102296102bb366004611ac6565b61089e565b6101fe6102ce36600461196c565b6108bd565b61022f6102e1366004611b0f565b61091d565b6102296109a3565b6102296102fc366004611b2a565b6109b7565b600a546001600160a01b03166101fe565b6101de6109ea565b6102296103283660046119a1565b6109f9565b61022961033b366004611b2a565b610add565b61022961034e366004611b66565b610ae8565b6101de61036136600461196c565b610ba9565b6101de610c10565b6101c161037c366004611be2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102296103b8366004611b0f565b610c9e565b6101c16103cb366004611b0f565b600c6020526000908152604090205460ff1681565b60006103eb82610d17565b92915050565b60606000805461040090611c15565b80601f016020809104026020016040519081016040528092919081815260200182805461042c90611c15565b80156104795780601f1061044e57610100808354040283529160200191610479565b820191906000526020600020905b81548152906001019060200180831161045c57829003601f168201915b5050505050905090565b600061048e82610d3c565b506000908152600460205260409020546001600160a01b031690565b60006104b5826108bd565b9050806001600160a01b0316836001600160a01b031614156105285760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806105445750610544813361037c565b6105b65760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161051f565b6105c08383610d9b565b505050565b604051806060016040528060408152602001611e396040913981565b6000818152600260205260409020546001600160a01b03161580156106155750336000908152600c602052604090205460ff165b15610624576105c082826109f9565b61062e3382610e09565b6106945760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606482015260840161051f565b6105c0838383610e88565b336000908152600c602052604090205460ff166106ce5760405162461bcd60e51b815260040161051f90611c50565b61271081111561072f5760405162461bcd60e51b815260206004820152602660248201527f62617463684d696e743a20656e6472616e64676520657863656564206d617820604482015265737570706c7960d01b606482015260840161051f565b815b8181116107545761074284826109f9565b8061074c81611ca9565b915050610731565b50505050565b60006107658361091d565b82106107c75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161051f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6105c083838360405180602001604052806000815250610ae8565b600061081660085490565b82106108795760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161051f565b6008828154811061088c5761088c611cc4565b90600052602060002001549050919050565b6108a661102f565b80516108b990600b906020840190611835565b5050565b6000818152600260205260408120546001600160a01b0316806103eb5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161051f565b60006001600160a01b0382166109875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161051f565b506001600160a01b031660009081526003602052604090205490565b6109ab61102f565b6109b56000611089565b565b6109bf61102f565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b60606001805461040090611c15565b336000908152600c602052604090205460ff16610a285760405162461bcd60e51b815260040161051f90611c50565b80610a755760405162461bcd60e51b815260206004820181905260248201527f736166654d696e743a207a65726f2069642063616e74206265206d696e746564604482015260640161051f565b612710811115610ad35760405162461bcd60e51b815260206004820152602360248201527f736166654d696e743a20746f6b656e496420657863656564206d617820737570604482015262706c7960e81b606482015260840161051f565b6108b982826110db565b6108b93383836110f5565b6000828152600260205260409020546001600160a01b0316158015610b1c5750336000908152600c602052604090205460ff165b15610b3057610b2b83836109f9565b610754565b610b3a3383610e09565b610b9d5760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526d1c881b9bdc88185c1c1c9bdd995960921b606482015260840161051f565b610754848484846111c4565b6060610bb482610d3c565b6000610bbe6111f7565b90506000815111610bde5760405180602001604052806000815250610c09565b80610be884611206565b604051602001610bf9929190611cda565b6040516020818303038152906040525b9392505050565b600b8054610c1d90611c15565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4990611c15565b8015610c965780601f10610c6b57610100808354040283529160200191610c96565b820191906000526020600020905b815481529060010190602001808311610c7957829003601f168201915b505050505081565b610ca661102f565b6001600160a01b038116610d0b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161051f565b610d1481611089565b50565b60006001600160e01b0319821663780e9d6360e01b14806103eb57506103eb82611304565b6000818152600260205260409020546001600160a01b0316610d145760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161051f565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610dd0826108bd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610e15836108bd565b9050806001600160a01b0316846001600160a01b03161480610e5c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610e805750836001600160a01b0316610e7584610483565b6001600160a01b0316145b949350505050565b826001600160a01b0316610e9b826108bd565b6001600160a01b031614610eff5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161051f565b6001600160a01b038216610f615760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161051f565b610f6c838383611354565b610f77600082610d9b565b6001600160a01b0383166000908152600360205260408120805460019290610fa0908490611d09565b90915550506001600160a01b0382166000908152600360205260408120805460019290610fce908490611d20565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a546001600160a01b031633146109b55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161051f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108b982826040518060200160405280600081525061135f565b816001600160a01b0316836001600160a01b031614156111575760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161051f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6111cf848484610e88565b6111db84848484611392565b6107545760405162461bcd60e51b815260040161051f90611d38565b6060600b805461040090611c15565b60608161122a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611254578061123e81611ca9565b915061124d9050600a83611da0565b915061122e565b60008167ffffffffffffffff81111561126f5761126f611a3a565b6040519080825280601f01601f191660200182016040528015611299576020820181803683370190505b5090505b8415610e80576112ae600183611d09565b91506112bb600a86611db4565b6112c6906030611d20565b60f81b8183815181106112db576112db611cc4565b60200101906001600160f81b031916908160001a9053506112fd600a86611da0565b945061129d565b60006001600160e01b031982166380ac58cd60e01b148061133557506001600160e01b03198216635b5e139f60e01b145b806103eb57506301ffc9a760e01b6001600160e01b03198316146103eb565b6105c083838361149f565b6113698383611557565b6113766000848484611392565b6105c05760405162461bcd60e51b815260040161051f90611d38565b60006001600160a01b0384163b1561149457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113d6903390899088908890600401611dc8565b602060405180830381600087803b1580156113f057600080fd5b505af1925050508015611420575060408051601f3d908101601f1916820190925261141d91810190611e05565b60015b61147a573d80801561144e576040519150601f19603f3d011682016040523d82523d6000602084013e611453565b606091505b5080516114725760405162461bcd60e51b815260040161051f90611d38565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e80565b506001949350505050565b6001600160a01b0383166114fa576114f581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61151d565b816001600160a01b0316836001600160a01b03161461151d5761151d83826116a5565b6001600160a01b038216611534576105c081611742565b826001600160a01b0316826001600160a01b0316146105c0576105c082826117f1565b6001600160a01b0382166115ad5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161051f565b6000818152600260205260409020546001600160a01b0316156116125760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161051f565b61161e60008383611354565b6001600160a01b0382166000908152600360205260408120805460019290611647908490611d20565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016116b28461091d565b6116bc9190611d09565b60008381526007602052604090205490915080821461170f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061175490600190611d09565b6000838152600960205260408120546008805493945090928490811061177c5761177c611cc4565b90600052602060002001549050806008838154811061179d5761179d611cc4565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806117d5576117d5611e22565b6001900381819060005260206000200160009055905550505050565b60006117fc8361091d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461184190611c15565b90600052602060002090601f01602090048101928261186357600085556118a9565b82601f1061187c57805160ff19168380011785556118a9565b828001600101855582156118a9579182015b828111156118a957825182559160200191906001019061188e565b506118b59291506118b9565b5090565b5b808211156118b557600081556001016118ba565b6001600160e01b031981168114610d1457600080fd5b6000602082840312156118f657600080fd5b8135610c09816118ce565b60005b8381101561191c578181015183820152602001611904565b838111156107545750506000910152565b60008151808452611945816020860160208601611901565b601f01601f19169290920160200192915050565b602081526000610c09602083018461192d565b60006020828403121561197e57600080fd5b5035919050565b80356001600160a01b038116811461199c57600080fd5b919050565b600080604083850312156119b457600080fd5b6119bd83611985565b946020939093013593505050565b6000806000606084860312156119e057600080fd5b6119e984611985565b92506119f760208501611985565b9150604084013590509250925092565b600080600060608486031215611a1c57600080fd5b611a2584611985565b95602085013595506040909401359392505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a6b57611a6b611a3a565b604051601f8501601f19908116603f01168101908282118183101715611a9357611a93611a3a565b81604052809350858152868686011115611aac57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ad857600080fd5b813567ffffffffffffffff811115611aef57600080fd5b8201601f81018413611b0057600080fd5b610e8084823560208401611a50565b600060208284031215611b2157600080fd5b610c0982611985565b60008060408385031215611b3d57600080fd5b611b4683611985565b915060208301358015158114611b5b57600080fd5b809150509250929050565b60008060008060808587031215611b7c57600080fd5b611b8585611985565b9350611b9360208601611985565b925060408501359150606085013567ffffffffffffffff811115611bb657600080fd5b8501601f81018713611bc757600080fd5b611bd687823560208401611a50565b91505092959194509250565b60008060408385031215611bf557600080fd5b611bfe83611985565b9150611c0c60208401611985565b90509250929050565b600181811c90821680611c2957607f821691505b60208210811415611c4a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526023908201527f4d696e743a2063616c6c6572206973206e6f74206d696e74657220617070726f6040820152621d995960ea1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415611cbd57611cbd611c93565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60008351611cec818460208801611901565b835190830190611d00818360208801611901565b01949350505050565b600082821015611d1b57611d1b611c93565b500390565b60008219821115611d3357611d33611c93565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611daf57611daf611d8a565b500490565b600082611dc357611dc3611d8a565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dfb9083018461192d565b9695505050505050565b600060208284031215611e1757600080fd5b8151610c09816118ce565b634e487b7160e01b600052603160045260246000fdfe62323831366365343430303966643532636231373836346364336236303831386137393862653564316238333037646532336331363865363861333339666362a2646970667358221220b20406d0319310034b101afba8e175ed54f6f23474a1da297a084bcb923ffa2a64736f6c63430008090033

Deployed Bytecode Sourcemap

46253:3212:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47921:212;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;47921:212:0;;;;;;;;26779:100;;;:::i;:::-;;;;;;;:::i;28292:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;28292:171:0;1528:203:1;27809:417:0;;;;;;:::i;:::-;;:::i;:::-;;40685:113;40773:10;:17;40685:113;;;2319:25:1;;;2307:2;2292:18;40685:113:0;2173:177:1;46504:124:0;;;:::i;48363:525::-;;;;;;:::i;:::-;;:::i;47339:351::-;;;;;;:::i;:::-;;:::i;40353:256::-;;;;;;:::i;:::-;;:::i;46353:42::-;;46390:5;46353:42;;29399:185;;;;;;:::i;:::-;;:::i;40875:233::-;;;;;;:::i;:::-;;:::i;48250:105::-;;;;;;:::i;:::-;;:::i;26490:222::-;;;;;;:::i;:::-;;:::i;26221:207::-;;;;;;:::i;:::-;;:::i;5308:103::-;;;:::i;46917:152::-;;;;;;:::i;:::-;;:::i;4660:87::-;4733:6;;-1:-1:-1;;;;;4733:6:0;4660:87;;26948:104;;;:::i;47077:254::-;;;;;;:::i;:::-;;:::i;28535:155::-;;;;;;:::i;:::-;;:::i;48896:566::-;;;;;;:::i;:::-;;:::i;27123:281::-;;;;;;:::i;:::-;;:::i;46319:27::-;;;:::i;28761:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;28882:25:0;;;28858:4;28882:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28761:164;5566:201;;;;;;:::i;:::-;;:::i;46404:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;47921:212;48060:4;48089:36;48113:11;48089:23;:36::i;:::-;48082:43;47921:212;-1:-1:-1;;47921:212:0:o;26779:100::-;26833:13;26866:5;26859:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26779:100;:::o;28292:171::-;28368:7;28388:23;28403:7;28388:14;:23::i;:::-;-1:-1:-1;28431:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28431:24:0;;28292:171::o;27809:417::-;27890:13;27906:23;27921:7;27906:14;:23::i;:::-;27890:39;;27954:5;-1:-1:-1;;;;;27948:11:0;:2;-1:-1:-1;;;;;27948:11:0;;;27940:57;;;;-1:-1:-1;;;27940:57:0;;6307:2:1;27940:57:0;;;6289:21:1;6346:2;6326:18;;;6319:30;6385:34;6365:18;;;6358:62;-1:-1:-1;;;6436:18:1;;;6429:31;6477:19;;27940:57:0;;;;;;;;;3291:10;-1:-1:-1;;;;;28032:21:0;;;;:62;;-1:-1:-1;28057:37:0;28074:5;3291:10;28761:164;:::i;28057:37::-;28010:174;;;;-1:-1:-1;;;28010:174:0;;6709:2:1;28010:174:0;;;6691:21:1;6748:2;6728:18;;;6721:30;6787:34;6767:18;;;6760:62;6858:32;6838:18;;;6831:60;6908:19;;28010:174:0;6507:426:1;28010:174:0;28197:21;28206:2;28210:7;28197:8;:21::i;:::-;27879:347;27809:417;;:::o;46504:124::-;;;;;;;;;;;;;;;;;;;:::o;48363:525::-;31550:4;31574:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31574:16:0;:30;;;48556:47;;-1:-1:-1;3291:10:0;48577:26;;;;:12;:26;;;;;;;;48556:47;48552:329;;;48620:21;48629:2;48633:7;48620:8;:21::i;48552:329::-;48700:41;3291:10;48733:7;48700:18;:41::i;:::-;48674:152;;;;-1:-1:-1;;;48674:152:0;;7140:2:1;48674:152:0;;;7122:21:1;7179:2;7159:18;;;7152:30;7218:34;7198:18;;;7191:62;-1:-1:-1;;;7269:18:1;;;7262:47;7326:19;;48674:152:0;6938:413:1;48674:152:0;48841:28;48851:4;48857:2;48861:7;48841:9;:28::i;47339:351::-;3291:10;46800:26;;;;:12;:26;;;;;;;;46778:111;;;;-1:-1:-1;;;46778:111:0;;;;;;;:::i;:::-;46390:5:::1;47493:8;:22;;47471:110;;;::::0;-1:-1:-1;;;47471:110:0;;7962:2:1;47471:110:0::1;::::0;::::1;7944:21:1::0;8001:2;7981:18;;;7974:30;8040:34;8020:18;;;8013:62;-1:-1:-1;;;8091:18:1;;;8084:36;8137:19;;47471:110:0::1;7760:402:1::0;47471:110:0::1;47609:10:::0;47592:91:::1;47626:8;47621:1;:13;47592:91;;47656:15;47665:2;47669:1;47656:8;:15::i;:::-;47636:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47592:91;;;;47339:351:::0;;;:::o;40353:256::-;40450:7;40486:23;40503:5;40486:16;:23::i;:::-;40478:5;:31;40470:87;;;;-1:-1:-1;;;40470:87:0;;8641:2:1;40470:87:0;;;8623:21:1;8680:2;8660:18;;;8653:30;8719:34;8699:18;;;8692:62;-1:-1:-1;;;8770:18:1;;;8763:41;8821:19;;40470:87:0;8439:407:1;40470:87:0;-1:-1:-1;;;;;;40575:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40353:256::o;29399:185::-;29537:39;29554:4;29560:2;29564:7;29537:39;;;;;;;;;;;;:16;:39::i;40875:233::-;40950:7;40986:30;40773:10;:17;;40685:113;40986:30;40978:5;:38;40970:95;;;;-1:-1:-1;;;40970:95:0;;9053:2:1;40970:95:0;;;9035:21:1;9092:2;9072:18;;;9065:30;9131:34;9111:18;;;9104:62;-1:-1:-1;;;9182:18:1;;;9175:42;9234:19;;40970:95:0;8851:408:1;40970:95:0;41083:10;41094:5;41083:17;;;;;;;;:::i;:::-;;;;;;;;;41076:24;;40875:233;;;:::o;48250:105::-;4546:13;:11;:13::i;:::-;48325:22;;::::1;::::0;:8:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48250:105:::0;:::o;26490:222::-;26562:7;26598:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26598:16:0;26633:19;26625:56;;;;-1:-1:-1;;;26625:56:0;;9598:2:1;26625:56:0;;;9580:21:1;9637:2;9617:18;;;9610:30;-1:-1:-1;;;9656:18:1;;;9649:54;9720:18;;26625:56:0;9396:348:1;26221:207:0;26293:7;-1:-1:-1;;;;;26321:19:0;;26313:73;;;;-1:-1:-1;;;26313:73:0;;9951:2:1;26313:73:0;;;9933:21:1;9990:2;9970:18;;;9963:30;10029:34;10009:18;;;10002:62;-1:-1:-1;;;10080:18:1;;;10073:39;10129:19;;26313:73:0;9749:405:1;26313:73:0;-1:-1:-1;;;;;;26404:16:0;;;;;:9;:16;;;;;;;26221:207::o;5308:103::-;4546:13;:11;:13::i;:::-;5373:30:::1;5400:1;5373:18;:30::i;:::-;5308:103::o:0;46917:152::-;4546:13;:11;:13::i;:::-;-1:-1:-1;;;;;47029:23:0;;;::::1;;::::0;;;:12:::1;:23;::::0;;;;:32;;-1:-1:-1;;47029:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46917:152::o;26948:104::-;27004:13;27037:7;27030:14;;;;;:::i;47077:254::-;3291:10;46800:26;;;;:12;:26;;;;;;;;46778:111;;;;-1:-1:-1;;;46778:111:0;;;;;;;:::i;:::-;47161:12;47153:57:::1;;;::::0;-1:-1:-1;;;47153:57:0;;10361:2:1;47153:57:0::1;::::0;::::1;10343:21:1::0;;;10380:18;;;10373:30;10439:34;10419:18;;;10412:62;10491:18;;47153:57:0::1;10159:356:1::0;47153:57:0::1;46390:5;47229:7;:21;;47221:69;;;::::0;-1:-1:-1;;;47221:69:0;;10722:2:1;47221:69:0::1;::::0;::::1;10704:21:1::0;10761:2;10741:18;;;10734:30;10800:34;10780:18;;;10773:62;-1:-1:-1;;;10851:18:1;;;10844:33;10894:19;;47221:69:0::1;10520:399:1::0;47221:69:0::1;47301:22;47311:2;47315:7;47301:9;:22::i;28535:155::-:0;28630:52;3291:10;28663:8;28673;28630:18;:52::i;48896:566::-;31550:4;31574:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31574:16:0;:30;;;49122:47;;-1:-1:-1;3291:10:0;49143:26;;;;:12;:26;;;;;;;;49122:47;49118:337;;;49186:21;49195:2;49199:7;49186:8;:21::i;:::-;49118:337;;;49266:41;3291:10;49299:7;49266:18;:41::i;:::-;49240:149;;;;-1:-1:-1;;;49240:149:0;;11126:2:1;49240:149:0;;;11108:21:1;11165:2;11145:18;;;11138:30;11204:34;11184:18;;;11177:62;-1:-1:-1;;;11255:18:1;;;11248:44;11309:19;;49240:149:0;10924:410:1;49240:149:0;49404:39;49418:4;49424:2;49428:7;49437:5;49404:13;:39::i;27123:281::-;27196:13;27222:23;27237:7;27222:14;:23::i;:::-;27258:21;27282:10;:8;:10::i;:::-;27258:34;;27334:1;27316:7;27310:21;:25;:86;;;;;;;;;;;;;;;;;27362:7;27371:18;:7;:16;:18::i;:::-;27345:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27310:86;27303:93;27123:281;-1:-1:-1;;;27123:281:0:o;46319:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5566:201::-;4546:13;:11;:13::i;:::-;-1:-1:-1;;;;;5655:22:0;::::1;5647:73;;;::::0;-1:-1:-1;;;5647:73:0;;12016:2:1;5647:73:0::1;::::0;::::1;11998:21:1::0;12055:2;12035:18;;;12028:30;12094:34;12074:18;;;12067:62;-1:-1:-1;;;12145:18:1;;;12138:36;12191:19;;5647:73:0::1;11814:402:1::0;5647:73:0::1;5731:28;5750:8;5731:18;:28::i;:::-;5566:201:::0;:::o;40045:224::-;40147:4;-1:-1:-1;;;;;;40171:50:0;;-1:-1:-1;;;40171:50:0;;:90;;;40225:36;40249:11;40225:23;:36::i;36267:135::-;31550:4;31574:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31574:16:0;36341:53;;;;-1:-1:-1;;;36341:53:0;;9598:2:1;36341:53:0;;;9580:21:1;9637:2;9617:18;;;9610:30;-1:-1:-1;;;9656:18:1;;;9649:54;9720:18;;36341:53:0;9396:348:1;35546:174:0;35621:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35621:29:0;-1:-1:-1;;;;;35621:29:0;;;;;;;;:24;;35675:23;35621:24;35675:14;:23::i;:::-;-1:-1:-1;;;;;35666:46:0;;;;;;;;;;;35546:174;;:::o;31779:264::-;31872:4;31889:13;31905:23;31920:7;31905:14;:23::i;:::-;31889:39;;31958:5;-1:-1:-1;;;;;31947:16:0;:7;-1:-1:-1;;;;;31947:16:0;;:52;;;-1:-1:-1;;;;;;28882:25:0;;;28858:4;28882:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31967:32;31947:87;;;;32027:7;-1:-1:-1;;;;;32003:31:0;:20;32015:7;32003:11;:20::i;:::-;-1:-1:-1;;;;;32003:31:0;;31947:87;31939:96;31779:264;-1:-1:-1;;;;31779:264:0:o;34802:625::-;34961:4;-1:-1:-1;;;;;34934:31:0;:23;34949:7;34934:14;:23::i;:::-;-1:-1:-1;;;;;34934:31:0;;34926:81;;;;-1:-1:-1;;;34926:81:0;;12423:2:1;34926:81:0;;;12405:21:1;12462:2;12442:18;;;12435:30;12501:34;12481:18;;;12474:62;-1:-1:-1;;;12552:18:1;;;12545:35;12597:19;;34926:81:0;12221:401:1;34926:81:0;-1:-1:-1;;;;;35026:16:0;;35018:65;;;;-1:-1:-1;;;35018:65:0;;12829:2:1;35018:65:0;;;12811:21:1;12868:2;12848:18;;;12841:30;12907:34;12887:18;;;12880:62;-1:-1:-1;;;12958:18:1;;;12951:34;13002:19;;35018:65:0;12627:400:1;35018:65:0;35096:39;35117:4;35123:2;35127:7;35096:20;:39::i;:::-;35200:29;35217:1;35221:7;35200:8;:29::i;:::-;-1:-1:-1;;;;;35242:15:0;;;;;;:9;:15;;;;;:20;;35261:1;;35242:15;:20;;35261:1;;35242:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35273:13:0;;;;;;:9;:13;;;;;:18;;35290:1;;35273:13;:18;;35290:1;;35273:18;:::i;:::-;;;;-1:-1:-1;;35302:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35302:21:0;-1:-1:-1;;;;;35302:21:0;;;;;;;;;35341:27;;35302:16;;35341:27;;;;;;;27879:347;27809:417;;:::o;4825:132::-;4733:6;;-1:-1:-1;;;;;4733:6:0;3291:10;4889:23;4881:68;;;;-1:-1:-1;;;4881:68:0;;13497:2:1;4881:68:0;;;13479:21:1;;;13516:18;;;13509:30;13575:34;13555:18;;;13548:62;13627:18;;4881:68:0;13295:356:1;5927:191:0;6020:6;;;-1:-1:-1;;;;;6037:17:0;;;-1:-1:-1;;;;;;6037:17:0;;;;;;;6070:40;;6020:6;;;6037:17;6020:6;;6070:40;;6001:16;;6070:40;5990:128;5927:191;:::o;32385:110::-;32461:26;32471:2;32475:7;32461:26;;;;;;;;;;;;:9;:26::i;35863:315::-;36018:8;-1:-1:-1;;;;;36009:17:0;:5;-1:-1:-1;;;;;36009:17:0;;;36001:55;;;;-1:-1:-1;;;36001:55:0;;13858:2:1;36001:55:0;;;13840:21:1;13897:2;13877:18;;;13870:30;13936:27;13916:18;;;13909:55;13981:18;;36001:55:0;13656:349:1;36001:55:0;-1:-1:-1;;;;;36067:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36067:46:0;;;;;;;;;;36129:41;;540::1;;;36129::0;;513:18:1;36129:41:0;;;;;;;35863:315;;;:::o;30859:313::-;31015:28;31025:4;31031:2;31035:7;31015:9;:28::i;:::-;31062:47;31085:4;31091:2;31095:7;31104:4;31062:22;:47::i;:::-;31054:110;;;;-1:-1:-1;;;31054:110:0;;;;;;;:::i;48141:101::-;48193:13;48226:8;48219:15;;;;;:::i;465:723::-;521:13;742:10;738:53;;-1:-1:-1;;769:10:0;;;;;;;;;;;;-1:-1:-1;;;769:10:0;;;;;465:723::o;738:53::-;816:5;801:12;857:78;864:9;;857:78;;890:8;;;;:::i;:::-;;-1:-1:-1;913:10:0;;-1:-1:-1;921:2:0;913:10;;:::i;:::-;;;857:78;;;945:19;977:6;967:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;967:17:0;;945:39;;995:154;1002:10;;995:154;;1029:11;1039:1;1029:11;;:::i;:::-;;-1:-1:-1;1098:10:0;1106:2;1098:5;:10;:::i;:::-;1085:24;;:2;:24;:::i;:::-;1072:39;;1055:6;1062;1055:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1055:56:0;;;;;;;;-1:-1:-1;1126:11:0;1135:2;1126:11;;:::i;:::-;;;995:154;;25852:305;25954:4;-1:-1:-1;;;;;;25991:40:0;;-1:-1:-1;;;25991:40:0;;:105;;-1:-1:-1;;;;;;;26048:48:0;;-1:-1:-1;;;26048:48:0;25991:105;:158;;;-1:-1:-1;;;;;;;;;;17623:40:0;;;26113:36;17514:157;47698:215;47860:45;47887:4;47893:2;47897:7;47860:26;:45::i;32722:319::-;32851:18;32857:2;32861:7;32851:5;:18::i;:::-;32902:53;32933:1;32937:2;32941:7;32950:4;32902:22;:53::i;:::-;32880:153;;;;-1:-1:-1;;;32880:153:0;;;;;;;:::i;36966:853::-;37120:4;-1:-1:-1;;;;;37141:13:0;;7653:19;:23;37137:675;;37177:71;;-1:-1:-1;;;37177:71:0;;-1:-1:-1;;;;;37177:36:0;;;;;:71;;3291:10;;37228:4;;37234:7;;37243:4;;37177:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37177:71:0;;;;;;;;-1:-1:-1;;37177:71:0;;;;;;;;;;;;:::i;:::-;;;37173:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37418:13:0;;37414:328;;37461:60;;-1:-1:-1;;;37461:60:0;;;;;;;:::i;37414:328::-;37692:6;37686:13;37677:6;37673:2;37669:15;37662:38;37173:584;-1:-1:-1;;;;;;37299:51:0;-1:-1:-1;;;37299:51:0;;-1:-1:-1;37292:58:0;;37137:675;-1:-1:-1;37796:4:0;36966:853;;;;;;:::o;41721:589::-;-1:-1:-1;;;;;41927:18:0;;41923:187;;41962:40;41994:7;43137:10;:17;;43110:24;;;;:15;:24;;;;;:44;;;43165:24;;;;;;;;;;;;43033:164;41962:40;41923:187;;;42032:2;-1:-1:-1;;;;;42024:10:0;:4;-1:-1:-1;;;;;42024:10:0;;42020:90;;42051:47;42084:4;42090:7;42051:32;:47::i;:::-;-1:-1:-1;;;;;42124:16:0;;42120:183;;42157:45;42194:7;42157:36;:45::i;42120:183::-;42230:4;-1:-1:-1;;;;;42224:10:0;:2;-1:-1:-1;;;;;42224:10:0;;42220:83;;42251:40;42279:2;42283:7;42251:27;:40::i;33377:439::-;-1:-1:-1;;;;;33457:16:0;;33449:61;;;;-1:-1:-1;;;33449:61:0;;15753:2:1;33449:61:0;;;15735:21:1;;;15772:18;;;15765:30;15831:34;15811:18;;;15804:62;15883:18;;33449:61:0;15551:356:1;33449:61:0;31550:4;31574:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31574:16:0;:30;33521:58;;;;-1:-1:-1;;;33521:58:0;;16114:2:1;33521:58:0;;;16096:21:1;16153:2;16133:18;;;16126:30;16192;16172:18;;;16165:58;16240:18;;33521:58:0;15912:352:1;33521:58:0;33592:45;33621:1;33625:2;33629:7;33592:20;:45::i;:::-;-1:-1:-1;;;;;33650:13:0;;;;;;:9;:13;;;;;:18;;33667:1;;33650:13;:18;;33667:1;;33650:18;:::i;:::-;;;;-1:-1:-1;;33679:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33679:21:0;-1:-1:-1;;;;;33679:21:0;;;;;;;;33718:33;;33679:16;;;33718:33;;33679:16;;33718:33;48325:22:::1;48250:105:::0;:::o;43824:988::-;44090:22;44140:1;44115:22;44132:4;44115:16;:22::i;:::-;:26;;;;:::i;:::-;44152:18;44173:26;;;:17;:26;;;;;;44090:51;;-1:-1:-1;44306:28:0;;;44302:328;;-1:-1:-1;;;;;44373:18:0;;44351:19;44373:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44424:30;;;;;;:44;;;44541:30;;:17;:30;;;;;:43;;;44302:328;-1:-1:-1;44726:26:0;;;;:17;:26;;;;;;;;44719:33;;;-1:-1:-1;;;;;44770:18:0;;;;;:12;:18;;;;;:34;;;;;;;44763:41;43824:988::o;45107:1079::-;45385:10;:17;45360:22;;45385:21;;45405:1;;45385:21;:::i;:::-;45417:18;45438:24;;;:15;:24;;;;;;45811:10;:26;;45360:46;;-1:-1:-1;45438:24:0;;45360:46;;45811:26;;;;;;:::i;:::-;;;;;;;;;45789:48;;45875:11;45850:10;45861;45850:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45955:28;;;:15;:28;;;;;;;:41;;;46127:24;;;;;46120:31;46162:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45178:1008;;;45107:1079;:::o;42611:221::-;42696:14;42713:20;42730:2;42713:16;:20::i;:::-;-1:-1:-1;;;;;42744:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42789:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42611:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:322::-;2765:6;2773;2781;2834:2;2822:9;2813:7;2809:23;2805:32;2802:52;;;2850:1;2847;2840:12;2802:52;2873:29;2892:9;2873:29;:::i;:::-;2863:39;2949:2;2934:18;;2921:32;;-1:-1:-1;3000:2:1;2985:18;;;2972:32;;2688:322;-1:-1:-1;;;2688:322:1:o;3015:127::-;3076:10;3071:3;3067:20;3064:1;3057:31;3107:4;3104:1;3097:15;3131:4;3128:1;3121:15;3147:632;3212:5;3242:18;3283:2;3275:6;3272:14;3269:40;;;3289:18;;:::i;:::-;3364:2;3358:9;3332:2;3418:15;;-1:-1:-1;;3414:24:1;;;3440:2;3410:33;3406:42;3394:55;;;3464:18;;;3484:22;;;3461:46;3458:72;;;3510:18;;:::i;:::-;3550:10;3546:2;3539:22;3579:6;3570:15;;3609:6;3601;3594:22;3649:3;3640:6;3635:3;3631:16;3628:25;3625:45;;;3666:1;3663;3656:12;3625:45;3716:6;3711:3;3704:4;3696:6;3692:17;3679:44;3771:1;3764:4;3755:6;3747;3743:19;3739:30;3732:41;;;;3147:632;;;;;:::o;3784:451::-;3853:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:52;;;3922:1;3919;3912:12;3874:52;3962:9;3949:23;3995:18;3987:6;3984:30;3981:50;;;4027:1;4024;4017:12;3981:50;4050:22;;4103:4;4095:13;;4091:27;-1:-1:-1;4081:55:1;;4132:1;4129;4122:12;4081:55;4155:74;4221:7;4216:2;4203:16;4198:2;4194;4190:11;4155:74;:::i;4240:186::-;4299:6;4352:2;4340:9;4331:7;4327:23;4323:32;4320:52;;;4368:1;4365;4358:12;4320:52;4391:29;4410:9;4391:29;:::i;4431:347::-;4496:6;4504;4557:2;4545:9;4536:7;4532:23;4528:32;4525:52;;;4573:1;4570;4563:12;4525:52;4596:29;4615:9;4596:29;:::i;:::-;4586:39;;4675:2;4664:9;4660:18;4647:32;4722:5;4715:13;4708:21;4701:5;4698:32;4688:60;;4744:1;4741;4734:12;4688:60;4767:5;4757:15;;;4431:347;;;;;:::o;4783:667::-;4878:6;4886;4894;4902;4955:3;4943:9;4934:7;4930:23;4926:33;4923:53;;;4972:1;4969;4962:12;4923:53;4995:29;5014:9;4995:29;:::i;:::-;4985:39;;5043:38;5077:2;5066:9;5062:18;5043:38;:::i;:::-;5033:48;;5128:2;5117:9;5113:18;5100:32;5090:42;;5183:2;5172:9;5168:18;5155:32;5210:18;5202:6;5199:30;5196:50;;;5242:1;5239;5232:12;5196:50;5265:22;;5318:4;5310:13;;5306:27;-1:-1:-1;5296:55:1;;5347:1;5344;5337:12;5296:55;5370:74;5436:7;5431:2;5418:16;5413:2;5409;5405:11;5370:74;:::i;:::-;5360:84;;;4783:667;;;;;;;:::o;5455:260::-;5523:6;5531;5584:2;5572:9;5563:7;5559:23;5555:32;5552:52;;;5600:1;5597;5590:12;5552:52;5623:29;5642:9;5623:29;:::i;:::-;5613:39;;5671:38;5705:2;5694:9;5690:18;5671:38;:::i;:::-;5661:48;;5455:260;;;;;:::o;5720:380::-;5799:1;5795:12;;;;5842;;;5863:61;;5917:4;5909:6;5905:17;5895:27;;5863:61;5970:2;5962:6;5959:14;5939:18;5936:38;5933:161;;;6016:10;6011:3;6007:20;6004:1;5997:31;6051:4;6048:1;6041:15;6079:4;6076:1;6069:15;5933:161;;5720:380;;;:::o;7356:399::-;7558:2;7540:21;;;7597:2;7577:18;;;7570:30;7636:34;7631:2;7616:18;;7609:62;-1:-1:-1;;;7702:2:1;7687:18;;7680:33;7745:3;7730:19;;7356:399::o;8167:127::-;8228:10;8223:3;8219:20;8216:1;8209:31;8259:4;8256:1;8249:15;8283:4;8280:1;8273:15;8299:135;8338:3;-1:-1:-1;;8359:17:1;;8356:43;;;8379:18;;:::i;:::-;-1:-1:-1;8426:1:1;8415:13;;8299:135::o;9264:127::-;9325:10;9320:3;9316:20;9313:1;9306:31;9356:4;9353:1;9346:15;9380:4;9377:1;9370:15;11339:470;11518:3;11556:6;11550:13;11572:53;11618:6;11613:3;11606:4;11598:6;11594:17;11572:53;:::i;:::-;11688:13;;11647:16;;;;11710:57;11688:13;11647:16;11744:4;11732:17;;11710:57;:::i;:::-;11783:20;;11339:470;-1:-1:-1;;;;11339:470:1:o;13032:125::-;13072:4;13100:1;13097;13094:8;13091:34;;;13105:18;;:::i;:::-;-1:-1:-1;13142:9:1;;13032:125::o;13162:128::-;13202:3;13233:1;13229:6;13226:1;13223:13;13220:39;;;13239:18;;:::i;:::-;-1:-1:-1;13275:9:1;;13162:128::o;14010:414::-;14212:2;14194:21;;;14251:2;14231:18;;;14224:30;14290:34;14285:2;14270:18;;14263:62;-1:-1:-1;;;14356:2:1;14341:18;;14334:48;14414:3;14399:19;;14010:414::o;14429:127::-;14490:10;14485:3;14481:20;14478:1;14471:31;14521:4;14518:1;14511:15;14545:4;14542:1;14535:15;14561:120;14601:1;14627;14617:35;;14632:18;;:::i;:::-;-1:-1:-1;14666:9:1;;14561:120::o;14686:112::-;14718:1;14744;14734:35;;14749:18;;:::i;:::-;-1:-1:-1;14783:9:1;;14686:112::o;14803:489::-;-1:-1:-1;;;;;15072:15:1;;;15054:34;;15124:15;;15119:2;15104:18;;15097:43;15171:2;15156:18;;15149:34;;;15219:3;15214:2;15199:18;;15192:31;;;14997:4;;15240:46;;15266:19;;15258:6;15240:46;:::i;:::-;15232:54;14803:489;-1:-1:-1;;;;;;14803:489:1:o;15297:249::-;15366:6;15419:2;15407:9;15398:7;15394:23;15390:32;15387:52;;;15435:1;15432;15425:12;15387:52;15467:9;15461:16;15486:30;15510:5;15486:30;:::i;16269:127::-;16330:10;16325:3;16321:20;16318:1;16311:31;16361:4;16358:1;16351:15;16385:4;16382:1;16375:15

Swarm Source

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