ETH Price: $3,003.72 (+3.04%)
Gas: 2 Gwei

Token

Project Godjira Generation 2 (PGG2)
 

Overview

Max Total Supply

3,333 PGG2

Holders

1,053

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PGG2
0x650645071382603411Ea1B09c745ea5493d8B2D9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A Collection of 3333 Unique Gen 2 GodJiras on the Ethereum blockchain living as NFTs.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Gen2

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// 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: Gen2.sol


pragma solidity ^0.8.0;



contract Gen2 is ERC721A, Ownable {
    /// @dev baseTokenURI
    string public baseTokenURI;

    address public constant CORE_TEAM_ADDRESS = 0xC79b099E83f6ECc8242f93d35782562b42c459F3;
    address public constant FOUNDER_SHAN_ADDRESS = 0xAd7Bbe006c8D919Ffcf6148b227Bb692F7D1fbc7;
    address public constant FOUNDER_JAMIE_ADDRESS = 0x2dFa24018E419eA8453190155434D35328A8c6d8;

    address public gen2Sale;

    event SetBaseTokenURI(string baseTokenURI);
    event SetGen2Sale(address _gen2Sale);

    constructor(
        string memory _name,
        string memory _symbol,
        string memory baseToken_
    ) ERC721A(_name, _symbol) {
        setBaseURI(baseToken_);

        // CoreTeam -> tokenIds #1 ~ #310
        _safeMint(CORE_TEAM_ADDRESS, 310);

         // Founder Shan -> tokenIds #311 ~ #325
        _safeMint(FOUNDER_SHAN_ADDRESS, 15);

        // Founder Jamie -> tokenIds #326 ~ #340
        _safeMint(FOUNDER_JAMIE_ADDRESS, 15);
        
        _safeMint(CORE_TEAM_ADDRESS, 2993);
    }

    /**
     * @dev Get `baseTokenURI`
     * Overrided
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    /**
     * @dev Set `baseTokenURI`
     */
    function setBaseURI(string memory baseURI) public onlyOwner {
        require(bytes(baseURI).length > 0, "gen2.setBaseURI: base URI invalid");
        baseTokenURI = baseURI;

        emit SetBaseTokenURI(baseURI);
    }

    function setGen2Sale(address _gen2Sale) external onlyOwner {
        require(_gen2Sale != address(0), "gen2.setGen2Sale: address invalid");
        gen2Sale = _gen2Sale;

        emit SetGen2Sale(_gen2Sale);
    }
    
    /**
     * @dev Override {ERC721A-isApprovedForAll}.
     */
     function isApprovedForAll(
         address _owner, 
         address _operator
    ) public view virtual override returns (bool) {
        if (_owner == CORE_TEAM_ADDRESS && _operator == gen2Sale) {
            return true;
        }
        return ERC721A.isApprovedForAll(_owner, _operator);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"baseToken_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"SetBaseTokenURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_gen2Sale","type":"address"}],"name":"SetGen2Sale","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CORE_TEAM_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FOUNDER_JAMIE_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FOUNDER_SHAN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gen2Sale","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":"address","name":"_gen2Sale","type":"address"}],"name":"setGen2Sale","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"}]

60806040523480156200001157600080fd5b5060405162001ee238038062001ee28339810160408190526200003491620006ed565b8251839083906200004d90600290602085019062000583565b5080516200006390600390602084019062000583565b5050600080555062000075336200010f565b620000808162000161565b620000a273c79b099e83f6ecc8242f93d35782562b42c459f361013662000270565b620000c373ad7bbe006c8d919ffcf6148b227bb692f7d1fbc7600f62000270565b620000e4732dfa24018e419ea8453190155434d35328a8c6d8600f62000270565b6200010673c79b099e83f6ecc8242f93d35782562b42c459f3610bb162000270565b50505062000878565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001c15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60008151116200021e5760405162461bcd60e51b815260206004820152602160248201527f67656e322e736574426173655552493a20626173652055524920696e76616c696044820152601960fa1b6064820152608401620001b8565b80516200023390600990602084019062000583565b507f199e933997358e1789d8b56ea8c551befeb05ce2fe3fe506199f1230f5a591b481604051620002659190620007e1565b60405180910390a150565b620002928282604051806020016040528060008152506200029660201b60201c565b5050565b620002a58383836001620002aa565b505050565b6000546001600160a01b038516620002d457604051622e076360e81b815260040160405180910390fd5b83620002f35760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015620003ac5750620003ac876001600160a01b03166200047360201b62000a8c1760201c565b156200042c575b60405182906001600160a01b0389169060009060008051602062001ec2833981519152908290a46001820191620003f09060009089908862000482565b6200040e576040516368d2bf6b60e11b815260040160405180910390fd5b80821415620003b35782600054146200042657600080fd5b62000462565b5b6040516001830192906001600160a01b0389169060009060008051602062001ec2833981519152908290a4808214156200042d575b506000555050505050565b50505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620004b9903390899088908890600401620007ac565b602060405180830381600087803b158015620004d457600080fd5b505af192505050801562000507575060408051601f3d908101601f191682019092526200050491810190620006ba565b60015b62000566573d80801562000538576040519150601f19603f3d011682016040523d82523d6000602084013e6200053d565b606091505b5080516200055e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b828054620005919062000825565b90600052602060002090601f016020900481019282620005b5576000855562000600565b82601f10620005d057805160ff191683800117855562000600565b8280016001018555821562000600579182015b8281111562000600578251825591602001919060010190620005e3565b506200060e92915062000612565b5090565b5b808211156200060e576000815560010162000613565b600082601f8301126200063b57600080fd5b81516001600160401b038082111562000658576200065862000862565b604051601f8301601f19908116603f0116810190828211818310171562000683576200068362000862565b816040528381528660208588010111156200069d57600080fd5b620006b0846020830160208901620007f6565b9695505050505050565b600060208284031215620006cd57600080fd5b81516001600160e01b031981168114620006e657600080fd5b9392505050565b6000806000606084860312156200070357600080fd5b83516001600160401b03808211156200071b57600080fd5b620007298783880162000629565b945060208601519150808211156200074057600080fd5b6200074e8783880162000629565b935060408601519150808211156200076557600080fd5b50620007748682870162000629565b9150509250925092565b6000815180845262000798816020860160208601620007f6565b601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090620006b0908301846200077e565b602081526000620006e660208301846200077e565b60005b8381101562000813578181015183820152602001620007f9565b838111156200046d5750506000910152565b600181811c908216806200083a57607f821691505b602082108114156200085c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61163a80620008886000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80636e9374a8116100c3578063a22cb4651161007c578063a22cb465146102e7578063b88d4fde146102fa578063c87b56dd1461030d578063d547cfb714610320578063e985e9c514610328578063f2fde38b1461033b57600080fd5b80636e9374a81461027d57806370a0823114610298578063715018a6146102ab5780638da5cb5b146102b357806395d89b41146102c4578063a01928d1146102cc57600080fd5b8063341ce3d911610115578063341ce3d91461020357806342842e0e14610216578063470d7835146102295780634fd2835d1461024457806355f804b3146102575780636352211e1461026a57600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c557806318160ddd146101da57806323b872dd146101f0575b600080fd5b61017061016b366004611341565b61034e565b60405190151581526020015b60405180910390f35b61018d6103a0565b60405161017c9190611475565b6101ad6101a83660046113c4565b610432565b6040516001600160a01b03909116815260200161017c565b6101d86101d3366004611317565b610476565b005b600154600054035b60405190815260200161017c565b6101d86101fe366004611223565b610504565b600a546101ad906001600160a01b031681565b6101d8610224366004611223565b61050f565b6101ad732dfa24018e419ea8453190155434d35328a8c6d881565b6101d86102523660046111d5565b61052a565b6101d861026536600461137b565b610612565b6101ad6102783660046113c4565b6106da565b6101ad73c79b099e83f6ecc8242f93d35782562b42c459f381565b6101e26102a63660046111d5565b6106ec565b6101d861073b565b6008546001600160a01b03166101ad565b61018d610771565b6101ad73ad7bbe006c8d919ffcf6148b227bb692f7d1fbc781565b6101d86102f53660046112db565b610780565b6101d861030836600461125f565b610816565b61018d61031b3660046113c4565b610867565b61018d6108ec565b6101706103363660046111f0565b61097a565b6101d86103493660046111d5565b6109f1565b60006001600160e01b031982166380ac58cd60e01b148061037f57506001600160e01b03198216635b5e139f60e01b145b8061039a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546103af9061152c565b80601f01602080910402602001604051908101604052809291908181526020018280546103db9061152c565b80156104285780601f106103fd57610100808354040283529160200191610428565b820191906000526020600020905b81548152906001019060200180831161040b57829003601f168201915b5050505050905090565b600061043d82610a9b565b61045a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610481826106da565b9050806001600160a01b0316836001600160a01b031614156104b65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906104d657506104d4813361097a565b155b156104f4576040516367d9dca160e11b815260040160405180910390fd5b6104ff838383610ac6565b505050565b6104ff838383610b22565b6104ff83838360405180602001604052806000815250610816565b6008546001600160a01b0316331461055d5760405162461bcd60e51b815260040161055490611488565b60405180910390fd5b6001600160a01b0381166105bd5760405162461bcd60e51b815260206004820152602160248201527f67656e322e73657447656e3253616c653a206164647265737320696e76616c696044820152601960fa1b6064820152608401610554565b600a80546001600160a01b0319166001600160a01b0383169081179091556040519081527fff67969812a8ed69f9c997c65d59e63093c22afa53aaebefa363cad23b1e5587906020015b60405180910390a150565b6008546001600160a01b0316331461063c5760405162461bcd60e51b815260040161055490611488565b60008151116106975760405162461bcd60e51b815260206004820152602160248201527f67656e322e736574426173655552493a20626173652055524920696e76616c696044820152601960fa1b6064820152608401610554565b80516106aa9060099060208401906110aa565b507f199e933997358e1789d8b56ea8c551befeb05ce2fe3fe506199f1230f5a591b4816040516106079190611475565b60006106e582610d37565b5192915050565b60006001600160a01b038216610715576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146107655760405162461bcd60e51b815260040161055490611488565b61076f6000610e53565b565b6060600380546103af9061152c565b6001600160a01b0382163314156107aa5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610821848484610b22565b6001600160a01b0383163b15158015610843575061084184848484610ea5565b155b15610861576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061087282610a9b565b61088f57604051630a14c4b560e41b815260040160405180910390fd5b6000610899610f9d565b90508051600014156108ba57604051806020016040528060008152506108e5565b806108c484610fac565b6040516020016108d5929190611409565b6040516020818303038152906040525b9392505050565b600980546108f99061152c565b80601f01602080910402602001604051908101604052809291908181526020018280546109259061152c565b80156109725780601f1061094757610100808354040283529160200191610972565b820191906000526020600020905b81548152906001019060200180831161095557829003601f168201915b505050505081565b60006001600160a01b03831673c79b099e83f6ecc8242f93d35782562b42c459f31480156109b55750600a546001600160a01b038381169116145b156109c25750600161039a565b506001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610a1b5760405162461bcd60e51b815260040161055490611488565b6001600160a01b038116610a805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610554565b610a8981610e53565b50565b6001600160a01b03163b151590565b600080548210801561039a575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610b2d82610d37565b80519091506000906001600160a01b0316336001600160a01b03161480610b5b57508151610b5b903361097a565b80610b76575033610b6b84610432565b6001600160a01b0316145b905080610b9657604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610bcb5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610bf257604051633a954ecd60e21b815260040160405180910390fd5b610c026000848460000151610ac6565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610cee57600054811015610cee578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182526000808252602082018190529181019190915281600054811015610e3a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610e385780516001600160a01b031615610dce579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610e33579392505050565b610dce565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610eda903390899088908890600401611438565b602060405180830381600087803b158015610ef457600080fd5b505af1925050508015610f24575060408051601f3d908101601f19168201909252610f219181019061135e565b60015b610f7f573d808015610f52576040519150601f19603f3d011682016040523d82523d6000602084013e610f57565b606091505b508051610f77576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546103af9061152c565b606081610fd05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610ffa5780610fe481611567565b9150610ff39050600a836114d5565b9150610fd4565b60008167ffffffffffffffff811115611015576110156115d8565b6040519080825280601f01601f19166020018201604052801561103f576020820181803683370190505b5090505b8415610f95576110546001836114e9565b9150611061600a86611582565b61106c9060306114bd565b60f81b818381518110611081576110816115c2565b60200101906001600160f81b031916908160001a9053506110a3600a866114d5565b9450611043565b8280546110b69061152c565b90600052602060002090601f0160209004810192826110d8576000855561111e565b82601f106110f157805160ff191683800117855561111e565b8280016001018555821561111e579182015b8281111561111e578251825591602001919060010190611103565b5061112a92915061112e565b5090565b5b8082111561112a576000815560010161112f565b600067ffffffffffffffff8084111561115e5761115e6115d8565b604051601f8501601f19908116603f01168101908282118183101715611186576111866115d8565b8160405280935085815286868601111561119f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146111d057600080fd5b919050565b6000602082840312156111e757600080fd5b6108e5826111b9565b6000806040838503121561120357600080fd5b61120c836111b9565b915061121a602084016111b9565b90509250929050565b60008060006060848603121561123857600080fd5b611241846111b9565b925061124f602085016111b9565b9150604084013590509250925092565b6000806000806080858703121561127557600080fd5b61127e856111b9565b935061128c602086016111b9565b925060408501359150606085013567ffffffffffffffff8111156112af57600080fd5b8501601f810187136112c057600080fd5b6112cf87823560208401611143565b91505092959194509250565b600080604083850312156112ee57600080fd5b6112f7836111b9565b91506020830135801515811461130c57600080fd5b809150509250929050565b6000806040838503121561132a57600080fd5b611333836111b9565b946020939093013593505050565b60006020828403121561135357600080fd5b81356108e5816115ee565b60006020828403121561137057600080fd5b81516108e5816115ee565b60006020828403121561138d57600080fd5b813567ffffffffffffffff8111156113a457600080fd5b8201601f810184136113b557600080fd5b610f9584823560208401611143565b6000602082840312156113d657600080fd5b5035919050565b600081518084526113f5816020860160208601611500565b601f01601f19169290920160200192915050565b6000835161141b818460208801611500565b83519083019061142f818360208801611500565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061146b908301846113dd565b9695505050505050565b6020815260006108e560208301846113dd565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156114d0576114d0611596565b500190565b6000826114e4576114e46115ac565b500490565b6000828210156114fb576114fb611596565b500390565b60005b8381101561151b578181015183820152602001611503565b838111156108615750506000910152565b600181811c9082168061154057607f821691505b6020821081141561156157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561157b5761157b611596565b5060010190565b600082611591576115916115ac565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a8957600080fdfea2646970667358221220ae75f95ec6923810d7b1aff38912aa796f59e58c3484504b1085e95d8cdf3d2964736f6c63430008070033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001c50726f6a65637420476f646a6972612047656e65726174696f6e20320000000000000000000000000000000000000000000000000000000000000000000000045047473200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f676f646a6972612d6261636b656e642e6865726f6b756170702e636f6d2f6d657461646174612f0000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c80636e9374a8116100c3578063a22cb4651161007c578063a22cb465146102e7578063b88d4fde146102fa578063c87b56dd1461030d578063d547cfb714610320578063e985e9c514610328578063f2fde38b1461033b57600080fd5b80636e9374a81461027d57806370a0823114610298578063715018a6146102ab5780638da5cb5b146102b357806395d89b41146102c4578063a01928d1146102cc57600080fd5b8063341ce3d911610115578063341ce3d91461020357806342842e0e14610216578063470d7835146102295780634fd2835d1461024457806355f804b3146102575780636352211e1461026a57600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c557806318160ddd146101da57806323b872dd146101f0575b600080fd5b61017061016b366004611341565b61034e565b60405190151581526020015b60405180910390f35b61018d6103a0565b60405161017c9190611475565b6101ad6101a83660046113c4565b610432565b6040516001600160a01b03909116815260200161017c565b6101d86101d3366004611317565b610476565b005b600154600054035b60405190815260200161017c565b6101d86101fe366004611223565b610504565b600a546101ad906001600160a01b031681565b6101d8610224366004611223565b61050f565b6101ad732dfa24018e419ea8453190155434d35328a8c6d881565b6101d86102523660046111d5565b61052a565b6101d861026536600461137b565b610612565b6101ad6102783660046113c4565b6106da565b6101ad73c79b099e83f6ecc8242f93d35782562b42c459f381565b6101e26102a63660046111d5565b6106ec565b6101d861073b565b6008546001600160a01b03166101ad565b61018d610771565b6101ad73ad7bbe006c8d919ffcf6148b227bb692f7d1fbc781565b6101d86102f53660046112db565b610780565b6101d861030836600461125f565b610816565b61018d61031b3660046113c4565b610867565b61018d6108ec565b6101706103363660046111f0565b61097a565b6101d86103493660046111d5565b6109f1565b60006001600160e01b031982166380ac58cd60e01b148061037f57506001600160e01b03198216635b5e139f60e01b145b8061039a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546103af9061152c565b80601f01602080910402602001604051908101604052809291908181526020018280546103db9061152c565b80156104285780601f106103fd57610100808354040283529160200191610428565b820191906000526020600020905b81548152906001019060200180831161040b57829003601f168201915b5050505050905090565b600061043d82610a9b565b61045a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610481826106da565b9050806001600160a01b0316836001600160a01b031614156104b65760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906104d657506104d4813361097a565b155b156104f4576040516367d9dca160e11b815260040160405180910390fd5b6104ff838383610ac6565b505050565b6104ff838383610b22565b6104ff83838360405180602001604052806000815250610816565b6008546001600160a01b0316331461055d5760405162461bcd60e51b815260040161055490611488565b60405180910390fd5b6001600160a01b0381166105bd5760405162461bcd60e51b815260206004820152602160248201527f67656e322e73657447656e3253616c653a206164647265737320696e76616c696044820152601960fa1b6064820152608401610554565b600a80546001600160a01b0319166001600160a01b0383169081179091556040519081527fff67969812a8ed69f9c997c65d59e63093c22afa53aaebefa363cad23b1e5587906020015b60405180910390a150565b6008546001600160a01b0316331461063c5760405162461bcd60e51b815260040161055490611488565b60008151116106975760405162461bcd60e51b815260206004820152602160248201527f67656e322e736574426173655552493a20626173652055524920696e76616c696044820152601960fa1b6064820152608401610554565b80516106aa9060099060208401906110aa565b507f199e933997358e1789d8b56ea8c551befeb05ce2fe3fe506199f1230f5a591b4816040516106079190611475565b60006106e582610d37565b5192915050565b60006001600160a01b038216610715576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146107655760405162461bcd60e51b815260040161055490611488565b61076f6000610e53565b565b6060600380546103af9061152c565b6001600160a01b0382163314156107aa5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610821848484610b22565b6001600160a01b0383163b15158015610843575061084184848484610ea5565b155b15610861576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061087282610a9b565b61088f57604051630a14c4b560e41b815260040160405180910390fd5b6000610899610f9d565b90508051600014156108ba57604051806020016040528060008152506108e5565b806108c484610fac565b6040516020016108d5929190611409565b6040516020818303038152906040525b9392505050565b600980546108f99061152c565b80601f01602080910402602001604051908101604052809291908181526020018280546109259061152c565b80156109725780601f1061094757610100808354040283529160200191610972565b820191906000526020600020905b81548152906001019060200180831161095557829003601f168201915b505050505081565b60006001600160a01b03831673c79b099e83f6ecc8242f93d35782562b42c459f31480156109b55750600a546001600160a01b038381169116145b156109c25750600161039a565b506001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610a1b5760405162461bcd60e51b815260040161055490611488565b6001600160a01b038116610a805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610554565b610a8981610e53565b50565b6001600160a01b03163b151590565b600080548210801561039a575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610b2d82610d37565b80519091506000906001600160a01b0316336001600160a01b03161480610b5b57508151610b5b903361097a565b80610b76575033610b6b84610432565b6001600160a01b0316145b905080610b9657604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610bcb5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610bf257604051633a954ecd60e21b815260040160405180910390fd5b610c026000848460000151610ac6565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610cee57600054811015610cee578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182526000808252602082018190529181019190915281600054811015610e3a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610e385780516001600160a01b031615610dce579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610e33579392505050565b610dce565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610eda903390899088908890600401611438565b602060405180830381600087803b158015610ef457600080fd5b505af1925050508015610f24575060408051601f3d908101601f19168201909252610f219181019061135e565b60015b610f7f573d808015610f52576040519150601f19603f3d011682016040523d82523d6000602084013e610f57565b606091505b508051610f77576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546103af9061152c565b606081610fd05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610ffa5780610fe481611567565b9150610ff39050600a836114d5565b9150610fd4565b60008167ffffffffffffffff811115611015576110156115d8565b6040519080825280601f01601f19166020018201604052801561103f576020820181803683370190505b5090505b8415610f95576110546001836114e9565b9150611061600a86611582565b61106c9060306114bd565b60f81b818381518110611081576110816115c2565b60200101906001600160f81b031916908160001a9053506110a3600a866114d5565b9450611043565b8280546110b69061152c565b90600052602060002090601f0160209004810192826110d8576000855561111e565b82601f106110f157805160ff191683800117855561111e565b8280016001018555821561111e579182015b8281111561111e578251825591602001919060010190611103565b5061112a92915061112e565b5090565b5b8082111561112a576000815560010161112f565b600067ffffffffffffffff8084111561115e5761115e6115d8565b604051601f8501601f19908116603f01168101908282118183101715611186576111866115d8565b8160405280935085815286868601111561119f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146111d057600080fd5b919050565b6000602082840312156111e757600080fd5b6108e5826111b9565b6000806040838503121561120357600080fd5b61120c836111b9565b915061121a602084016111b9565b90509250929050565b60008060006060848603121561123857600080fd5b611241846111b9565b925061124f602085016111b9565b9150604084013590509250925092565b6000806000806080858703121561127557600080fd5b61127e856111b9565b935061128c602086016111b9565b925060408501359150606085013567ffffffffffffffff8111156112af57600080fd5b8501601f810187136112c057600080fd5b6112cf87823560208401611143565b91505092959194509250565b600080604083850312156112ee57600080fd5b6112f7836111b9565b91506020830135801515811461130c57600080fd5b809150509250929050565b6000806040838503121561132a57600080fd5b611333836111b9565b946020939093013593505050565b60006020828403121561135357600080fd5b81356108e5816115ee565b60006020828403121561137057600080fd5b81516108e5816115ee565b60006020828403121561138d57600080fd5b813567ffffffffffffffff8111156113a457600080fd5b8201601f810184136113b557600080fd5b610f9584823560208401611143565b6000602082840312156113d657600080fd5b5035919050565b600081518084526113f5816020860160208601611500565b601f01601f19169290920160200192915050565b6000835161141b818460208801611500565b83519083019061142f818360208801611500565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061146b908301846113dd565b9695505050505050565b6020815260006108e560208301846113dd565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156114d0576114d0611596565b500190565b6000826114e4576114e46115ac565b500490565b6000828210156114fb576114fb611596565b500390565b60005b8381101561151b578181015183820152602001611503565b838111156108615750506000910152565b600181811c9082168061154057607f821691505b6020821081141561156157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561157b5761157b611596565b5060010190565b600082611591576115916115ac565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a8957600080fdfea2646970667358221220ae75f95ec6923810d7b1aff38912aa796f59e58c3484504b1085e95d8cdf3d2964736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001c50726f6a65637420476f646a6972612047656e65726174696f6e20320000000000000000000000000000000000000000000000000000000000000000000000045047473200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f676f646a6972612d6261636b656e642e6865726f6b756170702e636f6d2f6d657461646174612f0000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Project Godjira Generation 2
Arg [1] : _symbol (string): PGG2
Arg [2] : baseToken_ (string): https://godjira-backend.herokuapp.com/metadata/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [4] : 50726f6a65637420476f646a6972612047656e65726174696f6e203200000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5047473200000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [8] : 68747470733a2f2f676f646a6972612d6261636b656e642e6865726f6b756170
Arg [9] : 702e636f6d2f6d657461646174612f0000000000000000000000000000000000


Deployed Bytecode Sourcemap

45789:2129:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28272:305;;;;;;:::i;:::-;;:::i;:::-;;;5646:14:1;;5639:22;5621:41;;5609:2;5594:18;28272:305:0;;;;;;;;31657:100;;;:::i;:::-;;;;;;;:::i;33160:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;33160:204:0;4780:203:1;32723:371:0;;;;;;:::i;:::-;;:::i;:::-;;27521:303;27775:12;;27565:7;27759:13;:28;27521:303;;;7615:25:1;;;7603:2;7588:18;27521:303:0;7469:177:1;34017:170:0;;;;;;:::i;:::-;;:::i;46180:23::-;;;;;-1:-1:-1;;;;;46180:23:0;;;34258:185;;;;;;:::i;:::-;;:::i;46081:90::-;;46129:42;46081:90;;47308:218;;;;;;:::i;:::-;;:::i;47075:225::-;;;;;;:::i;:::-;;:::i;31466:124::-;;;;;;:::i;:::-;;:::i;45892:86::-;;45936:42;45892:86;;28641:206;;;;;;:::i;:::-;;:::i;4730:103::-;;;:::i;4079:87::-;4152:6;;-1:-1:-1;;;;;4152:6:0;4079:87;;31826:104;;;:::i;45985:89::-;;46032:42;45985:89;;33436:279;;;;;;:::i;:::-;;:::i;34514:369::-;;;;;;:::i;:::-;;:::i;32001:318::-;;;;;;:::i;:::-;;:::i;45857:26::-;;;:::i;47607:308::-;;;;;;:::i;:::-;;:::i;4988:201::-;;;;;;:::i;:::-;;:::i;28272:305::-;28374:4;-1:-1:-1;;;;;;28411:40:0;;-1:-1:-1;;;28411:40:0;;:105;;-1:-1:-1;;;;;;;28468:48:0;;-1:-1:-1;;;28468:48:0;28411:105;:158;;;-1:-1:-1;;;;;;;;;;16972:40:0;;;28533:36;28391:178;28272:305;-1:-1:-1;;28272:305:0:o;31657:100::-;31711:13;31744:5;31737:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31657:100;:::o;33160:204::-;33228:7;33253:16;33261:7;33253;:16::i;:::-;33248:64;;33278:34;;-1:-1:-1;;;33278:34:0;;;;;;;;;;;33248:64;-1:-1:-1;33332:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33332:24:0;;33160:204::o;32723:371::-;32796:13;32812:24;32828:7;32812:15;:24::i;:::-;32796:40;;32857:5;-1:-1:-1;;;;;32851:11:0;:2;-1:-1:-1;;;;;32851:11:0;;32847:48;;;32871:24;;-1:-1:-1;;;32871:24:0;;;;;;;;;;;32847:48;2883:10;-1:-1:-1;;;;;32912:21:0;;;;;;:63;;-1:-1:-1;32938:37:0;32955:5;2883:10;47607:308;:::i;32938:37::-;32937:38;32912:63;32908:138;;;32999:35;;-1:-1:-1;;;32999:35:0;;;;;;;;;;;32908:138;33058:28;33067:2;33071:7;33080:5;33058:8;:28::i;:::-;32785:309;32723:371;;:::o;34017:170::-;34151:28;34161:4;34167:2;34171:7;34151:9;:28::i;34258:185::-;34396:39;34413:4;34419:2;34423:7;34396:39;;;;;;;;;;;;:16;:39::i;47308:218::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;47386:23:0;::::1;47378:69;;;::::0;-1:-1:-1;;;47378:69:0;;6506:2:1;47378:69:0::1;::::0;::::1;6488:21:1::0;6545:2;6525:18;;;6518:30;6584:34;6564:18;;;6557:62;-1:-1:-1;;;6635:18:1;;;6628:31;6676:19;;47378:69:0::1;6304:397:1::0;47378:69:0::1;47458:8;:20:::0;;-1:-1:-1;;;;;;47458:20:0::1;-1:-1:-1::0;;;;;47458:20:0;::::1;::::0;;::::1;::::0;;;47496:22:::1;::::0;4926:51:1;;;47496:22:0::1;::::0;4914:2:1;4899:18;47496:22:0::1;;;;;;;;47308:218:::0;:::o;47075:225::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;47178:1:::1;47160:7;47154:21;:25;47146:71;;;::::0;-1:-1:-1;;;47146:71:0;;6908:2:1;47146:71:0::1;::::0;::::1;6890:21:1::0;6947:2;6927:18;;;6920:30;6986:34;6966:18;;;6959:62;-1:-1:-1;;;7037:18:1;;;7030:31;7078:19;;47146:71:0::1;6706:397:1::0;47146:71:0::1;47228:22:::0;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47268:24;47284:7;47268:24;;;;;;:::i;31466:124::-:0;31530:7;31557:20;31569:7;31557:11;:20::i;:::-;:25;;31466:124;-1:-1:-1;;31466:124:0:o;28641:206::-;28705:7;-1:-1:-1;;;;;28729:19:0;;28725:60;;28757:28;;-1:-1:-1;;;28757:28:0;;;;;;;;;;;28725:60;-1:-1:-1;;;;;;28811:19:0;;;;;:12;:19;;;;;:27;;;;28641:206::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;31826:104::-;31882:13;31915:7;31908:14;;;;;:::i;33436:279::-;-1:-1:-1;;;;;33527:24:0;;2883:10;33527:24;33523:54;;;33560:17;;-1:-1:-1;;;33560:17:0;;;;;;;;;;;33523:54;2883:10;33590:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33590:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33590:53:0;;;;;;;;;;33659:48;;5621:41:1;;;33590:42:0;;2883:10;33659:48;;5594:18:1;33659:48:0;;;;;;;33436:279;;:::o;34514:369::-;34681:28;34691:4;34697:2;34701:7;34681:9;:28::i;:::-;-1:-1:-1;;;;;34724:13:0;;7075:19;:23;;34724:76;;;;;34744:56;34775:4;34781:2;34785:7;34794:5;34744:30;:56::i;:::-;34743:57;34724:76;34720:156;;;34824:40;;-1:-1:-1;;;34824:40:0;;;;;;;;;;;34720:156;34514:369;;;;:::o;32001:318::-;32074:13;32105:16;32113:7;32105;:16::i;:::-;32100:59;;32130:29;;-1:-1:-1;;;32130:29:0;;;;;;;;;;;32100:59;32172:21;32196:10;:8;:10::i;:::-;32172:34;;32230:7;32224:21;32249:1;32224:26;;:87;;;;;;;;;;;;;;;;;32277:7;32286:18;:7;:16;:18::i;:::-;32260:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32224:87;32217:94;32001:318;-1:-1:-1;;;32001:318:0:o;45857:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47607:308::-;47734:4;-1:-1:-1;;;;;47755:27:0;;45936:42;47755:27;:52;;;;-1:-1:-1;47799:8:0;;-1:-1:-1;;;;;47786:21:0;;;47799:8;;47786:21;47755:52;47751:96;;;-1:-1:-1;47831:4:0;47824:11;;47751:96;-1:-1:-1;;;;;;33907:25:0;;;33883:4;33907:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;47607:308::o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;6099:2:1;5069:73:0::1;::::0;::::1;6081:21:1::0;6138:2;6118:18;;;6111:30;6177:34;6157:18;;;6150:62;-1:-1:-1;;;6228:18:1;;;6221:36;6274:19;;5069:73:0::1;5897:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;6780:326::-;-1:-1:-1;;;;;7075:19:0;;:23;;;6780:326::o;35138:187::-;35195:4;35259:13;;35249:7;:23;35219:98;;;;-1:-1:-1;;35290:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35290:27:0;;;;35289:28;;35138:187::o;42749:196::-;42864:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42864:29:0;-1:-1:-1;;;;;42864:29:0;;;;;;;;;42909:28;;42864:24;;42909:28;;;;;;;42749:196;;;:::o;38251:2112::-;38366:35;38404:20;38416:7;38404:11;:20::i;:::-;38479:18;;38366:58;;-1:-1:-1;38437:22:0;;-1:-1:-1;;;;;38463:34:0;2883:10;-1:-1:-1;;;;;38463:34:0;;:101;;;-1:-1:-1;38531:18:0;;38514:50;;2883:10;47607:308;:::i;38514:50::-;38463:154;;;-1:-1:-1;2883:10:0;38581:20;38593:7;38581:11;:20::i;:::-;-1:-1:-1;;;;;38581:36:0;;38463:154;38437:181;;38636:17;38631:66;;38662:35;;-1:-1:-1;;;38662:35:0;;;;;;;;;;;38631:66;38734:4;-1:-1:-1;;;;;38712:26:0;:13;:18;;;-1:-1:-1;;;;;38712:26:0;;38708:67;;38747:28;;-1:-1:-1;;;38747:28:0;;;;;;;;;;;38708:67;-1:-1:-1;;;;;38790:16:0;;38786:52;;38815:23;;-1:-1:-1;;;38815:23:0;;;;;;;;;;;38786:52;38959:49;38976:1;38980:7;38989:13;:18;;;38959:8;:49::i;:::-;-1:-1:-1;;;;;39304:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39304:31:0;;;;;;;-1:-1:-1;;39304:31:0;;;;;;;39350:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39350:29:0;;;;;;;;;;;39396:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39441:61:0;;;;-1:-1:-1;;;39486:15:0;39441:61;;;;;;;;;;;39776:11;;;39806:24;;;;;:29;39776:11;;39806:29;39802:445;;40031:13;;40017:11;:27;40013:219;;;40101:18;;;40069:24;;;:11;:24;;;;;;;;:50;;40184:28;;;;40142:70;;-1:-1:-1;;;40142:70:0;-1:-1:-1;;;;;;40142:70:0;;;-1:-1:-1;;;;;40069:50:0;;;40142:70;;;;;;;40013:219;39279:979;40294:7;40290:2;-1:-1:-1;;;;;40275:27:0;40284:4;-1:-1:-1;;;;;40275:27:0;;;;;;;;;;;38355:2008;;38251:2112;;;:::o;30296:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30406:7:0;30489:13;;30482:4;:20;30451:886;;;30523:31;30557:17;;;:11;:17;;;;;;;;;30523:51;;;;;;;;;-1:-1:-1;;;;;30523:51:0;;;;-1:-1:-1;;;30523:51:0;;;;;;;;;;;-1:-1:-1;;;30523:51:0;;;;;;;;;;;;;;30593:729;;30643:14;;-1:-1:-1;;;;;30643:28:0;;30639:101;;30707:9;30296:1108;-1:-1:-1;;;30296:1108:0:o;30639:101::-;-1:-1:-1;;;31082:6:0;31127:17;;;;:11;:17;;;;;;;;;31115:29;;;;;;;;;-1:-1:-1;;;;;31115:29:0;;;;;-1:-1:-1;;;31115:29:0;;;;;;;;;;;-1:-1:-1;;;31115:29:0;;;;;;;;;;;;;31175:28;31171:109;;31243:9;30296:1108;-1:-1:-1;;;30296:1108:0:o;31171:109::-;31042:261;;;30504:833;30451:886;31365:31;;-1:-1:-1;;;31365:31:0;;;;;;;;;;;5349:191;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;43437:667::-;43621:72;;-1:-1:-1;;;43621:72:0;;43600:4;;-1:-1:-1;;;;;43621:36:0;;;;;:72;;2883:10;;43672:4;;43678:7;;43687:5;;43621:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43621:72:0;;;;;;;;-1:-1:-1;;43621:72:0;;;;;;;;;;;;:::i;:::-;;;43617:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43855:13:0;;43851:235;;43901:40;;-1:-1:-1;;;43901:40:0;;;;;;;;;;;43851:235;44044:6;44038:13;44029:6;44025:2;44021:15;44014:38;43617:480;-1:-1:-1;;;;;;43740:55:0;-1:-1:-1;;;43740:55:0;;-1:-1:-1;43617:480:0;43437:667;;;;;;:::o;46904:113::-;46964:13;46997:12;46990:19;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;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:72;;;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:45;;;532:1;529;522:12;491:45;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;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;4988:488;-1:-1:-1;;;;;;4988:488:1:o;5673:219::-;5822:2;5811:9;5804:21;5785:4;5842:44;5882:2;5871:9;5867:18;5859:6;5842:44;:::i;7108:356::-;7310:2;7292:21;;;7329:18;;;7322:30;7388:34;7383:2;7368:18;;7361:62;7455:2;7440:18;;7108:356::o;7651:128::-;7691:3;7722:1;7718:6;7715:1;7712:13;7709:39;;;7728:18;;:::i;:::-;-1:-1:-1;7764:9:1;;7651:128::o;7784:120::-;7824:1;7850;7840:35;;7855:18;;:::i;:::-;-1:-1:-1;7889:9:1;;7784:120::o;7909:125::-;7949:4;7977:1;7974;7971:8;7968:34;;;7982:18;;:::i;:::-;-1:-1:-1;8019:9:1;;7909:125::o;8039:258::-;8111:1;8121:113;8135:6;8132:1;8129:13;8121:113;;;8211:11;;;8205:18;8192:11;;;8185:39;8157:2;8150:10;8121:113;;;8252:6;8249:1;8246:13;8243:48;;;-1:-1:-1;;8287:1:1;8269:16;;8262:27;8039:258::o;8302:380::-;8381:1;8377:12;;;;8424;;;8445:61;;8499:4;8491:6;8487:17;8477:27;;8445:61;8552:2;8544:6;8541:14;8521:18;8518:38;8515:161;;;8598:10;8593:3;8589:20;8586:1;8579:31;8633:4;8630:1;8623:15;8661:4;8658:1;8651:15;8515:161;;8302:380;;;:::o;8687:135::-;8726:3;-1:-1:-1;;8747:17:1;;8744:43;;;8767:18;;:::i;:::-;-1:-1:-1;8814:1:1;8803:13;;8687:135::o;8827:112::-;8859:1;8885;8875:35;;8890:18;;:::i;:::-;-1:-1:-1;8924:9:1;;8827:112::o;8944:127::-;9005:10;9000:3;8996:20;8993:1;8986:31;9036:4;9033:1;9026:15;9060:4;9057:1;9050:15;9076:127;9137:10;9132:3;9128:20;9125:1;9118:31;9168:4;9165:1;9158:15;9192:4;9189:1;9182:15;9208:127;9269:10;9264:3;9260:20;9257:1;9250:31;9300:4;9297:1;9290:15;9324:4;9321:1;9314:15;9340:127;9401:10;9396:3;9392:20;9389:1;9382:31;9432:4;9429:1;9422:15;9456:4;9453:1;9446:15;9472:131;-1:-1:-1;;;;;;9546:32:1;;9536:43;;9526:71;;9593:1;9590;9583:12

Swarm Source

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