ETH Price: $2,688.11 (-2.16%)

Token

goblinjump (goblinjump)
 

Overview

Max Total Supply

1,788 goblinjump

Holders

85

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 goblinjump
0xc0268880fc437b67d56eaa59aacd2974d7c82cb5
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:
goblinjump

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.2;

contract goblinjump is ERC721A, Ownable {
    string public _werjumpers;
    bool public wenjump = true;
    uint256 public constant jumpers = 9999;
    mapping(address => uint256) public howmanyjump;

	constructor() ERC721A("goblinjump", "goblinjump") {}

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

    function jumpforfre() external payable {
        require(wenjump);
        require(totalSupply() + 1 < jumpers);
        require(msg.sender == tx.origin);
    	require(howmanyjump[msg.sender] < 1);
        howmanyjump[msg.sender] += 1;
        _mint(msg.sender, 1);
    }

    function jumpformone(uint256 somuch) external payable {
        require(wenjump);
        require(totalSupply() + somuch < jumpers);
        require(msg.sender == tx.origin);
    	require(msg.value == 0.0069 ether * somuch);
        require(howmanyjump[msg.sender] + somuch < 17);
        howmanyjump[msg.sender] += somuch;
        _mint(msg.sender, somuch);
    }

 	function jumpsohigh(address lords, uint256 somuch) public onlyOwner {
	    require(totalSupply() + somuch <= jumpers);
        _mint(lords, somuch);
    }

    function makewenjump(bool _wen) external onlyOwner {
        wenjump = _wen;
    }

    function makewerjump(string memory _wer) external onlyOwner {
        _werjumpers = _wer;
    }

    function sumthinboutfunds() public payable onlyOwner {
	    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
		require(success);
	}

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_werjumpers","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"howmanyjump","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"jumpers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"jumpforfre","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"somuch","type":"uint256"}],"name":"jumpformone","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"lords","type":"address"},{"internalType":"uint256","name":"somuch","type":"uint256"}],"name":"jumpsohigh","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_wen","type":"bool"}],"name":"makewenjump","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_wer","type":"string"}],"name":"makewerjump","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"sumthinboutfunds","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wenjump","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6080604052600a805460ff191660011790553480156200001e57600080fd5b50604080518082018252600a808252690676f626c696e6a756d760b41b6020808401828152855180870190965292855284015281519192916200006491600291620000e4565b5080516200007a906003906020840190620000e4565b505060008055506200008c3362000092565b620001c6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000f2906200018a565b90600052602060002090601f01602090048101928262000116576000855562000161565b82601f106200013157805160ff191683800117855562000161565b8280016001018555821562000161579182015b828111156200016157825182559160200191906001019062000144565b506200016f92915062000173565b5090565b5b808211156200016f576000815560010162000174565b600181811c908216806200019f57607f821691505b602082108103620001c057634e487b7160e01b600052602260045260246000fd5b50919050565b6116de80620001d66000396000f3fe60806040526004361061019c5760003560e01c80638da5cb5b116100ec578063d0a8811e1161008a578063e985e9c511610064578063e985e9c514610475578063f11beb82146104be578063f2fde38b146104d3578063ff6eb1aa146104f357600080fd5b8063d0a8811e14610412578063dad2069914610432578063df4400b01461044857600080fd5b8063b0d3b477116100c6578063b0d3b47714610392578063b7c9dfeb146103b2578063b88d4fde146103d2578063c87b56dd146103f257600080fd5b80638da5cb5b1461033f57806395d89b411461035d578063a22cb4651461037257600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e146102ca5780636352211e146102ea57806370a082311461030a578063715018a61461032a57600080fd5b806323b872dd1461028857806327241e44146102a857806333958a18146102c257600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd146102525780631c8d692914610275575b600080fd5b3480156101ad57600080fd5b506101c16101bc36600461124c565b6104fb565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb61054d565b6040516101cd91906112c1565b34801561020457600080fd5b506102186102133660046112d4565b6105df565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611309565b610623565b005b34801561025e57600080fd5b50600154600054035b6040519081526020016101cd565b6102506102833660046112d4565b6106f5565b34801561029457600080fd5b506102506102a3366004611333565b6107ab565b3480156102b457600080fd5b50600a546101c19060ff1681565b6102506107bb565b3480156102d657600080fd5b506102506102e5366004611333565b610843565b3480156102f657600080fd5b506102186103053660046112d4565b61085e565b34801561031657600080fd5b5061026761032536600461136f565b610869565b34801561033657600080fd5b506102506108b8565b34801561034b57600080fd5b506008546001600160a01b0316610218565b34801561036957600080fd5b506101eb6108ee565b34801561037e57600080fd5b5061025061038d36600461139a565b6108fd565b34801561039e57600080fd5b506102506103ad366004611459565b610992565b3480156103be57600080fd5b506102506103cd3660046114a2565b6109d3565b3480156103de57600080fd5b506102506103ed3660046114bd565b610a10565b3480156103fe57600080fd5b506101eb61040d3660046112d4565b610a5a565b34801561041e57600080fd5b5061025061042d366004611309565b610ade565b34801561043e57600080fd5b5061026761270f81565b34801561045457600080fd5b5061026761046336600461136f565b600b6020526000908152604090205481565b34801561048157600080fd5b506101c1610490366004611539565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104ca57600080fd5b506101eb610b38565b3480156104df57600080fd5b506102506104ee36600461136f565b610bc6565b610250610c5e565b60006301ffc9a760e01b6001600160e01b03198316148061052c57506380ac58cd60e01b6001600160e01b03198316145b806105475750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461055c90611563565b80601f016020809104026020016040519081016040528092919081815260200182805461058890611563565b80156105d55780601f106105aa576101008083540402835291602001916105d5565b820191906000526020600020905b8154815290600101906020018083116105b857829003601f168201915b5050505050905090565b60006105ea82610ceb565b610607576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061062e82610d12565b9050806001600160a01b0316836001600160a01b0316036106625760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106995761067c8133610490565b610699576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600a5460ff1661070457600080fd5b61270f816107156001546000540390565b61071f91906115b3565b1061072957600080fd5b33321461073557600080fd5b610746816618838370f340006115cb565b341461075157600080fd5b336000908152600b602052604090205460119061076f9083906115b3565b1061077957600080fd5b336000908152600b6020526040812080548392906107989084906115b3565b909155506107a890503382610d79565b50565b6107b6838383610e5a565b505050565b6008546001600160a01b031633146107ee5760405162461bcd60e51b81526004016107e5906115ea565b60405180910390fd5b604051600090339047908381818185875af1925050503d8060008114610830576040519150601f19603f3d011682016040523d82523d6000602084013e610835565b606091505b50509050806107a857600080fd5b6107b683838360405180602001604052806000815250610a10565b600061054782610d12565b60006001600160a01b038216610892576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108e25760405162461bcd60e51b81526004016107e5906115ea565b6108ec6000611001565b565b60606003805461055c90611563565b336001600160a01b038316036109265760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146109bc5760405162461bcd60e51b81526004016107e5906115ea565b80516109cf90600990602084019061119d565b5050565b6008546001600160a01b031633146109fd5760405162461bcd60e51b81526004016107e5906115ea565b600a805460ff1916911515919091179055565b610a1b848484610e5a565b6001600160a01b0383163b15610a5457610a3784848484611053565b610a54576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610a6582610ceb565b610a8257604051630a14c4b560e41b815260040160405180910390fd5b6000610a8c61113f565b90508051600003610aac5760405180602001604052806000815250610ad7565b80610ab68461114e565b604051602001610ac792919061161f565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610b085760405162461bcd60e51b81526004016107e5906115ea565b61270f81610b196001546000540390565b610b2391906115b3565b1115610b2e57600080fd5b6109cf8282610d79565b60098054610b4590611563565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7190611563565b8015610bbe5780601f10610b9357610100808354040283529160200191610bbe565b820191906000526020600020905b815481529060010190602001808311610ba157829003601f168201915b505050505081565b6008546001600160a01b03163314610bf05760405162461bcd60e51b81526004016107e5906115ea565b6001600160a01b038116610c555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e5565b6107a881611001565b600a5460ff16610c6d57600080fd5b61270f610c7d6001546000540390565b610c889060016115b3565b10610c9257600080fd5b333214610c9e57600080fd5b336000908152600b6020526040902054600111610cba57600080fd5b336000908152600b60205260408120805460019290610cda9084906115b3565b909155506108ec9050336001610d79565b6000805482108015610547575050600090815260046020526040902054600160e01b161590565b600081600054811015610d605760008181526004602052604081205490600160e01b82169003610d5e575b80600003610ad7575060001901600081815260046020526040902054610d3d565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b038316610da257604051622e076360e81b815260040160405180910390fd5b81600003610dc35760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610e0e5750600055505050565b6000610e6582610d12565b9050836001600160a01b0316816001600160a01b031614610e985760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610eb65750610eb68533610490565b80610ed1575033610ec6846105df565b6001600160a01b0316145b905080610ef157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f1857604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003610fb957600183016000818152600460205260408120549003610fb7576000548114610fb75760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061108890339089908890889060040161164e565b6020604051808303816000875af19250505080156110c3575060408051601f3d908101601f191682019092526110c09181019061168b565b60015b611121573d8080156110f1576040519150601f19603f3d011682016040523d82523d6000602084013e6110f6565b606091505b508051600003611119576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461055c90611563565b604080516080810191829052607f0190826030600a8206018353600a90045b801561118b57600183039250600a81066030018353600a900461116d565b50819003601f19909101908152919050565b8280546111a990611563565b90600052602060002090601f0160209004810192826111cb5760008555611211565b82601f106111e457805160ff1916838001178555611211565b82800160010185558215611211579182015b828111156112115782518255916020019190600101906111f6565b5061121d929150611221565b5090565b5b8082111561121d5760008155600101611222565b6001600160e01b0319811681146107a857600080fd5b60006020828403121561125e57600080fd5b8135610ad781611236565b60005b8381101561128457818101518382015260200161126c565b83811115610a545750506000910152565b600081518084526112ad816020860160208601611269565b601f01601f19169290920160200192915050565b602081526000610ad76020830184611295565b6000602082840312156112e657600080fd5b5035919050565b80356001600160a01b038116811461130457600080fd5b919050565b6000806040838503121561131c57600080fd5b611325836112ed565b946020939093013593505050565b60008060006060848603121561134857600080fd5b611351846112ed565b925061135f602085016112ed565b9150604084013590509250925092565b60006020828403121561138157600080fd5b610ad7826112ed565b8035801515811461130457600080fd5b600080604083850312156113ad57600080fd5b6113b6836112ed565b91506113c46020840161138a565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156113fe576113fe6113cd565b604051601f8501601f19908116603f01168101908282118183101715611426576114266113cd565b8160405280935085815286868601111561143f57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561146b57600080fd5b813567ffffffffffffffff81111561148257600080fd5b8201601f8101841361149357600080fd5b611137848235602084016113e3565b6000602082840312156114b457600080fd5b610ad78261138a565b600080600080608085870312156114d357600080fd5b6114dc856112ed565b93506114ea602086016112ed565b925060408501359150606085013567ffffffffffffffff81111561150d57600080fd5b8501601f8101871361151e57600080fd5b61152d878235602084016113e3565b91505092959194509250565b6000806040838503121561154c57600080fd5b611555836112ed565b91506113c4602084016112ed565b600181811c9082168061157757607f821691505b60208210810361159757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156115c6576115c661159d565b500190565b60008160001904831182151516156115e5576115e561159d565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008351611631818460208801611269565b835190830190611645818360208801611269565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061168190830184611295565b9695505050505050565b60006020828403121561169d57600080fd5b8151610ad78161123656fea2646970667358221220b37e8accbff67053f16d0ca12f3ba610ca798dd84fe0f34220a72159bfaa730764736f6c634300080e0033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80638da5cb5b116100ec578063d0a8811e1161008a578063e985e9c511610064578063e985e9c514610475578063f11beb82146104be578063f2fde38b146104d3578063ff6eb1aa146104f357600080fd5b8063d0a8811e14610412578063dad2069914610432578063df4400b01461044857600080fd5b8063b0d3b477116100c6578063b0d3b47714610392578063b7c9dfeb146103b2578063b88d4fde146103d2578063c87b56dd146103f257600080fd5b80638da5cb5b1461033f57806395d89b411461035d578063a22cb4651461037257600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e146102ca5780636352211e146102ea57806370a082311461030a578063715018a61461032a57600080fd5b806323b872dd1461028857806327241e44146102a857806333958a18146102c257600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd146102525780631c8d692914610275575b600080fd5b3480156101ad57600080fd5b506101c16101bc36600461124c565b6104fb565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb61054d565b6040516101cd91906112c1565b34801561020457600080fd5b506102186102133660046112d4565b6105df565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611309565b610623565b005b34801561025e57600080fd5b50600154600054035b6040519081526020016101cd565b6102506102833660046112d4565b6106f5565b34801561029457600080fd5b506102506102a3366004611333565b6107ab565b3480156102b457600080fd5b50600a546101c19060ff1681565b6102506107bb565b3480156102d657600080fd5b506102506102e5366004611333565b610843565b3480156102f657600080fd5b506102186103053660046112d4565b61085e565b34801561031657600080fd5b5061026761032536600461136f565b610869565b34801561033657600080fd5b506102506108b8565b34801561034b57600080fd5b506008546001600160a01b0316610218565b34801561036957600080fd5b506101eb6108ee565b34801561037e57600080fd5b5061025061038d36600461139a565b6108fd565b34801561039e57600080fd5b506102506103ad366004611459565b610992565b3480156103be57600080fd5b506102506103cd3660046114a2565b6109d3565b3480156103de57600080fd5b506102506103ed3660046114bd565b610a10565b3480156103fe57600080fd5b506101eb61040d3660046112d4565b610a5a565b34801561041e57600080fd5b5061025061042d366004611309565b610ade565b34801561043e57600080fd5b5061026761270f81565b34801561045457600080fd5b5061026761046336600461136f565b600b6020526000908152604090205481565b34801561048157600080fd5b506101c1610490366004611539565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104ca57600080fd5b506101eb610b38565b3480156104df57600080fd5b506102506104ee36600461136f565b610bc6565b610250610c5e565b60006301ffc9a760e01b6001600160e01b03198316148061052c57506380ac58cd60e01b6001600160e01b03198316145b806105475750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461055c90611563565b80601f016020809104026020016040519081016040528092919081815260200182805461058890611563565b80156105d55780601f106105aa576101008083540402835291602001916105d5565b820191906000526020600020905b8154815290600101906020018083116105b857829003601f168201915b5050505050905090565b60006105ea82610ceb565b610607576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061062e82610d12565b9050806001600160a01b0316836001600160a01b0316036106625760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106995761067c8133610490565b610699576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600a5460ff1661070457600080fd5b61270f816107156001546000540390565b61071f91906115b3565b1061072957600080fd5b33321461073557600080fd5b610746816618838370f340006115cb565b341461075157600080fd5b336000908152600b602052604090205460119061076f9083906115b3565b1061077957600080fd5b336000908152600b6020526040812080548392906107989084906115b3565b909155506107a890503382610d79565b50565b6107b6838383610e5a565b505050565b6008546001600160a01b031633146107ee5760405162461bcd60e51b81526004016107e5906115ea565b60405180910390fd5b604051600090339047908381818185875af1925050503d8060008114610830576040519150601f19603f3d011682016040523d82523d6000602084013e610835565b606091505b50509050806107a857600080fd5b6107b683838360405180602001604052806000815250610a10565b600061054782610d12565b60006001600160a01b038216610892576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108e25760405162461bcd60e51b81526004016107e5906115ea565b6108ec6000611001565b565b60606003805461055c90611563565b336001600160a01b038316036109265760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146109bc5760405162461bcd60e51b81526004016107e5906115ea565b80516109cf90600990602084019061119d565b5050565b6008546001600160a01b031633146109fd5760405162461bcd60e51b81526004016107e5906115ea565b600a805460ff1916911515919091179055565b610a1b848484610e5a565b6001600160a01b0383163b15610a5457610a3784848484611053565b610a54576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610a6582610ceb565b610a8257604051630a14c4b560e41b815260040160405180910390fd5b6000610a8c61113f565b90508051600003610aac5760405180602001604052806000815250610ad7565b80610ab68461114e565b604051602001610ac792919061161f565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610b085760405162461bcd60e51b81526004016107e5906115ea565b61270f81610b196001546000540390565b610b2391906115b3565b1115610b2e57600080fd5b6109cf8282610d79565b60098054610b4590611563565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7190611563565b8015610bbe5780601f10610b9357610100808354040283529160200191610bbe565b820191906000526020600020905b815481529060010190602001808311610ba157829003601f168201915b505050505081565b6008546001600160a01b03163314610bf05760405162461bcd60e51b81526004016107e5906115ea565b6001600160a01b038116610c555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e5565b6107a881611001565b600a5460ff16610c6d57600080fd5b61270f610c7d6001546000540390565b610c889060016115b3565b10610c9257600080fd5b333214610c9e57600080fd5b336000908152600b6020526040902054600111610cba57600080fd5b336000908152600b60205260408120805460019290610cda9084906115b3565b909155506108ec9050336001610d79565b6000805482108015610547575050600090815260046020526040902054600160e01b161590565b600081600054811015610d605760008181526004602052604081205490600160e01b82169003610d5e575b80600003610ad7575060001901600081815260046020526040902054610d3d565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b038316610da257604051622e076360e81b815260040160405180910390fd5b81600003610dc35760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610e0e5750600055505050565b6000610e6582610d12565b9050836001600160a01b0316816001600160a01b031614610e985760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610eb65750610eb68533610490565b80610ed1575033610ec6846105df565b6001600160a01b0316145b905080610ef157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f1857604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003610fb957600183016000818152600460205260408120549003610fb7576000548114610fb75760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061108890339089908890889060040161164e565b6020604051808303816000875af19250505080156110c3575060408051601f3d908101601f191682019092526110c09181019061168b565b60015b611121573d8080156110f1576040519150601f19603f3d011682016040523d82523d6000602084013e6110f6565b606091505b508051600003611119576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461055c90611563565b604080516080810191829052607f0190826030600a8206018353600a90045b801561118b57600183039250600a81066030018353600a900461116d565b50819003601f19909101908152919050565b8280546111a990611563565b90600052602060002090601f0160209004810192826111cb5760008555611211565b82601f106111e457805160ff1916838001178555611211565b82800160010185558215611211579182015b828111156112115782518255916020019190600101906111f6565b5061121d929150611221565b5090565b5b8082111561121d5760008155600101611222565b6001600160e01b0319811681146107a857600080fd5b60006020828403121561125e57600080fd5b8135610ad781611236565b60005b8381101561128457818101518382015260200161126c565b83811115610a545750506000910152565b600081518084526112ad816020860160208601611269565b601f01601f19169290920160200192915050565b602081526000610ad76020830184611295565b6000602082840312156112e657600080fd5b5035919050565b80356001600160a01b038116811461130457600080fd5b919050565b6000806040838503121561131c57600080fd5b611325836112ed565b946020939093013593505050565b60008060006060848603121561134857600080fd5b611351846112ed565b925061135f602085016112ed565b9150604084013590509250925092565b60006020828403121561138157600080fd5b610ad7826112ed565b8035801515811461130457600080fd5b600080604083850312156113ad57600080fd5b6113b6836112ed565b91506113c46020840161138a565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156113fe576113fe6113cd565b604051601f8501601f19908116603f01168101908282118183101715611426576114266113cd565b8160405280935085815286868601111561143f57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561146b57600080fd5b813567ffffffffffffffff81111561148257600080fd5b8201601f8101841361149357600080fd5b611137848235602084016113e3565b6000602082840312156114b457600080fd5b610ad78261138a565b600080600080608085870312156114d357600080fd5b6114dc856112ed565b93506114ea602086016112ed565b925060408501359150606085013567ffffffffffffffff81111561150d57600080fd5b8501601f8101871361151e57600080fd5b61152d878235602084016113e3565b91505092959194509250565b6000806040838503121561154c57600080fd5b611555836112ed565b91506113c4602084016112ed565b600181811c9082168061157757607f821691505b60208210810361159757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156115c6576115c661159d565b500190565b60008160001904831182151516156115e5576115e561159d565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008351611631818460208801611269565b835190830190611645818360208801611269565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061168190830184611295565b9695505050505050565b60006020828403121561169d57600080fd5b8151610ad78161123656fea2646970667358221220b37e8accbff67053f16d0ca12f3ba610ca798dd84fe0f34220a72159bfaa730764736f6c634300080e0033

Deployed Bytecode Sourcemap

41571:1584:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12960:615;;;;;;;;;;-1:-1:-1;12960:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;12960:615:0;;;;;;;;17973:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20041:204::-;;;;;;;;;;-1:-1:-1;20041:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;20041:204:0;1528:203:1;19501:474:0;;;;;;;;;;-1:-1:-1;19501:474:0;;;;;:::i;:::-;;:::i;:::-;;12014:315;;;;;;;;;;-1:-1:-1;12280:12:0;;12067:7;12264:13;:28;12014:315;;;2319:25:1;;;2307:2;2292:18;12014:315:0;2173:177:1;42246:372:0;;;;;;:::i;:::-;;:::i;20927:170::-;;;;;;;;;;-1:-1:-1;20927:170:0;;;;;:::i;:::-;;:::i;41650:26::-;;;;;;;;;;-1:-1:-1;41650:26:0;;;;;;;;42986:164;;;:::i;21168:185::-;;;;;;;;;;-1:-1:-1;21168:185:0;;;;;:::i;:::-;;:::i;17762:144::-;;;;;;;;;;-1:-1:-1;17762:144:0;;;;;:::i;:::-;;:::i;13639:224::-;;;;;;;;;;-1:-1:-1;13639:224:0;;;;;:::i;:::-;;:::i;40727:103::-;;;;;;;;;;;;;:::i;40076:87::-;;;;;;;;;;-1:-1:-1;40149:6:0;;-1:-1:-1;;;;;40149:6:0;40076:87;;18142:104;;;;;;;;;;;;;:::i;20317:308::-;;;;;;;;;;-1:-1:-1;20317:308:0;;;;;:::i;:::-;;:::i;42881:97::-;;;;;;;;;;-1:-1:-1;42881:97:0;;;;;:::i;:::-;;:::i;42789:84::-;;;;;;;;;;-1:-1:-1;42789:84:0;;;;;:::i;:::-;;:::i;21424:396::-;;;;;;;;;;-1:-1:-1;21424:396:0;;;;;:::i;:::-;;:::i;18317:318::-;;;;;;;;;;-1:-1:-1;18317:318:0;;;;;:::i;:::-;;:::i;42624:157::-;;;;;;;;;;-1:-1:-1;42624:157:0;;;;;:::i;:::-;;:::i;41683:38::-;;;;;;;;;;;;41717:4;41683:38;;41728:46;;;;;;;;;;-1:-1:-1;41728:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;20696:164;;;;;;;;;;-1:-1:-1;20696:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;20817:25:0;;;20793:4;20817:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;20696:164;41618:25;;;;;;;;;;;;;:::i;40985:201::-;;;;;;;;;;-1:-1:-1;40985:201:0;;;;;:::i;:::-;;:::i;41960:278::-;;;:::i;12960:615::-;13045:4;-1:-1:-1;;;;;;;;;13345:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;13422:25:0;;;13345:102;:179;;;-1:-1:-1;;;;;;;;;;13499:25:0;;;13345:179;13325:199;12960:615;-1:-1:-1;;12960:615:0:o;17973:100::-;18027:13;18060:5;18053:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17973:100;:::o;20041:204::-;20109:7;20134:16;20142:7;20134;:16::i;:::-;20129:64;;20159:34;;-1:-1:-1;;;20159:34:0;;;;;;;;;;;20129:64;-1:-1:-1;20213:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20213:24:0;;20041:204::o;19501:474::-;19574:13;19606:27;19625:7;19606:18;:27::i;:::-;19574:61;;19656:5;-1:-1:-1;;;;;19650:11:0;:2;-1:-1:-1;;;;;19650:11:0;;19646:48;;19670:24;;-1:-1:-1;;;19670:24:0;;;;;;;;;;;19646:48;36144:10;-1:-1:-1;;;;;19711:28:0;;;19707:175;;19759:44;19776:5;36144:10;20696:164;:::i;19759:44::-;19754:128;;19831:35;;-1:-1:-1;;;19831:35:0;;;;;;;;;;;19754:128;19894:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19894:29:0;-1:-1:-1;;;;;19894:29:0;;;;;;;;;19939:28;;19894:24;;19939:28;;;;;;;19563:412;19501:474;;:::o;42246:372::-;42319:7;;;;42311:16;;;;;;41717:4;42362:6;42346:13;12280:12;;12067:7;12264:13;:28;;12014:315;42346:13;:22;;;;:::i;:::-;:32;42338:41;;;;;;42398:10;42412:9;42398:23;42390:32;;;;;;42451:21;42466:6;42451:12;:21;:::i;:::-;42438:9;:34;42430:43;;;;;;42504:10;42492:23;;;;:11;:23;;;;;;42527:2;;42492:32;;42518:6;;42492:32;:::i;:::-;:37;42484:46;;;;;;42553:10;42541:23;;;;:11;:23;;;;;:33;;42568:6;;42541:23;:33;;42568:6;;42541:33;:::i;:::-;;;;-1:-1:-1;42585:25:0;;-1:-1:-1;42591:10:0;42603:6;42585:5;:25::i;:::-;42246:372;:::o;20927:170::-;21061:28;21071:4;21077:2;21081:7;21061:9;:28::i;:::-;20927:170;;;:::o;42986:164::-;40149:6;;-1:-1:-1;;;;;40149:6:0;36144:10;40296:23;40288:68;;;;-1:-1:-1;;;40288:68:0;;;;;;;:::i;:::-;;;;;;;;;43066:58:::1;::::0;43048:12:::1;::::0;43074:10:::1;::::0;43098:21:::1;::::0;43048:12;43066:58;43048:12;43066:58;43098:21;43074:10;43066:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43047:77;;;43137:7;43129:16;;;::::0;::::1;21168:185:::0;21306:39;21323:4;21329:2;21333:7;21306:39;;;;;;;;;;;;:16;:39::i;17762:144::-;17826:7;17869:27;17888:7;17869:18;:27::i;13639:224::-;13703:7;-1:-1:-1;;;;;13727:19:0;;13723:60;;13755:28;;-1:-1:-1;;;13755:28:0;;;;;;;;;;;13723:60;-1:-1:-1;;;;;;13801:25:0;;;;;:18;:25;;;;;;8978:13;13801:54;;13639:224::o;40727:103::-;40149:6;;-1:-1:-1;;;;;40149:6:0;36144:10;40296:23;40288:68;;;;-1:-1:-1;;;40288:68:0;;;;;;;:::i;:::-;40792:30:::1;40819:1;40792:18;:30::i;:::-;40727:103::o:0;18142:104::-;18198:13;18231:7;18224:14;;;;;:::i;20317:308::-;36144:10;-1:-1:-1;;;;;20416:31:0;;;20412:61;;20456:17;;-1:-1:-1;;;20456:17:0;;;;;;;;;;;20412:61;36144:10;20486:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;20486:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;20486:60:0;;;;;;;;;;20562:55;;540:41:1;;;20486:49:0;;36144:10;20562:55;;513:18:1;20562:55:0;;;;;;;20317:308;;:::o;42881:97::-;40149:6;;-1:-1:-1;;;;;40149:6:0;36144:10;40296:23;40288:68;;;;-1:-1:-1;;;40288:68:0;;;;;;;:::i;:::-;42952:18;;::::1;::::0;:11:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42881:97:::0;:::o;42789:84::-;40149:6;;-1:-1:-1;;;;;40149:6:0;36144:10;40296:23;40288:68;;;;-1:-1:-1;;;40288:68:0;;;;;;;:::i;:::-;42851:7:::1;:14:::0;;-1:-1:-1;;42851:14:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42789:84::o;21424:396::-;21591:28;21601:4;21607:2;21611:7;21591:9;:28::i;:::-;-1:-1:-1;;;;;21634:14:0;;;:19;21630:183;;21673:56;21704:4;21710:2;21714:7;21723:5;21673:30;:56::i;:::-;21668:145;;21757:40;;-1:-1:-1;;;21757:40:0;;;;;;;;;;;21668:145;21424:396;;;;:::o;18317:318::-;18390:13;18421:16;18429:7;18421;:16::i;:::-;18416:59;;18446:29;;-1:-1:-1;;;18446:29:0;;;;;;;;;;;18416:59;18488:21;18512:10;:8;:10::i;:::-;18488:34;;18546:7;18540:21;18565:1;18540:26;:87;;;;;;;;;;;;;;;;;18593:7;18602:18;18612:7;18602:9;:18::i;:::-;18576:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18540:87;18533:94;18317:318;-1:-1:-1;;;18317:318:0:o;42624:157::-;40149:6;;-1:-1:-1;;;;;40149:6:0;36144:10;40296:23;40288:68;;;;-1:-1:-1;;;40288:68:0;;;;;;;:::i;:::-;41717:4:::1;42724:6;42708:13;12280:12:::0;;12067:7;12264:13;:28;;12014:315;42708:13:::1;:22;;;;:::i;:::-;:33;;42700:42;;;::::0;::::1;;42753:20;42759:5;42766:6;42753:5;:20::i;41618:25::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40985:201::-;40149:6;;-1:-1:-1;;;;;40149:6:0;36144:10;40296:23;40288:68;;;;-1:-1:-1;;;40288:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41074:22:0;::::1;41066:73;;;::::0;-1:-1:-1;;;41066:73:0;;7721:2:1;41066:73:0::1;::::0;::::1;7703:21:1::0;7760:2;7740:18;;;7733:30;7799:34;7779:18;;;7772:62;-1:-1:-1;;;7850:18:1;;;7843:36;7896:19;;41066:73:0::1;7519:402:1::0;41066:73:0::1;41150:28;41169:8;41150:18;:28::i;41960:278::-:0;42018:7;;;;42010:16;;;;;;41717:4;42045:13;12280:12;;12067:7;12264:13;:28;;12014:315;42045:13;:17;;42061:1;42045:17;:::i;:::-;:27;42037:36;;;;;;42092:10;42106:9;42092:23;42084:32;;;;;;42144:10;42132:23;;;;:11;:23;;;;;;42158:1;-1:-1:-1;42124:36:0;;;;;;42183:10;42171:23;;;;:11;:23;;;;;:28;;42198:1;;42171:23;:28;;42198:1;;42171:28;:::i;:::-;;;;-1:-1:-1;42210:20:0;;-1:-1:-1;42216:10:0;42228:1;42210:5;:20::i;22075:273::-;22132:4;22222:13;;22212:7;:23;22169:152;;;;-1:-1:-1;;22273:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;22273:43:0;:48;;22075:273::o;15277:1129::-;15344:7;15379;15481:13;;15474:4;:20;15470:869;;;15519:14;15536:23;;;:17;:23;;;;;;;-1:-1:-1;;;15625:23:0;;:28;;15621:699;;16144:113;16151:6;16161:1;16151:11;16144:113;;-1:-1:-1;;;16222:6:0;16204:25;;;;:17;:25;;;;;;16144:113;;15621:699;15496:843;15470:869;16367:31;;-1:-1:-1;;;16367:31:0;;;;;;;;;;;25404:1656;25469:20;25492:13;-1:-1:-1;;;;;25520:16:0;;25516:48;;25545:19;;-1:-1:-1;;;25545:19:0;;;;;;;;;;;25516:48;25579:8;25591:1;25579:13;25575:44;;25601:18;;-1:-1:-1;;;25601:18:0;;;;;;;;;;;25575:44;-1:-1:-1;;;;;26168:22:0;;;;;;:18;:22;;;;9115:2;26168:22;;;:70;;26206:31;26194:44;;26168:70;;;26481:31;;;:17;:31;;;;;26574:15;9632:3;26574:41;26532:84;;-1:-1:-1;26652:13:0;;9895:3;26637:56;26532:162;26481:213;;:31;26775:23;;;26815:111;26842:40;;26867:14;;;;;-1:-1:-1;;;;;26842:40:0;;;26859:1;;26842:40;;26859:1;;26842:40;26921:3;26906:12;:18;26815:111;;-1:-1:-1;26942:13:0;:28;20927:170;;;:::o;27314:2515::-;27429:27;27459;27478:7;27459:18;:27::i;:::-;27429:57;;27544:4;-1:-1:-1;;;;;27503:45:0;27519:19;-1:-1:-1;;;;;27503:45:0;;27499:86;;27557:28;;-1:-1:-1;;;27557:28:0;;;;;;;;;;;27499:86;27598:22;36144:10;-1:-1:-1;;;;;27624:27:0;;;;:87;;-1:-1:-1;27668:43:0;27685:4;36144:10;20696:164;:::i;27668:43::-;27624:147;;;-1:-1:-1;36144:10:0;27728:20;27740:7;27728:11;:20::i;:::-;-1:-1:-1;;;;;27728:43:0;;27624:147;27598:174;;27790:17;27785:66;;27816:35;;-1:-1:-1;;;27816:35:0;;;;;;;;;;;27785:66;-1:-1:-1;;;;;27866:16:0;;27862:52;;27891:23;;-1:-1:-1;;;27891:23:0;;;;;;;;;;;27862:52;28043:24;;;;:15;:24;;;;;;;;28036:31;;-1:-1:-1;;;;;;28036:31:0;;;-1:-1:-1;;;;;28435:24:0;;;;;:18;:24;;;;;28433:26;;-1:-1:-1;;28433:26:0;;;28504:22;;;;;;;28502:24;;-1:-1:-1;28502:24:0;;;28797:26;;;:17;:26;;;;;-1:-1:-1;;;28885:15:0;9632:3;28885:41;28843:84;;:128;;28797:174;;;29091:46;;:51;;29087:626;;29195:1;29185:11;;29163:19;29318:30;;;:17;:30;;;;;;:35;;29314:384;;29456:13;;29441:11;:28;29437:242;;29603:30;;;;:17;:30;;;;;:52;;;29437:242;29144:569;29087:626;29760:7;29756:2;-1:-1:-1;;;;;29741:27:0;29750:4;-1:-1:-1;;;;;29741:27:0;;;;;;;;;;;27418:2411;;27314:2515;;;:::o;41346:191::-;41439:6;;;-1:-1:-1;;;;;41456:17:0;;;-1:-1:-1;;;;;;41456:17:0;;;;;;;41489:40;;41439:6;;;41456:17;41439:6;;41489:40;;41420:16;;41489:40;41409:128;41346:191;:::o;33526:716::-;33710:88;;-1:-1:-1;;;33710:88:0;;33689:4;;-1:-1:-1;;;;;33710:45:0;;;;;:88;;36144:10;;33777:4;;33783:7;;33792:5;;33710:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33710:88:0;;;;;;;;-1:-1:-1;;33710:88:0;;;;;;;;;;;;:::i;:::-;;;33706:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33993:6;:13;34010:1;33993:18;33989:235;;34039:40;;-1:-1:-1;;;34039:40:0;;;;;;;;;;;33989:235;34182:6;34176:13;34167:6;34163:2;34159:15;34152:38;33706:529;-1:-1:-1;;;;;;33869:64:0;-1:-1:-1;;;33869:64:0;;-1:-1:-1;33706:529:0;33526:716;;;;;;:::o;41840:112::-;41900:13;41933:11;41926:18;;;;;:::i;36268:1959::-;36739:4;36733:11;;36746:3;36729:21;;36824:17;;;;37521:11;;;37400:5;37653:2;37667;37657:13;;37649:22;37521:11;37636:36;37708:2;37698:13;;37291:682;37727:4;37291:682;;;37902:1;37897:3;37893:11;37886:18;;37953:2;37947:4;37943:13;37939:2;37935:22;37930:3;37922:36;37823:2;37813:13;;37291:682;;;-1:-1:-1;38015:13:0;;;-1:-1:-1;;38130:12:0;;;38190:19;;;38130:12;36268:1959;-1:-1:-1;36268:1959:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:160::-;2944:20;;3000:13;;2993:21;2983:32;;2973:60;;3029:1;3026;3019:12;3044:254;3109:6;3117;3170:2;3158:9;3149:7;3145:23;3141:32;3138:52;;;3186:1;3183;3176:12;3138:52;3209:29;3228:9;3209:29;:::i;:::-;3199:39;;3257:35;3288:2;3277:9;3273:18;3257:35;:::i;:::-;3247:45;;3044:254;;;;;:::o;3303:127::-;3364:10;3359:3;3355:20;3352:1;3345:31;3395:4;3392:1;3385:15;3419:4;3416:1;3409:15;3435:632;3500:5;3530:18;3571:2;3563:6;3560:14;3557:40;;;3577:18;;:::i;:::-;3652:2;3646:9;3620:2;3706:15;;-1:-1:-1;;3702:24:1;;;3728:2;3698:33;3694:42;3682:55;;;3752:18;;;3772:22;;;3749:46;3746:72;;;3798:18;;:::i;:::-;3838:10;3834:2;3827:22;3867:6;3858:15;;3897:6;3889;3882:22;3937:3;3928:6;3923:3;3919:16;3916:25;3913:45;;;3954:1;3951;3944:12;3913:45;4004:6;3999:3;3992:4;3984:6;3980:17;3967:44;4059:1;4052:4;4043:6;4035;4031:19;4027:30;4020:41;;;;3435:632;;;;;:::o;4072:451::-;4141:6;4194:2;4182:9;4173:7;4169:23;4165:32;4162:52;;;4210:1;4207;4200:12;4162:52;4250:9;4237:23;4283:18;4275:6;4272:30;4269:50;;;4315:1;4312;4305:12;4269:50;4338:22;;4391:4;4383:13;;4379:27;-1:-1:-1;4369:55:1;;4420:1;4417;4410:12;4369:55;4443:74;4509:7;4504:2;4491:16;4486:2;4482;4478:11;4443:74;:::i;4528:180::-;4584:6;4637:2;4625:9;4616:7;4612:23;4608:32;4605:52;;;4653:1;4650;4643:12;4605:52;4676:26;4692:9;4676:26;:::i;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;;5058:2;5047:9;5043:18;5030:32;5020:42;;5113:2;5102:9;5098:18;5085:32;5140:18;5132:6;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:1;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:380::-;5729:1;5725:12;;;;5772;;;5793:61;;5847:4;5839:6;5835:17;5825:27;;5793:61;5900:2;5892:6;5889:14;5869:18;5866:38;5863:161;;5946:10;5941:3;5937:20;5934:1;5927:31;5981:4;5978:1;5971:15;6009:4;6006:1;5999:15;5863:161;;5650:380;;;:::o;6035:127::-;6096:10;6091:3;6087:20;6084:1;6077:31;6127:4;6124:1;6117:15;6151:4;6148:1;6141:15;6167:128;6207:3;6238:1;6234:6;6231:1;6228:13;6225:39;;;6244:18;;:::i;:::-;-1:-1:-1;6280:9:1;;6167:128::o;6300:168::-;6340:7;6406:1;6402;6398:6;6394:14;6391:1;6388:21;6383:1;6376:9;6369:17;6365:45;6362:71;;;6413:18;;:::i;:::-;-1:-1:-1;6453:9:1;;6300:168::o;6473:356::-;6675:2;6657:21;;;6694:18;;;6687:30;6753:34;6748:2;6733:18;;6726:62;6820:2;6805:18;;6473:356::o;7044:470::-;7223:3;7261:6;7255:13;7277:53;7323:6;7318:3;7311:4;7303:6;7299:17;7277:53;:::i;:::-;7393:13;;7352:16;;;;7415:57;7393:13;7352:16;7449:4;7437:17;;7415:57;:::i;:::-;7488:20;;7044:470;-1:-1:-1;;;;7044:470:1:o;7926:489::-;-1:-1:-1;;;;;8195:15:1;;;8177:34;;8247:15;;8242:2;8227:18;;8220:43;8294:2;8279:18;;8272:34;;;8342:3;8337:2;8322:18;;8315:31;;;8120:4;;8363:46;;8389:19;;8381:6;8363:46;:::i;:::-;8355:54;7926:489;-1:-1:-1;;;;;;7926:489:1:o;8420:249::-;8489:6;8542:2;8530:9;8521:7;8517:23;8513:32;8510:52;;;8558:1;8555;8548:12;8510:52;8590:9;8584:16;8609:30;8633:5;8609:30;:::i

Swarm Source

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