ETH Price: $2,394.53 (-3.36%)

Token

Koga Ninjas (KOGA)
 

Overview

Max Total Supply

1,004 KOGA

Holders

58

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
lucille-13aller.eth
Balance
1 KOGA
0x29ce78dc0f2a5b40dac18768c25f86e4199f3f1e
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:
KogaNinjas

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-11
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// 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/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts 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: @openzeppelin/contracts/utils/Address.sol


// 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/token/ERC721/IERC721Receiver.sol


// 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/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts 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/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 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: contracts/koganinjas.sol

//Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721

pragma solidity ^0.8.4;






contract KogaNinjas is ERC721A, Ownable {
  constructor() ERC721A("Koga Ninjas", "KOGA") {}
  using Address for address;
  using Strings for uint;

  uint64  public  immutable _maxSupply = 5555;
  uint64  private immutable _maxMintAmountPerTx = 10;
  string  public  _baseTokenURI;
  string  public _prereveal = "ipfs://QmWh4oPNewSw64ixeYnxFVWVRBiPYCikFZ2gGTSWzAUzqQ/";
  address public constant devAddress = 0xcf473B3C83D9bf00B0994bc413363d24552eB525;


  function mintCompliance(
    uint quantity
  ) 
    private
  {
    if(totalSupply() + quantity <= 1000){
      require(
        msg.value == 0.00 ether * quantity,
        "Incorrect payment");
    }
    else if(totalSupply() + quantity <= 2000){
      require(
        msg.value == 0.01 ether * quantity,
        "Incorrect payment");
    }
    else if(totalSupply() + quantity <= 3000){
      require(
        msg.value == 0.03 ether * quantity,
        "Incorrect payment");
    }
    else if(totalSupply() + quantity <= 4000){
      require(
        msg.value == 0.05 ether * quantity,
        "Incorrect payment");
    }
    else{
      require(
        msg.value == 0.08 ether * quantity,
        "Incorrect payment");
    }
    require(
      quantity > 0 && quantity <= _maxMintAmountPerTx,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= _maxSupply,
      "Maximum supply exceeded"
    );
  }


  function Mint(
    uint8 quantity
  )
    public
    payable
  {
    mintCompliance(quantity);
    _safeMint(msg.sender, quantity);
  }

  function withdraw()
    public
    onlyOwner
  {
    uint total = address(this).balance;
    Address.sendValue(payable(devAddress), total);
  }

  function setBaseURI(string memory baseURI)
    public
    onlyOwner
  {
    _baseTokenURI = baseURI;
  }

  function tokenURI(uint _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
	if(bytes(_baseTokenURI).length == 0 ){
    	return string(abi.encodePacked(_prereveal));
	}
	else{
		return string(abi.encodePacked(_baseTokenURI, _tokenId.toString(),".json"));
	}
  }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_prereveal","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":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6115b360c01b608052600560c11b60a052610120604052603660c08181529062001ecd60e03980516200003b91600a916020909101906200011a565b503480156200004957600080fd5b50604080518082018252600b81526a4b6f6761204e696e6a617360a81b6020808301918252835180850190945260048452634b4f474160e01b90840152815191929162000099916002916200011a565b508051620000af9060039060208401906200011a565b5050600160005550620000c233620000c8565b620001fd565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012890620001c0565b90600052602060002090601f0160209004810192826200014c576000855562000197565b82601f106200016757805160ff191683800117855562000197565b8280016001018555821562000197579182015b82811115620001975782518255916020019190600101906200017a565b50620001a5929150620001a9565b5090565b5b80821115620001a55760008155600101620001aa565b600181811c90821680620001d557607f821691505b60208210811415620001f757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160c01c60a05160c01c611c9d62000230600039600061114d01526000818161023601526111bd0152611c9d6000f3fe60806040526004361061014b5760003560e01c80636352211e116100b6578063a2522d2d1161006f578063a2522d2d146103ca578063b88d4fde146103dd578063c87b56dd146103fd578063cfc86f7b1461041d578063e985e9c514610432578063f2fde38b1461047b57600080fd5b80636352211e1461032257806370a0823114610342578063715018a6146103625780638da5cb5b1461037757806395d89b4114610395578063a22cb465146103aa57600080fd5b806323b872dd1161010857806323b872dd146102705780633ad10ef6146102905780633af708d1146102b85780633ccfd60b146102cd57806342842e0e146102e257806355f804b31461030257600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df57806318160ddd1461020157806322f4596f14610224575b600080fd5b34801561015c57600080fd5b5061017061016b3660046118d7565b61049b565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a6104ed565b60405161017c9190611acf565b3480156101b357600080fd5b506101c76101c2366004611954565b61057f565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa3660046118ae565b6105c3565b005b34801561020d57600080fd5b50610216610651565b60405190815260200161017c565b34801561023057600080fd5b506102587f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160401b03909116815260200161017c565b34801561027c57600080fd5b506101ff61028b3660046117c1565b61065f565b34801561029c57600080fd5b506101c773cf473b3c83d9bf00b0994bc413363d24552eb52581565b3480156102c457600080fd5b5061019a61066a565b3480156102d957600080fd5b506101ff6106f8565b3480156102ee57600080fd5b506101ff6102fd3660046117c1565b61074d565b34801561030e57600080fd5b506101ff61031d36600461190f565b610768565b34801561032e57600080fd5b506101c761033d366004611954565b6107a9565b34801561034e57600080fd5b5061021661035d36600461176e565b6107bb565b34801561036e57600080fd5b506101ff610809565b34801561038357600080fd5b506008546001600160a01b03166101c7565b3480156103a157600080fd5b5061019a61083f565b3480156103b657600080fd5b506101ff6103c5366004611874565b61084e565b6101ff6103d836600461196c565b6108e4565b3480156103e957600080fd5b506101ff6103f83660046117fc565b6108fd565b34801561040957600080fd5b5061019a610418366004611954565b61094e565b34801561042957600080fd5b5061019a610a1b565b34801561043e57600080fd5b5061017061044d36600461178f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561048757600080fd5b506101ff61049636600461176e565b610a28565b60006001600160e01b031982166380ac58cd60e01b14806104cc57506001600160e01b03198216635b5e139f60e01b145b806104e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546104fc90611ba5565b80601f016020809104026020016040519081016040528092919081815260200182805461052890611ba5565b80156105755780601f1061054a57610100808354040283529160200191610575565b820191906000526020600020905b81548152906001019060200180831161055857829003601f168201915b5050505050905090565b600061058a82610ac0565b6105a7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105ce826107a9565b9050806001600160a01b0316836001600160a01b031614156106035760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106235750610621813361044d565b155b15610641576040516367d9dca160e11b815260040160405180910390fd5b61064c838383610af9565b505050565b600154600054036000190190565b61064c838383610b55565b600a805461067790611ba5565b80601f01602080910402602001604051908101604052809291908181526020018280546106a390611ba5565b80156106f05780601f106106c5576101008083540402835291602001916106f0565b820191906000526020600020905b8154815290600101906020018083116106d357829003601f168201915b505050505081565b6008546001600160a01b0316331461072b5760405162461bcd60e51b815260040161072290611ae2565b60405180910390fd5b4761074a73cf473b3c83d9bf00b0994bc413363d24552eb52582610d69565b50565b61064c838383604051806020016040528060008152506108fd565b6008546001600160a01b031633146107925760405162461bcd60e51b815260040161072290611ae2565b80516107a5906009906020840190611649565b5050565b60006107b482610e82565b5192915050565b60006001600160a01b0382166107e4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146108335760405162461bcd60e51b815260040161072290611ae2565b61083d6000610fa9565b565b6060600380546104fc90611ba5565b6001600160a01b0382163314156108785760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108f08160ff16610ffb565b61074a338260ff16611246565b610908848484610b55565b6001600160a01b0383163b1515801561092a575061092884848484611260565b155b15610948576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061095982610ac0565b6109bd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610722565b600980546109ca90611ba5565b151590506109fa57600a6040516020016109e49190611a51565b6040516020818303038152906040529050919050565b6009610a0583611358565b6040516020016109e4929190611a5d565b919050565b6009805461067790611ba5565b6008546001600160a01b03163314610a525760405162461bcd60e51b815260040161072290611ae2565b6001600160a01b038116610ab75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610722565b61074a81610fa9565b600081600111158015610ad4575060005482105b80156104e7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610b6082610e82565b80519091506000906001600160a01b0316336001600160a01b03161480610b8e57508151610b8e903361044d565b80610ba9575033610b9e8461057f565b6001600160a01b0316145b905080610bc957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610bfe5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610c2557604051633a954ecd60e21b815260040160405180910390fd5b610c356000848460000151610af9565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610d1f57600054811015610d1f57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80471015610db95760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610722565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610e06576040519150601f19603f3d011682016040523d82523d6000602084013e610e0b565b606091505b505090508061064c5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610722565b60408051606081018252600080825260208201819052918101919091528180600111158015610eb2575060005481105b15610f9057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610f8e5780516001600160a01b031615610f25579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215610f89579392505050565b610f25565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6103e881611007610651565b6110119190611b17565b1161106857611021816000611b43565b34146110635760405162461bcd60e51b8152602060048201526011602482015270125b98dbdc9c9958dd081c185e5b595b9d607a1b6044820152606401610722565b611140565b6107d081611074610651565b61107e9190611b17565b116110945761102181662386f26fc10000611b43565b610bb8816110a0610651565b6110aa9190611b17565b116110c05761102181666a94d74f430000611b43565b610fa0816110cc610651565b6110d69190611b17565b116110ec576110218166b1a2bc2ec50000611b43565b6110fe8167011c37937e080000611b43565b34146111405760405162461bcd60e51b8152602060048201526011602482015270125b98dbdc9c9958dd081c185e5b595b9d607a1b6044820152606401610722565b60008111801561117957507f00000000000000000000000000000000000000000000000000000000000000006001600160401b03168111155b6111bb5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610722565b7f00000000000000000000000000000000000000000000000000000000000000006001600160401b0316816111ee610651565b6111f89190611b17565b111561074a5760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c792065786365656465640000000000000000006044820152606401610722565b6107a5828260405180602001604052806000815250611471565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611295903390899088908890600401611a92565b602060405180830381600087803b1580156112af57600080fd5b505af19250505080156112df575060408051601f3d908101601f191682019092526112dc918101906118f3565b60015b61133a573d80801561130d576040519150601f19603f3d011682016040523d82523d6000602084013e611312565b606091505b508051611332576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161137c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113a6578061139081611be0565b915061139f9050600a83611b2f565b9150611380565b6000816001600160401b038111156113ce57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156113f8576020820181803683370190505b5090505b84156113505761140d600183611b62565b915061141a600a86611bfb565b611425906030611b17565b60f81b81838151811061144857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061146a600a86611b2f565b94506113fc565b61064c83838360016000546001600160a01b0385166114a257604051622e076360e81b815260040160405180910390fd5b836114c05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561157157506001600160a01b0387163b15155b156115fa575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46115c26000888480600101955088611260565b6115df576040516368d2bf6b60e11b815260040160405180910390fd5b808214156115775782600054146115f557600080fd5b611640565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156115fb575b50600055610d62565b82805461165590611ba5565b90600052602060002090601f01602090048101928261167757600085556116bd565b82601f1061169057805160ff19168380011785556116bd565b828001600101855582156116bd579182015b828111156116bd5782518255916020019190600101906116a2565b506116c99291506116cd565b5090565b5b808211156116c957600081556001016116ce565b60006001600160401b03808411156116fc576116fc611c3b565b604051601f8501601f19908116603f0116810190828211818310171561172457611724611c3b565b8160405280935085815286868601111561173d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610a1657600080fd5b60006020828403121561177f578081fd5b61178882611757565b9392505050565b600080604083850312156117a1578081fd5b6117aa83611757565b91506117b860208401611757565b90509250929050565b6000806000606084860312156117d5578081fd5b6117de84611757565b92506117ec60208501611757565b9150604084013590509250925092565b60008060008060808587031215611811578081fd5b61181a85611757565b935061182860208601611757565b92506040850135915060608501356001600160401b03811115611849578182fd5b8501601f81018713611859578182fd5b611868878235602084016116e2565b91505092959194509250565b60008060408385031215611886578182fd5b61188f83611757565b9150602083013580151581146118a3578182fd5b809150509250929050565b600080604083850312156118c0578182fd5b6118c983611757565b946020939093013593505050565b6000602082840312156118e8578081fd5b813561178881611c51565b600060208284031215611904578081fd5b815161178881611c51565b600060208284031215611920578081fd5b81356001600160401b03811115611935578182fd5b8201601f81018413611945578182fd5b611350848235602084016116e2565b600060208284031215611965578081fd5b5035919050565b60006020828403121561197d578081fd5b813560ff81168114611788578182fd5b600081518084526119a5816020860160208601611b79565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806119d357607f831692505b60208084108214156119f357634e487b7160e01b86526022600452602486fd5b818015611a075760018114611a1857611a45565b60ff19861689528489019650611a45565b60008881526020902060005b86811015611a3d5781548b820152908501908301611a24565b505084890196505b50505050505092915050565b600061178882846119b9565b6000611a6982856119b9565b8351611a79818360208801611b79565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ac59083018461198d565b9695505050505050565b602081526000611788602083018461198d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611b2a57611b2a611c0f565b500190565b600082611b3e57611b3e611c25565b500490565b6000816000190483118215151615611b5d57611b5d611c0f565b500290565b600082821015611b7457611b74611c0f565b500390565b60005b83811015611b94578181015183820152602001611b7c565b838111156109485750506000910152565b600181811c90821680611bb957607f821691505b60208210811415611bda57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611bf457611bf4611c0f565b5060010190565b600082611c0a57611c0a611c25565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461074a57600080fdfea26469706673582212205c1d2d897899b7253027de051e5f777ed37d6dfaa7d870b24016390b8fedd9cf64736f6c63430008040033697066733a2f2f516d5768346f504e657753773634697865596e7846565756524269505943696b465a3267475453577a41557a71512f

Deployed Bytecode

0x60806040526004361061014b5760003560e01c80636352211e116100b6578063a2522d2d1161006f578063a2522d2d146103ca578063b88d4fde146103dd578063c87b56dd146103fd578063cfc86f7b1461041d578063e985e9c514610432578063f2fde38b1461047b57600080fd5b80636352211e1461032257806370a0823114610342578063715018a6146103625780638da5cb5b1461037757806395d89b4114610395578063a22cb465146103aa57600080fd5b806323b872dd1161010857806323b872dd146102705780633ad10ef6146102905780633af708d1146102b85780633ccfd60b146102cd57806342842e0e146102e257806355f804b31461030257600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df57806318160ddd1461020157806322f4596f14610224575b600080fd5b34801561015c57600080fd5b5061017061016b3660046118d7565b61049b565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a6104ed565b60405161017c9190611acf565b3480156101b357600080fd5b506101c76101c2366004611954565b61057f565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa3660046118ae565b6105c3565b005b34801561020d57600080fd5b50610216610651565b60405190815260200161017c565b34801561023057600080fd5b506102587f00000000000000000000000000000000000000000000000000000000000015b381565b6040516001600160401b03909116815260200161017c565b34801561027c57600080fd5b506101ff61028b3660046117c1565b61065f565b34801561029c57600080fd5b506101c773cf473b3c83d9bf00b0994bc413363d24552eb52581565b3480156102c457600080fd5b5061019a61066a565b3480156102d957600080fd5b506101ff6106f8565b3480156102ee57600080fd5b506101ff6102fd3660046117c1565b61074d565b34801561030e57600080fd5b506101ff61031d36600461190f565b610768565b34801561032e57600080fd5b506101c761033d366004611954565b6107a9565b34801561034e57600080fd5b5061021661035d36600461176e565b6107bb565b34801561036e57600080fd5b506101ff610809565b34801561038357600080fd5b506008546001600160a01b03166101c7565b3480156103a157600080fd5b5061019a61083f565b3480156103b657600080fd5b506101ff6103c5366004611874565b61084e565b6101ff6103d836600461196c565b6108e4565b3480156103e957600080fd5b506101ff6103f83660046117fc565b6108fd565b34801561040957600080fd5b5061019a610418366004611954565b61094e565b34801561042957600080fd5b5061019a610a1b565b34801561043e57600080fd5b5061017061044d36600461178f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561048757600080fd5b506101ff61049636600461176e565b610a28565b60006001600160e01b031982166380ac58cd60e01b14806104cc57506001600160e01b03198216635b5e139f60e01b145b806104e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546104fc90611ba5565b80601f016020809104026020016040519081016040528092919081815260200182805461052890611ba5565b80156105755780601f1061054a57610100808354040283529160200191610575565b820191906000526020600020905b81548152906001019060200180831161055857829003601f168201915b5050505050905090565b600061058a82610ac0565b6105a7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105ce826107a9565b9050806001600160a01b0316836001600160a01b031614156106035760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106235750610621813361044d565b155b15610641576040516367d9dca160e11b815260040160405180910390fd5b61064c838383610af9565b505050565b600154600054036000190190565b61064c838383610b55565b600a805461067790611ba5565b80601f01602080910402602001604051908101604052809291908181526020018280546106a390611ba5565b80156106f05780601f106106c5576101008083540402835291602001916106f0565b820191906000526020600020905b8154815290600101906020018083116106d357829003601f168201915b505050505081565b6008546001600160a01b0316331461072b5760405162461bcd60e51b815260040161072290611ae2565b60405180910390fd5b4761074a73cf473b3c83d9bf00b0994bc413363d24552eb52582610d69565b50565b61064c838383604051806020016040528060008152506108fd565b6008546001600160a01b031633146107925760405162461bcd60e51b815260040161072290611ae2565b80516107a5906009906020840190611649565b5050565b60006107b482610e82565b5192915050565b60006001600160a01b0382166107e4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146108335760405162461bcd60e51b815260040161072290611ae2565b61083d6000610fa9565b565b6060600380546104fc90611ba5565b6001600160a01b0382163314156108785760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108f08160ff16610ffb565b61074a338260ff16611246565b610908848484610b55565b6001600160a01b0383163b1515801561092a575061092884848484611260565b155b15610948576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061095982610ac0565b6109bd5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610722565b600980546109ca90611ba5565b151590506109fa57600a6040516020016109e49190611a51565b6040516020818303038152906040529050919050565b6009610a0583611358565b6040516020016109e4929190611a5d565b919050565b6009805461067790611ba5565b6008546001600160a01b03163314610a525760405162461bcd60e51b815260040161072290611ae2565b6001600160a01b038116610ab75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610722565b61074a81610fa9565b600081600111158015610ad4575060005482105b80156104e7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610b6082610e82565b80519091506000906001600160a01b0316336001600160a01b03161480610b8e57508151610b8e903361044d565b80610ba9575033610b9e8461057f565b6001600160a01b0316145b905080610bc957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610bfe5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610c2557604051633a954ecd60e21b815260040160405180910390fd5b610c356000848460000151610af9565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610d1f57600054811015610d1f57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b80471015610db95760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610722565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114610e06576040519150601f19603f3d011682016040523d82523d6000602084013e610e0b565b606091505b505090508061064c5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610722565b60408051606081018252600080825260208201819052918101919091528180600111158015610eb2575060005481105b15610f9057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610f8e5780516001600160a01b031615610f25579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215610f89579392505050565b610f25565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6103e881611007610651565b6110119190611b17565b1161106857611021816000611b43565b34146110635760405162461bcd60e51b8152602060048201526011602482015270125b98dbdc9c9958dd081c185e5b595b9d607a1b6044820152606401610722565b611140565b6107d081611074610651565b61107e9190611b17565b116110945761102181662386f26fc10000611b43565b610bb8816110a0610651565b6110aa9190611b17565b116110c05761102181666a94d74f430000611b43565b610fa0816110cc610651565b6110d69190611b17565b116110ec576110218166b1a2bc2ec50000611b43565b6110fe8167011c37937e080000611b43565b34146111405760405162461bcd60e51b8152602060048201526011602482015270125b98dbdc9c9958dd081c185e5b595b9d607a1b6044820152606401610722565b60008111801561117957507f000000000000000000000000000000000000000000000000000000000000000a6001600160401b03168111155b6111bb5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610722565b7f00000000000000000000000000000000000000000000000000000000000015b36001600160401b0316816111ee610651565b6111f89190611b17565b111561074a5760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c792065786365656465640000000000000000006044820152606401610722565b6107a5828260405180602001604052806000815250611471565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611295903390899088908890600401611a92565b602060405180830381600087803b1580156112af57600080fd5b505af19250505080156112df575060408051601f3d908101601f191682019092526112dc918101906118f3565b60015b61133a573d80801561130d576040519150601f19603f3d011682016040523d82523d6000602084013e611312565b606091505b508051611332576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161137c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113a6578061139081611be0565b915061139f9050600a83611b2f565b9150611380565b6000816001600160401b038111156113ce57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156113f8576020820181803683370190505b5090505b84156113505761140d600183611b62565b915061141a600a86611bfb565b611425906030611b17565b60f81b81838151811061144857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061146a600a86611b2f565b94506113fc565b61064c83838360016000546001600160a01b0385166114a257604051622e076360e81b815260040160405180910390fd5b836114c05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561157157506001600160a01b0387163b15155b156115fa575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46115c26000888480600101955088611260565b6115df576040516368d2bf6b60e11b815260040160405180910390fd5b808214156115775782600054146115f557600080fd5b611640565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156115fb575b50600055610d62565b82805461165590611ba5565b90600052602060002090601f01602090048101928261167757600085556116bd565b82601f1061169057805160ff19168380011785556116bd565b828001600101855582156116bd579182015b828111156116bd5782518255916020019190600101906116a2565b506116c99291506116cd565b5090565b5b808211156116c957600081556001016116ce565b60006001600160401b03808411156116fc576116fc611c3b565b604051601f8501601f19908116603f0116810190828211818310171561172457611724611c3b565b8160405280935085815286868601111561173d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610a1657600080fd5b60006020828403121561177f578081fd5b61178882611757565b9392505050565b600080604083850312156117a1578081fd5b6117aa83611757565b91506117b860208401611757565b90509250929050565b6000806000606084860312156117d5578081fd5b6117de84611757565b92506117ec60208501611757565b9150604084013590509250925092565b60008060008060808587031215611811578081fd5b61181a85611757565b935061182860208601611757565b92506040850135915060608501356001600160401b03811115611849578182fd5b8501601f81018713611859578182fd5b611868878235602084016116e2565b91505092959194509250565b60008060408385031215611886578182fd5b61188f83611757565b9150602083013580151581146118a3578182fd5b809150509250929050565b600080604083850312156118c0578182fd5b6118c983611757565b946020939093013593505050565b6000602082840312156118e8578081fd5b813561178881611c51565b600060208284031215611904578081fd5b815161178881611c51565b600060208284031215611920578081fd5b81356001600160401b03811115611935578182fd5b8201601f81018413611945578182fd5b611350848235602084016116e2565b600060208284031215611965578081fd5b5035919050565b60006020828403121561197d578081fd5b813560ff81168114611788578182fd5b600081518084526119a5816020860160208601611b79565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806119d357607f831692505b60208084108214156119f357634e487b7160e01b86526022600452602486fd5b818015611a075760018114611a1857611a45565b60ff19861689528489019650611a45565b60008881526020902060005b86811015611a3d5781548b820152908501908301611a24565b505084890196505b50505050505092915050565b600061178882846119b9565b6000611a6982856119b9565b8351611a79818360208801611b79565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ac59083018461198d565b9695505050505050565b602081526000611788602083018461198d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611b2a57611b2a611c0f565b500190565b600082611b3e57611b3e611c25565b500490565b6000816000190483118215151615611b5d57611b5d611c0f565b500290565b600082821015611b7457611b74611c0f565b500390565b60005b83811015611b94578181015183820152602001611b7c565b838111156109485750506000910152565b600181811c90821680611bb957607f821691505b60208210811415611bda57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611bf457611bf4611c0f565b5060010190565b600082611c0a57611c0a611c25565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461074a57600080fdfea26469706673582212205c1d2d897899b7253027de051e5f777ed37d6dfaa7d870b24016390b8fedd9cf64736f6c63430008040033

Deployed Bytecode Sourcemap

47348:2397:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29737:305;;;;;;;;;;-1:-1:-1;29737:305:0;;;;;:::i;:::-;;:::i;:::-;;;7559:14:1;;7552:22;7534:41;;7522:2;7507:18;29737:305:0;;;;;;;;33122:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34625:204::-;;;;;;;;;;-1:-1:-1;34625:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6857:32:1;;;6839:51;;6827:2;6812:18;34625:204:0;6794:102:1;34188:371:0;;;;;;;;;;-1:-1:-1;34188:371:0;;;;;:::i;:::-;;:::i;:::-;;28986:303;;;;;;;;;;;;;:::i;:::-;;;10971:25:1;;;10959:2;10944:18;28986:303:0;10926:76:1;47503:43:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11169:31:1;;;11151:50;;11139:2;11124:18;47503:43:0;11106:101:1;35482:170:0;;;;;;;;;;-1:-1:-1;35482:170:0;;;;;:::i;:::-;;:::i;47729:79::-;;;;;;;;;;;;47766:42;47729:79;;47640:84;;;;;;;;;;;;;:::i;48948:149::-;;;;;;;;;;;;;:::i;35723:185::-;;;;;;;;;;-1:-1:-1;35723:185:0;;;;;:::i;:::-;;:::i;49103:109::-;;;;;;;;;;-1:-1:-1;49103:109:0;;;;;:::i;:::-;;:::i;32931:124::-;;;;;;;;;;-1:-1:-1;32931:124:0;;;;;:::i;:::-;;:::i;30106:206::-;;;;;;;;;;-1:-1:-1;30106:206:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;5544:87::-;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;33291:104;;;;;;;;;;;;;:::i;34901:279::-;;;;;;;;;;-1:-1:-1;34901:279:0;;;;;:::i;:::-;;:::i;48799:143::-;;;;;;:::i;:::-;;:::i;35979:369::-;;;;;;;;;;-1:-1:-1;35979:369:0;;;;;:::i;:::-;;:::i;49218:413::-;;;;;;;;;;-1:-1:-1;49218:413:0;;;;;:::i;:::-;;:::i;47606:29::-;;;;;;;;;;;;;:::i;35251:164::-;;;;;;;;;;-1:-1:-1;35251:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35372:25:0;;;35348:4;35372:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35251:164;6453:201;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;29737:305::-;29839:4;-1:-1:-1;;;;;;29876:40:0;;-1:-1:-1;;;29876:40:0;;:105;;-1:-1:-1;;;;;;;29933:48:0;;-1:-1:-1;;;29933:48:0;29876:105;:158;;;-1:-1:-1;;;;;;;;;;18437:40:0;;;29998:36;29856:178;29737:305;-1:-1:-1;;29737:305:0:o;33122:100::-;33176:13;33209:5;33202:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33122:100;:::o;34625:204::-;34693:7;34718:16;34726:7;34718;:16::i;:::-;34713:64;;34743:34;;-1:-1:-1;;;34743:34:0;;;;;;;;;;;34713:64;-1:-1:-1;34797:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34797:24:0;;34625:204::o;34188:371::-;34261:13;34277:24;34293:7;34277:15;:24::i;:::-;34261:40;;34322:5;-1:-1:-1;;;;;34316:11:0;:2;-1:-1:-1;;;;;34316:11:0;;34312:48;;;34336:24;;-1:-1:-1;;;34336:24:0;;;;;;;;;;;34312:48;4348:10;-1:-1:-1;;;;;34377:21:0;;;;;;:63;;-1:-1:-1;34403:37:0;34420:5;4348:10;35251:164;:::i;34403:37::-;34402:38;34377:63;34373:138;;;34464:35;;-1:-1:-1;;;34464:35:0;;;;;;;;;;;34373:138;34523:28;34532:2;34536:7;34545:5;34523:8;:28::i;:::-;34188:371;;;:::o;28986:303::-;49731:1;29240:12;29030:7;29224:13;:28;-1:-1:-1;;29224:46:0;;28986:303::o;35482:170::-;35616:28;35626:4;35632:2;35636:7;35616:9;:28::i;47640:84::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48948:149::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;;;;;;;;;49018:21:::1;49046:45;47766:42;49018:21:::0;49046:17:::1;:45::i;:::-;5835:1;48948:149::o:0;35723:185::-;35861:39;35878:4;35884:2;35888:7;35861:39;;;;;;;;;;;;:16;:39::i;49103:109::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;49183:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49103:109:::0;:::o;32931:124::-;32995:7;33022:20;33034:7;33022:11;:20::i;:::-;:25;;32931:124;-1:-1:-1;;32931:124:0:o;30106:206::-;30170:7;-1:-1:-1;;;;;30194:19:0;;30190:60;;30222:28;;-1:-1:-1;;;30222:28:0;;;;;;;;;;;30190:60;-1:-1:-1;;;;;;30276:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30276:27:0;;30106:206::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;33291:104::-;33347:13;33380:7;33373:14;;;;;:::i;34901:279::-;-1:-1:-1;;;;;34992:24:0;;4348:10;34992:24;34988:54;;;35025:17;;-1:-1:-1;;;35025:17:0;;;;;;;;;;;34988:54;4348:10;35055:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35055:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35055:53:0;;;;;;;;;;35124:48;;7534:41:1;;;35055:42:0;;4348:10;35124:48;;7507:18:1;35124:48:0;;;;;;;34901:279;;:::o;48799:143::-;48874:24;48889:8;48874:24;;:14;:24::i;:::-;48905:31;48915:10;48927:8;48905:31;;:9;:31::i;35979:369::-;36146:28;36156:4;36162:2;36166:7;36146:9;:28::i;:::-;-1:-1:-1;;;;;36189:13:0;;8540:19;:23;;36189:76;;;;;36209:56;36240:4;36246:2;36250:7;36259:5;36209:30;:56::i;:::-;36208:57;36189:76;36185:156;;;36289:40;;-1:-1:-1;;;36289:40:0;;;;;;;;;;;36185:156;35979:369;;;;:::o;49218:413::-;49314:13;49355:17;49363:8;49355:7;:17::i;:::-;49339:98;;;;-1:-1:-1;;;49339:98:0;;10263:2:1;49339:98:0;;;10245:21:1;10302:2;10282:18;;;10275:30;10341:34;10321:18;;;10314:62;-1:-1:-1;;;10392:18:1;;;10385:45;10447:19;;49339:98:0;10235:237:1;49339:98:0;49450:13;49444:27;;;;;:::i;:::-;:32;49441:185;;-1:-1:-1;49441:185:0;;49517:10;49500:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;49486:43;;49218:413;;;:::o;49441:185::-;49577:13;49592:19;:8;:17;:19::i;:::-;49560:60;;;;;;;;;:::i;49441:185::-;49218:413;;;:::o;47606:29::-;;;;;;;:::i;6453:201::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;8358:2:1;6534:73:0::1;::::0;::::1;8340:21:1::0;8397:2;8377:18;;;8370:30;8436:34;8416:18;;;8409:62;-1:-1:-1;;;8487:18:1;;;8480:36;8533:19;;6534:73:0::1;8330:228:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;36603:187::-:0;36660:4;36703:7;49731:1;36684:26;;:53;;;;;36724:13;;36714:7;:23;36684:53;:98;;;;-1:-1:-1;;36755:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36755:27:0;;;;36754:28;;36603:187::o;44214:196::-;44329:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44329:29:0;-1:-1:-1;;;;;44329:29:0;;;;;;;;;44374:28;;44329:24;;44374:28;;;;;;;44214:196;;;:::o;39716:2112::-;39831:35;39869:20;39881:7;39869:11;:20::i;:::-;39944:18;;39831:58;;-1:-1:-1;39902:22:0;;-1:-1:-1;;;;;39928:34:0;4348:10;-1:-1:-1;;;;;39928:34:0;;:101;;;-1:-1:-1;39996:18:0;;39979:50;;4348:10;35251:164;:::i;39979:50::-;39928:154;;;-1:-1:-1;4348:10:0;40046:20;40058:7;40046:11;:20::i;:::-;-1:-1:-1;;;;;40046:36:0;;39928:154;39902:181;;40101:17;40096:66;;40127:35;;-1:-1:-1;;;40127:35:0;;;;;;;;;;;40096:66;40199:4;-1:-1:-1;;;;;40177:26:0;:13;:18;;;-1:-1:-1;;;;;40177:26:0;;40173:67;;40212:28;;-1:-1:-1;;;40212:28:0;;;;;;;;;;;40173:67;-1:-1:-1;;;;;40255:16:0;;40251:52;;40280:23;;-1:-1:-1;;;40280:23:0;;;;;;;;;;;40251:52;40424:49;40441:1;40445:7;40454:13;:18;;;40424:8;:49::i;:::-;-1:-1:-1;;;;;40769:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40769:31:0;;;-1:-1:-1;;;;;40769:31:0;;;-1:-1:-1;;40769:31:0;;;;;;;40815:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40815:29:0;;;;;;;;;;;40861:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;40906:61:0;;;;-1:-1:-1;;;40951:15:0;40906:61;;;;;;;;;;;41241:11;;;41271:24;;;;;:29;41241:11;;41271:29;41267:445;;41496:13;;41482:11;:27;41478:219;;;41566:18;;;41534:24;;;:11;:24;;;;;;;;:50;;41649:28;;;;-1:-1:-1;;;;;41607:70:0;-1:-1:-1;;;41607:70:0;-1:-1:-1;;;;;;41607:70:0;;;-1:-1:-1;;;;;41534:50:0;;;41607:70;;;;;;;41478:219;39716:2112;41759:7;41755:2;-1:-1:-1;;;;;41740:27:0;41749:4;-1:-1:-1;;;;;41740:27:0;;;;;;;;;;;41778:42;39716:2112;;;;;:::o;9506:317::-;9621:6;9596:21;:31;;9588:73;;;;-1:-1:-1;;;9588:73:0;;9192:2:1;9588:73:0;;;9174:21:1;9231:2;9211:18;;;9204:30;9270:31;9250:18;;;9243:59;9319:18;;9588:73:0;9164:179:1;9588:73:0;9675:12;9693:9;-1:-1:-1;;;;;9693:14:0;9715:6;9693:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9674:52;;;9745:7;9737:78;;;;-1:-1:-1;;;9737:78:0;;8765:2:1;9737:78:0;;;8747:21:1;8804:2;8784:18;;;8777:30;8843:34;8823:18;;;8816:62;8914:28;8894:18;;;8887:56;8960:19;;9737:78:0;8737:248:1;31761:1108:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31871:7:0;;49731:1;31920:23;;:47;;;;;31954:13;;31947:4;:20;31920:47;31916:886;;;31988:31;32022:17;;;:11;:17;;;;;;;;;31988:51;;;;;;;;;-1:-1:-1;;;;;31988:51:0;;;;-1:-1:-1;;;31988:51:0;;-1:-1:-1;;;;;31988:51:0;;;;;;;;-1:-1:-1;;;31988:51:0;;;;;;;;;;;;;;32058:729;;32108:14;;-1:-1:-1;;;;;32108:28:0;;32104:101;;32172:9;31761:1108;-1:-1:-1;;;31761:1108:0:o;32104:101::-;-1:-1:-1;;;32547:6:0;32592:17;;;;:11;:17;;;;;;;;;32580:29;;;;;;;;;-1:-1:-1;;;;;32580:29:0;;;;;-1:-1:-1;;;32580:29:0;;-1:-1:-1;;;;;32580:29:0;;;;;;;;-1:-1:-1;;;32580:29:0;;;;;;;;;;;;;32640:28;32636:109;;32708:9;31761:1108;-1:-1:-1;;;31761:1108:0:o;32636:109::-;32507:261;;;31916:886;;32830:31;;-1:-1:-1;;;32830:31:0;;;;;;;;;;;6814:191;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6814:191;;:::o;47817:974::-;47921:4;47909:8;47893:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:32;47890:687;;47966:21;47979:8;47966:10;:21;:::i;:::-;47953:9;:34;47935:83;;;;-1:-1:-1;;;47935:83:0;;8012:2:1;47935:83:0;;;7994:21:1;8051:2;8031:18;;;8024:30;-1:-1:-1;;;8070:18:1;;;8063:47;8127:18;;47935:83:0;7984:167:1;47935:83:0;47890:687;;;48068:4;48056:8;48040:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:32;48037:540;;48113:21;48126:8;48113:10;:21;:::i;48037:540::-;48215:4;48203:8;48187:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:32;48184:393;;48260:21;48273:8;48260:10;:21;:::i;48184:393::-;48362:4;48350:8;48334:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:32;48331:246;;48407:21;48420:8;48407:10;:21;:::i;48331:246::-;48517:21;48530:8;48517:10;:21;:::i;:::-;48504:9;:34;48486:83;;;;-1:-1:-1;;;48486:83:0;;8012:2:1;48486:83:0;;;7994:21:1;8051:2;8031:18;;;8024:30;-1:-1:-1;;;8070:18:1;;;8063:47;8127:18;;48486:83:0;7984:167:1;48486:83:0;48610:1;48599:8;:12;:47;;;;;48627:19;-1:-1:-1;;;;;48615:31:0;:8;:31;;48599:47;48583:100;;;;-1:-1:-1;;;48583:100:0;;10679:2:1;48583:100:0;;;10661:21:1;10718:2;10698:18;;;10691:30;-1:-1:-1;;;10737:18:1;;;10730:49;10796:18;;48583:100:0;10651:169:1;48583:100:0;48734:10;-1:-1:-1;;;;;48706:38:0;48722:8;48706:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;48690:95;;;;-1:-1:-1;;;48690:95:0;;9550:2:1;48690:95:0;;;9532:21:1;9589:2;9569:18;;;9562:30;9628:25;9608:18;;;9601:53;9671:18;;48690:95:0;9522:173:1;36798:104:0;36867:27;36877:2;36881:8;36867:27;;;;;;;;;;;;:9;:27::i;44902:667::-;45086:72;;-1:-1:-1;;;45086:72:0;;45065:4;;-1:-1:-1;;;;;45086:36:0;;;;;:72;;4348:10;;45137:4;;45143:7;;45152:5;;45086:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45086:72:0;;;;;;;;-1:-1:-1;;45086:72:0;;;;;;;;;;;;:::i;:::-;;;45082:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45320:13:0;;45316:235;;45366:40;;-1:-1:-1;;;45366:40:0;;;;;;;;;;;45316:235;45509:6;45503:13;45494:6;45490:2;45486:15;45479:38;45082:480;-1:-1:-1;;;;;;45205:55:0;-1:-1:-1;;;45205:55:0;;-1:-1:-1;45082:480:0;44902:667;;;;;;:::o;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;-1:-1:-1;;;;;2332:17:0;;;;;-1:-1:-1;;;2332:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;-1:-1:-1;;;2420:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;37265:163;37388:32;37394:2;37398:8;37408:5;37415:4;37826:20;37849:13;-1:-1:-1;;;;;37877:16:0;;37873:48;;37902:19;;-1:-1:-1;;;37902:19:0;;;;;;;;;;;37873:48;37936:13;37932:44;;37958:18;;-1:-1:-1;;;37958:18:0;;;;;;;;;;;37932:44;-1:-1:-1;;;;;38327:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38386:49:0;;-1:-1:-1;;;;;38327:44:0;;;;;;;38386:49;;;;-1:-1:-1;;38327:44:0;;;;;;38386:49;;;;;;;;;;;;;;;;38452:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;38502:66:0;;;;-1:-1:-1;;;38552:15:0;38502:66;;;;;;;;;;38452:25;38649:23;;;38693:4;:23;;;;-1:-1:-1;;;;;;38701:13:0;;8540:19;:23;;38701:15;38689:641;;;38737:314;38768:38;;38793:12;;-1:-1:-1;;;;;38768:38:0;;;38785:1;;38768:38;;38785:1;;38768:38;38834:69;38873:1;38877:2;38881:14;;;;;;38897:5;38834:30;:69::i;:::-;38829:174;;38939:40;;-1:-1:-1;;;38939:40:0;;;;;;;;;;;38829:174;39046:3;39030:12;:19;;38737:314;;39132:12;39115:13;;:29;39111:43;;39146:8;;;39111:43;38689:641;;;39195:120;39226:40;;39251:14;;;;;-1:-1:-1;;;;;39226:40:0;;;39243:1;;39226:40;;39243:1;;39226:40;39310:3;39294:12;:19;;39195:120;;38689:641;-1:-1:-1;39344:13:0;:28;39394:60;35979:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:196;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;:::-;979:39;898:126;-1:-1:-1;;;898:126:1:o;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;-1:-1:-1;;;;;2076:6:1;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;-1:-1:-1;;;;;3726:6:1;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:289::-;4250:6;4303:2;4291:9;4282:7;4278:23;4274:32;4271:2;;;4324:6;4316;4309:22;4271:2;4368:9;4355:23;4418:4;4411:5;4407:16;4400:5;4397:27;4387:2;;4443:6;4435;4428:22;4487:257;4528:3;4566:5;4560:12;4593:6;4588:3;4581:19;4609:63;4665:6;4658:4;4653:3;4649:14;4642:4;4635:5;4631:16;4609:63;:::i;:::-;4726:2;4705:15;-1:-1:-1;;4701:29:1;4692:39;;;;4733:4;4688:50;;4536:208;-1:-1:-1;;4536:208:1:o;4749:979::-;4834:12;;4799:3;;4891:1;4911:18;;;;4964;;;;4991:2;;5045:4;5037:6;5033:17;5023:27;;4991:2;5071;5119;5111:6;5108:14;5088:18;5085:38;5082:2;;;-1:-1:-1;;;5146:33:1;;5202:4;5199:1;5192:15;5232:4;5153:3;5220:17;5082:2;5263:18;5290:104;;;;5408:1;5403:319;;;;5256:466;;5290:104;-1:-1:-1;;5323:24:1;;5311:37;;5368:16;;;;-1:-1:-1;5290:104:1;;5403:319;11259:4;11278:17;;;11328:4;11312:21;;5497:1;5511:165;5525:6;5522:1;5519:13;5511:165;;;5603:14;;5590:11;;;5583:35;5646:16;;;;5540:10;;5511:165;;;5515:3;;5705:6;5700:3;5696:16;5689:23;;5256:466;;;;;;;4807:921;;;;:::o;5733:197::-;5861:3;5886:38;5920:3;5912:6;5886:38;:::i;5935:543::-;6212:3;6240:38;6274:3;6266:6;6240:38;:::i;:::-;6307:6;6301:13;6323:52;6368:6;6364:2;6357:4;6349:6;6345:17;6323:52;:::i;:::-;-1:-1:-1;;;6397:15:1;;6421:22;;;6470:1;6459:13;;6220:258;-1:-1:-1;;;;6220:258:1:o;6901:488::-;-1:-1:-1;;;;;7170:15:1;;;7152:34;;7222:15;;7217:2;7202:18;;7195:43;7269:2;7254:18;;7247:34;;;7317:3;7312:2;7297:18;;7290:31;;;7095:4;;7338:45;;7363:19;;7355:6;7338:45;:::i;:::-;7330:53;7104:285;-1:-1:-1;;;;;;7104:285:1:o;7586:219::-;7735:2;7724:9;7717:21;7698:4;7755:44;7795:2;7784:9;7780:18;7772:6;7755:44;:::i;9700:356::-;9902:2;9884:21;;;9921:18;;;9914:30;9980:34;9975:2;9960:18;;9953:62;10047:2;10032:18;;9874:182::o;11344:128::-;11384:3;11415:1;11411:6;11408:1;11405:13;11402:2;;;11421:18;;:::i;:::-;-1:-1:-1;11457:9:1;;11392:80::o;11477:120::-;11517:1;11543;11533:2;;11548:18;;:::i;:::-;-1:-1:-1;11582:9:1;;11523:74::o;11602:168::-;11642:7;11708:1;11704;11700:6;11696:14;11693:1;11690:21;11685:1;11678:9;11671:17;11667:45;11664:2;;;11715:18;;:::i;:::-;-1:-1:-1;11755:9:1;;11654:116::o;11775:125::-;11815:4;11843:1;11840;11837:8;11834:2;;;11848:18;;:::i;:::-;-1:-1:-1;11885:9:1;;11824:76::o;11905:258::-;11977:1;11987:113;12001:6;11998:1;11995:13;11987:113;;;12077:11;;;12071:18;12058:11;;;12051:39;12023:2;12016:10;11987:113;;;12118:6;12115:1;12112:13;12109:2;;;-1:-1:-1;;12153:1:1;12135:16;;12128:27;11958:205::o;12168:380::-;12247:1;12243:12;;;;12290;;;12311:2;;12365:4;12357:6;12353:17;12343:27;;12311:2;12418;12410:6;12407:14;12387:18;12384:38;12381:2;;;12464:10;12459:3;12455:20;12452:1;12445:31;12499:4;12496:1;12489:15;12527:4;12524:1;12517:15;12381:2;;12223:325;;;:::o;12553:135::-;12592:3;-1:-1:-1;;12613:17:1;;12610:2;;;12633:18;;:::i;:::-;-1:-1:-1;12680:1:1;12669:13;;12600:88::o;12693:112::-;12725:1;12751;12741:2;;12756:18;;:::i;:::-;-1:-1:-1;12790:9:1;;12731:74::o;12810:127::-;12871:10;12866:3;12862:20;12859:1;12852:31;12902:4;12899:1;12892:15;12926:4;12923:1;12916:15;12942:127;13003:10;12998:3;12994:20;12991:1;12984:31;13034:4;13031:1;13024:15;13058:4;13055:1;13048:15;13074:127;13135:10;13130:3;13126:20;13123:1;13116:31;13166:4;13163:1;13156:15;13190:4;13187:1;13180:15;13206:131;-1:-1:-1;;;;;;13280:32:1;;13270:43;;13260:2;;13327:1;13324;13317:12

Swarm Source

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