ETH Price: $3,434.81 (+2.55%)

Token

Collab.Land Patron NFT (CLPN)
 

Overview

Max Total Supply

142 CLPN

Holders

117

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
yitong.eth
Balance
1 CLPN
0xC3FdAdbAe46798CD8762185A09C5b672A7aA36Bb
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:
Patron

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// Sources flattened with hardhat v2.6.7 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

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/[email protected]

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}


// File @openzeppelin/contracts/access/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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


// File src/Patron.sol

pragma solidity ^0.8.0;





contract Patron is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    
    string public baseURI;


    address public recipient;
    uint256 public minAmount;
    uint256 public maxClaimable;
    uint256 public publicLimit;
    uint256 public totalMintable;
    
    uint256 public count;
    uint256 public reserved;
    uint256 public reserveCount;
    
    constructor(
        string memory _name, 
        string memory _symbol, 
        string memory _uri,
        address _recipient, 
        uint256 _minAmount,
        uint256 _maxClaimable,
        uint256 _publicLimit,
        uint256 _totalMintable)
        ERC721(_name, _symbol) 
    {
        
            baseURI = _uri;
            recipient = _recipient;
            minAmount = _minAmount;
            maxClaimable = _maxClaimable;
            publicLimit = _publicLimit;
            totalMintable = _totalMintable;
            reserved = totalMintable - publicLimit;
    }

    receive() 
        external 
        payable 
    {
        require(minAmount <= msg.value, "insuffient amount");
        require(this.balanceOf(msg.sender) < maxClaimable, "max claimed");
        require(count < publicLimit, "max limit");
        
        (bool sent, bytes memory data) = recipient.call{value: msg.value}("");
        require(sent, "failed to send");

        count++;
        _safeMint(msg.sender, _tokenIdCounter.current());
        _tokenIdCounter.increment();
    }

    function contractURI() 
        public 
        view 
        returns (string memory) 
    {
        return baseURI;
    }

    function tokenURI(uint256 tokenId)

        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        // return super.tokenURI(tokenId);
        return baseURI;
    }

    function mint(address _to) 
        public 
        onlyOwner 
    {
        require(reserveCount < reserved, "max reserved");
        
        reserveCount++;
        _safeMint(_to, _tokenIdCounter.current());
        _tokenIdCounter.increment();
    }

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

    // The following functions are overrides required by Solidity.

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

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) 
    {
        super._burn(tokenId);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_minAmount","type":"uint256"},{"internalType":"uint256","name":"_maxClaimable","type":"uint256"},{"internalType":"uint256","name":"_publicLimit","type":"uint256"},{"internalType":"uint256","name":"_totalMintable","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"count","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","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":"totalMintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b50604051620021fb380380620021fb8339810160408190526200003491620002c9565b8751889088906200004d90600090602085019062000139565b5080516200006390600190602084019062000139565b505050620000806200007a620000e360201b60201c565b620000e7565b85516200009590600d90602089019062000139565b50600e80546001600160a01b0319166001600160a01b038716179055600f849055601083905560118290556012819055620000d1828262000394565b60145550620003f79650505050505050565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014790620003ba565b90600052602060002090601f0160209004810192826200016b5760008555620001b6565b82601f106200018657805160ff1916838001178555620001b6565b82800160010185558215620001b6579182015b82811115620001b657825182559160200191906001019062000199565b50620001c4929150620001c8565b5090565b5b80821115620001c45760008155600101620001c9565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200020757600080fd5b81516001600160401b0380821115620002245762000224620001df565b604051601f8301601f19908116603f011681019082821181831017156200024f576200024f620001df565b816040528381526020925086838588010111156200026c57600080fd5b600091505b8382101562000290578582018301518183018401529082019062000271565b83821115620002a25760008385830101525b9695505050505050565b80516001600160a01b0381168114620002c457600080fd5b919050565b600080600080600080600080610100898b031215620002e757600080fd5b88516001600160401b0380821115620002ff57600080fd5b6200030d8c838d01620001f5565b995060208b01519150808211156200032457600080fd5b620003328c838d01620001f5565b985060408b01519150808211156200034957600080fd5b50620003588b828c01620001f5565b9650506200036960608a01620002ac565b94506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b600082821015620003b557634e487b7160e01b600052601160045260246000fd5b500390565b600181811c90821680620003cf57607f821691505b60208210811415620003f157634e487b7160e01b600052602260045260246000fd5b50919050565b611df480620004076000396000f3fe6080604052600436106101d15760003560e01c806370a08231116100f7578063adb8899611610095578063e985e9c511610064578063e985e9c5146106f7578063f03f80c314610740578063f2fde38b14610756578063fe60d12c1461077657600080fd5b8063adb889961461068c578063b88d4fde146106a2578063c87b56dd146106c2578063e8a3d485146106e257600080fd5b806395d89b41116100d157806395d89b411461062b5780639b2cb5d814610640578063a22cb46514610656578063a4331d2d1461067657600080fd5b806370a08231146105d8578063715018a6146105f85780638da5cb5b1461060d57600080fd5b806323b872dd1161016f5780636352211e1161013e5780636352211e1461056357806366d003ac146105835780636a627842146105a35780636c0360eb146105c357600080fd5b806323b872dd146104e35780632f745c591461050357806342842e0e146105235780634f6ccce71461054357600080fd5b8063081812fc116101ab578063081812fc1461045e578063095ea7b31461049657806316317c21146104b857806318160ddd146104ce57600080fd5b806301ffc9a7146103e357806306661abd1461041857806306fdde031461043c57600080fd5b366103de5734600f5411156102215760405162461bcd60e51b81526020600482015260116024820152701a5b9cdd59999a595b9d08185b5bdd5b9d607a1b60448201526064015b60405180910390fd5b6010546040516370a0823160e01b815233600482015230906370a082319060240160206040518083038186803b15801561025a57600080fd5b505afa15801561026e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061029291906118fb565b106102cd5760405162461bcd60e51b815260206004820152600b60248201526a1b585e0818db185a5b595960aa1b6044820152606401610218565b6011546013541061030c5760405162461bcd60e51b81526020600482015260096024820152681b585e081b1a5b5a5d60ba1b6044820152606401610218565b600e5460405160009182916001600160a01b039091169034908381818185875af1925050503d806000811461035d576040519150601f19603f3d011682016040523d82523d6000602084013e610362565b606091505b5091509150816103a55760405162461bcd60e51b815260206004820152600e60248201526d19985a5b1959081d1bc81cd95b9960921b6044820152606401610218565b601380549060006103b58361192a565b91905055506103cc336103c7600c5490565b61078c565b6103da600c80546001019055565b5050005b600080fd5b3480156103ef57600080fd5b506104036103fe36600461195b565b6107aa565b60405190151581526020015b60405180910390f35b34801561042457600080fd5b5061042e60135481565b60405190815260200161040f565b34801561044857600080fd5b506104516107bb565b60405161040f91906119cc565b34801561046a57600080fd5b5061047e6104793660046119df565b61084d565b6040516001600160a01b03909116815260200161040f565b3480156104a257600080fd5b506104b66104b1366004611a14565b6108e2565b005b3480156104c457600080fd5b5061042e60155481565b3480156104da57600080fd5b5060085461042e565b3480156104ef57600080fd5b506104b66104fe366004611a3e565b6109f8565b34801561050f57600080fd5b5061042e61051e366004611a14565b610a29565b34801561052f57600080fd5b506104b661053e366004611a3e565b610abf565b34801561054f57600080fd5b5061042e61055e3660046119df565b610ada565b34801561056f57600080fd5b5061047e61057e3660046119df565b610b6d565b34801561058f57600080fd5b50600e5461047e906001600160a01b031681565b3480156105af57600080fd5b506104b66105be366004611a7a565b610be4565b3480156105cf57600080fd5b50610451610c83565b3480156105e457600080fd5b5061042e6105f3366004611a7a565b610d11565b34801561060457600080fd5b506104b6610d98565b34801561061957600080fd5b50600b546001600160a01b031661047e565b34801561063757600080fd5b50610451610dce565b34801561064c57600080fd5b5061042e600f5481565b34801561066257600080fd5b506104b6610671366004611a95565b610ddd565b34801561068257600080fd5b5061042e60115481565b34801561069857600080fd5b5061042e60125481565b3480156106ae57600080fd5b506104b66106bd366004611ae7565b610ea2565b3480156106ce57600080fd5b506104516106dd3660046119df565b610eda565b3480156106ee57600080fd5b50610451610f6e565b34801561070357600080fd5b50610403610712366004611bc3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561074c57600080fd5b5061042e60105481565b34801561076257600080fd5b506104b6610771366004611a7a565b610f7d565b34801561078257600080fd5b5061042e60145481565b6107a6828260405180602001604052806000815250611015565b5050565b60006107b582611048565b92915050565b6060600080546107ca90611bf6565b80601f01602080910402602001604051908101604052809291908181526020018280546107f690611bf6565b80156108435780601f1061081857610100808354040283529160200191610843565b820191906000526020600020905b81548152906001019060200180831161082657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108c65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610218565b506000908152600460205260409020546001600160a01b031690565b60006108ed82610b6d565b9050806001600160a01b0316836001600160a01b0316141561095b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610218565b336001600160a01b038216148061097757506109778133610712565b6109e95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610218565b6109f3838361106d565b505050565b610a0233826110db565b610a1e5760405162461bcd60e51b815260040161021890611c31565b6109f38383836111d2565b6000610a3483610d11565b8210610a965760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610218565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6109f383838360405180602001604052806000815250610ea2565b6000610ae560085490565b8210610b485760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610218565b60088281548110610b5b57610b5b611c82565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806107b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610218565b600b546001600160a01b03163314610c0e5760405162461bcd60e51b815260040161021890611c98565b60145460155410610c505760405162461bcd60e51b815260206004820152600c60248201526b1b585e081c995cd95c9d995960a21b6044820152606401610218565b60158054906000610c608361192a565b9190505550610c72816103c7600c5490565b610c80600c80546001019055565b50565b600d8054610c9090611bf6565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbc90611bf6565b8015610d095780601f10610cde57610100808354040283529160200191610d09565b820191906000526020600020905b815481529060010190602001808311610cec57829003601f168201915b505050505081565b60006001600160a01b038216610d7c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610218565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610dc25760405162461bcd60e51b815260040161021890611c98565b610dcc600061137d565b565b6060600180546107ca90611bf6565b6001600160a01b038216331415610e365760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610218565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610eac33836110db565b610ec85760405162461bcd60e51b815260040161021890611c31565b610ed4848484846113cf565b50505050565b6060600d8054610ee990611bf6565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1590611bf6565b8015610f625780601f10610f3757610100808354040283529160200191610f62565b820191906000526020600020905b815481529060010190602001808311610f4557829003601f168201915b50505050509050919050565b6060600d80546107ca90611bf6565b600b546001600160a01b03163314610fa75760405162461bcd60e51b815260040161021890611c98565b6001600160a01b03811661100c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610218565b610c808161137d565b61101f8383611402565b61102c6000848484611550565b6109f35760405162461bcd60e51b815260040161021890611ccd565b60006001600160e01b0319821663780e9d6360e01b14806107b557506107b58261165d565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110a282610b6d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111545760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610218565b600061115f83610b6d565b9050806001600160a01b0316846001600160a01b0316148061119a5750836001600160a01b031661118f8461084d565b6001600160a01b0316145b806111ca57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111e582610b6d565b6001600160a01b03161461124d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610218565b6001600160a01b0382166112af5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610218565b6112ba8383836116ad565b6112c560008261106d565b6001600160a01b03831660009081526003602052604081208054600192906112ee908490611d1f565b90915550506001600160a01b038216600090815260036020526040812080546001929061131c908490611d36565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6113da8484846111d2565b6113e684848484611550565b610ed45760405162461bcd60e51b815260040161021890611ccd565b6001600160a01b0382166114585760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610218565b6000818152600260205260409020546001600160a01b0316156114bd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610218565b6114c9600083836116ad565b6001600160a01b03821660009081526003602052604081208054600192906114f2908490611d36565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561165257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611594903390899088908890600401611d4e565b602060405180830381600087803b1580156115ae57600080fd5b505af19250505080156115de575060408051601f3d908101601f191682019092526115db91810190611d8b565b60015b611638573d80801561160c576040519150601f19603f3d011682016040523d82523d6000602084013e611611565b606091505b5080516116305760405162461bcd60e51b815260040161021890611ccd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111ca565b506001949350505050565b60006001600160e01b031982166380ac58cd60e01b148061168e57506001600160e01b03198216635b5e139f60e01b145b806107b557506301ffc9a760e01b6001600160e01b03198316146107b5565b6109f38383836001600160a01b03831661170e5761170981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611731565b816001600160a01b0316836001600160a01b03161461173157611731838261176b565b6001600160a01b038216611748576109f381611808565b826001600160a01b0316826001600160a01b0316146109f3576109f382826118b7565b6000600161177884610d11565b6117829190611d1f565b6000838152600760205260409020549091508082146117d5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061181a90600190611d1f565b6000838152600960205260408120546008805493945090928490811061184257611842611c82565b90600052602060002001549050806008838154811061186357611863611c82565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061189b5761189b611da8565b6001900381819060005260206000200160009055905550505050565b60006118c283610d11565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006020828403121561190d57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600060001982141561193e5761193e611914565b5060010190565b6001600160e01b031981168114610c8057600080fd5b60006020828403121561196d57600080fd5b813561197881611945565b9392505050565b6000815180845260005b818110156119a557602081850181015186830182015201611989565b818111156119b7576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611978602083018461197f565b6000602082840312156119f157600080fd5b5035919050565b80356001600160a01b0381168114611a0f57600080fd5b919050565b60008060408385031215611a2757600080fd5b611a30836119f8565b946020939093013593505050565b600080600060608486031215611a5357600080fd5b611a5c846119f8565b9250611a6a602085016119f8565b9150604084013590509250925092565b600060208284031215611a8c57600080fd5b611978826119f8565b60008060408385031215611aa857600080fd5b611ab1836119f8565b915060208301358015158114611ac657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611afd57600080fd5b611b06856119f8565b9350611b14602086016119f8565b925060408501359150606085013567ffffffffffffffff80821115611b3857600080fd5b818701915087601f830112611b4c57600080fd5b813581811115611b5e57611b5e611ad1565b604051601f8201601f19908116603f01168101908382118183101715611b8657611b86611ad1565b816040528281528a6020848701011115611b9f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611bd657600080fd5b611bdf836119f8565b9150611bed602084016119f8565b90509250929050565b600181811c90821680611c0a57607f821691505b60208210811415611c2b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082821015611d3157611d31611914565b500390565b60008219821115611d4957611d49611914565b500190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d819083018461197f565b9695505050505050565b600060208284031215611d9d57600080fd5b815161197881611945565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220f2ed4edc75d92333ee4867c8fd7b891e747ab2a77c1bffc68042a574eef7b04b64736f6c634300080900330000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000002a69f406384dceee59480010037d4499136dd1bf0000000000000000000000000000000000000000000000005fc1b97136320000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001a400000000000000000000000000000000000000000000000000000000000001fe0000000000000000000000000000000000000000000000000000000000000016436f6c6c61622e4c616e6420506174726f6e204e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000004434c504e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d5162347650386a7a676d783866336b334b31714d78556935687837696d755a47675976735a545a7a50774b540000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d15760003560e01c806370a08231116100f7578063adb8899611610095578063e985e9c511610064578063e985e9c5146106f7578063f03f80c314610740578063f2fde38b14610756578063fe60d12c1461077657600080fd5b8063adb889961461068c578063b88d4fde146106a2578063c87b56dd146106c2578063e8a3d485146106e257600080fd5b806395d89b41116100d157806395d89b411461062b5780639b2cb5d814610640578063a22cb46514610656578063a4331d2d1461067657600080fd5b806370a08231146105d8578063715018a6146105f85780638da5cb5b1461060d57600080fd5b806323b872dd1161016f5780636352211e1161013e5780636352211e1461056357806366d003ac146105835780636a627842146105a35780636c0360eb146105c357600080fd5b806323b872dd146104e35780632f745c591461050357806342842e0e146105235780634f6ccce71461054357600080fd5b8063081812fc116101ab578063081812fc1461045e578063095ea7b31461049657806316317c21146104b857806318160ddd146104ce57600080fd5b806301ffc9a7146103e357806306661abd1461041857806306fdde031461043c57600080fd5b366103de5734600f5411156102215760405162461bcd60e51b81526020600482015260116024820152701a5b9cdd59999a595b9d08185b5bdd5b9d607a1b60448201526064015b60405180910390fd5b6010546040516370a0823160e01b815233600482015230906370a082319060240160206040518083038186803b15801561025a57600080fd5b505afa15801561026e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061029291906118fb565b106102cd5760405162461bcd60e51b815260206004820152600b60248201526a1b585e0818db185a5b595960aa1b6044820152606401610218565b6011546013541061030c5760405162461bcd60e51b81526020600482015260096024820152681b585e081b1a5b5a5d60ba1b6044820152606401610218565b600e5460405160009182916001600160a01b039091169034908381818185875af1925050503d806000811461035d576040519150601f19603f3d011682016040523d82523d6000602084013e610362565b606091505b5091509150816103a55760405162461bcd60e51b815260206004820152600e60248201526d19985a5b1959081d1bc81cd95b9960921b6044820152606401610218565b601380549060006103b58361192a565b91905055506103cc336103c7600c5490565b61078c565b6103da600c80546001019055565b5050005b600080fd5b3480156103ef57600080fd5b506104036103fe36600461195b565b6107aa565b60405190151581526020015b60405180910390f35b34801561042457600080fd5b5061042e60135481565b60405190815260200161040f565b34801561044857600080fd5b506104516107bb565b60405161040f91906119cc565b34801561046a57600080fd5b5061047e6104793660046119df565b61084d565b6040516001600160a01b03909116815260200161040f565b3480156104a257600080fd5b506104b66104b1366004611a14565b6108e2565b005b3480156104c457600080fd5b5061042e60155481565b3480156104da57600080fd5b5060085461042e565b3480156104ef57600080fd5b506104b66104fe366004611a3e565b6109f8565b34801561050f57600080fd5b5061042e61051e366004611a14565b610a29565b34801561052f57600080fd5b506104b661053e366004611a3e565b610abf565b34801561054f57600080fd5b5061042e61055e3660046119df565b610ada565b34801561056f57600080fd5b5061047e61057e3660046119df565b610b6d565b34801561058f57600080fd5b50600e5461047e906001600160a01b031681565b3480156105af57600080fd5b506104b66105be366004611a7a565b610be4565b3480156105cf57600080fd5b50610451610c83565b3480156105e457600080fd5b5061042e6105f3366004611a7a565b610d11565b34801561060457600080fd5b506104b6610d98565b34801561061957600080fd5b50600b546001600160a01b031661047e565b34801561063757600080fd5b50610451610dce565b34801561064c57600080fd5b5061042e600f5481565b34801561066257600080fd5b506104b6610671366004611a95565b610ddd565b34801561068257600080fd5b5061042e60115481565b34801561069857600080fd5b5061042e60125481565b3480156106ae57600080fd5b506104b66106bd366004611ae7565b610ea2565b3480156106ce57600080fd5b506104516106dd3660046119df565b610eda565b3480156106ee57600080fd5b50610451610f6e565b34801561070357600080fd5b50610403610712366004611bc3565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561074c57600080fd5b5061042e60105481565b34801561076257600080fd5b506104b6610771366004611a7a565b610f7d565b34801561078257600080fd5b5061042e60145481565b6107a6828260405180602001604052806000815250611015565b5050565b60006107b582611048565b92915050565b6060600080546107ca90611bf6565b80601f01602080910402602001604051908101604052809291908181526020018280546107f690611bf6565b80156108435780601f1061081857610100808354040283529160200191610843565b820191906000526020600020905b81548152906001019060200180831161082657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108c65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610218565b506000908152600460205260409020546001600160a01b031690565b60006108ed82610b6d565b9050806001600160a01b0316836001600160a01b0316141561095b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610218565b336001600160a01b038216148061097757506109778133610712565b6109e95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610218565b6109f3838361106d565b505050565b610a0233826110db565b610a1e5760405162461bcd60e51b815260040161021890611c31565b6109f38383836111d2565b6000610a3483610d11565b8210610a965760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610218565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6109f383838360405180602001604052806000815250610ea2565b6000610ae560085490565b8210610b485760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610218565b60088281548110610b5b57610b5b611c82565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806107b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610218565b600b546001600160a01b03163314610c0e5760405162461bcd60e51b815260040161021890611c98565b60145460155410610c505760405162461bcd60e51b815260206004820152600c60248201526b1b585e081c995cd95c9d995960a21b6044820152606401610218565b60158054906000610c608361192a565b9190505550610c72816103c7600c5490565b610c80600c80546001019055565b50565b600d8054610c9090611bf6565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbc90611bf6565b8015610d095780601f10610cde57610100808354040283529160200191610d09565b820191906000526020600020905b815481529060010190602001808311610cec57829003601f168201915b505050505081565b60006001600160a01b038216610d7c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610218565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610dc25760405162461bcd60e51b815260040161021890611c98565b610dcc600061137d565b565b6060600180546107ca90611bf6565b6001600160a01b038216331415610e365760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610218565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610eac33836110db565b610ec85760405162461bcd60e51b815260040161021890611c31565b610ed4848484846113cf565b50505050565b6060600d8054610ee990611bf6565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1590611bf6565b8015610f625780601f10610f3757610100808354040283529160200191610f62565b820191906000526020600020905b815481529060010190602001808311610f4557829003601f168201915b50505050509050919050565b6060600d80546107ca90611bf6565b600b546001600160a01b03163314610fa75760405162461bcd60e51b815260040161021890611c98565b6001600160a01b03811661100c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610218565b610c808161137d565b61101f8383611402565b61102c6000848484611550565b6109f35760405162461bcd60e51b815260040161021890611ccd565b60006001600160e01b0319821663780e9d6360e01b14806107b557506107b58261165d565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110a282610b6d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111545760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610218565b600061115f83610b6d565b9050806001600160a01b0316846001600160a01b0316148061119a5750836001600160a01b031661118f8461084d565b6001600160a01b0316145b806111ca57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111e582610b6d565b6001600160a01b03161461124d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610218565b6001600160a01b0382166112af5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610218565b6112ba8383836116ad565b6112c560008261106d565b6001600160a01b03831660009081526003602052604081208054600192906112ee908490611d1f565b90915550506001600160a01b038216600090815260036020526040812080546001929061131c908490611d36565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6113da8484846111d2565b6113e684848484611550565b610ed45760405162461bcd60e51b815260040161021890611ccd565b6001600160a01b0382166114585760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610218565b6000818152600260205260409020546001600160a01b0316156114bd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610218565b6114c9600083836116ad565b6001600160a01b03821660009081526003602052604081208054600192906114f2908490611d36565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561165257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611594903390899088908890600401611d4e565b602060405180830381600087803b1580156115ae57600080fd5b505af19250505080156115de575060408051601f3d908101601f191682019092526115db91810190611d8b565b60015b611638573d80801561160c576040519150601f19603f3d011682016040523d82523d6000602084013e611611565b606091505b5080516116305760405162461bcd60e51b815260040161021890611ccd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111ca565b506001949350505050565b60006001600160e01b031982166380ac58cd60e01b148061168e57506001600160e01b03198216635b5e139f60e01b145b806107b557506301ffc9a760e01b6001600160e01b03198316146107b5565b6109f38383836001600160a01b03831661170e5761170981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611731565b816001600160a01b0316836001600160a01b03161461173157611731838261176b565b6001600160a01b038216611748576109f381611808565b826001600160a01b0316826001600160a01b0316146109f3576109f382826118b7565b6000600161177884610d11565b6117829190611d1f565b6000838152600760205260409020549091508082146117d5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061181a90600190611d1f565b6000838152600960205260408120546008805493945090928490811061184257611842611c82565b90600052602060002001549050806008838154811061186357611863611c82565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061189b5761189b611da8565b6001900381819060005260206000200160009055905550505050565b60006118c283610d11565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006020828403121561190d57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600060001982141561193e5761193e611914565b5060010190565b6001600160e01b031981168114610c8057600080fd5b60006020828403121561196d57600080fd5b813561197881611945565b9392505050565b6000815180845260005b818110156119a557602081850181015186830182015201611989565b818111156119b7576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611978602083018461197f565b6000602082840312156119f157600080fd5b5035919050565b80356001600160a01b0381168114611a0f57600080fd5b919050565b60008060408385031215611a2757600080fd5b611a30836119f8565b946020939093013593505050565b600080600060608486031215611a5357600080fd5b611a5c846119f8565b9250611a6a602085016119f8565b9150604084013590509250925092565b600060208284031215611a8c57600080fd5b611978826119f8565b60008060408385031215611aa857600080fd5b611ab1836119f8565b915060208301358015158114611ac657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611afd57600080fd5b611b06856119f8565b9350611b14602086016119f8565b925060408501359150606085013567ffffffffffffffff80821115611b3857600080fd5b818701915087601f830112611b4c57600080fd5b813581811115611b5e57611b5e611ad1565b604051601f8201601f19908116603f01168101908382118183101715611b8657611b86611ad1565b816040528281528a6020848701011115611b9f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611bd657600080fd5b611bdf836119f8565b9150611bed602084016119f8565b90509250929050565b600181811c90821680611c0a57607f821691505b60208210811415611c2b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082821015611d3157611d31611914565b500390565b60008219821115611d4957611d49611914565b500190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d819083018461197f565b9695505050505050565b600060208284031215611d9d57600080fd5b815161197881611945565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220f2ed4edc75d92333ee4867c8fd7b891e747ab2a77c1bffc68042a574eef7b04b64736f6c63430008090033

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

0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000002a69f406384dceee59480010037d4499136dd1bf0000000000000000000000000000000000000000000000005fc1b97136320000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000001a400000000000000000000000000000000000000000000000000000000000001fe0000000000000000000000000000000000000000000000000000000000000016436f6c6c61622e4c616e6420506174726f6e204e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000004434c504e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d5162347650386a7a676d783866336b334b31714d78556935687837696d755a47675976735a545a7a50774b540000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Collab.Land Patron NFT
Arg [1] : _symbol (string): CLPN
Arg [2] : _uri (string): https://ipfs.io/ipfs/QmQb4vP8jzgmx8f3k3K1qMxUi5hx7imuZGgYvsZTZzPwKT
Arg [3] : _recipient (address): 0x2a69F406384DCEee59480010037d4499136Dd1bf
Arg [4] : _minAmount (uint256): 6900000000000000000
Arg [5] : _maxClaimable (uint256): 1
Arg [6] : _publicLimit (uint256): 420
Arg [7] : _totalMintable (uint256): 510

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 0000000000000000000000002a69f406384dceee59480010037d4499136dd1bf
Arg [4] : 0000000000000000000000000000000000000000000000005fc1b97136320000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001a4
Arg [7] : 00000000000000000000000000000000000000000000000000000000000001fe
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [9] : 436f6c6c61622e4c616e6420506174726f6e204e465400000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [11] : 434c504e00000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [13] : 68747470733a2f2f697066732e696f2f697066732f516d5162347650386a7a67
Arg [14] : 6d783866336b334b31714d78556935687837696d755a47675976735a545a7a50
Arg [15] : 774b540000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46649:3013:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47818:9;47805;;:22;;47797:52;;;;-1:-1:-1;;;47797:52:0;;216:2:1;47797:52:0;;;198:21:1;255:2;235:18;;;228:30;-1:-1:-1;;;274:18:1;;;267:47;331:18;;47797:52:0;;;;;;;;;47897:12;;47868:26;;-1:-1:-1;;;47868:26:0;;47883:10;47868:26;;;506:51:1;47868:4:0;;:14;;479:18:1;;47868:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:41;47860:65;;;;-1:-1:-1;;;47860:65:0;;959:2:1;47860:65:0;;;941:21:1;998:2;978:18;;;971:30;-1:-1:-1;;;1017:18:1;;;1010:41;1068:18;;47860:65:0;757:335:1;47860:65:0;47952:11;;47944:5;;:19;47936:41;;;;-1:-1:-1;;;47936:41:0;;1299:2:1;47936:41:0;;;1281:21:1;1338:1;1318:18;;;1311:29;-1:-1:-1;;;1356:18:1;;;1349:39;1405:18;;47936:41:0;1097:332:1;47936:41:0;48031:9;;:36;;47999:9;;;;-1:-1:-1;;;;;48031:9:0;;;;48053;;47999;48031:36;47999:9;48031:36;48053:9;48031;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47998:69;;;;48086:4;48078:31;;;;-1:-1:-1;;;48078:31:0;;1846:2:1;48078:31:0;;;1828:21:1;1885:2;1865:18;;;1858:30;-1:-1:-1;;;1904:18:1;;;1897:44;1958:18;;48078:31:0;1644:338:1;48078:31:0;48122:5;:7;;;:5;:7;;;:::i;:::-;;;;;;48140:48;48150:10;48162:25;:15;46085:14;;45993:114;48162:25;48140:9;:48::i;:::-;48199:27;:15;46204:19;;46222:1;46204:19;;;46115:127;48199:27;47786:448;;46649:3013;;;;;49447:212;;;;;;;;;;-1:-1:-1;49447:212:0;;;;;:::i;:::-;;:::i;:::-;;;2810:14:1;;2803:22;2785:41;;2773:2;2758:18;49447:212:0;;;;;;;;47026:20;;;;;;;;;;;;;;;;;;;2983:25:1;;;2971:2;2956:18;47026:20:0;2837:177:1;21715:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23274:221::-;;;;;;;;;;-1:-1:-1;23274:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;524:32:1;;;506:51;;494:2;479:18;23274:221:0;360:203:1;22797:411:0;;;;;;;;;;-1:-1:-1;22797:411:0;;;;;:::i;:::-;;:::i;:::-;;47083:27;;;;;;;;;;;;;;;;35458:113;;;;;;;;;;-1:-1:-1;35546:10:0;:17;35458:113;;24164:339;;;;;;;;;;-1:-1:-1;24164:339:0;;;;;:::i;:::-;;:::i;35126:256::-;;;;;;;;;;-1:-1:-1;35126:256:0;;;;;:::i;:::-;;:::i;24574:185::-;;;;;;;;;;-1:-1:-1;24574:185:0;;;;;:::i;:::-;;:::i;35648:233::-;;;;;;;;;;-1:-1:-1;35648:233:0;;;;;:::i;:::-;;:::i;21409:239::-;;;;;;;;;;-1:-1:-1;21409:239:0;;;;;:::i;:::-;;:::i;46856:24::-;;;;;;;;;;-1:-1:-1;46856:24:0;;;;-1:-1:-1;;;;;46856:24:0;;;48612:262;;;;;;;;;;-1:-1:-1;48612:262:0;;;;;:::i;:::-;;:::i;46824:21::-;;;;;;;;;;;;;:::i;21139:208::-;;;;;;;;;;-1:-1:-1;21139:208:0;;;;;:::i;:::-;;:::i;44543:94::-;;;;;;;;;;;;;:::i;43892:87::-;;;;;;;;;;-1:-1:-1;43965:6:0;;-1:-1:-1;;;;;43965:6:0;43892:87;;21884:104;;;;;;;;;;;;;:::i;46887:24::-;;;;;;;;;;;;;;;;23567:295;;;;;;;;;;-1:-1:-1;23567:295:0;;;;;:::i;:::-;;:::i;46952:26::-;;;;;;;;;;;;;;;;46985:28;;;;;;;;;;;;;;;;24830:328;;;;;;;;;;-1:-1:-1;24830:328:0;;;;;:::i;:::-;;:::i;48378:226::-;;;;;;;;;;-1:-1:-1;48378:226:0;;;;;:::i;:::-;;:::i;48242:128::-;;;;;;;;;;;;;:::i;23933:164::-;;;;;;;;;;-1:-1:-1;23933:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24054:25:0;;;24030:4;24054:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23933:164;46918:27;;;;;;;;;;;;;;;;44792:192;;;;;;;;;;-1:-1:-1;44792:192:0;;;;;:::i;:::-;;:::i;47053:23::-;;;;;;;;;;;;;;;;27652:110;27728:26;27738:2;27742:7;27728:26;;;;;;;;;;;;:9;:26::i;:::-;27652:110;;:::o;49447:212::-;49586:4;49615:36;49639:11;49615:23;:36::i;:::-;49608:43;49447:212;-1:-1:-1;;49447:212:0:o;21715:100::-;21769:13;21802:5;21795:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21715:100;:::o;23274:221::-;23350:7;26757:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26757:16:0;23370:73;;;;-1:-1:-1;;;23370:73:0;;7346:2:1;23370:73:0;;;7328:21:1;7385:2;7365:18;;;7358:30;7424:34;7404:18;;;7397:62;-1:-1:-1;;;7475:18:1;;;7468:42;7527:19;;23370:73:0;7144:408:1;23370:73:0;-1:-1:-1;23463:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23463:24:0;;23274:221::o;22797:411::-;22878:13;22894:23;22909:7;22894:14;:23::i;:::-;22878:39;;22942:5;-1:-1:-1;;;;;22936:11:0;:2;-1:-1:-1;;;;;22936:11:0;;;22928:57;;;;-1:-1:-1;;;22928:57:0;;7759:2:1;22928:57:0;;;7741:21:1;7798:2;7778:18;;;7771:30;7837:34;7817:18;;;7810:62;-1:-1:-1;;;7888:18:1;;;7881:31;7929:19;;22928:57:0;7557:397:1;22928:57:0;16264:10;-1:-1:-1;;;;;23020:21:0;;;;:62;;-1:-1:-1;23045:37:0;23062:5;16264:10;23933:164;:::i;23045:37::-;22998:168;;;;-1:-1:-1;;;22998:168:0;;8161:2:1;22998:168:0;;;8143:21:1;8200:2;8180:18;;;8173:30;8239:34;8219:18;;;8212:62;8310:26;8290:18;;;8283:54;8354:19;;22998:168:0;7959:420:1;22998:168:0;23179:21;23188:2;23192:7;23179:8;:21::i;:::-;22867:341;22797:411;;:::o;24164:339::-;24359:41;16264:10;24392:7;24359:18;:41::i;:::-;24351:103;;;;-1:-1:-1;;;24351:103:0;;;;;;;:::i;:::-;24467:28;24477:4;24483:2;24487:7;24467:9;:28::i;35126:256::-;35223:7;35259:23;35276:5;35259:16;:23::i;:::-;35251:5;:31;35243:87;;;;-1:-1:-1;;;35243:87:0;;9004:2:1;35243:87:0;;;8986:21:1;9043:2;9023:18;;;9016:30;9082:34;9062:18;;;9055:62;-1:-1:-1;;;9133:18:1;;;9126:41;9184:19;;35243:87:0;8802:407:1;35243:87:0;-1:-1:-1;;;;;;35348:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35126:256::o;24574:185::-;24712:39;24729:4;24735:2;24739:7;24712:39;;;;;;;;;;;;:16;:39::i;35648:233::-;35723:7;35759:30;35546:10;:17;;35458:113;35759:30;35751:5;:38;35743:95;;;;-1:-1:-1;;;35743:95:0;;9416:2:1;35743:95:0;;;9398:21:1;9455:2;9435:18;;;9428:30;9494:34;9474:18;;;9467:62;-1:-1:-1;;;9545:18:1;;;9538:42;9597:19;;35743:95:0;9214:408:1;35743:95:0;35856:10;35867:5;35856:17;;;;;;;;:::i;:::-;;;;;;;;;35849:24;;35648:233;;;:::o;21409:239::-;21481:7;21517:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21517:16:0;21552:19;21544:73;;;;-1:-1:-1;;;21544:73:0;;9961:2:1;21544:73:0;;;9943:21:1;10000:2;9980:18;;;9973:30;10039:34;10019:18;;;10012:62;-1:-1:-1;;;10090:18:1;;;10083:39;10139:19;;21544:73:0;9759:405:1;48612:262:0;43965:6;;-1:-1:-1;;;;;43965:6:0;16264:10;44112:23;44104:68;;;;-1:-1:-1;;;44104:68:0;;;;;;;:::i;:::-;48716:8:::1;;48701:12;;:23;48693:48;;;::::0;-1:-1:-1;;;48693:48:0;;10732:2:1;48693:48:0::1;::::0;::::1;10714:21:1::0;10771:2;10751:18;;;10744:30;-1:-1:-1;;;10790:18:1;;;10783:42;10842:18;;48693:48:0::1;10530:336:1::0;48693:48:0::1;48762:12;:14:::0;;;:12:::1;:14;::::0;::::1;:::i;:::-;;;;;;48787:41;48797:3;48802:25;:15;46085:14:::0;;45993:114;48787:41:::1;48839:27;:15;46204:19:::0;;46222:1;46204:19;;;46115:127;48839:27:::1;48612:262:::0;:::o;46824:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21139:208::-;21211:7;-1:-1:-1;;;;;21239:19:0;;21231:74;;;;-1:-1:-1;;;21231:74:0;;11073:2:1;21231:74:0;;;11055:21:1;11112:2;11092:18;;;11085:30;11151:34;11131:18;;;11124:62;-1:-1:-1;;;11202:18:1;;;11195:40;11252:19;;21231:74:0;10871:406:1;21231:74:0;-1:-1:-1;;;;;;21323:16:0;;;;;:9;:16;;;;;;;21139:208::o;44543:94::-;43965:6;;-1:-1:-1;;;;;43965:6:0;16264:10;44112:23;44104:68;;;;-1:-1:-1;;;44104:68:0;;;;;;;:::i;:::-;44608:21:::1;44626:1;44608:9;:21::i;:::-;44543:94::o:0;21884:104::-;21940:13;21973:7;21966:14;;;;;:::i;23567:295::-;-1:-1:-1;;;;;23670:24:0;;16264:10;23670:24;;23662:62;;;;-1:-1:-1;;;23662:62:0;;11484:2:1;23662:62:0;;;11466:21:1;11523:2;11503:18;;;11496:30;11562:27;11542:18;;;11535:55;11607:18;;23662:62:0;11282:349:1;23662:62:0;16264:10;23737:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23737:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23737:53:0;;;;;;;;;;23806:48;;2785:41:1;;;23737:42:0;;16264:10;23806:48;;2758:18:1;23806:48:0;;;;;;;23567:295;;:::o;24830:328::-;25005:41;16264:10;25038:7;25005:18;:41::i;:::-;24997:103;;;;-1:-1:-1;;;24997:103:0;;;;;;;:::i;:::-;25111:39;25125:4;25131:2;25135:7;25144:5;25111:13;:39::i;:::-;24830:328;;;;:::o;48378:226::-;48507:13;48589:7;48582:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48378:226;;;:::o;48242:128::-;48316:13;48355:7;48348:14;;;;;:::i;44792:192::-;43965:6;;-1:-1:-1;;;;;43965:6:0;16264:10;44112:23;44104:68;;;;-1:-1:-1;;;44104:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44881:22:0;::::1;44873:73;;;::::0;-1:-1:-1;;;44873:73:0;;11838:2:1;44873:73:0::1;::::0;::::1;11820:21:1::0;11877:2;11857:18;;;11850:30;11916:34;11896:18;;;11889:62;-1:-1:-1;;;11967:18:1;;;11960:36;12013:19;;44873:73:0::1;11636:402:1::0;44873:73:0::1;44957:19;44967:8;44957:9;:19::i;27989:321::-:0;28119:18;28125:2;28129:7;28119:5;:18::i;:::-;28170:54;28201:1;28205:2;28209:7;28218:5;28170:22;:54::i;:::-;28148:154;;;;-1:-1:-1;;;28148:154:0;;;;;;;:::i;34818:224::-;34920:4;-1:-1:-1;;;;;;34944:50:0;;-1:-1:-1;;;34944:50:0;;:90;;;34998:36;35022:11;34998:23;:36::i;30650:174::-;30725:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30725:29:0;-1:-1:-1;;;;;30725:29:0;;;;;;;;:24;;30779:23;30725:24;30779:14;:23::i;:::-;-1:-1:-1;;;;;30770:46:0;;;;;;;;;;;30650:174;;:::o;26962:348::-;27055:4;26757:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26757:16:0;27072:73;;;;-1:-1:-1;;;27072:73:0;;12664:2:1;27072:73:0;;;12646:21:1;12703:2;12683:18;;;12676:30;12742:34;12722:18;;;12715:62;-1:-1:-1;;;12793:18:1;;;12786:42;12845:19;;27072:73:0;12462:408:1;27072:73:0;27156:13;27172:23;27187:7;27172:14;:23::i;:::-;27156:39;;27225:5;-1:-1:-1;;;;;27214:16:0;:7;-1:-1:-1;;;;;27214:16:0;;:51;;;;27258:7;-1:-1:-1;;;;;27234:31:0;:20;27246:7;27234:11;:20::i;:::-;-1:-1:-1;;;;;27234:31:0;;27214:51;:87;;;-1:-1:-1;;;;;;24054:25:0;;;24030:4;24054:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27269:32;27206:96;26962:348;-1:-1:-1;;;;26962:348:0:o;29954:578::-;30113:4;-1:-1:-1;;;;;30086:31:0;:23;30101:7;30086:14;:23::i;:::-;-1:-1:-1;;;;;30086:31:0;;30078:85;;;;-1:-1:-1;;;30078:85:0;;13077:2:1;30078:85:0;;;13059:21:1;13116:2;13096:18;;;13089:30;13155:34;13135:18;;;13128:62;-1:-1:-1;;;13206:18:1;;;13199:39;13255:19;;30078:85:0;12875:405:1;30078:85:0;-1:-1:-1;;;;;30182:16:0;;30174:65;;;;-1:-1:-1;;;30174:65:0;;13487:2:1;30174:65:0;;;13469:21:1;13526:2;13506:18;;;13499:30;13565:34;13545:18;;;13538:62;-1:-1:-1;;;13616:18:1;;;13609:34;13660:19;;30174:65:0;13285:400:1;30174:65:0;30252:39;30273:4;30279:2;30283:7;30252:20;:39::i;:::-;30356:29;30373:1;30377:7;30356:8;:29::i;:::-;-1:-1:-1;;;;;30398:15:0;;;;;;:9;:15;;;;;:20;;30417:1;;30398:15;:20;;30417:1;;30398:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30429:13:0;;;;;;:9;:13;;;;;:18;;30446:1;;30429:13;:18;;30446:1;;30429:18;:::i;:::-;;;;-1:-1:-1;;30458:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30458:21:0;-1:-1:-1;;;;;30458:21:0;;;;;;;;;30497:27;;30458:16;;30497:27;;;;;;;29954:578;;;:::o;44992:173::-;45067:6;;;-1:-1:-1;;;;;45084:17:0;;;-1:-1:-1;;;;;;45084:17:0;;;;;;;45117:40;;45067:6;;;45084:17;45067:6;;45117:40;;45048:16;;45117:40;45037:128;44992:173;:::o;26040:315::-;26197:28;26207:4;26213:2;26217:7;26197:9;:28::i;:::-;26244:48;26267:4;26273:2;26277:7;26286:5;26244:22;:48::i;:::-;26236:111;;;;-1:-1:-1;;;26236:111:0;;;;;;;:::i;28646:382::-;-1:-1:-1;;;;;28726:16:0;;28718:61;;;;-1:-1:-1;;;28718:61:0;;14155:2:1;28718:61:0;;;14137:21:1;;;14174:18;;;14167:30;14233:34;14213:18;;;14206:62;14285:18;;28718:61:0;13953:356:1;28718:61:0;26733:4;26757:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26757:16:0;:30;28790:58;;;;-1:-1:-1;;;28790:58:0;;14516:2:1;28790:58:0;;;14498:21:1;14555:2;14535:18;;;14528:30;14594;14574:18;;;14567:58;14642:18;;28790:58:0;14314:352:1;28790:58:0;28861:45;28890:1;28894:2;28898:7;28861:20;:45::i;:::-;-1:-1:-1;;;;;28919:13:0;;;;;;:9;:13;;;;;:18;;28936:1;;28919:13;:18;;28936:1;;28919:18;:::i;:::-;;;;-1:-1:-1;;28948:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28948:21:0;-1:-1:-1;;;;;28948:21:0;;;;;;;;28987:33;;28948:16;;;28987:33;;28948:16;;28987:33;28646:382;;:::o;31389:799::-;31544:4;-1:-1:-1;;;;;31565:13:0;;8547:20;8595:8;31561:620;;31601:72;;-1:-1:-1;;;31601:72:0;;-1:-1:-1;;;;;31601:36:0;;;;;:72;;16264:10;;31652:4;;31658:7;;31667:5;;31601:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31601:72:0;;;;;;;;-1:-1:-1;;31601:72:0;;;;;;;;;;;;:::i;:::-;;;31597:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31843:13:0;;31839:272;;31886:60;;-1:-1:-1;;;31886:60:0;;;;;;;:::i;31839:272::-;32061:6;32055:13;32046:6;32042:2;32038:15;32031:38;31597:529;-1:-1:-1;;;;;;31724:51:0;-1:-1:-1;;;31724:51:0;;-1:-1:-1;31717:58:0;;31561:620;-1:-1:-1;32165:4:0;31389:799;;;;;;:::o;20770:305::-;20872:4;-1:-1:-1;;;;;;20909:40:0;;-1:-1:-1;;;20909:40:0;;:105;;-1:-1:-1;;;;;;;20966:48:0;;-1:-1:-1;;;20966:48:0;20909:105;:158;;;-1:-1:-1;;;;;;;;;;19381:40:0;;;21031:36;19272:157;49106:204;49257:45;49284:4;49290:2;49294:7;-1:-1:-1;;;;;36700:18:0;;36696:187;;36735:40;36767:7;37910:10;:17;;37883:24;;;;:15;:24;;;;;:44;;;37938:24;;;;;;;;;;;;37806:164;36735:40;36696:187;;;36805:2;-1:-1:-1;;;;;36797:10:0;:4;-1:-1:-1;;;;;36797:10:0;;36793:90;;36824:47;36857:4;36863:7;36824:32;:47::i;:::-;-1:-1:-1;;;;;36897:16:0;;36893:183;;36930:45;36967:7;36930:36;:45::i;36893:183::-;37003:4;-1:-1:-1;;;;;36997:10:0;:2;-1:-1:-1;;;;;36997:10:0;;36993:83;;37024:40;37052:2;37056:7;37024:27;:40::i;38597:988::-;38863:22;38913:1;38888:22;38905:4;38888:16;:22::i;:::-;:26;;;;:::i;:::-;38925:18;38946:26;;;:17;:26;;;;;;38863:51;;-1:-1:-1;39079:28:0;;;39075:328;;-1:-1:-1;;;;;39146:18:0;;39124:19;39146:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39197:30;;;;;;:44;;;39314:30;;:17;:30;;;;;:43;;;39075:328;-1:-1:-1;39499:26:0;;;;:17;:26;;;;;;;;39492:33;;;-1:-1:-1;;;;;39543:18:0;;;;;:12;:18;;;;;:34;;;;;;;39536:41;38597:988::o;39880:1079::-;40158:10;:17;40133:22;;40158:21;;40178:1;;40158:21;:::i;:::-;40190:18;40211:24;;;:15;:24;;;;;;40584:10;:26;;40133:46;;-1:-1:-1;40211:24:0;;40133:46;;40584:26;;;;;;:::i;:::-;;;;;;;;;40562:48;;40648:11;40623:10;40634;40623:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40728:28;;;:15;:28;;;;;;;:41;;;40900:24;;;;;40893:31;40935:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39951:1008;;;39880:1079;:::o;37384:221::-;37469:14;37486:20;37503:2;37486:16;:20::i;:::-;-1:-1:-1;;;;;37517:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37562:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37384:221:0:o;568:184:1:-;638:6;691:2;679:9;670:7;666:23;662:32;659:52;;;707:1;704;697:12;659:52;-1:-1:-1;730:16:1;;568:184;-1:-1:-1;568:184:1:o;1987:127::-;2048:10;2043:3;2039:20;2036:1;2029:31;2079:4;2076:1;2069:15;2103:4;2100:1;2093:15;2119:135;2158:3;-1:-1:-1;;2179:17:1;;2176:43;;;2199:18;;:::i;:::-;-1:-1:-1;2246:1:1;2235:13;;2119:135::o;2259:131::-;-1:-1:-1;;;;;;2333:32:1;;2323:43;;2313:71;;2380:1;2377;2370:12;2395:245;2453:6;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2561:9;2548:23;2580:30;2604:5;2580:30;:::i;:::-;2629:5;2395:245;-1:-1:-1;;;2395:245:1:o;3019:472::-;3061:3;3099:5;3093:12;3126:6;3121:3;3114:19;3151:1;3161:162;3175:6;3172:1;3169:13;3161:162;;;3237:4;3293:13;;;3289:22;;3283:29;3265:11;;;3261:20;;3254:59;3190:12;3161:162;;;3341:6;3338:1;3335:13;3332:87;;;3407:1;3400:4;3391:6;3386:3;3382:16;3378:27;3371:38;3332:87;-1:-1:-1;3473:2:1;3452:15;-1:-1:-1;;3448:29:1;3439:39;;;;3480:4;3435:50;;3019:472;-1:-1:-1;;3019:472:1:o;3496:220::-;3645:2;3634:9;3627:21;3608:4;3665:45;3706:2;3695:9;3691:18;3683:6;3665:45;:::i;3721:180::-;3780:6;3833:2;3821:9;3812:7;3808:23;3804:32;3801:52;;;3849:1;3846;3839:12;3801:52;-1:-1:-1;3872:23:1;;3721:180;-1:-1:-1;3721:180:1:o;3906:173::-;3974:20;;-1:-1:-1;;;;;4023:31:1;;4013:42;;4003:70;;4069:1;4066;4059:12;4003:70;3906:173;;;:::o;4084:254::-;4152:6;4160;4213:2;4201:9;4192:7;4188:23;4184:32;4181:52;;;4229:1;4226;4219:12;4181:52;4252:29;4271:9;4252:29;:::i;:::-;4242:39;4328:2;4313:18;;;;4300:32;;-1:-1:-1;;;4084:254:1:o;4343:328::-;4420:6;4428;4436;4489:2;4477:9;4468:7;4464:23;4460:32;4457:52;;;4505:1;4502;4495:12;4457:52;4528:29;4547:9;4528:29;:::i;:::-;4518:39;;4576:38;4610:2;4599:9;4595:18;4576:38;:::i;:::-;4566:48;;4661:2;4650:9;4646:18;4633:32;4623:42;;4343:328;;;;;:::o;4676:186::-;4735:6;4788:2;4776:9;4767:7;4763:23;4759:32;4756:52;;;4804:1;4801;4794:12;4756:52;4827:29;4846:9;4827:29;:::i;4867:347::-;4932:6;4940;4993:2;4981:9;4972:7;4968:23;4964:32;4961:52;;;5009:1;5006;4999:12;4961:52;5032:29;5051:9;5032:29;:::i;:::-;5022:39;;5111:2;5100:9;5096:18;5083:32;5158:5;5151:13;5144:21;5137:5;5134:32;5124:60;;5180:1;5177;5170:12;5124:60;5203:5;5193:15;;;4867:347;;;;;:::o;5219:127::-;5280:10;5275:3;5271:20;5268:1;5261:31;5311:4;5308:1;5301:15;5335:4;5332:1;5325:15;5351:1138;5446:6;5454;5462;5470;5523:3;5511:9;5502:7;5498:23;5494:33;5491:53;;;5540:1;5537;5530:12;5491:53;5563:29;5582:9;5563:29;:::i;:::-;5553:39;;5611:38;5645:2;5634:9;5630:18;5611:38;:::i;:::-;5601:48;;5696:2;5685:9;5681:18;5668:32;5658:42;;5751:2;5740:9;5736:18;5723:32;5774:18;5815:2;5807:6;5804:14;5801:34;;;5831:1;5828;5821:12;5801:34;5869:6;5858:9;5854:22;5844:32;;5914:7;5907:4;5903:2;5899:13;5895:27;5885:55;;5936:1;5933;5926:12;5885:55;5972:2;5959:16;5994:2;5990;5987:10;5984:36;;;6000:18;;:::i;:::-;6075:2;6069:9;6043:2;6129:13;;-1:-1:-1;;6125:22:1;;;6149:2;6121:31;6117:40;6105:53;;;6173:18;;;6193:22;;;6170:46;6167:72;;;6219:18;;:::i;:::-;6259:10;6255:2;6248:22;6294:2;6286:6;6279:18;6334:7;6329:2;6324;6320;6316:11;6312:20;6309:33;6306:53;;;6355:1;6352;6345:12;6306:53;6411:2;6406;6402;6398:11;6393:2;6385:6;6381:15;6368:46;6456:1;6451:2;6446;6438:6;6434:15;6430:24;6423:35;6477:6;6467:16;;;;;;;5351:1138;;;;;;;:::o;6494:260::-;6562:6;6570;6623:2;6611:9;6602:7;6598:23;6594:32;6591:52;;;6639:1;6636;6629:12;6591:52;6662:29;6681:9;6662:29;:::i;:::-;6652:39;;6710:38;6744:2;6733:9;6729:18;6710:38;:::i;:::-;6700:48;;6494:260;;;;;:::o;6759:380::-;6838:1;6834:12;;;;6881;;;6902:61;;6956:4;6948:6;6944:17;6934:27;;6902:61;7009:2;7001:6;6998:14;6978:18;6975:38;6972:161;;;7055:10;7050:3;7046:20;7043:1;7036:31;7090:4;7087:1;7080:15;7118:4;7115:1;7108:15;6972:161;;6759:380;;;:::o;8384:413::-;8586:2;8568:21;;;8625:2;8605:18;;;8598:30;8664:34;8659:2;8644:18;;8637:62;-1:-1:-1;;;8730:2:1;8715:18;;8708:47;8787:3;8772:19;;8384:413::o;9627:127::-;9688:10;9683:3;9679:20;9676:1;9669:31;9719:4;9716:1;9709:15;9743:4;9740:1;9733:15;10169:356;10371:2;10353:21;;;10390:18;;;10383:30;10449:34;10444:2;10429:18;;10422:62;10516:2;10501:18;;10169:356::o;12043:414::-;12245:2;12227:21;;;12284:2;12264:18;;;12257:30;12323:34;12318:2;12303:18;;12296:62;-1:-1:-1;;;12389:2:1;12374:18;;12367:48;12447:3;12432:19;;12043:414::o;13690:125::-;13730:4;13758:1;13755;13752:8;13749:34;;;13763:18;;:::i;:::-;-1:-1:-1;13800:9:1;;13690:125::o;13820:128::-;13860:3;13891:1;13887:6;13884:1;13881:13;13878:39;;;13897:18;;:::i;:::-;-1:-1:-1;13933:9:1;;13820:128::o;14671:489::-;-1:-1:-1;;;;;14940:15:1;;;14922:34;;14992:15;;14987:2;14972:18;;14965:43;15039:2;15024:18;;15017:34;;;15087:3;15082:2;15067:18;;15060:31;;;14865:4;;15108:46;;15134:19;;15126:6;15108:46;:::i;:::-;15100:54;14671:489;-1:-1:-1;;;;;;14671:489:1:o;15165:249::-;15234:6;15287:2;15275:9;15266:7;15262:23;15258:32;15255:52;;;15303:1;15300;15293:12;15255:52;15335:9;15329:16;15354:30;15378:5;15354:30;:::i;15419:127::-;15480:10;15475:3;15471:20;15468:1;15461:31;15511:4;15508:1;15501:15;15535:4;15532:1;15525:15

Swarm Source

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