ETH Price: $3,092.48 (-0.34%)
Gas: 2 Gwei

Token

NOT_AI (NOT_AI)
 

Overview

Max Total Supply

550 NOT_AI

Holders

494

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 NOT_AI
0xc2bf53639861a84c186c5440c0579d2bad435d81
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:
NOT_AI

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-17
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.16;


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

contract NOT_AI is IERC721A { 

    address private _owner;
    modifier onlyOwner() { 
        require(_owner==msg.sender, "No!"); 
        _; 
    }

    bool public saleIsActive = true;

    uint256 public constant MAX_SUPPLY = 550;
    uint256 public constant MAX_FREE_PER_WALLET = 1;
    uint256 public constant COST = 0.01 ether;

    string private constant _name = "NOT_AI";
    string private constant _symbol = "NOT_AI";
    string private _contractURI = "";
    string private _baseURI = "";

    constructor() {
        _owner = msg.sender;
    }

    function freeMint() external{
        uint256 amount = MAX_FREE_PER_WALLET;
        address _caller = _msgSenderERC721A();

        require(saleIsActive, "NotActive");
        require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
        require(amount + _numberMinted(msg.sender) <= MAX_FREE_PER_WALLET, "AccLimit");

        _safeMint(_caller, amount);
    }

    function mint() external payable{
        uint256 amount = MAX_FREE_PER_WALLET;
        address _caller = _msgSenderERC721A();

        require(saleIsActive, "NotActive");
        require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
        require(amount * COST >= msg.value, "AccLimit");

        _safeMint(_caller, amount);
    }


    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

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

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


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

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

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

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


    function setSale(bool _saleIsActive) external onlyOwner{
        saleIsActive = _saleIsActive;
    }

    function setBaseURI(string memory _new) external onlyOwner{
        _baseURI = _new;
    }

    function setContractURI(string memory _new) external onlyOwner{
        _contractURI = _new;
    }
   

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

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

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

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


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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

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

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

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

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

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

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

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

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

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

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

    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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : "";
    }

    function contractURI() public view returns (string memory) {
        return string(abi.encodePacked("ipfs://", _contractURI));
    }

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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


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

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

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

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

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


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

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

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

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

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

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

        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        //X if (_addressToUint256(to) == 0) revert TransferToZeroAddress();


        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

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

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

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




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

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

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

         // Update the free memory pointer to allocate.
         mstore(0x40, ptr)

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

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

     let length := sub(end, ptr)
         // Move the pointer 32 bytes leftwards to make room for the length.
         ptr := sub(ptr, 32)
         // Store the length.
         mstore(ptr, length)
        }
    }

    

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_new","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_new","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_saleIsActive","type":"bool"}],"name":"setSale","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000805460ff60a01b1916600160a01b17815560a060405260809081526001906200002b90826200011b565b506040805160208101909152600081526002906200004a90826200011b565b5060006003553480156200005d57600080fd5b50600080546001600160a01b03191633179055620001e7565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620000a157607f821691505b602082108103620000c257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200011657600081815260208120601f850160051c81016020861015620000f15750805b601f850160051c820191505b818110156200011257828155600101620000fd565b5050505b505050565b81516001600160401b0381111562000137576200013762000076565b6200014f816200014884546200008c565b84620000c8565b602080601f8311600181146200018757600084156200016e5750858301515b600019600386901b1c1916600185901b17855562000112565b600085815260208120601f198616915b82811015620001b85788860151825594840194600190910190840162000197565b5085821015620001d75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6114a380620001f76000396000f3fe6080604052600436106101665760003560e01c80635b70ea9f116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146103e9578063e8a3d48514610409578063e985e9c51461041e578063eb8d24441461043e57600080fd5b8063a22cb4651461038e578063b88d4fde146103ae578063bf8fbbd2146103ce57600080fd5b80635b70ea9f146103045780636352211e1461031957806370a0823114610339578063938e3d7b1461035957806395d89b41146101a057806398710d1e1461037957600080fd5b80631d2e5a3a116101235780631d2e5a3a1461025957806323b872dd1461027957806332cb6b0c146102995780633ccfd60b146102af57806342842e0e146102c457806355f804b3146102e457600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101d8578063095ea7b3146102105780631249c58b1461023257806318160ddd1461023a575b600080fd5b34801561017757600080fd5b5061018b610186366004610ec0565b61045f565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506040805180820190915260068152654e4f545f414960d01b60208201525b6040516101979190610f0e565b3480156101e457600080fd5b506101f86101f3366004610f41565b6104b1565b6040516001600160a01b039091168152602001610197565b34801561021c57600080fd5b5061023061022b366004610f76565b6104f7565b005b6102306105b5565b34801561024657600080fd5b506003545b604051908152602001610197565b34801561026557600080fd5b50610230610274366004610fb0565b6106ac565b34801561028557600080fd5b50610230610294366004610fcb565b6106f4565b3480156102a557600080fd5b5061024b61022681565b3480156102bb57600080fd5b50610230610704565b3480156102d057600080fd5b506102306102df366004610fcb565b61075d565b3480156102f057600080fd5b506102306102ff366004611093565b610778565b34801561031057600080fd5b506102306107ae565b34801561032557600080fd5b506101f8610334366004610f41565b6108aa565b34801561034557600080fd5b5061024b6103543660046110e4565b6108b5565b34801561036557600080fd5b50610230610374366004611093565b6108fe565b34801561038557600080fd5b5061024b600181565b34801561039a57600080fd5b506102306103a93660046110ff565b610934565b3480156103ba57600080fd5b506102306103c9366004611132565b6109c9565b3480156103da57600080fd5b5061024b662386f26fc1000081565b3480156103f557600080fd5b506101cb610404366004610f41565b6109da565b34801561041557600080fd5b506101cb610ae3565b34801561042a57600080fd5b5061018b6104393660046111ae565b610b0b565b34801561044a57600080fd5b5060005461018b90600160a01b900460ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061049057506380ac58cd60e01b6001600160e01b03198316145b806104ab5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60006104be826003541190565b6104db576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061050282610b39565b9050806001600160a01b0316836001600160a01b03160361052257600080fd5b336001600160a01b038216146105595761053c8133610b0b565b610559576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001903390600160a01b900460ff166106045760405162461bcd60e51b81526020600482015260096024820152684e6f7441637469766560b81b60448201526064015b60405180910390fd5b6102268261061160035490565b61061b91906111ee565b11156106535760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064016105fb565b34610665662386f26fc1000084611201565b101561069e5760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b60448201526064016105fb565b6106a88183610ba0565b5050565b6000546001600160a01b031633146106d65760405162461bcd60e51b81526004016105fb90611220565b60008054911515600160a01b0260ff60a01b19909216919091179055565b6106ff838383610bba565b505050565b6000546001600160a01b0316331461072e5760405162461bcd60e51b81526004016105fb90611220565b6040514790339082156108fc029083906000818181858888f193505050501580156106a8573d6000803e3d6000fd5b6106ff838383604051806020016040528060008152506109c9565b6000546001600160a01b031633146107a25760405162461bcd60e51b81526004016105fb90611220565b60026106a882826112bd565b6000546001903390600160a01b900460ff166107f85760405162461bcd60e51b81526020600482015260096024820152684e6f7441637469766560b81b60448201526064016105fb565b6102268261080560035490565b61080f91906111ee565b11156108475760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064016105fb565b3360009081526005602052604090819020546001911c67ffffffffffffffff1661087190846111ee565b111561069e5760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b60448201526064016105fb565b60006104ab82610b39565b6000816000036108d8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146109285760405162461bcd60e51b81526004016105fb90611220565b60016106a882826112bd565b336001600160a01b0383160361095d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109d4848484610bba565b50505050565b60606109e7826003541190565b610a0457604051630a14c4b560e41b815260040160405180910390fd5b600060028054610a139061123d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3f9061123d565b8015610a8c5780601f10610a6157610100808354040283529160200191610a8c565b820191906000526020600020905b815481529060010190602001808311610a6f57829003601f168201915b505050505090508051600003610ab15760405180602001604052806000815250610adc565b80610abb84610d53565b604051602001610acc92919061137d565b6040516020818303038152906040525b9392505050565b60606001604051602001610af791906113de565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600081600354811015610b875760008181526004602052604081205490600160e01b82169003610b85575b80600003610adc575060001901600081815260046020526040902054610b64565b505b604051636f96cda160e11b815260040160405180910390fd5b6106a8828260405180602001604052806000815250610da2565b6000610bc582610b39565b9050836001600160a01b0316816001600160a01b031614610bf85760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610c285750610c288633610b0b565b80610c3b57506001600160a01b03821633145b905080610c5b57604051632ce44b5f60e11b815260040160405180910390fd5b8115610c7e57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610d0957600184016000818152600460205260408120549003610d07576003548114610d075760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610d9057600183039250600a81066030018353600a9004610d72565b50819003601f19909101908152919050565b6003546000839003610dc75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15610e6c575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610e1a578260035414610e6757600080fd5b610eb1565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610e6d575b506003556109d4600085838684565b600060208284031215610ed257600080fd5b81356001600160e01b031981168114610adc57600080fd5b60005b83811015610f05578181015183820152602001610eed565b50506000910152565b6020815260008251806020840152610f2d816040850160208701610eea565b601f01601f19169190910160400192915050565b600060208284031215610f5357600080fd5b5035919050565b80356001600160a01b0381168114610f7157600080fd5b919050565b60008060408385031215610f8957600080fd5b610f9283610f5a565b946020939093013593505050565b80358015158114610f7157600080fd5b600060208284031215610fc257600080fd5b610adc82610fa0565b600080600060608486031215610fe057600080fd5b610fe984610f5a565b9250610ff760208501610f5a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561103857611038611007565b604051601f8501601f19908116603f0116810190828211818310171561106057611060611007565b8160405280935085815286868601111561107957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156110a557600080fd5b813567ffffffffffffffff8111156110bc57600080fd5b8201601f810184136110cd57600080fd5b6110dc8482356020840161101d565b949350505050565b6000602082840312156110f657600080fd5b610adc82610f5a565b6000806040838503121561111257600080fd5b61111b83610f5a565b915061112960208401610fa0565b90509250929050565b6000806000806080858703121561114857600080fd5b61115185610f5a565b935061115f60208601610f5a565b925060408501359150606085013567ffffffffffffffff81111561118257600080fd5b8501601f8101871361119357600080fd5b6111a28782356020840161101d565b91505092959194509250565b600080604083850312156111c157600080fd5b6111ca83610f5a565b915061112960208401610f5a565b634e487b7160e01b600052601160045260246000fd5b808201808211156104ab576104ab6111d8565b600081600019048311821515161561121b5761121b6111d8565b500290565b6020808252600390820152624e6f2160e81b604082015260600190565b600181811c9082168061125157607f821691505b60208210810361127157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156106ff57600081815260208120601f850160051c8101602086101561129e5750805b601f850160051c820191505b81811015610d4b578281556001016112aa565b815167ffffffffffffffff8111156112d7576112d7611007565b6112eb816112e5845461123d565b84611277565b602080601f83116001811461132057600084156113085750858301515b600019600386901b1c1916600185901b178555610d4b565b600085815260208120601f198616915b8281101561134f57888601518255948401946001909101908401611330565b508582101561136d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b66697066733a2f2f60c81b81526000835161139f816007850160208801610eea565b602f60f81b60079184019182015283516113c0816008840160208801610eea565b64173539b7b760d91b60089290910191820152600d01949350505050565b66697066733a2f2f60c81b815260006007600084546113fc8161123d565b60018281168015611414576001811461142d57611460565b60ff198416888701528215158302880186019450611460565b8860005260208060002060005b858110156114555781548b82018a015290840190820161143a565b505050858389010194505b509297965050505050505056fea264697066735822122002bedcdee4dfb50b282accdc8512160bd6e7ba07b9abcbfeacbe5174243e96b064736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101665760003560e01c80635b70ea9f116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146103e9578063e8a3d48514610409578063e985e9c51461041e578063eb8d24441461043e57600080fd5b8063a22cb4651461038e578063b88d4fde146103ae578063bf8fbbd2146103ce57600080fd5b80635b70ea9f146103045780636352211e1461031957806370a0823114610339578063938e3d7b1461035957806395d89b41146101a057806398710d1e1461037957600080fd5b80631d2e5a3a116101235780631d2e5a3a1461025957806323b872dd1461027957806332cb6b0c146102995780633ccfd60b146102af57806342842e0e146102c457806355f804b3146102e457600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101d8578063095ea7b3146102105780631249c58b1461023257806318160ddd1461023a575b600080fd5b34801561017757600080fd5b5061018b610186366004610ec0565b61045f565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506040805180820190915260068152654e4f545f414960d01b60208201525b6040516101979190610f0e565b3480156101e457600080fd5b506101f86101f3366004610f41565b6104b1565b6040516001600160a01b039091168152602001610197565b34801561021c57600080fd5b5061023061022b366004610f76565b6104f7565b005b6102306105b5565b34801561024657600080fd5b506003545b604051908152602001610197565b34801561026557600080fd5b50610230610274366004610fb0565b6106ac565b34801561028557600080fd5b50610230610294366004610fcb565b6106f4565b3480156102a557600080fd5b5061024b61022681565b3480156102bb57600080fd5b50610230610704565b3480156102d057600080fd5b506102306102df366004610fcb565b61075d565b3480156102f057600080fd5b506102306102ff366004611093565b610778565b34801561031057600080fd5b506102306107ae565b34801561032557600080fd5b506101f8610334366004610f41565b6108aa565b34801561034557600080fd5b5061024b6103543660046110e4565b6108b5565b34801561036557600080fd5b50610230610374366004611093565b6108fe565b34801561038557600080fd5b5061024b600181565b34801561039a57600080fd5b506102306103a93660046110ff565b610934565b3480156103ba57600080fd5b506102306103c9366004611132565b6109c9565b3480156103da57600080fd5b5061024b662386f26fc1000081565b3480156103f557600080fd5b506101cb610404366004610f41565b6109da565b34801561041557600080fd5b506101cb610ae3565b34801561042a57600080fd5b5061018b6104393660046111ae565b610b0b565b34801561044a57600080fd5b5060005461018b90600160a01b900460ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061049057506380ac58cd60e01b6001600160e01b03198316145b806104ab5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60006104be826003541190565b6104db576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061050282610b39565b9050806001600160a01b0316836001600160a01b03160361052257600080fd5b336001600160a01b038216146105595761053c8133610b0b565b610559576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001903390600160a01b900460ff166106045760405162461bcd60e51b81526020600482015260096024820152684e6f7441637469766560b81b60448201526064015b60405180910390fd5b6102268261061160035490565b61061b91906111ee565b11156106535760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064016105fb565b34610665662386f26fc1000084611201565b101561069e5760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b60448201526064016105fb565b6106a88183610ba0565b5050565b6000546001600160a01b031633146106d65760405162461bcd60e51b81526004016105fb90611220565b60008054911515600160a01b0260ff60a01b19909216919091179055565b6106ff838383610bba565b505050565b6000546001600160a01b0316331461072e5760405162461bcd60e51b81526004016105fb90611220565b6040514790339082156108fc029083906000818181858888f193505050501580156106a8573d6000803e3d6000fd5b6106ff838383604051806020016040528060008152506109c9565b6000546001600160a01b031633146107a25760405162461bcd60e51b81526004016105fb90611220565b60026106a882826112bd565b6000546001903390600160a01b900460ff166107f85760405162461bcd60e51b81526020600482015260096024820152684e6f7441637469766560b81b60448201526064016105fb565b6102268261080560035490565b61080f91906111ee565b11156108475760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064016105fb565b3360009081526005602052604090819020546001911c67ffffffffffffffff1661087190846111ee565b111561069e5760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b60448201526064016105fb565b60006104ab82610b39565b6000816000036108d8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146109285760405162461bcd60e51b81526004016105fb90611220565b60016106a882826112bd565b336001600160a01b0383160361095d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109d4848484610bba565b50505050565b60606109e7826003541190565b610a0457604051630a14c4b560e41b815260040160405180910390fd5b600060028054610a139061123d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3f9061123d565b8015610a8c5780601f10610a6157610100808354040283529160200191610a8c565b820191906000526020600020905b815481529060010190602001808311610a6f57829003601f168201915b505050505090508051600003610ab15760405180602001604052806000815250610adc565b80610abb84610d53565b604051602001610acc92919061137d565b6040516020818303038152906040525b9392505050565b60606001604051602001610af791906113de565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600081600354811015610b875760008181526004602052604081205490600160e01b82169003610b85575b80600003610adc575060001901600081815260046020526040902054610b64565b505b604051636f96cda160e11b815260040160405180910390fd5b6106a8828260405180602001604052806000815250610da2565b6000610bc582610b39565b9050836001600160a01b0316816001600160a01b031614610bf85760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610c285750610c288633610b0b565b80610c3b57506001600160a01b03821633145b905080610c5b57604051632ce44b5f60e11b815260040160405180910390fd5b8115610c7e57600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610d0957600184016000818152600460205260408120549003610d07576003548114610d075760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610d9057600183039250600a81066030018353600a9004610d72565b50819003601f19909101908152919050565b6003546000839003610dc75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15610e6c575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610e1a578260035414610e6757600080fd5b610eb1565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610e6d575b506003556109d4600085838684565b600060208284031215610ed257600080fd5b81356001600160e01b031981168114610adc57600080fd5b60005b83811015610f05578181015183820152602001610eed565b50506000910152565b6020815260008251806020840152610f2d816040850160208701610eea565b601f01601f19169190910160400192915050565b600060208284031215610f5357600080fd5b5035919050565b80356001600160a01b0381168114610f7157600080fd5b919050565b60008060408385031215610f8957600080fd5b610f9283610f5a565b946020939093013593505050565b80358015158114610f7157600080fd5b600060208284031215610fc257600080fd5b610adc82610fa0565b600080600060608486031215610fe057600080fd5b610fe984610f5a565b9250610ff760208501610f5a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561103857611038611007565b604051601f8501601f19908116603f0116810190828211818310171561106057611060611007565b8160405280935085815286868601111561107957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156110a557600080fd5b813567ffffffffffffffff8111156110bc57600080fd5b8201601f810184136110cd57600080fd5b6110dc8482356020840161101d565b949350505050565b6000602082840312156110f657600080fd5b610adc82610f5a565b6000806040838503121561111257600080fd5b61111b83610f5a565b915061112960208401610fa0565b90509250929050565b6000806000806080858703121561114857600080fd5b61115185610f5a565b935061115f60208601610f5a565b925060408501359150606085013567ffffffffffffffff81111561118257600080fd5b8501601f8101871361119357600080fd5b6111a28782356020840161101d565b91505092959194509250565b600080604083850312156111c157600080fd5b6111ca83610f5a565b915061112960208401610f5a565b634e487b7160e01b600052601160045260246000fd5b808201808211156104ab576104ab6111d8565b600081600019048311821515161561121b5761121b6111d8565b500290565b6020808252600390820152624e6f2160e81b604082015260600190565b600181811c9082168061125157607f821691505b60208210810361127157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156106ff57600081815260208120601f850160051c8101602086101561129e5750805b601f850160051c820191505b81811015610d4b578281556001016112aa565b815167ffffffffffffffff8111156112d7576112d7611007565b6112eb816112e5845461123d565b84611277565b602080601f83116001811461132057600084156113085750858301515b600019600386901b1c1916600185901b178555610d4b565b600085815260208120601f198616915b8281101561134f57888601518255948401946001909101908401611330565b508582101561136d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b66697066733a2f2f60c81b81526000835161139f816007850160208801610eea565b602f60f81b60079184019182015283516113c0816008840160208801610eea565b64173539b7b760d91b60089290910191820152600d01949350505050565b66697066733a2f2f60c81b815260006007600084546113fc8161123d565b60018281168015611414576001811461142d57611460565b60ff198416888701528215158302880186019450611460565b8860005260208060002060005b858110156114555781548b82018a015290840190820161143a565b505050858389010194505b509297965050505050505056fea264697066735822122002bedcdee4dfb50b282accdc8512160bd6e7ba07b9abcbfeacbe5174243e96b064736f6c63430008100033

Deployed Bytecode Sourcemap

9018:24494:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14286:615;;;;;;;;;;-1:-1:-1;14286:615:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;14286:615:0;;;;;;;;19039:100;;;;;;;;;;-1:-1:-1;19126:5:0;;;;;;;;;;;;-1:-1:-1;;;19126:5:0;;;;19039:100;;;;;;;:::i;20842:204::-;;;;;;;;;;-1:-1:-1;20842:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1502:32:1;;;1484:51;;1472:2;1457:18;20842:204:0;1338:203:1;20325:451:0;;;;;;;;;;-1:-1:-1;20325:451:0;;;;;:::i;:::-;;:::i;:::-;;9986:346;;;:::i;13529:300::-;;;;;;;;;;-1:-1:-1;13779:13:0;;13529:300;;;2129:25:1;;;2117:2;2102:18;13529:300:0;1983:177:1;12594:102:0;;;;;;;;;;-1:-1:-1;12594:102:0;;;;;:::i;:::-;;:::i;21728:190::-;;;;;;;;;;-1:-1:-1;21728:190:0;;;;;:::i;:::-;;:::i;9222:40::-;;;;;;;;;;;;9259:3;9222:40;;33364:145;;;;;;;;;;;;;:::i;21989:205::-;;;;;;;;;;-1:-1:-1;21989:205:0;;;;;:::i;:::-;;:::i;12704:92::-;;;;;;;;;;-1:-1:-1;12704:92:0;;;;;:::i;:::-;;:::i;9605:373::-;;;;;;;;;;;;;:::i;18828:144::-;;;;;;;;;;-1:-1:-1;18828:144:0;;;;;:::i;:::-;;:::i;14965:234::-;;;;;;;;;;-1:-1:-1;14965:234:0;;;;;:::i;:::-;;:::i;12804:100::-;;;;;;;;;;-1:-1:-1;12804:100:0;;;;;:::i;:::-;;:::i;9269:47::-;;;;;;;;;;;;9315:1;9269:47;;21118:308;;;;;;;;;;-1:-1:-1;21118:308:0;;;;;:::i;:::-;;:::i;22265:227::-;;;;;;;;;;-1:-1:-1;22265:227:0;;;;;:::i;:::-;;:::i;9323:41::-;;;;;;;;;;;;9354:10;9323:41;;19320:339;;;;;;;;;;-1:-1:-1;19320:339:0;;;;;:::i;:::-;;:::i;19667:134::-;;;;;;;;;;;;;:::i;21497:164::-;;;;;;;;;;-1:-1:-1;21497:164:0;;;;;:::i;:::-;;:::i;9182:31::-;;;;;;;;;;-1:-1:-1;9182:31:0;;;;-1:-1:-1;;;9182:31:0;;;;;;14286:615;14371:4;-1:-1:-1;;;;;;;;;14671:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;14748:25:0;;;14671:102;:179;;;-1:-1:-1;;;;;;;;;;14825:25:0;;;14671:179;14651:199;14286:615;-1:-1:-1;;14286:615:0:o;20842:204::-;20910:7;20935:16;20943:7;22894:13;;-1:-1:-1;22884:23:0;22747:168;20935:16;20930:64;;20960:34;;-1:-1:-1;;;20960:34:0;;;;;;;;;;;20930:64;-1:-1:-1;21014:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;21014:24:0;;20842:204::o;20325:451::-;20398:13;20430:27;20449:7;20430:18;:27::i;:::-;20398:61;;20480:5;-1:-1:-1;;;;;20474:11:0;:2;-1:-1:-1;;;;;20474:11:0;;20470:25;;20487:8;;;20470:25;31342:10;-1:-1:-1;;;;;20512:28:0;;;20508:175;;20560:44;20577:5;31342:10;21497:164;:::i;20560:44::-;20555:128;;20632:35;;-1:-1:-1;;;20632:35:0;;;;;;;;;;;20555:128;20695:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20695:29:0;-1:-1:-1;;;;;20695:29:0;;;;;;;;;20740:28;;20695:24;;20740:28;;;;;;;20387:389;20325:451;;:::o;9986:346::-;10029:14;10134:12;9315:1;;31342:10;;-1:-1:-1;;;10134:12:0;;;;10126:34;;;;-1:-1:-1;;;10126:34:0;;5662:2:1;10126:34:0;;;5644:21:1;5701:1;5681:18;;;5674:29;-1:-1:-1;;;5719:18:1;;;5712:39;5768:18;;10126:34:0;;;;;;;;;9259:3;10195:6;10179:13;13779;;;13529:300;10179:13;:22;;;;:::i;:::-;:36;;10171:56;;;;-1:-1:-1;;;10171:56:0;;6261:2:1;10171:56:0;;;6243:21:1;6300:1;6280:18;;;6273:29;-1:-1:-1;;;6318:18:1;;;6311:37;6365:18;;10171:56:0;6059:330:1;10171:56:0;10263:9;10246:13;9354:10;10246:6;:13;:::i;:::-;:26;;10238:47;;;;-1:-1:-1;;;10238:47:0;;6769:2:1;10238:47:0;;;6751:21:1;6808:1;6788:18;;;6781:29;-1:-1:-1;;;6826:18:1;;;6819:38;6874:18;;10238:47:0;6567:331:1;10238:47:0;10298:26;10308:7;10317:6;10298:9;:26::i;:::-;10018:314;;9986:346::o;12594:102::-;9126:6;;-1:-1:-1;;;;;9126:6:0;9134:10;9126:18;9118:34;;;;-1:-1:-1;;;9118:34:0;;;;;;;:::i;:::-;12660:12:::1;:28:::0;;;::::1;;-1:-1:-1::0;;;12660:28:0::1;-1:-1:-1::0;;;;12660:28:0;;::::1;::::0;;;::::1;::::0;;12594:102::o;21728:190::-;21882:28;21892:4;21898:2;21902:7;21882:9;:28::i;:::-;21728:190;;;:::o;33364:145::-;9126:6;;-1:-1:-1;;;;;9126:6:0;9134:10;9126:18;9118:34;;;;-1:-1:-1;;;9118:34:0;;;;;;;:::i;:::-;33464:37:::1;::::0;33432:21:::1;::::0;33472:10:::1;::::0;33464:37;::::1;;;::::0;33432:21;;33414:15:::1;33464:37:::0;33414:15;33464:37;33432:21;33472:10;33464:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;21989:205:::0;22147:39;22164:4;22170:2;22174:7;22147:39;;;;;;;;;;;;:16;:39::i;12704:92::-;9126:6;;-1:-1:-1;;;;;9126:6:0;9134:10;9126:18;9118:34;;;;-1:-1:-1;;;9118:34:0;;;;;;;:::i;:::-;12773:8:::1;:15;12784:4:::0;12773:8;:15:::1;:::i;9605:373::-:0;9644:14;9749:12;9315:1;;31342:10;;-1:-1:-1;;;9749:12:0;;;;9741:34;;;;-1:-1:-1;;;9741:34:0;;5662:2:1;9741:34:0;;;5644:21:1;5701:1;5681:18;;;5674:29;-1:-1:-1;;;5719:18:1;;;5712:39;5768:18;;9741:34:0;5460:332:1;9741:34:0;9259:3;9810:6;9794:13;13779;;;13529:300;9794:13;:22;;;;:::i;:::-;:36;;9786:56;;;;-1:-1:-1;;;9786:56:0;;6261:2:1;9786:56:0;;;6243:21:1;6300:1;6280:18;;;6273:29;-1:-1:-1;;;6318:18:1;;;6311:37;6365:18;;9786:56:0;6059:330:1;9786:56:0;9884:10;15342:7;15370:25;;;:18;:25;;10582:2;15370:25;;;;;9315:1;;15370:49;10445:13;15369:80;9861:34;;:6;:34;:::i;:::-;:57;;9853:78;;;;-1:-1:-1;;;9853:78:0;;6769:2:1;9853:78:0;;;6751:21:1;6808:1;6788:18;;;6781:29;-1:-1:-1;;;6826:18:1;;;6819:38;6874:18;;9853:78:0;6567:331:1;18828:144:0;18892:7;18935:27;18954:7;18935:18;:27::i;14965:234::-;15029:7;15071:5;15081:1;15053:29;15049:70;;15091:28;;-1:-1:-1;;;15091:28:0;;;;;;;;;;;15049:70;-1:-1:-1;;;;;;15137:25:0;;;;;:18;:25;;;;;;10445:13;15137:54;;14965:234::o;12804:100::-;9126:6;;-1:-1:-1;;;;;9126:6:0;9134:10;9126:18;9118:34;;;;-1:-1:-1;;;9118:34:0;;;;;;;:::i;:::-;12877:12:::1;:19;12892:4:::0;12877:12;:19:::1;:::i;21118:308::-:0;31342:10;-1:-1:-1;;;;;21217:31:0;;;21213:61;;21257:17;;-1:-1:-1;;;21257:17:0;;;;;;;;;;;21213:61;31342:10;21287:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;21287:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;21287:60:0;;;;;;;;;;21363:55;;445:41:1;;;21287:49:0;;31342:10;21363:55;;418:18:1;21363:55:0;;;;;;;21118:308;;:::o;22265:227::-;22456:28;22466:4;22472:2;22476:7;22456:9;:28::i;:::-;22265:227;;;;:::o;19320:339::-;19393:13;19424:16;19432:7;22894:13;;-1:-1:-1;22884:23:0;22747:168;19424:16;19419:59;;19449:29;;-1:-1:-1;;;19449:29:0;;;;;;;;;;;19419:59;19489:21;19513:8;19489:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19545:7;19539:21;19564:1;19539:26;:112;;;;;;;;;;;;;;;;;19603:7;19617:18;19627:7;19617:9;:18::i;:::-;19575:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19539:112;19532:119;19320:339;-1:-1:-1;;;19320:339:0:o;19667:134::-;19711:13;19779:12;19751:41;;;;;;;;:::i;:::-;;;;;;;;;;;;;19737:56;;19667:134;:::o;21497:164::-;-1:-1:-1;;;;;21618:25:0;;;21594:4;21618:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;21497:164::o;16343:1129::-;16410:7;16445;16547:13;;16540:4;:20;16536:869;;;16585:14;16602:23;;;:17;:23;;;;;;;-1:-1:-1;;;16691:23:0;;:28;;16687:699;;17210:113;17217:6;17227:1;17217:11;17210:113;;-1:-1:-1;;;17288:6:0;17270:25;;;;:17;:25;;;;;;17210:113;;16687:699;16562:843;16536:869;17433:31;;-1:-1:-1;;;17433:31:0;;;;;;;;;;;22999:104;23068:27;23078:2;23082:8;23068:27;;;;;;;;;;;;:9;:27::i;27581:2636::-;27718:27;27748;27767:7;27748:18;:27::i;:::-;27718:57;;27833:4;-1:-1:-1;;;;;27792:45:0;27808:19;-1:-1:-1;;;;;27792:45:0;;27788:86;;27846:28;;-1:-1:-1;;;27846:28:0;;;;;;;;;;;27788:86;27887:23;27913:24;;;:15;:24;;;;;;-1:-1:-1;;;;;27913:24:0;;;;27887:23;27976:27;;31342:10;27976:27;;:91;;-1:-1:-1;28024:43:0;28041:4;31342:10;21497:164;:::i;28024:43::-;27976:150;;;-1:-1:-1;;;;;;28088:38:0;;31342:10;28088:38;27976:150;27950:177;;28145:17;28140:66;;28171:35;;-1:-1:-1;;;28171:35:0;;;;;;;;;;;28140:66;28375:15;28357:39;28353:103;;28420:24;;;;:15;:24;;;;;28413:31;;-1:-1:-1;;;;;;28413:31:0;;;28353:103;-1:-1:-1;;;;;28823:24:0;;;;;;;:18;:24;;;;;;;;28821:26;;-1:-1:-1;;28821:26:0;;;28892:22;;;;;;;;28890:24;;-1:-1:-1;28890:24:0;;;29185:26;;;:17;:26;;;;;-1:-1:-1;;;29273:15:0;11099:3;29273:41;29231:84;;:128;;29185:174;;;29479:46;;:51;;29475:626;;29583:1;29573:11;;29551:19;29706:30;;;:17;:30;;;;;;:35;;29702:384;;29844:13;;29829:11;:28;29825:242;;29991:30;;;;:17;:30;;;;;:52;;;29825:242;29532:569;29475:626;30148:7;30144:2;-1:-1:-1;;;;;30129:27:0;30138:4;-1:-1:-1;;;;;30129:27:0;;;;;;;;;;;30167:42;27705:2512;;;27581:2636;;;:::o;31466:1882::-;31937:4;31931:11;;31944:3;31927:21;;32018:17;;;;32690:11;;;32567:5;32824:2;32838;32828:13;;32820:22;32690:11;32807:36;32880:2;32870:13;;32464:661;32896:4;32464:661;;;33064:1;33059:3;33055:11;33048:18;;33108:2;33102:4;33098:13;33094:2;33090:22;33085:3;33077:36;32981:2;32971:13;;32464:661;;;-1:-1:-1;33148:13:0;;;-1:-1:-1;;33257:12:0;;;33311:19;;;33257:12;31466:1882;-1:-1:-1;31466:1882:0:o;23474:2000::-;23640:13;;23617:20;23739:13;;;23735:44;;23761:18;;-1:-1:-1;;;23761:18:0;;;;;;;;;;;23735:44;-1:-1:-1;;;;;24256:22:0;;;;;;:18;:22;;;;10582:2;24256:22;;;:70;;24294:31;24282:44;;24256:70;;;24569:31;;;:17;:31;;;;;24662:15;11099:3;24662:41;24620:84;;-1:-1:-1;24740:13:0;;11358:3;24725:56;24620:162;24569:213;;:31;;24863:23;;;;24907:14;:19;24903:439;;24947:117;24978:38;;25003:12;;-1:-1:-1;;;;;24978:38:0;;;24995:1;;24978:38;;24995:1;;24978:38;25059:3;25044:12;:18;24947:117;;25145:12;25128:13;;:29;25124:43;;25159:8;;;25124:43;24903:439;;;25208:119;25239:40;;25264:14;;;;;-1:-1:-1;;;;;25239:40:0;;;25256:1;;25239:40;;25256:1;;25239:40;25322:3;25307:12;:18;25208:119;;24903:439;-1:-1:-1;25356:13:0;:28;25406:60;25435:1;25439:2;25443:12;25457:8;25406:60;:::i;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:250;582:1;592:113;606:6;603:1;600:13;592:113;;;682:11;;;676:18;663:11;;;656:39;628:2;621:10;592:113;;;-1:-1:-1;;739:1:1;721:16;;714:27;497:250::o;752:396::-;901:2;890:9;883:21;864:4;933:6;927:13;976:6;971:2;960:9;956:18;949:34;992:79;1064:6;1059:2;1048:9;1044:18;1039:2;1031:6;1027:15;992:79;:::i;:::-;1132:2;1111:15;-1:-1:-1;;1107:29:1;1092:45;;;;1139:2;1088:54;;752:396;-1:-1:-1;;752:396:1:o;1153:180::-;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;-1:-1:-1;1304:23:1;;1153:180;-1:-1:-1;1153:180:1:o;1546:173::-;1614:20;;-1:-1:-1;;;;;1663:31:1;;1653:42;;1643:70;;1709:1;1706;1699:12;1643:70;1546:173;;;:::o;1724:254::-;1792:6;1800;1853:2;1841:9;1832:7;1828:23;1824:32;1821:52;;;1869:1;1866;1859:12;1821:52;1892:29;1911:9;1892:29;:::i;:::-;1882:39;1968:2;1953:18;;;;1940:32;;-1:-1:-1;;;1724:254:1:o;2165:160::-;2230:20;;2286:13;;2279:21;2269:32;;2259:60;;2315:1;2312;2305:12;2330:180;2386:6;2439:2;2427:9;2418:7;2414:23;2410:32;2407:52;;;2455:1;2452;2445:12;2407:52;2478:26;2494:9;2478:26;:::i;2515:328::-;2592:6;2600;2608;2661:2;2649:9;2640:7;2636:23;2632:32;2629:52;;;2677:1;2674;2667:12;2629:52;2700:29;2719:9;2700:29;:::i;:::-;2690:39;;2748:38;2782:2;2771:9;2767:18;2748:38;:::i;:::-;2738:48;;2833:2;2822:9;2818:18;2805:32;2795:42;;2515:328;;;;;:::o;2848:127::-;2909:10;2904:3;2900:20;2897:1;2890:31;2940:4;2937:1;2930:15;2964:4;2961:1;2954:15;2980:632;3045:5;3075:18;3116:2;3108:6;3105:14;3102:40;;;3122:18;;:::i;:::-;3197:2;3191:9;3165:2;3251:15;;-1:-1:-1;;3247:24:1;;;3273:2;3243:33;3239:42;3227:55;;;3297:18;;;3317:22;;;3294:46;3291:72;;;3343:18;;:::i;:::-;3383:10;3379:2;3372:22;3412:6;3403:15;;3442:6;3434;3427:22;3482:3;3473:6;3468:3;3464:16;3461:25;3458:45;;;3499:1;3496;3489:12;3458:45;3549:6;3544:3;3537:4;3529:6;3525:17;3512:44;3604:1;3597:4;3588:6;3580;3576:19;3572:30;3565:41;;;;2980:632;;;;;:::o;3617:451::-;3686:6;3739:2;3727:9;3718:7;3714:23;3710:32;3707:52;;;3755:1;3752;3745:12;3707:52;3795:9;3782:23;3828:18;3820:6;3817:30;3814:50;;;3860:1;3857;3850:12;3814:50;3883:22;;3936:4;3928:13;;3924:27;-1:-1:-1;3914:55:1;;3965:1;3962;3955:12;3914:55;3988:74;4054:7;4049:2;4036:16;4031:2;4027;4023:11;3988:74;:::i;:::-;3978:84;3617:451;-1:-1:-1;;;;3617:451:1:o;4073:186::-;4132:6;4185:2;4173:9;4164:7;4160:23;4156:32;4153:52;;;4201:1;4198;4191:12;4153:52;4224:29;4243:9;4224:29;:::i;4264:254::-;4329:6;4337;4390:2;4378:9;4369:7;4365:23;4361:32;4358:52;;;4406:1;4403;4396:12;4358:52;4429:29;4448:9;4429:29;:::i;:::-;4419:39;;4477:35;4508:2;4497:9;4493:18;4477:35;:::i;:::-;4467:45;;4264:254;;;;;:::o;4523:667::-;4618:6;4626;4634;4642;4695:3;4683:9;4674:7;4670:23;4666:33;4663:53;;;4712:1;4709;4702:12;4663:53;4735:29;4754:9;4735:29;:::i;:::-;4725:39;;4783:38;4817:2;4806:9;4802:18;4783:38;:::i;:::-;4773:48;;4868:2;4857:9;4853:18;4840:32;4830:42;;4923:2;4912:9;4908:18;4895:32;4950:18;4942:6;4939:30;4936:50;;;4982:1;4979;4972:12;4936:50;5005:22;;5058:4;5050:13;;5046:27;-1:-1:-1;5036:55:1;;5087:1;5084;5077:12;5036:55;5110:74;5176:7;5171:2;5158:16;5153:2;5149;5145:11;5110:74;:::i;:::-;5100:84;;;4523:667;;;;;;;:::o;5195:260::-;5263:6;5271;5324:2;5312:9;5303:7;5299:23;5295:32;5292:52;;;5340:1;5337;5330:12;5292:52;5363:29;5382:9;5363:29;:::i;:::-;5353:39;;5411:38;5445:2;5434:9;5430:18;5411:38;:::i;5797:127::-;5858:10;5853:3;5849:20;5846:1;5839:31;5889:4;5886:1;5879:15;5913:4;5910:1;5903:15;5929:125;5994:9;;;6015:10;;;6012:36;;;6028:18;;:::i;6394:168::-;6434:7;6500:1;6496;6492:6;6488:14;6485:1;6482:21;6477:1;6470:9;6463:17;6459:45;6456:71;;;6507:18;;:::i;:::-;-1:-1:-1;6547:9:1;;6394:168::o;6903:326::-;7105:2;7087:21;;;7144:1;7124:18;;;7117:29;-1:-1:-1;;;7177:2:1;7162:18;;7155:33;7220:2;7205:18;;6903:326::o;7234:380::-;7313:1;7309:12;;;;7356;;;7377:61;;7431:4;7423:6;7419:17;7409:27;;7377:61;7484:2;7476:6;7473:14;7453:18;7450:38;7447:161;;7530:10;7525:3;7521:20;7518:1;7511:31;7565:4;7562:1;7555:15;7593:4;7590:1;7583:15;7447:161;;7234:380;;;:::o;7745:545::-;7847:2;7842:3;7839:11;7836:448;;;7883:1;7908:5;7904:2;7897:17;7953:4;7949:2;7939:19;8023:2;8011:10;8007:19;8004:1;8000:27;7994:4;7990:38;8059:4;8047:10;8044:20;8041:47;;;-1:-1:-1;8082:4:1;8041:47;8137:2;8132:3;8128:12;8125:1;8121:20;8115:4;8111:31;8101:41;;8192:82;8210:2;8203:5;8200:13;8192:82;;;8255:17;;;8236:1;8225:13;8192:82;;8466:1352;8592:3;8586:10;8619:18;8611:6;8608:30;8605:56;;;8641:18;;:::i;:::-;8670:97;8760:6;8720:38;8752:4;8746:11;8720:38;:::i;:::-;8714:4;8670:97;:::i;:::-;8822:4;;8886:2;8875:14;;8903:1;8898:663;;;;9605:1;9622:6;9619:89;;;-1:-1:-1;9674:19:1;;;9668:26;9619:89;-1:-1:-1;;8423:1:1;8419:11;;;8415:24;8411:29;8401:40;8447:1;8443:11;;;8398:57;9721:81;;8868:944;;8898:663;7692:1;7685:14;;;7729:4;7716:18;;-1:-1:-1;;8934:20:1;;;9052:236;9066:7;9063:1;9060:14;9052:236;;;9155:19;;;9149:26;9134:42;;9247:27;;;;9215:1;9203:14;;;;9082:19;;9052:236;;;9056:3;9316:6;9307:7;9304:19;9301:201;;;9377:19;;;9371:26;-1:-1:-1;;9460:1:1;9456:14;;;9472:3;9452:24;9448:37;9444:42;9429:58;9414:74;;9301:201;-1:-1:-1;;;;;9548:1:1;9532:14;;;9528:22;9515:36;;-1:-1:-1;8466:1352:1:o;9823:935::-;-1:-1:-1;;;10330:3:1;10323:22;10305:3;10374:6;10368:13;10390:74;10457:6;10453:1;10448:3;10444:11;10437:4;10429:6;10425:17;10390:74;:::i;:::-;-1:-1:-1;;;10523:1:1;10483:16;;;10515:10;;;10508:23;10556:13;;10578:75;10556:13;10640:1;10632:10;;10625:4;10613:17;;10578:75;:::i;:::-;-1:-1:-1;;;10713:1:1;10672:17;;;;10705:10;;;10698:27;10749:2;10741:11;;9823:935;-1:-1:-1;;;;9823:935:1:o;10763:1030::-;-1:-1:-1;;;11017:3:1;11010:22;10992:3;11051:1;11072;11105:6;11099:13;11135:36;11161:9;11135:36;:::i;:::-;11190:1;11207:18;;;11234:151;;;;11399:1;11394:374;;;;11200:568;;11234:151;-1:-1:-1;;11276:24:1;;11262:12;;;11255:46;11353:14;;11346:22;11334:35;;11325:45;;11321:54;;;-1:-1:-1;11234:151:1;;11394:374;11425:6;11422:1;11415:17;11455:4;11500:2;11497:1;11487:16;11525:1;11539:174;11553:6;11550:1;11547:13;11539:174;;;11640:14;;11622:11;;;11618:20;;11611:44;11683:16;;;;11568:10;;11539:174;;;11543:3;;;11755:2;11746:6;11741:3;11737:16;11733:25;11726:32;;11200:568;-1:-1:-1;11784:3:1;;10763:1030;-1:-1:-1;;;;;;;10763:1030:1:o

Swarm Source

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