ETH Price: $3,468.18 (+2.18%)
Gas: 11 Gwei

Token

Zeon Genesis (ZEON)
 

Overview

Max Total Supply

69 ZEON

Holders

65

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ZEON
0x888142764db044b978b21c66b5F1301F002FFE84
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:
ZEON

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

//SPDX-License-Identifier: UNLICENSED
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}
// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

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

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

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

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

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

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

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

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

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

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

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

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

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

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

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

// File: @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: zeon.sol

pragma solidity 0.8.7;





contract ZEON is ERC721A, Ownable {
  string private baseURI;
  bool public started = false;
  uint256 public price;
  bool public claimed = false;
  bytes32 public root;
  uint256 public constant MAX_SUPPLY = 69;
  uint256 public constant MAX_MINT = 1;

  mapping(address => uint) public addressClaimed;

  constructor() ERC721A("Zeon Genesis", "ZEON") {
  }

  // Start tokenid at 1 instead of 0
  function _startTokenId() internal view virtual override returns (uint256) {
      return 1;
  }

  function mint(uint256 _nbTokens) external payable {
    require(msg.sender==tx.origin, "Zeon doesnt like contracts");
    require(started, "Zeon Genesis didnt start yet!");
    require(_nbTokens <= MAX_MINT, "Ser thats too many zeons");
    require(addressClaimed[_msgSender()] < MAX_MINT, "You have enough zeons!");
    require(totalSupply() < MAX_SUPPLY, "We ran out of zeons!");
    // mint a zeon if youre good person
    addressClaimed[_msgSender()] += 1;
    _safeMint(msg.sender, 1);
  }

  function zeonlistMint(uint256 _nbTokens,bytes32[] memory proof) external payable {
    require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "Not part of the zeonlist");
    require(_nbTokens <= MAX_MINT, "Ser thats too many zeons");
    require(addressClaimed[_msgSender()] < MAX_MINT, "You have enough zeons!");
    require(totalSupply() < MAX_SUPPLY, "We ran out of zeons!");
    addressClaimed[_msgSender()] += 1;
    _safeMint(msg.sender, 1);
    }


  function isValid(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
    return MerkleProof.verify(proof, root, leaf);
  }


  function setBaseURI(string memory baseURI_) external onlyOwner {
      baseURI = baseURI_;
  }

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

  function enableMint(bool mintStarted) external onlyOwner {
      started = mintStarted;
  }
  function setPrice(uint256 _price) external onlyOwner {
       price = _price;
  }
   function setRoot(bytes32 _root) external onlyOwner {
       root = _root;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressClaimed","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":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"mintStarted","type":"bool"}],"name":"enableMint","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":[{"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":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nbTokens","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"_nbTokens","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"zeonlistMint","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600a805460ff19908116909155600c805490911690553480156200002757600080fd5b50604080518082018252600c81526b5a656f6e2047656e6573697360a01b6020808301918252835180850190945260048452632d22a7a760e11b9084015281519192916200007891600291620000f9565b5080516200008e906003906020840190620000f9565b5050600160005550620000a133620000a7565b620001dc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000107906200019f565b90600052602060002090601f0160209004810192826200012b576000855562000176565b82601f106200014657805160ff191683800117855562000176565b8280016001018555821562000176579182015b828111156200017657825182559160200191906001019062000159565b506200018492915062000188565b5090565b5b8082111562000184576000815560010162000189565b600181811c90821680620001b457607f821691505b60208210811415620001d657634e487b7160e01b600052602260045260246000fd5b50919050565b611b7580620001ec6000396000f3fe6080604052600436106101d85760003560e01c806391b7f5ed11610102578063c87b56dd11610095578063ebf0c71711610064578063ebf0c71714610565578063f0292a031461057b578063f2fde38b14610590578063ff8e8591146105b057600080fd5b8063c87b56dd146104c2578063dab5f340146104e2578063e834a83414610502578063e985e9c51461051c57600080fd5b8063a22cb465116100d1578063a22cb46514610442578063b88d4fde14610462578063b8a20ed014610482578063c68b3305146104a257600080fd5b806391b7f5ed146103e457806395d89b4114610404578063a035b1fe14610419578063a0712d681461042f57600080fd5b806332cb6b0c1161017a57806370a082311161014957806370a0823114610364578063715018a614610384578063772dc32f146103995780638da5cb5b146103c657600080fd5b806332cb6b0c146102ef57806342842e0e1461030457806355f804b3146103245780636352211e1461034457600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e5780631f2698ab146102b557806323b872dd146102cf57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611872565b6105c3565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610615565b60405161020991906119d4565b34801561024057600080fd5b5061025461024f366004611859565b6106a7565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c6102873660046117cf565b6106eb565b005b34801561029a57600080fd5b5060015460005403600019015b604051908152602001610209565b3480156102c157600080fd5b50600a546101fd9060ff1681565b3480156102db57600080fd5b5061028c6102ea3660046116ed565b6107be565b3480156102fb57600080fd5b506102a7604581565b34801561031057600080fd5b5061028c61031f3660046116ed565b6107ce565b34801561033057600080fd5b5061028c61033f3660046118ac565b6107e9565b34801561035057600080fd5b5061025461035f366004611859565b610833565b34801561037057600080fd5b506102a761037f36600461169f565b61083e565b34801561039057600080fd5b5061028c61088d565b3480156103a557600080fd5b506102a76103b436600461169f565b600e6020526000908152604090205481565b3480156103d257600080fd5b506008546001600160a01b0316610254565b3480156103f057600080fd5b5061028c6103ff366004611859565b6108c3565b34801561041057600080fd5b506102276108f2565b34801561042557600080fd5b506102a7600b5481565b61028c61043d366004611859565b610901565b34801561044e57600080fd5b5061028c61045d3660046117a5565b610acd565b34801561046e57600080fd5b5061028c61047d366004611729565b610b63565b34801561048e57600080fd5b506101fd61049d3660046117f9565b610bad565b3480156104ae57600080fd5b5061028c6104bd36600461183e565b610bc3565b3480156104ce57600080fd5b506102276104dd366004611859565b610c00565b3480156104ee57600080fd5b5061028c6104fd366004611859565b610c84565b34801561050e57600080fd5b50600c546101fd9060ff1681565b34801561052857600080fd5b506101fd6105373660046116ba565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057157600080fd5b506102a7600d5481565b34801561058757600080fd5b506102a7600181565b34801561059c57600080fd5b5061028c6105ab36600461169f565b610cb3565b61028c6105be3660046118f5565b610d4b565b60006301ffc9a760e01b6001600160e01b0319831614806105f457506380ac58cd60e01b6001600160e01b03198316145b8061060f5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461062490611a91565b80601f016020809104026020016040519081016040528092919081815260200182805461065090611a91565b801561069d5780601f106106725761010080835404028352916020019161069d565b820191906000526020600020905b81548152906001019060200180831161068057829003601f168201915b5050505050905090565b60006106b282610efe565b6106cf576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106f682610f33565b9050806001600160a01b0316836001600160a01b0316141561072b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610762576107458133610537565b610762576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107c9838383610f9c565b505050565b6107c983838360405180602001604052806000815250610b63565b6008546001600160a01b0316331461081c5760405162461bcd60e51b8152600401610813906119e7565b60405180910390fd5b805161082f9060099060208401906114fc565b5050565b600061060f82610f33565b60006001600160a01b038216610867576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108b75760405162461bcd60e51b8152600401610813906119e7565b6108c1600061113f565b565b6008546001600160a01b031633146108ed5760405162461bcd60e51b8152600401610813906119e7565b600b55565b60606003805461062490611a91565b3332146109505760405162461bcd60e51b815260206004820152601a60248201527f5a656f6e20646f65736e74206c696b6520636f6e7472616374730000000000006044820152606401610813565b600a5460ff166109a25760405162461bcd60e51b815260206004820152601d60248201527f5a656f6e2047656e65736973206469646e7420737461727420796574210000006044820152606401610813565b60018111156109ee5760405162461bcd60e51b815260206004820152601860248201527753657220746861747320746f6f206d616e79207a656f6e7360401b6044820152606401610813565b336000908152600e6020526040902054600111610a465760405162461bcd60e51b8152602060048201526016602482015275596f75206861766520656e6f756768207a656f6e732160501b6044820152606401610813565b60015460005460459190036000190110610a995760405162461bcd60e51b815260206004820152601460248201527357652072616e206f7574206f66207a656f6e732160601b6044820152606401610813565b336000908152600e60205260408120805460019290610ab9908490611a4d565b90915550610aca9050336001611191565b50565b6001600160a01b038216331415610af75760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b6e848484610f9c565b6001600160a01b0383163b15610ba757610b8a848484846111ab565b610ba7576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000610bbc83600d54846112a3565b9392505050565b6008546001600160a01b03163314610bed5760405162461bcd60e51b8152600401610813906119e7565b600a805460ff1916911515919091179055565b6060610c0b82610efe565b610c2857604051630a14c4b560e41b815260040160405180910390fd5b6000610c326112b9565b9050805160001415610c535760405180602001604052806000815250610bbc565b80610c5d846112c8565b604051602001610c6e929190611968565b6040516020818303038152906040529392505050565b6008546001600160a01b03163314610cae5760405162461bcd60e51b8152600401610813906119e7565b600d55565b6008546001600160a01b03163314610cdd5760405162461bcd60e51b8152600401610813906119e7565b6001600160a01b038116610d425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610813565b610aca8161113f565b6040516bffffffffffffffffffffffff193360601b166020820152610d8a90829060340160405160208183030381529060405280519060200120610bad565b610dd65760405162461bcd60e51b815260206004820152601860248201527f4e6f742070617274206f6620746865207a656f6e6c69737400000000000000006044820152606401610813565b6001821115610e225760405162461bcd60e51b815260206004820152601860248201527753657220746861747320746f6f206d616e79207a656f6e7360401b6044820152606401610813565b336000908152600e6020526040902054600111610e7a5760405162461bcd60e51b8152602060048201526016602482015275596f75206861766520656e6f756768207a656f6e732160501b6044820152606401610813565b60015460005460459190036000190110610ecd5760405162461bcd60e51b815260206004820152601460248201527357652072616e206f7574206f66207a656f6e732160601b6044820152606401610813565b336000908152600e60205260408120805460019290610eed908490611a4d565b9091555061082f9050336001611191565b600081600111158015610f12575060005482105b801561060f575050600090815260046020526040902054600160e01b161590565b60008180600111610f8357600054811015610f8357600081815260046020526040902054600160e01b8116610f81575b80610bbc575060001901600081815260046020526040902054610f63565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610fa782610f33565b9050836001600160a01b0316816001600160a01b031614610fda5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610ff85750610ff88533610537565b80611013575033611008846106a7565b6001600160a01b0316145b90508061103357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661105a57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b8617811790915582166110f757600183016000818152600460205260409020546110f55760005481146110f55760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61082f828260405180602001604052806000815250611317565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111e0903390899088908890600401611997565b602060405180830381600087803b1580156111fa57600080fd5b505af192505050801561122a575060408051601f3d908101601f191682019092526112279181019061188f565b60015b611285573d808015611258576040519150601f19603f3d011682016040523d82523d6000602084013e61125d565b606091505b50805161127d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826112b08584611488565b14949350505050565b60606009805461062490611a91565b604080516080810191829052607f0190826030600a8206018353600a90045b801561130557600183039250600a81066030018353600a90046112e7565b50819003601f19909101908152919050565b6000546001600160a01b03841661134057604051622e076360e81b815260040160405180910390fd5b8261135e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611433575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46113fc60008784806001019550876111ab565b611419576040516368d2bf6b60e11b815260040160405180910390fd5b8082106113b157826000541461142e57600080fd5b611478565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611434575b506000908155610ba79085838684565b600081815b84518110156114f45760008582815181106114aa576114aa611afd565b602002602001015190508083116114d057600083815260208290526040902092506114e1565b600081815260208490526040902092505b50806114ec81611acc565b91505061148d565b509392505050565b82805461150890611a91565b90600052602060002090601f01602090048101928261152a5760008555611570565b82601f1061154357805160ff1916838001178555611570565b82800160010185558215611570579182015b82811115611570578251825591602001919060010190611555565b5061157c929150611580565b5090565b5b8082111561157c5760008155600101611581565b600067ffffffffffffffff8311156115af576115af611b13565b6115c2601f8401601f1916602001611a1c565b90508281528383830111156115d657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461160457600080fd5b919050565b600082601f83011261161a57600080fd5b8135602067ffffffffffffffff82111561163657611636611b13565b8160051b611645828201611a1c565b83815282810190868401838801850189101561166057600080fd5b600093505b85841015611683578035835260019390930192918401918401611665565b50979650505050505050565b8035801515811461160457600080fd5b6000602082840312156116b157600080fd5b610bbc826115ed565b600080604083850312156116cd57600080fd5b6116d6836115ed565b91506116e4602084016115ed565b90509250929050565b60008060006060848603121561170257600080fd5b61170b846115ed565b9250611719602085016115ed565b9150604084013590509250925092565b6000806000806080858703121561173f57600080fd5b611748856115ed565b9350611756602086016115ed565b925060408501359150606085013567ffffffffffffffff81111561177957600080fd5b8501601f8101871361178a57600080fd5b61179987823560208401611595565b91505092959194509250565b600080604083850312156117b857600080fd5b6117c1836115ed565b91506116e46020840161168f565b600080604083850312156117e257600080fd5b6117eb836115ed565b946020939093013593505050565b6000806040838503121561180c57600080fd5b823567ffffffffffffffff81111561182357600080fd5b61182f85828601611609565b95602094909401359450505050565b60006020828403121561185057600080fd5b610bbc8261168f565b60006020828403121561186b57600080fd5b5035919050565b60006020828403121561188457600080fd5b8135610bbc81611b29565b6000602082840312156118a157600080fd5b8151610bbc81611b29565b6000602082840312156118be57600080fd5b813567ffffffffffffffff8111156118d557600080fd5b8201601f810184136118e657600080fd5b61129b84823560208401611595565b6000806040838503121561190857600080fd5b82359150602083013567ffffffffffffffff81111561192657600080fd5b61193285828601611609565b9150509250929050565b60008151808452611954816020860160208601611a65565b601f01601f19169290920160200192915050565b6000835161197a818460208801611a65565b83519083019061198e818360208801611a65565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119ca9083018461193c565b9695505050505050565b602081526000610bbc602083018461193c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611a4557611a45611b13565b604052919050565b60008219821115611a6057611a60611ae7565b500190565b60005b83811015611a80578181015183820152602001611a68565b83811115610ba75750506000910152565b600181811c90821680611aa557607f821691505b60208210811415611ac657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ae057611ae0611ae7565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610aca57600080fdfea26469706673582212201b28590f6ab37b66a306c3ecd5a0668918db081d77cdae962353b24a0bf9f75464736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806391b7f5ed11610102578063c87b56dd11610095578063ebf0c71711610064578063ebf0c71714610565578063f0292a031461057b578063f2fde38b14610590578063ff8e8591146105b057600080fd5b8063c87b56dd146104c2578063dab5f340146104e2578063e834a83414610502578063e985e9c51461051c57600080fd5b8063a22cb465116100d1578063a22cb46514610442578063b88d4fde14610462578063b8a20ed014610482578063c68b3305146104a257600080fd5b806391b7f5ed146103e457806395d89b4114610404578063a035b1fe14610419578063a0712d681461042f57600080fd5b806332cb6b0c1161017a57806370a082311161014957806370a0823114610364578063715018a614610384578063772dc32f146103995780638da5cb5b146103c657600080fd5b806332cb6b0c146102ef57806342842e0e1461030457806355f804b3146103245780636352211e1461034457600080fd5b8063095ea7b3116101b6578063095ea7b31461026c57806318160ddd1461028e5780631f2698ab146102b557806323b872dd146102cf57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004611872565b6105c3565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610615565b60405161020991906119d4565b34801561024057600080fd5b5061025461024f366004611859565b6106a7565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c6102873660046117cf565b6106eb565b005b34801561029a57600080fd5b5060015460005403600019015b604051908152602001610209565b3480156102c157600080fd5b50600a546101fd9060ff1681565b3480156102db57600080fd5b5061028c6102ea3660046116ed565b6107be565b3480156102fb57600080fd5b506102a7604581565b34801561031057600080fd5b5061028c61031f3660046116ed565b6107ce565b34801561033057600080fd5b5061028c61033f3660046118ac565b6107e9565b34801561035057600080fd5b5061025461035f366004611859565b610833565b34801561037057600080fd5b506102a761037f36600461169f565b61083e565b34801561039057600080fd5b5061028c61088d565b3480156103a557600080fd5b506102a76103b436600461169f565b600e6020526000908152604090205481565b3480156103d257600080fd5b506008546001600160a01b0316610254565b3480156103f057600080fd5b5061028c6103ff366004611859565b6108c3565b34801561041057600080fd5b506102276108f2565b34801561042557600080fd5b506102a7600b5481565b61028c61043d366004611859565b610901565b34801561044e57600080fd5b5061028c61045d3660046117a5565b610acd565b34801561046e57600080fd5b5061028c61047d366004611729565b610b63565b34801561048e57600080fd5b506101fd61049d3660046117f9565b610bad565b3480156104ae57600080fd5b5061028c6104bd36600461183e565b610bc3565b3480156104ce57600080fd5b506102276104dd366004611859565b610c00565b3480156104ee57600080fd5b5061028c6104fd366004611859565b610c84565b34801561050e57600080fd5b50600c546101fd9060ff1681565b34801561052857600080fd5b506101fd6105373660046116ba565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057157600080fd5b506102a7600d5481565b34801561058757600080fd5b506102a7600181565b34801561059c57600080fd5b5061028c6105ab36600461169f565b610cb3565b61028c6105be3660046118f5565b610d4b565b60006301ffc9a760e01b6001600160e01b0319831614806105f457506380ac58cd60e01b6001600160e01b03198316145b8061060f5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461062490611a91565b80601f016020809104026020016040519081016040528092919081815260200182805461065090611a91565b801561069d5780601f106106725761010080835404028352916020019161069d565b820191906000526020600020905b81548152906001019060200180831161068057829003601f168201915b5050505050905090565b60006106b282610efe565b6106cf576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106f682610f33565b9050806001600160a01b0316836001600160a01b0316141561072b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610762576107458133610537565b610762576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107c9838383610f9c565b505050565b6107c983838360405180602001604052806000815250610b63565b6008546001600160a01b0316331461081c5760405162461bcd60e51b8152600401610813906119e7565b60405180910390fd5b805161082f9060099060208401906114fc565b5050565b600061060f82610f33565b60006001600160a01b038216610867576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108b75760405162461bcd60e51b8152600401610813906119e7565b6108c1600061113f565b565b6008546001600160a01b031633146108ed5760405162461bcd60e51b8152600401610813906119e7565b600b55565b60606003805461062490611a91565b3332146109505760405162461bcd60e51b815260206004820152601a60248201527f5a656f6e20646f65736e74206c696b6520636f6e7472616374730000000000006044820152606401610813565b600a5460ff166109a25760405162461bcd60e51b815260206004820152601d60248201527f5a656f6e2047656e65736973206469646e7420737461727420796574210000006044820152606401610813565b60018111156109ee5760405162461bcd60e51b815260206004820152601860248201527753657220746861747320746f6f206d616e79207a656f6e7360401b6044820152606401610813565b336000908152600e6020526040902054600111610a465760405162461bcd60e51b8152602060048201526016602482015275596f75206861766520656e6f756768207a656f6e732160501b6044820152606401610813565b60015460005460459190036000190110610a995760405162461bcd60e51b815260206004820152601460248201527357652072616e206f7574206f66207a656f6e732160601b6044820152606401610813565b336000908152600e60205260408120805460019290610ab9908490611a4d565b90915550610aca9050336001611191565b50565b6001600160a01b038216331415610af75760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b6e848484610f9c565b6001600160a01b0383163b15610ba757610b8a848484846111ab565b610ba7576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000610bbc83600d54846112a3565b9392505050565b6008546001600160a01b03163314610bed5760405162461bcd60e51b8152600401610813906119e7565b600a805460ff1916911515919091179055565b6060610c0b82610efe565b610c2857604051630a14c4b560e41b815260040160405180910390fd5b6000610c326112b9565b9050805160001415610c535760405180602001604052806000815250610bbc565b80610c5d846112c8565b604051602001610c6e929190611968565b6040516020818303038152906040529392505050565b6008546001600160a01b03163314610cae5760405162461bcd60e51b8152600401610813906119e7565b600d55565b6008546001600160a01b03163314610cdd5760405162461bcd60e51b8152600401610813906119e7565b6001600160a01b038116610d425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610813565b610aca8161113f565b6040516bffffffffffffffffffffffff193360601b166020820152610d8a90829060340160405160208183030381529060405280519060200120610bad565b610dd65760405162461bcd60e51b815260206004820152601860248201527f4e6f742070617274206f6620746865207a656f6e6c69737400000000000000006044820152606401610813565b6001821115610e225760405162461bcd60e51b815260206004820152601860248201527753657220746861747320746f6f206d616e79207a656f6e7360401b6044820152606401610813565b336000908152600e6020526040902054600111610e7a5760405162461bcd60e51b8152602060048201526016602482015275596f75206861766520656e6f756768207a656f6e732160501b6044820152606401610813565b60015460005460459190036000190110610ecd5760405162461bcd60e51b815260206004820152601460248201527357652072616e206f7574206f66207a656f6e732160601b6044820152606401610813565b336000908152600e60205260408120805460019290610eed908490611a4d565b9091555061082f9050336001611191565b600081600111158015610f12575060005482105b801561060f575050600090815260046020526040902054600160e01b161590565b60008180600111610f8357600054811015610f8357600081815260046020526040902054600160e01b8116610f81575b80610bbc575060001901600081815260046020526040902054610f63565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610fa782610f33565b9050836001600160a01b0316816001600160a01b031614610fda5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610ff85750610ff88533610537565b80611013575033611008846106a7565b6001600160a01b0316145b90508061103357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661105a57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b8617811790915582166110f757600183016000818152600460205260409020546110f55760005481146110f55760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61082f828260405180602001604052806000815250611317565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111e0903390899088908890600401611997565b602060405180830381600087803b1580156111fa57600080fd5b505af192505050801561122a575060408051601f3d908101601f191682019092526112279181019061188f565b60015b611285573d808015611258576040519150601f19603f3d011682016040523d82523d6000602084013e61125d565b606091505b50805161127d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826112b08584611488565b14949350505050565b60606009805461062490611a91565b604080516080810191829052607f0190826030600a8206018353600a90045b801561130557600183039250600a81066030018353600a90046112e7565b50819003601f19909101908152919050565b6000546001600160a01b03841661134057604051622e076360e81b815260040160405180910390fd5b8261135e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611433575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46113fc60008784806001019550876111ab565b611419576040516368d2bf6b60e11b815260040160405180910390fd5b8082106113b157826000541461142e57600080fd5b611478565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611434575b506000908155610ba79085838684565b600081815b84518110156114f45760008582815181106114aa576114aa611afd565b602002602001015190508083116114d057600083815260208290526040902092506114e1565b600081815260208490526040902092505b50806114ec81611acc565b91505061148d565b509392505050565b82805461150890611a91565b90600052602060002090601f01602090048101928261152a5760008555611570565b82601f1061154357805160ff1916838001178555611570565b82800160010185558215611570579182015b82811115611570578251825591602001919060010190611555565b5061157c929150611580565b5090565b5b8082111561157c5760008155600101611581565b600067ffffffffffffffff8311156115af576115af611b13565b6115c2601f8401601f1916602001611a1c565b90508281528383830111156115d657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461160457600080fd5b919050565b600082601f83011261161a57600080fd5b8135602067ffffffffffffffff82111561163657611636611b13565b8160051b611645828201611a1c565b83815282810190868401838801850189101561166057600080fd5b600093505b85841015611683578035835260019390930192918401918401611665565b50979650505050505050565b8035801515811461160457600080fd5b6000602082840312156116b157600080fd5b610bbc826115ed565b600080604083850312156116cd57600080fd5b6116d6836115ed565b91506116e4602084016115ed565b90509250929050565b60008060006060848603121561170257600080fd5b61170b846115ed565b9250611719602085016115ed565b9150604084013590509250925092565b6000806000806080858703121561173f57600080fd5b611748856115ed565b9350611756602086016115ed565b925060408501359150606085013567ffffffffffffffff81111561177957600080fd5b8501601f8101871361178a57600080fd5b61179987823560208401611595565b91505092959194509250565b600080604083850312156117b857600080fd5b6117c1836115ed565b91506116e46020840161168f565b600080604083850312156117e257600080fd5b6117eb836115ed565b946020939093013593505050565b6000806040838503121561180c57600080fd5b823567ffffffffffffffff81111561182357600080fd5b61182f85828601611609565b95602094909401359450505050565b60006020828403121561185057600080fd5b610bbc8261168f565b60006020828403121561186b57600080fd5b5035919050565b60006020828403121561188457600080fd5b8135610bbc81611b29565b6000602082840312156118a157600080fd5b8151610bbc81611b29565b6000602082840312156118be57600080fd5b813567ffffffffffffffff8111156118d557600080fd5b8201601f810184136118e657600080fd5b61129b84823560208401611595565b6000806040838503121561190857600080fd5b82359150602083013567ffffffffffffffff81111561192657600080fd5b61193285828601611609565b9150509250929050565b60008151808452611954816020860160208601611a65565b601f01601f19169290920160200192915050565b6000835161197a818460208801611a65565b83519083019061198e818360208801611a65565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119ca9083018461193c565b9695505050505050565b602081526000610bbc602083018461193c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611a4557611a45611b13565b604052919050565b60008219821115611a6057611a60611ae7565b500190565b60005b83811015611a80578181015183820152602001611a68565b83811115610ba75750506000910152565b600181811c90821680611aa557607f821691505b60208210811415611ac657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ae057611ae0611ae7565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610aca57600080fdfea26469706673582212201b28590f6ab37b66a306c3ecd5a0668918db081d77cdae962353b24a0bf9f75464736f6c63430008070033

Deployed Bytecode Sourcemap

44251:2132:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15499:615;;;;;;;;;;-1:-1:-1;15499:615:0;;;;;:::i;:::-;;:::i;:::-;;;7667:14:1;;7660:22;7642:41;;7630:2;7615:18;15499:615:0;;;;;;;;20512:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22580:204::-;;;;;;;;;;-1:-1:-1;22580:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6965:32:1;;;6947:51;;6935:2;6920:18;22580:204:0;6801:203:1;22040:474:0;;;;;;;;;;-1:-1:-1;22040:474:0;;;;;:::i;:::-;;:::i;:::-;;14553:315;;;;;;;;;;-1:-1:-1;44756:1:0;14819:12;14606:7;14803:13;:28;-1:-1:-1;;14803:46:0;14553:315;;;7840:25:1;;;7828:2;7813:18;14553:315:0;7694:177:1;44317:27:0;;;;;;;;;;-1:-1:-1;44317:27:0;;;;;;;;23466:170;;;;;;;;;;-1:-1:-1;23466:170:0;;;;;:::i;:::-;;:::i;44430:39::-;;;;;;;;;;;;44467:2;44430:39;;23707:185;;;;;;;;;;-1:-1:-1;23707:185:0;;;;;:::i;:::-;;:::i;45904:96::-;;;;;;;;;;-1:-1:-1;45904:96:0;;;;;:::i;:::-;;:::i;20301:144::-;;;;;;;;;;-1:-1:-1;20301:144:0;;;;;:::i;:::-;;:::i;16178:224::-;;;;;;;;;;-1:-1:-1;16178:224:0;;;;;:::i;:::-;;:::i;43379:103::-;;;;;;;;;;;;;:::i;44517:46::-;;;;;;;;;;-1:-1:-1;44517:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;42728:87;;;;;;;;;;-1:-1:-1;42801:6:0;;-1:-1:-1;;;;;42801:6:0;42728:87;;46213:83;;;;;;;;;;-1:-1:-1;46213:83:0;;;;;:::i;:::-;;:::i;20681:104::-;;;;;;;;;;;;;:::i;44349:20::-;;;;;;;;;;;;;;;;44769:503;;;;;;:::i;:::-;;:::i;22856:308::-;;;;;;;;;;-1:-1:-1;22856:308:0;;;;;:::i;:::-;;:::i;23963:396::-;;;;;;;;;;-1:-1:-1;23963:396:0;;;;;:::i;:::-;;:::i;45757:139::-;;;;;;;;;;-1:-1:-1;45757:139:0;;;;;:::i;:::-;;:::i;46116:93::-;;;;;;;;;;-1:-1:-1;46116:93:0;;;;;:::i;:::-;;:::i;20856:318::-;;;;;;;;;;-1:-1:-1;20856:318:0;;;;;:::i;:::-;;:::i;46301:79::-;;;;;;;;;;-1:-1:-1;46301:79:0;;;;;:::i;:::-;;:::i;44374:27::-;;;;;;;;;;-1:-1:-1;44374:27:0;;;;;;;;23235:164;;;;;;;;;;-1:-1:-1;23235:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23356:25:0;;;23332:4;23356:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23235:164;44406:19;;;;;;;;;;;;;;;;44474:36;;;;;;;;;;;;44509:1;44474:36;;43637:201;;;;;;;;;;-1:-1:-1;43637:201:0;;;;;:::i;:::-;;:::i;45278:471::-;;;;;;:::i;:::-;;:::i;15499:615::-;15584:4;-1:-1:-1;;;;;;;;;15884:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15961:25:0;;;15884:102;:179;;;-1:-1:-1;;;;;;;;;;16038:25:0;;;15884:179;15864:199;15499:615;-1:-1:-1;;15499:615:0:o;20512:100::-;20566:13;20599:5;20592:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20512:100;:::o;22580:204::-;22648:7;22673:16;22681:7;22673;:16::i;:::-;22668:64;;22698:34;;-1:-1:-1;;;22698:34:0;;;;;;;;;;;22668:64;-1:-1:-1;22752:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22752:24:0;;22580:204::o;22040:474::-;22113:13;22145:27;22164:7;22145:18;:27::i;:::-;22113:61;;22195:5;-1:-1:-1;;;;;22189:11:0;:2;-1:-1:-1;;;;;22189:11:0;;22185:48;;;22209:24;;-1:-1:-1;;;22209:24:0;;;;;;;;;;;22185:48;38683:10;-1:-1:-1;;;;;22250:28:0;;;22246:175;;22298:44;22315:5;38683:10;23235:164;:::i;22298:44::-;22293:128;;22370:35;;-1:-1:-1;;;22370:35:0;;;;;;;;;;;22293:128;22433:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22433:29:0;-1:-1:-1;;;;;22433:29:0;;;;;;;;;22478:28;;22433:24;;22478:28;;;;;;;22102:412;22040:474;;:::o;23466:170::-;23600:28;23610:4;23616:2;23620:7;23600:9;:28::i;:::-;23466:170;;;:::o;23707:185::-;23845:39;23862:4;23868:2;23872:7;23845:39;;;;;;;;;;;;:16;:39::i;45904:96::-;42801:6;;-1:-1:-1;;;;;42801:6:0;38683:10;42948:23;42940:68;;;;-1:-1:-1;;;42940:68:0;;;;;;;:::i;:::-;;;;;;;;;45976:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45904:96:::0;:::o;20301:144::-;20365:7;20408:27;20427:7;20408:18;:27::i;16178:224::-;16242:7;-1:-1:-1;;;;;16266:19:0;;16262:60;;16294:28;;-1:-1:-1;;;16294:28:0;;;;;;;;;;;16262:60;-1:-1:-1;;;;;;16340:25:0;;;;;:18;:25;;;;;;11517:13;16340:54;;16178:224::o;43379:103::-;42801:6;;-1:-1:-1;;;;;42801:6:0;38683:10;42948:23;42940:68;;;;-1:-1:-1;;;42940:68:0;;;;;;;:::i;:::-;43444:30:::1;43471:1;43444:18;:30::i;:::-;43379:103::o:0;46213:83::-;42801:6;;-1:-1:-1;;;;;42801:6:0;38683:10;42948:23;42940:68;;;;-1:-1:-1;;;42940:68:0;;;;;;;:::i;:::-;46276:5:::1;:14:::0;46213:83::o;20681:104::-;20737:13;20770:7;20763:14;;;;;:::i;44769:503::-;44834:10;44846:9;44834:21;44826:60;;;;-1:-1:-1;;;44826:60:0;;9415:2:1;44826:60:0;;;9397:21:1;9454:2;9434:18;;;9427:30;9493:28;9473:18;;;9466:56;9539:18;;44826:60:0;9213:350:1;44826:60:0;44901:7;;;;44893:49;;;;-1:-1:-1;;;44893:49:0;;10831:2:1;44893:49:0;;;10813:21:1;10870:2;10850:18;;;10843:30;10909:31;10889:18;;;10882:59;10958:18;;44893:49:0;10629:353:1;44893:49:0;44509:1;44957:9;:21;;44949:58;;;;-1:-1:-1;;;44949:58:0;;8302:2:1;44949:58:0;;;8284:21:1;8341:2;8321:18;;;8314:30;-1:-1:-1;;;8360:18:1;;;8353:54;8424:18;;44949:58:0;8100:348:1;44949:58:0;38683:10;45022:28;;;;:14;:28;;;;;;44509:1;-1:-1:-1;45014:74:0;;;;-1:-1:-1;;;45014:74:0;;10480:2:1;45014:74:0;;;10462:21:1;10519:2;10499:18;;;10492:30;-1:-1:-1;;;10538:18:1;;;10531:52;10600:18;;45014:74:0;10278:346:1;45014:74:0;44756:1;14819:12;14606:7;14803:13;44467:2;;14803:28;;-1:-1:-1;;14803:46:0;45103:26;45095:59;;;;-1:-1:-1;;;45095:59:0;;10131:2:1;45095:59:0;;;10113:21:1;10170:2;10150:18;;;10143:30;-1:-1:-1;;;10189:18:1;;;10182:50;10249:18;;45095:59:0;9929:344:1;45095:59:0;38683:10;45202:28;;;;:14;:28;;;;;:33;;45234:1;;45202:28;:33;;45234:1;;45202:33;:::i;:::-;;;;-1:-1:-1;45242:24:0;;-1:-1:-1;45252:10:0;45264:1;45242:9;:24::i;:::-;44769:503;:::o;22856:308::-;-1:-1:-1;;;;;22955:31:0;;38683:10;22955:31;22951:61;;;22995:17;;-1:-1:-1;;;22995:17:0;;;;;;;;;;;22951:61;38683:10;23025:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;23025:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;23025:60:0;;;;;;;;;;23101:55;;7642:41:1;;;23025:49:0;;38683:10;23101:55;;7615:18:1;23101:55:0;;;;;;;22856:308;;:::o;23963:396::-;24130:28;24140:4;24146:2;24150:7;24130:9;:28::i;:::-;-1:-1:-1;;;;;24173:14:0;;;:19;24169:183;;24212:56;24243:4;24249:2;24253:7;24262:5;24212:30;:56::i;:::-;24207:145;;24296:40;;-1:-1:-1;;;24296:40:0;;;;;;;;;;;24207:145;23963:396;;;;:::o;45757:139::-;45833:4;45853:37;45872:5;45879:4;;45885;45853:18;:37::i;:::-;45846:44;45757:139;-1:-1:-1;;;45757:139:0:o;46116:93::-;42801:6;;-1:-1:-1;;;;;42801:6:0;38683:10;42948:23;42940:68;;;;-1:-1:-1;;;42940:68:0;;;;;;;:::i;:::-;46182:7:::1;:21:::0;;-1:-1:-1;;46182:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46116:93::o;20856:318::-;20929:13;20960:16;20968:7;20960;:16::i;:::-;20955:59;;20985:29;;-1:-1:-1;;;20985:29:0;;;;;;;;;;;20955:59;21027:21;21051:10;:8;:10::i;:::-;21027:34;;21085:7;21079:21;21104:1;21079:26;;:87;;;;;;;;;;;;;;;;;21132:7;21141:18;21151:7;21141:9;:18::i;:::-;21115:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21072:94;20856:318;-1:-1:-1;;;20856:318:0:o;46301:79::-;42801:6;;-1:-1:-1;;;;;42801:6:0;38683:10;42948:23;42940:68;;;;-1:-1:-1;;;42940:68:0;;;;;;;:::i;:::-;46362:4:::1;:12:::0;46301:79::o;43637:201::-;42801:6;;-1:-1:-1;;;;;42801:6:0;38683:10;42948:23;42940:68;;;;-1:-1:-1;;;42940:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43726:22:0;::::1;43718:73;;;::::0;-1:-1:-1;;;43718:73:0;;8655:2:1;43718:73:0::1;::::0;::::1;8637:21:1::0;8694:2;8674:18;;;8667:30;8733:34;8713:18;;;8706:62;-1:-1:-1;;;8784:18:1;;;8777:36;8830:19;;43718:73:0::1;8453:402:1::0;43718:73:0::1;43802:28;43821:8;43802:18;:28::i;45278:471::-:0;45399:28;;-1:-1:-1;;45416:10:0;6241:2:1;6237:15;6233:53;45399:28:0;;;6221:66:1;45374:55:0;;45382:5;;6303:12:1;;45399:28:0;;;;;;;;;;;;45389:39;;;;;;45374:7;:55::i;:::-;45366:92;;;;-1:-1:-1;;;45366:92:0;;9062:2:1;45366:92:0;;;9044:21:1;9101:2;9081:18;;;9074:30;9140:26;9120:18;;;9113:54;9184:18;;45366:92:0;8860:348:1;45366:92:0;44509:1;45473:9;:21;;45465:58;;;;-1:-1:-1;;;45465:58:0;;8302:2:1;45465:58:0;;;8284:21:1;8341:2;8321:18;;;8314:30;-1:-1:-1;;;8360:18:1;;;8353:54;8424:18;;45465:58:0;8100:348:1;45465:58:0;38683:10;45538:28;;;;:14;:28;;;;;;44509:1;-1:-1:-1;45530:74:0;;;;-1:-1:-1;;;45530:74:0;;10480:2:1;45530:74:0;;;10462:21:1;10519:2;10499:18;;;10492:30;-1:-1:-1;;;10538:18:1;;;10531:52;10600:18;;45530:74:0;10278:346:1;45530:74:0;44756:1;14819:12;14606:7;14803:13;44467:2;;14803:28;;-1:-1:-1;;14803:46:0;45619:26;45611:59;;;;-1:-1:-1;;;45611:59:0;;10131:2:1;45611:59:0;;;10113:21:1;10170:2;10150:18;;;10143:30;-1:-1:-1;;;10189:18:1;;;10182:50;10249:18;;45611:59:0;9929:344:1;45611:59:0;38683:10;45677:28;;;;:14;:28;;;;;:33;;45709:1;;45677:28;:33;;45709:1;;45677:33;:::i;:::-;;;;-1:-1:-1;45717:24:0;;-1:-1:-1;45727:10:0;45739:1;45717:9;:24::i;24614:273::-;24671:4;24727:7;44756:1;24708:26;;:66;;;;;24761:13;;24751:7;:23;24708:66;:152;;;;-1:-1:-1;;24812:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24812:43:0;:48;;24614:273::o;17816:1129::-;17883:7;17918;;44756:1;17967:23;17963:915;;18020:13;;18013:4;:20;18009:869;;;18058:14;18075:23;;;:17;:23;;;;;;-1:-1:-1;;;18164:23:0;;18160:699;;18683:113;18690:11;18683:113;;-1:-1:-1;;;18761:6:0;18743:25;;;;:17;:25;;;;;;18683:113;;18160:699;18035:843;18009:869;18906:31;;-1:-1:-1;;;18906:31:0;;;;;;;;;;;29853:2515;29968:27;29998;30017:7;29998:18;:27::i;:::-;29968:57;;30083:4;-1:-1:-1;;;;;30042:45:0;30058:19;-1:-1:-1;;;;;30042:45:0;;30038:86;;30096:28;;-1:-1:-1;;;30096:28:0;;;;;;;;;;;30038:86;30137:22;38683:10;-1:-1:-1;;;;;30163:27:0;;;;:87;;-1:-1:-1;30207:43:0;30224:4;38683:10;23235:164;:::i;30207:43::-;30163:147;;;-1:-1:-1;38683:10:0;30267:20;30279:7;30267:11;:20::i;:::-;-1:-1:-1;;;;;30267:43:0;;30163:147;30137:174;;30329:17;30324:66;;30355:35;;-1:-1:-1;;;30355:35:0;;;;;;;;;;;30324:66;-1:-1:-1;;;;;30405:16:0;;30401:52;;30430:23;;-1:-1:-1;;;30430:23:0;;;;;;;;;;;30401:52;30582:24;;;;:15;:24;;;;;;;;30575:31;;-1:-1:-1;;;;;;30575:31:0;;;-1:-1:-1;;;;;30974:24:0;;;;;:18;:24;;;;;30972:26;;-1:-1:-1;;30972:26:0;;;31043:22;;;;;;;31041:24;;-1:-1:-1;31041:24:0;;;31336:26;;;:17;:26;;;;;-1:-1:-1;;;31424:15:0;12171:3;31424:41;31382:84;;:128;;31336:174;;;31630:46;;31626:626;;31734:1;31724:11;;31702:19;31857:30;;;:17;:30;;;;;;31853:384;;31995:13;;31980:11;:28;31976:242;;32142:30;;;;:17;:30;;;;;:52;;;31976:242;31683:569;31626:626;32299:7;32295:2;-1:-1:-1;;;;;32280:27:0;32289:4;-1:-1:-1;;;;;32280:27:0;;;;;;;;;;;29957:2411;;29853:2515;;;:::o;43998:191::-;44091:6;;;-1:-1:-1;;;;;44108:17:0;;;-1:-1:-1;;;;;;44108:17:0;;;;;;;44141:40;;44091:6;;;44108:17;44091:6;;44141:40;;44072:16;;44141:40;44061:128;43998:191;:::o;24971:104::-;25040:27;25050:2;25054:8;25040:27;;;;;;;;;;;;:9;:27::i;36065:716::-;36249:88;;-1:-1:-1;;;36249:88:0;;36228:4;;-1:-1:-1;;;;;36249:45:0;;;;;:88;;38683:10;;36316:4;;36322:7;;36331:5;;36249:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36249:88:0;;;;;;;;-1:-1:-1;;36249:88:0;;;;;;;;;;;;:::i;:::-;;;36245:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36532:13:0;;36528:235;;36578:40;;-1:-1:-1;;;36578:40:0;;;;;;;;;;;36528:235;36721:6;36715:13;36706:6;36702:2;36698:15;36691:38;36245:529;-1:-1:-1;;;;;;36408:64:0;-1:-1:-1;;;36408:64:0;;-1:-1:-1;36245:529:0;36065:716;;;;;;:::o;962:190::-;1087:4;1140;1111:25;1124:5;1131:4;1111:12;:25::i;:::-;:33;;962:190;-1:-1:-1;;;;962:190:0:o;46006:104::-;46066:13;46097:7;46090:14;;;;;:::i;38807:1959::-;39278:4;39272:11;;39285:3;39268:21;;39363:17;;;;40060:11;;;39939:5;40192:2;40206;40196:13;;40188:22;40060:11;40175:36;40247:2;40237:13;;39830:682;40266:4;39830:682;;;40441:1;40436:3;40432:11;40425:18;;40492:2;40486:4;40482:13;40478:2;40474:22;40469:3;40461:36;40362:2;40352:13;;39830:682;;;-1:-1:-1;40554:13:0;;;-1:-1:-1;;40669:12:0;;;40729:19;;;40669:12;38807:1959;-1:-1:-1;38807:1959:0:o;25448:2236::-;25571:20;25594:13;-1:-1:-1;;;;;25622:16:0;;25618:48;;25647:19;;-1:-1:-1;;;25647:19:0;;;;;;;;;;;25618:48;25681:13;25677:44;;25703:18;;-1:-1:-1;;;25703:18:0;;;;;;;;;;;25677:44;-1:-1:-1;;;;;26270:22:0;;;;;;:18;:22;;;;11654:2;26270:22;;;:70;;26308:31;26296:44;;26270:70;;;26583:31;;;:17;:31;;;;;26676:15;12171:3;26676:41;26634:84;;-1:-1:-1;26754:13:0;;12434:3;26739:56;26634:162;26583:213;;:31;;26877:23;;;;26921:14;:19;26917:635;;26961:313;26992:38;;27017:12;;-1:-1:-1;;;;;26992:38:0;;;27009:1;;26992:38;;27009:1;;26992:38;27058:69;27097:1;27101:2;27105:14;;;;;;27121:5;27058:30;:69::i;:::-;27053:174;;27163:40;;-1:-1:-1;;;27163:40:0;;;;;;;;;;;27053:174;27269:3;27254:12;:18;26961:313;;27355:12;27338:13;;:29;27334:43;;27369:8;;;27334:43;26917:635;;;27418:119;27449:40;;27474:14;;;;;-1:-1:-1;;;;;27449:40:0;;;27466:1;;27449:40;;27466:1;;27449:40;27532:3;27517:12;:18;27418:119;;26917:635;-1:-1:-1;27566:13:0;:28;;;27616:60;;27649:2;27653:12;27667:8;27616:60;:::i;1514:675::-;1597:7;1640:4;1597:7;1655:497;1679:5;:12;1675:1;:16;1655:497;;;1713:20;1736:5;1742:1;1736:8;;;;;;;;:::i;:::-;;;;;;;1713:31;;1779:12;1763;:28;1759:382;;2265:13;2315:15;;;2351:4;2344:15;;;2398:4;2382:21;;1891:57;;1759:382;;;2265:13;2315:15;;;2351:4;2344:15;;;2398:4;2382:21;;2068:57;;1759:382;-1:-1:-1;1693:3:0;;;;:::i;:::-;;;;1655:497;;;-1:-1:-1;2169:12:0;1514:675;-1:-1:-1;;;1514:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;813:18;809:2;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:160::-;1396:20;;1452:13;;1445:21;1435:32;;1425:60;;1481:1;1478;1471:12;1496:186;1555:6;1608:2;1596:9;1587:7;1583:23;1579:32;1576:52;;;1624:1;1621;1614:12;1576:52;1647:29;1666:9;1647:29;:::i;1687:260::-;1755:6;1763;1816:2;1804:9;1795:7;1791:23;1787:32;1784:52;;;1832:1;1829;1822:12;1784:52;1855:29;1874:9;1855:29;:::i;:::-;1845:39;;1903:38;1937:2;1926:9;1922:18;1903:38;:::i;:::-;1893:48;;1687:260;;;;;:::o;1952:328::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:52;;;2114:1;2111;2104:12;2066:52;2137:29;2156:9;2137:29;:::i;:::-;2127:39;;2185:38;2219:2;2208:9;2204:18;2185:38;:::i;:::-;2175:48;;2270:2;2259:9;2255:18;2242:32;2232:42;;1952:328;;;;;:::o;2285:666::-;2380:6;2388;2396;2404;2457:3;2445:9;2436:7;2432:23;2428:33;2425:53;;;2474:1;2471;2464:12;2425:53;2497:29;2516:9;2497:29;:::i;:::-;2487:39;;2545:38;2579:2;2568:9;2564:18;2545:38;:::i;:::-;2535:48;;2630:2;2619:9;2615:18;2602:32;2592:42;;2685:2;2674:9;2670:18;2657:32;2712:18;2704:6;2701:30;2698:50;;;2744:1;2741;2734:12;2698:50;2767:22;;2820:4;2812:13;;2808:27;-1:-1:-1;2798:55:1;;2849:1;2846;2839:12;2798:55;2872:73;2937:7;2932:2;2919:16;2914:2;2910;2906:11;2872:73;:::i;:::-;2862:83;;;2285:666;;;;;;;:::o;2956:254::-;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3121:29;3140:9;3121:29;:::i;:::-;3111:39;;3169:35;3200:2;3189:9;3185:18;3169:35;:::i;3215:254::-;3283:6;3291;3344:2;3332:9;3323:7;3319:23;3315:32;3312:52;;;3360:1;3357;3350:12;3312:52;3383:29;3402:9;3383:29;:::i;:::-;3373:39;3459:2;3444:18;;;;3431:32;;-1:-1:-1;;;3215:254:1:o;3474:416::-;3567:6;3575;3628:2;3616:9;3607:7;3603:23;3599:32;3596:52;;;3644:1;3641;3634:12;3596:52;3684:9;3671:23;3717:18;3709:6;3706:30;3703:50;;;3749:1;3746;3739:12;3703:50;3772:61;3825:7;3816:6;3805:9;3801:22;3772:61;:::i;:::-;3762:71;3880:2;3865:18;;;;3852:32;;-1:-1:-1;;;;3474:416:1:o;3895:180::-;3951:6;4004:2;3992:9;3983:7;3979:23;3975:32;3972:52;;;4020:1;4017;4010:12;3972:52;4043:26;4059:9;4043:26;:::i;4080:180::-;4139:6;4192:2;4180:9;4171:7;4167:23;4163:32;4160:52;;;4208:1;4205;4198:12;4160:52;-1:-1:-1;4231:23:1;;4080:180;-1:-1:-1;4080:180:1:o;4265:245::-;4323:6;4376:2;4364:9;4355:7;4351:23;4347:32;4344:52;;;4392:1;4389;4382:12;4344:52;4431:9;4418:23;4450:30;4474:5;4450:30;:::i;4515:249::-;4584:6;4637:2;4625:9;4616:7;4612:23;4608:32;4605:52;;;4653:1;4650;4643:12;4605:52;4685:9;4679:16;4704:30;4728:5;4704:30;:::i;4769:450::-;4838:6;4891:2;4879:9;4870:7;4866:23;4862:32;4859:52;;;4907:1;4904;4897:12;4859:52;4947:9;4934:23;4980:18;4972:6;4969:30;4966:50;;;5012:1;5009;5002:12;4966:50;5035:22;;5088:4;5080:13;;5076:27;-1:-1:-1;5066:55:1;;5117:1;5114;5107:12;5066:55;5140:73;5205:7;5200:2;5187:16;5182:2;5178;5174:11;5140:73;:::i;5409:416::-;5502:6;5510;5563:2;5551:9;5542:7;5538:23;5534:32;5531:52;;;5579:1;5576;5569:12;5531:52;5615:9;5602:23;5592:33;;5676:2;5665:9;5661:18;5648:32;5703:18;5695:6;5692:30;5689:50;;;5735:1;5732;5725:12;5689:50;5758:61;5811:7;5802:6;5791:9;5787:22;5758:61;:::i;:::-;5748:71;;;5409:416;;;;;:::o;5830:257::-;5871:3;5909:5;5903:12;5936:6;5931:3;5924:19;5952:63;6008:6;6001:4;5996:3;5992:14;5985:4;5978:5;5974:16;5952:63;:::i;:::-;6069:2;6048:15;-1:-1:-1;;6044:29:1;6035:39;;;;6076:4;6031:50;;5830:257;-1:-1:-1;;5830:257:1:o;6326:470::-;6505:3;6543:6;6537:13;6559:53;6605:6;6600:3;6593:4;6585:6;6581:17;6559:53;:::i;:::-;6675:13;;6634:16;;;;6697:57;6675:13;6634:16;6731:4;6719:17;;6697:57;:::i;:::-;6770:20;;6326:470;-1:-1:-1;;;;6326:470:1:o;7009:488::-;-1:-1:-1;;;;;7278:15:1;;;7260:34;;7330:15;;7325:2;7310:18;;7303:43;7377:2;7362:18;;7355:34;;;7425:3;7420:2;7405:18;;7398:31;;;7203:4;;7446:45;;7471:19;;7463:6;7446:45;:::i;:::-;7438:53;7009:488;-1:-1:-1;;;;;;7009:488:1:o;7876:219::-;8025:2;8014:9;8007:21;7988:4;8045:44;8085:2;8074:9;8070:18;8062:6;8045:44;:::i;9568:356::-;9770:2;9752:21;;;9789:18;;;9782:30;9848:34;9843:2;9828:18;;9821:62;9915:2;9900:18;;9568:356::o;11169:275::-;11240:2;11234:9;11305:2;11286:13;;-1:-1:-1;;11282:27:1;11270:40;;11340:18;11325:34;;11361:22;;;11322:62;11319:88;;;11387:18;;:::i;:::-;11423:2;11416:22;11169:275;;-1:-1:-1;11169:275:1:o;11449:128::-;11489:3;11520:1;11516:6;11513:1;11510:13;11507:39;;;11526:18;;:::i;:::-;-1:-1:-1;11562:9:1;;11449:128::o;11582:258::-;11654:1;11664:113;11678:6;11675:1;11672:13;11664:113;;;11754:11;;;11748:18;11735:11;;;11728:39;11700:2;11693:10;11664:113;;;11795:6;11792:1;11789:13;11786:48;;;-1:-1:-1;;11830:1:1;11812:16;;11805:27;11582:258::o;11845:380::-;11924:1;11920:12;;;;11967;;;11988:61;;12042:4;12034:6;12030:17;12020:27;;11988:61;12095:2;12087:6;12084:14;12064:18;12061:38;12058:161;;;12141:10;12136:3;12132:20;12129:1;12122:31;12176:4;12173:1;12166:15;12204:4;12201:1;12194:15;12058:161;;11845:380;;;:::o;12230:135::-;12269:3;-1:-1:-1;;12290:17:1;;12287:43;;;12310:18;;:::i;:::-;-1:-1:-1;12357:1:1;12346:13;;12230:135::o;12370:127::-;12431:10;12426:3;12422:20;12419:1;12412:31;12462:4;12459:1;12452:15;12486:4;12483:1;12476:15;12502:127;12563:10;12558:3;12554:20;12551:1;12544:31;12594:4;12591:1;12584:15;12618:4;12615:1;12608:15;12634:127;12695:10;12690:3;12686:20;12683:1;12676:31;12726:4;12723:1;12716:15;12750:4;12747:1;12740:15;12766:131;-1:-1:-1;;;;;;12840:32:1;;12830:43;;12820:71;;12887:1;12884;12877:12

Swarm Source

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