ETH Price: $3,308.66 (-3.02%)
Gas: 21 Gwei

Token

Combat Wombats (CW)
 

Overview

Max Total Supply

8,888 CW

Holders

1,906

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
artemisxi.eth
Balance
5 CW
0xd1b5728ed72cc49e1dab3b671e32eae5d05a8568
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:
NFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-10
*/

// SPDX-License-Identifier: MIT

// 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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/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.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/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/[email protected]

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

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

    /**
     * @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 erc721a/contracts/extensions/[email protected]

// Creator: Chiru Labs

pragma solidity ^0.8.4;

error AllOwnershipsHaveBeenSet();
error QuantityMustBeNonZero();
error NoTokensMintedYet();

abstract contract ERC721AOwnersExplicit is ERC721A {
    uint256 public nextOwnerToExplicitlySet;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        if (quantity == 0) revert QuantityMustBeNonZero();
        if (_currentIndex == _startTokenId()) revert NoTokensMintedYet();
        uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet;
        if (_nextOwnerToExplicitlySet == 0) {
            _nextOwnerToExplicitlySet = _startTokenId();
        }
        if (_nextOwnerToExplicitlySet >= _currentIndex) revert AllOwnershipsHaveBeenSet();

        // Index underflow is impossible.
        // Counter or index overflow is incredibly unrealistic.
        unchecked {
            uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1;

            // Set the end index to be the last token index
            if (endIndex + 1 > _currentIndex) {
                endIndex = _currentIndex - 1;
            }

            for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) {
                if (_ownerships[i].addr == address(0) && !_ownerships[i].burned) {
                    TokenOwnership memory ownership = ownershipOf(i);
                    _ownerships[i].addr = ownership.addr;
                    _ownerships[i].startTimestamp = ownership.startTimestamp;
                }
            }

            nextOwnerToExplicitlySet = endIndex + 1;
        }
    }
}

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File contracts/NFT.sol

pragma solidity ^0.8.4;

contract NFT is ERC721A, ERC721AOwnersExplicit, Ownable {
    address public manager;
    string public _baseTokenURI;

    modifier onlyManager() {
        require(manager == _msgSender(), "Only manager can mint");
        _;
    }

    constructor(string memory name_, string memory symbol_) ERC721A(name_, symbol_) {
        manager = msg.sender;
    }

    function safeMint(address to, uint256 quantity) external onlyManager {
        _safeMint(to, quantity);
    }

    function setManager(address to) external onlyOwner {
        manager = to;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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":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":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

60806040523480156200001157600080fd5b50604051620019d4380380620019d483398101604081905262000034916200023a565b8151829082906200004d906002906020850190620000e1565b50805162000063906003906020840190620000e1565b5050600080555062000075336200008f565b5050600a80546001600160a01b03191633179055620002f4565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000ef90620002a1565b90600052602060002090601f0160209004810192826200011357600085556200015e565b82601f106200012e57805160ff19168380011785556200015e565b828001600101855582156200015e579182015b828111156200015e57825182559160200191906001019062000141565b506200016c92915062000170565b5090565b5b808211156200016c576000815560010162000171565b600082601f83011262000198578081fd5b81516001600160401b0380821115620001b557620001b5620002de565b604051601f8301601f19908116603f01168101908282118183101715620001e057620001e0620002de565b81604052838152602092508683858801011115620001fc578485fd5b8491505b838210156200021f578582018301518183018401529082019062000200565b838211156200023057848385830101525b9695505050505050565b600080604083850312156200024d578182fd5b82516001600160401b038082111562000264578384fd5b620002728683870162000187565b9350602085015191508082111562000288578283fd5b50620002978582860162000187565b9150509250929050565b600181811c90821680620002b657607f821691505b60208210811415620002d857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6116d080620003046000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063c87b56dd1161007c578063c87b56dd146102b1578063cfc86f7b146102c4578063d0ebdbe7146102cc578063d7224ba0146102df578063e985e9c5146102e8578063f2fde38b1461032457600080fd5b8063715018a6146102575780638da5cb5b1461025f57806395d89b4114610270578063a144819414610278578063a22cb4651461028b578063b88d4fde1461029e57600080fd5b806323b872dd1161011557806323b872dd146101e557806342842e0e146101f8578063481c6a751461020b57806355f804b31461021e5780636352211e1461023157806370a082311461024457600080fd5b806301ffc9a71461015257806306fdde031461017a578063081812fc1461018f578063095ea7b3146101ba57806318160ddd146101cf575b600080fd5b6101656101603660046113cc565b610337565b60405190151581526020015b60405180910390f35b610182610389565b6040516101719190611521565b6101a261019d366004611471565b61041b565b6040516001600160a01b039091168152602001610171565b6101cd6101c83660046113a3565b61045f565b005b600154600054035b604051908152602001610171565b6101cd6101f3366004611259565b6104ed565b6101cd610206366004611259565b6104f8565b600a546101a2906001600160a01b031681565b6101cd61022c366004611404565b610513565b6101a261023f366004611471565b610552565b6101d761025236600461120d565b610564565b6101cd6105b3565b6009546001600160a01b03166101a2565b6101826105e9565b6101cd6102863660046113a3565b6105f8565b6101cd610299366004611369565b610658565b6101cd6102ac366004611294565b6106ee565b6101826102bf366004611471565b61073f565b6101826107c4565b6101cd6102da36600461120d565b610852565b6101d760085481565b6101656102f6366004611227565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101cd61033236600461120d565b61089e565b60006001600160e01b031982166380ac58cd60e01b148061036857506001600160e01b03198216635b5e139f60e01b145b8061038357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610398906115d8565b80601f01602080910402602001604051908101604052809291908181526020018280546103c4906115d8565b80156104115780601f106103e657610100808354040283529160200191610411565b820191906000526020600020905b8154815290600101906020018083116103f457829003601f168201915b5050505050905090565b600061042682610939565b610443576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061046a82610552565b9050806001600160a01b0316836001600160a01b0316141561049f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906104bf57506104bd81336102f6565b155b156104dd576040516367d9dca160e11b815260040160405180910390fd5b6104e8838383610964565b505050565b6104e88383836109c0565b6104e8838383604051806020016040528060008152506106ee565b6009546001600160a01b031633146105465760405162461bcd60e51b815260040161053d90611534565b60405180910390fd5b6104e8600b8383611158565b600061055d82610bd6565b5192915050565b60006001600160a01b03821661058d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6009546001600160a01b031633146105dd5760405162461bcd60e51b815260040161053d90611534565b6105e76000610cf2565b565b606060038054610398906115d8565b600a546001600160a01b0316331461064a5760405162461bcd60e51b815260206004820152601560248201527413db9b1e481b585b9859d95c8818d85b881b5a5b9d605a1b604482015260640161053d565b6106548282610d44565b5050565b6001600160a01b0382163314156106825760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6106f98484846109c0565b6001600160a01b0383163b1515801561071b575061071984848484610d5e565b155b15610739576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061074a82610939565b61076757604051630a14c4b560e41b815260040160405180910390fd5b6000610771610e56565b905080516000141561079257604051806020016040528060008152506107bd565b8061079c84610e65565b6040516020016107ad9291906114b5565b6040516020818303038152906040525b9392505050565b600b80546107d1906115d8565b80601f01602080910402602001604051908101604052809291908181526020018280546107fd906115d8565b801561084a5780601f1061081f5761010080835404028352916020019161084a565b820191906000526020600020905b81548152906001019060200180831161082d57829003601f168201915b505050505081565b6009546001600160a01b0316331461087c5760405162461bcd60e51b815260040161053d90611534565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b031633146108c85760405162461bcd60e51b815260040161053d90611534565b6001600160a01b03811661092d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161053d565b61093681610cf2565b50565b6000805482108015610383575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006109cb82610bd6565b80519091506000906001600160a01b0316336001600160a01b031614806109f9575081516109f990336102f6565b80610a14575033610a098461041b565b6001600160a01b0316145b905080610a3457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610a695760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610a9057604051633a954ecd60e21b815260040160405180910390fd5b610aa06000848460000151610964565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610b8c57600054811015610b8c578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015610cd957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610cd75780516001600160a01b031615610c6d579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610cd2579392505050565b610c6d565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610654828260405180602001604052806000815250610f7f565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610d939033908990889088906004016114e4565b602060405180830381600087803b158015610dad57600080fd5b505af1925050508015610ddd575060408051601f3d908101601f19168201909252610dda918101906113e8565b60015b610e38573d808015610e0b576040519150601f19603f3d011682016040523d82523d6000602084013e610e10565b606091505b508051610e30576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b8054610398906115d8565b606081610e895750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610eb35780610e9d81611613565b9150610eac9050600a83611581565b9150610e8d565b60008167ffffffffffffffff811115610edc57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610f06576020820181803683370190505b5090505b8415610e4e57610f1b600183611595565b9150610f28600a8661162e565b610f33906030611569565b60f81b818381518110610f5657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350610f78600a86611581565b9450610f0a565b6104e883838360016000546001600160a01b038516610fb057604051622e076360e81b815260040160405180910390fd5b83610fce5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561108057506001600160a01b0387163b15155b15611109575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46110d16000888480600101955088610d5e565b6110ee576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561108657826000541461110457600080fd5b61114f565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561110a575b50600055610bcf565b828054611164906115d8565b90600052602060002090601f01602090048101928261118657600085556111cc565b82601f1061119f5782800160ff198235161785556111cc565b828001600101855582156111cc579182015b828111156111cc5782358255916020019190600101906111b1565b506111d89291506111dc565b5090565b5b808211156111d857600081556001016111dd565b80356001600160a01b038116811461120857600080fd5b919050565b60006020828403121561121e578081fd5b6107bd826111f1565b60008060408385031215611239578081fd5b611242836111f1565b9150611250602084016111f1565b90509250929050565b60008060006060848603121561126d578081fd5b611276846111f1565b9250611284602085016111f1565b9150604084013590509250925092565b600080600080608085870312156112a9578081fd5b6112b2856111f1565b93506112c0602086016111f1565b925060408501359150606085013567ffffffffffffffff808211156112e3578283fd5b818701915087601f8301126112f6578283fd5b8135818111156113085761130861166e565b604051601f8201601f19908116603f011681019083821181831017156113305761133061166e565b816040528281528a6020848701011115611348578586fd5b82602086016020830137918201602001949094529598949750929550505050565b6000806040838503121561137b578182fd5b611384836111f1565b915060208301358015158114611398578182fd5b809150509250929050565b600080604083850312156113b5578182fd5b6113be836111f1565b946020939093013593505050565b6000602082840312156113dd578081fd5b81356107bd81611684565b6000602082840312156113f9578081fd5b81516107bd81611684565b60008060208385031215611416578182fd5b823567ffffffffffffffff8082111561142d578384fd5b818501915085601f830112611440578384fd5b81358181111561144e578485fd5b86602082850101111561145f578485fd5b60209290920196919550909350505050565b600060208284031215611482578081fd5b5035919050565b600081518084526114a18160208601602086016115ac565b601f01601f19169290920160200192915050565b600083516114c78184602088016115ac565b8351908301906114db8183602088016115ac565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061151790830184611489565b9695505050505050565b6020815260006107bd6020830184611489565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561157c5761157c611642565b500190565b60008261159057611590611658565b500490565b6000828210156115a7576115a7611642565b500390565b60005b838110156115c75781810151838201526020016115af565b838111156107395750506000910152565b600181811c908216806115ec57607f821691505b6020821081141561160d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561162757611627611642565b5060010190565b60008261163d5761163d611658565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461093657600080fdfea26469706673582212209641be2e418bcf228d7e9e2001cb402e99e52a2fa8362fe3261bbb1797f0b5a164736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e436f6d62617420576f6d6261747300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024357000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063c87b56dd1161007c578063c87b56dd146102b1578063cfc86f7b146102c4578063d0ebdbe7146102cc578063d7224ba0146102df578063e985e9c5146102e8578063f2fde38b1461032457600080fd5b8063715018a6146102575780638da5cb5b1461025f57806395d89b4114610270578063a144819414610278578063a22cb4651461028b578063b88d4fde1461029e57600080fd5b806323b872dd1161011557806323b872dd146101e557806342842e0e146101f8578063481c6a751461020b57806355f804b31461021e5780636352211e1461023157806370a082311461024457600080fd5b806301ffc9a71461015257806306fdde031461017a578063081812fc1461018f578063095ea7b3146101ba57806318160ddd146101cf575b600080fd5b6101656101603660046113cc565b610337565b60405190151581526020015b60405180910390f35b610182610389565b6040516101719190611521565b6101a261019d366004611471565b61041b565b6040516001600160a01b039091168152602001610171565b6101cd6101c83660046113a3565b61045f565b005b600154600054035b604051908152602001610171565b6101cd6101f3366004611259565b6104ed565b6101cd610206366004611259565b6104f8565b600a546101a2906001600160a01b031681565b6101cd61022c366004611404565b610513565b6101a261023f366004611471565b610552565b6101d761025236600461120d565b610564565b6101cd6105b3565b6009546001600160a01b03166101a2565b6101826105e9565b6101cd6102863660046113a3565b6105f8565b6101cd610299366004611369565b610658565b6101cd6102ac366004611294565b6106ee565b6101826102bf366004611471565b61073f565b6101826107c4565b6101cd6102da36600461120d565b610852565b6101d760085481565b6101656102f6366004611227565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101cd61033236600461120d565b61089e565b60006001600160e01b031982166380ac58cd60e01b148061036857506001600160e01b03198216635b5e139f60e01b145b8061038357506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610398906115d8565b80601f01602080910402602001604051908101604052809291908181526020018280546103c4906115d8565b80156104115780601f106103e657610100808354040283529160200191610411565b820191906000526020600020905b8154815290600101906020018083116103f457829003601f168201915b5050505050905090565b600061042682610939565b610443576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061046a82610552565b9050806001600160a01b0316836001600160a01b0316141561049f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906104bf57506104bd81336102f6565b155b156104dd576040516367d9dca160e11b815260040160405180910390fd5b6104e8838383610964565b505050565b6104e88383836109c0565b6104e8838383604051806020016040528060008152506106ee565b6009546001600160a01b031633146105465760405162461bcd60e51b815260040161053d90611534565b60405180910390fd5b6104e8600b8383611158565b600061055d82610bd6565b5192915050565b60006001600160a01b03821661058d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6009546001600160a01b031633146105dd5760405162461bcd60e51b815260040161053d90611534565b6105e76000610cf2565b565b606060038054610398906115d8565b600a546001600160a01b0316331461064a5760405162461bcd60e51b815260206004820152601560248201527413db9b1e481b585b9859d95c8818d85b881b5a5b9d605a1b604482015260640161053d565b6106548282610d44565b5050565b6001600160a01b0382163314156106825760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6106f98484846109c0565b6001600160a01b0383163b1515801561071b575061071984848484610d5e565b155b15610739576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061074a82610939565b61076757604051630a14c4b560e41b815260040160405180910390fd5b6000610771610e56565b905080516000141561079257604051806020016040528060008152506107bd565b8061079c84610e65565b6040516020016107ad9291906114b5565b6040516020818303038152906040525b9392505050565b600b80546107d1906115d8565b80601f01602080910402602001604051908101604052809291908181526020018280546107fd906115d8565b801561084a5780601f1061081f5761010080835404028352916020019161084a565b820191906000526020600020905b81548152906001019060200180831161082d57829003601f168201915b505050505081565b6009546001600160a01b0316331461087c5760405162461bcd60e51b815260040161053d90611534565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6009546001600160a01b031633146108c85760405162461bcd60e51b815260040161053d90611534565b6001600160a01b03811661092d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161053d565b61093681610cf2565b50565b6000805482108015610383575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006109cb82610bd6565b80519091506000906001600160a01b0316336001600160a01b031614806109f9575081516109f990336102f6565b80610a14575033610a098461041b565b6001600160a01b0316145b905080610a3457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610a695760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610a9057604051633a954ecd60e21b815260040160405180910390fd5b610aa06000848460000151610964565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610b8c57600054811015610b8c578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015610cd957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610cd75780516001600160a01b031615610c6d579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610cd2579392505050565b610c6d565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610654828260405180602001604052806000815250610f7f565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610d939033908990889088906004016114e4565b602060405180830381600087803b158015610dad57600080fd5b505af1925050508015610ddd575060408051601f3d908101601f19168201909252610dda918101906113e8565b60015b610e38573d808015610e0b576040519150601f19603f3d011682016040523d82523d6000602084013e610e10565b606091505b508051610e30576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b8054610398906115d8565b606081610e895750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610eb35780610e9d81611613565b9150610eac9050600a83611581565b9150610e8d565b60008167ffffffffffffffff811115610edc57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610f06576020820181803683370190505b5090505b8415610e4e57610f1b600183611595565b9150610f28600a8661162e565b610f33906030611569565b60f81b818381518110610f5657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350610f78600a86611581565b9450610f0a565b6104e883838360016000546001600160a01b038516610fb057604051622e076360e81b815260040160405180910390fd5b83610fce5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561108057506001600160a01b0387163b15155b15611109575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46110d16000888480600101955088610d5e565b6110ee576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561108657826000541461110457600080fd5b61114f565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561110a575b50600055610bcf565b828054611164906115d8565b90600052602060002090601f01602090048101928261118657600085556111cc565b82601f1061119f5782800160ff198235161785556111cc565b828001600101855582156111cc579182015b828111156111cc5782358255916020019190600101906111b1565b506111d89291506111dc565b5090565b5b808211156111d857600081556001016111dd565b80356001600160a01b038116811461120857600080fd5b919050565b60006020828403121561121e578081fd5b6107bd826111f1565b60008060408385031215611239578081fd5b611242836111f1565b9150611250602084016111f1565b90509250929050565b60008060006060848603121561126d578081fd5b611276846111f1565b9250611284602085016111f1565b9150604084013590509250925092565b600080600080608085870312156112a9578081fd5b6112b2856111f1565b93506112c0602086016111f1565b925060408501359150606085013567ffffffffffffffff808211156112e3578283fd5b818701915087601f8301126112f6578283fd5b8135818111156113085761130861166e565b604051601f8201601f19908116603f011681019083821181831017156113305761133061166e565b816040528281528a6020848701011115611348578586fd5b82602086016020830137918201602001949094529598949750929550505050565b6000806040838503121561137b578182fd5b611384836111f1565b915060208301358015158114611398578182fd5b809150509250929050565b600080604083850312156113b5578182fd5b6113be836111f1565b946020939093013593505050565b6000602082840312156113dd578081fd5b81356107bd81611684565b6000602082840312156113f9578081fd5b81516107bd81611684565b60008060208385031215611416578182fd5b823567ffffffffffffffff8082111561142d578384fd5b818501915085601f830112611440578384fd5b81358181111561144e578485fd5b86602082850101111561145f578485fd5b60209290920196919550909350505050565b600060208284031215611482578081fd5b5035919050565b600081518084526114a18160208601602086016115ac565b601f01601f19169290920160200192915050565b600083516114c78184602088016115ac565b8351908301906114db8183602088016115ac565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061151790830184611489565b9695505050505050565b6020815260006107bd6020830184611489565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561157c5761157c611642565b500190565b60008261159057611590611658565b500490565b6000828210156115a7576115a7611642565b500390565b60005b838110156115c75781810151838201526020016115af565b838111156107395750506000910152565b600181811c908216806115ec57607f821691505b6020821081141561160d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561162757611627611642565b5060010190565b60008261163d5761163d611658565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461093657600080fdfea26469706673582212209641be2e418bcf228d7e9e2001cb402e99e52a2fa8362fe3261bbb1797f0b5a164736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e436f6d62617420576f6d6261747300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024357000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Combat Wombats
Arg [1] : symbol_ (string): CW

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 436f6d62617420576f6d62617473000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 4357000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47463:806:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25719:266;;;;;;:::i;:::-;;:::i;:::-;;;5809:14:1;;5802:22;5784:41;;5772:2;5757:18;25719:266:0;;;;;;;;29065:100;;;:::i;:::-;;;;;;;:::i;30568:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5107:32:1;;;5089:51;;5077:2;5062:18;30568:204:0;5044:102:1;30131:371:0;;;;;;:::i;:::-;;:::i;:::-;;24968:303;25222:12;;25012:7;25206:13;:28;24968:303;;;7324:25:1;;;7312:2;7297:18;24968:303:0;7279:76:1;31425:170:0;;;;;;:::i;:::-;;:::i;31666:185::-;;;;;;:::i;:::-;;:::i;47526:22::-;;;;;-1:-1:-1;;;;;47526:22:0;;;48046:106;;;;;;:::i;:::-;;:::i;28874:124::-;;;;;;:::i;:::-;;:::i;26049:206::-;;;;;;:::i;:::-;;:::i;46590:103::-;;;:::i;45939:87::-;46012:6;;-1:-1:-1;;;;;46012:6:0;45939:87;;29234:104;;;:::i;47837:111::-;;;;;;:::i;:::-;;:::i;30844:279::-;;;;;;:::i;:::-;;:::i;31922:369::-;;;;;;:::i;:::-;;:::i;29409:318::-;;;;;;:::i;:::-;;:::i;47555:27::-;;;:::i;47956:82::-;;;;;;:::i;:::-;;:::i;43385:39::-;;;;;;31194:164;;;;;;:::i;:::-;-1:-1:-1;;;;;31315:25:0;;;31291:4;31315:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31194:164;46848:201;;;;;;:::i;:::-;;:::i;25719:266::-;25821:4;-1:-1:-1;;;;;;25845:40:0;;-1:-1:-1;;;25845:40:0;;:92;;-1:-1:-1;;;;;;;25889:48:0;;-1:-1:-1;;;25889:48:0;25845:92;:132;;;-1:-1:-1;;;;;;;;;;21186:40:0;;;25941:36;25838:139;25719:266;-1:-1:-1;;25719:266:0:o;29065:100::-;29119:13;29152:5;29145:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29065:100;:::o;30568:204::-;30636:7;30661:16;30669:7;30661;:16::i;:::-;30656:64;;30686:34;;-1:-1:-1;;;30686:34:0;;;;;;;;;;;30656:64;-1:-1:-1;30740:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30740:24:0;;30568:204::o;30131:371::-;30204:13;30220:24;30236:7;30220:15;:24::i;:::-;30204:40;;30265:5;-1:-1:-1;;;;;30259:11:0;:2;-1:-1:-1;;;;;30259:11:0;;30255:48;;;30279:24;;-1:-1:-1;;;30279:24:0;;;;;;;;;;;30255:48;17948:10;-1:-1:-1;;;;;30320:21:0;;;;;;:63;;-1:-1:-1;30346:37:0;30363:5;17948:10;31194:164;:::i;30346:37::-;30345:38;30320:63;30316:138;;;30407:35;;-1:-1:-1;;;30407:35:0;;;;;;;;;;;30316:138;30466:28;30475:2;30479:7;30488:5;30466:8;:28::i;:::-;30131:371;;;:::o;31425:170::-;31559:28;31569:4;31575:2;31579:7;31559:9;:28::i;31666:185::-;31804:39;31821:4;31827:2;31831:7;31804:39;;;;;;;;;;;;:16;:39::i;48046:106::-;46012:6;;-1:-1:-1;;;;;46012:6:0;17948:10;46159:23;46151:68;;;;-1:-1:-1;;;46151:68:0;;;;;;;:::i;:::-;;;;;;;;;48121:23:::1;:13;48137:7:::0;;48121:23:::1;:::i;28874:124::-:0;28938:7;28965:20;28977:7;28965:11;:20::i;:::-;:25;;28874:124;-1:-1:-1;;28874:124:0:o;26049:206::-;26113:7;-1:-1:-1;;;;;26137:19:0;;26133:60;;26165:28;;-1:-1:-1;;;26165:28:0;;;;;;;;;;;26133:60;-1:-1:-1;;;;;;26219:19:0;;;;;:12;:19;;;;;:27;;;;26049:206::o;46590:103::-;46012:6;;-1:-1:-1;;;;;46012:6:0;17948:10;46159:23;46151:68;;;;-1:-1:-1;;;46151:68:0;;;;;;;:::i;:::-;46655:30:::1;46682:1;46655:18;:30::i;:::-;46590:103::o:0;29234:104::-;29290:13;29323:7;29316:14;;;;;:::i;47837:111::-;47633:7;;-1:-1:-1;;;;;47633:7:0;17948:10;47633:23;47625:57;;;;-1:-1:-1;;;47625:57:0;;6669:2:1;47625:57:0;;;6651:21:1;6708:2;6688:18;;;6681:30;-1:-1:-1;;;6727:18:1;;;6720:51;6788:18;;47625:57:0;6641:171:1;47625:57:0;47917:23:::1;47927:2;47931:8;47917:9;:23::i;:::-;47837:111:::0;;:::o;30844:279::-;-1:-1:-1;;;;;30935:24:0;;17948:10;30935:24;30931:54;;;30968:17;;-1:-1:-1;;;30968:17:0;;;;;;;;;;;30931:54;17948:10;30998:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30998:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30998:53:0;;;;;;;;;;31067:48;;5784:41:1;;;30998:42:0;;17948:10;31067:48;;5757:18:1;31067:48:0;;;;;;;30844:279;;:::o;31922:369::-;32089:28;32099:4;32105:2;32109:7;32089:9;:28::i;:::-;-1:-1:-1;;;;;32132:13:0;;10210:19;:23;;32132:76;;;;;32152:56;32183:4;32189:2;32193:7;32202:5;32152:30;:56::i;:::-;32151:57;32132:76;32128:156;;;32232:40;;-1:-1:-1;;;32232:40:0;;;;;;;;;;;32128:156;31922:369;;;;:::o;29409:318::-;29482:13;29513:16;29521:7;29513;:16::i;:::-;29508:59;;29538:29;;-1:-1:-1;;;29538:29:0;;;;;;;;;;;29508:59;29580:21;29604:10;:8;:10::i;:::-;29580:34;;29638:7;29632:21;29657:1;29632:26;;:87;;;;;;;;;;;;;;;;;29685:7;29694:18;:7;:16;:18::i;:::-;29668:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29632:87;29625:94;29409:318;-1:-1:-1;;;29409:318:0:o;47555:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47956:82::-;46012:6;;-1:-1:-1;;;;;46012:6:0;17948:10;46159:23;46151:68;;;;-1:-1:-1;;;46151:68:0;;;;;;;:::i;:::-;48018:7:::1;:12:::0;;-1:-1:-1;;;;;;48018:12:0::1;-1:-1:-1::0;;;;;48018:12:0;;;::::1;::::0;;;::::1;::::0;;47956:82::o;46848:201::-;46012:6;;-1:-1:-1;;;;;46012:6:0;17948:10;46159:23;46151:68;;;;-1:-1:-1;;;46151:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46937:22:0;::::1;46929:73;;;::::0;-1:-1:-1;;;46929:73:0;;6262:2:1;46929:73:0::1;::::0;::::1;6244:21:1::0;6301:2;6281:18;;;6274:30;6340:34;6320:18;;;6313:62;-1:-1:-1;;;6391:18:1;;;6384:36;6437:19;;46929:73:0::1;6234:228:1::0;46929:73:0::1;47013:28;47032:8;47013:18;:28::i;:::-;46848:201:::0;:::o;32546:174::-;32603:4;32667:13;;32657:7;:23;32627:85;;;;-1:-1:-1;;32685:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32685:27:0;;;;32684:28;;32546:174::o;40118:196::-;40233:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40233:29:0;-1:-1:-1;;;;;40233:29:0;;;;;;;;;40278:28;;40233:24;;40278:28;;;;;;;40118:196;;;:::o;35646:2086::-;35761:35;35799:20;35811:7;35799:11;:20::i;:::-;35874:18;;35761:58;;-1:-1:-1;35832:22:0;;-1:-1:-1;;;;;35858:34:0;17948:10;-1:-1:-1;;;;;35858:34:0;;:88;;;-1:-1:-1;35913:18:0;;35896:50;;17948:10;31194:164;:::i;35896:50::-;35858:128;;;-1:-1:-1;17948:10:0;35950:20;35962:7;35950:11;:20::i;:::-;-1:-1:-1;;;;;35950:36:0;;35858:128;35832:155;;36005:17;36000:66;;36031:35;;-1:-1:-1;;;36031:35:0;;;;;;;;;;;36000:66;36103:4;-1:-1:-1;;;;;36081:26:0;:13;:18;;;-1:-1:-1;;;;;36081:26:0;;36077:67;;36116:28;;-1:-1:-1;;;36116:28:0;;;;;;;;;;;36077:67;-1:-1:-1;;;;;36159:16:0;;36155:52;;36184:23;;-1:-1:-1;;;36184:23:0;;;;;;;;;;;36155:52;36328:49;36345:1;36349:7;36358:13;:18;;;36328:8;:49::i;:::-;-1:-1:-1;;;;;36673:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36673:31:0;;;;;;;-1:-1:-1;;36673:31:0;;;;;;;36719:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36719:29:0;;;;;;;;;;;36765:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36810:61:0;;;;-1:-1:-1;;;36855:15:0;36810:61;;;;;;;;;;;37145:11;;;37175:24;;;;;:29;37145:11;;37175:29;37171:445;;37400:13;;37386:11;:27;37382:219;;;37470:18;;;37438:24;;;:11;:24;;;;;;;;:50;;37553:28;;;;37511:70;;-1:-1:-1;;;37511:70:0;-1:-1:-1;;;;;;37511:70:0;;;-1:-1:-1;;;;;37438:50:0;;;37511:70;;;;;;;37382:219;35646:2086;37663:7;37659:2;-1:-1:-1;;;;;37644:27:0;37653:4;-1:-1:-1;;;;;37644:27:0;;;;;;;;;;;37682:42;35646:2086;;;;;:::o;27704:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27814:7:0;27897:13;;27890:4;:20;27859:886;;;27931:31;27965:17;;;:11;:17;;;;;;;;;27931:51;;;;;;;;;-1:-1:-1;;;;;27931:51:0;;;;-1:-1:-1;;;27931:51:0;;;;;;;;;;;-1:-1:-1;;;27931:51:0;;;;;;;;;;;;;;28001:729;;28051:14;;-1:-1:-1;;;;;28051:28:0;;28047:101;;28115:9;27704:1108;-1:-1:-1;;;27704:1108:0:o;28047:101::-;-1:-1:-1;;;28490:6:0;28535:17;;;;:11;:17;;;;;;;;;28523:29;;;;;;;;;-1:-1:-1;;;;;28523:29:0;;;;;-1:-1:-1;;;28523:29:0;;;;;;;;;;;-1:-1:-1;;;28523:29:0;;;;;;;;;;;;;28583:28;28579:109;;28651:9;27704:1108;-1:-1:-1;;;27704:1108:0:o;28579:109::-;28450:261;;;27859:886;;28773:31;;-1:-1:-1;;;28773:31:0;;;;;;;;;;;47209:191;47302:6;;;-1:-1:-1;;;;;47319:17:0;;;-1:-1:-1;;;;;;47319:17:0;;;;;;;47352:40;;47302:6;;;47319:17;47302:6;;47352:40;;47283:16;;47352:40;47209:191;;:::o;32728:104::-;32797:27;32807:2;32811:8;32797:27;;;;;;;;;;;;:9;:27::i;40806:667::-;40990:72;;-1:-1:-1;;;40990:72:0;;40969:4;;-1:-1:-1;;;;;40990:36:0;;;;;:72;;17948:10;;41041:4;;41047:7;;41056:5;;40990:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40990:72:0;;;;;;;;-1:-1:-1;;40990:72:0;;;;;;;;;;;;:::i;:::-;;;40986:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41224:13:0;;41220:235;;41270:40;;-1:-1:-1;;;41270:40:0;;;;;;;;;;;41220:235;41413:6;41407:13;41398:6;41394:2;41390:15;41383:38;40986:480;-1:-1:-1;;;;;;41109:55:0;-1:-1:-1;;;41109:55:0;;-1:-1:-1;40986:480:0;40806:667;;;;;;:::o;48160:106::-;48212:13;48245;48238:20;;;;;:::i;18451:723::-;18507:13;18728:10;18724:53;;-1:-1:-1;;18755:10:0;;;;;;;;;;;;-1:-1:-1;;;18755:10:0;;;;;18451:723::o;18724:53::-;18802:5;18787:12;18843:78;18850:9;;18843:78;;18876:8;;;;:::i;:::-;;-1:-1:-1;18899:10:0;;-1:-1:-1;18907:2:0;18899:10;;:::i;:::-;;;18843:78;;;18931:19;18963:6;18953:17;;;;;;-1:-1:-1;;;18953:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18953:17:0;;18931:39;;18981:154;18988:10;;18981:154;;19015:11;19025:1;19015:11;;:::i;:::-;;-1:-1:-1;19084:10:0;19092:2;19084:5;:10;:::i;:::-;19071:24;;:2;:24;:::i;:::-;19058:39;;19041:6;19048;19041:14;;;;;;-1:-1:-1;;;19041:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;19041:56:0;;;;;;;;-1:-1:-1;19112:11:0;19121:2;19112:11;;:::i;:::-;;;18981:154;;33195:163;33318:32;33324:2;33328:8;33338:5;33345:4;33756:20;33779:13;-1:-1:-1;;;;;33807:16:0;;33803:48;;33832:19;;-1:-1:-1;;;33832:19:0;;;;;;;;;;;33803:48;33866:13;33862:44;;33888:18;;-1:-1:-1;;;33888:18:0;;;;;;;;;;;33862:44;-1:-1:-1;;;;;34257:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34316:49:0;;34257:44;;;;;;;;34316:49;;;;-1:-1:-1;;34257:44:0;;;;;;34316:49;;;;;;;;;;;;;;;;34382:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;34432:66:0;;;;-1:-1:-1;;;34482:15:0;34432:66;;;;;;;;;;34382:25;34579:23;;;34623:4;:23;;;;-1:-1:-1;;;;;;34631:13:0;;10210:19;:23;;34631:15;34619:641;;;34667:314;34698:38;;34723:12;;-1:-1:-1;;;;;34698:38:0;;;34715:1;;34698:38;;34715:1;;34698:38;34764:69;34803:1;34807:2;34811:14;;;;;;34827:5;34764:30;:69::i;:::-;34759:174;;34869:40;;-1:-1:-1;;;34869:40:0;;;;;;;;;;;34759:174;34976:3;34960:12;:19;;34667:314;;35062:12;35045:13;;:29;35041:43;;35076:8;;;35041:43;34619:641;;;35125:120;35156:40;;35181:14;;;;;-1:-1:-1;;;;;35156:40:0;;;35173:1;;35156:40;;35173:1;;35156:40;35240:3;35224:12;:19;;35125:120;;34619:641;-1:-1:-1;35274:13:0;:28;35324:60;31922:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:1183::-;1106:6;1114;1122;1130;1183:3;1171:9;1162:7;1158:23;1154:33;1151:2;;;1205:6;1197;1190:22;1151:2;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:38;1315:2;1304:9;1300:18;1281:38;:::i;:::-;1271:48;;1366:2;1355:9;1351:18;1338:32;1328:42;;1421:2;1410:9;1406:18;1393:32;1444:18;1485:2;1477:6;1474:14;1471:2;;;1506:6;1498;1491:22;1471:2;1549:6;1538:9;1534:22;1524:32;;1594:7;1587:4;1583:2;1579:13;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1662;1649:16;1684:2;1680;1677:10;1674:2;;;1690:18;;:::i;:::-;1765:2;1759:9;1733:2;1819:13;;-1:-1:-1;;1815:22:1;;;1839:2;1811:31;1807:40;1795:53;;;1863:18;;;1883:22;;;1860:46;1857:2;;;1909:18;;:::i;:::-;1949:10;1945:2;1938:22;1984:2;1976:6;1969:18;2024:7;2019:2;2014;2010;2006:11;2002:20;1999:33;1996:2;;;2050:6;2042;2035:22;1996:2;2111;2106;2102;2098:11;2093:2;2085:6;2081:15;2068:46;2134:15;;;2151:2;2130:24;2123:40;;;;1141:1053;;;;-1:-1:-1;1141:1053:1;;-1:-1:-1;;;;1141:1053:1:o;2199:367::-;2264:6;2272;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2346:6;2338;2331:22;2293:2;2374:29;2393:9;2374:29;:::i;:::-;2364:39;;2453:2;2442:9;2438:18;2425:32;2500:5;2493:13;2486:21;2479:5;2476:32;2466:2;;2527:6;2519;2512:22;2466:2;2555:5;2545:15;;;2283:283;;;;;:::o;2571:264::-;2639:6;2647;2700:2;2688:9;2679:7;2675:23;2671:32;2668:2;;;2721:6;2713;2706:22;2668:2;2749:29;2768:9;2749:29;:::i;:::-;2739:39;2825:2;2810:18;;;;2797:32;;-1:-1:-1;;;2658:177:1:o;2840:255::-;2898:6;2951:2;2939:9;2930:7;2926:23;2922:32;2919:2;;;2972:6;2964;2957:22;2919:2;3016:9;3003:23;3035:30;3059:5;3035:30;:::i;3100:259::-;3169:6;3222:2;3210:9;3201:7;3197:23;3193:32;3190:2;;;3243:6;3235;3228:22;3190:2;3280:9;3274:16;3299:30;3323:5;3299:30;:::i;3364:642::-;3435:6;3443;3496:2;3484:9;3475:7;3471:23;3467:32;3464:2;;;3517:6;3509;3502:22;3464:2;3562:9;3549:23;3591:18;3632:2;3624:6;3621:14;3618:2;;;3653:6;3645;3638:22;3618:2;3696:6;3685:9;3681:22;3671:32;;3741:7;3734:4;3730:2;3726:13;3722:27;3712:2;;3768:6;3760;3753:22;3712:2;3813;3800:16;3839:2;3831:6;3828:14;3825:2;;;3860:6;3852;3845:22;3825:2;3910:7;3905:2;3896:6;3892:2;3888:15;3884:24;3881:37;3878:2;;;3936:6;3928;3921:22;3878:2;3972;3964:11;;;;;3994:6;;-1:-1:-1;3454:552:1;;-1:-1:-1;;;;3454:552:1:o;4011:190::-;4070:6;4123:2;4111:9;4102:7;4098:23;4094:32;4091:2;;;4144:6;4136;4129:22;4091:2;-1:-1:-1;4172:23:1;;4081:120;-1:-1:-1;4081:120:1:o;4206:257::-;4247:3;4285:5;4279:12;4312:6;4307:3;4300:19;4328:63;4384:6;4377:4;4372:3;4368:14;4361:4;4354:5;4350:16;4328:63;:::i;:::-;4445:2;4424:15;-1:-1:-1;;4420:29:1;4411:39;;;;4452:4;4407:50;;4255:208;-1:-1:-1;;4255:208:1:o;4468:470::-;4647:3;4685:6;4679:13;4701:53;4747:6;4742:3;4735:4;4727:6;4723:17;4701:53;:::i;:::-;4817:13;;4776:16;;;;4839:57;4817:13;4776:16;4873:4;4861:17;;4839:57;:::i;:::-;4912:20;;4655:283;-1:-1:-1;;;;4655:283:1:o;5151:488::-;-1:-1:-1;;;;;5420:15:1;;;5402:34;;5472:15;;5467:2;5452:18;;5445:43;5519:2;5504:18;;5497:34;;;5567:3;5562:2;5547:18;;5540:31;;;5345:4;;5588:45;;5613:19;;5605:6;5588:45;:::i;:::-;5580:53;5354:285;-1:-1:-1;;;;;;5354:285:1:o;5836:219::-;5985:2;5974:9;5967:21;5948:4;6005:44;6045:2;6034:9;6030:18;6022:6;6005:44;:::i;6817:356::-;7019:2;7001:21;;;7038:18;;;7031:30;7097:34;7092:2;7077:18;;7070:62;7164:2;7149:18;;6991:182::o;7360:128::-;7400:3;7431:1;7427:6;7424:1;7421:13;7418:2;;;7437:18;;:::i;:::-;-1:-1:-1;7473:9:1;;7408:80::o;7493:120::-;7533:1;7559;7549:2;;7564:18;;:::i;:::-;-1:-1:-1;7598:9:1;;7539:74::o;7618:125::-;7658:4;7686:1;7683;7680:8;7677:2;;;7691:18;;:::i;:::-;-1:-1:-1;7728:9:1;;7667:76::o;7748:258::-;7820:1;7830:113;7844:6;7841:1;7838:13;7830:113;;;7920:11;;;7914:18;7901:11;;;7894:39;7866:2;7859:10;7830:113;;;7961:6;7958:1;7955:13;7952:2;;;-1:-1:-1;;7996:1:1;7978:16;;7971:27;7801:205::o;8011:380::-;8090:1;8086:12;;;;8133;;;8154:2;;8208:4;8200:6;8196:17;8186:27;;8154:2;8261;8253:6;8250:14;8230:18;8227:38;8224:2;;;8307:10;8302:3;8298:20;8295:1;8288:31;8342:4;8339:1;8332:15;8370:4;8367:1;8360:15;8224:2;;8066:325;;;:::o;8396:135::-;8435:3;-1:-1:-1;;8456:17:1;;8453:2;;;8476:18;;:::i;:::-;-1:-1:-1;8523:1:1;8512:13;;8443:88::o;8536:112::-;8568:1;8594;8584:2;;8599:18;;:::i;:::-;-1:-1:-1;8633:9:1;;8574:74::o;8653:127::-;8714:10;8709:3;8705:20;8702:1;8695:31;8745:4;8742:1;8735:15;8769:4;8766:1;8759:15;8785:127;8846:10;8841:3;8837:20;8834:1;8827:31;8877:4;8874:1;8867:15;8901:4;8898:1;8891:15;8917:127;8978:10;8973:3;8969:20;8966:1;8959:31;9009:4;9006:1;8999:15;9033:4;9030:1;9023:15;9049:131;-1:-1:-1;;;;;;9123:32:1;;9113:43;;9103:2;;9170:1;9167;9160:12

Swarm Source

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