ETH Price: $2,463.73 (+5.66%)

Token

goblintitles (GOBTITLES)
 

Overview

Max Total Supply

1,612 GOBTITLES

Holders

27

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GOBTITLES
0xAb6d8091baa3cf644D920DC6a42c922370b9ab96
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:
goblintitles

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

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


contract goblintitles is ERC721A, Ownable {
	constructor() ERC721A("goblintitles", "GOBTITLES") {}
    string public _partslink;
    bool public byebye = false;
    uint256 public constant gobtits = 9999;
    mapping(address => uint256) public howmanygobblins;

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

    function makingobblinfri() external payable {
        require(byebye);
        require(totalSupply() + 1 < gobtits);
        require(msg.sender == tx.origin);
    	require(howmanygobblins[msg.sender] < 1);
        howmanygobblins[msg.sender] += 1;
        _mint(msg.sender, 1);
    }

    function makingobblingold(uint256 tittles) external payable {
        require(byebye);
        require(totalSupply() + tittles < gobtits);
        require(msg.sender == tx.origin);
    	require(msg.value == 0.0069 ether * tittles);
        require(howmanygobblins[msg.sender] + tittles < 17);
        howmanygobblins[msg.sender] += tittles;
        _mint(msg.sender, tittles);
    }


 	function makegoblinnnfly(address lords, uint256 _goblins) public onlyOwner {
	    require(totalSupply() + _goblins <= gobtits);
        _mint(lords, _goblins);
    }

    function makegoblngobyebye(bool _bye) external onlyOwner {
        byebye = _bye;
    }

    function makegobblinhaveparts(string memory parts) external onlyOwner {
        _partslink = parts;
    }

    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":"_partslink","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":[],"name":"byebye","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"gobtits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"howmanygobblins","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":[{"internalType":"string","name":"parts","type":"string"}],"name":"makegobblinhaveparts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lords","type":"address"},{"internalType":"uint256","name":"_goblins","type":"uint256"}],"name":"makegoblinnnfly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bye","type":"bool"}],"name":"makegoblngobyebye","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"makingobblinfri","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tittles","type":"uint256"}],"name":"makingobblingold","outputs":[],"stateMutability":"payable","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"}]

6080604052600a805460ff191690553480156200001b57600080fd5b50604080518082018252600c81526b676f626c696e7469746c657360a01b602080830191825283518085019094526009845268474f425449544c455360b81b9084015281519192916200007191600291620000f1565b50805162000087906003906020840190620000f1565b5050600080555062000099336200009f565b620001d3565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000ff9062000197565b90600052602060002090601f0160209004810192826200012357600085556200016e565b82601f106200013e57805160ff19168380011785556200016e565b828001600101855582156200016e579182015b828111156200016e57825182559160200191906001019062000151565b506200017c92915062000180565b5090565b5b808211156200017c576000815560010162000181565b600181811c90821680620001ac57607f821691505b602082108103620001cd57634e487b7160e01b600052602260045260246000fd5b50919050565b6116de80620001e36000396000f3fe60806040526004361061019c5760003560e01c806378a895ac116100ec578063a22cb4651161008a578063cb3742c411610064578063cb3742c41461046a578063d519f39b14610472578063e985e9c514610492578063f2fde38b146104db57600080fd5b8063a22cb4651461040a578063b88d4fde1461042a578063c87b56dd1461044a57600080fd5b80638d80854e116100c65780638d80854e1461039d5780638da5cb5b146103bd57806395d89b41146103db578063a01ffdff146103f057600080fd5b806378a895ac1461034757806383ae807b1461035a5780638ab1a3651461038757600080fd5b80633232deeb116101595780636352211e116101335780636352211e146102d25780636e63b104146102f257806370a0823114610312578063715018a61461033257600080fd5b80633232deeb1461029557806333958a18146102aa57806342842e0e146102b257600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610275575b600080fd5b3480156101ad57600080fd5b506101c16101bc36600461124c565b6104fb565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb61054d565b6040516101cd91906112c1565b34801561020457600080fd5b506102186102133660046112d4565b6105df565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611309565b610623565b005b34801561025e57600080fd5b50600154600054035b6040519081526020016101cd565b34801561028157600080fd5b50610250610290366004611333565b6106f5565b3480156102a157600080fd5b506101eb610705565b610250610793565b3480156102be57600080fd5b506102506102cd366004611333565b61081e565b3480156102de57600080fd5b506102186102ed3660046112d4565b610839565b3480156102fe57600080fd5b5061025061030d3660046113fb565b610844565b34801561031e57600080fd5b5061026761032d366004611444565b610885565b34801561033e57600080fd5b506102506108d4565b6102506103553660046112d4565b61090a565b34801561036657600080fd5b50610267610375366004611444565b600b6020526000908152604090205481565b34801561039357600080fd5b5061026761270f81565b3480156103a957600080fd5b506102506103b836600461146f565b6109bd565b3480156103c957600080fd5b506008546001600160a01b0316610218565b3480156103e757600080fd5b506101eb6109fa565b3480156103fc57600080fd5b50600a546101c19060ff1681565b34801561041657600080fd5b5061025061042536600461148a565b610a09565b34801561043657600080fd5b506102506104453660046114bd565b610a9e565b34801561045657600080fd5b506101eb6104653660046112d4565b610ae8565b610250610b6c565b34801561047e57600080fd5b5061025061048d366004611309565b610bf9565b34801561049e57600080fd5b506101c16104ad366004611539565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104e757600080fd5b506102506104f6366004611444565b610c53565b60006301ffc9a760e01b6001600160e01b03198316148061052c57506380ac58cd60e01b6001600160e01b03198316145b806105475750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461055c90611563565b80601f016020809104026020016040519081016040528092919081815260200182805461058890611563565b80156105d55780601f106105aa576101008083540402835291602001916105d5565b820191906000526020600020905b8154815290600101906020018083116105b857829003601f168201915b5050505050905090565b60006105ea82610ceb565b610607576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061062e82610d12565b9050806001600160a01b0316836001600160a01b0316036106625760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106995761067c81336104ad565b610699576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610700838383610d79565b505050565b6009805461071290611563565b80601f016020809104026020016040519081016040528092919081815260200182805461073e90611563565b801561078b5780601f106107605761010080835404028352916020019161078b565b820191906000526020600020905b81548152906001019060200180831161076e57829003601f168201915b505050505081565b6008546001600160a01b031633146107c65760405162461bcd60e51b81526004016107bd9061159d565b60405180910390fd5b604051600090339047908381818185875af1925050503d8060008114610808576040519150601f19603f3d011682016040523d82523d6000602084013e61080d565b606091505b505090508061081b57600080fd5b50565b61070083838360405180602001604052806000815250610a9e565b600061054782610d12565b6008546001600160a01b0316331461086e5760405162461bcd60e51b81526004016107bd9061159d565b805161088190600990602084019061119d565b5050565b60006001600160a01b0382166108ae576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108fe5760405162461bcd60e51b81526004016107bd9061159d565b6109086000610f20565b565b600a5460ff1661091957600080fd5b61270f8161092a6001546000540390565b61093491906115e8565b1061093e57600080fd5b33321461094a57600080fd5b61095b816618838370f34000611600565b341461096657600080fd5b336000908152600b60205260409020546011906109849083906115e8565b1061098e57600080fd5b336000908152600b6020526040812080548392906109ad9084906115e8565b9091555061081b90503382610f72565b6008546001600160a01b031633146109e75760405162461bcd60e51b81526004016107bd9061159d565b600a805460ff1916911515919091179055565b60606003805461055c90611563565b336001600160a01b03831603610a325760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610aa9848484610d79565b6001600160a01b0383163b15610ae257610ac584848484611053565b610ae2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610af382610ceb565b610b1057604051630a14c4b560e41b815260040160405180910390fd5b6000610b1a61113f565b90508051600003610b3a5760405180602001604052806000815250610b65565b80610b448461114e565b604051602001610b5592919061161f565b6040516020818303038152906040525b9392505050565b600a5460ff16610b7b57600080fd5b61270f610b8b6001546000540390565b610b969060016115e8565b10610ba057600080fd5b333214610bac57600080fd5b336000908152600b6020526040902054600111610bc857600080fd5b336000908152600b60205260408120805460019290610be89084906115e8565b909155506109089050336001610f72565b6008546001600160a01b03163314610c235760405162461bcd60e51b81526004016107bd9061159d565b61270f81610c346001546000540390565b610c3e91906115e8565b1115610c4957600080fd5b6108818282610f72565b6008546001600160a01b03163314610c7d5760405162461bcd60e51b81526004016107bd9061159d565b6001600160a01b038116610ce25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107bd565b61081b81610f20565b6000805482108015610547575050600090815260046020526040902054600160e01b161590565b600081600054811015610d605760008181526004602052604081205490600160e01b82169003610d5e575b80600003610b65575060001901600081815260046020526040902054610d3d565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610d8482610d12565b9050836001600160a01b0316816001600160a01b031614610db75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610dd55750610dd585336104ad565b80610df0575033610de5846105df565b6001600160a01b0316145b905080610e1057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610e3757604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003610ed857600183016000818152600460205260408120549003610ed6576000548114610ed65760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b038316610f9b57604051622e076360e81b815260040160405180910390fd5b81600003610fbc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106110075750600055505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061108890339089908890889060040161164e565b6020604051808303816000875af19250505080156110c3575060408051601f3d908101601f191682019092526110c09181019061168b565b60015b611121573d8080156110f1576040519150601f19603f3d011682016040523d82523d6000602084013e6110f6565b606091505b508051600003611119576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461055c90611563565b604080516080810191829052607f0190826030600a8206018353600a90045b801561118b57600183039250600a81066030018353600a900461116d565b50819003601f19909101908152919050565b8280546111a990611563565b90600052602060002090601f0160209004810192826111cb5760008555611211565b82601f106111e457805160ff1916838001178555611211565b82800160010185558215611211579182015b828111156112115782518255916020019190600101906111f6565b5061121d929150611221565b5090565b5b8082111561121d5760008155600101611222565b6001600160e01b03198116811461081b57600080fd5b60006020828403121561125e57600080fd5b8135610b6581611236565b60005b8381101561128457818101518382015260200161126c565b83811115610ae25750506000910152565b600081518084526112ad816020860160208601611269565b601f01601f19169290920160200192915050565b602081526000610b656020830184611295565b6000602082840312156112e657600080fd5b5035919050565b80356001600160a01b038116811461130457600080fd5b919050565b6000806040838503121561131c57600080fd5b611325836112ed565b946020939093013593505050565b60008060006060848603121561134857600080fd5b611351846112ed565b925061135f602085016112ed565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156113a0576113a061136f565b604051601f8501601f19908116603f011681019082821181831017156113c8576113c861136f565b816040528093508581528686860111156113e157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561140d57600080fd5b813567ffffffffffffffff81111561142457600080fd5b8201601f8101841361143557600080fd5b61113784823560208401611385565b60006020828403121561145657600080fd5b610b65826112ed565b8035801515811461130457600080fd5b60006020828403121561148157600080fd5b610b658261145f565b6000806040838503121561149d57600080fd5b6114a6836112ed565b91506114b46020840161145f565b90509250929050565b600080600080608085870312156114d357600080fd5b6114dc856112ed565b93506114ea602086016112ed565b925060408501359150606085013567ffffffffffffffff81111561150d57600080fd5b8501601f8101871361151e57600080fd5b61152d87823560208401611385565b91505092959194509250565b6000806040838503121561154c57600080fd5b611555836112ed565b91506114b4602084016112ed565b600181811c9082168061157757607f821691505b60208210810361159757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156115fb576115fb6115d2565b500190565b600081600019048311821515161561161a5761161a6115d2565b500290565b60008351611631818460208801611269565b835190830190611645818360208801611269565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061168190830184611295565b9695505050505050565b60006020828403121561169d57600080fd5b8151610b658161123656fea2646970667358221220cf7806064032f2576542c765d9219dce84e90baf3979c3950722f8bc6791dcc264736f6c634300080e0033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806378a895ac116100ec578063a22cb4651161008a578063cb3742c411610064578063cb3742c41461046a578063d519f39b14610472578063e985e9c514610492578063f2fde38b146104db57600080fd5b8063a22cb4651461040a578063b88d4fde1461042a578063c87b56dd1461044a57600080fd5b80638d80854e116100c65780638d80854e1461039d5780638da5cb5b146103bd57806395d89b41146103db578063a01ffdff146103f057600080fd5b806378a895ac1461034757806383ae807b1461035a5780638ab1a3651461038757600080fd5b80633232deeb116101595780636352211e116101335780636352211e146102d25780636e63b104146102f257806370a0823114610312578063715018a61461033257600080fd5b80633232deeb1461029557806333958a18146102aa57806342842e0e146102b257600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610275575b600080fd5b3480156101ad57600080fd5b506101c16101bc36600461124c565b6104fb565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb61054d565b6040516101cd91906112c1565b34801561020457600080fd5b506102186102133660046112d4565b6105df565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611309565b610623565b005b34801561025e57600080fd5b50600154600054035b6040519081526020016101cd565b34801561028157600080fd5b50610250610290366004611333565b6106f5565b3480156102a157600080fd5b506101eb610705565b610250610793565b3480156102be57600080fd5b506102506102cd366004611333565b61081e565b3480156102de57600080fd5b506102186102ed3660046112d4565b610839565b3480156102fe57600080fd5b5061025061030d3660046113fb565b610844565b34801561031e57600080fd5b5061026761032d366004611444565b610885565b34801561033e57600080fd5b506102506108d4565b6102506103553660046112d4565b61090a565b34801561036657600080fd5b50610267610375366004611444565b600b6020526000908152604090205481565b34801561039357600080fd5b5061026761270f81565b3480156103a957600080fd5b506102506103b836600461146f565b6109bd565b3480156103c957600080fd5b506008546001600160a01b0316610218565b3480156103e757600080fd5b506101eb6109fa565b3480156103fc57600080fd5b50600a546101c19060ff1681565b34801561041657600080fd5b5061025061042536600461148a565b610a09565b34801561043657600080fd5b506102506104453660046114bd565b610a9e565b34801561045657600080fd5b506101eb6104653660046112d4565b610ae8565b610250610b6c565b34801561047e57600080fd5b5061025061048d366004611309565b610bf9565b34801561049e57600080fd5b506101c16104ad366004611539565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104e757600080fd5b506102506104f6366004611444565b610c53565b60006301ffc9a760e01b6001600160e01b03198316148061052c57506380ac58cd60e01b6001600160e01b03198316145b806105475750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461055c90611563565b80601f016020809104026020016040519081016040528092919081815260200182805461058890611563565b80156105d55780601f106105aa576101008083540402835291602001916105d5565b820191906000526020600020905b8154815290600101906020018083116105b857829003601f168201915b5050505050905090565b60006105ea82610ceb565b610607576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061062e82610d12565b9050806001600160a01b0316836001600160a01b0316036106625760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106995761067c81336104ad565b610699576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610700838383610d79565b505050565b6009805461071290611563565b80601f016020809104026020016040519081016040528092919081815260200182805461073e90611563565b801561078b5780601f106107605761010080835404028352916020019161078b565b820191906000526020600020905b81548152906001019060200180831161076e57829003601f168201915b505050505081565b6008546001600160a01b031633146107c65760405162461bcd60e51b81526004016107bd9061159d565b60405180910390fd5b604051600090339047908381818185875af1925050503d8060008114610808576040519150601f19603f3d011682016040523d82523d6000602084013e61080d565b606091505b505090508061081b57600080fd5b50565b61070083838360405180602001604052806000815250610a9e565b600061054782610d12565b6008546001600160a01b0316331461086e5760405162461bcd60e51b81526004016107bd9061159d565b805161088190600990602084019061119d565b5050565b60006001600160a01b0382166108ae576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108fe5760405162461bcd60e51b81526004016107bd9061159d565b6109086000610f20565b565b600a5460ff1661091957600080fd5b61270f8161092a6001546000540390565b61093491906115e8565b1061093e57600080fd5b33321461094a57600080fd5b61095b816618838370f34000611600565b341461096657600080fd5b336000908152600b60205260409020546011906109849083906115e8565b1061098e57600080fd5b336000908152600b6020526040812080548392906109ad9084906115e8565b9091555061081b90503382610f72565b6008546001600160a01b031633146109e75760405162461bcd60e51b81526004016107bd9061159d565b600a805460ff1916911515919091179055565b60606003805461055c90611563565b336001600160a01b03831603610a325760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610aa9848484610d79565b6001600160a01b0383163b15610ae257610ac584848484611053565b610ae2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610af382610ceb565b610b1057604051630a14c4b560e41b815260040160405180910390fd5b6000610b1a61113f565b90508051600003610b3a5760405180602001604052806000815250610b65565b80610b448461114e565b604051602001610b5592919061161f565b6040516020818303038152906040525b9392505050565b600a5460ff16610b7b57600080fd5b61270f610b8b6001546000540390565b610b969060016115e8565b10610ba057600080fd5b333214610bac57600080fd5b336000908152600b6020526040902054600111610bc857600080fd5b336000908152600b60205260408120805460019290610be89084906115e8565b909155506109089050336001610f72565b6008546001600160a01b03163314610c235760405162461bcd60e51b81526004016107bd9061159d565b61270f81610c346001546000540390565b610c3e91906115e8565b1115610c4957600080fd5b6108818282610f72565b6008546001600160a01b03163314610c7d5760405162461bcd60e51b81526004016107bd9061159d565b6001600160a01b038116610ce25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107bd565b61081b81610f20565b6000805482108015610547575050600090815260046020526040902054600160e01b161590565b600081600054811015610d605760008181526004602052604081205490600160e01b82169003610d5e575b80600003610b65575060001901600081815260046020526040902054610d3d565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610d8482610d12565b9050836001600160a01b0316816001600160a01b031614610db75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610dd55750610dd585336104ad565b80610df0575033610de5846105df565b6001600160a01b0316145b905080610e1057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610e3757604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003610ed857600183016000818152600460205260408120549003610ed6576000548114610ed65760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b038316610f9b57604051622e076360e81b815260040160405180910390fd5b81600003610fbc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106110075750600055505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061108890339089908890889060040161164e565b6020604051808303816000875af19250505080156110c3575060408051601f3d908101601f191682019092526110c09181019061168b565b60015b611121573d8080156110f1576040519150601f19603f3d011682016040523d82523d6000602084013e6110f6565b606091505b508051600003611119576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461055c90611563565b604080516080810191829052607f0190826030600a8206018353600a90045b801561118b57600183039250600a81066030018353600a900461116d565b50819003601f19909101908152919050565b8280546111a990611563565b90600052602060002090601f0160209004810192826111cb5760008555611211565b82601f106111e457805160ff1916838001178555611211565b82800160010185558215611211579182015b828111156112115782518255916020019190600101906111f6565b5061121d929150611221565b5090565b5b8082111561121d5760008155600101611222565b6001600160e01b03198116811461081b57600080fd5b60006020828403121561125e57600080fd5b8135610b6581611236565b60005b8381101561128457818101518382015260200161126c565b83811115610ae25750506000910152565b600081518084526112ad816020860160208601611269565b601f01601f19169290920160200192915050565b602081526000610b656020830184611295565b6000602082840312156112e657600080fd5b5035919050565b80356001600160a01b038116811461130457600080fd5b919050565b6000806040838503121561131c57600080fd5b611325836112ed565b946020939093013593505050565b60008060006060848603121561134857600080fd5b611351846112ed565b925061135f602085016112ed565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156113a0576113a061136f565b604051601f8501601f19908116603f011681019082821181831017156113c8576113c861136f565b816040528093508581528686860111156113e157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561140d57600080fd5b813567ffffffffffffffff81111561142457600080fd5b8201601f8101841361143557600080fd5b61113784823560208401611385565b60006020828403121561145657600080fd5b610b65826112ed565b8035801515811461130457600080fd5b60006020828403121561148157600080fd5b610b658261145f565b6000806040838503121561149d57600080fd5b6114a6836112ed565b91506114b46020840161145f565b90509250929050565b600080600080608085870312156114d357600080fd5b6114dc856112ed565b93506114ea602086016112ed565b925060408501359150606085013567ffffffffffffffff81111561150d57600080fd5b8501601f8101871361151e57600080fd5b61152d87823560208401611385565b91505092959194509250565b6000806040838503121561154c57600080fd5b611555836112ed565b91506114b4602084016112ed565b600181811c9082168061157757607f821691505b60208210810361159757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156115fb576115fb6115d2565b500190565b600081600019048311821515161561161a5761161a6115d2565b500290565b60008351611631818460208801611269565b835190830190611645818360208801611269565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061168190830184611295565b9695505050505050565b60006020828403121561169d57600080fd5b8151610b658161123656fea2646970667358221220cf7806064032f2576542c765d9219dce84e90baf3979c3950722f8bc6791dcc264736f6c634300080e0033

Deployed Bytecode Sourcemap

41546:1645: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;20927:170:0;;;;;;;;;;-1:-1:-1;20927:170:0;;;;;:::i;:::-;;:::i;41651:24::-;;;;;;;;;;;;;:::i;43022:164::-;;;:::i;21168:185::-;;;;;;;;;;-1:-1:-1;21168:185:0;;;;;:::i;:::-;;:::i;17762:144::-;;;;;;;;;;-1:-1:-1;17762:144:0;;;;;:::i;:::-;;:::i;42907:107::-;;;;;;;;;;-1:-1:-1;42907:107:0;;;;;:::i;:::-;;:::i;13639:224::-;;;;;;;;;;-1:-1:-1;13639:224:0;;;;;:::i;:::-;;:::i;40727:103::-;;;;;;;;;;;;;:::i;42236:390::-;;;;;;:::i;:::-;;:::i;41760:50::-;;;;;;;;;;-1:-1:-1;41760:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;41715:38;;;;;;;;;;;;41749:4;41715:38;;42810:89;;;;;;;;;;-1:-1:-1;42810:89:0;;;;;:::i;:::-;;:::i;40076:87::-;;;;;;;;;;-1:-1:-1;40149:6:0;;-1:-1:-1;;;;;40149:6:0;40076:87;;18142:104;;;;;;;;;;;;;:::i;41682:26::-;;;;;;;;;;-1:-1:-1;41682:26:0;;;;;;;;20317:308;;;;;;;;;;-1:-1:-1;20317:308:0;;;;;:::i;:::-;;:::i;21424:396::-;;;;;;;;;;-1:-1:-1;21424:396:0;;;;;:::i;:::-;;:::i;18317:318::-;;;;;;;;;;-1:-1:-1;18317:318:0;;;;;:::i;:::-;;:::i;41938:290::-;;;:::i;42634:168::-;;;;;;;;;;-1:-1:-1;42634:168:0;;;;;:::i;:::-;;:::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;40985:201;;;;;;;;;;-1:-1:-1;40985:201:0;;;;;:::i;:::-;;:::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;20927:170::-;21061:28;21071:4;21077:2;21081:7;21061:9;:28::i;:::-;20927:170;;;:::o;41651:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43022:164::-;40149:6;;-1:-1:-1;;;;;40149:6:0;36144:10;40296:23;40288:68;;;;-1:-1:-1;;;40288:68:0;;;;;;;:::i;:::-;;;;;;;;;43102:58:::1;::::0;43084:12:::1;::::0;43110:10:::1;::::0;43134:21:::1;::::0;43084:12;43102:58;43084:12;43102:58;43134:21;43110:10;43102:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43083:77;;;43173:7;43165:16;;;::::0;::::1;;43075:111;43022:164::o:0;21168:185::-;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;42907:107::-;40149:6;;-1:-1:-1;;;;;40149:6:0;36144:10;40296:23;40288:68;;;;-1:-1:-1;;;40288:68:0;;;;;;;:::i;:::-;42988:18;;::::1;::::0;:10:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42907:107:::0;:::o;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;42236:390::-;42315:6;;;;42307:15;;;;;;41749:4;42357:7;42341:13;12280:12;;12067:7;12264:13;:28;;12014:315;42341:13;:23;;;;:::i;:::-;:33;42333:42;;;;;;42394:10;42408:9;42394:23;42386:32;;;;;;42447:22;42462:7;42447:12;:22;:::i;:::-;42434:9;:35;42426:44;;;;;;42505:10;42489:27;;;;:15;:27;;;;;;42529:2;;42489:37;;42519:7;;42489:37;:::i;:::-;:42;42481:51;;;;;;42559:10;42543:27;;;;:15;:27;;;;;:38;;42574:7;;42543:27;:38;;42574:7;;42543:38;:::i;:::-;;;;-1:-1:-1;42592:26:0;;-1:-1:-1;42598:10:0;42610:7;42592:5;:26::i;42810:89::-;40149:6;;-1:-1:-1;;;;;40149:6:0;36144:10;40296:23;40288:68;;;;-1:-1:-1;;;40288:68:0;;;;;;;:::i;:::-;42878:6:::1;:13:::0;;-1:-1:-1;;42878:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42810:89::o;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;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;41938:290::-;42001:6;;;;41993:15;;;;;;41749:4;42027:13;12280:12;;12067:7;12264:13;:28;;12014:315;42027:13;:17;;42043:1;42027:17;:::i;:::-;:27;42019:36;;;;;;42074:10;42088:9;42074:23;42066:32;;;;;;42130:10;42114:27;;;;:15;:27;;;;;;42144:1;-1:-1:-1;42106:40:0;;;;;;42173:10;42157:27;;;;:15;:27;;;;;:32;;42188:1;;42157:27;:32;;42188:1;;42157:32;:::i;:::-;;;;-1:-1:-1;42200:20:0;;-1:-1:-1;42206:10:0;42218:1;42200:5;:20::i;42634:168::-;40149:6;;-1:-1:-1;;;;;40149:6:0;36144:10;40296:23;40288:68;;;;-1:-1:-1;;;40288:68:0;;;;;;;:::i;:::-;41749:4:::1;42741:8;42725:13;12280:12:::0;;12067:7;12264:13;:28;;12014:315;42725:13:::1;:24;;;;:::i;:::-;:35;;42717:44;;;::::0;::::1;;42772:22;42778:5;42785:8;42772:5;:22::i;40985:201::-:0;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;22075:273::-:0;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;;;;;;;;;;;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;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;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;41819:111::-;41879:13;41912:10;41905:17;;;;;:::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:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:160::-;4169:20;;4225:13;;4218:21;4208:32;;4198:60;;4254:1;4251;4244:12;4269:180;4325:6;4378:2;4366:9;4357:7;4353:23;4349:32;4346:52;;;4394:1;4391;4384:12;4346:52;4417:26;4433:9;4417:26;:::i;4454:254::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4619:29;4638:9;4619:29;:::i;:::-;4609:39;;4667:35;4698:2;4687:9;4683:18;4667:35;:::i;:::-;4657:45;;4454:254;;;;;:::o;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:356::-;6237:2;6219:21;;;6256:18;;;6249:30;6315:34;6310:2;6295:18;;6288:62;6382:2;6367:18;;6035:356::o;6606:127::-;6667:10;6662:3;6658:20;6655:1;6648:31;6698:4;6695:1;6688:15;6722:4;6719:1;6712:15;6738:128;6778:3;6809:1;6805:6;6802:1;6799:13;6796:39;;;6815:18;;:::i;:::-;-1:-1:-1;6851:9:1;;6738:128::o;6871:168::-;6911:7;6977:1;6973;6969:6;6965:14;6962:1;6959:21;6954:1;6947:9;6940:17;6936:45;6933:71;;;6984:18;;:::i;:::-;-1:-1:-1;7024:9:1;;6871:168::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://cf7806064032f2576542c765d9219dce84e90baf3979c3950722f8bc6791dcc2
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.