ETH Price: $3,361.11 (-1.67%)
Gas: 11 Gwei

Token

Project INO (INO)
 

Overview

Max Total Supply

7,999 INO

Holders

3,861

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 INO
0x733fc6fd8c7c17b912a50389fd3417ea121823bd
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

An exploration starring an open-world narrative around Planet E1 where wonders and unexpected realities lies.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ProjectINO

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-02
*/

// SPDX-License-Identifier: MIT
// 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/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @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 IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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();
    }

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev 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 Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0)
            if (!_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 && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            if (to.code.length != 0) {
                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 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) 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 {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

            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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

    /**
     * @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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__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 {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: contracts/projectino.sol



pragma solidity 0.8.14;

contract ProjectINO is ERC721A, Ownable {
  enum SaleConfig {
    PAUSED,
    INOLIST,
    FINAL
  }

  using Strings for uint256;
  string private baseURI;
  string public baseExtension =".json";
  string public unRevealedURI;
  bool public revealed = false;

  /*///////////////////////////////////////////////////////////////
                        SET SALE PAUSED
    //////////////////////////////////////////////////////////////*/

  SaleConfig public saleConfig = SaleConfig.PAUSED;

  /*///////////////////////////////////////////////////////////////
                        PROJECT INFO
    //////////////////////////////////////////////////////////////*/

  uint256 public constant INO_SUPPLY = 7999;
  uint256 private constant RESERVED_INO = 280;
  uint256 public constant INO_LIMIT = 1;

  /*///////////////////////////////////////////////////////////////
                        TRACKING
    //////////////////////////////////////////////////////////////*/

  bytes32 public merkleRoot;

  mapping(address => bool) public inoListPurchased;

   address private immutable withdrawalAddress;

  constructor (
      address _withdrawalAddress,
      string memory _RBaseURI,
      string memory _unRevealedUri
  ) ERC721A ("Project INO", "INO") {
          setBaseURI(_RBaseURI);
          setUnRevealedUri(_unRevealedUri);
          withdrawalAddress = _withdrawalAddress;
          _mint(tx.origin, RESERVED_INO);
      }

   /*///////////////////////////////////////////////////////////////
                        MerkleRoots & Sale Functions
    //////////////////////////////////////////////////////////////*/

  function setSaleConfig(SaleConfig _status) external onlyOwner {
      saleConfig = _status;
  }

  function setMerkleRoots(bytes32 _merkleRoot) external onlyOwner {
    merkleRoot = _merkleRoot;
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

  /*///////////////////////////////////////////////////////////////
                        MINT FUNCTIONS
    //////////////////////////////////////////////////////////////*/

  function inoListMint(uint256 _amount, bytes32[] memory _proof) external payable callerIsUser {
      require(
          saleConfig == SaleConfig.INOLIST,
           "DEAR SPECIAL ONE, ARRIVAL ON PLANET IS NOT ALLOWED. TRY AGAIN SOON.");
      require(
          MerkleProof.verify(_proof, merkleRoot, keccak256(abi.encodePacked(msg.sender))),
          "You are not on the Ino List."
          );
      require(
        _amount <= INO_LIMIT,
         "QUANTITY SURPASSES PER-TXN LIMIT");
      require(
          !inoListPurchased[msg.sender],
           "INO LIST HAS BEEN USED, TRY AGAIN ON PUBLIC.");
      inoListPurchased[msg.sender] = true;
      require(
          totalSupply() + _amount <= INO_SUPPLY,
           "MAX CAP OF INO EXCEEDED");
      _mint(msg.sender, _amount);
  }

  function finalMint(uint256 _amount) external payable callerIsUser {
      require(
          saleConfig == SaleConfig.FINAL,
           "ENTRY OF PLANET IS NOT ALLOWED. PLEASE HOLD.");
      require(
          _amount <= INO_LIMIT,
           "QUANTITY SURPASSES PER-TXN LIMIT");
      require(
          totalSupply() + _amount <= INO_SUPPLY,
           "MAX CAP OF INO EXCEEDED");
      _mint(msg.sender, _amount);
  }
  

  /*///////////////////////////////////////////////////////////////
                        METADATA URI
    //////////////////////////////////////////////////////////////*/
    
    function _baseURI() internal view virtual override
    returns (string memory)
  {
    return baseURI;
  }


  function reveal() public onlyOwner() {
      revealed = true;
	  }
	  
	  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return unRevealedURI;
    }

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

	function setUnRevealedUri(string memory _unRevealedUri) public onlyOwner {
    unRevealedURI = _unRevealedUri;
  }

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


  /*///////////////////////////////////////////////////////////////
                        TRACKING NUMBER MINTED
    //////////////////////////////////////////////////////////////*/

    function numberMinted(address _owner) public view returns (uint256) {
    return _numberMinted(_owner);
  }

    function getOwnershipData(uint256 _tokenId) external view returns (TokenOwnership memory) {
    return _ownershipOf(_tokenId);
  }

  /*///////////////////////////////////////////////////////////////
                        WITHDRAW FUNDS
    //////////////////////////////////////////////////////////////*/
    
    function withdrawFunds() external onlyOwner {
        payable(withdrawalAddress).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_withdrawalAddress","type":"address"},{"internalType":"string","name":"_RBaseURI","type":"string"},{"internalType":"string","name":"_unRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INO_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INO_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"finalMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"inoListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"inoListPurchased","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"enum ProjectINO.SaleConfig","name":"","type":"uint8"}],"stateMutability":"view","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum ProjectINO.SaleConfig","name":"_status","type":"uint8"}],"name":"setSaleConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_unRevealedUri","type":"string"}],"name":"setUnRevealedUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052600560a081905264173539b7b760d91b60c09081526200002891600a919062000312565b50600c805461ffff191690553480156200004157600080fd5b50604051620031c1380380620031c1833981016040819052620000649162000485565b604080518082018252600b81526a50726f6a65637420494e4f60a81b602080830191825283518085019094526003845262494e4f60e81b908401528151919291620000b29160029162000312565b508051620000c890600390602084019062000312565b50506000805550620000da3362000114565b620000e58262000166565b620000f081620001ce565b6001600160a01b0383166080526200010b326101186200022e565b5050506200054b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001b55760405162461bcd60e51b81526020600482018190526024820152600080516020620031a183398151915260448201526064015b60405180910390fd5b8051620001ca90600990602084019062000312565b5050565b6008546001600160a01b03163314620002195760405162461bcd60e51b81526020600482018190526024820152600080516020620031a18339815191526044820152606401620001ac565b8051620001ca90600b90602084019062000312565b6000546001600160a01b0383166200025857604051622e076360e81b815260040160405180910390fd5b816000036200027a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210620002c55750600055505050565b82805462000320906200050f565b90600052602060002090601f0160209004810192826200034457600085556200038f565b82601f106200035f57805160ff19168380011785556200038f565b828001600101855582156200038f579182015b828111156200038f57825182559160200191906001019062000372565b506200039d929150620003a1565b5090565b5b808211156200039d5760008155600101620003a2565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620003e057600080fd5b81516001600160401b0380821115620003fd57620003fd620003b8565b604051601f8301601f19908116603f01168101908282118183101715620004285762000428620003b8565b816040528381526020925086838588010111156200044557600080fd5b600091505b838210156200046957858201830151818301840152908201906200044a565b838211156200047b5760008385830101525b9695505050505050565b6000806000606084860312156200049b57600080fd5b83516001600160a01b0381168114620004b357600080fd5b60208501519093506001600160401b0380821115620004d157600080fd5b620004df87838801620003ce565b93506040860151915080821115620004f657600080fd5b506200050586828701620003ce565b9150509250925092565b600181811c908216806200052457607f821691505b6020821081036200054557634e487b7160e01b600052602260045260246000fd5b50919050565b608051612c3a620005676000396000610adb0152612c3a6000f3fe6080604052600436106102345760003560e01c80636352211e11610138578063b88d4fde116100b0578063dc33e6811161007f578063edcaaf7811610064578063edcaaf78146106b1578063ee4e15cd146106c7578063f2fde38b146106da57600080fd5b8063dc33e6811461063b578063e985e9c51461065b57600080fd5b8063b88d4fde146105d3578063c6682862146105f3578063c87b56dd14610608578063cc0ebf5b1461062857600080fd5b806390aa0b0f1161010757806395d89b41116100ec57806395d89b4114610589578063a22cb4651461059e578063a475b5dd146105be57600080fd5b806390aa0b0f146104f95780639231ab2a1461052557600080fd5b80636352211e1461047957806370a0823114610499578063715018a6146104b95780638da5cb5b146104ce57600080fd5b8063271ed62c116101cb5780633540ce5e1161019a57806342842e0e1161017f57806342842e0e1461041f578063518302271461043f57806355f804b31461045957600080fd5b80633540ce5e146103ea57806340af91ec146103ff57600080fd5b8063271ed62c1461037f578063276306ed1461039f5780632931ec16146103b45780632eb4a7ab146103d457600080fd5b806318160ddd1161020757806318160ddd146102f75780631c53f5941461031a57806323b872dd1461034a57806324600fc31461036a57600080fd5b806301ffc9a71461023957806306fdde031461026e578063081812fc14610290578063095ea7b3146102d5575b600080fd5b34801561024557600080fd5b50610259610254366004612461565b6106fa565b60405190151581526020015b60405180910390f35b34801561027a57600080fd5b506102836107df565b60405161026591906124f4565b34801561029c57600080fd5b506102b06102ab366004612507565b610871565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610265565b3480156102e157600080fd5b506102f56102f0366004612549565b6108db565b005b34801561030357600080fd5b50600154600054035b604051908152602001610265565b34801561032657600080fd5b50610259610335366004612573565b600e6020526000908152604090205460ff1681565b34801561035657600080fd5b506102f561036536600461258e565b610a2b565b34801561037657600080fd5b506102f5610a3b565b34801561038b57600080fd5b506102f561039a3660046126be565b610b26565b3480156103ab57600080fd5b50610283610bbe565b3480156103c057600080fd5b506102f56103cf366004612507565b610c4c565b3480156103e057600080fd5b5061030c600d5481565b3480156103f657600080fd5b5061030c600181565b34801561040b57600080fd5b506102f561041a366004612707565b610cd2565b34801561042b57600080fd5b506102f561043a36600461258e565b610d99565b34801561044b57600080fd5b50600c546102599060ff1681565b34801561046557600080fd5b506102f56104743660046126be565b610db4565b34801561048557600080fd5b506102b0610494366004612507565b610e48565b3480156104a557600080fd5b5061030c6104b4366004612573565b610e53565b3480156104c557600080fd5b506102f5610ed5565b3480156104da57600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff166102b0565b34801561050557600080fd5b50600c5461051890610100900460ff1681565b6040516102659190612757565b34801561053157600080fd5b50610545610540366004612507565b610f62565b60408051825173ffffffffffffffffffffffffffffffffffffffff16815260208084015167ffffffffffffffff169082015291810151151590820152606001610265565b34801561059557600080fd5b50610283610f88565b3480156105aa57600080fd5b506102f56105b9366004612798565b610f97565b3480156105ca57600080fd5b506102f561107d565b3480156105df57600080fd5b506102f56105ee3660046127d4565b61112b565b3480156105ff57600080fd5b5061028361119b565b34801561061457600080fd5b50610283610623366004612507565b6111a8565b6102f5610636366004612850565b61133f565b34801561064757600080fd5b5061030c610656366004612573565b611704565b34801561066757600080fd5b50610259610676366004612902565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106bd57600080fd5b5061030c611f3f81565b6102f56106d5366004612507565b61173c565b3480156106e657600080fd5b506102f56106f5366004612573565b611948565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061078d57507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806107d957507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546107ee90612935565b80601f016020809104026020016040519081016040528092919081815260200182805461081a90612935565b80156108675780601f1061083c57610100808354040283529160200191610867565b820191906000526020600020905b81548152906001019060200180831161084a57829003601f168201915b5050505050905090565b600061087c82611a75565b6108b2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006108e682611ab5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361094d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff8216146109aa576109748133610676565b6109aa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a36838383611b6c565b505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314610ac1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016904780156108fc02916000818181858888f19350505050158015610b23573d6000803e3d6000fd5b50565b60085473ffffffffffffffffffffffffffffffffffffffff163314610ba7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ab8565b8051610bba90600b90602084019061239a565b5050565b600b8054610bcb90612935565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf790612935565b8015610c445780601f10610c1957610100808354040283529160200191610c44565b820191906000526020600020905b815481529060010190602001808311610c2757829003601f168201915b505050505081565b60085473ffffffffffffffffffffffffffffffffffffffff163314610ccd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ab8565b600d55565b60085473ffffffffffffffffffffffffffffffffffffffff163314610d53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ab8565b600c80548291907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100836002811115610d9157610d91612728565b021790555050565b610a368383836040518060200160405280600081525061112b565b60085473ffffffffffffffffffffffffffffffffffffffff163314610e35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ab8565b8051610bba90600990602084019061239a565b60006107d982611ab5565b600073ffffffffffffffffffffffffffffffffffffffff8216610ea2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b60085473ffffffffffffffffffffffffffffffffffffffff163314610f56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ab8565b610f606000611e16565b565b60408051606081018252600080825260208201819052918101919091526107d982611e8d565b6060600380546107ee90612935565b3373ffffffffffffffffffffffffffffffffffffffff831603610fe6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60085473ffffffffffffffffffffffffffffffffffffffff1633146110fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ab8565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b611136848484611b6c565b73ffffffffffffffffffffffffffffffffffffffff83163b156111955761115f84848484611f17565b611195576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a8054610bcb90612935565b60606111b382611a75565b61123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610ab8565b600c5460ff1615156000036112e057600b805461125b90612935565b80601f016020809104026020016040519081016040528092919081815260200182805461128790612935565b80156112d45780601f106112a9576101008083540402835291602001916112d4565b820191906000526020600020905b8154815290600101906020018083116112b757829003601f168201915b50505050509050919050565b60006112ea612091565b9050600081511161130a5760405180602001604052806000815250611338565b80611314846120a0565b600a60405160200161132893929190612988565b6040516020818303038152906040525b9392505050565b3233146113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610ab8565b6001600c54610100900460ff1660028111156113c6576113c6612728565b14611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604360248201527f44454152205350454349414c204f4e452c204152524956414c204f4e20504c4160448201527f4e4554204953204e4f5420414c4c4f5745442e2054525920414741494e20534f60648201527f4f4e2e0000000000000000000000000000000000000000000000000000000000608482015260a401610ab8565b600d546040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201526114ce918391603401604051602081830303815290604052805190602001206121d5565b611534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f596f7520617265206e6f74206f6e2074686520496e6f204c6973742e000000006044820152606401610ab8565b600182111561159f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f5155414e5449545920535552504153534553205045522d54584e204c494d49546044820152606401610ab8565b336000908152600e602052604090205460ff161561163f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f494e4f204c49535420484153204245454e20555345442c20545259204147414960448201527f4e204f4e205055424c49432e00000000000000000000000000000000000000006064820152608401610ab8565b336000908152600e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611f3f826116886001546000540390565b6116929190612ab1565b11156116fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4d415820434150204f4620494e4f2045584345454445440000000000000000006044820152606401610ab8565b610bba33836121eb565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600560205260408082205467ffffffffffffffff911c166107d9565b3233146117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610ab8565b6002600c54610100900460ff1660028111156117c3576117c3612728565b14611850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f454e545259204f4620504c414e4554204953204e4f5420414c4c4f5745442e2060448201527f504c4541534520484f4c442e00000000000000000000000000000000000000006064820152608401610ab8565b60018111156118bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f5155414e5449545920535552504153534553205045522d54584e204c494d49546044820152606401610ab8565b611f3f816118cc6001546000540390565b6118d69190612ab1565b111561193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4d415820434150204f4620494e4f2045584345454445440000000000000000006044820152606401610ab8565b610b2333826121eb565b60085473ffffffffffffffffffffffffffffffffffffffff1633146119c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ab8565b73ffffffffffffffffffffffffffffffffffffffff8116611a6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ab8565b610b2381611e16565b60008054821080156107d95750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b600081600054811015611b3a57600081815260046020526040812054907c010000000000000000000000000000000000000000000000000000000082169003611b38575b8060000361133857507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600081815260046020526040902054611af9565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611b7782611ab5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611bde576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff86161480611c095750611c098533610676565b80611c31575033611c1984610871565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c6a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8416611cb7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083815260066020908152604080832080547fffffffffffffffffffffffff000000000000000000000000000000000000000016905573ffffffffffffffffffffffffffffffffffffffff88811684526005835281842080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190558716835280832080546001019055858352600490915281207c02000000000000000000000000000000000000000000000000000000004260a01b8717811790915583169003611db457600183016000818152600460205260408120549003611db2576000548114611db25760008181526004602052604090208390555b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051606081018252600080825260208201819052918101919091526107d9611eb683611ab5565b6040805160608101825273ffffffffffffffffffffffffffffffffffffffff8316815260a083901c67ffffffffffffffff1660208201527c010000000000000000000000000000000000000000000000000000000090921615159082015290565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611f72903390899088908890600401612ac9565b6020604051808303816000875af1925050508015611fcb575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611fc891810190612b12565b60015b612042573d808015611ff9576040519150601f19603f3d011682016040523d82523d6000602084013e611ffe565b606091505b50805160000361203a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600980546107ee90612935565b6060816000036120e357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561210d57806120f781612b2f565b91506121069050600a83612b96565b91506120e7565b60008167ffffffffffffffff811115612128576121286125ca565b6040519080825280601f01601f191660200182016040528015612152576020820181803683370190505b5090505b841561208957612167600183612baa565b9150612174600a86612bc1565b61217f906030612ab1565b60f81b81838151811061219457612194612bd5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506121ce600a86612b96565b9450612156565b6000826121e28584612326565b14949350505050565b60005473ffffffffffffffffffffffffffffffffffffffff831661223b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600003612275576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b60405160018301929073ffffffffffffffffffffffffffffffffffffffff8716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106122cd5750600055505050565b600081815b845181101561239257600085828151811061234857612348612bd5565b6020026020010151905080831161236e576000838152602082905260409020925061237f565b600081815260208490526040902092505b508061238a81612b2f565b91505061232b565b509392505050565b8280546123a690612935565b90600052602060002090601f0160209004810192826123c8576000855561240e565b82601f106123e157805160ff191683800117855561240e565b8280016001018555821561240e579182015b8281111561240e5782518255916020019190600101906123f3565b5061241a92915061241e565b5090565b5b8082111561241a576000815560010161241f565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610b2357600080fd5b60006020828403121561247357600080fd5b813561133881612433565b60005b83811015612499578181015183820152602001612481565b838111156111955750506000910152565b600081518084526124c281602086016020860161247e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061133860208301846124aa565b60006020828403121561251957600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461254457600080fd5b919050565b6000806040838503121561255c57600080fd5b61256583612520565b946020939093013593505050565b60006020828403121561258557600080fd5b61133882612520565b6000806000606084860312156125a357600080fd5b6125ac84612520565b92506125ba60208501612520565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715612640576126406125ca565b604052919050565b600067ffffffffffffffff831115612662576126626125ca565b61269360207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f860116016125f9565b90508281528383830111156126a757600080fd5b828260208301376000602084830101529392505050565b6000602082840312156126d057600080fd5b813567ffffffffffffffff8111156126e757600080fd5b8201601f810184136126f857600080fd5b61208984823560208401612648565b60006020828403121561271957600080fd5b81356003811061133857600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6020810160038310612792577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b600080604083850312156127ab57600080fd5b6127b483612520565b9150602083013580151581146127c957600080fd5b809150509250929050565b600080600080608085870312156127ea57600080fd5b6127f385612520565b935061280160208601612520565b925060408501359150606085013567ffffffffffffffff81111561282457600080fd5b8501601f8101871361283557600080fd5b61284487823560208401612648565b91505092959194509250565b6000806040838503121561286357600080fd5b8235915060208084013567ffffffffffffffff8082111561288357600080fd5b818601915086601f83011261289757600080fd5b8135818111156128a9576128a96125ca565b8060051b91506128ba8483016125f9565b81815291830184019184810190898411156128d457600080fd5b938501935b838510156128f2578435825293850193908501906128d9565b8096505050505050509250929050565b6000806040838503121561291557600080fd5b61291e83612520565b915061292c60208401612520565b90509250929050565b600181811c9082168061294957607f821691505b602082108103612982577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60008451602061299b8285838a0161247e565b8551918401916129ae8184848a0161247e565b8554920191600090600181811c90808316806129cb57607f831692505b8583108103612a01577f4e487b710000000000000000000000000000000000000000000000000000000085526022600452602485fd5b808015612a155760018114612a4457612a71565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00851688528388019550612a71565b60008b81526020902060005b85811015612a695781548a820152908401908801612a50565b505083880195505b50939b9a5050505050505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115612ac457612ac4612a82565b500190565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612b0860808301846124aa565b9695505050505050565b600060208284031215612b2457600080fd5b815161133881612433565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612b6057612b60612a82565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612ba557612ba5612b67565b500490565b600082821015612bbc57612bbc612a82565b500390565b600082612bd057612bd0612b67565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220a7eb5d64ca654df1ccd00f007d2f64ab03f3669821b37fba014fec0ff5f95b7964736f6c634300080e00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000dc0cef0726ebd32eb9cb1e650790438039e3ea12000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004d697066733a2f2f516d535a375a344e766f733533566f5076576d4b575344513864413746445761355459447076476a4363786b46692f756e72657665616c65646d657461646174612e6a736f6e00000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102345760003560e01c80636352211e11610138578063b88d4fde116100b0578063dc33e6811161007f578063edcaaf7811610064578063edcaaf78146106b1578063ee4e15cd146106c7578063f2fde38b146106da57600080fd5b8063dc33e6811461063b578063e985e9c51461065b57600080fd5b8063b88d4fde146105d3578063c6682862146105f3578063c87b56dd14610608578063cc0ebf5b1461062857600080fd5b806390aa0b0f1161010757806395d89b41116100ec57806395d89b4114610589578063a22cb4651461059e578063a475b5dd146105be57600080fd5b806390aa0b0f146104f95780639231ab2a1461052557600080fd5b80636352211e1461047957806370a0823114610499578063715018a6146104b95780638da5cb5b146104ce57600080fd5b8063271ed62c116101cb5780633540ce5e1161019a57806342842e0e1161017f57806342842e0e1461041f578063518302271461043f57806355f804b31461045957600080fd5b80633540ce5e146103ea57806340af91ec146103ff57600080fd5b8063271ed62c1461037f578063276306ed1461039f5780632931ec16146103b45780632eb4a7ab146103d457600080fd5b806318160ddd1161020757806318160ddd146102f75780631c53f5941461031a57806323b872dd1461034a57806324600fc31461036a57600080fd5b806301ffc9a71461023957806306fdde031461026e578063081812fc14610290578063095ea7b3146102d5575b600080fd5b34801561024557600080fd5b50610259610254366004612461565b6106fa565b60405190151581526020015b60405180910390f35b34801561027a57600080fd5b506102836107df565b60405161026591906124f4565b34801561029c57600080fd5b506102b06102ab366004612507565b610871565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610265565b3480156102e157600080fd5b506102f56102f0366004612549565b6108db565b005b34801561030357600080fd5b50600154600054035b604051908152602001610265565b34801561032657600080fd5b50610259610335366004612573565b600e6020526000908152604090205460ff1681565b34801561035657600080fd5b506102f561036536600461258e565b610a2b565b34801561037657600080fd5b506102f5610a3b565b34801561038b57600080fd5b506102f561039a3660046126be565b610b26565b3480156103ab57600080fd5b50610283610bbe565b3480156103c057600080fd5b506102f56103cf366004612507565b610c4c565b3480156103e057600080fd5b5061030c600d5481565b3480156103f657600080fd5b5061030c600181565b34801561040b57600080fd5b506102f561041a366004612707565b610cd2565b34801561042b57600080fd5b506102f561043a36600461258e565b610d99565b34801561044b57600080fd5b50600c546102599060ff1681565b34801561046557600080fd5b506102f56104743660046126be565b610db4565b34801561048557600080fd5b506102b0610494366004612507565b610e48565b3480156104a557600080fd5b5061030c6104b4366004612573565b610e53565b3480156104c557600080fd5b506102f5610ed5565b3480156104da57600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff166102b0565b34801561050557600080fd5b50600c5461051890610100900460ff1681565b6040516102659190612757565b34801561053157600080fd5b50610545610540366004612507565b610f62565b60408051825173ffffffffffffffffffffffffffffffffffffffff16815260208084015167ffffffffffffffff169082015291810151151590820152606001610265565b34801561059557600080fd5b50610283610f88565b3480156105aa57600080fd5b506102f56105b9366004612798565b610f97565b3480156105ca57600080fd5b506102f561107d565b3480156105df57600080fd5b506102f56105ee3660046127d4565b61112b565b3480156105ff57600080fd5b5061028361119b565b34801561061457600080fd5b50610283610623366004612507565b6111a8565b6102f5610636366004612850565b61133f565b34801561064757600080fd5b5061030c610656366004612573565b611704565b34801561066757600080fd5b50610259610676366004612902565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106bd57600080fd5b5061030c611f3f81565b6102f56106d5366004612507565b61173c565b3480156106e657600080fd5b506102f56106f5366004612573565b611948565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061078d57507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806107d957507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546107ee90612935565b80601f016020809104026020016040519081016040528092919081815260200182805461081a90612935565b80156108675780601f1061083c57610100808354040283529160200191610867565b820191906000526020600020905b81548152906001019060200180831161084a57829003601f168201915b5050505050905090565b600061087c82611a75565b6108b2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60006108e682611ab5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361094d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff8216146109aa576109748133610676565b6109aa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a36838383611b6c565b505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314610ac1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60405173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000dc0cef0726ebd32eb9cb1e650790438039e3ea1216904780156108fc02916000818181858888f19350505050158015610b23573d6000803e3d6000fd5b50565b60085473ffffffffffffffffffffffffffffffffffffffff163314610ba7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ab8565b8051610bba90600b90602084019061239a565b5050565b600b8054610bcb90612935565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf790612935565b8015610c445780601f10610c1957610100808354040283529160200191610c44565b820191906000526020600020905b815481529060010190602001808311610c2757829003601f168201915b505050505081565b60085473ffffffffffffffffffffffffffffffffffffffff163314610ccd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ab8565b600d55565b60085473ffffffffffffffffffffffffffffffffffffffff163314610d53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ab8565b600c80548291907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100836002811115610d9157610d91612728565b021790555050565b610a368383836040518060200160405280600081525061112b565b60085473ffffffffffffffffffffffffffffffffffffffff163314610e35576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ab8565b8051610bba90600990602084019061239a565b60006107d982611ab5565b600073ffffffffffffffffffffffffffffffffffffffff8216610ea2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b60085473ffffffffffffffffffffffffffffffffffffffff163314610f56576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ab8565b610f606000611e16565b565b60408051606081018252600080825260208201819052918101919091526107d982611e8d565b6060600380546107ee90612935565b3373ffffffffffffffffffffffffffffffffffffffff831603610fe6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60085473ffffffffffffffffffffffffffffffffffffffff1633146110fe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ab8565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b611136848484611b6c565b73ffffffffffffffffffffffffffffffffffffffff83163b156111955761115f84848484611f17565b611195576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a8054610bcb90612935565b60606111b382611a75565b61123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610ab8565b600c5460ff1615156000036112e057600b805461125b90612935565b80601f016020809104026020016040519081016040528092919081815260200182805461128790612935565b80156112d45780601f106112a9576101008083540402835291602001916112d4565b820191906000526020600020905b8154815290600101906020018083116112b757829003601f168201915b50505050509050919050565b60006112ea612091565b9050600081511161130a5760405180602001604052806000815250611338565b80611314846120a0565b600a60405160200161132893929190612988565b6040516020818303038152906040525b9392505050565b3233146113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610ab8565b6001600c54610100900460ff1660028111156113c6576113c6612728565b14611479576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604360248201527f44454152205350454349414c204f4e452c204152524956414c204f4e20504c4160448201527f4e4554204953204e4f5420414c4c4f5745442e2054525920414741494e20534f60648201527f4f4e2e0000000000000000000000000000000000000000000000000000000000608482015260a401610ab8565b600d546040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201526114ce918391603401604051602081830303815290604052805190602001206121d5565b611534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f596f7520617265206e6f74206f6e2074686520496e6f204c6973742e000000006044820152606401610ab8565b600182111561159f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f5155414e5449545920535552504153534553205045522d54584e204c494d49546044820152606401610ab8565b336000908152600e602052604090205460ff161561163f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f494e4f204c49535420484153204245454e20555345442c20545259204147414960448201527f4e204f4e205055424c49432e00000000000000000000000000000000000000006064820152608401610ab8565b336000908152600e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611f3f826116886001546000540390565b6116929190612ab1565b11156116fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4d415820434150204f4620494e4f2045584345454445440000000000000000006044820152606401610ab8565b610bba33836121eb565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600560205260408082205467ffffffffffffffff911c166107d9565b3233146117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610ab8565b6002600c54610100900460ff1660028111156117c3576117c3612728565b14611850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f454e545259204f4620504c414e4554204953204e4f5420414c4c4f5745442e2060448201527f504c4541534520484f4c442e00000000000000000000000000000000000000006064820152608401610ab8565b60018111156118bb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f5155414e5449545920535552504153534553205045522d54584e204c494d49546044820152606401610ab8565b611f3f816118cc6001546000540390565b6118d69190612ab1565b111561193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4d415820434150204f4620494e4f2045584345454445440000000000000000006044820152606401610ab8565b610b2333826121eb565b60085473ffffffffffffffffffffffffffffffffffffffff1633146119c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ab8565b73ffffffffffffffffffffffffffffffffffffffff8116611a6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ab8565b610b2381611e16565b60008054821080156107d95750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b600081600054811015611b3a57600081815260046020526040812054907c010000000000000000000000000000000000000000000000000000000082169003611b38575b8060000361133857507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600081815260046020526040902054611af9565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611b7782611ab5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611bde576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff86161480611c095750611c098533610676565b80611c31575033611c1984610871565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c6a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8416611cb7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083815260066020908152604080832080547fffffffffffffffffffffffff000000000000000000000000000000000000000016905573ffffffffffffffffffffffffffffffffffffffff88811684526005835281842080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190558716835280832080546001019055858352600490915281207c02000000000000000000000000000000000000000000000000000000004260a01b8717811790915583169003611db457600183016000818152600460205260408120549003611db2576000548114611db25760008181526004602052604090208390555b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051606081018252600080825260208201819052918101919091526107d9611eb683611ab5565b6040805160608101825273ffffffffffffffffffffffffffffffffffffffff8316815260a083901c67ffffffffffffffff1660208201527c010000000000000000000000000000000000000000000000000000000090921615159082015290565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611f72903390899088908890600401612ac9565b6020604051808303816000875af1925050508015611fcb575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611fc891810190612b12565b60015b612042573d808015611ff9576040519150601f19603f3d011682016040523d82523d6000602084013e611ffe565b606091505b50805160000361203a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600980546107ee90612935565b6060816000036120e357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561210d57806120f781612b2f565b91506121069050600a83612b96565b91506120e7565b60008167ffffffffffffffff811115612128576121286125ca565b6040519080825280601f01601f191660200182016040528015612152576020820181803683370190505b5090505b841561208957612167600183612baa565b9150612174600a86612bc1565b61217f906030612ab1565b60f81b81838151811061219457612194612bd5565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506121ce600a86612b96565b9450612156565b6000826121e28584612326565b14949350505050565b60005473ffffffffffffffffffffffffffffffffffffffff831661223b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600003612275576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b60405160018301929073ffffffffffffffffffffffffffffffffffffffff8716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106122cd5750600055505050565b600081815b845181101561239257600085828151811061234857612348612bd5565b6020026020010151905080831161236e576000838152602082905260409020925061237f565b600081815260208490526040902092505b508061238a81612b2f565b91505061232b565b509392505050565b8280546123a690612935565b90600052602060002090601f0160209004810192826123c8576000855561240e565b82601f106123e157805160ff191683800117855561240e565b8280016001018555821561240e579182015b8281111561240e5782518255916020019190600101906123f3565b5061241a92915061241e565b5090565b5b8082111561241a576000815560010161241f565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610b2357600080fd5b60006020828403121561247357600080fd5b813561133881612433565b60005b83811015612499578181015183820152602001612481565b838111156111955750506000910152565b600081518084526124c281602086016020860161247e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061133860208301846124aa565b60006020828403121561251957600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461254457600080fd5b919050565b6000806040838503121561255c57600080fd5b61256583612520565b946020939093013593505050565b60006020828403121561258557600080fd5b61133882612520565b6000806000606084860312156125a357600080fd5b6125ac84612520565b92506125ba60208501612520565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715612640576126406125ca565b604052919050565b600067ffffffffffffffff831115612662576126626125ca565b61269360207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f860116016125f9565b90508281528383830111156126a757600080fd5b828260208301376000602084830101529392505050565b6000602082840312156126d057600080fd5b813567ffffffffffffffff8111156126e757600080fd5b8201601f810184136126f857600080fd5b61208984823560208401612648565b60006020828403121561271957600080fd5b81356003811061133857600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6020810160038310612792577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b600080604083850312156127ab57600080fd5b6127b483612520565b9150602083013580151581146127c957600080fd5b809150509250929050565b600080600080608085870312156127ea57600080fd5b6127f385612520565b935061280160208601612520565b925060408501359150606085013567ffffffffffffffff81111561282457600080fd5b8501601f8101871361283557600080fd5b61284487823560208401612648565b91505092959194509250565b6000806040838503121561286357600080fd5b8235915060208084013567ffffffffffffffff8082111561288357600080fd5b818601915086601f83011261289757600080fd5b8135818111156128a9576128a96125ca565b8060051b91506128ba8483016125f9565b81815291830184019184810190898411156128d457600080fd5b938501935b838510156128f2578435825293850193908501906128d9565b8096505050505050509250929050565b6000806040838503121561291557600080fd5b61291e83612520565b915061292c60208401612520565b90509250929050565b600181811c9082168061294957607f821691505b602082108103612982577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60008451602061299b8285838a0161247e565b8551918401916129ae8184848a0161247e565b8554920191600090600181811c90808316806129cb57607f831692505b8583108103612a01577f4e487b710000000000000000000000000000000000000000000000000000000085526022600452602485fd5b808015612a155760018114612a4457612a71565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00851688528388019550612a71565b60008b81526020902060005b85811015612a695781548a820152908401908801612a50565b505083880195505b50939b9a5050505050505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115612ac457612ac4612a82565b500190565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152612b0860808301846124aa565b9695505050505050565b600060208284031215612b2457600080fd5b815161133881612433565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612b6057612b60612a82565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082612ba557612ba5612b67565b500490565b600082821015612bbc57612bbc612a82565b500390565b600082612bd057612bd0612b67565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220a7eb5d64ca654df1ccd00f007d2f64ab03f3669821b37fba014fec0ff5f95b7964736f6c634300080e0033

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

000000000000000000000000dc0cef0726ebd32eb9cb1e650790438039e3ea12000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004d697066733a2f2f516d535a375a344e766f733533566f5076576d4b575344513864413746445761355459447076476a4363786b46692f756e72657665616c65646d657461646174612e6a736f6e00000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _withdrawalAddress (address): 0xdC0Cef0726ebd32Eb9Cb1E650790438039e3eA12
Arg [1] : _RBaseURI (string):
Arg [2] : _unRevealedUri (string): ipfs://QmSZ7Z4Nvos53VoPvWmKWSDQ8dA7FDWa5TYDpvGjCcxkFi/unrevealedmetadata.json

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000dc0cef0726ebd32eb9cb1e650790438039e3ea12
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000004d
Arg [5] : 697066733a2f2f516d535a375a344e766f733533566f5076576d4b5753445138
Arg [6] : 64413746445761355459447076476a4363786b46692f756e72657665616c6564
Arg [7] : 6d657461646174612e6a736f6e00000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46680:5307:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21338:615;;;;;;;;;;-1:-1:-1;21338:615:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;21338:615:0;;;;;;;;26351:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28419:204::-;;;;;;;;;;-1:-1:-1;28419:204:0;;;;;:::i;:::-;;:::i;:::-;;;1809:42:1;1797:55;;;1779:74;;1767:2;1752:18;28419:204:0;1633:226:1;27879:474:0;;;;;;;;;;-1:-1:-1;27879:474:0;;;;;:::i;:::-;;:::i;:::-;;20392:315;;;;;;;;;;-1:-1:-1;20658:12:0;;20445:7;20642:13;:28;20392:315;;;2470:25:1;;;2458:2;2443:18;20392:315:0;2324:177:1;47717:48:0;;;;;;;;;;-1:-1:-1;47717:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29305:170;;;;;;;;;;-1:-1:-1;29305:170:0;;;;;:::i;:::-;;:::i;51863:121::-;;;;;;;;;;;;;:::i;51004:116::-;;;;;;;;;;-1:-1:-1;51004:116:0;;;;;:::i;:::-;;:::i;46889:27::-;;;;;;;;;;;;;:::i;48464:101::-;;;;;;;;;;-1:-1:-1;48464:101:0;;;;;:::i;:::-;;:::i;47685:25::-;;;;;;;;;;;;;;;;47466:37;;;;;;;;;;;;47502:1;47466:37;;48361:97;;;;;;;;;;-1:-1:-1;48361:97:0;;;;;:::i;:::-;;:::i;29546:185::-;;;;;;;;;;-1:-1:-1;29546:185:0;;;;;:::i;:::-;;:::i;46921:28::-;;;;;;;;;;-1:-1:-1;46921:28:0;;;;;;;;51128:94;;;;;;;;;;-1:-1:-1;51128:94:0;;;;;:::i;:::-;;:::i;26140:144::-;;;;;;;;;;-1:-1:-1;26140:144:0;;;;;:::i;:::-;;:::i;22017:224::-;;;;;;;;;;-1:-1:-1;22017:224:0;;;;;:::i;:::-;;:::i;7448:103::-;;;;;;;;;;;;;:::i;6797:87::-;;;;;;;;;;-1:-1:-1;6870:6:0;;;;6797:87;;47138:48;;;;;;;;;;-1:-1:-1;47138:48:0;;;;;;;;;;;;;;;;;;:::i;51538:132::-;;;;;;;;;;-1:-1:-1;51538:132:0;;;;;:::i;:::-;;:::i;:::-;;;;5952:13:1;;5967:42;5948:62;5930:81;;6071:4;6059:17;;;6053:24;6079:18;6049:49;6027:20;;;6020:79;6157:17;;;6151:24;6144:32;6137:40;6115:20;;;6108:70;5918:2;5903:18;51538:132:0;5722:462:1;26520:104:0;;;;;;;;;;;;;:::i;28695:308::-;;;;;;;;;;-1:-1:-1;28695:308:0;;;;;:::i;:::-;;:::i;50425:68::-;;;;;;;;;;;;;:::i;29802:396::-;;;;;;;;;;-1:-1:-1;29802:396:0;;;;;:::i;:::-;;:::i;46848:36::-;;;;;;;;;;;;;:::i;50503:496::-;;;;;;;;;;-1:-1:-1;50503:496:0;;;;;:::i;:::-;;:::i;48869:806::-;;;;;;:::i;:::-;;:::i;51421:109::-;;;;;;;;;;-1:-1:-1;51421:109:0;;;;;:::i;:::-;;:::i;29074:164::-;;;;;;;;;;-1:-1:-1;29074:164:0;;;;;:::i;:::-;29195:25;;;;29171:4;29195:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29074:164;47372:41;;;;;;;;;;;;47409:4;47372:41;;49681:431;;;;;;:::i;:::-;;:::i;7706:201::-;;;;;;;;;;-1:-1:-1;7706:201:0;;;;;:::i;:::-;;:::i;21338:615::-;21423:4;21723:25;;;;;;:102;;-1:-1:-1;21800:25:0;;;;;21723:102;:179;;;-1:-1:-1;21877:25:0;;;;;21723:179;21703:199;21338:615;-1:-1:-1;;21338:615:0:o;26351:100::-;26405:13;26438:5;26431:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26351:100;:::o;28419:204::-;28487:7;28512:16;28520:7;28512;:16::i;:::-;28507:64;;28537:34;;;;;;;;;;;;;;28507:64;-1:-1:-1;28591:24:0;;;;:15;:24;;;;;;;;;28419:204::o;27879:474::-;27952:13;27984:27;28003:7;27984:18;:27::i;:::-;27952:61;;28034:5;28028:11;;:2;:11;;;28024:48;;28048:24;;;;;;;;;;;;;;28024:48;44522:10;28089:28;;;;28085:175;;28137:44;28154:5;44522:10;29074:164;:::i;28137:44::-;28132:128;;28209:35;;;;;;;;;;;;;;28132:128;28272:24;;;;:15;:24;;;;;;:29;;;;;;;;;;;;;;28317:28;;28272:24;;28317:28;;;;;;;27941:412;27879:474;;:::o;29305:170::-;29439:28;29449:4;29455:2;29459:7;29439:9;:28::i;:::-;29305:170;;;:::o;51863:121::-;6870:6;;7017:23;6870:6;44522:10;7017:23;7009:68;;;;;;;9141:2:1;7009:68:0;;;9123:21:1;;;9160:18;;;9153:30;9219:34;9199:18;;;9192:62;9271:18;;7009:68:0;;;;;;;;;51918:58:::1;::::0;:35:::1;51926:17;51918:35;::::0;51954:21:::1;51918:58:::0;::::1;;;::::0;::::1;::::0;;;51954:21;51918:35;:58;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51863:121::o:0;51004:116::-;6870:6;;7017:23;6870:6;44522:10;7017:23;7009:68;;;;;;;9141:2:1;7009:68:0;;;9123:21:1;;;9160:18;;;9153:30;9219:34;9199:18;;;9192:62;9271:18;;7009:68:0;8939:356:1;7009:68:0;51084:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51004:116:::0;:::o;46889:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48464:101::-;6870:6;;7017:23;6870:6;44522:10;7017:23;7009:68;;;;;;;9141:2:1;7009:68:0;;;9123:21:1;;;9160:18;;;9153:30;9219:34;9199:18;;;9192:62;9271:18;;7009:68:0;8939:356:1;7009:68:0;48535:10:::1;:24:::0;48464:101::o;48361:97::-;6870:6;;7017:23;6870:6;44522:10;7017:23;7009:68;;;;;;;9141:2:1;7009:68:0;;;9123:21:1;;;9160:18;;;9153:30;9219:34;9199:18;;;9192:62;9271:18;;7009:68:0;8939:356:1;7009:68:0;48432:10:::1;:20:::0;;48445:7;;48432:10;:20;::::1;;48445:7:::0;48432:20:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;48361:97:::0;:::o;29546:185::-;29684:39;29701:4;29707:2;29711:7;29684:39;;;;;;;;;;;;:16;:39::i;51128:94::-;6870:6;;7017:23;6870:6;44522:10;7017:23;7009:68;;;;;;;9141:2:1;7009:68:0;;;9123:21:1;;;9160:18;;;9153:30;9219:34;9199:18;;;9192:62;9271:18;;7009:68:0;8939:356:1;7009:68:0;51196:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;26140:144::-:0;26204:7;26247:27;26266:7;26247:18;:27::i;22017:224::-;22081:7;22105:19;;;22101:60;;22133:28;;;;;;;;;;;;;;22101:60;-1:-1:-1;22179:25:0;;;;;;:18;:25;;;;;;17356:13;22179:54;;22017:224::o;7448:103::-;6870:6;;7017:23;6870:6;44522:10;7017:23;7009:68;;;;;;;9141:2:1;7009:68:0;;;9123:21:1;;;9160:18;;;9153:30;9219:34;9199:18;;;9192:62;9271:18;;7009:68:0;8939:356:1;7009:68:0;7513:30:::1;7540:1;7513:18;:30::i;:::-;7448:103::o:0;51538:132::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;51642:22:0;51655:8;51642:12;:22::i;26520:104::-;26576:13;26609:7;26602:14;;;;;:::i;28695:308::-;44522:10;28794:31;;;;28790:61;;28834:17;;;;;;;;;;;;;;28790:61;44522:10;28864:39;;;;:18;:39;;;;;;;;;:49;;;;;;;;;;;;:60;;;;;;;;;;;;;28940:55;;586:41:1;;;28864:49:0;;44522:10;28940:55;;559:18:1;28940:55:0;;;;;;;28695:308;;:::o;50425:68::-;6870:6;;7017:23;6870:6;44522:10;7017:23;7009:68;;;;;;;9141:2:1;7009:68:0;;;9123:21:1;;;9160:18;;;9153:30;9219:34;9199:18;;;9192:62;9271:18;;7009:68:0;8939:356:1;7009:68:0;50471:8:::1;:15:::0;;;::::1;50482:4;50471:15;::::0;;50425:68::o;29802:396::-;29969:28;29979:4;29985:2;29989:7;29969:9;:28::i;:::-;30012:14;;;;:19;30008:183;;30051:56;30082:4;30088:2;30092:7;30101:5;30051:30;:56::i;:::-;30046:145;;30135:40;;;;;;;;;;;;;;30046:145;29802:396;;;;:::o;46848:36::-;;;;;;;:::i;50503:496::-;50601:13;50642:16;50650:7;50642;:16::i;:::-;50626:97;;;;;;;9502:2:1;50626:97:0;;;9484:21:1;9541:2;9521:18;;;9514:30;9580:34;9560:18;;;9553:62;9651:17;9631:18;;;9624:45;9686:19;;50626:97:0;9300:411:1;50626:97:0;50739:8;;;;:17;;:8;:17;50736:61;;50776:13;50769:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50503:496;;;:::o;50736:61::-;50805:28;50836:10;:8;:10::i;:::-;50805:41;;50891:1;50866:14;50860:28;:32;:133;;;;;;;;;;;;;;;;;50928:14;50944:18;:7;:16;:18::i;:::-;50964:13;50911:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50860:133;50853:140;50503:496;-1:-1:-1;;;50503:496:0:o;48869:806::-;48610:9;48623:10;48610:23;48602:66;;;;;;;11691:2:1;48602:66:0;;;11673:21:1;11730:2;11710:18;;;11703:30;11769:32;11749:18;;;11742:60;11819:18;;48602:66:0;11489:354:1;48602:66:0;49005:18:::1;48991:10;::::0;::::1;::::0;::::1;;;:32;::::0;::::1;;;;;;:::i;:::-;;48971:136;;;::::0;::::1;::::0;;12050:2:1;48971:136:0::1;::::0;::::1;12032:21:1::0;12089:2;12069:18;;;12062:30;12128:34;12108:18;;;12101:62;12199:34;12179:18;;;12172:62;12271:5;12250:19;;;12243:34;12294:19;;48971:136:0::1;11848:471:1::0;48971:136:0::1;49163:10;::::0;49185:28:::1;::::0;12486:66:1;49202:10:0::1;12473:2:1::0;12469:15;12465:88;49185:28:0::1;::::0;::::1;12453:101:1::0;49136:79:0::1;::::0;49155:6;;12570:12:1;;49185:28:0::1;;;;;;;;;;;;49175:39;;;;;;49136:18;:79::i;:::-;49116:155;;;::::0;::::1;::::0;;12795:2:1;49116:155:0::1;::::0;::::1;12777:21:1::0;12834:2;12814:18;;;12807:30;12873;12853:18;;;12846:58;12921:18;;49116:155:0::1;12593:352:1::0;49116:155:0::1;47502:1;49298:7;:20;;49280:85;;;::::0;::::1;::::0;;13152:2:1;49280:85:0::1;::::0;::::1;13134:21:1::0;;;13171:18;;;13164:30;13230:34;13210:18;;;13203:62;13282:18;;49280:85:0::1;12950:356:1::0;49280:85:0::1;49412:10;49395:28;::::0;;;:16:::1;:28;::::0;;;;;::::1;;49394:29;49374:110;;;::::0;::::1;::::0;;13513:2:1;49374:110:0::1;::::0;::::1;13495:21:1::0;13552:2;13532:18;;;13525:30;13591:34;13571:18;;;13564:62;13662:14;13642:18;;;13635:42;13694:19;;49374:110:0::1;13311:408:1::0;49374:110:0::1;49510:10;49493:28;::::0;;;:16:::1;:28;::::0;;;;:35;;;::::1;49524:4;49493:35;::::0;;47409:4:::1;49573:7:::0;49557:13:::1;20658:12:::0;;20445:7;20642:13;:28;;20392:315;49557:13:::1;:23;;;;:::i;:::-;:37;;49537:97;;;::::0;::::1;::::0;;14248:2:1;49537:97:0::1;::::0;::::1;14230:21:1::0;14287:2;14267:18;;;14260:30;14326:25;14306:18;;;14299:53;14369:18;;49537:97:0::1;14046:347:1::0;49537:97:0::1;49643:26;49649:10;49661:7;49643:5;:26::i;51421:109::-:0;22412:25;;;51480:7;22412:25;;;:18;:25;;17493:2;22412:25;;;;17356:13;22412:49;;22411:80;51503:21;22323:176;49681:431;48610:9;48623:10;48610:23;48602:66;;;;;;;11691:2:1;48602:66:0;;;11673:21:1;11730:2;11710:18;;;11703:30;11769:32;11749:18;;;11742:60;11819:18;;48602:66:0;11489:354:1;48602:66:0;49790:16:::1;49776:10;::::0;::::1;::::0;::::1;;;:30;::::0;::::1;;;;;;:::i;:::-;;49756:111;;;::::0;::::1;::::0;;14600:2:1;49756:111:0::1;::::0;::::1;14582:21:1::0;14639:2;14619:18;;;14612:30;14678:34;14658:18;;;14651:62;14749:14;14729:18;;;14722:42;14781:19;;49756:111:0::1;14398:408:1::0;49756:111:0::1;47502:1;49896:7;:20;;49876:89;;;::::0;::::1;::::0;;13152:2:1;49876:89:0::1;::::0;::::1;13134:21:1::0;;;13171:18;;;13164:30;13230:34;13210:18;;;13203:62;13282:18;;49876:89:0::1;12950:356:1::0;49876:89:0::1;47409:4;50010:7;49994:13;20658:12:::0;;20445:7;20642:13;:28;;20392:315;49994:13:::1;:23;;;;:::i;:::-;:37;;49974:97;;;::::0;::::1;::::0;;14248:2:1;49974:97:0::1;::::0;::::1;14230:21:1::0;14287:2;14267:18;;;14260:30;14326:25;14306:18;;;14299:53;14369:18;;49974:97:0::1;14046:347:1::0;49974:97:0::1;50080:26;50086:10;50098:7;50080:5;:26::i;7706:201::-:0;6870:6;;7017:23;6870:6;44522:10;7017:23;7009:68;;;;;;;9141:2:1;7009:68:0;;;9123:21:1;;;9160:18;;;9153:30;9219:34;9199:18;;;9192:62;9271:18;;7009:68:0;8939:356:1;7009:68:0;7795:22:::1;::::0;::::1;7787:73;;;::::0;::::1;::::0;;15013:2:1;7787:73:0::1;::::0;::::1;14995:21:1::0;15052:2;15032:18;;;15025:30;15091:34;15071:18;;;15064:62;15162:8;15142:18;;;15135:36;15188:19;;7787:73:0::1;14811:402:1::0;7787:73:0::1;7871:28;7890:8;7871:18;:28::i;30453:273::-:0;30510:4;30600:13;;30590:7;:23;30547:152;;;;-1:-1:-1;;30651:26:0;;;;:17;:26;;;;;;18126:8;30651:43;:48;;30453:273::o;23655:1129::-;23722:7;23757;23859:13;;23852:4;:20;23848:869;;;23897:14;23914:23;;;:17;:23;;;;;;;18126:8;24003:23;;:28;;23999:699;;24522:113;24529:6;24539:1;24529:11;24522:113;;-1:-1:-1;24600:6:0;;24582:25;;;;:17;:25;;;;;;24522:113;;23999:699;23874:843;23848:869;24745:31;;;;;;;;;;;;;;35692:2515;35807:27;35837;35856:7;35837:18;:27::i;:::-;35807:57;;35922:4;35881:45;;35897:19;35881:45;;;35877:86;;35935:28;;;;;;;;;;;;;;35877:86;35976:22;44522:10;36002:27;;;;;:87;;-1:-1:-1;36046:43:0;36063:4;44522:10;29074:164;:::i;36046:43::-;36002:147;;;-1:-1:-1;44522:10:0;36106:20;36118:7;36106:11;:20::i;:::-;:43;;;36002:147;35976:174;;36168:17;36163:66;;36194:35;;;;;;;;;;;;;;36163:66;36244:16;;;36240:52;;36269:23;;;;;;;;;;;;;;36240:52;36421:24;;;;:15;:24;;;;;;;;36414:31;;;;;;;36813:24;;;;;:18;:24;;;;;36811:26;;;;;;36882:22;;;;;;;36880:24;;-1:-1:-1;36880:24:0;;;37175:26;;;:17;:26;;;;;18408:8;37263:15;18010:3;37263:41;37221:84;;:128;;37175:174;;;37469:46;;:51;;37465:626;;37573:1;37563:11;;37541:19;37696:30;;;:17;:30;;;;;;:35;;37692:384;;37834:13;;37819:11;:28;37815:242;;37981:30;;;;:17;:30;;;;;:52;;;37815:242;37522:569;37465:626;38138:7;38134:2;38119:27;;38128:4;38119:27;;;;;;;;;;;;35796:2411;;35692:2515;;;:::o;8067:191::-;8160:6;;;;8177:17;;;;;;;;;;;8210:40;;8160:6;;;8177:17;8160:6;;8210:40;;8141:16;;8210:40;8130:128;8067:191;:::o;25920:158::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26023:47:0;26042:27;26061:7;26042:18;:27::i;:::-;-1:-1:-1;;;;;;;;24988:41:0;;;;;18010:3;25074:32;;;25040:67;;-1:-1:-1;;;25040:67:0;18126:8;25137:23;;;:28;;-1:-1:-1;;;25118:47:0;-1:-1:-1;24878:295:0;41904:716;42088:88;;;;;42067:4;;42088:45;;;;;;:88;;44522:10;;42155:4;;42161:7;;42170:5;;42088:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42088:88:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42084:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42371:6;:13;42388:1;42371:18;42367:235;;42417:40;;;;;;;;;;;;;;42367:235;42560:6;42554:13;42545:6;42541:2;42537:15;42530:38;42084:529;42247:64;;42257:54;42247:64;;-1:-1:-1;42084:529:0;41904:716;;;;;;:::o;50307:110::-;50372:13;50404:7;50397:14;;;;;:::i;398:723::-;454:13;675:5;684:1;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;;;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;3377:190;3502:4;3555;3526:25;3539:5;3546:4;3526:12;:25::i;:::-;:33;;3377:190;-1:-1:-1;;;;3377:190:0:o;33782:1656::-;33847:20;33870:13;33898:16;;;33894:48;;33923:19;;;;;;;;;;;;;;33894:48;33957:8;33969:1;33957:13;33953:44;;33979:18;;;;;;;;;;;;;;33953:44;34546:22;;;;;;;:18;:22;;;;17493:2;34546:22;;;:70;;34584:31;34572:44;;34546:70;;;34859:31;;;:17;:31;;;;;34952:15;18010:3;34952:41;34910:84;;-1:-1:-1;35030:13:0;;18273:3;35015:56;34910:162;34859:213;;:31;35153:23;;;35193:111;35220:40;;35245:14;;;;;35220:40;;;;35237:1;;35220:40;;35237:1;;35220:40;35299:3;35284:12;:18;35193:111;;-1:-1:-1;35320:13:0;:28;29305:170;;;:::o;3928:675::-;4011:7;4054:4;4011:7;4069:497;4093:5;:12;4089:1;:16;4069:497;;;4127:20;4150:5;4156:1;4150:8;;;;;;;;:::i;:::-;;;;;;;4127:31;;4193:12;4177;:28;4173:382;;4679:13;4729:15;;;4765:4;4758:15;;;4812:4;4796:21;;4305:57;;4173:382;;;4679:13;4729:15;;;4765:4;4758:15;;;4812:4;4796:21;;4482:57;;4173:382;-1:-1:-1;4107:3:0;;;;:::i;:::-;;;;4069:497;;;-1:-1:-1;4583:12:0;3928:675;-1:-1:-1;;;3928:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:317::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1132:2;1120:15;1137:66;1116:88;1107:98;;;;1207:4;1103:109;;901:317;-1:-1:-1;;901:317:1:o;1223:220::-;1372:2;1361:9;1354:21;1335:4;1392:45;1433:2;1422:9;1418:18;1410:6;1392:45;:::i;1448:180::-;1507:6;1560:2;1548:9;1539:7;1535:23;1531:32;1528:52;;;1576:1;1573;1566:12;1528:52;-1:-1:-1;1599:23:1;;1448:180;-1:-1:-1;1448:180:1:o;1864:196::-;1932:20;;1992:42;1981:54;;1971:65;;1961:93;;2050:1;2047;2040:12;1961:93;1864:196;;;:::o;2065:254::-;2133:6;2141;2194:2;2182:9;2173:7;2169:23;2165:32;2162:52;;;2210:1;2207;2200:12;2162:52;2233:29;2252:9;2233:29;:::i;:::-;2223:39;2309:2;2294:18;;;;2281:32;;-1:-1:-1;;;2065:254:1:o;2506:186::-;2565:6;2618:2;2606:9;2597:7;2593:23;2589:32;2586:52;;;2634:1;2631;2624:12;2586:52;2657:29;2676:9;2657:29;:::i;2697:328::-;2774:6;2782;2790;2843:2;2831:9;2822:7;2818:23;2814:32;2811:52;;;2859:1;2856;2849:12;2811:52;2882:29;2901:9;2882:29;:::i;:::-;2872:39;;2930:38;2964:2;2953:9;2949:18;2930:38;:::i;:::-;2920:48;;3015:2;3004:9;3000:18;2987:32;2977:42;;2697:328;;;;;:::o;3030:184::-;3082:77;3079:1;3072:88;3179:4;3176:1;3169:15;3203:4;3200:1;3193:15;3219:334;3290:2;3284:9;3346:2;3336:13;;3351:66;3332:86;3320:99;;3449:18;3434:34;;3470:22;;;3431:62;3428:88;;;3496:18;;:::i;:::-;3532:2;3525:22;3219:334;;-1:-1:-1;3219:334:1:o;3558:466::-;3623:5;3657:18;3649:6;3646:30;3643:56;;;3679:18;;:::i;:::-;3717:116;3827:4;3758:66;3753:2;3745:6;3741:15;3737:88;3733:99;3717:116;:::i;:::-;3708:125;;3856:6;3849:5;3842:21;3896:3;3887:6;3882:3;3878:16;3875:25;3872:45;;;3913:1;3910;3903:12;3872:45;3962:6;3957:3;3950:4;3943:5;3939:16;3926:43;4016:1;4009:4;4000:6;3993:5;3989:18;3985:29;3978:40;3558:466;;;;;:::o;4029:451::-;4098:6;4151:2;4139:9;4130:7;4126:23;4122:32;4119:52;;;4167:1;4164;4157:12;4119:52;4207:9;4194:23;4240:18;4232:6;4229:30;4226:50;;;4272:1;4269;4262:12;4226:50;4295:22;;4348:4;4340:13;;4336:27;-1:-1:-1;4326:55:1;;4377:1;4374;4367:12;4326:55;4400:74;4466:7;4461:2;4448:16;4443:2;4439;4435:11;4400:74;:::i;4852:271::-;4926:6;4979:2;4967:9;4958:7;4954:23;4950:32;4947:52;;;4995:1;4992;4985:12;4947:52;5034:9;5021:23;5073:1;5066:5;5063:12;5053:40;;5089:1;5086;5079:12;5128:184;5180:77;5177:1;5170:88;5277:4;5274:1;5267:15;5301:4;5298:1;5291:15;5317:400;5464:2;5449:18;;5497:1;5486:13;;5476:201;;5533:77;5530:1;5523:88;5634:4;5631:1;5624:15;5662:4;5659:1;5652:15;5476:201;5686:25;;;5317:400;:::o;6189:347::-;6254:6;6262;6315:2;6303:9;6294:7;6290:23;6286:32;6283:52;;;6331:1;6328;6321:12;6283:52;6354:29;6373:9;6354:29;:::i;:::-;6344:39;;6433:2;6422:9;6418:18;6405:32;6480:5;6473:13;6466:21;6459:5;6456:32;6446:60;;6502:1;6499;6492:12;6446:60;6525:5;6515:15;;;6189:347;;;;;:::o;6541:667::-;6636:6;6644;6652;6660;6713:3;6701:9;6692:7;6688:23;6684:33;6681:53;;;6730:1;6727;6720:12;6681:53;6753:29;6772:9;6753:29;:::i;:::-;6743:39;;6801:38;6835:2;6824:9;6820:18;6801:38;:::i;:::-;6791:48;;6886:2;6875:9;6871:18;6858:32;6848:42;;6941:2;6930:9;6926:18;6913:32;6968:18;6960:6;6957:30;6954:50;;;7000:1;6997;6990:12;6954:50;7023:22;;7076:4;7068:13;;7064:27;-1:-1:-1;7054:55:1;;7105:1;7102;7095:12;7054:55;7128:74;7194:7;7189:2;7176:16;7171:2;7167;7163:11;7128:74;:::i;:::-;7118:84;;;6541:667;;;;;;;:::o;7213:1014::-;7306:6;7314;7367:2;7355:9;7346:7;7342:23;7338:32;7335:52;;;7383:1;7380;7373:12;7335:52;7419:9;7406:23;7396:33;;7448:2;7501;7490:9;7486:18;7473:32;7524:18;7565:2;7557:6;7554:14;7551:34;;;7581:1;7578;7571:12;7551:34;7619:6;7608:9;7604:22;7594:32;;7664:7;7657:4;7653:2;7649:13;7645:27;7635:55;;7686:1;7683;7676:12;7635:55;7722:2;7709:16;7744:2;7740;7737:10;7734:36;;;7750:18;;:::i;:::-;7796:2;7793:1;7789:10;7779:20;;7819:28;7843:2;7839;7835:11;7819:28;:::i;:::-;7881:15;;;7951:11;;;7947:20;;;7912:12;;;;7979:19;;;7976:39;;;8011:1;8008;8001:12;7976:39;8035:11;;;;8055:142;8071:6;8066:3;8063:15;8055:142;;;8137:17;;8125:30;;8088:12;;;;8175;;;;8055:142;;;8216:5;8206:15;;;;;;;;7213:1014;;;;;:::o;8232:260::-;8300:6;8308;8361:2;8349:9;8340:7;8336:23;8332:32;8329:52;;;8377:1;8374;8367:12;8329:52;8400:29;8419:9;8400:29;:::i;:::-;8390:39;;8448:38;8482:2;8471:9;8467:18;8448:38;:::i;:::-;8438:48;;8232:260;;;;;:::o;8497:437::-;8576:1;8572:12;;;;8619;;;8640:61;;8694:4;8686:6;8682:17;8672:27;;8640:61;8747:2;8739:6;8736:14;8716:18;8713:38;8710:218;;8784:77;8781:1;8774:88;8885:4;8882:1;8875:15;8913:4;8910:1;8903:15;8710:218;;8497:437;;;:::o;9842:1642::-;10066:3;10104:6;10098:13;10130:4;10143:51;10187:6;10182:3;10177:2;10169:6;10165:15;10143:51;:::i;:::-;10257:13;;10216:16;;;;10279:55;10257:13;10216:16;10301:15;;;10279:55;:::i;:::-;10423:13;;10356:20;;;10396:1;;10483;10505:18;;;;10558;;;;10585:93;;10663:4;10653:8;10649:19;10637:31;;10585:93;10726:2;10716:8;10713:16;10693:18;10690:40;10687:224;;10765:77;10760:3;10753:90;10866:4;10863:1;10856:15;10896:4;10891:3;10884:17;10687:224;10927:18;10954:168;;;;11136:1;11131:328;;;;10920:539;;10954:168;11004:66;10993:9;10989:82;10982:5;10975:97;11103:8;11096:5;11092:20;11085:27;;10954:168;;11131:328;9789:1;9782:14;;;9826:4;9813:18;;11226:1;11240:169;11254:8;11251:1;11248:15;11240:169;;;11336:14;;11321:13;;;11314:37;11379:16;;;;11271:10;;11240:169;;;11244:3;;11440:8;11433:5;11429:20;11422:27;;10920:539;-1:-1:-1;11475:3:1;;9842:1642;-1:-1:-1;;;;;;;;;;;9842:1642:1:o;13724:184::-;13776:77;13773:1;13766:88;13873:4;13870:1;13863:15;13897:4;13894:1;13887:15;13913:128;13953:3;13984:1;13980:6;13977:1;13974:13;13971:39;;;13990:18;;:::i;:::-;-1:-1:-1;14026:9:1;;13913:128::o;15218:512::-;15412:4;15441:42;15522:2;15514:6;15510:15;15499:9;15492:34;15574:2;15566:6;15562:15;15557:2;15546:9;15542:18;15535:43;;15614:6;15609:2;15598:9;15594:18;15587:34;15657:3;15652:2;15641:9;15637:18;15630:31;15678:46;15719:3;15708:9;15704:19;15696:6;15678:46;:::i;:::-;15670:54;15218:512;-1:-1:-1;;;;;;15218:512:1:o;15735:249::-;15804:6;15857:2;15845:9;15836:7;15832:23;15828:32;15825:52;;;15873:1;15870;15863:12;15825:52;15905:9;15899:16;15924:30;15948:5;15924:30;:::i;15989:195::-;16028:3;16059:66;16052:5;16049:77;16046:103;;16129:18;;:::i;:::-;-1:-1:-1;16176:1:1;16165:13;;15989:195::o;16189:184::-;16241:77;16238:1;16231:88;16338:4;16335:1;16328:15;16362:4;16359:1;16352:15;16378:120;16418:1;16444;16434:35;;16449:18;;:::i;:::-;-1:-1:-1;16483:9:1;;16378:120::o;16503:125::-;16543:4;16571:1;16568;16565:8;16562:34;;;16576:18;;:::i;:::-;-1:-1:-1;16613:9:1;;16503:125::o;16633:112::-;16665:1;16691;16681:35;;16696:18;;:::i;:::-;-1:-1:-1;16730:9:1;;16633:112::o;16750:184::-;16802:77;16799:1;16792:88;16899:4;16896:1;16889:15;16923:4;16920:1;16913:15

Swarm Source

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