ETH Price: $2,514.71 (+13.55%)
 

Overview

Max Total Supply

502 GOG

Holders

40

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
whateversclever.eth
Balance
5 GOG
0xAa3C6c95d1aA9bB27E0C98Fb268702D9bDA87611
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:
gameofgoblins

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-09
*/

// 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 gameofgoblins is ERC721A, Ownable {
    string public _werjumpers;
    uint256 public constant jumpers = 9999;
    uint256 public constant homanifre = 5;
    mapping(address => uint256) public howmanyjump;

	constructor() ERC721A("gameofgoblins", "GOG") {}

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

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

    function jumpformone(uint256 somuch) external payable {
        require(totalSupply() + somuch < jumpers);
        require(somuch < 11);
        require(msg.sender == tx.origin);
    	require(msg.value == 0.0049 ether * somuch);
        _mint(msg.sender, somuch);
    }

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

    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

API
[{"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":[],"name":"homanifre","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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"}]

60806040523480156200001157600080fd5b50604080518082018252600d81526c67616d656f66676f626c696e7360981b602080830191825283518085019094526003845262474f4760e81b9084015281519192916200006291600291620000e2565b50805162000078906003906020840190620000e2565b505060008055506200008a3362000090565b620001c4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000f09062000188565b90600052602060002090601f0160209004810192826200011457600085556200015f565b82601f106200012f57805160ff19168380011785556200015f565b828001600101855582156200015f579182015b828111156200015f57825182559160200191906001019062000142565b506200016d92915062000171565b5090565b5b808211156200016d576000815560010162000172565b600181811c908216806200019d57607f821691505b602082108103620001be57634e487b7160e01b600052602260045260246000fd5b50919050565b6115eb80620001d46000396000f3fe6080604052600436106101815760003560e01c806395d89b41116100d1578063d0a8811e1161008a578063e985e9c511610064578063e985e9c514610435578063f11beb821461047e578063f2fde38b14610493578063ff6eb1aa146104b357600080fd5b8063d0a8811e146103d2578063dad20699146103f2578063df4400b01461040857600080fd5b806395d89b4114610328578063a22cb4651461033d578063b0d3b4771461035d578063b88d4fde1461037d578063c87b56dd1461039d578063cf16ccd4146103bd57600080fd5b806323b872dd1161013e5780636352211e116101185780636352211e146102b557806370a08231146102d5578063715018a6146102f55780638da5cb5b1461030a57600080fd5b806323b872dd1461026d57806333958a181461028d57806342842e0e1461029557600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b31461021557806318160ddd146102375780631c8d69291461025a575b600080fd5b34801561019257600080fd5b506101a66101a1366004611172565b6104bb565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d061050d565b6040516101b291906111e7565b3480156101e957600080fd5b506101fd6101f83660046111fa565b61059f565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b5061023561023036600461122f565b6105e3565b005b34801561024357600080fd5b50600154600054035b6040519081526020016101b2565b6102356102683660046111fa565b6106b5565b34801561027957600080fd5b50610235610288366004611259565b61071c565b61023561072c565b3480156102a157600080fd5b506102356102b0366004611259565b6107b4565b3480156102c157600080fd5b506101fd6102d03660046111fa565b6107cf565b3480156102e157600080fd5b5061024c6102f0366004611295565b6107da565b34801561030157600080fd5b50610235610829565b34801561031657600080fd5b506008546001600160a01b03166101fd565b34801561033457600080fd5b506101d061085f565b34801561034957600080fd5b506102356103583660046112b0565b61086e565b34801561036957600080fd5b50610235610378366004611378565b610903565b34801561038957600080fd5b506102356103983660046113c1565b610944565b3480156103a957600080fd5b506101d06103b83660046111fa565b61098e565b3480156103c957600080fd5b5061024c600581565b3480156103de57600080fd5b506102356103ed36600461122f565b610a12565b3480156103fe57600080fd5b5061024c61270f81565b34801561041457600080fd5b5061024c610423366004611295565b600a6020526000908152604090205481565b34801561044157600080fd5b506101a661045036600461143d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561048a57600080fd5b506101d0610a6c565b34801561049f57600080fd5b506102356104ae366004611295565b610afa565b610235610b92565b60006301ffc9a760e01b6001600160e01b0319831614806104ec57506380ac58cd60e01b6001600160e01b03198316145b806105075750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461051c90611470565b80601f016020809104026020016040519081016040528092919081815260200182805461054890611470565b80156105955780601f1061056a57610100808354040283529160200191610595565b820191906000526020600020905b81548152906001019060200180831161057857829003601f168201915b5050505050905090565b60006105aa82610c11565b6105c7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105ee82610c38565b9050806001600160a01b0316836001600160a01b0316036106225760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106595761063c8133610450565b610659576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61270f816106c66001546000540390565b6106d091906114c0565b106106da57600080fd5b600b81106106e757600080fd5b3332146106f357600080fd5b6107048166116886276640006114d8565b341461070f57600080fd5b6107193382610c9f565b50565b610727838383610d80565b505050565b6008546001600160a01b0316331461075f5760405162461bcd60e51b8152600401610756906114f7565b60405180910390fd5b604051600090339047908381818185875af1925050503d80600081146107a1576040519150601f19603f3d011682016040523d82523d6000602084013e6107a6565b606091505b505090508061071957600080fd5b61072783838360405180602001604052806000815250610944565b600061050782610c38565b60006001600160a01b038216610803576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108535760405162461bcd60e51b8152600401610756906114f7565b61085d6000610f27565b565b60606003805461051c90611470565b336001600160a01b038316036108975760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461092d5760405162461bcd60e51b8152600401610756906114f7565b80516109409060099060208401906110c3565b5050565b61094f848484610d80565b6001600160a01b0383163b156109885761096b84848484610f79565b610988576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061099982610c11565b6109b657604051630a14c4b560e41b815260040160405180910390fd5b60006109c0611065565b905080516000036109e05760405180602001604052806000815250610a0b565b806109ea84611074565b6040516020016109fb92919061152c565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610a3c5760405162461bcd60e51b8152600401610756906114f7565b61270f81610a4d6001546000540390565b610a5791906114c0565b1115610a6257600080fd5b6109408282610c9f565b60098054610a7990611470565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa590611470565b8015610af25780601f10610ac757610100808354040283529160200191610af2565b820191906000526020600020905b815481529060010190602001808311610ad557829003601f168201915b505050505081565b6008546001600160a01b03163314610b245760405162461bcd60e51b8152600401610756906114f7565b6001600160a01b038116610b895760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610756565b61071981610f27565b61270f6005610ba46001546000540390565b610bae91906114c0565b10610bb857600080fd5b333214610bc457600080fd5b336000908152600a6020526040902054600511610be057600080fd5b336000908152600a60205260408120805460059290610c009084906114c0565b9091555061085d9050336005610c9f565b6000805482108015610507575050600090815260046020526040902054600160e01b161590565b600081600054811015610c865760008181526004602052604081205490600160e01b82169003610c84575b80600003610a0b575060001901600081815260046020526040902054610c63565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b038316610cc857604051622e076360e81b815260040160405180910390fd5b81600003610ce95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610d345750600055505050565b6000610d8b82610c38565b9050836001600160a01b0316816001600160a01b031614610dbe5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610ddc5750610ddc8533610450565b80610df7575033610dec8461059f565b6001600160a01b0316145b905080610e1757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610e3e57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003610edf57600183016000818152600460205260408120549003610edd576000548114610edd5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610fae90339089908890889060040161155b565b6020604051808303816000875af1925050508015610fe9575060408051601f3d908101601f19168201909252610fe691810190611598565b60015b611047573d808015611017576040519150601f19603f3d011682016040523d82523d6000602084013e61101c565b606091505b50805160000361103f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461051c90611470565b604080516080810191829052607f0190826030600a8206018353600a90045b80156110b157600183039250600a81066030018353600a9004611093565b50819003601f19909101908152919050565b8280546110cf90611470565b90600052602060002090601f0160209004810192826110f15760008555611137565b82601f1061110a57805160ff1916838001178555611137565b82800160010185558215611137579182015b8281111561113757825182559160200191906001019061111c565b50611143929150611147565b5090565b5b808211156111435760008155600101611148565b6001600160e01b03198116811461071957600080fd5b60006020828403121561118457600080fd5b8135610a0b8161115c565b60005b838110156111aa578181015183820152602001611192565b838111156109885750506000910152565b600081518084526111d381602086016020860161118f565b601f01601f19169290920160200192915050565b602081526000610a0b60208301846111bb565b60006020828403121561120c57600080fd5b5035919050565b80356001600160a01b038116811461122a57600080fd5b919050565b6000806040838503121561124257600080fd5b61124b83611213565b946020939093013593505050565b60008060006060848603121561126e57600080fd5b61127784611213565b925061128560208501611213565b9150604084013590509250925092565b6000602082840312156112a757600080fd5b610a0b82611213565b600080604083850312156112c357600080fd5b6112cc83611213565b9150602083013580151581146112e157600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561131d5761131d6112ec565b604051601f8501601f19908116603f01168101908282118183101715611345576113456112ec565b8160405280935085815286868601111561135e57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561138a57600080fd5b813567ffffffffffffffff8111156113a157600080fd5b8201601f810184136113b257600080fd5b61105d84823560208401611302565b600080600080608085870312156113d757600080fd5b6113e085611213565b93506113ee60208601611213565b925060408501359150606085013567ffffffffffffffff81111561141157600080fd5b8501601f8101871361142257600080fd5b61143187823560208401611302565b91505092959194509250565b6000806040838503121561145057600080fd5b61145983611213565b915061146760208401611213565b90509250929050565b600181811c9082168061148457607f821691505b6020821081036114a457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156114d3576114d36114aa565b500190565b60008160001904831182151516156114f2576114f26114aa565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000835161153e81846020880161118f565b83519083019061155281836020880161118f565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061158e908301846111bb565b9695505050505050565b6000602082840312156115aa57600080fd5b8151610a0b8161115c56fea26469706673582212201ece0f41cbce479c0a641a762aa0f45a5058729e86d8a8de666ea41b31e60da164736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106101815760003560e01c806395d89b41116100d1578063d0a8811e1161008a578063e985e9c511610064578063e985e9c514610435578063f11beb821461047e578063f2fde38b14610493578063ff6eb1aa146104b357600080fd5b8063d0a8811e146103d2578063dad20699146103f2578063df4400b01461040857600080fd5b806395d89b4114610328578063a22cb4651461033d578063b0d3b4771461035d578063b88d4fde1461037d578063c87b56dd1461039d578063cf16ccd4146103bd57600080fd5b806323b872dd1161013e5780636352211e116101185780636352211e146102b557806370a08231146102d5578063715018a6146102f55780638da5cb5b1461030a57600080fd5b806323b872dd1461026d57806333958a181461028d57806342842e0e1461029557600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b31461021557806318160ddd146102375780631c8d69291461025a575b600080fd5b34801561019257600080fd5b506101a66101a1366004611172565b6104bb565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d061050d565b6040516101b291906111e7565b3480156101e957600080fd5b506101fd6101f83660046111fa565b61059f565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b5061023561023036600461122f565b6105e3565b005b34801561024357600080fd5b50600154600054035b6040519081526020016101b2565b6102356102683660046111fa565b6106b5565b34801561027957600080fd5b50610235610288366004611259565b61071c565b61023561072c565b3480156102a157600080fd5b506102356102b0366004611259565b6107b4565b3480156102c157600080fd5b506101fd6102d03660046111fa565b6107cf565b3480156102e157600080fd5b5061024c6102f0366004611295565b6107da565b34801561030157600080fd5b50610235610829565b34801561031657600080fd5b506008546001600160a01b03166101fd565b34801561033457600080fd5b506101d061085f565b34801561034957600080fd5b506102356103583660046112b0565b61086e565b34801561036957600080fd5b50610235610378366004611378565b610903565b34801561038957600080fd5b506102356103983660046113c1565b610944565b3480156103a957600080fd5b506101d06103b83660046111fa565b61098e565b3480156103c957600080fd5b5061024c600581565b3480156103de57600080fd5b506102356103ed36600461122f565b610a12565b3480156103fe57600080fd5b5061024c61270f81565b34801561041457600080fd5b5061024c610423366004611295565b600a6020526000908152604090205481565b34801561044157600080fd5b506101a661045036600461143d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561048a57600080fd5b506101d0610a6c565b34801561049f57600080fd5b506102356104ae366004611295565b610afa565b610235610b92565b60006301ffc9a760e01b6001600160e01b0319831614806104ec57506380ac58cd60e01b6001600160e01b03198316145b806105075750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461051c90611470565b80601f016020809104026020016040519081016040528092919081815260200182805461054890611470565b80156105955780601f1061056a57610100808354040283529160200191610595565b820191906000526020600020905b81548152906001019060200180831161057857829003601f168201915b5050505050905090565b60006105aa82610c11565b6105c7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105ee82610c38565b9050806001600160a01b0316836001600160a01b0316036106225760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106595761063c8133610450565b610659576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61270f816106c66001546000540390565b6106d091906114c0565b106106da57600080fd5b600b81106106e757600080fd5b3332146106f357600080fd5b6107048166116886276640006114d8565b341461070f57600080fd5b6107193382610c9f565b50565b610727838383610d80565b505050565b6008546001600160a01b0316331461075f5760405162461bcd60e51b8152600401610756906114f7565b60405180910390fd5b604051600090339047908381818185875af1925050503d80600081146107a1576040519150601f19603f3d011682016040523d82523d6000602084013e6107a6565b606091505b505090508061071957600080fd5b61072783838360405180602001604052806000815250610944565b600061050782610c38565b60006001600160a01b038216610803576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108535760405162461bcd60e51b8152600401610756906114f7565b61085d6000610f27565b565b60606003805461051c90611470565b336001600160a01b038316036108975760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461092d5760405162461bcd60e51b8152600401610756906114f7565b80516109409060099060208401906110c3565b5050565b61094f848484610d80565b6001600160a01b0383163b156109885761096b84848484610f79565b610988576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061099982610c11565b6109b657604051630a14c4b560e41b815260040160405180910390fd5b60006109c0611065565b905080516000036109e05760405180602001604052806000815250610a0b565b806109ea84611074565b6040516020016109fb92919061152c565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610a3c5760405162461bcd60e51b8152600401610756906114f7565b61270f81610a4d6001546000540390565b610a5791906114c0565b1115610a6257600080fd5b6109408282610c9f565b60098054610a7990611470565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa590611470565b8015610af25780601f10610ac757610100808354040283529160200191610af2565b820191906000526020600020905b815481529060010190602001808311610ad557829003601f168201915b505050505081565b6008546001600160a01b03163314610b245760405162461bcd60e51b8152600401610756906114f7565b6001600160a01b038116610b895760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610756565b61071981610f27565b61270f6005610ba46001546000540390565b610bae91906114c0565b10610bb857600080fd5b333214610bc457600080fd5b336000908152600a6020526040902054600511610be057600080fd5b336000908152600a60205260408120805460059290610c009084906114c0565b9091555061085d9050336005610c9f565b6000805482108015610507575050600090815260046020526040902054600160e01b161590565b600081600054811015610c865760008181526004602052604081205490600160e01b82169003610c84575b80600003610a0b575060001901600081815260046020526040902054610c63565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b038316610cc857604051622e076360e81b815260040160405180910390fd5b81600003610ce95760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610d345750600055505050565b6000610d8b82610c38565b9050836001600160a01b0316816001600160a01b031614610dbe5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610ddc5750610ddc8533610450565b80610df7575033610dec8461059f565b6001600160a01b0316145b905080610e1757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610e3e57604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003610edf57600183016000818152600460205260408120549003610edd576000548114610edd5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610fae90339089908890889060040161155b565b6020604051808303816000875af1925050508015610fe9575060408051601f3d908101601f19168201909252610fe691810190611598565b60015b611047573d808015611017576040519150601f19603f3d011682016040523d82523d6000602084013e61101c565b606091505b50805160000361103f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461051c90611470565b604080516080810191829052607f0190826030600a8206018353600a90045b80156110b157600183039250600a81066030018353600a9004611093565b50819003601f19909101908152919050565b8280546110cf90611470565b90600052602060002090601f0160209004810192826110f15760008555611137565b82601f1061110a57805160ff1916838001178555611137565b82800160010185558215611137579182015b8281111561113757825182559160200191906001019061111c565b50611143929150611147565b5090565b5b808211156111435760008155600101611148565b6001600160e01b03198116811461071957600080fd5b60006020828403121561118457600080fd5b8135610a0b8161115c565b60005b838110156111aa578181015183820152602001611192565b838111156109885750506000910152565b600081518084526111d381602086016020860161118f565b601f01601f19169290920160200192915050565b602081526000610a0b60208301846111bb565b60006020828403121561120c57600080fd5b5035919050565b80356001600160a01b038116811461122a57600080fd5b919050565b6000806040838503121561124257600080fd5b61124b83611213565b946020939093013593505050565b60008060006060848603121561126e57600080fd5b61127784611213565b925061128560208501611213565b9150604084013590509250925092565b6000602082840312156112a757600080fd5b610a0b82611213565b600080604083850312156112c357600080fd5b6112cc83611213565b9150602083013580151581146112e157600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561131d5761131d6112ec565b604051601f8501601f19908116603f01168101908282118183101715611345576113456112ec565b8160405280935085815286868601111561135e57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561138a57600080fd5b813567ffffffffffffffff8111156113a157600080fd5b8201601f810184136113b257600080fd5b61105d84823560208401611302565b600080600080608085870312156113d757600080fd5b6113e085611213565b93506113ee60208601611213565b925060408501359150606085013567ffffffffffffffff81111561141157600080fd5b8501601f8101871361142257600080fd5b61143187823560208401611302565b91505092959194509250565b6000806040838503121561145057600080fd5b61145983611213565b915061146760208401611213565b90509250929050565b600181811c9082168061148457607f821691505b6020821081036114a457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156114d3576114d36114aa565b500190565b60008160001904831182151516156114f2576114f26114aa565b500290565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000835161153e81846020880161118f565b83519083019061155281836020880161118f565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061158e908301846111bb565b9695505050505050565b6000602082840312156115aa57600080fd5b8151610a0b8161115c56fea26469706673582212201ece0f41cbce479c0a641a762aa0f45a5058729e86d8a8de666ea41b31e60da164736f6c634300080e0033

Deployed Bytecode Sourcemap

41571:1410: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;42261:275:0;;;;;;:::i;:::-;;:::i;20927:170::-;;;;;;;;;;-1:-1:-1;20927:170:0;;;;;:::i;:::-;;:::i;42812: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;42707:97::-;;;;;;;;;;-1:-1:-1;42707:97:0;;;;;:::i;:::-;;:::i;21424:396::-;;;;;;;;;;-1:-1:-1;21424:396:0;;;;;:::i;:::-;;:::i;18317:318::-;;;;;;;;;;-1:-1:-1;18317:318:0;;;;;:::i;:::-;;:::i;41698:37::-;;;;;;;;;;;;41734:1;41698:37;;42542:157;;;;;;;;;;-1:-1:-1;42542:157:0;;;;;:::i;:::-;;:::i;41653:38::-;;;;;;;;;;;;41687:4;41653:38;;41742:46;;;;;;;;;;-1:-1:-1;41742: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;41621:25;;;;;;;;;;;;;:::i;40985:201::-;;;;;;;;;;-1:-1:-1;40985:201:0;;;;;:::i;:::-;;:::i;41970:283::-;;;:::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;42261:275::-;41687:4;42350:6;42334:13;12280:12;;12067:7;12264:13;:28;;12014:315;42334:13;:22;;;;:::i;:::-;:32;42326:41;;;;;;42395:2;42386:6;:11;42378:20;;;;;;42417:10;42431:9;42417:23;42409:32;;;;;;42470:21;42485:6;42470:12;:21;:::i;:::-;42457:9;:34;42449:43;;;;;;42503:25;42509:10;42521:6;42503:5;:25::i;:::-;42261:275;:::o;20927:170::-;21061:28;21071:4;21077:2;21081:7;21061:9;:28::i;:::-;20927:170;;;:::o;42812:164::-;40149:6;;-1:-1:-1;;;;;40149:6:0;36144:10;40296:23;40288:68;;;;-1:-1:-1;;;40288:68:0;;;;;;;:::i;:::-;;;;;;;;;42892:58:::1;::::0;42874:12:::1;::::0;42900:10:::1;::::0;42924:21:::1;::::0;42874:12;42892:58;42874:12;42892:58;42924:21;42900:10;42892:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42873:77;;;42963:7;42955: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;42707:97::-;40149:6;;-1:-1:-1;;;;;40149:6:0;36144:10;40296:23;40288:68;;;;-1:-1:-1;;;40288:68:0;;;;;;;:::i;:::-;42778:18;;::::1;::::0;:11:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42707:97:::0;:::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;42542:157::-;40149:6;;-1:-1:-1;;;;;40149:6:0;36144:10;40296:23;40288:68;;;;-1:-1:-1;;;40288:68:0;;;;;;;:::i;:::-;41687:4:::1;42642:6;42626:13;12280:12:::0;;12067:7;12264:13;:28;;12014:315;42626:13:::1;:22;;;;:::i;:::-;:33;;42618:42;;;::::0;::::1;;42671:20;42677:5;42684:6;42671:5;:20::i;41621: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;;7464:2:1;41066:73:0::1;::::0;::::1;7446:21:1::0;7503:2;7483:18;;;7476:30;7542:34;7522:18;;;7515:62;-1:-1:-1;;;7593:18:1;;;7586:36;7639:19;;41066:73:0::1;7262:402:1::0;41066:73:0::1;41150:28;41169:8;41150:18;:28::i;41970:283::-:0;41687:4;41734:1;42028:13;12280:12;;12067:7;12264:13;:28;;12014:315;42028:13;:25;;;;:::i;:::-;:35;42020:44;;;;;;42083:10;42097:9;42083:23;42075:32;;;;;;42135:10;42123:23;;;;:11;:23;;;;;;41734:1;-1:-1:-1;42115:44:0;;;;;;42182:10;42170:23;;;;:11;:23;;;;;:36;;41734:1;;42170:23;:36;;41734:1;;42170:36;:::i;:::-;;;;-1:-1:-1;42217:28:0;;-1:-1:-1;42223:10:0;41734:1;42217:5;:28::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;41850:112::-;41910:13;41943:11;41936: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:347::-;2944:6;2952;3005:2;2993:9;2984:7;2980:23;2976:32;2973:52;;;3021:1;3018;3011:12;2973:52;3044:29;3063:9;3044:29;:::i;:::-;3034:39;;3123:2;3112:9;3108:18;3095:32;3170:5;3163:13;3156:21;3149:5;3146:32;3136:60;;3192:1;3189;3182:12;3136:60;3215:5;3205:15;;;2879:347;;;;;:::o;3231:127::-;3292:10;3287:3;3283:20;3280:1;3273:31;3323:4;3320:1;3313:15;3347:4;3344:1;3337:15;3363:632;3428:5;3458:18;3499:2;3491:6;3488:14;3485:40;;;3505:18;;:::i;:::-;3580:2;3574:9;3548:2;3634:15;;-1:-1:-1;;3630:24:1;;;3656:2;3626:33;3622:42;3610:55;;;3680:18;;;3700:22;;;3677:46;3674:72;;;3726:18;;:::i;:::-;3766:10;3762:2;3755:22;3795:6;3786:15;;3825:6;3817;3810:22;3865:3;3856:6;3851:3;3847:16;3844:25;3841:45;;;3882:1;3879;3872:12;3841:45;3932:6;3927:3;3920:4;3912:6;3908:17;3895:44;3987:1;3980:4;3971:6;3963;3959:19;3955:30;3948:41;;;;3363:632;;;;;:::o;4000:451::-;4069:6;4122:2;4110:9;4101:7;4097:23;4093:32;4090:52;;;4138:1;4135;4128:12;4090:52;4178:9;4165:23;4211:18;4203:6;4200:30;4197:50;;;4243:1;4240;4233:12;4197:50;4266:22;;4319:4;4311:13;;4307:27;-1:-1:-1;4297:55:1;;4348:1;4345;4338:12;4297:55;4371:74;4437:7;4432:2;4419:16;4414:2;4410;4406:11;4371:74;:::i;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;5778:127::-;5839:10;5834:3;5830:20;5827:1;5820:31;5870:4;5867:1;5860:15;5894:4;5891:1;5884:15;5910:128;5950:3;5981:1;5977:6;5974:1;5971:13;5968:39;;;5987:18;;:::i;:::-;-1:-1:-1;6023:9:1;;5910:128::o;6043:168::-;6083:7;6149:1;6145;6141:6;6137:14;6134:1;6131:21;6126:1;6119:9;6112:17;6108:45;6105:71;;;6156:18;;:::i;:::-;-1:-1:-1;6196:9:1;;6043:168::o;6216:356::-;6418:2;6400:21;;;6437:18;;;6430:30;6496:34;6491:2;6476:18;;6469:62;6563:2;6548:18;;6216:356::o;6787:470::-;6966:3;7004:6;6998:13;7020:53;7066:6;7061:3;7054:4;7046:6;7042:17;7020:53;:::i;:::-;7136:13;;7095:16;;;;7158:57;7136:13;7095:16;7192:4;7180:17;;7158:57;:::i;:::-;7231:20;;6787:470;-1:-1:-1;;;;6787:470:1:o;7669:489::-;-1:-1:-1;;;;;7938:15:1;;;7920:34;;7990:15;;7985:2;7970:18;;7963:43;8037:2;8022:18;;8015:34;;;8085:3;8080:2;8065:18;;8058:31;;;7863:4;;8106:46;;8132:19;;8124:6;8106:46;:::i;:::-;8098:54;7669:489;-1:-1:-1;;;;;;7669:489:1:o;8163:249::-;8232:6;8285:2;8273:9;8264:7;8260:23;8256:32;8253:52;;;8301:1;8298;8291:12;8253:52;8333:9;8327:16;8352:30;8376:5;8352:30;:::i

Swarm Source

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