ETH Price: $3,453.66 (-1.93%)
Gas: 4 Gwei

Token

PUMA Materializer (MTRLZR)
 

Overview

Max Total Supply

4,000 MTRLZR

Holders

405

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 MTRLZR
0x9c567d3acc3af9a14f1da9caa6c3c94e294ba833
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:
PumaPhysical

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2


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

pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File @openzeppelin/contracts/utils/introspection/[email protected]
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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


// File contracts/ERC721A.sol
// Creator: Chiru Labs

pragma solidity ^0.8.4;


error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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


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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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


// File contracts/mocks/StartTokenIdHelper.sol
// Creators: Chiru Labs

pragma solidity ^0.8.4;

/**
 * This Helper is used to return a dynmamic value in the overriden _startTokenId() function.
 * Extending this Helper before the ERC721A contract give us access to the herein set `startTokenId`
 * to be returned by the overriden `_startTokenId()` function of ERC721A in the ERC721AStartTokenId mocks.
 */
contract StartTokenIdHelper {
    uint256 public immutable startTokenId;

    constructor(uint256 startTokenId_) {
        startTokenId = startTokenId_;
    }
}


// File @openzeppelin/contracts/access/[email protected]
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

/**
PUMA Materializer Smart Contract Development by @WumboLabs
**/


pragma solidity >=0.8.0 <0.9.0;

interface PumaNitroPass {
    function balanceOf(address account)
        external
        view
        returns (uint256);

    function burnNitroPassAndMintForeverPhysical(uint256, address) external;

    function ownerOf(uint256 tokenId) external view returns (address);
}

contract PumaPhysical is ERC721A, Ownable {
    event NewPumaPhysicalMinted(address sender, uint256 tokenId);
    event Materialized(address sender, uint256 tokenId);

    using Strings for uint256;
    
    /// Contract interactions
    address public NitroPassContract = 0xf51bBb5726513b7005d25F2973309661E5206556;

    /// Supply
    uint256 public constant MAX_SUPPLY = 4000;

    /// Status
    enum Status {
        NOT_LIVE,
        PASS_MINT,
        MATERIALIZE,
        ENDED
    }

    /// Minting Variables
    string public baseURI = "https://puma-blackbox-prod.herokuapp.com/api/physical/pass/";
    Status public state;
    uint256 public mintCount;

    constructor() ERC721A("PUMA Materializer", "MTRLZR") {
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    function setNitroPassContract(address _PassContract) external onlyOwner {
        NitroPassContract = _PassContract;
    }

    function burnAllMaterializer() public onlyOwner {
        require(state == Status.ENDED, "PUMA Materializer: Still Live");
        for (uint256 _tokenId=0; _tokenId<MAX_SUPPLY; _tokenId++) {
            if(_exists(_tokenId)) {
                _burn(_tokenId);
            }
        }
    }

    function materialize(uint256 _tokenid) external {
        require(state == Status.MATERIALIZE, "PUMA Materializer: Mint Is Not Live");
        address owner = ownerOf(_tokenid);
        require(msg.sender == owner, "PUMA Materializer: Message sender is not owner of tokenid");
        emit Materialized(msg.sender, _tokenid);
        _burn(_tokenid);
    }

    function mint(address _address, uint256 _quantity) external {
        require(msg.sender == NitroPassContract, "PUMA Materializer: Can only mint by burning from Nitropass contract");
        require(state == Status.PASS_MINT, "PUMA Materializer: Mint Is Not Live");

        for (uint256 i = 1; i <= _quantity; i++) {
            emit NewPumaPhysicalMinted(msg.sender, totalSupply() + i);
        }
        _safeMint(_address, _quantity);
    }

    function airdrop(address _address, uint256 _quantity) external onlyOwner {
        require(state == Status.NOT_LIVE, "PUMA Materializer: Must Not Be Live");

        for (uint256 i = 1; i <= _quantity; i++) {
            emit NewPumaPhysicalMinted(msg.sender, totalSupply() + i);
        }
        _safeMint(_address, _quantity);
    }

    function setState(Status _state) external onlyOwner {
        state = _state;
    }
    
    function setURI(string calldata _newURI) external onlyOwner {
        baseURI = _newURI;
    }

    function withdrawMoney() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Withdraw failed.");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Materialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NewPumaPhysicalMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NitroPassContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnAllMaterializer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenid","type":"uint256"}],"name":"materialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"address","name":"_PassContract","type":"address"}],"name":"setNitroPassContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum PumaPhysical.Status","name":"_state","type":"uint8"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"state","outputs":[{"internalType":"enum PumaPhysical.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600980546001600160a01b03191673f51bbb5726513b7005d25f2973309661e520655617905560e0604052603b6080818152906200208b60a03980516200004f91600a9160209091019062000136565b503480156200005d57600080fd5b506040805180820182526011815270282aa6a09026b0ba32b934b0b634bd32b960791b60208083019182528351808501909452600684526526aa29262d2960d11b908401528151919291620000b59160029162000136565b508051620000cb90600390602084019062000136565b5050600160005550620000de33620000e4565b62000219565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014490620001dc565b90600052602060002090601f016020900481019282620001685760008555620001b3565b82601f106200018357805160ff1916838001178555620001b3565b82800160010185558215620001b3579182015b82811115620001b357825182559160200191906001019062000196565b50620001c1929150620001c5565b5090565b5b80821115620001c15760008155600101620001c6565b600181811c90821680620001f157607f821691505b602082108114156200021357634e487b7160e01b600052602260045260246000fd5b50919050565b611e6280620002296000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80636c0360eb11610104578063a22cb465116100a2578063c87b56dd11610071578063c87b56dd146103bf578063dce423b9146103d2578063e985e9c5146103e5578063f2fde38b1461042157600080fd5b8063a22cb46514610377578063ac4460021461038a578063b88d4fde14610392578063c19d93fb146103a557600080fd5b80638ba4cc3c116100de5780638ba4cc3c146103425780638da5cb5b1461035557806395d89b41146103665780639659867e1461036e57600080fd5b80636c0360eb1461031f57806370a0823114610327578063715018a61461033a57600080fd5b806332cb6b0c1161017c57806356de96db1161014b57806356de96db146102de57806357614ae5146102f157806359e2a7f2146103045780636352211e1461030c57600080fd5b806332cb6b0c1461029c57806340c10f19146102a557806342842e0e146102b8578063529f5e2b146102cb57600080fd5b8063081812fc116101b8578063081812fc14610231578063095ea7b31461025c57806318160ddd1461026f57806323b872dd1461028957600080fd5b806301ffc9a7146101df57806302fe53051461020757806306fdde031461021c575b600080fd5b6101f26101ed366004611a1f565b610434565b60405190151581526020015b60405180910390f35b61021a610215366004611a7a565b610486565b005b61022461049f565b6040516101fe9190611c59565b61024461023f366004611aec565b610531565b6040516001600160a01b0390911681526020016101fe565b61021a61026a3660046119f5565b610575565b60015460005403600019015b6040519081526020016101fe565b61021a6102973660046118a1565b6105fe565b61027b610fa081565b61021a6102b33660046119f5565b610609565b61021a6102c63660046118a1565b61075d565b61021a6102d936600461184c565b610778565b61021a6102ec366004611a59565b6107a2565b600954610244906001600160a01b031681565b61021a6107d1565b61024461031a366004611aec565b610878565b61022461088a565b61027b61033536600461184c565b610918565b61021a610967565b61021a6103503660046119f5565b61097b565b6008546001600160a01b0316610244565b610224610a73565b61027b600c5481565b61021a6103853660046119b9565b610a82565b61021a610b18565b61021a6103a03660046118dd565b610bab565b600b546103b29060ff1681565b6040516101fe9190611c31565b6102246103cd366004611aec565b610bfc565b61021a6103e0366004611aec565b610c7f565b6101f26103f336600461186e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61021a61042f36600461184c565b610d82565b60006001600160e01b031982166380ac58cd60e01b148061046557506001600160e01b03198216635b5e139f60e01b145b8061048057506301ffc9a760e01b6001600160e01b03198316145b92915050565b61048e610df8565b61049a600a8383611797565b505050565b6060600280546104ae90611d1e565b80601f01602080910402602001604051908101604052809291908181526020018280546104da90611d1e565b80156105275780601f106104fc57610100808354040283529160200191610527565b820191906000526020600020905b81548152906001019060200180831161050a57829003601f168201915b5050505050905090565b600061053c82610e52565b610559576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061058082610878565b9050806001600160a01b0316836001600160a01b031614156105b55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105d557506105d381336103f3565b155b156105f3576040516367d9dca160e11b815260040160405180910390fd5b61049a838383610e8b565b61049a838383610ee7565b6009546001600160a01b0316331461069a5760405162461bcd60e51b815260206004820152604360248201527f50554d41204d6174657269616c697a65723a2043616e206f6e6c79206d696e7460448201527f206279206275726e696e672066726f6d204e6974726f7061737320636f6e74726064820152621858dd60ea1b608482015260a4015b60405180910390fd5b6001600b5460ff1660038111156106b3576106b3611db4565b146106d05760405162461bcd60e51b815260040161069190611c6c565b60015b81811161074e577f6192450a725864eadb7ce82d79b73920b67bc4f08f4e021a06516f19da51d3ed33826107106001546000546000199190030190565b61071a9190611caf565b604080516001600160a01b03909316835260208301919091520160405180910390a18061074681611d59565b9150506106d3565b5061075982826110eb565b5050565b61049a83838360405180602001604052806000815250610bab565b610780610df8565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6107aa610df8565b600b805482919060ff191660018360038111156107c9576107c9611db4565b021790555050565b6107d9610df8565b6003600b5460ff1660038111156107f2576107f2611db4565b1461083f5760405162461bcd60e51b815260206004820152601d60248201527f50554d41204d6174657269616c697a65723a205374696c6c204c6976650000006044820152606401610691565b60005b610fa08110156108755761085581610e52565b156108635761086381611105565b8061086d81611d59565b915050610842565b50565b600061088382611271565b5192915050565b600a805461089790611d1e565b80601f01602080910402602001604051908101604052809291908181526020018280546108c390611d1e565b80156109105780601f106108e557610100808354040283529160200191610910565b820191906000526020600020905b8154815290600101906020018083116108f357829003601f168201915b505050505081565b60006001600160a01b038216610941576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61096f610df8565b610979600061139a565b565b610983610df8565b6000600b5460ff16600381111561099c5761099c611db4565b146109f55760405162461bcd60e51b815260206004820152602360248201527f50554d41204d6174657269616c697a65723a204d757374204e6f74204265204c60448201526269766560e81b6064820152608401610691565b60015b81811161074e577f6192450a725864eadb7ce82d79b73920b67bc4f08f4e021a06516f19da51d3ed3382610a356001546000546000199190030190565b610a3f9190611caf565b604080516001600160a01b03909316835260208301919091520160405180910390a180610a6b81611d59565b9150506109f8565b6060600380546104ae90611d1e565b6001600160a01b038216331415610aac5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b20610df8565b604051600090339047908381818185875af1925050503d8060008114610b62576040519150601f19603f3d011682016040523d82523d6000602084013e610b67565b606091505b50509050806108755760405162461bcd60e51b815260206004820152601060248201526f2bb4ba34323930bb903330b4b632b21760811b6044820152606401610691565b610bb6848484610ee7565b6001600160a01b0383163b15158015610bd85750610bd6848484846113ec565b155b15610bf6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c0782610e52565b610c2457604051630a14c4b560e41b815260040160405180910390fd5b600a8054610c3190611d1e565b15159050610c4e5760405180602001604052806000815250610480565b600a610c59836114e4565b604051602001610c6a929190611b4d565b60405160208183030381529060405292915050565b6002600b5460ff166003811115610c9857610c98611db4565b14610cb55760405162461bcd60e51b815260040161069190611c6c565b6000610cc082610878565b9050336001600160a01b03821614610d405760405162461bcd60e51b815260206004820152603960248201527f50554d41204d6174657269616c697a65723a204d6573736167652073656e646560448201527f72206973206e6f74206f776e6572206f6620746f6b656e6964000000000000006064820152608401610691565b60408051338152602081018490527fbd7b2e019d2854dae53bb08756c96d9a046172989e4590e654947a60f024b1a1910160405180910390a161075982611105565b610d8a610df8565b6001600160a01b038116610def5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610691565b6108758161139a565b6008546001600160a01b031633146109795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610691565b600081600111158015610e66575060005482105b8015610480575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ef282611271565b80519091506000906001600160a01b0316336001600160a01b03161480610f2057508151610f2090336103f3565b80610f3b575033610f3084610531565b6001600160a01b0316145b905080610f5b57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610f905760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610fb757604051633a954ecd60e21b815260040160405180910390fd5b610fc76000848460000151610e8b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166110b3576000548110156110b3578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b0316600080516020611e0d83398151915260405160405180910390a45b5050505050565b6107598282604051806020016040528060008152506115e2565b600061111082611271565b90506111226000838360000151610e8b565b80516001600160a01b039081166000908152600560209081526040808320805467ffffffffffffffff19811667ffffffffffffffff91821660001901821617909155855185168452818420805467ffffffffffffffff60801b198116600160801b9182900484166001908101851690920217909155865188865260049094528285208054600160e01b9588166001600160e01b031990911617600160a01b42909416939093029290921760ff60e01b191693909317905590850180835291205490911661123b5760005481101561123b578151600082815260046020908152604090912080549185015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b50805160405183916000916001600160a01b0390911690600080516020611e0d833981519152908390a450506001805481019055565b604080516060810182526000808252602082018190529181019190915281806001111580156112a1575060005481105b1561138157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061137f5780516001600160a01b031615611315579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561137a579392505050565b611315565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611421903390899088908890600401611bf4565b602060405180830381600087803b15801561143b57600080fd5b505af192505050801561146b575060408051601f3d908101601f1916820190925261146891810190611a3c565b60015b6114c6573d808015611499576040519150601f19603f3d011682016040523d82523d6000602084013e61149e565b606091505b5080516114be576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816115085750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611532578061151c81611d59565b915061152b9050600a83611cc7565b915061150c565b60008167ffffffffffffffff81111561154d5761154d611de0565b6040519080825280601f01601f191660200182016040528015611577576020820181803683370190505b5090505b84156114dc5761158c600183611cdb565b9150611599600a86611d74565b6115a4906030611caf565b60f81b8183815181106115b9576115b9611dca565b60200101906001600160f81b031916908160001a9053506115db600a86611cc7565b945061157b565b61049a83838360016000546001600160a01b03851661161357604051622e076360e81b815260040160405180910390fd5b836116315760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156116e357506001600160a01b0387163b15155b1561175a575b60405182906001600160a01b03891690600090600080516020611e0d833981519152908290a461172260008884806001019550886113ec565b61173f576040516368d2bf6b60e11b815260040160405180910390fd5b808214156116e957826000541461175557600080fd5b61178e565b5b6040516001830192906001600160a01b03891690600090600080516020611e0d833981519152908290a48082141561175b575b506000556110e4565b8280546117a390611d1e565b90600052602060002090601f0160209004810192826117c5576000855561180b565b82601f106117de5782800160ff1982351617855561180b565b8280016001018555821561180b579182015b8281111561180b5782358255916020019190600101906117f0565b5061181792915061181b565b5090565b5b80821115611817576000815560010161181c565b80356001600160a01b038116811461184757600080fd5b919050565b60006020828403121561185e57600080fd5b61186782611830565b9392505050565b6000806040838503121561188157600080fd5b61188a83611830565b915061189860208401611830565b90509250929050565b6000806000606084860312156118b657600080fd5b6118bf84611830565b92506118cd60208501611830565b9150604084013590509250925092565b600080600080608085870312156118f357600080fd5b6118fc85611830565b935061190a60208601611830565b925060408501359150606085013567ffffffffffffffff8082111561192e57600080fd5b818701915087601f83011261194257600080fd5b81358181111561195457611954611de0565b604051601f8201601f19908116603f0116810190838211818310171561197c5761197c611de0565b816040528281528a602084870101111561199557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156119cc57600080fd5b6119d583611830565b9150602083013580151581146119ea57600080fd5b809150509250929050565b60008060408385031215611a0857600080fd5b611a1183611830565b946020939093013593505050565b600060208284031215611a3157600080fd5b813561186781611df6565b600060208284031215611a4e57600080fd5b815161186781611df6565b600060208284031215611a6b57600080fd5b81356004811061186757600080fd5b60008060208385031215611a8d57600080fd5b823567ffffffffffffffff80821115611aa557600080fd5b818501915085601f830112611ab957600080fd5b813581811115611ac857600080fd5b866020828501011115611ada57600080fd5b60209290920196919550909350505050565b600060208284031215611afe57600080fd5b5035919050565b60008151808452611b1d816020860160208601611cf2565b601f01601f19169290920160200192915050565b60008151611b43818560208601611cf2565b9290920192915050565b600080845481600182811c915080831680611b6957607f831692505b6020808410821415611b8957634e487b7160e01b86526022600452602486fd5b818015611b9d5760018114611bae57611bdb565b60ff19861689528489019650611bdb565b60008b81526020902060005b86811015611bd35781548b820152908501908301611bba565b505084890196505b505050505050611beb8185611b31565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c2790830184611b05565b9695505050505050565b6020810160048310611c5357634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006118676020830184611b05565b60208082526023908201527f50554d41204d6174657269616c697a65723a204d696e74204973204e6f74204c60408201526269766560e81b606082015260800190565b60008219821115611cc257611cc2611d88565b500190565b600082611cd657611cd6611d9e565b500490565b600082821015611ced57611ced611d88565b500390565b60005b83811015611d0d578181015183820152602001611cf5565b83811115610bf65750506000910152565b600181811c90821680611d3257607f821691505b60208210811415611d5357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d6d57611d6d611d88565b5060010190565b600082611d8357611d83611d9e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461087557600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220bbc4df24ea0de822566558476e893ff518511f3b9d740b141f2a47ba7ccd9a8964736f6c6343000807003368747470733a2f2f70756d612d626c61636b626f782d70726f642e6865726f6b756170702e636f6d2f6170692f706879736963616c2f706173732f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80636c0360eb11610104578063a22cb465116100a2578063c87b56dd11610071578063c87b56dd146103bf578063dce423b9146103d2578063e985e9c5146103e5578063f2fde38b1461042157600080fd5b8063a22cb46514610377578063ac4460021461038a578063b88d4fde14610392578063c19d93fb146103a557600080fd5b80638ba4cc3c116100de5780638ba4cc3c146103425780638da5cb5b1461035557806395d89b41146103665780639659867e1461036e57600080fd5b80636c0360eb1461031f57806370a0823114610327578063715018a61461033a57600080fd5b806332cb6b0c1161017c57806356de96db1161014b57806356de96db146102de57806357614ae5146102f157806359e2a7f2146103045780636352211e1461030c57600080fd5b806332cb6b0c1461029c57806340c10f19146102a557806342842e0e146102b8578063529f5e2b146102cb57600080fd5b8063081812fc116101b8578063081812fc14610231578063095ea7b31461025c57806318160ddd1461026f57806323b872dd1461028957600080fd5b806301ffc9a7146101df57806302fe53051461020757806306fdde031461021c575b600080fd5b6101f26101ed366004611a1f565b610434565b60405190151581526020015b60405180910390f35b61021a610215366004611a7a565b610486565b005b61022461049f565b6040516101fe9190611c59565b61024461023f366004611aec565b610531565b6040516001600160a01b0390911681526020016101fe565b61021a61026a3660046119f5565b610575565b60015460005403600019015b6040519081526020016101fe565b61021a6102973660046118a1565b6105fe565b61027b610fa081565b61021a6102b33660046119f5565b610609565b61021a6102c63660046118a1565b61075d565b61021a6102d936600461184c565b610778565b61021a6102ec366004611a59565b6107a2565b600954610244906001600160a01b031681565b61021a6107d1565b61024461031a366004611aec565b610878565b61022461088a565b61027b61033536600461184c565b610918565b61021a610967565b61021a6103503660046119f5565b61097b565b6008546001600160a01b0316610244565b610224610a73565b61027b600c5481565b61021a6103853660046119b9565b610a82565b61021a610b18565b61021a6103a03660046118dd565b610bab565b600b546103b29060ff1681565b6040516101fe9190611c31565b6102246103cd366004611aec565b610bfc565b61021a6103e0366004611aec565b610c7f565b6101f26103f336600461186e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61021a61042f36600461184c565b610d82565b60006001600160e01b031982166380ac58cd60e01b148061046557506001600160e01b03198216635b5e139f60e01b145b8061048057506301ffc9a760e01b6001600160e01b03198316145b92915050565b61048e610df8565b61049a600a8383611797565b505050565b6060600280546104ae90611d1e565b80601f01602080910402602001604051908101604052809291908181526020018280546104da90611d1e565b80156105275780601f106104fc57610100808354040283529160200191610527565b820191906000526020600020905b81548152906001019060200180831161050a57829003601f168201915b5050505050905090565b600061053c82610e52565b610559576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061058082610878565b9050806001600160a01b0316836001600160a01b031614156105b55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105d557506105d381336103f3565b155b156105f3576040516367d9dca160e11b815260040160405180910390fd5b61049a838383610e8b565b61049a838383610ee7565b6009546001600160a01b0316331461069a5760405162461bcd60e51b815260206004820152604360248201527f50554d41204d6174657269616c697a65723a2043616e206f6e6c79206d696e7460448201527f206279206275726e696e672066726f6d204e6974726f7061737320636f6e74726064820152621858dd60ea1b608482015260a4015b60405180910390fd5b6001600b5460ff1660038111156106b3576106b3611db4565b146106d05760405162461bcd60e51b815260040161069190611c6c565b60015b81811161074e577f6192450a725864eadb7ce82d79b73920b67bc4f08f4e021a06516f19da51d3ed33826107106001546000546000199190030190565b61071a9190611caf565b604080516001600160a01b03909316835260208301919091520160405180910390a18061074681611d59565b9150506106d3565b5061075982826110eb565b5050565b61049a83838360405180602001604052806000815250610bab565b610780610df8565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6107aa610df8565b600b805482919060ff191660018360038111156107c9576107c9611db4565b021790555050565b6107d9610df8565b6003600b5460ff1660038111156107f2576107f2611db4565b1461083f5760405162461bcd60e51b815260206004820152601d60248201527f50554d41204d6174657269616c697a65723a205374696c6c204c6976650000006044820152606401610691565b60005b610fa08110156108755761085581610e52565b156108635761086381611105565b8061086d81611d59565b915050610842565b50565b600061088382611271565b5192915050565b600a805461089790611d1e565b80601f01602080910402602001604051908101604052809291908181526020018280546108c390611d1e565b80156109105780601f106108e557610100808354040283529160200191610910565b820191906000526020600020905b8154815290600101906020018083116108f357829003601f168201915b505050505081565b60006001600160a01b038216610941576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61096f610df8565b610979600061139a565b565b610983610df8565b6000600b5460ff16600381111561099c5761099c611db4565b146109f55760405162461bcd60e51b815260206004820152602360248201527f50554d41204d6174657269616c697a65723a204d757374204e6f74204265204c60448201526269766560e81b6064820152608401610691565b60015b81811161074e577f6192450a725864eadb7ce82d79b73920b67bc4f08f4e021a06516f19da51d3ed3382610a356001546000546000199190030190565b610a3f9190611caf565b604080516001600160a01b03909316835260208301919091520160405180910390a180610a6b81611d59565b9150506109f8565b6060600380546104ae90611d1e565b6001600160a01b038216331415610aac5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b20610df8565b604051600090339047908381818185875af1925050503d8060008114610b62576040519150601f19603f3d011682016040523d82523d6000602084013e610b67565b606091505b50509050806108755760405162461bcd60e51b815260206004820152601060248201526f2bb4ba34323930bb903330b4b632b21760811b6044820152606401610691565b610bb6848484610ee7565b6001600160a01b0383163b15158015610bd85750610bd6848484846113ec565b155b15610bf6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c0782610e52565b610c2457604051630a14c4b560e41b815260040160405180910390fd5b600a8054610c3190611d1e565b15159050610c4e5760405180602001604052806000815250610480565b600a610c59836114e4565b604051602001610c6a929190611b4d565b60405160208183030381529060405292915050565b6002600b5460ff166003811115610c9857610c98611db4565b14610cb55760405162461bcd60e51b815260040161069190611c6c565b6000610cc082610878565b9050336001600160a01b03821614610d405760405162461bcd60e51b815260206004820152603960248201527f50554d41204d6174657269616c697a65723a204d6573736167652073656e646560448201527f72206973206e6f74206f776e6572206f6620746f6b656e6964000000000000006064820152608401610691565b60408051338152602081018490527fbd7b2e019d2854dae53bb08756c96d9a046172989e4590e654947a60f024b1a1910160405180910390a161075982611105565b610d8a610df8565b6001600160a01b038116610def5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610691565b6108758161139a565b6008546001600160a01b031633146109795760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610691565b600081600111158015610e66575060005482105b8015610480575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610ef282611271565b80519091506000906001600160a01b0316336001600160a01b03161480610f2057508151610f2090336103f3565b80610f3b575033610f3084610531565b6001600160a01b0316145b905080610f5b57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610f905760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610fb757604051633a954ecd60e21b815260040160405180910390fd5b610fc76000848460000151610e8b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166110b3576000548110156110b3578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b0316600080516020611e0d83398151915260405160405180910390a45b5050505050565b6107598282604051806020016040528060008152506115e2565b600061111082611271565b90506111226000838360000151610e8b565b80516001600160a01b039081166000908152600560209081526040808320805467ffffffffffffffff19811667ffffffffffffffff91821660001901821617909155855185168452818420805467ffffffffffffffff60801b198116600160801b9182900484166001908101851690920217909155865188865260049094528285208054600160e01b9588166001600160e01b031990911617600160a01b42909416939093029290921760ff60e01b191693909317905590850180835291205490911661123b5760005481101561123b578151600082815260046020908152604090912080549185015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b50805160405183916000916001600160a01b0390911690600080516020611e0d833981519152908390a450506001805481019055565b604080516060810182526000808252602082018190529181019190915281806001111580156112a1575060005481105b1561138157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061137f5780516001600160a01b031615611315579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561137a579392505050565b611315565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611421903390899088908890600401611bf4565b602060405180830381600087803b15801561143b57600080fd5b505af192505050801561146b575060408051601f3d908101601f1916820190925261146891810190611a3c565b60015b6114c6573d808015611499576040519150601f19603f3d011682016040523d82523d6000602084013e61149e565b606091505b5080516114be576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816115085750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611532578061151c81611d59565b915061152b9050600a83611cc7565b915061150c565b60008167ffffffffffffffff81111561154d5761154d611de0565b6040519080825280601f01601f191660200182016040528015611577576020820181803683370190505b5090505b84156114dc5761158c600183611cdb565b9150611599600a86611d74565b6115a4906030611caf565b60f81b8183815181106115b9576115b9611dca565b60200101906001600160f81b031916908160001a9053506115db600a86611cc7565b945061157b565b61049a83838360016000546001600160a01b03851661161357604051622e076360e81b815260040160405180910390fd5b836116315760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156116e357506001600160a01b0387163b15155b1561175a575b60405182906001600160a01b03891690600090600080516020611e0d833981519152908290a461172260008884806001019550886113ec565b61173f576040516368d2bf6b60e11b815260040160405180910390fd5b808214156116e957826000541461175557600080fd5b61178e565b5b6040516001830192906001600160a01b03891690600090600080516020611e0d833981519152908290a48082141561175b575b506000556110e4565b8280546117a390611d1e565b90600052602060002090601f0160209004810192826117c5576000855561180b565b82601f106117de5782800160ff1982351617855561180b565b8280016001018555821561180b579182015b8281111561180b5782358255916020019190600101906117f0565b5061181792915061181b565b5090565b5b80821115611817576000815560010161181c565b80356001600160a01b038116811461184757600080fd5b919050565b60006020828403121561185e57600080fd5b61186782611830565b9392505050565b6000806040838503121561188157600080fd5b61188a83611830565b915061189860208401611830565b90509250929050565b6000806000606084860312156118b657600080fd5b6118bf84611830565b92506118cd60208501611830565b9150604084013590509250925092565b600080600080608085870312156118f357600080fd5b6118fc85611830565b935061190a60208601611830565b925060408501359150606085013567ffffffffffffffff8082111561192e57600080fd5b818701915087601f83011261194257600080fd5b81358181111561195457611954611de0565b604051601f8201601f19908116603f0116810190838211818310171561197c5761197c611de0565b816040528281528a602084870101111561199557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156119cc57600080fd5b6119d583611830565b9150602083013580151581146119ea57600080fd5b809150509250929050565b60008060408385031215611a0857600080fd5b611a1183611830565b946020939093013593505050565b600060208284031215611a3157600080fd5b813561186781611df6565b600060208284031215611a4e57600080fd5b815161186781611df6565b600060208284031215611a6b57600080fd5b81356004811061186757600080fd5b60008060208385031215611a8d57600080fd5b823567ffffffffffffffff80821115611aa557600080fd5b818501915085601f830112611ab957600080fd5b813581811115611ac857600080fd5b866020828501011115611ada57600080fd5b60209290920196919550909350505050565b600060208284031215611afe57600080fd5b5035919050565b60008151808452611b1d816020860160208601611cf2565b601f01601f19169290920160200192915050565b60008151611b43818560208601611cf2565b9290920192915050565b600080845481600182811c915080831680611b6957607f831692505b6020808410821415611b8957634e487b7160e01b86526022600452602486fd5b818015611b9d5760018114611bae57611bdb565b60ff19861689528489019650611bdb565b60008b81526020902060005b86811015611bd35781548b820152908501908301611bba565b505084890196505b505050505050611beb8185611b31565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c2790830184611b05565b9695505050505050565b6020810160048310611c5357634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006118676020830184611b05565b60208082526023908201527f50554d41204d6174657269616c697a65723a204d696e74204973204e6f74204c60408201526269766560e81b606082015260800190565b60008219821115611cc257611cc2611d88565b500190565b600082611cd657611cd6611d9e565b500490565b600082821015611ced57611ced611d88565b500390565b60005b83811015611d0d578181015183820152602001611cf5565b83811115610bf65750506000910152565b600181811c90821680611d3257607f821691505b60208210811415611d5357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d6d57611d6d611d88565b5060010190565b600082611d8357611d83611d9e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461087557600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220bbc4df24ea0de822566558476e893ff518511f3b9d740b141f2a47ba7ccd9a8964736f6c63430008070033

Deployed Bytecode Sourcemap

46985:3043:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25834:305;;;;;;:::i;:::-;;:::i;:::-;;;7279:14:1;;7272:22;7254:41;;7242:2;7227:18;25834:305:0;;;;;;;;49741:96;;;;;;:::i;:::-;;:::i;:::-;;29221:100;;;:::i;:::-;;;;;;;:::i;30724:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6298:32:1;;;6280:51;;6268:2;6253:18;30724:204:0;6134:203:1;30287:371:0;;;;;;:::i;:::-;;:::i;25083:303::-;24890:1;25337:12;25127:7;25321:13;:28;-1:-1:-1;;25321:46:0;25083:303;;;11201:25:1;;;11189:2;11174:18;25083:303:0;11055:177:1;31581:170:0;;;;;;:::i;:::-;;:::i;47332:41::-;;47369:4;47332:41;;48834:452;;;;;;:::i;:::-;;:::i;31822:185::-;;;;;;:::i;:::-;;:::i;48028:124::-;;;;;;:::i;:::-;;:::i;49644:85::-;;;;;;:::i;:::-;;:::i;47230:77::-;;;;;-1:-1:-1;;;;;47230:77:0;;;48160:296;;;:::i;29030:124::-;;;;;;:::i;:::-;;:::i;47529:85::-;;;:::i;26203:206::-;;;;;;:::i;:::-;;:::i;45772:103::-;;;:::i;49294:342::-;;;;;;:::i;:::-;;:::i;45124:87::-;45197:6;;-1:-1:-1;;;;;45197:6:0;45124:87;;29390:104;;;:::i;47647:24::-;;;;;;31000:279;;;;;;:::i;:::-;;:::i;49845:178::-;;;:::i;32078:369::-;;;;;;:::i;:::-;;:::i;47621:19::-;;;;;;;;;;;;;;;;:::i;47749:271::-;;;;;;:::i;:::-;;:::i;48464:362::-;;;;;;:::i;:::-;;:::i;31350:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;31471:25:0;;;31447:4;31471:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31350:164;46030:201;;;;;;:::i;:::-;;:::i;25834:305::-;25936:4;-1:-1:-1;;;;;;25973:40:0;;-1:-1:-1;;;25973:40:0;;:105;;-1:-1:-1;;;;;;;26030:48:0;;-1:-1:-1;;;26030:48:0;25973:105;:158;;;-1:-1:-1;;;;;;;;;;21314:40:0;;;26095:36;25953:178;25834:305;-1:-1:-1;;25834:305:0:o;49741:96::-;45010:13;:11;:13::i;:::-;49812:17:::1;:7;49822::::0;;49812:17:::1;:::i;:::-;;49741:96:::0;;:::o;29221:100::-;29275:13;29308:5;29301:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29221:100;:::o;30724:204::-;30792:7;30817:16;30825:7;30817;:16::i;:::-;30812:64;;30842:34;;-1:-1:-1;;;30842:34:0;;;;;;;;;;;30812:64;-1:-1:-1;30896:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30896:24:0;;30724:204::o;30287:371::-;30360:13;30376:24;30392:7;30376:15;:24::i;:::-;30360:40;;30421:5;-1:-1:-1;;;;;30415:11:0;:2;-1:-1:-1;;;;;30415:11:0;;30411:48;;;30435:24;;-1:-1:-1;;;30435:24:0;;;;;;;;;;;30411:48;20206:10;-1:-1:-1;;;;;30476:21:0;;;;;;:63;;-1:-1:-1;30502:37:0;30519:5;20206:10;31350:164;:::i;30502:37::-;30501:38;30476:63;30472:138;;;30563:35;;-1:-1:-1;;;30563:35:0;;;;;;;;;;;30472:138;30622:28;30631:2;30635:7;30644:5;30622:8;:28::i;31581:170::-;31715:28;31725:4;31731:2;31735:7;31715:9;:28::i;48834:452::-;48927:17;;-1:-1:-1;;;;;48927:17:0;48913:10;:31;48905:111;;;;-1:-1:-1;;;48905:111:0;;8887:2:1;48905:111:0;;;8869:21:1;8926:2;8906:18;;;8899:30;8965:34;8945:18;;;8938:62;9036:34;9016:18;;;9009:62;-1:-1:-1;;;9087:19:1;;;9080:34;9131:19;;48905:111:0;;;;;;;;;49044:16;49035:5;;;;:25;;;;;;;;:::i;:::-;;49027:73;;;;-1:-1:-1;;;49027:73:0;;;;;;;:::i;:::-;49130:1;49113:125;49138:9;49133:1;:14;49113:125;;49174:52;49196:10;49224:1;49208:13;24890:1;25337:12;25127:7;25321:13;-1:-1:-1;;25321:28:0;;;:46;;25083:303;49208:13;:17;;;;:::i;:::-;49174:52;;;-1:-1:-1;;;;;7027:32:1;;;7009:51;;7091:2;7076:18;;7069:34;;;;6982:18;49174:52:0;;;;;;;49149:3;;;;:::i;:::-;;;;49113:125;;;;49248:30;49258:8;49268:9;49248;:30::i;:::-;48834:452;;:::o;31822:185::-;31960:39;31977:4;31983:2;31987:7;31960:39;;;;;;;;;;;;:16;:39::i;48028:124::-;45010:13;:11;:13::i;:::-;48111:17:::1;:33:::0;;-1:-1:-1;;;;;;48111:33:0::1;-1:-1:-1::0;;;;;48111:33:0;;;::::1;::::0;;;::::1;::::0;;48028:124::o;49644:85::-;45010:13;:11;:13::i;:::-;49707:5:::1;:14:::0;;49715:6;;49707:5;-1:-1:-1;;49707:14:0::1;::::0;49715:6;49707:14:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;49644:85:::0;:::o;48160:296::-;45010:13;:11;:13::i;:::-;48236:12:::1;48227:5;::::0;::::1;;:21;::::0;::::1;;;;;;:::i;:::-;;48219:63;;;::::0;-1:-1:-1;;;48219:63:0;;10193:2:1;48219:63:0::1;::::0;::::1;10175:21:1::0;10232:2;10212:18;;;10205:30;10271:31;10251:18;;;10244:59;10320:18;;48219:63:0::1;9991:353:1::0;48219:63:0::1;48298:16;48293:156;47369:4;48318:8;:19;48293:156;;;48369:17;48377:8;48369:7;:17::i;:::-;48366:72;;;48407:15;48413:8;48407:5;:15::i;:::-;48339:10:::0;::::1;::::0;::::1;:::i;:::-;;;;48293:156;;;;48160:296::o:0;29030:124::-;29094:7;29121:20;29133:7;29121:11;:20::i;:::-;:25;;29030:124;-1:-1:-1;;29030:124:0:o;47529:85::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26203:206::-;26267:7;-1:-1:-1;;;;;26291:19:0;;26287:60;;26319:28;;-1:-1:-1;;;26319:28:0;;;;;;;;;;;26287:60;-1:-1:-1;;;;;;26373:19:0;;;;;:12;:19;;;;;:27;;;;26203:206::o;45772:103::-;45010:13;:11;:13::i;:::-;45837:30:::1;45864:1;45837:18;:30::i;:::-;45772:103::o:0;49294:342::-;45010:13;:11;:13::i;:::-;49395:15:::1;49386:5;::::0;::::1;;:24;::::0;::::1;;;;;;:::i;:::-;;49378:72;;;::::0;-1:-1:-1;;;49378:72:0;;8076:2:1;49378:72:0::1;::::0;::::1;8058:21:1::0;8115:2;8095:18;;;8088:30;8154:34;8134:18;;;8127:62;-1:-1:-1;;;8205:18:1;;;8198:33;8248:19;;49378:72:0::1;7874:399:1::0;49378:72:0::1;49480:1;49463:125;49488:9;49483:1;:14;49463:125;;49524:52;49546:10;49574:1;49558:13;24890:1:::0;25337:12;25127:7;25321:13;-1:-1:-1;;25321:28:0;;;:46;;25083:303;49558:13:::1;:17;;;;:::i;:::-;49524:52;::::0;;-1:-1:-1;;;;;7027:32:1;;;7009:51;;7091:2;7076:18;;7069:34;;;;6982:18;49524:52:0::1;;;;;;;49499:3:::0;::::1;::::0;::::1;:::i;:::-;;;;49463:125;;29390:104:::0;29446:13;29479:7;29472:14;;;;;:::i;31000:279::-;-1:-1:-1;;;;;31091:24:0;;20206:10;31091:24;31087:54;;;31124:17;;-1:-1:-1;;;31124:17:0;;;;;;;;;;;31087:54;20206:10;31154:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31154:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31154:53:0;;;;;;;;;;31223:48;;7254:41:1;;;31154:42:0;;20206:10;31223:48;;7227:18:1;31223:48:0;;;;;;;31000:279;;:::o;49845:178::-;45010:13;:11;:13::i;:::-;49919:49:::1;::::0;49901:12:::1;::::0;49919:10:::1;::::0;49942:21:::1;::::0;49901:12;49919:49;49901:12;49919:49;49942:21;49919:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49900:68;;;49987:7;49979:36;;;::::0;-1:-1:-1;;;49979:36:0;;10551:2:1;49979:36:0::1;::::0;::::1;10533:21:1::0;10590:2;10570:18;;;10563:30;-1:-1:-1;;;10609:18:1;;;10602:46;10665:18;;49979:36:0::1;10349:340:1::0;32078:369:0;32245:28;32255:4;32261:2;32265:7;32245:9;:28::i;:::-;-1:-1:-1;;;;;32288:13:0;;12418:19;:23;;32288:76;;;;;32308:56;32339:4;32345:2;32349:7;32358:5;32308:30;:56::i;:::-;32307:57;32288:76;32284:156;;;32388:40;;-1:-1:-1;;;32388:40:0;;;;;;;;;;;32284:156;32078:369;;;;:::o;47749:271::-;47822:13;47853:16;47861:7;47853;:16::i;:::-;47848:59;;47878:29;;-1:-1:-1;;;47878:29:0;;;;;;;;;;;47848:59;47931:7;47925:21;;;;;:::i;:::-;:26;;;-1:-1:-1;47925:87:0;;;;;;;;;;;;;;;;;47978:7;47987:18;:7;:16;:18::i;:::-;47961:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47918:94;47749:271;-1:-1:-1;;47749:271:0:o;48464:362::-;48540:18;48531:5;;;;:27;;;;;;;;:::i;:::-;;48523:75;;;;-1:-1:-1;;;48523:75:0;;;;;;;:::i;:::-;48609:13;48625:17;48633:8;48625:7;:17::i;:::-;48609:33;-1:-1:-1;48661:10:0;-1:-1:-1;;;;;48661:19:0;;;48653:89;;;;-1:-1:-1;;;48653:89:0;;9363:2:1;48653:89:0;;;9345:21:1;9402:2;9382:18;;;9375:30;9441:34;9421:18;;;9414:62;9512:27;9492:18;;;9485:55;9557:19;;48653:89:0;9161:421:1;48653:89:0;48758:34;;;48771:10;7009:51:1;;7091:2;7076:18;;7069:34;;;48758::0;;6982:18:1;48758:34:0;;;;;;;48803:15;48809:8;48803:5;:15::i;46030:201::-;45010:13;:11;:13::i;:::-;-1:-1:-1;;;;;46119:22:0;::::1;46111:73;;;::::0;-1:-1:-1;;;46111:73:0;;8480:2:1;46111:73:0::1;::::0;::::1;8462:21:1::0;8519:2;8499:18;;;8492:30;8558:34;8538:18;;;8531:62;-1:-1:-1;;;8609:18:1;;;8602:36;8655:19;;46111:73:0::1;8278:402:1::0;46111:73:0::1;46195:28;46214:8;46195:18;:28::i;45289:132::-:0;45197:6;;-1:-1:-1;;;;;45197:6:0;20206:10;45353:23;45345:68;;;;-1:-1:-1;;;45345:68:0;;10896:2:1;45345:68:0;;;10878:21:1;;;10915:18;;;10908:30;10974:34;10954:18;;;10947:62;11026:18;;45345:68:0;10694:356:1;32702:187:0;32759:4;32802:7;24890:1;32783:26;;:53;;;;;32823:13;;32813:7;:23;32783:53;:98;;;;-1:-1:-1;;32854:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32854:27:0;;;;32853:28;;32702:187::o;40313:196::-;40428:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40428:29:0;-1:-1:-1;;;;;40428:29:0;;;;;;;;;40473:28;;40428:24;;40473:28;;;;;;;40313:196;;;:::o;35815:2112::-;35930:35;35968:20;35980:7;35968:11;:20::i;:::-;36043:18;;35930:58;;-1:-1:-1;36001:22:0;;-1:-1:-1;;;;;36027:34:0;20206:10;-1:-1:-1;;;;;36027:34:0;;:101;;;-1:-1:-1;36095:18:0;;36078:50;;20206:10;31350:164;:::i;36078:50::-;36027:154;;;-1:-1:-1;20206:10:0;36145:20;36157:7;36145:11;:20::i;:::-;-1:-1:-1;;;;;36145:36:0;;36027:154;36001:181;;36200:17;36195:66;;36226:35;;-1:-1:-1;;;36226:35:0;;;;;;;;;;;36195:66;36298:4;-1:-1:-1;;;;;36276:26:0;:13;:18;;;-1:-1:-1;;;;;36276:26:0;;36272:67;;36311:28;;-1:-1:-1;;;36311:28:0;;;;;;;;;;;36272:67;-1:-1:-1;;;;;36354:16:0;;36350:52;;36379:23;;-1:-1:-1;;;36379:23:0;;;;;;;;;;;36350:52;36523:49;36540:1;36544:7;36553:13;:18;;;36523:8;:49::i;:::-;-1:-1:-1;;;;;36868:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36868:31:0;;;;;;;-1:-1:-1;;36868:31:0;;;;;;;36914:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36914:29:0;;;;;;;;;;;36960:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;37005:61:0;;;;-1:-1:-1;;;37050:15:0;37005:61;;;;;;;;;;;37340:11;;;37370:24;;;;;:29;37340:11;;37370:29;37366:445;;37595:13;;37581:11;:27;37577:219;;;37665:18;;;37633:24;;;:11;:24;;;;;;;;:50;;37748:28;;;;37706:70;;-1:-1:-1;;;37706:70:0;-1:-1:-1;;;;;;37706:70:0;;;-1:-1:-1;;;;;37633:50:0;;;37706:70;;;;;;;37577:219;36843:979;37858:7;37854:2;-1:-1:-1;;;;;37839:27:0;37848:4;-1:-1:-1;;;;;37839:27:0;-1:-1:-1;;;;;;;;;;;37839:27:0;;;;;;;;;37877:42;35919:2008;;35815:2112;;;:::o;32897:104::-;32966:27;32976:2;32980:8;32966:27;;;;;;;;;;;;:9;:27::i;38156:2039::-;38216:35;38254:20;38266:7;38254:11;:20::i;:::-;38216:58;-1:-1:-1;38417:49:0;38434:1;38438:7;38447:13;:18;;;38417:8;:49::i;:::-;38775:18;;-1:-1:-1;;;;;38762:32:0;;;;;;;:12;:32;;;;;;;;:45;;-1:-1:-1;;38762:45:0;;;;;;-1:-1:-1;;38762:45:0;;;;;;;38835:18;;38822:32;;;;;;;:50;;-1:-1:-1;;;;38822:50:0;;-1:-1:-1;;;38822:50:0;;;;;;-1:-1:-1;38822:50:0;;;;;;;;;;;;38999:18;;38971:20;;;:11;:20;;;;;;:46;;-1:-1:-1;;;38971:46:0;;;-1:-1:-1;;;;;;39032:61:0;;;;-1:-1:-1;;;39077:15:0;39032:61;;;;;;;;;;;-1:-1:-1;;;;39108:34:0;;;;;;;39412:11;;;39442:24;;;;;:29;39412:11;;39442:29;39438:445;;39667:13;;39653:11;:27;39649:219;;;39737:18;;;39705:24;;;:11;:24;;;;;;;;:50;;39820:28;;;;39778:70;;-1:-1:-1;;;39778:70:0;-1:-1:-1;;;;;;39778:70:0;;;-1:-1:-1;;;;;39705:50:0;;;39778:70;;;;;;;39649:219;-1:-1:-1;39920:18:0;;39911:49;;39952:7;;39948:1;;-1:-1:-1;;;;;39911:49:0;;;;-1:-1:-1;;;;;;;;;;;39911:49:0;39948:1;;39911:49;-1:-1:-1;;40162:12:0;:14;;;;;;38156:2039::o;27860:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27970:7:0;;24890:1;28019:23;;:47;;;;;28053:13;;28046:4;:20;28019:47;28015:886;;;28087:31;28121:17;;;:11;:17;;;;;;;;;28087:51;;;;;;;;;-1:-1:-1;;;;;28087:51:0;;;;-1:-1:-1;;;28087:51:0;;;;;;;;;;;-1:-1:-1;;;28087:51:0;;;;;;;;;;;;;;28157:729;;28207:14;;-1:-1:-1;;;;;28207:28:0;;28203:101;;28271:9;27860:1108;-1:-1:-1;;;27860:1108:0:o;28203:101::-;-1:-1:-1;;;28646:6:0;28691:17;;;;:11;:17;;;;;;;;;28679:29;;;;;;;;;-1:-1:-1;;;;;28679:29:0;;;;;-1:-1:-1;;;28679:29:0;;;;;;;;;;;-1:-1:-1;;;28679:29:0;;;;;;;;;;;;;28739:28;28735:109;;28807:9;27860:1108;-1:-1:-1;;;27860:1108:0:o;28735:109::-;28606:261;;;28068:833;28015:886;28929:31;;-1:-1:-1;;;28929:31:0;;;;;;;;;;;46391:191;46484:6;;;-1:-1:-1;;;;;46501:17:0;;;-1:-1:-1;;;;;;46501:17:0;;;;;;;46534:40;;46484:6;;;46501:17;46484:6;;46534:40;;46465:16;;46534:40;46454:128;46391:191;:::o;41001:667::-;41185:72;;-1:-1:-1;;;41185:72:0;;41164:4;;-1:-1:-1;;;;;41185:36:0;;;;;:72;;20206:10;;41236:4;;41242:7;;41251:5;;41185:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41185:72:0;;;;;;;;-1:-1:-1;;41185:72:0;;;;;;;;;;;;:::i;:::-;;;41181:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41419:13:0;;41415:235;;41465:40;;-1:-1:-1;;;41465:40:0;;;;;;;;;;;41415:235;41608:6;41602:13;41593:6;41589:2;41585:15;41578:38;41181:480;-1:-1:-1;;;;;;41304:55:0;-1:-1:-1;;;41304:55:0;;-1:-1:-1;41181:480:0;41001:667;;;;;;:::o;375:723::-;431:13;652:10;648:53;;-1:-1:-1;;679:10:0;;;;;;;;;;;;-1:-1:-1;;;679:10:0;;;;;375:723::o;648:53::-;726:5;711:12;767:78;774:9;;767:78;;800:8;;;;:::i;:::-;;-1:-1:-1;823:10:0;;-1:-1:-1;831:2:0;823:10;;:::i;:::-;;;767:78;;;855:19;887:6;877:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;877:17:0;;855:39;;905:154;912:10;;905:154;;939:11;949:1;939:11;;:::i;:::-;;-1:-1:-1;1008:10:0;1016:2;1008:5;:10;:::i;:::-;995:24;;:2;:24;:::i;:::-;982:39;;965:6;972;965:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;965:56:0;;;;;;;;-1:-1:-1;1036:11:0;1045:2;1036:11;;:::i;:::-;;;905:154;;33364:163;33487:32;33493:2;33497:8;33507:5;33514:4;33925:20;33948:13;-1:-1:-1;;;;;33976:16:0;;33972:48;;34001:19;;-1:-1:-1;;;34001:19:0;;;;;;;;;;;33972:48;34035:13;34031:44;;34057:18;;-1:-1:-1;;;34057:18:0;;;;;;;;;;;34031:44;-1:-1:-1;;;;;34426:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34485:49:0;;34426:44;;;;;;;;34485:49;;;;-1:-1:-1;;34426:44:0;;;;;;34485:49;;;;;;;;;;;;;;;;34551:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;34601:66:0;;;;-1:-1:-1;;;34651:15:0;34601:66;;;;;;;;;;34551:25;34748:23;;;34792:4;:23;;;;-1:-1:-1;;;;;;34800:13:0;;12418:19;:23;;34800:15;34788:641;;;34836:314;34867:38;;34892:12;;-1:-1:-1;;;;;34867:38:0;;;34884:1;;-1:-1:-1;;;;;;;;;;;34867:38:0;34884:1;;34867:38;34933:69;34972:1;34976:2;34980:14;;;;;;34996:5;34933:30;:69::i;:::-;34928:174;;35038:40;;-1:-1:-1;;;35038:40:0;;;;;;;;;;;34928:174;35145:3;35129:12;:19;;34836:314;;35231:12;35214:13;;:29;35210:43;;35245:8;;;35210:43;34788:641;;;35294:120;35325:40;;35350:14;;;;;-1:-1:-1;;;;;35325:40:0;;;35342:1;;-1:-1:-1;;;;;;;;;;;35325:40:0;35342:1;;35325:40;35409:3;35393:12;:19;;35294:120;;34788:641;-1:-1:-1;35443:13:0;:28;35493:60;32078:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:267::-;3309:6;3362:2;3350:9;3341:7;3337:23;3333:32;3330:52;;;3378:1;3375;3368:12;3330:52;3417:9;3404:23;3456:1;3449:5;3446:12;3436:40;;3472:1;3469;3462:12;3511:592;3582:6;3590;3643:2;3631:9;3622:7;3618:23;3614:32;3611:52;;;3659:1;3656;3649:12;3611:52;3699:9;3686:23;3728:18;3769:2;3761:6;3758:14;3755:34;;;3785:1;3782;3775:12;3755:34;3823:6;3812:9;3808:22;3798:32;;3868:7;3861:4;3857:2;3853:13;3849:27;3839:55;;3890:1;3887;3880:12;3839:55;3930:2;3917:16;3956:2;3948:6;3945:14;3942:34;;;3972:1;3969;3962:12;3942:34;4017:7;4012:2;4003:6;3999:2;3995:15;3991:24;3988:37;3985:57;;;4038:1;4035;4028:12;3985:57;4069:2;4061:11;;;;;4091:6;;-1:-1:-1;3511:592:1;;-1:-1:-1;;;;3511:592:1:o;4108:180::-;4167:6;4220:2;4208:9;4199:7;4195:23;4191:32;4188:52;;;4236:1;4233;4226:12;4188:52;-1:-1:-1;4259:23:1;;4108:180;-1:-1:-1;4108:180:1:o;4293:257::-;4334:3;4372:5;4366:12;4399:6;4394:3;4387:19;4415:63;4471:6;4464:4;4459:3;4455:14;4448:4;4441:5;4437:16;4415:63;:::i;:::-;4532:2;4511:15;-1:-1:-1;;4507:29:1;4498:39;;;;4539:4;4494:50;;4293:257;-1:-1:-1;;4293:257:1:o;4555:185::-;4597:3;4635:5;4629:12;4650:52;4695:6;4690:3;4683:4;4676:5;4672:16;4650:52;:::i;:::-;4718:16;;;;;4555:185;-1:-1:-1;;4555:185:1:o;4745:1174::-;4921:3;4950:1;4983:6;4977:13;5013:3;5035:1;5063:9;5059:2;5055:18;5045:28;;5123:2;5112:9;5108:18;5145;5135:61;;5189:4;5181:6;5177:17;5167:27;;5135:61;5215:2;5263;5255:6;5252:14;5232:18;5229:38;5226:165;;;-1:-1:-1;;;5290:33:1;;5346:4;5343:1;5336:15;5376:4;5297:3;5364:17;5226:165;5407:18;5434:104;;;;5552:1;5547:320;;;;5400:467;;5434:104;-1:-1:-1;;5467:24:1;;5455:37;;5512:16;;;;-1:-1:-1;5434:104:1;;5547:320;11310:1;11303:14;;;11347:4;11334:18;;5642:1;5656:165;5670:6;5667:1;5664:13;5656:165;;;5748:14;;5735:11;;;5728:35;5791:16;;;;5685:10;;5656:165;;;5660:3;;5850:6;5845:3;5841:16;5834:23;;5400:467;;;;;;;5883:30;5909:3;5901:6;5883:30;:::i;:::-;5876:37;4745:1174;-1:-1:-1;;;;;4745:1174:1:o;6342:488::-;-1:-1:-1;;;;;6611:15:1;;;6593:34;;6663:15;;6658:2;6643:18;;6636:43;6710:2;6695:18;;6688:34;;;6758:3;6753:2;6738:18;;6731:31;;;6536:4;;6779:45;;6804:19;;6796:6;6779:45;:::i;:::-;6771:53;6342:488;-1:-1:-1;;;;;;6342:488:1:o;7306:339::-;7449:2;7434:18;;7482:1;7471:13;;7461:144;;7527:10;7522:3;7518:20;7515:1;7508:31;7562:4;7559:1;7552:15;7590:4;7587:1;7580:15;7461:144;7614:25;;;7306:339;:::o;7650:219::-;7799:2;7788:9;7781:21;7762:4;7819:44;7859:2;7848:9;7844:18;7836:6;7819:44;:::i;9587:399::-;9789:2;9771:21;;;9828:2;9808:18;;;9801:30;9867:34;9862:2;9847:18;;9840:62;-1:-1:-1;;;9933:2:1;9918:18;;9911:33;9976:3;9961:19;;9587:399::o;11363:128::-;11403:3;11434:1;11430:6;11427:1;11424:13;11421:39;;;11440:18;;:::i;:::-;-1:-1:-1;11476:9:1;;11363:128::o;11496:120::-;11536:1;11562;11552:35;;11567:18;;:::i;:::-;-1:-1:-1;11601:9:1;;11496:120::o;11621:125::-;11661:4;11689:1;11686;11683:8;11680:34;;;11694:18;;:::i;:::-;-1:-1:-1;11731:9:1;;11621:125::o;11751:258::-;11823:1;11833:113;11847:6;11844:1;11841:13;11833:113;;;11923:11;;;11917:18;11904:11;;;11897:39;11869:2;11862:10;11833:113;;;11964:6;11961:1;11958:13;11955:48;;;-1:-1:-1;;11999:1:1;11981:16;;11974:27;11751:258::o;12014:380::-;12093:1;12089:12;;;;12136;;;12157:61;;12211:4;12203:6;12199:17;12189:27;;12157:61;12264:2;12256:6;12253:14;12233:18;12230:38;12227:161;;;12310:10;12305:3;12301:20;12298:1;12291:31;12345:4;12342:1;12335:15;12373:4;12370:1;12363:15;12227:161;;12014:380;;;:::o;12399:135::-;12438:3;-1:-1:-1;;12459:17:1;;12456:43;;;12479:18;;:::i;:::-;-1:-1:-1;12526:1:1;12515:13;;12399:135::o;12539:112::-;12571:1;12597;12587:35;;12602:18;;:::i;:::-;-1:-1:-1;12636:9:1;;12539:112::o;12656:127::-;12717:10;12712:3;12708:20;12705:1;12698:31;12748:4;12745:1;12738:15;12772:4;12769:1;12762:15;12788:127;12849:10;12844:3;12840:20;12837:1;12830:31;12880:4;12877:1;12870:15;12904:4;12901:1;12894:15;12920:127;12981:10;12976:3;12972:20;12969:1;12962:31;13012:4;13009:1;13002:15;13036:4;13033:1;13026:15;13052:127;13113:10;13108:3;13104:20;13101:1;13094:31;13144:4;13141:1;13134:15;13168:4;13165:1;13158:15;13184:127;13245:10;13240:3;13236:20;13233:1;13226:31;13276:4;13273:1;13266:15;13300:4;13297:1;13290:15;13316:131;-1:-1:-1;;;;;;13390:32:1;;13380:43;;13370:71;;13437:1;13434;13427:12

Swarm Source

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