ETH Price: $2,274.41 (-0.69%)

Token

ZOBOTS (ZOBOTS)
 

Overview

Max Total Supply

130 ZOBOTS

Holders

65

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ZOBOTS
0x95e390429e00ffccdcf81dc226256f4469d74c39
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ZOBOTS

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-28
*/

// SPDX-License-Identifier: MIT

//   ________  ____   ___ _____ ____  
//  |__  / _ \| __ ) / _ \_   _/ ___| 
//    / / | | |  _ \| | | || | \___ \ 
//   / /| |_| | |_) | |_| || |  ___) |
//  /____\___/|____/ \___/ |_| |____/ 
//

// File: @openzeppelin/contracts/utils/Strings.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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);
}

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * 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();

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    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();
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract()) 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 && !_ownerships[tokenId].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 {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

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

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

    /**
     * @dev 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 {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

        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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

        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 Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

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

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

// File: Zobots.sol

pragma solidity ^0.8.7;


contract ZOBOTS is ERC721A, Ownable {

    uint256 public communityReserve = 88;
    uint256 public MAX_SUPPLY = 888;
    bool public saleIsActive = false;

    string public baseURI = "https://zobotsnft.com/metadata/";

    constructor(string memory _name, string memory _symbol) ERC721A(_name, _symbol) {}


    function getMintPrice() public view returns (uint256) {
        
        uint256 currentSupply = totalSupply();

        if (currentSupply > 555 ) {
            return 0.0555 ether;
        } else if (currentSupply > 333 ) {
            return 0.0333 ether;
        }
        else if (currentSupply > 111 ) {
            return 0.0111 ether;
        } else {
            return 0 ether;
        }

    }

    function mint(uint256 quantity) external payable {
        require(saleIsActive, "Sale must be active to mint");
        require(quantity <= 3, "Exceeded the limit");
        require(totalSupply() + quantity <= MAX_SUPPLY-communityReserve, "Not enough tokens left");
        require(msg.value >= (getMintPrice() * quantity), "Not enough ether sent");
        _safeMint(msg.sender, quantity);
    }

    function reserveMint(uint256 quantity) public onlyOwner {
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        require(communityReserve-quantity >=0, "Not enough tokens left");
        communityReserve -= quantity;
        _safeMint(msg.sender, quantity);
    }

    function flipSale() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function withdraw() external payable onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

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

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json")) : ""; 
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6058600955610378600a55600b805460ff1916905560c0604052601f60808190527f68747470733a2f2f7a6f626f74736e66742e636f6d2f6d657461646174612f0060a09081526200005591600c919062000122565b503480156200006357600080fd5b5060405162001f2f38038062001f2f83398101604081905262000086916200027f565b8151829082906200009f90600290602085019062000122565b508051620000b590600390602084019062000122565b5050600160005550620000c833620000d0565b50506200033c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013090620002e9565b90600052602060002090601f0160209004810192826200015457600085556200019f565b82601f106200016f57805160ff19168380011785556200019f565b828001600101855582156200019f579182015b828111156200019f57825182559160200191906001019062000182565b50620001ad929150620001b1565b5090565b5b80821115620001ad5760008155600101620001b2565b600082601f830112620001da57600080fd5b81516001600160401b0380821115620001f757620001f762000326565b604051601f8301601f19908116603f0116810190828211818310171562000222576200022262000326565b816040528381526020925086838588010111156200023f57600080fd5b600091505b8382101562000263578582018301518183018401529082019062000244565b83821115620002755760008385830101525b9695505050505050565b600080604083850312156200029357600080fd5b82516001600160401b0380821115620002ab57600080fd5b620002b986838701620001c8565b93506020850151915080821115620002d057600080fd5b50620002df85828601620001c8565b9150509250929050565b600181811c90821680620002fe57607f821691505b602082108114156200032057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611be3806200034c6000396000f3fe60806040526004361061019c5760003560e01c80636c0360eb116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461044c578063e985e9c51461046c578063eb8d2444146104b5578063f2fde38b146104cf57600080fd5b8063a22cb465146103f7578063a7f93ebd14610417578063b88d4fde1461042c57600080fd5b80637ba5e621116100c65780637ba5e6211461039c5780638da5cb5b146103b157806395d89b41146103cf578063a0712d68146103e457600080fd5b80636c0360eb1461035257806370a0823114610367578063715018a61461038757600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e146102dc57806355f804b3146102fc578063621e8fe11461031c5780636352211e1461033257600080fd5b806323b872dd1461029e57806332cb6b0c146102be5780633ccfd60b146102d457600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b3146102305780631342ff4c1461025257806318160ddd14610272575b600080fd5b3480156101ad57600080fd5b506101c16101bc3660046117f3565b6104ef565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610541565b6040516101cd91906119cf565b34801561020457600080fd5b50610218610213366004611876565b6105d3565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b3660046117c9565b610617565b005b34801561025e57600080fd5b5061025061026d366004611876565b61069e565b34801561027e57600080fd5b50610290600154600054036000190190565b6040519081526020016101cd565b3480156102aa57600080fd5b506102506102b93660046116d5565b610761565b3480156102ca57600080fd5b50610290600a5481565b61025061076c565b3480156102e857600080fd5b506102506102f73660046116d5565b6107cf565b34801561030857600080fd5b5061025061031736600461182d565b6107ea565b34801561032857600080fd5b5061029060095481565b34801561033e57600080fd5b5061021861034d366004611876565b61082b565b34801561035e57600080fd5b506101eb61083d565b34801561037357600080fd5b50610290610382366004611680565b6108cb565b34801561039357600080fd5b5061025061091a565b3480156103a857600080fd5b50610250610950565b3480156103bd57600080fd5b506008546001600160a01b0316610218565b3480156103db57600080fd5b506101eb61098e565b6102506103f2366004611876565b61099d565b34801561040357600080fd5b5061025061041236600461178d565b610ae3565b34801561042357600080fd5b50610290610b79565b34801561043857600080fd5b50610250610447366004611711565b610be2565b34801561045857600080fd5b506101eb610467366004611876565b610c2c565b34801561047857600080fd5b506101c16104873660046116a2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104c157600080fd5b50600b546101c19060ff1681565b3480156104db57600080fd5b506102506104ea366004611680565b610cf7565b60006001600160e01b031982166380ac58cd60e01b148061052057506001600160e01b03198216635b5e139f60e01b145b8061053b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461055090611ad5565b80601f016020809104026020016040519081016040528092919081815260200182805461057c90611ad5565b80156105c95780601f1061059e576101008083540402835291602001916105c9565b820191906000526020600020905b8154815290600101906020018083116105ac57829003601f168201915b5050505050905090565b60006105de82610d8f565b6105fb576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106228261082b565b9050806001600160a01b0316836001600160a01b031614156106575760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461068e576106718133610487565b61068e576040516367d9dca160e11b815260040160405180910390fd5b610699838383610dc8565b505050565b6008546001600160a01b031633146106d15760405162461bcd60e51b81526004016106c890611a12565b60405180910390fd5b600a54816106e6600154600054036000190190565b6106f09190611a47565b111561070e5760405162461bcd60e51b81526004016106c8906119e2565b60008160095461071e9190611a92565b101561073c5760405162461bcd60e51b81526004016106c8906119e2565b806009600082825461074e9190611a92565b9091555061075e90503382610e24565b50565b610699838383610e3e565b6008546001600160a01b031633146107965760405162461bcd60e51b81526004016106c890611a12565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561075e573d6000803e3d6000fd5b61069983838360405180602001604052806000815250610be2565b6008546001600160a01b031633146108145760405162461bcd60e51b81526004016106c890611a12565b805161082790600c90602084019061155e565b5050565b60006108368261102d565b5192915050565b600c805461084a90611ad5565b80601f016020809104026020016040519081016040528092919081815260200182805461087690611ad5565b80156108c35780601f10610898576101008083540402835291602001916108c3565b820191906000526020600020905b8154815290600101906020018083116108a657829003601f168201915b505050505081565b60006001600160a01b0382166108f4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109445760405162461bcd60e51b81526004016106c890611a12565b61094e6000611151565b565b6008546001600160a01b0316331461097a5760405162461bcd60e51b81526004016106c890611a12565b600b805460ff19811660ff90911615179055565b60606003805461055090611ad5565b600b5460ff166109ef5760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064016106c8565b6003811115610a355760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b60448201526064016106c8565b600954600a54610a459190611a92565b81610a57600154600054036000190190565b610a619190611a47565b1115610a7f5760405162461bcd60e51b81526004016106c8906119e2565b80610a88610b79565b610a929190611a73565b341015610ad95760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b60448201526064016106c8565b61075e3382610e24565b6001600160a01b038216331415610b0d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080610b8d600154600054036000190190565b905061022b811115610ba75766c52cf4b908c00091505090565b61014d811115610bbf5766764e2c6f05400091505090565b606f811115610bd65766276f642501c00091505090565b600091505090565b5090565b610bed848484610e3e565b6001600160a01b0383163b15610c2657610c09848484846111a3565b610c26576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c3782610d8f565b610c9b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106c8565b6000600c8054610caa90611ad5565b905011610cc6576040518060200160405280600081525061053b565b600c610cd18361129b565b604051602001610ce29291906118d7565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610d215760405162461bcd60e51b81526004016106c890611a12565b6001600160a01b038116610d865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c8565b61075e81611151565b600081600111158015610da3575060005482105b801561053b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610827828260405180602001604052806000815250611399565b6000610e498261102d565b9050836001600160a01b031681600001516001600160a01b031614610e805760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610e9e5750610e9e8533610487565b80610eb9575033610eae846105d3565b6001600160a01b0316145b905080610ed957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f0057604051633a954ecd60e21b815260040160405180910390fd5b610f0c60008487610dc8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610fe2576000548214610fe2578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182526000808252602082018190529181019190915281806001116111385760005481101561113857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111365780516001600160a01b0316156110cc579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611131579392505050565b6110cc565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111d8903390899088908890600401611992565b602060405180830381600087803b1580156111f257600080fd5b505af1925050508015611222575060408051601f3d908101601f1916820190925261121f91810190611810565b60015b61127d573d808015611250576040519150601f19603f3d011682016040523d82523d6000602084013e611255565b606091505b508051611275576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816112bf5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112e957806112d381611b10565b91506112e29050600a83611a5f565b91506112c3565b60008167ffffffffffffffff81111561130457611304611b81565b6040519080825280601f01601f19166020018201604052801561132e576020820181803683370190505b5090505b841561129357611343600183611a92565b9150611350600a86611b2b565b61135b906030611a47565b60f81b81838151811061137057611370611b6b565b60200101906001600160f81b031916908160001a905350611392600a86611a5f565b9450611332565b6000546001600160a01b0384166113c257604051622e076360e81b815260040160405180910390fd5b826113e05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611509575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114d260008784806001019550876111a3565b6114ef576040516368d2bf6b60e11b815260040160405180910390fd5b80821061148757826000541461150457600080fd5b61154e565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061150a575b506000908155610c269085838684565b82805461156a90611ad5565b90600052602060002090601f01602090048101928261158c57600085556115d2565b82601f106115a557805160ff19168380011785556115d2565b828001600101855582156115d2579182015b828111156115d25782518255916020019190600101906115b7565b50610bde9291505b80821115610bde57600081556001016115da565b600067ffffffffffffffff8084111561160957611609611b81565b604051601f8501601f19908116603f0116810190828211818310171561163157611631611b81565b8160405280935085815286868601111561164a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461167b57600080fd5b919050565b60006020828403121561169257600080fd5b61169b82611664565b9392505050565b600080604083850312156116b557600080fd5b6116be83611664565b91506116cc60208401611664565b90509250929050565b6000806000606084860312156116ea57600080fd5b6116f384611664565b925061170160208501611664565b9150604084013590509250925092565b6000806000806080858703121561172757600080fd5b61173085611664565b935061173e60208601611664565b925060408501359150606085013567ffffffffffffffff81111561176157600080fd5b8501601f8101871361177257600080fd5b611781878235602084016115ee565b91505092959194509250565b600080604083850312156117a057600080fd5b6117a983611664565b9150602083013580151581146117be57600080fd5b809150509250929050565b600080604083850312156117dc57600080fd5b6117e583611664565b946020939093013593505050565b60006020828403121561180557600080fd5b813561169b81611b97565b60006020828403121561182257600080fd5b815161169b81611b97565b60006020828403121561183f57600080fd5b813567ffffffffffffffff81111561185657600080fd5b8201601f8101841361186757600080fd5b611293848235602084016115ee565b60006020828403121561188857600080fd5b5035919050565b600081518084526118a7816020860160208601611aa9565b601f01601f19169290920160200192915050565b600081516118cd818560208601611aa9565b9290920192915050565b600080845481600182811c9150808316806118f357607f831692505b602080841082141561191357634e487b7160e01b86526022600452602486fd5b818015611927576001811461193857611965565b60ff19861689528489019650611965565b60008b81526020902060005b8681101561195d5781548b820152908501908301611944565b505084890196505b50505050505061198961197882866118bb565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119c59083018461188f565b9695505050505050565b60208152600061169b602083018461188f565b602080825260169082015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611a5a57611a5a611b3f565b500190565b600082611a6e57611a6e611b55565b500490565b6000816000190483118215151615611a8d57611a8d611b3f565b500290565b600082821015611aa457611aa4611b3f565b500390565b60005b83811015611ac4578181015183820152602001611aac565b83811115610c265750506000910152565b600181811c90821680611ae957607f821691505b60208210811415611b0a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b2457611b24611b3f565b5060010190565b600082611b3a57611b3a611b55565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461075e57600080fdfea2646970667358221220a69cd741a7d24729e95d3d132cb3041d20bb2cba881aeac29b63cfbaec9076c964736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000065a4f424f5453000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065a4f424f54530000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636c0360eb116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461044c578063e985e9c51461046c578063eb8d2444146104b5578063f2fde38b146104cf57600080fd5b8063a22cb465146103f7578063a7f93ebd14610417578063b88d4fde1461042c57600080fd5b80637ba5e621116100c65780637ba5e6211461039c5780638da5cb5b146103b157806395d89b41146103cf578063a0712d68146103e457600080fd5b80636c0360eb1461035257806370a0823114610367578063715018a61461038757600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e146102dc57806355f804b3146102fc578063621e8fe11461031c5780636352211e1461033257600080fd5b806323b872dd1461029e57806332cb6b0c146102be5780633ccfd60b146102d457600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b3146102305780631342ff4c1461025257806318160ddd14610272575b600080fd5b3480156101ad57600080fd5b506101c16101bc3660046117f3565b6104ef565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610541565b6040516101cd91906119cf565b34801561020457600080fd5b50610218610213366004611876565b6105d3565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b3660046117c9565b610617565b005b34801561025e57600080fd5b5061025061026d366004611876565b61069e565b34801561027e57600080fd5b50610290600154600054036000190190565b6040519081526020016101cd565b3480156102aa57600080fd5b506102506102b93660046116d5565b610761565b3480156102ca57600080fd5b50610290600a5481565b61025061076c565b3480156102e857600080fd5b506102506102f73660046116d5565b6107cf565b34801561030857600080fd5b5061025061031736600461182d565b6107ea565b34801561032857600080fd5b5061029060095481565b34801561033e57600080fd5b5061021861034d366004611876565b61082b565b34801561035e57600080fd5b506101eb61083d565b34801561037357600080fd5b50610290610382366004611680565b6108cb565b34801561039357600080fd5b5061025061091a565b3480156103a857600080fd5b50610250610950565b3480156103bd57600080fd5b506008546001600160a01b0316610218565b3480156103db57600080fd5b506101eb61098e565b6102506103f2366004611876565b61099d565b34801561040357600080fd5b5061025061041236600461178d565b610ae3565b34801561042357600080fd5b50610290610b79565b34801561043857600080fd5b50610250610447366004611711565b610be2565b34801561045857600080fd5b506101eb610467366004611876565b610c2c565b34801561047857600080fd5b506101c16104873660046116a2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104c157600080fd5b50600b546101c19060ff1681565b3480156104db57600080fd5b506102506104ea366004611680565b610cf7565b60006001600160e01b031982166380ac58cd60e01b148061052057506001600160e01b03198216635b5e139f60e01b145b8061053b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461055090611ad5565b80601f016020809104026020016040519081016040528092919081815260200182805461057c90611ad5565b80156105c95780601f1061059e576101008083540402835291602001916105c9565b820191906000526020600020905b8154815290600101906020018083116105ac57829003601f168201915b5050505050905090565b60006105de82610d8f565b6105fb576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106228261082b565b9050806001600160a01b0316836001600160a01b031614156106575760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461068e576106718133610487565b61068e576040516367d9dca160e11b815260040160405180910390fd5b610699838383610dc8565b505050565b6008546001600160a01b031633146106d15760405162461bcd60e51b81526004016106c890611a12565b60405180910390fd5b600a54816106e6600154600054036000190190565b6106f09190611a47565b111561070e5760405162461bcd60e51b81526004016106c8906119e2565b60008160095461071e9190611a92565b101561073c5760405162461bcd60e51b81526004016106c8906119e2565b806009600082825461074e9190611a92565b9091555061075e90503382610e24565b50565b610699838383610e3e565b6008546001600160a01b031633146107965760405162461bcd60e51b81526004016106c890611a12565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561075e573d6000803e3d6000fd5b61069983838360405180602001604052806000815250610be2565b6008546001600160a01b031633146108145760405162461bcd60e51b81526004016106c890611a12565b805161082790600c90602084019061155e565b5050565b60006108368261102d565b5192915050565b600c805461084a90611ad5565b80601f016020809104026020016040519081016040528092919081815260200182805461087690611ad5565b80156108c35780601f10610898576101008083540402835291602001916108c3565b820191906000526020600020905b8154815290600101906020018083116108a657829003601f168201915b505050505081565b60006001600160a01b0382166108f4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109445760405162461bcd60e51b81526004016106c890611a12565b61094e6000611151565b565b6008546001600160a01b0316331461097a5760405162461bcd60e51b81526004016106c890611a12565b600b805460ff19811660ff90911615179055565b60606003805461055090611ad5565b600b5460ff166109ef5760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064016106c8565b6003811115610a355760405162461bcd60e51b8152602060048201526012602482015271115e18d959591959081d1a19481b1a5b5a5d60721b60448201526064016106c8565b600954600a54610a459190611a92565b81610a57600154600054036000190190565b610a619190611a47565b1115610a7f5760405162461bcd60e51b81526004016106c8906119e2565b80610a88610b79565b610a929190611a73565b341015610ad95760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b60448201526064016106c8565b61075e3382610e24565b6001600160a01b038216331415610b0d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080610b8d600154600054036000190190565b905061022b811115610ba75766c52cf4b908c00091505090565b61014d811115610bbf5766764e2c6f05400091505090565b606f811115610bd65766276f642501c00091505090565b600091505090565b5090565b610bed848484610e3e565b6001600160a01b0383163b15610c2657610c09848484846111a3565b610c26576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c3782610d8f565b610c9b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106c8565b6000600c8054610caa90611ad5565b905011610cc6576040518060200160405280600081525061053b565b600c610cd18361129b565b604051602001610ce29291906118d7565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610d215760405162461bcd60e51b81526004016106c890611a12565b6001600160a01b038116610d865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c8565b61075e81611151565b600081600111158015610da3575060005482105b801561053b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610827828260405180602001604052806000815250611399565b6000610e498261102d565b9050836001600160a01b031681600001516001600160a01b031614610e805760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610e9e5750610e9e8533610487565b80610eb9575033610eae846105d3565b6001600160a01b0316145b905080610ed957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f0057604051633a954ecd60e21b815260040160405180910390fd5b610f0c60008487610dc8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610fe2576000548214610fe2578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b604080516060810182526000808252602082018190529181019190915281806001116111385760005481101561113857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906111365780516001600160a01b0316156110cc579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611131579392505050565b6110cc565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111d8903390899088908890600401611992565b602060405180830381600087803b1580156111f257600080fd5b505af1925050508015611222575060408051601f3d908101601f1916820190925261121f91810190611810565b60015b61127d573d808015611250576040519150601f19603f3d011682016040523d82523d6000602084013e611255565b606091505b508051611275576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816112bf5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112e957806112d381611b10565b91506112e29050600a83611a5f565b91506112c3565b60008167ffffffffffffffff81111561130457611304611b81565b6040519080825280601f01601f19166020018201604052801561132e576020820181803683370190505b5090505b841561129357611343600183611a92565b9150611350600a86611b2b565b61135b906030611a47565b60f81b81838151811061137057611370611b6b565b60200101906001600160f81b031916908160001a905350611392600a86611a5f565b9450611332565b6000546001600160a01b0384166113c257604051622e076360e81b815260040160405180910390fd5b826113e05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611509575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46114d260008784806001019550876111a3565b6114ef576040516368d2bf6b60e11b815260040160405180910390fd5b80821061148757826000541461150457600080fd5b61154e565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061150a575b506000908155610c269085838684565b82805461156a90611ad5565b90600052602060002090601f01602090048101928261158c57600085556115d2565b82601f106115a557805160ff19168380011785556115d2565b828001600101855582156115d2579182015b828111156115d25782518255916020019190600101906115b7565b50610bde9291505b80821115610bde57600081556001016115da565b600067ffffffffffffffff8084111561160957611609611b81565b604051601f8501601f19908116603f0116810190828211818310171561163157611631611b81565b8160405280935085815286868601111561164a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461167b57600080fd5b919050565b60006020828403121561169257600080fd5b61169b82611664565b9392505050565b600080604083850312156116b557600080fd5b6116be83611664565b91506116cc60208401611664565b90509250929050565b6000806000606084860312156116ea57600080fd5b6116f384611664565b925061170160208501611664565b9150604084013590509250925092565b6000806000806080858703121561172757600080fd5b61173085611664565b935061173e60208601611664565b925060408501359150606085013567ffffffffffffffff81111561176157600080fd5b8501601f8101871361177257600080fd5b611781878235602084016115ee565b91505092959194509250565b600080604083850312156117a057600080fd5b6117a983611664565b9150602083013580151581146117be57600080fd5b809150509250929050565b600080604083850312156117dc57600080fd5b6117e583611664565b946020939093013593505050565b60006020828403121561180557600080fd5b813561169b81611b97565b60006020828403121561182257600080fd5b815161169b81611b97565b60006020828403121561183f57600080fd5b813567ffffffffffffffff81111561185657600080fd5b8201601f8101841361186757600080fd5b611293848235602084016115ee565b60006020828403121561188857600080fd5b5035919050565b600081518084526118a7816020860160208601611aa9565b601f01601f19169290920160200192915050565b600081516118cd818560208601611aa9565b9290920192915050565b600080845481600182811c9150808316806118f357607f831692505b602080841082141561191357634e487b7160e01b86526022600452602486fd5b818015611927576001811461193857611965565b60ff19861689528489019650611965565b60008b81526020902060005b8681101561195d5781548b820152908501908301611944565b505084890196505b50505050505061198961197882866118bb565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119c59083018461188f565b9695505050505050565b60208152600061169b602083018461188f565b602080825260169082015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611a5a57611a5a611b3f565b500190565b600082611a6e57611a6e611b55565b500490565b6000816000190483118215151615611a8d57611a8d611b3f565b500290565b600082821015611aa457611aa4611b3f565b500390565b60005b83811015611ac4578181015183820152602001611aac565b83811115610c265750506000910152565b600181811c90821680611ae957607f821691505b60208210811415611b0a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b2457611b24611b3f565b5060010190565b600082611b3a57611b3a611b55565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461075e57600080fdfea2646970667358221220a69cd741a7d24729e95d3d132cb3041d20bb2cba881aeac29b63cfbaec9076c964736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000065a4f424f5453000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065a4f424f54530000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): ZOBOTS
Arg [1] : _symbol (string): ZOBOTS

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [3] : 5a4f424f54530000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 5a4f424f54530000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47592:2217:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28726:305;;;;;;;;;;-1:-1:-1;28726:305:0;;;;;:::i;:::-;;:::i;:::-;;;6785:14:1;;6778:22;6760:41;;6748:2;6733:18;28726:305:0;;;;;;;;31841:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33345:204::-;;;;;;;;;;-1:-1:-1;33345:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6083:32:1;;;6065:51;;6053:2;6038:18;33345:204:0;5919:203:1;32907:372:0;;;;;;;;;;-1:-1:-1;32907:372:0;;;;;:::i;:::-;;:::i;:::-;;48754:304;;;;;;;;;;-1:-1:-1;48754:304:0;;;;;:::i;:::-;;:::i;27966:312::-;;;;;;;;;;;;27823:1;28229:12;28019:7;28213:13;:28;-1:-1:-1;;28213:46:0;;27966:312;;;;9770:25:1;;;9758:2;9743:18;27966:312:0;9624:177:1;34210:170:0;;;;;;;;;;-1:-1:-1;34210:170:0;;;;;:::i;:::-;;:::i;47680:31::-;;;;;;;;;;;;;;;;49158:114;;;:::i;34451:185::-;;;;;;;;;;-1:-1:-1;34451:185:0;;;;;:::i;:::-;;:::i;49388:104::-;;;;;;;;;;-1:-1:-1;49388:104:0;;;;;:::i;:::-;;:::i;47637:36::-;;;;;;;;;;;;;;;;31649:125;;;;;;;;;;-1:-1:-1;31649:125:0;;;;;:::i;:::-;;:::i;47759:57::-;;;;;;;;;;;;;:::i;29095:206::-;;;;;;;;;;-1:-1:-1;29095:206:0;;;;;:::i;:::-;;:::i;4911:103::-;;;;;;;;;;;;;:::i;49066:84::-;;;;;;;;;;;;;:::i;4260:87::-;;;;;;;;;;-1:-1:-1;4333:6:0;;-1:-1:-1;;;;;4333:6:0;4260:87;;32010:104;;;;;;;;;;;;;:::i;48343:403::-;;;;;;:::i;:::-;;:::i;33621:287::-;;;;;;;;;;-1:-1:-1;33621:287:0;;;;;:::i;:::-;;:::i;47917:418::-;;;;;;;;;;;;;:::i;34707:370::-;;;;;;;;;;-1:-1:-1;34707:370:0;;;;;:::i;:::-;;:::i;49500:304::-;;;;;;;;;;-1:-1:-1;49500:304:0;;;;;:::i;:::-;;:::i;33979:164::-;;;;;;;;;;-1:-1:-1;33979:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34100:25:0;;;34076:4;34100:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33979:164;47718:32;;;;;;;;;;-1:-1:-1;47718:32:0;;;;;;;;5169:201;;;;;;;;;;-1:-1:-1;5169:201:0;;;;;:::i;:::-;;:::i;28726:305::-;28828:4;-1:-1:-1;;;;;;28865:40:0;;-1:-1:-1;;;28865:40:0;;:105;;-1:-1:-1;;;;;;;28922:48:0;;-1:-1:-1;;;28922:48:0;28865:105;:158;;;-1:-1:-1;;;;;;;;;;17176:40:0;;;28987:36;28845:178;28726:305;-1:-1:-1;;28726:305:0:o;31841:100::-;31895:13;31928:5;31921:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31841:100;:::o;33345:204::-;33413:7;33438:16;33446:7;33438;:16::i;:::-;33433:64;;33463:34;;-1:-1:-1;;;33463:34:0;;;;;;;;;;;33433:64;-1:-1:-1;33517:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33517:24:0;;33345:204::o;32907:372::-;32980:13;32996:24;33012:7;32996:15;:24::i;:::-;32980:40;;33041:5;-1:-1:-1;;;;;33035:11:0;:2;-1:-1:-1;;;;;33035:11:0;;33031:48;;;33055:24;;-1:-1:-1;;;33055:24:0;;;;;;;;;;;33031:48;3064:10;-1:-1:-1;;;;;33096:21:0;;;33092:139;;33123:37;33140:5;3064:10;33979:164;:::i;33123:37::-;33119:112;;33184:35;;-1:-1:-1;;;33184:35:0;;;;;;;;;;;33119:112;33243:28;33252:2;33256:7;33265:5;33243:8;:28::i;:::-;32969:310;32907:372;;:::o;48754:304::-;4333:6;;-1:-1:-1;;;;;4333:6:0;3064:10;4480:23;4472:68;;;;-1:-1:-1;;;4472:68:0;;;;;;;:::i;:::-;;;;;;;;;48857:10:::1;;48845:8;48829:13;27823:1:::0;28229:12;28019:7;28213:13;:28;-1:-1:-1;;28213:46:0;;27966:312;48829:13:::1;:24;;;;:::i;:::-;:38;;48821:73;;;;-1:-1:-1::0;;;48821:73:0::1;;;;;;;:::i;:::-;48941:1;48930:8;48913:16;;:25;;;;:::i;:::-;:29;;48905:64;;;;-1:-1:-1::0;;;48905:64:0::1;;;;;;;:::i;:::-;49000:8;48980:16;;:28;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;49019:31:0::1;::::0;-1:-1:-1;49029:10:0::1;49041:8:::0;49019:9:::1;:31::i;:::-;48754:304:::0;:::o;34210:170::-;34344:28;34354:4;34360:2;34364:7;34344:9;:28::i;49158:114::-;4333:6;;-1:-1:-1;;;;;4333:6:0;3064:10;4480:23;4472:68;;;;-1:-1:-1;;;4472:68:0;;;;;;;:::i;:::-;4333:6;;49216:48:::1;::::0;-1:-1:-1;;;;;4333:6:0;;;;49242:21:::1;49216:48:::0;::::1;;;::::0;::::1;::::0;;;49242:21;4333:6;49216:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;34451:185:::0;34589:39;34606:4;34612:2;34616:7;34589:39;;;;;;;;;;;;:16;:39::i;49388:104::-;4333:6;;-1:-1:-1;;;;;4333:6:0;3064:10;4480:23;4472:68;;;;-1:-1:-1;;;4472:68:0;;;;;;;:::i;:::-;49463:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49388:104:::0;:::o;31649:125::-;31713:7;31740:21;31753:7;31740:12;:21::i;:::-;:26;;31649:125;-1:-1:-1;;31649:125:0:o;47759:57::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29095:206::-;29159:7;-1:-1:-1;;;;;29183:19:0;;29179:60;;29211:28;;-1:-1:-1;;;29211:28:0;;;;;;;;;;;29179:60;-1:-1:-1;;;;;;29265:19:0;;;;;:12;:19;;;;;:27;;;;29095:206::o;4911:103::-;4333:6;;-1:-1:-1;;;;;4333:6:0;3064:10;4480:23;4472:68;;;;-1:-1:-1;;;4472:68:0;;;;;;;:::i;:::-;4976:30:::1;5003:1;4976:18;:30::i;:::-;4911:103::o:0;49066:84::-;4333:6;;-1:-1:-1;;;;;4333:6:0;3064:10;4480:23;4472:68;;;;-1:-1:-1;;;4472:68:0;;;;;;;:::i;:::-;49130:12:::1;::::0;;-1:-1:-1;;49114:28:0;::::1;49130:12;::::0;;::::1;49129:13;49114:28;::::0;;49066:84::o;32010:104::-;32066:13;32099:7;32092:14;;;;;:::i;48343:403::-;48411:12;;;;48403:52;;;;-1:-1:-1;;;48403:52:0;;7992:2:1;48403:52:0;;;7974:21:1;8031:2;8011:18;;;8004:30;8070:29;8050:18;;;8043:57;8117:18;;48403:52:0;7790:351:1;48403:52:0;48486:1;48474:8;:13;;48466:44;;;;-1:-1:-1;;;48466:44:0;;7645:2:1;48466:44:0;;;7627:21:1;7684:2;7664:18;;;7657:30;-1:-1:-1;;;7703:18:1;;;7696:48;7761:18;;48466:44:0;7443:342:1;48466:44:0;48568:16;;48557:10;;:27;;;;:::i;:::-;48545:8;48529:13;27823:1;28229:12;28019:7;28213:13;:28;-1:-1:-1;;28213:46:0;;27966:312;48529:13;:24;;;;:::i;:::-;:55;;48521:90;;;;-1:-1:-1;;;48521:90:0;;;;;;;:::i;:::-;48661:8;48644:14;:12;:14::i;:::-;:25;;;;:::i;:::-;48630:9;:40;;48622:74;;;;-1:-1:-1;;;48622:74:0;;9476:2:1;48622:74:0;;;9458:21:1;9515:2;9495:18;;;9488:30;-1:-1:-1;;;9534:18:1;;;9527:51;9595:18;;48622:74:0;9274:345:1;48622:74:0;48707:31;48717:10;48729:8;48707:9;:31::i;33621:287::-;-1:-1:-1;;;;;33720:24:0;;3064:10;33720:24;33716:54;;;33753:17;;-1:-1:-1;;;33753:17:0;;;;;;;;;;;33716:54;3064:10;33783:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33783:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33783:53:0;;;;;;;;;;33852:48;;6760:41:1;;;33783:42:0;;3064:10;33852:48;;6733:18:1;33852:48:0;;;;;;;33621:287;;:::o;47917:418::-;47962:7;47992:21;48016:13;27823:1;28229:12;28019:7;28213:13;:28;-1:-1:-1;;28213:46:0;;27966:312;48016:13;47992:37;;48062:3;48046:13;:19;48042:284;;;48090:12;48083:19;;;47917:418;:::o;48042:284::-;48140:3;48124:13;:19;48120:206;;;48168:12;48161:19;;;47917:418;:::o;48120:206::-;48227:3;48211:13;:19;48207:119;;;48255:12;48248:19;;;47917:418;:::o;48207:119::-;48307:7;48300:14;;;47917:418;:::o;48207:119::-;47971:364;47917:418;:::o;34707:370::-;34874:28;34884:4;34890:2;34894:7;34874:9;:28::i;:::-;-1:-1:-1;;;;;34917:13:0;;7256:19;:23;34913:157;;34938:56;34969:4;34975:2;34979:7;34988:5;34938:30;:56::i;:::-;34934:136;;35018:40;;-1:-1:-1;;;35018:40:0;;;;;;;;;;;34934:136;34707:370;;;;:::o;49500:304::-;49573:13;49607:16;49615:7;49607;:16::i;:::-;49599:76;;;;-1:-1:-1;;;49599:76:0;;9060:2:1;49599:76:0;;;9042:21:1;9099:2;9079:18;;;9072:30;9138:34;9118:18;;;9111:62;-1:-1:-1;;;9189:18:1;;;9182:45;9244:19;;49599:76:0;8858:411:1;49599:76:0;49717:1;49699:7;49693:21;;;;;:::i;:::-;;;:25;:102;;;;;;;;;;;;;;;;;49745:7;49754:25;49771:7;49754:16;:25::i;:::-;49728:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49686:109;49500:304;-1:-1:-1;;49500:304:0:o;5169:201::-;4333:6;;-1:-1:-1;;;;;4333:6:0;3064:10;4480:23;4472:68;;;;-1:-1:-1;;;4472:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5258:22:0;::::1;5250:73;;;::::0;-1:-1:-1;;;5250:73:0;;7238:2:1;5250:73:0::1;::::0;::::1;7220:21:1::0;7277:2;7257:18;;;7250:30;7316:34;7296:18;;;7289:62;-1:-1:-1;;;7367:18:1;;;7360:36;7413:19;;5250:73:0::1;7036:402:1::0;5250:73:0::1;5334:28;5353:8;5334:18;:28::i;35332:174::-:0;35389:4;35432:7;27823:1;35413:26;;:53;;;;;35453:13;;35443:7;:23;35413:53;:85;;;;-1:-1:-1;;35471:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35471:27:0;;;;35470:28;;35332:174::o;44554:196::-;44669:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44669:29:0;-1:-1:-1;;;;;44669:29:0;;;;;;;;;44714:28;;44669:24;;44714:28;;;;;;;44554:196;;;:::o;35590:104::-;35659:27;35669:2;35673:8;35659:27;;;;;;;;;;;;:9;:27::i;39502:2130::-;39617:35;39655:21;39668:7;39655:12;:21::i;:::-;39617:59;;39715:4;-1:-1:-1;;;;;39693:26:0;:13;:18;;;-1:-1:-1;;;;;39693:26:0;;39689:67;;39728:28;;-1:-1:-1;;;39728:28:0;;;;;;;;;;;39689:67;39769:22;3064:10;-1:-1:-1;;;;;39795:20:0;;;;:73;;-1:-1:-1;39832:36:0;39849:4;3064:10;33979:164;:::i;39832:36::-;39795:126;;;-1:-1:-1;3064:10:0;39885:20;39897:7;39885:11;:20::i;:::-;-1:-1:-1;;;;;39885:36:0;;39795:126;39769:153;;39940:17;39935:66;;39966:35;;-1:-1:-1;;;39966:35:0;;;;;;;;;;;39935:66;-1:-1:-1;;;;;40016:16:0;;40012:52;;40041:23;;-1:-1:-1;;;40041:23:0;;;;;;;;;;;40012:52;40185:35;40202:1;40206:7;40215:4;40185:8;:35::i;:::-;-1:-1:-1;;;;;40516:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40516:31:0;;;;;;;-1:-1:-1;;40516:31:0;;;;;;;40562:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40562:29:0;;;;;;;;;;;40642:20;;;:11;:20;;;;;;40677:18;;-1:-1:-1;;;;;;40710:49:0;;;;-1:-1:-1;;;40743:15:0;40710:49;;;;;;;;;;41033:11;;41093:24;;;;;41136:13;;40642:20;;41093:24;;41136:13;41132:384;;41346:13;;41331:11;:28;41327:174;;41384:20;;41453:28;;;;41427:54;;-1:-1:-1;;;41427:54:0;-1:-1:-1;;;;;;41427:54:0;;;-1:-1:-1;;;;;41384:20:0;;41427:54;;;;41327:174;40491:1036;;;41563:7;41559:2;-1:-1:-1;;;;;41544:27:0;41553:4;-1:-1:-1;;;;;41544:27:0;;;;;;;;;;;39606:2026;;39502:2130;;;:::o;30476:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30587:7:0;;27823:1;30636:23;30632:888;;30672:13;;30665:4;:20;30661:859;;;30706:31;30740:17;;;:11;:17;;;;;;;;;30706:51;;;;;;;;;-1:-1:-1;;;;;30706:51:0;;;;-1:-1:-1;;;30706:51:0;;;;;;;;;;;-1:-1:-1;;;30706:51:0;;;;;;;;;;;;;;30776:729;;30826:14;;-1:-1:-1;;;;;30826:28:0;;30822:101;;30890:9;30476:1111;-1:-1:-1;;;30476:1111:0:o;30822:101::-;-1:-1:-1;;;31265:6:0;31310:17;;;;:11;:17;;;;;;;;;31298:29;;;;;;;;;-1:-1:-1;;;;;31298:29:0;;;;;-1:-1:-1;;;31298:29:0;;;;;;;;;;;-1:-1:-1;;;31298:29:0;;;;;;;;;;;;;31358:28;31354:109;;31426:9;30476:1111;-1:-1:-1;;;30476:1111:0:o;31354:109::-;31225:261;;;30687:833;30661:859;31548:31;;-1:-1:-1;;;31548:31:0;;;;;;;;;;;5530:191;5623:6;;;-1:-1:-1;;;;;5640:17:0;;;-1:-1:-1;;;;;;5640:17:0;;;;;;;5673:40;;5623:6;;;5640:17;5623:6;;5673:40;;5604:16;;5673:40;5593:128;5530:191;:::o;45242:667::-;45426:72;;-1:-1:-1;;;45426:72:0;;45405:4;;-1:-1:-1;;;;;45426:36:0;;;;;:72;;3064:10;;45477:4;;45483:7;;45492:5;;45426:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45426:72:0;;;;;;;;-1:-1:-1;;45426:72:0;;;;;;;;;;;;:::i;:::-;;;45422:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45660:13:0;;45656:235;;45706:40;;-1:-1:-1;;;45706:40:0;;;;;;;;;;;45656:235;45849:6;45843:13;45834:6;45830:2;45826:15;45819:38;45422:480;-1:-1:-1;;;;;;45545:55:0;-1:-1:-1;;;45545:55:0;;-1:-1:-1;45422:480:0;45242:667;;;;;;:::o;546:723::-;602:13;823:10;819:53;;-1:-1:-1;;850:10:0;;;;;;;;;;;;-1:-1:-1;;;850:10:0;;;;;546:723::o;819:53::-;897:5;882:12;938:78;945:9;;938:78;;971:8;;;;:::i;:::-;;-1:-1:-1;994:10:0;;-1:-1:-1;1002:2:0;994:10;;:::i;:::-;;;938:78;;;1026:19;1058:6;1048:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1048:17:0;;1026:39;;1076:154;1083:10;;1076:154;;1110:11;1120:1;1110:11;;:::i;:::-;;-1:-1:-1;1179:10:0;1187:2;1179:5;:10;:::i;:::-;1166:24;;:2;:24;:::i;:::-;1153:39;;1136:6;1143;1136:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1136:56:0;;;;;;;;-1:-1:-1;1207:11:0;1216:2;1207:11;;:::i;:::-;;;1076:154;;36067:1749;36190:20;36213:13;-1:-1:-1;;;;;36241:16:0;;36237:48;;36266:19;;-1:-1:-1;;;36266:19:0;;;;;;;;;;;36237:48;36300:13;36296:44;;36322:18;;-1:-1:-1;;;36322:18:0;;;;;;;;;;;36296:44;-1:-1:-1;;;;;36691:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36750:49:0;;36691:44;;;;;;;;36750:49;;;;-1:-1:-1;;36691:44:0;;;;;;36750:49;;;;;;;;;;;;;;;;36816:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36866:66:0;;;-1:-1:-1;;;36916:15:0;36866:66;;;;;;;;;;;;;36816:25;;37013:23;;;;7256:19;:23;37053:631;;37093:313;37124:38;;37149:12;;-1:-1:-1;;;;;37124:38:0;;;37141:1;;37124:38;;37141:1;;37124:38;37190:69;37229:1;37233:2;37237:14;;;;;;37253:5;37190:30;:69::i;:::-;37185:174;;37295:40;;-1:-1:-1;;;37295:40:0;;;;;;;;;;;37185:174;37401:3;37386:12;:18;37093:313;;37487:12;37470:13;;:29;37466:43;;37501:8;;;37466:43;37053:631;;;37550:119;37581:40;;37606:14;;;;;-1:-1:-1;;;;;37581:40:0;;;37598:1;;37581:40;;37598:1;;37581:40;37664:3;37649:12;:18;37550:119;;37053:631;-1:-1:-1;37698:13:0;:28;;;37748:60;;37781:2;37785:12;37799:8;37748:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:185::-;4347:3;4385:5;4379:12;4400:52;4445:6;4440:3;4433:4;4426:5;4422:16;4400:52;:::i;:::-;4468:16;;;;;4305:185;-1:-1:-1;;4305:185:1:o;4613:1301::-;4890:3;4919:1;4952:6;4946:13;4982:3;5004:1;5032:9;5028:2;5024:18;5014:28;;5092:2;5081:9;5077:18;5114;5104:61;;5158:4;5150:6;5146:17;5136:27;;5104:61;5184:2;5232;5224:6;5221:14;5201:18;5198:38;5195:165;;;-1:-1:-1;;;5259:33:1;;5315:4;5312:1;5305:15;5345:4;5266:3;5333:17;5195:165;5376:18;5403:104;;;;5521:1;5516:320;;;;5369:467;;5403:104;-1:-1:-1;;5436:24:1;;5424:37;;5481:16;;;;-1:-1:-1;5403:104:1;;5516:320;9879:1;9872:14;;;9916:4;9903:18;;5611:1;5625:165;5639:6;5636:1;5633:13;5625:165;;;5717:14;;5704:11;;;5697:35;5760:16;;;;5654:10;;5625:165;;;5629:3;;5819:6;5814:3;5810:16;5803:23;;5369:467;;;;;;;5852:56;5877:30;5903:3;5895:6;5877:30;:::i;:::-;-1:-1:-1;;;4555:20:1;;4600:1;4591:11;;4495:113;5852:56;5845:63;4613:1301;-1:-1:-1;;;;;4613:1301:1:o;6127:488::-;-1:-1:-1;;;;;6396:15:1;;;6378:34;;6448:15;;6443:2;6428:18;;6421:43;6495:2;6480:18;;6473:34;;;6543:3;6538:2;6523:18;;6516:31;;;6321:4;;6564:45;;6589:19;;6581:6;6564:45;:::i;:::-;6556:53;6127:488;-1:-1:-1;;;;;;6127:488:1:o;6812:219::-;6961:2;6950:9;6943:21;6924:4;6981:44;7021:2;7010:9;7006:18;6998:6;6981:44;:::i;8146:346::-;8348:2;8330:21;;;8387:2;8367:18;;;8360:30;-1:-1:-1;;;8421:2:1;8406:18;;8399:52;8483:2;8468:18;;8146:346::o;8497:356::-;8699:2;8681:21;;;8718:18;;;8711:30;8777:34;8772:2;8757:18;;8750:62;8844:2;8829:18;;8497:356::o;9932:128::-;9972:3;10003:1;9999:6;9996:1;9993:13;9990:39;;;10009:18;;:::i;:::-;-1:-1:-1;10045:9:1;;9932:128::o;10065:120::-;10105:1;10131;10121:35;;10136:18;;:::i;:::-;-1:-1:-1;10170:9:1;;10065:120::o;10190:168::-;10230:7;10296:1;10292;10288:6;10284:14;10281:1;10278:21;10273:1;10266:9;10259:17;10255:45;10252:71;;;10303:18;;:::i;:::-;-1:-1:-1;10343:9:1;;10190:168::o;10363:125::-;10403:4;10431:1;10428;10425:8;10422:34;;;10436:18;;:::i;:::-;-1:-1:-1;10473:9:1;;10363:125::o;10493:258::-;10565:1;10575:113;10589:6;10586:1;10583:13;10575:113;;;10665:11;;;10659:18;10646:11;;;10639:39;10611:2;10604:10;10575:113;;;10706:6;10703:1;10700:13;10697:48;;;-1:-1:-1;;10741:1:1;10723:16;;10716:27;10493:258::o;10756:380::-;10835:1;10831:12;;;;10878;;;10899:61;;10953:4;10945:6;10941:17;10931:27;;10899:61;11006:2;10998:6;10995:14;10975:18;10972:38;10969:161;;;11052:10;11047:3;11043:20;11040:1;11033:31;11087:4;11084:1;11077:15;11115:4;11112:1;11105:15;10969:161;;10756:380;;;:::o;11141:135::-;11180:3;-1:-1:-1;;11201:17:1;;11198:43;;;11221:18;;:::i;:::-;-1:-1:-1;11268:1:1;11257:13;;11141:135::o;11281:112::-;11313:1;11339;11329:35;;11344:18;;:::i;:::-;-1:-1:-1;11378:9:1;;11281:112::o;11398:127::-;11459:10;11454:3;11450:20;11447:1;11440:31;11490:4;11487:1;11480:15;11514:4;11511:1;11504:15;11530:127;11591:10;11586:3;11582:20;11579:1;11572:31;11622:4;11619:1;11612:15;11646:4;11643:1;11636:15;11662:127;11723:10;11718:3;11714:20;11711:1;11704:31;11754:4;11751:1;11744:15;11778:4;11775:1;11768:15;11794:127;11855:10;11850:3;11846:20;11843:1;11836:31;11886:4;11883:1;11876:15;11910:4;11907:1;11900:15;11926:131;-1:-1:-1;;;;;;12000:32:1;;11990:43;;11980:71;;12047:1;12044;12037:12

Swarm Source

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