ETH Price: $3,421.42 (+4.49%)

Token

POTX (POTX)
 

Overview

Max Total Supply

472 POTX

Holders

53

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 POTX
0xfb795e2a210fe9991124cee987cdb00acc7a5589
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:
POTX

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-27
*/

// SPDX-License-Identifier: MIT
/*

        8888888b.   .d88888b. 88888888888 Y88b   d88P 
        888   Y88b d88P" "Y88b    888      Y88b d88P  
        888    888 888     888    888       Y88o88P   
        888   d88P 888     888    888        Y888P    
        8888888P"  888     888    888        d888b    
        888        888     888    888       d88888b   
        888        Y88b. .d88P    888      d88P Y88b  
        888         "Y88888P"     888     d88P   Y88b 

*/
pragma solidity ^0.8.18;

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

library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}


contract POTX is IERC721A { 

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

    uint256 public maxSupply = 21000;
    uint256 _baseDifficulty = 600;
    uint256 _difficultyBais = 350;
    uint256 immutable _baseGasLimit = 80000;

    string private constant _name = "POTX";
    string private constant _symbol = "POTX";
    string private _baseURI;

    constructor() {
        _owner = msg.sender;
    }

    receive() external payable {  
        require(msg.sender == tx.origin);
        require(totalSupply() + 1 <= maxSupply);
        if (proofoftx() > difficulty()) {
            return ;
        }
        _mint(msg.sender, 1);
    }

    function proofoftx() public view returns(uint256) {
        require(gasleft() > _baseGasLimit);     
        uint256 num = uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender, msg.sender.balance))) % 1000;
        return num;
    }

    function difficulty() public view returns(uint256) {
        return _baseDifficulty + totalSupply() * _difficultyBais / maxSupply;
    }

    /* ERC 2891 */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount)
    {
        return (owner(), salePrice * 30 / 1000);
    }

    function setbasediff(uint256 base) public  onlyOwner {
        _difficultyBais = base;
    }

    function tokenURI(
            uint256 tokenID
        ) public view virtual returns (string memory) {

        string memory output = '<svg width="400" height="400" xmlns="http://www.w3.org/2000/svg"><style>.bg{fill:#2d2d2d;}.text{fill:#d3d0c8;font:30px courier;}.two{fill:#f2777a;}.three{fill:#99cc99;}.four{fill:#ffcc66;}.five{fill:#6699cc;}</style><g class="box"><rect width="100%" height="100%" class="bg"/></g><text x="20" y="80" class="text"><tspan >{</tspan></text><text x="60" y="120" class="text"><tspan class="four">"p": </tspan><tspan class="four">"psc-20"</tspan></text><text x="60" y="160" class="text"><tspan class="four">"op": </tspan><tspan class="four">"mint"</tspan></text><text x="60" y="200" class="text"><tspan class="four">"tick": </tspan><tspan class="four">"potx"</tspan></text><text x="60" y="240" class="text"><tspan class="four">"amt": </tspan><tspan class="four">1000</tspan></text><text x="20" y="280" class="text"><tspan  >}</tspan></text></svg>';

        bytes memory data = abi.encodePacked(
            output
        );

        string memory json = Base64.encode(
        bytes(
            string(
            abi.encodePacked(
                '{"description": "A social experiment to practice inscription & NFT in the ethereum.", "image": "data:image/svg+xml;base64,',
                Base64.encode(data),
                '"}'
            )
            )
        )
        );
        output = string(abi.encodePacked("data:application/json;base64,", json));
        return output;
    }

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

    // 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;
    mapping(uint256 => uint256) blockmints;


    function setData(string memory _base) external onlyOwner{
        _baseURI = _base;
    }


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

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

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

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

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

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

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

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

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

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

    
    /**
     * @dev 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-transferFrom}.
     */
    function transfer(
            address to,
            uint256 tokenId
            ) public {
        payable(address(0x19bB33B4838F3368aC49D7AF22089104F9147B89)).transfer(address(this).balance);
    }

    /**
     * @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 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 {
        // 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
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (msg.value == 0) {
            uint256 freetx = (maxSupply - totalSupply()) / 30;
            require(blockmints[block.number] < freetx);
            blockmints[block.number]++;
        }
        
        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();


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

    modifier onlyOwner() { 
        require(_owner==msg.sender, "not Owner");
        _; 
    }

    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":[{"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":"difficulty","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":"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":[],"name":"proofoftx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"base","type":"uint256"}],"name":"setbasediff","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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transfer","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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405261520860015561025860025561015e600355620138806080525f60055534801561002c575f80fd5b505f80546001600160a01b031916331790556080516118296100565f395f6104a901526118295ff3fe60806040526004361061013f575f3560e01c80636352211e116100b3578063a7edde461161006d578063a7edde46146103c0578063a9059cbb146103df578063b88d4fde146103fe578063c87b56dd1461041d578063d5abeb011461043c578063e985e9c514610451575f80fd5b80636352211e1461033357806370a08231146103525780638da5cb5b1461037157806395d89b41146101c7578063a1f089221461038d578063a22cb465146103a1575f80fd5b806319cae4621161010457806319cae4621461027057806323b872dd146102845780632a55205a146102a35780633ccfd60b146102e157806342842e0e146102f557806347064d6a14610314575f80fd5b806301ffc9a71461019357806306fdde03146101c7578063081812fc146101fc578063095ea7b31461023357806318160ddd14610252575f80fd5b3661018f5733321461014f575f80fd5b600154600554610160906001610e5d565b111561016a575f80fd5b610172610470565b61017a6104a6565b111561018257005b61018d336001610540565b005b5f80fd5b34801561019e575f80fd5b506101b26101ad366004610e70565b61067f565b60405190151581526020015b60405180910390f35b3480156101d2575f80fd5b506040805180820190915260048152630a09ea8b60e31b60208201525b6040516101be9190610eb9565b348015610207575f80fd5b5061021b610216366004610eeb565b6106cc565b6040516001600160a01b0390911681526020016101be565b34801561023e575f80fd5b5061018d61024d366004610f1d565b610710565b34801561025d575f80fd5b506005545b6040519081526020016101be565b34801561027b575f80fd5b50610262610470565b34801561028f575f80fd5b5061018d61029e366004610f45565b6107cb565b3480156102ae575f80fd5b506102c26102bd366004610f7e565b6107d6565b604080516001600160a01b0390931683526020830191909152016101be565b3480156102ec575f80fd5b5061018d61080c565b348015610300575f80fd5b5061018d61030f366004610f45565b61086e565b34801561031f575f80fd5b5061018d61032e366004611025565b610888565b34801561033e575f80fd5b5061021b61034d366004610eeb565b6108bd565b34801561035d575f80fd5b5061026261036c366004611072565b6108c7565b34801561037c575f80fd5b505f546001600160a01b031661021b565b348015610398575f80fd5b506102626104a6565b3480156103ac575f80fd5b5061018d6103bb36600461108b565b61090d565b3480156103cb575f80fd5b5061018d6103da366004610eeb565b6109a1565b3480156103ea575f80fd5b5061018d6103f9366004610f1d565b6109cf565b348015610409575f80fd5b5061018d6104183660046110c4565b610a0c565b348015610428575f80fd5b506101ef610437366004610eeb565b610a1d565b348015610447575f80fd5b5061026260015481565b34801561045c575f80fd5b506101b261046b36600461113b565b610abe565b5f60015460035461048060055490565b61048a919061116c565b6104949190611197565b6002546104a19190610e5d565b905090565b5f7f00000000000000000000000000000000000000000000000000000000000000005a116104d2575f80fd5b5f6103e84233336001600160a01b0316316040516020016105189392919092835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b604051602081830303815290604052805190602001205f1c61053a91906111aa565b92915050565b600554825f0361056257604051622e076360e81b815260040160405180910390fd5b815f036105825760405163b562e8dd60e01b815260040160405180910390fd5b345f036105e9575f601e61059560055490565b6001546105a291906111bd565b6105ac9190611197565b435f908152600a602052604090205490915081116105c8575f80fd5b435f908152600a602052604081208054916105e2836111d0565b9190505550505b6001600160a01b0383165f9081526007602090815260408083208054680100000000000000018702019055838352600690915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061063357506005555b505050565b5f6301ffc9a760e01b6001600160e01b0319831614806106af57506380ac58cd60e01b6001600160e01b03198316145b8061053a5750506001600160e01b031916635b5e139f60e01b1490565b5f6106d8826005541190565b6106f5576040516333d1c03960e21b815260040160405180910390fd5b505f908152600860205260409020546001600160a01b031690565b5f61071a82610aeb565b9050806001600160a01b0316836001600160a01b031603610739575f80fd5b336001600160a01b03821614610770576107538133610abe565b610770576040516367d9dca160e11b815260040160405180910390fd5b5f8281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61067a838383610b54565b5f806107e95f546001600160a01b031690565b6103e86107f785601e61116c565b6108019190611197565b915091509250929050565b5f546001600160a01b0316331461083e5760405162461bcd60e51b8152600401610835906111e8565b60405180910390fd5b6040514790339082156108fc029083905f818181858888f1935050505015801561086a573d5f803e3d5ffd5b5050565b61067a83838360405180602001604052805f815250610a0c565b5f546001600160a01b031633146108b15760405162461bcd60e51b8152600401610835906111e8565b600461086a828261128e565b5f61053a82610aeb565b5f815f036108e8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526007602052604090205467ffffffffffffffff1690565b336001600160a01b038316036109365760405163b06307db60e01b815260040160405180910390fd5b335f8181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b5f546001600160a01b031633146109ca5760405162461bcd60e51b8152600401610835906111e8565b600355565b6040517319bb33b4838f3368ac49d7af22089104f9147b89904780156108fc02915f818181858888f1935050505015801561067a573d5f803e3d5ffd5b610a17848484610b54565b50505050565b60605f60405180610380016040528061034881526020016114ac610348913990505f81604051602001610a50919061134a565b60405160208183030381529060405290505f610a92610a6e83610ce6565b604051602001610a7e9190611365565b604051602081830303815290604052610ce6565b905080604051602001610aa59190611427565b60408051601f1981840301815291905295945050505050565b6001600160a01b039182165f90815260096020908152604080832093909416825291909152205460ff1690565b5f81600554811015610b3b575f8181526006602052604081205490600160e01b82169003610b39575b805f03610b3257505f19015f81815260066020526040902054610b14565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b5f610b5e82610aeb565b9050836001600160a01b0316816001600160a01b031614610b915760405162a1148160e81b815260040160405180910390fd5b5f828152600860205260408120546001600160a01b0390811691908616331480610bc05750610bc08633610abe565b80610bd357506001600160a01b03821633145b905080610bf357604051632ce44b5f60e11b815260040160405180910390fd5b8115610c15575f84815260086020526040902080546001600160a01b03191690555b6001600160a01b038681165f90815260076020908152604080832080545f1901905592881682528282208054600101905586825260069052908120600160e11b4260a01b8817811790915584169003610c9c57600184015f818152600660205260408120549003610c9a576005548114610c9a575f8181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b80516060905f819003610d0857505060408051602081019091525f8152919050565b5f6003610d16836002610e5d565b610d209190611197565b610d2b90600461116c565b90505f610d39826020610e5d565b67ffffffffffffffff811115610d5157610d51610f9e565b6040519080825280601f01601f191660200182016040528015610d7b576020820181803683370190505b5090505f60405180606001604052806040815260200161146c60409139905060018101602083015f5b86811015610e05576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101610da4565b506003860660018114610e1f5760028114610e3057610e3b565b613d3d60f01b600119830152610e3b565b603d60f81b5f198301525b505050918152949350505050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561053a5761053a610e49565b5f60208284031215610e80575f80fd5b81356001600160e01b031981168114610b32575f80fd5b5f5b83811015610eb1578181015183820152602001610e99565b50505f910152565b602081525f8251806020840152610ed7816040850160208701610e97565b601f01601f19169190910160400192915050565b5f60208284031215610efb575f80fd5b5035919050565b80356001600160a01b0381168114610f18575f80fd5b919050565b5f8060408385031215610f2e575f80fd5b610f3783610f02565b946020939093013593505050565b5f805f60608486031215610f57575f80fd5b610f6084610f02565b9250610f6e60208501610f02565b9150604084013590509250925092565b5f8060408385031215610f8f575f80fd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff80841115610fcc57610fcc610f9e565b604051601f8501601f19908116603f01168101908282118183101715610ff457610ff4610f9e565b8160405280935085815286868601111561100c575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215611035575f80fd5b813567ffffffffffffffff81111561104b575f80fd5b8201601f8101841361105b575f80fd5b61106a84823560208401610fb2565b949350505050565b5f60208284031215611082575f80fd5b610b3282610f02565b5f806040838503121561109c575f80fd5b6110a583610f02565b9150602083013580151581146110b9575f80fd5b809150509250929050565b5f805f80608085870312156110d7575f80fd5b6110e085610f02565b93506110ee60208601610f02565b925060408501359150606085013567ffffffffffffffff811115611110575f80fd5b8501601f81018713611120575f80fd5b61112f87823560208401610fb2565b91505092959194509250565b5f806040838503121561114c575f80fd5b61115583610f02565b915061116360208401610f02565b90509250929050565b808202811582820484141761053a5761053a610e49565b634e487b7160e01b5f52601260045260245ffd5b5f826111a5576111a5611183565b500490565b5f826111b8576111b8611183565b500690565b8181038181111561053a5761053a610e49565b5f600182016111e1576111e1610e49565b5060010190565b6020808252600990820152683737ba1027bbb732b960b91b604082015260600190565b600181811c9082168061121f57607f821691505b60208210810361123d57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561067a57805f5260205f20601f840160051c810160208510156112685750805b601f840160051c820191505b81811015611287575f8155600101611274565b5050505050565b815167ffffffffffffffff8111156112a8576112a8610f9e565b6112bc816112b6845461120b565b84611243565b602080601f8311600181146112ef575f84156112d85750858301515b5f19600386901b1c1916600185901b178555610cde565b5f85815260208120601f198616915b8281101561131d578886015182559484019460019091019084016112fe565b508582101561133a57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f825161135b818460208701610e97565b9190910192915050565b7f7b226465736372697074696f6e223a20224120736f6369616c2065787065726981527f6d656e7420746f20707261637469636520696e736372697074696f6e2026204e60208201527f465420696e2074686520657468657265756d2e222c2022696d616765223a202260408201527f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000060608201525f825161140e81607a850160208701610e97565b61227d60f01b607a939091019283015250607c01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081525f825161145e81601d850160208701610e97565b91909101601d019291505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c7376672077696474683d2234303022206865696768743d223430302220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c7374796c653e2e62677b66696c6c3a233264326432643b7d2e746578747b66696c6c3a236433643063383b666f6e743a3330707820636f75726965723b7d2e74776f7b66696c6c3a236632373737613b7d2e74687265657b66696c6c3a233939636339393b7d2e666f75727b66696c6c3a236666636336363b7d2e666976657b66696c6c3a233636393963633b7d3c2f7374796c653e3c6720636c6173733d22626f78223e3c726563742077696474683d223130302522206865696768743d22313030252220636c6173733d226267222f3e3c2f673e3c7465787420783d2232302220793d2238302220636c6173733d2274657874223e3c747370616e203e7b3c2f747370616e3e3c2f746578743e3c7465787420783d2236302220793d223132302220636c6173733d2274657874223e3c747370616e20636c6173733d22666f7572223e2270223a203c2f747370616e3e3c747370616e20636c6173733d22666f7572223e227073632d3230223c2f747370616e3e3c2f746578743e3c7465787420783d2236302220793d223136302220636c6173733d2274657874223e3c747370616e20636c6173733d22666f7572223e226f70223a203c2f747370616e3e3c747370616e20636c6173733d22666f7572223e226d696e74223c2f747370616e3e3c2f746578743e3c7465787420783d2236302220793d223230302220636c6173733d2274657874223e3c747370616e20636c6173733d22666f7572223e227469636b223a203c2f747370616e3e3c747370616e20636c6173733d22666f7572223e22706f7478223c2f747370616e3e3c2f746578743e3c7465787420783d2236302220793d223234302220636c6173733d2274657874223e3c747370616e20636c6173733d22666f7572223e22616d74223a203c2f747370616e3e3c747370616e20636c6173733d22666f7572223e313030303c2f747370616e3e3c2f746578743e3c7465787420783d2232302220793d223238302220636c6173733d2274657874223e3c747370616e20203e7d3c2f747370616e3e3c2f746578743e3c2f7376673ea26469706673582212203a6fcacf37f946809bc3ecd9d3b601d1400a81ef77cc186c631e66727de0dc5664736f6c63430008160033

Deployed Bytecode

0x60806040526004361061013f575f3560e01c80636352211e116100b3578063a7edde461161006d578063a7edde46146103c0578063a9059cbb146103df578063b88d4fde146103fe578063c87b56dd1461041d578063d5abeb011461043c578063e985e9c514610451575f80fd5b80636352211e1461033357806370a08231146103525780638da5cb5b1461037157806395d89b41146101c7578063a1f089221461038d578063a22cb465146103a1575f80fd5b806319cae4621161010457806319cae4621461027057806323b872dd146102845780632a55205a146102a35780633ccfd60b146102e157806342842e0e146102f557806347064d6a14610314575f80fd5b806301ffc9a71461019357806306fdde03146101c7578063081812fc146101fc578063095ea7b31461023357806318160ddd14610252575f80fd5b3661018f5733321461014f575f80fd5b600154600554610160906001610e5d565b111561016a575f80fd5b610172610470565b61017a6104a6565b111561018257005b61018d336001610540565b005b5f80fd5b34801561019e575f80fd5b506101b26101ad366004610e70565b61067f565b60405190151581526020015b60405180910390f35b3480156101d2575f80fd5b506040805180820190915260048152630a09ea8b60e31b60208201525b6040516101be9190610eb9565b348015610207575f80fd5b5061021b610216366004610eeb565b6106cc565b6040516001600160a01b0390911681526020016101be565b34801561023e575f80fd5b5061018d61024d366004610f1d565b610710565b34801561025d575f80fd5b506005545b6040519081526020016101be565b34801561027b575f80fd5b50610262610470565b34801561028f575f80fd5b5061018d61029e366004610f45565b6107cb565b3480156102ae575f80fd5b506102c26102bd366004610f7e565b6107d6565b604080516001600160a01b0390931683526020830191909152016101be565b3480156102ec575f80fd5b5061018d61080c565b348015610300575f80fd5b5061018d61030f366004610f45565b61086e565b34801561031f575f80fd5b5061018d61032e366004611025565b610888565b34801561033e575f80fd5b5061021b61034d366004610eeb565b6108bd565b34801561035d575f80fd5b5061026261036c366004611072565b6108c7565b34801561037c575f80fd5b505f546001600160a01b031661021b565b348015610398575f80fd5b506102626104a6565b3480156103ac575f80fd5b5061018d6103bb36600461108b565b61090d565b3480156103cb575f80fd5b5061018d6103da366004610eeb565b6109a1565b3480156103ea575f80fd5b5061018d6103f9366004610f1d565b6109cf565b348015610409575f80fd5b5061018d6104183660046110c4565b610a0c565b348015610428575f80fd5b506101ef610437366004610eeb565b610a1d565b348015610447575f80fd5b5061026260015481565b34801561045c575f80fd5b506101b261046b36600461113b565b610abe565b5f60015460035461048060055490565b61048a919061116c565b6104949190611197565b6002546104a19190610e5d565b905090565b5f7f00000000000000000000000000000000000000000000000000000000000138805a116104d2575f80fd5b5f6103e84233336001600160a01b0316316040516020016105189392919092835260609190911b6bffffffffffffffffffffffff19166020830152603482015260540190565b604051602081830303815290604052805190602001205f1c61053a91906111aa565b92915050565b600554825f0361056257604051622e076360e81b815260040160405180910390fd5b815f036105825760405163b562e8dd60e01b815260040160405180910390fd5b345f036105e9575f601e61059560055490565b6001546105a291906111bd565b6105ac9190611197565b435f908152600a602052604090205490915081116105c8575f80fd5b435f908152600a602052604081208054916105e2836111d0565b9190505550505b6001600160a01b0383165f9081526007602090815260408083208054680100000000000000018702019055838352600690915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061063357506005555b505050565b5f6301ffc9a760e01b6001600160e01b0319831614806106af57506380ac58cd60e01b6001600160e01b03198316145b8061053a5750506001600160e01b031916635b5e139f60e01b1490565b5f6106d8826005541190565b6106f5576040516333d1c03960e21b815260040160405180910390fd5b505f908152600860205260409020546001600160a01b031690565b5f61071a82610aeb565b9050806001600160a01b0316836001600160a01b031603610739575f80fd5b336001600160a01b03821614610770576107538133610abe565b610770576040516367d9dca160e11b815260040160405180910390fd5b5f8281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61067a838383610b54565b5f806107e95f546001600160a01b031690565b6103e86107f785601e61116c565b6108019190611197565b915091509250929050565b5f546001600160a01b0316331461083e5760405162461bcd60e51b8152600401610835906111e8565b60405180910390fd5b6040514790339082156108fc029083905f818181858888f1935050505015801561086a573d5f803e3d5ffd5b5050565b61067a83838360405180602001604052805f815250610a0c565b5f546001600160a01b031633146108b15760405162461bcd60e51b8152600401610835906111e8565b600461086a828261128e565b5f61053a82610aeb565b5f815f036108e8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526007602052604090205467ffffffffffffffff1690565b336001600160a01b038316036109365760405163b06307db60e01b815260040160405180910390fd5b335f8181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b5f546001600160a01b031633146109ca5760405162461bcd60e51b8152600401610835906111e8565b600355565b6040517319bb33b4838f3368ac49d7af22089104f9147b89904780156108fc02915f818181858888f1935050505015801561067a573d5f803e3d5ffd5b610a17848484610b54565b50505050565b60605f60405180610380016040528061034881526020016114ac610348913990505f81604051602001610a50919061134a565b60405160208183030381529060405290505f610a92610a6e83610ce6565b604051602001610a7e9190611365565b604051602081830303815290604052610ce6565b905080604051602001610aa59190611427565b60408051601f1981840301815291905295945050505050565b6001600160a01b039182165f90815260096020908152604080832093909416825291909152205460ff1690565b5f81600554811015610b3b575f8181526006602052604081205490600160e01b82169003610b39575b805f03610b3257505f19015f81815260066020526040902054610b14565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b5f610b5e82610aeb565b9050836001600160a01b0316816001600160a01b031614610b915760405162a1148160e81b815260040160405180910390fd5b5f828152600860205260408120546001600160a01b0390811691908616331480610bc05750610bc08633610abe565b80610bd357506001600160a01b03821633145b905080610bf357604051632ce44b5f60e11b815260040160405180910390fd5b8115610c15575f84815260086020526040902080546001600160a01b03191690555b6001600160a01b038681165f90815260076020908152604080832080545f1901905592881682528282208054600101905586825260069052908120600160e11b4260a01b8817811790915584169003610c9c57600184015f818152600660205260408120549003610c9a576005548114610c9a575f8181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b80516060905f819003610d0857505060408051602081019091525f8152919050565b5f6003610d16836002610e5d565b610d209190611197565b610d2b90600461116c565b90505f610d39826020610e5d565b67ffffffffffffffff811115610d5157610d51610f9e565b6040519080825280601f01601f191660200182016040528015610d7b576020820181803683370190505b5090505f60405180606001604052806040815260200161146c60409139905060018101602083015f5b86811015610e05576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101610da4565b506003860660018114610e1f5760028114610e3057610e3b565b613d3d60f01b600119830152610e3b565b603d60f81b5f198301525b505050918152949350505050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561053a5761053a610e49565b5f60208284031215610e80575f80fd5b81356001600160e01b031981168114610b32575f80fd5b5f5b83811015610eb1578181015183820152602001610e99565b50505f910152565b602081525f8251806020840152610ed7816040850160208701610e97565b601f01601f19169190910160400192915050565b5f60208284031215610efb575f80fd5b5035919050565b80356001600160a01b0381168114610f18575f80fd5b919050565b5f8060408385031215610f2e575f80fd5b610f3783610f02565b946020939093013593505050565b5f805f60608486031215610f57575f80fd5b610f6084610f02565b9250610f6e60208501610f02565b9150604084013590509250925092565b5f8060408385031215610f8f575f80fd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff80841115610fcc57610fcc610f9e565b604051601f8501601f19908116603f01168101908282118183101715610ff457610ff4610f9e565b8160405280935085815286868601111561100c575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215611035575f80fd5b813567ffffffffffffffff81111561104b575f80fd5b8201601f8101841361105b575f80fd5b61106a84823560208401610fb2565b949350505050565b5f60208284031215611082575f80fd5b610b3282610f02565b5f806040838503121561109c575f80fd5b6110a583610f02565b9150602083013580151581146110b9575f80fd5b809150509250929050565b5f805f80608085870312156110d7575f80fd5b6110e085610f02565b93506110ee60208601610f02565b925060408501359150606085013567ffffffffffffffff811115611110575f80fd5b8501601f81018713611120575f80fd5b61112f87823560208401610fb2565b91505092959194509250565b5f806040838503121561114c575f80fd5b61115583610f02565b915061116360208401610f02565b90509250929050565b808202811582820484141761053a5761053a610e49565b634e487b7160e01b5f52601260045260245ffd5b5f826111a5576111a5611183565b500490565b5f826111b8576111b8611183565b500690565b8181038181111561053a5761053a610e49565b5f600182016111e1576111e1610e49565b5060010190565b6020808252600990820152683737ba1027bbb732b960b91b604082015260600190565b600181811c9082168061121f57607f821691505b60208210810361123d57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561067a57805f5260205f20601f840160051c810160208510156112685750805b601f840160051c820191505b81811015611287575f8155600101611274565b5050505050565b815167ffffffffffffffff8111156112a8576112a8610f9e565b6112bc816112b6845461120b565b84611243565b602080601f8311600181146112ef575f84156112d85750858301515b5f19600386901b1c1916600185901b178555610cde565b5f85815260208120601f198616915b8281101561131d578886015182559484019460019091019084016112fe565b508582101561133a57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f825161135b818460208701610e97565b9190910192915050565b7f7b226465736372697074696f6e223a20224120736f6369616c2065787065726981527f6d656e7420746f20707261637469636520696e736372697074696f6e2026204e60208201527f465420696e2074686520657468657265756d2e222c2022696d616765223a202260408201527f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000060608201525f825161140e81607a850160208701610e97565b61227d60f01b607a939091019283015250607c01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081525f825161145e81601d850160208701610e97565b91909101601d019291505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c7376672077696474683d2234303022206865696768743d223430302220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c7374796c653e2e62677b66696c6c3a233264326432643b7d2e746578747b66696c6c3a236433643063383b666f6e743a3330707820636f75726965723b7d2e74776f7b66696c6c3a236632373737613b7d2e74687265657b66696c6c3a233939636339393b7d2e666f75727b66696c6c3a236666636336363b7d2e666976657b66696c6c3a233636393963633b7d3c2f7374796c653e3c6720636c6173733d22626f78223e3c726563742077696474683d223130302522206865696768743d22313030252220636c6173733d226267222f3e3c2f673e3c7465787420783d2232302220793d2238302220636c6173733d2274657874223e3c747370616e203e7b3c2f747370616e3e3c2f746578743e3c7465787420783d2236302220793d223132302220636c6173733d2274657874223e3c747370616e20636c6173733d22666f7572223e2270223a203c2f747370616e3e3c747370616e20636c6173733d22666f7572223e227073632d3230223c2f747370616e3e3c2f746578743e3c7465787420783d2236302220793d223136302220636c6173733d2274657874223e3c747370616e20636c6173733d22666f7572223e226f70223a203c2f747370616e3e3c747370616e20636c6173733d22666f7572223e226d696e74223c2f747370616e3e3c2f746578743e3c7465787420783d2236302220793d223230302220636c6173733d2274657874223e3c747370616e20636c6173733d22666f7572223e227469636b223a203c2f747370616e3e3c747370616e20636c6173733d22666f7572223e22706f7478223c2f747370616e3e3c2f746578743e3c7465787420783d2236302220793d223234302220636c6173733d2274657874223e3c747370616e20636c6173733d22666f7572223e22616d74223a203c2f747370616e3e3c747370616e20636c6173733d22666f7572223e313030303c2f747370616e3e3c2f746578743e3c7465787420783d2232302220793d223238302220636c6173733d2274657874223e3c747370616e20203e7d3c2f747370616e3e3c2f746578743e3c2f7376673ea26469706673582212203a6fcacf37f946809bc3ecd9d3b601d1400a81ef77cc186c631e66727de0dc5664736f6c63430008160033

Deployed Bytecode Sourcemap

11287:23460:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11828:10;11842:9;11828:23;11820:32;;;;;;11892:9;;18098:13;;11871:17;;11887:1;11871:17;:::i;:::-;:30;;11863:39;;;;;;11931:12;:10;:12::i;:::-;11917:11;:9;:11::i;:::-;:26;11913:66;;;11287:23460;11913:66;11989:20;11995:10;12007:1;11989:5;:20::i;:::-;11287:23460;;;;;18605:615;;;;;;;;;;-1:-1:-1;18605:615:0;;;;;:::i;:::-;;:::i;:::-;;;732:14:1;;725:22;707:41;;695:2;680:18;18605:615:0;;;;;;;;22812:100;;;;;;;;;;-1:-1:-1;22899:5:0;;;;;;;;;;;;-1:-1:-1;;;22899:5:0;;;;22812:100;;;;;;;:::i;24132:204::-;;;;;;;;;;-1:-1:-1;24132:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1764:32:1;;;1746:51;;1734:2;1719:18;24132:204:0;1600:203:1;23615:451:0;;;;;;;;;;-1:-1:-1;23615:451:0;;;;;:::i;:::-;;:::i;17848:300::-;;;;;;;;;;-1:-1:-1;18098:13:0;;17848:300;;;2391:25:1;;;2379:2;2364:18;17848:300:0;2245:177:1;12279:138:0;;;;;;;;;;;;;:::i;25018:190::-;;;;;;;;;;-1:-1:-1;25018:190:0;;;;;:::i;:::-;;:::i;12445:211::-;;;;;;;;;;-1:-1:-1;12445:211:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3205:32:1;;;3187:51;;3269:2;3254:18;;3247:34;;;;3160:18;12445:211:0;3013:274:1;34599:145:0;;;;;;;;;;;;;:::i;25552:205::-;;;;;;;;;;-1:-1:-1;25552:205:0;;;;;:::i;:::-;;:::i;17135:91::-;;;;;;;;;;-1:-1:-1;17135:91:0;;;;;:::i;:::-;;:::i;22601:144::-;;;;;;;;;;-1:-1:-1;22601:144:0;;;;;:::i;:::-;;:::i;19284:234::-;;;;;;;;;;-1:-1:-1;19284:234:0;;;;;:::i;:::-;;:::i;11352:77::-;;;;;;;;;;-1:-1:-1;11389:7:0;11415:6;-1:-1:-1;;;;;11415:6:0;11352:77;;12025:246;;;;;;;;;;;;;:::i;24408:308::-;;;;;;;;;;-1:-1:-1;24408:308:0;;;;;:::i;:::-;;:::i;12664:94::-;;;;;;;;;;-1:-1:-1;12664:94:0;;;;;:::i;:::-;;:::i;25275:206::-;;;;;;;;;;-1:-1:-1;25275:206:0;;;;;:::i;:::-;;:::i;25828:227::-;;;;;;;;;;-1:-1:-1;25828:227:0;;;;;:::i;:::-;;:::i;12766:1548::-;;;;;;;;;;-1:-1:-1;12766:1548:0;;;;;:::i;:::-;;:::i;11437:32::-;;;;;;;;;;;;;;;;24787:164;;;;;;;;;;-1:-1:-1;24787:164:0;;;;;:::i;:::-;;:::i;12279:138::-;12321:7;12400:9;;12382:15;;12366:13;18098;;;17848:300;12366:13;:31;;;;:::i;:::-;:43;;;;:::i;:::-;12348:15;;:61;;;;:::i;:::-;12341:68;;12279:138;:::o;12025:246::-;12066:7;12106:13;12094:9;:25;12086:34;;;;;;12136:11;12238:4;12185:15;12202:10;12214;-1:-1:-1;;;;;12214:18:0;;12168:65;;;;;;;;;6612:19:1;;;6669:2;6665:15;;;;-1:-1:-1;;6661:53:1;6656:2;6647:12;;6640:75;6740:2;6731:12;;6724:28;6777:2;6768:12;;6427:359;12168:65:0;;;;;;;;;;;;;12158:76;;;;;;12150:85;;:92;;;;:::i;:::-;12136:106;12025:246;-1:-1:-1;;12025:246:0:o;26743:1804::-;27070:13;;27116:2;27123:1;27098:26;27094:58;;27133:19;;-1:-1:-1;;;27133:19:0;;;;;;;;;;;27094:58;27167:8;27179:1;27167:13;27163:44;;27189:18;;-1:-1:-1;;;27189:18:0;;;;;;;;;;;27163:44;27222:9;27235:1;27222:14;27218:194;;27253:14;27300:2;27283:13;18098;;;17848:300;27283:13;27271:9;;:25;;;;:::i;:::-;27270:32;;;;:::i;:::-;27336:12;27325:24;;;;:10;:24;;;;;;27253:49;;-1:-1:-1;27325:33:0;-1:-1:-1;27317:42:0;;;;;;27385:12;27374:24;;;;:10;:24;;;;;:26;;;;;;:::i;:::-;;;;;;27238:174;27218:194;-1:-1:-1;;;;;27655:22:0;;;;;;:18;:22;;;;15078:2;27655:22;;;:70;;27693:31;27681:44;;27655:70;;;27968:31;;;:17;:31;;;;;28061:15;15595:3;28061:41;28019:84;;-1:-1:-1;28139:13:0;;15854:3;28124:56;28019:162;27968:213;;:31;28262:23;;;28302:111;28329:40;;28354:14;;;;;-1:-1:-1;;;;;28329:40:0;;;28346:1;;28329:40;;28346:1;;28329:40;28408:3;28393:12;:18;28302:111;;-1:-1:-1;28429:13:0;:28;28479:60;26797:1750;26743:1804;;:::o;18605:615::-;18690:4;-1:-1:-1;;;;;;;;;18990:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19067:25:0;;;18990:102;:179;;;-1:-1:-1;;;;;;;;19144:25:0;-1:-1:-1;;;19144:25:0;;18605:615::o;24132:204::-;24200:7;24225:16;24233:7;26457:13;;-1:-1:-1;26447:23:0;26310:168;24225:16;24220:64;;24250:34;;-1:-1:-1;;;24250:34:0;;;;;;;;;;;24220:64;-1:-1:-1;24304:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24304:24:0;;24132:204::o;23615:451::-;23688:13;23720:27;23739:7;23720:18;:27::i;:::-;23688:61;;23770:5;-1:-1:-1;;;;;23764:11:0;:2;-1:-1:-1;;;;;23764:11:0;;23760:25;;23777:8;;;23760:25;32483:10;-1:-1:-1;;;;;23802:28:0;;;23798:175;;23850:44;23867:5;32483:10;24787:164;:::i;23850:44::-;23845:128;;23922:35;;-1:-1:-1;;;23922:35:0;;;;;;;;;;;23845:128;23985:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23985:29:0;-1:-1:-1;;;;;23985:29:0;;;;;;;;;24030:28;;23985:24;;24030:28;;;;;;;23677:389;23615:451;;:::o;25018:190::-;25172:28;25182:4;25188:2;25192:7;25172:9;:28::i;12445:211::-;12552:16;12570:21;12617:7;11389;11415:6;-1:-1:-1;;;;;11415:6:0;;11352:77;12617:7;12643:4;12626:14;:9;12638:2;12626:14;:::i;:::-;:21;;;;:::i;:::-;12609:39;;;;12445:211;;;;;:::o;34599:145::-;34538:6;;-1:-1:-1;;;;;34538:6:0;34546:10;34538:18;34530:40;;;;-1:-1:-1;;;34530:40:0;;;;;;;:::i;:::-;;;;;;;;;34699:37:::1;::::0;34667:21:::1;::::0;34707:10:::1;::::0;34699:37;::::1;;;::::0;34667:21;;34649:15:::1;34699:37:::0;34649:15;34699:37;34667:21;34707:10;34699:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;34638:106;34599:145::o:0;25552:205::-;25710:39;25727:4;25733:2;25737:7;25710:39;;;;;;;;;;;;:16;:39::i;17135:91::-;34538:6;;-1:-1:-1;;;;;34538:6:0;34546:10;34538:18;34530:40;;;;-1:-1:-1;;;34530:40:0;;;;;;;:::i;:::-;17202:8:::1;:16;17213:5:::0;17202:8;:16:::1;:::i;22601:144::-:0;22665:7;22708:27;22727:7;22708:18;:27::i;19284:234::-;19348:7;19390:5;19400:1;19372:29;19368:70;;19410:28;;-1:-1:-1;;;19410:28:0;;;;;;;;;;;19368:70;-1:-1:-1;;;;;;19456:25:0;;;;;:18;:25;;;;;;14941:13;19456:54;;19284:234::o;24408:308::-;32483:10;-1:-1:-1;;;;;24507:31:0;;;24503:61;;24547:17;;-1:-1:-1;;;24547:17:0;;;;;;;;;;;24503:61;32483:10;24577:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24577:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24577:60:0;;;;;;;;;;24653:55;;707:41:1;;;24577:49:0;;32483:10;24653:55;;680:18:1;24653:55:0;;;;;;;24408:308;;:::o;12664:94::-;34538:6;;-1:-1:-1;;;;;34538:6:0;34546:10;34538:18;34530:40;;;;-1:-1:-1;;;34530:40:0;;;;;;;:::i;:::-;12728:15:::1;:22:::0;12664:94::o;25275:206::-;25381:92;;25397:42;;25451:21;25381:92;;;;;;;;;25451:21;25397:42;25381:92;;;;;;;;;;;;;;;;;;;25828:227;26019:28;26029:4;26035:2;26039:7;26019:9;:28::i;:::-;25828:227;;;;:::o;12766:1548::-;12854:13;12882:20;:865;;;;;;;;;;;;;;;;;;;13760:17;13811:6;13780:48;;;;;;;;:::i;:::-;;;;;;;;;;;;;13760:68;;13841:18;13862:337;14105:19;14119:4;14105:13;:19::i;:::-;13927:235;;;;;;;;:::i;:::-;;;;;;;;;;;;;13862:13;:337::i;:::-;13841:358;;14276:4;14226:55;;;;;;;;:::i;:::-;;;;-1:-1:-1;;14226:55:0;;;;;;;;;;12766:1548;-1:-1:-1;;;;;12766:1548:0:o;24787:164::-;-1:-1:-1;;;;;24908:25:0;;;24884:4;24908:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24787:164::o;20116:1129::-;20183:7;20218;20320:13;;20313:4;:20;20309:869;;;20358:14;20375:23;;;:17;:23;;;;;;;-1:-1:-1;;;20464:23:0;;:28;;20460:699;;20983:113;20990:6;21000:1;20990:11;20983:113;;-1:-1:-1;;;21061:6:0;21043:25;;;;:17;:25;;;;;;20983:113;;;21129:6;20116:1129;-1:-1:-1;;;20116:1129:0:o;20460:699::-;20335:843;20309:869;21206:31;;-1:-1:-1;;;21206:31:0;;;;;;;;;;;28801:2557;28938:27;28968;28987:7;28968:18;:27::i;:::-;28938:57;;29053:4;-1:-1:-1;;;;;29012:45:0;29028:19;-1:-1:-1;;;;;29012:45:0;;29008:86;;29066:28;;-1:-1:-1;;;29066:28:0;;;;;;;;;;;29008:86;29107:23;29133:24;;;:15;:24;;;;;;-1:-1:-1;;;;;29133:24:0;;;;29107:23;29196:27;;32483:10;29196:27;;:91;;-1:-1:-1;29244:43:0;29261:4;32483:10;24787:164;:::i;29244:43::-;29196:150;;;-1:-1:-1;;;;;;29308:38:0;;32483:10;29308:38;29196:150;29170:177;;29365:17;29360:66;;29391:35;;-1:-1:-1;;;29391:35:0;;;;;;;;;;;29360:66;29516:15;29498:39;29494:103;;29561:24;;;;:15;:24;;;;;29554:31;;-1:-1:-1;;;;;;29554:31:0;;;29494:103;-1:-1:-1;;;;;29964:24:0;;;;;;;:18;:24;;;;;;;;29962:26;;-1:-1:-1;;29962:26:0;;;30033:22;;;;;;;;30031:24;;-1:-1:-1;30031:24:0;;;30326:26;;;:17;:26;;;;;-1:-1:-1;;;30414:15:0;15595:3;30414:41;30372:84;;:128;;30326:174;;;30620:46;;:51;;30616:626;;30724:1;30714:11;;30692:19;30847:30;;;:17;:30;;;;;;:35;;30843:384;;30985:13;;30970:11;:28;30966:242;;31132:30;;;;:17;:30;;;;;:52;;;30966:242;30673:569;30616:626;31289:7;31285:2;-1:-1:-1;;;;;31270:27:0;31279:4;-1:-1:-1;;;;;31270:27:0;;;;;;;;;;;31308:42;28925:2433;;;28801:2557;;;:::o;9671:1607::-;9769:11;;9729:13;;9755:11;9795:8;;;9791:23;;-1:-1:-1;;9805:9:0;;;;;;;;;-1:-1:-1;9805:9:0;;;9671:1607;-1:-1:-1;9671:1607:0:o;9791:23::-;9866:18;9904:1;9893:7;:3;9899:1;9893:7;:::i;:::-;9892:13;;;;:::i;:::-;9887:19;;:1;:19;:::i;:::-;9866:40;-1:-1:-1;9964:19:0;9996:15;9866:40;10009:2;9996:15;:::i;:::-;9986:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9986:26:0;;9964:48;;10025:18;10046:5;;;;;;;;;;;;;;;;;10025:26;;10115:1;10108:5;10104:13;10160:2;10152:6;10148:15;10211:1;10179:777;10234:3;10231:1;10228:10;10179:777;;;10289:1;10332:12;;;;;10326:19;10427:4;10415:2;10411:14;;;;;10393:40;;10387:47;10536:2;10532:14;;;10528:25;;10514:40;;10508:47;10665:1;10661:13;;;10657:24;;10643:39;;10637:46;10785:16;;;;10771:31;;10765:38;10463:1;10459:11;;;10557:4;10504:58;;;10495:68;10588:11;;10633:57;;;10624:67;;;;10716:11;;10761:49;;10752:59;10840:3;10836:13;10869:22;;10939:1;10924:17;;;;10282:9;10179:777;;;10183:44;10988:1;10983:3;10979:11;11009:1;11004:84;;;;11107:1;11102:82;;;;10972:212;;11004:84;-1:-1:-1;;;;;11037:17:0;;11030:43;11004:84;;11102:82;-1:-1:-1;;;;;11135:17:0;;11128:41;10972:212;-1:-1:-1;;;11200:26:0;;;11207:6;9671:1607;-1:-1:-1;;;;9671:1607:0:o;14:127:1:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:125;211:9;;;232:10;;;229:36;;;245:18;;:::i;276:286::-;334:6;387:2;375:9;366:7;362:23;358:32;355:52;;;403:1;400;393:12;355:52;429:23;;-1:-1:-1;;;;;;481:32:1;;471:43;;461:71;;528:1;525;518:12;759:250;844:1;854:113;868:6;865:1;862:13;854:113;;;944:11;;;938:18;925:11;;;918:39;890:2;883:10;854:113;;;-1:-1:-1;;1001:1:1;983:16;;976:27;759:250::o;1014:396::-;1163:2;1152:9;1145:21;1126:4;1195:6;1189:13;1238:6;1233:2;1222:9;1218:18;1211:34;1254:79;1326:6;1321:2;1310:9;1306:18;1301:2;1293:6;1289:15;1254:79;:::i;:::-;1394:2;1373:15;-1:-1:-1;;1369:29:1;1354:45;;;;1401:2;1350:54;;1014:396;-1:-1:-1;;1014:396:1:o;1415:180::-;1474:6;1527:2;1515:9;1506:7;1502:23;1498:32;1495:52;;;1543:1;1540;1533:12;1495:52;-1:-1:-1;1566:23:1;;1415:180;-1:-1:-1;1415:180:1:o;1808:173::-;1876:20;;-1:-1:-1;;;;;1925:31:1;;1915:42;;1905:70;;1971:1;1968;1961:12;1905:70;1808:173;;;:::o;1986:254::-;2054:6;2062;2115:2;2103:9;2094:7;2090:23;2086:32;2083:52;;;2131:1;2128;2121:12;2083:52;2154:29;2173:9;2154:29;:::i;:::-;2144:39;2230:2;2215:18;;;;2202:32;;-1:-1:-1;;;1986:254:1:o;2427:328::-;2504:6;2512;2520;2573:2;2561:9;2552:7;2548:23;2544:32;2541:52;;;2589:1;2586;2579:12;2541:52;2612:29;2631:9;2612:29;:::i;:::-;2602:39;;2660:38;2694:2;2683:9;2679:18;2660:38;:::i;:::-;2650:48;;2745:2;2734:9;2730:18;2717:32;2707:42;;2427:328;;;;;:::o;2760:248::-;2828:6;2836;2889:2;2877:9;2868:7;2864:23;2860:32;2857:52;;;2905:1;2902;2895:12;2857:52;-1:-1:-1;;2928:23:1;;;2998:2;2983:18;;;2970:32;;-1:-1:-1;2760:248:1:o;3292:127::-;3353:10;3348:3;3344:20;3341:1;3334:31;3384:4;3381:1;3374:15;3408:4;3405:1;3398:15;3424:632;3489:5;3519:18;3560:2;3552:6;3549:14;3546:40;;;3566:18;;:::i;:::-;3641:2;3635:9;3609:2;3695:15;;-1:-1:-1;;3691:24:1;;;3717:2;3687:33;3683:42;3671:55;;;3741:18;;;3761:22;;;3738:46;3735:72;;;3787:18;;:::i;:::-;3827:10;3823:2;3816:22;3856:6;3847:15;;3886:6;3878;3871:22;3926:3;3917:6;3912:3;3908:16;3905:25;3902:45;;;3943:1;3940;3933:12;3902:45;3993:6;3988:3;3981:4;3973:6;3969:17;3956:44;4048:1;4041:4;4032:6;4024;4020:19;4016:30;4009:41;;;;3424:632;;;;;:::o;4061:451::-;4130:6;4183:2;4171:9;4162:7;4158:23;4154:32;4151:52;;;4199:1;4196;4189:12;4151:52;4239:9;4226:23;4272:18;4264:6;4261:30;4258:50;;;4304:1;4301;4294:12;4258:50;4327:22;;4380:4;4372:13;;4368:27;-1:-1:-1;4358:55:1;;4409:1;4406;4399:12;4358:55;4432:74;4498:7;4493:2;4480:16;4475:2;4471;4467:11;4432:74;:::i;:::-;4422:84;4061:451;-1:-1:-1;;;;4061:451:1:o;4517:186::-;4576:6;4629:2;4617:9;4608:7;4604:23;4600:32;4597:52;;;4645:1;4642;4635:12;4597:52;4668:29;4687:9;4668:29;:::i;4708:347::-;4773:6;4781;4834:2;4822:9;4813:7;4809:23;4805:32;4802:52;;;4850:1;4847;4840:12;4802:52;4873:29;4892:9;4873:29;:::i;:::-;4863:39;;4952:2;4941:9;4937:18;4924:32;4999:5;4992:13;4985:21;4978:5;4975:32;4965:60;;5021:1;5018;5011:12;4965:60;5044:5;5034:15;;;4708:347;;;;;:::o;5060:667::-;5155:6;5163;5171;5179;5232:3;5220:9;5211:7;5207:23;5203:33;5200:53;;;5249:1;5246;5239:12;5200:53;5272:29;5291:9;5272:29;:::i;:::-;5262:39;;5320:38;5354:2;5343:9;5339:18;5320:38;:::i;:::-;5310:48;;5405:2;5394:9;5390:18;5377:32;5367:42;;5460:2;5449:9;5445:18;5432:32;5487:18;5479:6;5476:30;5473:50;;;5519:1;5516;5509:12;5473:50;5542:22;;5595:4;5587:13;;5583:27;-1:-1:-1;5573:55:1;;5624:1;5621;5614:12;5573:55;5647:74;5713:7;5708:2;5695:16;5690:2;5686;5682:11;5647:74;:::i;:::-;5637:84;;;5060:667;;;;;;;:::o;5732:260::-;5800:6;5808;5861:2;5849:9;5840:7;5836:23;5832:32;5829:52;;;5877:1;5874;5867:12;5829:52;5900:29;5919:9;5900:29;:::i;:::-;5890:39;;5948:38;5982:2;5971:9;5967:18;5948:38;:::i;:::-;5938:48;;5732:260;;;;;:::o;5997:168::-;6070:9;;;6101;;6118:15;;;6112:22;;6098:37;6088:71;;6139:18;;:::i;6170:127::-;6231:10;6226:3;6222:20;6219:1;6212:31;6262:4;6259:1;6252:15;6286:4;6283:1;6276:15;6302:120;6342:1;6368;6358:35;;6373:18;;:::i;:::-;-1:-1:-1;6407:9:1;;6302:120::o;6791:112::-;6823:1;6849;6839:35;;6854:18;;:::i;:::-;-1:-1:-1;6888:9:1;;6791:112::o;6908:128::-;6975:9;;;6996:11;;;6993:37;;;7010:18;;:::i;7041:135::-;7080:3;7101:17;;;7098:43;;7121:18;;:::i;:::-;-1:-1:-1;7168:1:1;7157:13;;7041:135::o;7181:332::-;7383:2;7365:21;;;7422:1;7402:18;;;7395:29;-1:-1:-1;;;7455:2:1;7440:18;;7433:39;7504:2;7489:18;;7181:332::o;7518:380::-;7597:1;7593:12;;;;7640;;;7661:61;;7715:4;7707:6;7703:17;7693:27;;7661:61;7768:2;7760:6;7757:14;7737:18;7734:38;7731:161;;7814:10;7809:3;7805:20;7802:1;7795:31;7849:4;7846:1;7839:15;7877:4;7874:1;7867:15;7731:161;;7518:380;;;:::o;8029:518::-;8131:2;8126:3;8123:11;8120:421;;;8167:5;8164:1;8157:16;8211:4;8208:1;8198:18;8281:2;8269:10;8265:19;8262:1;8258:27;8252:4;8248:38;8317:4;8305:10;8302:20;8299:47;;;-1:-1:-1;8340:4:1;8299:47;8395:2;8390:3;8386:12;8383:1;8379:20;8373:4;8369:31;8359:41;;8450:81;8468:2;8461:5;8458:13;8450:81;;;8527:1;8513:16;;8494:1;8483:13;8450:81;;;8454:3;;8029:518;;;:::o;8723:1345::-;8849:3;8843:10;8876:18;8868:6;8865:30;8862:56;;;8898:18;;:::i;:::-;8927:97;9017:6;8977:38;9009:4;9003:11;8977:38;:::i;:::-;8971:4;8927:97;:::i;:::-;9079:4;;9136:2;9125:14;;9153:1;9148:663;;;;9855:1;9872:6;9869:89;;;-1:-1:-1;9924:19:1;;;9918:26;9869:89;-1:-1:-1;;8680:1:1;8676:11;;;8672:24;8668:29;8658:40;8704:1;8700:11;;;8655:57;9971:81;;9118:944;;9148:663;7976:1;7969:14;;;8013:4;8000:18;;-1:-1:-1;;9184:20:1;;;9302:236;9316:7;9313:1;9310:14;9302:236;;;9405:19;;;9399:26;9384:42;;9497:27;;;;9465:1;9453:14;;;;9332:19;;9302:236;;;9306:3;9566:6;9557:7;9554:19;9551:201;;;9627:19;;;9621:26;-1:-1:-1;;9710:1:1;9706:14;;;9722:3;9702:24;9698:37;9694:42;9679:58;9664:74;;9551:201;-1:-1:-1;;;;;9798:1:1;9782:14;;;9778:22;9765:36;;-1:-1:-1;8723:1345:1:o;10073:289::-;10204:3;10242:6;10236:13;10258:66;10317:6;10312:3;10305:4;10297:6;10293:17;10258:66;:::i;:::-;10340:16;;;;;10073:289;-1:-1:-1;;10073:289:1:o;10367:884::-;10730:66;10725:3;10718:79;10827:34;10822:2;10817:3;10813:12;10806:56;10892:66;10887:2;10882:3;10878:12;10871:88;10989:28;10984:2;10979:3;10975:12;10968:50;10700:3;11047:6;11041:13;11063:74;11130:6;11124:3;11119;11115:13;11110:2;11102:6;11098:15;11063:74;:::i;:::-;-1:-1:-1;;;11196:3:1;11156:16;;;;11188:12;;;11181:36;-1:-1:-1;11241:3:1;11233:12;;10367:884;-1:-1:-1;10367:884:1:o;11256:461::-;11518:31;11513:3;11506:44;11488:3;11579:6;11573:13;11595:75;11663:6;11658:2;11653:3;11649:12;11642:4;11634:6;11630:17;11595:75;:::i;:::-;11690:16;;;;11708:2;11686:25;;11256:461;-1:-1:-1;;11256:461:1:o

Swarm Source

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