ETH Price: $3,093.88 (-0.56%)
Gas: 2 Gwei

Token

Palestinian (Palestinian)
 

Overview

Max Total Supply

2,823 Palestinian

Holders

502

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 Palestinian
0xE6b40C4A8107980Aa1AAFBeFe50770B0CBb258a1
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:
Palestinian

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-08
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.18;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Ownable is Context {
    address private _owner;

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

    constructor() {
        _transferOwnership(_msgSender());
    }

    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }


    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Interface of ERC721A.
 */
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();

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` 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);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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`
    // - [232..255] `extraData`
    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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 auxiliary 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 auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev 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;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

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

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // 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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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.
                // The ASCII index of the '0' character is 48.
                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)
        }
    }
}

contract Palestinian is ERC721A, Ownable  {
    
    uint256 public maxSupply = 3333;

    uint256 public maxFreeSupply;

    uint256 public cost = 0.0005 ether;

    uint256 public freeAmount;

    string  private uri = "";
    
    function publicMint(uint32 amount) public payable {
        require(totalSupply() + amount <= maxSupply, "sold_out");
        _mint(amount);
    }

    function _mint(uint32 amount) internal  {
        bool isFree = msg.value == 0;
        if (isFree) {
            require(amount <= freeAmount);
            require(totalSupply() + amount <= maxFreeSupply);
            require(msg.sender == owner() || balanceOf(msg.sender) < freeAmount);
            _safeMint(msg.sender, amount);
        } else {
            require(msg.value >= cost * amount);
            _safeMint(msg.sender, amount);
        }
    }

    constructor() ERC721A("Palestinian", "Palestinian") {
        maxFreeSupply = 2333;
        freeAmount = 8;
    }

    function setFree(uint256 freeamount, uint256 mf) onlyOwner public  {
        freeAmount = freeamount;
        maxFreeSupply = mf;
    }

    function setUri(string memory i) onlyOwner public  {
        uri = i;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        return string(abi.encodePacked(uri, _toString(tokenId), ".json"));
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeamount","type":"uint256"},{"internalType":"uint256","name":"mf","type":"uint256"}],"name":"setFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"i","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610d056009556601c6bf52634000600b5560a060405260006080908152600d906200002b9082620001a6565b503480156200003957600080fd5b50604080518082018252600b8082526a2830b632b9ba34b734b0b760a91b60208084018290528451808601909552918452908301529060026200007d8382620001a6565b5060036200008c8282620001a6565b505060008055506200009e33620000af565b61091d600a556008600c5562000272565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200012c57607f821691505b6020821081036200014d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001a157600081815260208120601f850160051c810160208610156200017c5750805b601f850160051c820191505b818110156200019d5782815560010162000188565b5050505b505050565b81516001600160401b03811115620001c257620001c262000101565b620001da81620001d3845462000117565b8462000153565b602080601f831160018114620002125760008415620001f95750858301515b600019600386901b1c1916600185901b1785556200019d565b600085815260208120601f198616915b82811015620002435788860151825594840194600190910190840162000222565b5085821015620002625787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61159180620002826000396000f3fe6080604052600436106101665760003560e01c80636352211e116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610402578063e985e9c514610418578063f151d79114610438578063f2fde38b1461044b57600080fd5b8063a22cb465146103a2578063b88d4fde146103c2578063c87b56dd146103e257600080fd5b80636352211e146102fa57806370a082311461031a578063715018a61461033a5780638da5cb5b1461034f57806395d89b411461036d5780639b642de11461038257600080fd5b806318160ddd1161012357806318160ddd1461025657806323b872dd1461026f5780633ccfd60b1461028f57806342842e0e146102a457806347513334146102c457806357546fd7146102da57600080fd5b806301ffc9a71461016b5780630451a9f1146101a057806306fdde03146101c4578063081812fc146101e6578063095ea7b31461021e57806313faede614610240575b600080fd5b34801561017757600080fd5b5061018b610186366004610fac565b61046b565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b6600c5481565b604051908152602001610197565b3480156101d057600080fd5b506101d96104bd565b6040516101979190611019565b3480156101f257600080fd5b5061020661020136600461102c565b61054f565b6040516001600160a01b039091168152602001610197565b34801561022a57600080fd5b5061023e610239366004611061565b610593565b005b34801561024c57600080fd5b506101b6600b5481565b34801561026257600080fd5b50600154600054036101b6565b34801561027b57600080fd5b5061023e61028a36600461108b565b610633565b34801561029b57600080fd5b5061023e6107cc565b3480156102b057600080fd5b5061023e6102bf36600461108b565b610803565b3480156102d057600080fd5b506101b6600a5481565b3480156102e657600080fd5b5061023e6102f53660046110c7565b610823565b34801561030657600080fd5b5061020661031536600461102c565b610836565b34801561032657600080fd5b506101b66103353660046110e9565b610841565b34801561034657600080fd5b5061023e610890565b34801561035b57600080fd5b506008546001600160a01b0316610206565b34801561037957600080fd5b506101d96108a4565b34801561038e57600080fd5b5061023e61039d366004611190565b6108b3565b3480156103ae57600080fd5b5061023e6103bd3660046111d9565b6108cb565b3480156103ce57600080fd5b5061023e6103dd366004611215565b610960565b3480156103ee57600080fd5b506101d96103fd36600461102c565b6109aa565b34801561040e57600080fd5b506101b660095481565b34801561042457600080fd5b5061018b610433366004611291565b6109de565b61023e6104463660046112c4565b610a0c565b34801561045757600080fd5b5061023e6104663660046110e9565b610a74565b60006301ffc9a760e01b6001600160e01b03198316148061049c57506380ac58cd60e01b6001600160e01b03198316145b806104b75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104cc906112ea565b80601f01602080910402602001604051908101604052809291908181526020018280546104f8906112ea565b80156105455780601f1061051a57610100808354040283529160200191610545565b820191906000526020600020905b81548152906001019060200180831161052857829003601f168201915b5050505050905090565b600061055a82610aea565b610577576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061059e82610836565b9050336001600160a01b038216146105d7576105ba81336109de565b6105d7576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061063e82610b11565b9050836001600160a01b0316816001600160a01b0316146106715760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106be576106a186336109de565b6106be57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166106e557604051633a954ecd60e21b815260040160405180910390fd5b80156106f057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610782576001840160008181526004602052604081205490036107805760005481146107805760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6107d4610b7f565b60405133904780156108fc02916000818181858888f19350505050158015610800573d6000803e3d6000fd5b50565b61081e83838360405180602001604052806000815250610960565b505050565b61082b610b7f565b600c91909155600a55565b60006104b782610b11565b60006001600160a01b03821661086a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610898610b7f565b6108a26000610bd9565b565b6060600380546104cc906112ea565b6108bb610b7f565b600d6108c7828261136a565b5050565b336001600160a01b038316036108f45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61096b848484610633565b6001600160a01b0383163b156109a45761098784848484610c2b565b6109a4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060600d6109b783610d17565b6040516020016109c892919061142a565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6009548163ffffffff16610a236001546000540390565b610a2d91906114d7565b1115610a6b5760405162461bcd60e51b81526020600482015260086024820152671cdbdb1917dbdd5d60c21b60448201526064015b60405180910390fd5b61080081610d66565b610a7c610b7f565b6001600160a01b038116610ae15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a62565b61080081610bd9565b60008054821080156104b7575050600090815260046020526040902054600160e01b161590565b600081600054811015610b665760008181526004602052604081205490600160e01b82169003610b64575b80600003610b5d575060001901600081815260046020526040902054610b3c565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146108a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a62565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610c609033908990889088906004016114ea565b6020604051808303816000875af1925050508015610c9b575060408051601f3d908101601f19168201909252610c9891810190611527565b60015b610cf9573d808015610cc9576040519150601f19603f3d011682016040523d82523d6000602084013e610cce565b606091505b508051600003610cf1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610d5457600183039250600a81066030018353600a9004610d36565b50819003601f19909101908152919050565b34158015610dea57600c548263ffffffff161115610d8357600080fd5b600a548263ffffffff16610d9a6001546000540390565b610da491906114d7565b1115610daf57600080fd5b6008546001600160a01b0316331480610dd15750600c54610dcf33610841565b105b610dda57600080fd5b6108c7338363ffffffff16610e16565b8163ffffffff16600b54610dfe9190611544565b341015610e0a57600080fd5b6108c7338363ffffffff165b6108c7828260405180602001604052806000815250610e358383610e98565b6001600160a01b0383163b1561081e576000548281035b610e5f6000868380600101945086610c2b565b610e7c576040516368d2bf6b60e11b815260040160405180910390fd5b818110610e4c578160005414610e9157600080fd5b5050505050565b6000805490829003610ebd5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610f6c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610f34565b5081600003610f8d57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461080057600080fd5b600060208284031215610fbe57600080fd5b8135610b5d81610f96565b60005b83811015610fe4578181015183820152602001610fcc565b50506000910152565b60008151808452611005816020860160208601610fc9565b601f01601f19169290920160200192915050565b602081526000610b5d6020830184610fed565b60006020828403121561103e57600080fd5b5035919050565b80356001600160a01b038116811461105c57600080fd5b919050565b6000806040838503121561107457600080fd5b61107d83611045565b946020939093013593505050565b6000806000606084860312156110a057600080fd5b6110a984611045565b92506110b760208501611045565b9150604084013590509250925092565b600080604083850312156110da57600080fd5b50508035926020909101359150565b6000602082840312156110fb57600080fd5b610b5d82611045565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561113557611135611104565b604051601f8501601f19908116603f0116810190828211818310171561115d5761115d611104565b8160405280935085815286868601111561117657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156111a257600080fd5b813567ffffffffffffffff8111156111b957600080fd5b8201601f810184136111ca57600080fd5b610d0f8482356020840161111a565b600080604083850312156111ec57600080fd5b6111f583611045565b91506020830135801515811461120a57600080fd5b809150509250929050565b6000806000806080858703121561122b57600080fd5b61123485611045565b935061124260208601611045565b925060408501359150606085013567ffffffffffffffff81111561126557600080fd5b8501601f8101871361127657600080fd5b6112858782356020840161111a565b91505092959194509250565b600080604083850312156112a457600080fd5b6112ad83611045565b91506112bb60208401611045565b90509250929050565b6000602082840312156112d657600080fd5b813563ffffffff81168114610b5d57600080fd5b600181811c908216806112fe57607f821691505b60208210810361131e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561081e57600081815260208120601f850160051c8101602086101561134b5750805b601f850160051c820191505b818110156107c457828155600101611357565b815167ffffffffffffffff81111561138457611384611104565b6113988161139284546112ea565b84611324565b602080601f8311600181146113cd57600084156113b55750858301515b600019600386901b1c1916600185901b1785556107c4565b600085815260208120601f198616915b828110156113fc578886015182559484019460019091019084016113dd565b508582101561141a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000808454611438816112ea565b60018281168015611450576001811461146557611494565b60ff1984168752821515830287019450611494565b8860005260208060002060005b8581101561148b5781548a820152908401908201611472565b50505082870194505b5050505083516114a8818360208801610fc9565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104b7576104b76114c1565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061151d90830184610fed565b9695505050505050565b60006020828403121561153957600080fd5b8151610b5d81610f96565b80820281158282048414176104b7576104b76114c156fea2646970667358221220a306bf9f17140b356a027d0308b8a3b259c0fba8e2819114ed218763ff36991764736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101665760003560e01c80636352211e116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610402578063e985e9c514610418578063f151d79114610438578063f2fde38b1461044b57600080fd5b8063a22cb465146103a2578063b88d4fde146103c2578063c87b56dd146103e257600080fd5b80636352211e146102fa57806370a082311461031a578063715018a61461033a5780638da5cb5b1461034f57806395d89b411461036d5780639b642de11461038257600080fd5b806318160ddd1161012357806318160ddd1461025657806323b872dd1461026f5780633ccfd60b1461028f57806342842e0e146102a457806347513334146102c457806357546fd7146102da57600080fd5b806301ffc9a71461016b5780630451a9f1146101a057806306fdde03146101c4578063081812fc146101e6578063095ea7b31461021e57806313faede614610240575b600080fd5b34801561017757600080fd5b5061018b610186366004610fac565b61046b565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b6600c5481565b604051908152602001610197565b3480156101d057600080fd5b506101d96104bd565b6040516101979190611019565b3480156101f257600080fd5b5061020661020136600461102c565b61054f565b6040516001600160a01b039091168152602001610197565b34801561022a57600080fd5b5061023e610239366004611061565b610593565b005b34801561024c57600080fd5b506101b6600b5481565b34801561026257600080fd5b50600154600054036101b6565b34801561027b57600080fd5b5061023e61028a36600461108b565b610633565b34801561029b57600080fd5b5061023e6107cc565b3480156102b057600080fd5b5061023e6102bf36600461108b565b610803565b3480156102d057600080fd5b506101b6600a5481565b3480156102e657600080fd5b5061023e6102f53660046110c7565b610823565b34801561030657600080fd5b5061020661031536600461102c565b610836565b34801561032657600080fd5b506101b66103353660046110e9565b610841565b34801561034657600080fd5b5061023e610890565b34801561035b57600080fd5b506008546001600160a01b0316610206565b34801561037957600080fd5b506101d96108a4565b34801561038e57600080fd5b5061023e61039d366004611190565b6108b3565b3480156103ae57600080fd5b5061023e6103bd3660046111d9565b6108cb565b3480156103ce57600080fd5b5061023e6103dd366004611215565b610960565b3480156103ee57600080fd5b506101d96103fd36600461102c565b6109aa565b34801561040e57600080fd5b506101b660095481565b34801561042457600080fd5b5061018b610433366004611291565b6109de565b61023e6104463660046112c4565b610a0c565b34801561045757600080fd5b5061023e6104663660046110e9565b610a74565b60006301ffc9a760e01b6001600160e01b03198316148061049c57506380ac58cd60e01b6001600160e01b03198316145b806104b75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104cc906112ea565b80601f01602080910402602001604051908101604052809291908181526020018280546104f8906112ea565b80156105455780601f1061051a57610100808354040283529160200191610545565b820191906000526020600020905b81548152906001019060200180831161052857829003601f168201915b5050505050905090565b600061055a82610aea565b610577576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061059e82610836565b9050336001600160a01b038216146105d7576105ba81336109de565b6105d7576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061063e82610b11565b9050836001600160a01b0316816001600160a01b0316146106715760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106be576106a186336109de565b6106be57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166106e557604051633a954ecd60e21b815260040160405180910390fd5b80156106f057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610782576001840160008181526004602052604081205490036107805760005481146107805760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6107d4610b7f565b60405133904780156108fc02916000818181858888f19350505050158015610800573d6000803e3d6000fd5b50565b61081e83838360405180602001604052806000815250610960565b505050565b61082b610b7f565b600c91909155600a55565b60006104b782610b11565b60006001600160a01b03821661086a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610898610b7f565b6108a26000610bd9565b565b6060600380546104cc906112ea565b6108bb610b7f565b600d6108c7828261136a565b5050565b336001600160a01b038316036108f45760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61096b848484610633565b6001600160a01b0383163b156109a45761098784848484610c2b565b6109a4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060600d6109b783610d17565b6040516020016109c892919061142a565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6009548163ffffffff16610a236001546000540390565b610a2d91906114d7565b1115610a6b5760405162461bcd60e51b81526020600482015260086024820152671cdbdb1917dbdd5d60c21b60448201526064015b60405180910390fd5b61080081610d66565b610a7c610b7f565b6001600160a01b038116610ae15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a62565b61080081610bd9565b60008054821080156104b7575050600090815260046020526040902054600160e01b161590565b600081600054811015610b665760008181526004602052604081205490600160e01b82169003610b64575b80600003610b5d575060001901600081815260046020526040902054610b3c565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146108a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a62565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610c609033908990889088906004016114ea565b6020604051808303816000875af1925050508015610c9b575060408051601f3d908101601f19168201909252610c9891810190611527565b60015b610cf9573d808015610cc9576040519150601f19603f3d011682016040523d82523d6000602084013e610cce565b606091505b508051600003610cf1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610d5457600183039250600a81066030018353600a9004610d36565b50819003601f19909101908152919050565b34158015610dea57600c548263ffffffff161115610d8357600080fd5b600a548263ffffffff16610d9a6001546000540390565b610da491906114d7565b1115610daf57600080fd5b6008546001600160a01b0316331480610dd15750600c54610dcf33610841565b105b610dda57600080fd5b6108c7338363ffffffff16610e16565b8163ffffffff16600b54610dfe9190611544565b341015610e0a57600080fd5b6108c7338363ffffffff165b6108c7828260405180602001604052806000815250610e358383610e98565b6001600160a01b0383163b1561081e576000548281035b610e5f6000868380600101945086610c2b565b610e7c576040516368d2bf6b60e11b815260040160405180910390fd5b818110610e4c578160005414610e9157600080fd5b5050505050565b6000805490829003610ebd5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114610f6c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101610f34565b5081600003610f8d57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461080057600080fd5b600060208284031215610fbe57600080fd5b8135610b5d81610f96565b60005b83811015610fe4578181015183820152602001610fcc565b50506000910152565b60008151808452611005816020860160208601610fc9565b601f01601f19169290920160200192915050565b602081526000610b5d6020830184610fed565b60006020828403121561103e57600080fd5b5035919050565b80356001600160a01b038116811461105c57600080fd5b919050565b6000806040838503121561107457600080fd5b61107d83611045565b946020939093013593505050565b6000806000606084860312156110a057600080fd5b6110a984611045565b92506110b760208501611045565b9150604084013590509250925092565b600080604083850312156110da57600080fd5b50508035926020909101359150565b6000602082840312156110fb57600080fd5b610b5d82611045565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561113557611135611104565b604051601f8501601f19908116603f0116810190828211818310171561115d5761115d611104565b8160405280935085815286868601111561117657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156111a257600080fd5b813567ffffffffffffffff8111156111b957600080fd5b8201601f810184136111ca57600080fd5b610d0f8482356020840161111a565b600080604083850312156111ec57600080fd5b6111f583611045565b91506020830135801515811461120a57600080fd5b809150509250929050565b6000806000806080858703121561122b57600080fd5b61123485611045565b935061124260208601611045565b925060408501359150606085013567ffffffffffffffff81111561126557600080fd5b8501601f8101871361127657600080fd5b6112858782356020840161111a565b91505092959194509250565b600080604083850312156112a457600080fd5b6112ad83611045565b91506112bb60208401611045565b90509250929050565b6000602082840312156112d657600080fd5b813563ffffffff81168114610b5d57600080fd5b600181811c908216806112fe57607f821691505b60208210810361131e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561081e57600081815260208120601f850160051c8101602086101561134b5750805b601f850160051c820191505b818110156107c457828155600101611357565b815167ffffffffffffffff81111561138457611384611104565b6113988161139284546112ea565b84611324565b602080601f8311600181146113cd57600084156113b55750858301515b600019600386901b1c1916600185901b1785556107c4565b600085815260208120601f198616915b828110156113fc578886015182559484019460019091019084016113dd565b508582101561141a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000808454611438816112ea565b60018281168015611450576001811461146557611494565b60ff1984168752821515830287019450611494565b8860005260208060002060005b8581101561148b5781548a820152908401908201611472565b50505082870194505b5050505083516114a8818360208801610fc9565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104b7576104b76114c1565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061151d90830184610fed565b9695505050505050565b60006020828403121561153957600080fd5b8151610b5d81610f96565b80820281158282048414176104b7576104b76114c156fea2646970667358221220a306bf9f17140b356a027d0308b8a3b259c0fba8e2819114ed218763ff36991764736f6c63430008120033

Deployed Bytecode Sourcemap

52370:1517:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19558:639;;;;;;;;;;-1:-1:-1;19558:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;19558:639:0;;;;;;;;52545:25;;;;;;;;;;;;;;;;;;;738::1;;;726:2;711:18;52545:25:0;592:177:1;20460:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26943:218::-;;;;;;;;;;-1:-1:-1;26943:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;26943:218:0;1715:203:1;26384:400:0;;;;;;;;;;-1:-1:-1;26384:400:0;;;;;:::i;:::-;;:::i;:::-;;52502:34;;;;;;;;;;;;;;;;16211:323;;;;;;;;;;-1:-1:-1;16485:12:0;;16272:7;16469:13;:28;16211:323;;30650:2817;;;;;;;;;;-1:-1:-1;30650:2817:0;;;;;:::i;:::-;;:::i;53775:109::-;;;;;;;;;;;;;:::i;33563:185::-;;;;;;;;;;-1:-1:-1;33563:185:0;;;;;:::i;:::-;;:::i;52465:28::-;;;;;;;;;;;;;;;;53372:138;;;;;;;;;;-1:-1:-1;53372:138:0;;;;;:::i;:::-;;:::i;21853:152::-;;;;;;;;;;-1:-1:-1;21853:152:0;;;;;:::i;:::-;;:::i;17395:233::-;;;;;;;;;;-1:-1:-1;17395:233:0;;;;;:::i;:::-;;:::i;858:103::-;;;;;;;;;;;;;:::i;623:87::-;;;;;;;;;;-1:-1:-1;696:6:0;;-1:-1:-1;;;;;696:6:0;623:87;;20636:104;;;;;;;;;;;;;:::i;53518:77::-;;;;;;;;;;-1:-1:-1;53518:77:0;;;;;:::i;:::-;;:::i;27501:308::-;;;;;;;;;;-1:-1:-1;27501:308:0;;;;;:::i;:::-;;:::i;34346:399::-;;;;;;;;;;-1:-1:-1;34346:399:0;;;;;:::i;:::-;;:::i;53603:164::-;;;;;;;;;;-1:-1:-1;53603:164:0;;;;;:::i;:::-;;:::i;52425:31::-;;;;;;;;;;;;;;;;27966:164;;;;;;;;;;-1:-1:-1;27966:164:0;;;;;:::i;:::-;;:::i;52616:149::-;;;;;;:::i;:::-;;:::i;971:201::-;;;;;;;;;;-1:-1:-1;971:201:0;;;;;:::i;:::-;;:::i;19558:639::-;19643:4;-1:-1:-1;;;;;;;;;19967:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;20044:25:0;;;19967:102;:179;;;-1:-1:-1;;;;;;;;;;20121:25:0;;;19967:179;19947:199;19558:639;-1:-1:-1;;19558:639:0:o;20460:100::-;20514:13;20547:5;20540:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20460:100;:::o;26943:218::-;27019:7;27044:16;27052:7;27044;:16::i;:::-;27039:64;;27069:34;;-1:-1:-1;;;27069:34:0;;;;;;;;;;;27039:64;-1:-1:-1;27123:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;27123:30:0;;26943:218::o;26384:400::-;26465:13;26481:16;26489:7;26481;:16::i;:::-;26465:32;-1:-1:-1;50241:10:0;-1:-1:-1;;;;;26514:28:0;;;26510:175;;26562:44;26579:5;50241:10;27966:164;:::i;26562:44::-;26557:128;;26634:35;;-1:-1:-1;;;26634:35:0;;;;;;;;;;;26557:128;26697:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;26697:35:0;-1:-1:-1;;;;;26697:35:0;;;;;;;;;26748:28;;26697:24;;26748:28;;;;;;;26454:330;26384:400;;:::o;30650:2817::-;30784:27;30814;30833:7;30814:18;:27::i;:::-;30784:57;;30899:4;-1:-1:-1;;;;;30858:45:0;30874:19;-1:-1:-1;;;;;30858:45:0;;30854:86;;30912:28;;-1:-1:-1;;;30912:28:0;;;;;;;;;;;30854:86;30954:27;29764:24;;;:15;:24;;;;;29986:26;;50241:10;29389:30;;;-1:-1:-1;;;;;29082:28:0;;29367:20;;;29364:56;31140:180;;31233:43;31250:4;50241:10;27966:164;:::i;31233:43::-;31228:92;;31285:35;;-1:-1:-1;;;31285:35:0;;;;;;;;;;;31228:92;-1:-1:-1;;;;;31337:16:0;;31333:52;;31362:23;;-1:-1:-1;;;31362:23:0;;;;;;;;;;;31333:52;31534:15;31531:160;;;31674:1;31653:19;31646:30;31531:160;-1:-1:-1;;;;;32071:24:0;;;;;;;:18;:24;;;;;;32069:26;;-1:-1:-1;;32069:26:0;;;32140:22;;;;;;;;;32138:24;;-1:-1:-1;32138:24:0;;;25242:11;25217:23;25213:41;25200:63;-1:-1:-1;;;25200:63:0;32433:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;32728:47:0;;:52;;32724:627;;32833:1;32823:11;;32801:19;32956:30;;;:17;:30;;;;;;:35;;32952:384;;33094:13;;33079:11;:28;33075:242;;33241:30;;;;:17;:30;;;;;:52;;;33075:242;32782:569;32724:627;33398:7;33394:2;-1:-1:-1;;;;;33379:27:0;33388:4;-1:-1:-1;;;;;33379:27:0;;;;;;;;;;;33417:42;30773:2694;;;30650:2817;;;:::o;53775:109::-;582:13;:11;:13::i;:::-;53825:51:::1;::::0;53833:10:::1;::::0;53854:21:::1;53825:51:::0;::::1;;;::::0;::::1;::::0;;;53854:21;53833:10;53825:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;53775:109::o:0;33563:185::-;33701:39;33718:4;33724:2;33728:7;33701:39;;;;;;;;;;;;:16;:39::i;:::-;33563:185;;;:::o;53372:138::-;582:13;:11;:13::i;:::-;53450:10:::1;:23:::0;;;;53484:13:::1;:18:::0;53372:138::o;21853:152::-;21925:7;21968:27;21987:7;21968:18;:27::i;17395:233::-;17467:7;-1:-1:-1;;;;;17491:19:0;;17487:60;;17519:28;;-1:-1:-1;;;17519:28:0;;;;;;;;;;;17487:60;-1:-1:-1;;;;;;17565:25:0;;;;;:18;:25;;;;;;11554:13;17565:55;;17395:233::o;858:103::-;582:13;:11;:13::i;:::-;923:30:::1;950:1;923:18;:30::i;:::-;858:103::o:0;20636:104::-;20692:13;20725:7;20718:14;;;;;:::i;53518:77::-;582:13;:11;:13::i;:::-;53580:3:::1;:7;53586:1:::0;53580:3;:7:::1;:::i;:::-;;53518:77:::0;:::o;27501:308::-;50241:10;-1:-1:-1;;;;;27600:31:0;;;27596:61;;27640:17;;-1:-1:-1;;;27640:17:0;;;;;;;;;;;27596:61;50241:10;27670:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;27670:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;27670:60:0;;;;;;;;;;27746:55;;540:41:1;;;27670:49:0;;50241:10;27746:55;;513:18:1;27746:55:0;;;;;;;27501:308;;:::o;34346:399::-;34513:31;34526:4;34532:2;34536:7;34513:12;:31::i;:::-;-1:-1:-1;;;;;34559:14:0;;;:19;34555:183;;34598:56;34629:4;34635:2;34639:7;34648:5;34598:30;:56::i;:::-;34593:145;;34682:40;;-1:-1:-1;;;34682:40:0;;;;;;;;;;;34593:145;34346:399;;;;:::o;53603:164::-;53668:13;53725:3;53730:18;53740:7;53730:9;:18::i;:::-;53708:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53694:65;;53603:164;;;:::o;27966:::-;-1:-1:-1;;;;;28087:25:0;;;28063:4;28087:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27966:164::o;52616:149::-;52711:9;;52701:6;52685:22;;:13;16485:12;;16272:7;16469:13;:28;;16211:323;52685:13;:22;;;;:::i;:::-;:35;;52677:56;;;;-1:-1:-1;;;52677:56:0;;10177:2:1;52677:56:0;;;10159:21:1;10216:1;10196:18;;;10189:29;-1:-1:-1;;;10234:18:1;;;10227:38;10282:18;;52677:56:0;;;;;;;;;52744:13;52750:6;52744:5;:13::i;971:201::-;582:13;:11;:13::i;:::-;-1:-1:-1;;;;;1060:22:0;::::1;1052:73;;;::::0;-1:-1:-1;;;1052:73:0;;10513:2:1;1052:73:0::1;::::0;::::1;10495:21:1::0;10552:2;10532:18;;;10525:30;10591:34;10571:18;;;10564:62;-1:-1:-1;;;10642:18:1;;;10635:36;10688:19;;1052:73:0::1;10311:402:1::0;1052:73:0::1;1136:28;1155:8;1136:18;:28::i;28388:282::-:0;28453:4;28543:13;;28533:7;:23;28490:153;;;;-1:-1:-1;;28594:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;28594:44:0;:49;;28388:282::o;23008:1275::-;23075:7;23110;23212:13;;23205:4;:20;23201:1015;;;23250:14;23267:23;;;:17;:23;;;;;;;-1:-1:-1;;;23356:24:0;;:29;;23352:845;;24021:113;24028:6;24038:1;24028:11;24021:113;;-1:-1:-1;;;24099:6:0;24081:25;;;;:17;:25;;;;;;24021:113;;;24167:6;23008:1275;-1:-1:-1;;;23008:1275:0:o;23352:845::-;23227:989;23201:1015;24244:31;;-1:-1:-1;;;24244:31:0;;;;;;;;;;;718:132;696:6;;-1:-1:-1;;;;;696:6:0;50241:10;782:23;774:68;;;;-1:-1:-1;;;774:68:0;;10920:2:1;774:68:0;;;10902:21:1;;;10939:18;;;10932:30;10998:34;10978:18;;;10971:62;11050:18;;774:68:0;10718:356:1;1180:191:0;1273:6;;;-1:-1:-1;;;;;1290:17:0;;;-1:-1:-1;;;;;;1290:17:0;;;;;;;1323:40;;1273:6;;;1290:17;1273:6;;1323:40;;1254:16;;1323:40;1243:128;1180:191;:::o;36829:716::-;37013:88;;-1:-1:-1;;;37013:88:0;;36992:4;;-1:-1:-1;;;;;37013:45:0;;;;;:88;;50241:10;;37080:4;;37086:7;;37095:5;;37013:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37013:88:0;;;;;;;;-1:-1:-1;;37013:88:0;;;;;;;;;;;;:::i;:::-;;;37009:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37296:6;:13;37313:1;37296:18;37292:235;;37342:40;;-1:-1:-1;;;37342:40:0;;;;;;;;;;;37292:235;37485:6;37479:13;37470:6;37466:2;37462:15;37455:38;37009:529;-1:-1:-1;;;;;;37172:64:0;-1:-1:-1;;;37172:64:0;;-1:-1:-1;37009:529:0;36829:716;;;;;;:::o;50361:2002::-;50838:4;50832:11;;50845:3;50828:21;;50923:17;;;;51619:11;;;51498:5;51785:2;51799;51789:13;;51781:22;51619:11;51768:36;51840:2;51830:13;;51390:731;51859:4;51390:731;;;52050:1;52045:3;52041:11;52034:18;;52101:2;52095:4;52091:13;52087:2;52083:22;52078:3;52070:36;51954:2;51944:13;;51390:731;;;-1:-1:-1;52151:13:0;;;-1:-1:-1;;52266:12:0;;;52326:19;;;52266:12;50361:2002;-1:-1:-1;50361:2002:0:o;52773:467::-;52838:9;:14;52863:370;;;;52908:10;;52898:6;:20;;;;52890:29;;;;;;52968:13;;52958:6;52942:22;;:13;16485:12;;16272:7;16469:13;:28;;16211:323;52942:13;:22;;;;:::i;:::-;:39;;52934:48;;;;;;696:6;;-1:-1:-1;;;;;696:6:0;53005:10;:21;;:59;;;53054:10;;53030:21;53040:10;53030:9;:21::i;:::-;:34;53005:59;52997:68;;;;;;53080:29;53090:10;53102:6;53080:29;;:9;:29::i;52863:370::-;53170:6;53163:13;;:4;;:13;;;;:::i;:::-;53150:9;:26;;53142:35;;;;;;53192:29;53202:10;53214:6;53192:29;;43986:112;44063:27;44073:2;44077:8;44063:27;;;;;;;;;;;;43344:19;43350:2;43354:8;43344:5;:19::i;:::-;-1:-1:-1;;;;;43405:14:0;;;:19;43401:483;;43445:11;43459:13;43507:14;;;43540:233;43571:62;43610:1;43614:2;43618:7;;;;;;43627:5;43571:30;:62::i;:::-;43566:167;;43669:40;;-1:-1:-1;;;43669:40:0;;;;;;;;;;;43566:167;43768:3;43760:5;:11;43540:233;;43855:3;43838:13;;:20;43834:34;;43860:8;;;43834:34;43426:458;;43213:689;;;:::o;38007:2454::-;38080:20;38103:13;;;38131;;;38127:44;;38153:18;;-1:-1:-1;;;38153:18:0;;;;;;;;;;;38127:44;-1:-1:-1;;;;;38659:22:0;;;;;;:18;:22;;;;11692:2;38659:22;;;:71;;38697:32;38685:45;;38659:71;;;38973:31;;;:17;:31;;;;;-1:-1:-1;25673:15:0;;25647:24;25643:46;25242:11;25217:23;25213:41;25210:52;25200:63;;38973:173;;39208:23;;;;38973:31;;38659:22;;39707:25;38659:22;;39560:335;39975:1;39961:12;39957:20;39915:346;40016:3;40007:7;40004:16;39915:346;;40234:7;40224:8;40221:1;40194:25;40191:1;40188;40183:59;40069:1;40056:15;39915:346;;;39919:77;40294:8;40306:1;40294:13;40290:45;;40316:19;;-1:-1:-1;;;40316:19:0;;;;;;;;;;;40290:45;40352:13;:19;-1:-1:-1;33563:185:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:250::-;859:1;869:113;883:6;880:1;877:13;869:113;;;959:11;;;953:18;940:11;;;933:39;905:2;898:10;869:113;;;-1:-1:-1;;1016:1:1;998:16;;991:27;774:250::o;1029:271::-;1071:3;1109:5;1103:12;1136:6;1131:3;1124:19;1152:76;1221:6;1214:4;1209:3;1205:14;1198:4;1191:5;1187:16;1152:76;:::i;:::-;1282:2;1261:15;-1:-1:-1;;1257:29:1;1248:39;;;;1289:4;1244:50;;1029:271;-1:-1:-1;;1029:271:1:o;1305:220::-;1454:2;1443:9;1436:21;1417:4;1474:45;1515:2;1504:9;1500:18;1492:6;1474:45;:::i;1530:180::-;1589:6;1642:2;1630:9;1621:7;1617:23;1613:32;1610:52;;;1658:1;1655;1648:12;1610:52;-1:-1:-1;1681:23:1;;1530:180;-1:-1:-1;1530:180:1:o;1923:173::-;1991:20;;-1:-1:-1;;;;;2040:31:1;;2030:42;;2020:70;;2086:1;2083;2076:12;2020:70;1923:173;;;:::o;2101:254::-;2169:6;2177;2230:2;2218:9;2209:7;2205:23;2201:32;2198:52;;;2246:1;2243;2236:12;2198:52;2269:29;2288:9;2269:29;:::i;:::-;2259:39;2345:2;2330:18;;;;2317:32;;-1:-1:-1;;;2101:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:248::-;2761:6;2769;2822:2;2810:9;2801:7;2797:23;2793:32;2790:52;;;2838:1;2835;2828:12;2790:52;-1:-1:-1;;2861:23:1;;;2931:2;2916:18;;;2903:32;;-1:-1:-1;2693:248:1:o;2946:186::-;3005:6;3058:2;3046:9;3037:7;3033:23;3029:32;3026:52;;;3074:1;3071;3064:12;3026:52;3097:29;3116:9;3097:29;:::i;3137:127::-;3198:10;3193:3;3189:20;3186:1;3179:31;3229:4;3226:1;3219:15;3253:4;3250:1;3243:15;3269:632;3334:5;3364:18;3405:2;3397:6;3394:14;3391:40;;;3411:18;;:::i;:::-;3486:2;3480:9;3454:2;3540:15;;-1:-1:-1;;3536:24:1;;;3562:2;3532:33;3528:42;3516:55;;;3586:18;;;3606:22;;;3583:46;3580:72;;;3632:18;;:::i;:::-;3672:10;3668:2;3661:22;3701:6;3692:15;;3731:6;3723;3716:22;3771:3;3762:6;3757:3;3753:16;3750:25;3747:45;;;3788:1;3785;3778:12;3747:45;3838:6;3833:3;3826:4;3818:6;3814:17;3801:44;3893:1;3886:4;3877:6;3869;3865:19;3861:30;3854:41;;;;3269:632;;;;;:::o;3906:451::-;3975:6;4028:2;4016:9;4007:7;4003:23;3999:32;3996:52;;;4044:1;4041;4034:12;3996:52;4084:9;4071:23;4117:18;4109:6;4106:30;4103:50;;;4149:1;4146;4139:12;4103:50;4172:22;;4225:4;4217:13;;4213:27;-1:-1:-1;4203:55:1;;4254:1;4251;4244:12;4203:55;4277:74;4343:7;4338:2;4325:16;4320:2;4316;4312:11;4277:74;:::i;4362:347::-;4427:6;4435;4488:2;4476:9;4467:7;4463:23;4459:32;4456:52;;;4504:1;4501;4494:12;4456:52;4527:29;4546:9;4527:29;:::i;:::-;4517:39;;4606:2;4595:9;4591:18;4578:32;4653:5;4646:13;4639:21;4632:5;4629:32;4619:60;;4675:1;4672;4665:12;4619:60;4698:5;4688:15;;;4362:347;;;;;:::o;4714:667::-;4809:6;4817;4825;4833;4886:3;4874:9;4865:7;4861:23;4857:33;4854:53;;;4903:1;4900;4893:12;4854:53;4926:29;4945:9;4926:29;:::i;:::-;4916:39;;4974:38;5008:2;4997:9;4993:18;4974:38;:::i;:::-;4964:48;;5059:2;5048:9;5044:18;5031:32;5021:42;;5114:2;5103:9;5099:18;5086:32;5141:18;5133:6;5130:30;5127:50;;;5173:1;5170;5163:12;5127:50;5196:22;;5249:4;5241:13;;5237:27;-1:-1:-1;5227:55:1;;5278:1;5275;5268:12;5227:55;5301:74;5367:7;5362:2;5349:16;5344:2;5340;5336:11;5301:74;:::i;:::-;5291:84;;;4714:667;;;;;;;:::o;5386:260::-;5454:6;5462;5515:2;5503:9;5494:7;5490:23;5486:32;5483:52;;;5531:1;5528;5521:12;5483:52;5554:29;5573:9;5554:29;:::i;:::-;5544:39;;5602:38;5636:2;5625:9;5621:18;5602:38;:::i;:::-;5592:48;;5386:260;;;;;:::o;5651:276::-;5709:6;5762:2;5750:9;5741:7;5737:23;5733:32;5730:52;;;5778:1;5775;5768:12;5730:52;5817:9;5804:23;5867:10;5860:5;5856:22;5849:5;5846:33;5836:61;;5893:1;5890;5883:12;5932:380;6011:1;6007:12;;;;6054;;;6075:61;;6129:4;6121:6;6117:17;6107:27;;6075:61;6182:2;6174:6;6171:14;6151:18;6148:38;6145:161;;6228:10;6223:3;6219:20;6216:1;6209:31;6263:4;6260:1;6253:15;6291:4;6288:1;6281:15;6145:161;;5932:380;;;:::o;6443:545::-;6545:2;6540:3;6537:11;6534:448;;;6581:1;6606:5;6602:2;6595:17;6651:4;6647:2;6637:19;6721:2;6709:10;6705:19;6702:1;6698:27;6692:4;6688:38;6757:4;6745:10;6742:20;6739:47;;;-1:-1:-1;6780:4:1;6739:47;6835:2;6830:3;6826:12;6823:1;6819:20;6813:4;6809:31;6799:41;;6890:82;6908:2;6901:5;6898:13;6890:82;;;6953:17;;;6934:1;6923:13;6890:82;;7164:1352;7290:3;7284:10;7317:18;7309:6;7306:30;7303:56;;;7339:18;;:::i;:::-;7368:97;7458:6;7418:38;7450:4;7444:11;7418:38;:::i;:::-;7412:4;7368:97;:::i;:::-;7520:4;;7584:2;7573:14;;7601:1;7596:663;;;;8303:1;8320:6;8317:89;;;-1:-1:-1;8372:19:1;;;8366:26;8317:89;-1:-1:-1;;7121:1:1;7117:11;;;7113:24;7109:29;7099:40;7145:1;7141:11;;;7096:57;8419:81;;7566:944;;7596:663;6390:1;6383:14;;;6427:4;6414:18;;-1:-1:-1;;7632:20:1;;;7750:236;7764:7;7761:1;7758:14;7750:236;;;7853:19;;;7847:26;7832:42;;7945:27;;;;7913:1;7901:14;;;;7780:19;;7750:236;;;7754:3;8014:6;8005:7;8002:19;7999:201;;;8075:19;;;8069:26;-1:-1:-1;;8158:1:1;8154:14;;;8170:3;8150:24;8146:37;8142:42;8127:58;8112:74;;7999:201;-1:-1:-1;;;;;8246:1:1;8230:14;;;8226:22;8213:36;;-1:-1:-1;7164:1352:1:o;8521:1187::-;8798:3;8827:1;8860:6;8854:13;8890:36;8916:9;8890:36;:::i;:::-;8945:1;8962:18;;;8989:133;;;;9136:1;9131:356;;;;8955:532;;8989:133;-1:-1:-1;;9022:24:1;;9010:37;;9095:14;;9088:22;9076:35;;9067:45;;;-1:-1:-1;8989:133:1;;9131:356;9162:6;9159:1;9152:17;9192:4;9237:2;9234:1;9224:16;9262:1;9276:165;9290:6;9287:1;9284:13;9276:165;;;9368:14;;9355:11;;;9348:35;9411:16;;;;9305:10;;9276:165;;;9280:3;;;9470:6;9465:3;9461:16;9454:23;;8955:532;;;;;9518:6;9512:13;9534:68;9593:8;9588:3;9581:4;9573:6;9569:17;9534:68;:::i;:::-;-1:-1:-1;;;9624:18:1;;9651:22;;;9700:1;9689:13;;8521:1187;-1:-1:-1;;;;8521:1187:1:o;9713:127::-;9774:10;9769:3;9765:20;9762:1;9755:31;9805:4;9802:1;9795:15;9829:4;9826:1;9819:15;9845:125;9910:9;;;9931:10;;;9928:36;;;9944:18;;:::i;11079:489::-;-1:-1:-1;;;;;11348:15:1;;;11330:34;;11400:15;;11395:2;11380:18;;11373:43;11447:2;11432:18;;11425:34;;;11495:3;11490:2;11475:18;;11468:31;;;11273:4;;11516:46;;11542:19;;11534:6;11516:46;:::i;:::-;11508:54;11079:489;-1:-1:-1;;;;;;11079:489:1:o;11573:249::-;11642:6;11695:2;11683:9;11674:7;11670:23;11666:32;11663:52;;;11711:1;11708;11701:12;11663:52;11743:9;11737:16;11762:30;11786:5;11762:30;:::i;11827:168::-;11900:9;;;11931;;11948:15;;;11942:22;;11928:37;11918:71;;11969:18;;:::i

Swarm Source

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