ETH Price: $3,305.17 (-3.13%)
Gas: 19 Gwei

Token

goblinticket (GOBTIC)
 

Overview

Max Total Supply

8,484 GOBTIC

Holders

1,643

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 GOBTIC
0x1fea38a6fd621a7e4e78d83e24252673df603a10
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:
goblinticketNFT

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-05-31
*/

// 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 goblinticketNFT is ERC721A, Ownable {
	constructor() ERC721A("goblinticket", "GOBTIC") {}
    string public _partslink;
    bool public byebye = false;
    uint256 public constant goblintikets = 9999;
    uint256 public goblinbyebye = 2; 
    mapping(address => uint256) public howmanygobblins;

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

    function makingobblin() external payable {
        require(byebye);
        require(totalSupply() + goblinbyebye < goblintikets);
        require(msg.sender == tx.origin);
    	require(howmanygobblins[msg.sender] < goblinbyebye);
        require(totalSupply() + goblinbyebye < 3000 || msg.value == 0.005 ether * goblinbyebye, "goblen nids moni fur burgrs");

        howmanygobblins[msg.sender] += goblinbyebye;
        _mint(msg.sender, goblinbyebye);
    }

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

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

    function spredgobblins(uint256 _byebye) external onlyOwner {
        goblinbyebye = _byebye;
    }

    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":"goblinbyebye","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goblintikets","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":"makingobblin","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":[{"internalType":"uint256","name":"_byebye","type":"uint256"}],"name":"spredgobblins","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"}]

6080604052600a805460ff191690556002600b553480156200002057600080fd5b50604080518082018252600c81526b19dbd89b1a5b9d1a58dad95d60a21b602080830191825283518085019094526006845265474f4254494360d01b9084015281519192916200007391600291620000f3565b50805162000089906003906020840190620000f3565b505060008055506200009b33620000a1565b620001d5565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001019062000199565b90600052602060002090601f01602090048101928262000125576000855562000170565b82601f106200014057805160ff191683800117855562000170565b8280016001018555821562000170579182015b828111156200017057825182559160200191906001019062000153565b506200017e92915062000182565b5090565b5b808211156200017e576000815560010162000183565b600181811c90821680620001ae57607f821691505b602082108103620001cf57634e487b7160e01b600052602260045260246000fd5b50919050565b61172a80620001e56000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063a22cb4651161008a578063d519f39b11610064578063d519f39b146104ac578063e985e9c5146104cc578063ed64da9f14610515578063f2fde38b1461051d57600080fd5b8063a22cb4651461044c578063b88d4fde1461046c578063c87b56dd1461048c57600080fd5b80638d80854e116100c65780638d80854e146103df5780638da5cb5b146103ff57806395d89b411461041d578063a01ffdff1461043257600080fd5b8063715018a61461037d57806375d2a90e1461039257806383ae807b146103b257600080fd5b806325f08cf21161015957806342842e0e1161013357806342842e0e146102fd5780636352211e1461031d5780636e63b1041461033d57806370a082311461035d57600080fd5b806325f08cf2146102ca5780633232deeb146102e057806333958a18146102f557600080fd5b8063081812fc11610195578063081812fc14610237578063095ea7b31461026f57806318160ddd1461029157806323b872dd146102aa57600080fd5b806301ffc9a7146101bc57806304becbc0146101f157806306fdde0314610215575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611298565b61053d565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020761270f81565b6040519081526020016101e8565b34801561022157600080fd5b5061022a61058f565b6040516101e8919061130d565b34801561024357600080fd5b50610257610252366004611320565b610621565b6040516001600160a01b0390911681526020016101e8565b34801561027b57600080fd5b5061028f61028a366004611355565b610665565b005b34801561029d57600080fd5b5060015460005403610207565b3480156102b657600080fd5b5061028f6102c536600461137f565b610737565b3480156102d657600080fd5b50610207600b5481565b3480156102ec57600080fd5b5061022a610747565b61028f6107d5565b34801561030957600080fd5b5061028f61031836600461137f565b610860565b34801561032957600080fd5b50610257610338366004611320565b61087b565b34801561034957600080fd5b5061028f610358366004611447565b610886565b34801561036957600080fd5b50610207610378366004611490565b6108c7565b34801561038957600080fd5b5061028f610916565b34801561039e57600080fd5b5061028f6103ad366004611320565b61094c565b3480156103be57600080fd5b506102076103cd366004611490565b600c6020526000908152604090205481565b3480156103eb57600080fd5b5061028f6103fa3660046114bb565b61097b565b34801561040b57600080fd5b506008546001600160a01b0316610257565b34801561042957600080fd5b5061022a6109b8565b34801561043e57600080fd5b50600a546101dc9060ff1681565b34801561045857600080fd5b5061028f6104673660046114d6565b6109c7565b34801561047857600080fd5b5061028f610487366004611509565b610a5c565b34801561049857600080fd5b5061022a6104a7366004611320565b610aa6565b3480156104b857600080fd5b5061028f6104c7366004611355565b610b2a565b3480156104d857600080fd5b506101dc6104e7366004611585565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61028f610b84565b34801561052957600080fd5b5061028f610538366004611490565b610c9f565b60006301ffc9a760e01b6001600160e01b03198316148061056e57506380ac58cd60e01b6001600160e01b03198316145b806105895750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461059e906115af565b80601f01602080910402602001604051908101604052809291908181526020018280546105ca906115af565b80156106175780601f106105ec57610100808354040283529160200191610617565b820191906000526020600020905b8154815290600101906020018083116105fa57829003601f168201915b5050505050905090565b600061062c82610d37565b610649576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061067082610d5e565b9050806001600160a01b0316836001600160a01b0316036106a45760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106db576106be81336104e7565b6106db576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610742838383610dc5565b505050565b60098054610754906115af565b80601f0160208091040260200160405190810160405280929190818152602001828054610780906115af565b80156107cd5780601f106107a2576101008083540402835291602001916107cd565b820191906000526020600020905b8154815290600101906020018083116107b057829003601f168201915b505050505081565b6008546001600160a01b031633146108085760405162461bcd60e51b81526004016107ff906115e9565b60405180910390fd5b604051600090339047908381818185875af1925050503d806000811461084a576040519150601f19603f3d011682016040523d82523d6000602084013e61084f565b606091505b505090508061085d57600080fd5b50565b61074283838360405180602001604052806000815250610a5c565b600061058982610d5e565b6008546001600160a01b031633146108b05760405162461bcd60e51b81526004016107ff906115e9565b80516108c39060099060208401906111e9565b5050565b60006001600160a01b0382166108f0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109405760405162461bcd60e51b81526004016107ff906115e9565b61094a6000610f6c565b565b6008546001600160a01b031633146109765760405162461bcd60e51b81526004016107ff906115e9565b600b55565b6008546001600160a01b031633146109a55760405162461bcd60e51b81526004016107ff906115e9565b600a805460ff1916911515919091179055565b60606003805461059e906115af565b336001600160a01b038316036109f05760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a67848484610dc5565b6001600160a01b0383163b15610aa057610a8384848484610fbe565b610aa0576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ab182610d37565b610ace57604051630a14c4b560e41b815260040160405180910390fd5b6000610ad86110aa565b90508051600003610af85760405180602001604052806000815250610b23565b80610b02846110b9565b604051602001610b1392919061161e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610b545760405162461bcd60e51b81526004016107ff906115e9565b61270f81610b656001546000540390565b610b6f9190611663565b1115610b7a57600080fd5b6108c38282611108565b600a5460ff16610b9357600080fd5b61270f600b54610ba66001546000540390565b610bb09190611663565b10610bba57600080fd5b333214610bc657600080fd5b600b54336000908152600c602052604090205410610be357600080fd5b610bb8600b54610bf66001546000540390565b610c009190611663565b1080610c1e5750600b54610c1b906611c37937e0800061167b565b34145b610c6a5760405162461bcd60e51b815260206004820152601b60248201527f676f626c656e206e696473206d6f6e692066757220627572677273000000000060448201526064016107ff565b600b54336000908152600c602052604081208054909190610c8c908490611663565b9250508190555061094a33600b54611108565b6008546001600160a01b03163314610cc95760405162461bcd60e51b81526004016107ff906115e9565b6001600160a01b038116610d2e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ff565b61085d81610f6c565b6000805482108015610589575050600090815260046020526040902054600160e01b161590565b600081600054811015610dac5760008181526004602052604081205490600160e01b82169003610daa575b80600003610b23575060001901600081815260046020526040902054610d89565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610dd082610d5e565b9050836001600160a01b0316816001600160a01b031614610e035760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610e215750610e2185336104e7565b80610e3c575033610e3184610621565b6001600160a01b0316145b905080610e5c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610e8357604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003610f2457600183016000818152600460205260408120549003610f22576000548114610f225760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610ff390339089908890889060040161169a565b6020604051808303816000875af192505050801561102e575060408051601f3d908101601f1916820190925261102b918101906116d7565b60015b61108c573d80801561105c576040519150601f19603f3d011682016040523d82523d6000602084013e611061565b606091505b508051600003611084576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461059e906115af565b604080516080810191829052607f0190826030600a8206018353600a90045b80156110f657600183039250600a81066030018353600a90046110d8565b50819003601f19909101908152919050565b6000546001600160a01b03831661113157604051622e076360e81b815260040160405180910390fd5b816000036111525760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061119d5750600055505050565b8280546111f5906115af565b90600052602060002090601f016020900481019282611217576000855561125d565b82601f1061123057805160ff191683800117855561125d565b8280016001018555821561125d579182015b8281111561125d578251825591602001919060010190611242565b5061126992915061126d565b5090565b5b80821115611269576000815560010161126e565b6001600160e01b03198116811461085d57600080fd5b6000602082840312156112aa57600080fd5b8135610b2381611282565b60005b838110156112d05781810151838201526020016112b8565b83811115610aa05750506000910152565b600081518084526112f98160208601602086016112b5565b601f01601f19169290920160200192915050565b602081526000610b2360208301846112e1565b60006020828403121561133257600080fd5b5035919050565b80356001600160a01b038116811461135057600080fd5b919050565b6000806040838503121561136857600080fd5b61137183611339565b946020939093013593505050565b60008060006060848603121561139457600080fd5b61139d84611339565b92506113ab60208501611339565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156113ec576113ec6113bb565b604051601f8501601f19908116603f01168101908282118183101715611414576114146113bb565b8160405280935085815286868601111561142d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561145957600080fd5b813567ffffffffffffffff81111561147057600080fd5b8201601f8101841361148157600080fd5b6110a2848235602084016113d1565b6000602082840312156114a257600080fd5b610b2382611339565b8035801515811461135057600080fd5b6000602082840312156114cd57600080fd5b610b23826114ab565b600080604083850312156114e957600080fd5b6114f283611339565b9150611500602084016114ab565b90509250929050565b6000806000806080858703121561151f57600080fd5b61152885611339565b935061153660208601611339565b925060408501359150606085013567ffffffffffffffff81111561155957600080fd5b8501601f8101871361156a57600080fd5b611579878235602084016113d1565b91505092959194509250565b6000806040838503121561159857600080fd5b6115a183611339565b915061150060208401611339565b600181811c908216806115c357607f821691505b6020821081036115e357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600083516116308184602088016112b5565b8351908301906116448183602088016112b5565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b600082198211156116765761167661164d565b500190565b60008160001904831182151516156116955761169561164d565b500290565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116cd908301846112e1565b9695505050505050565b6000602082840312156116e957600080fd5b8151610b238161128256fea264697066735822122033d2d504df5079ee020518b79a4368d5747f04b97d26bc18c7d014cbe414f26064736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063a22cb4651161008a578063d519f39b11610064578063d519f39b146104ac578063e985e9c5146104cc578063ed64da9f14610515578063f2fde38b1461051d57600080fd5b8063a22cb4651461044c578063b88d4fde1461046c578063c87b56dd1461048c57600080fd5b80638d80854e116100c65780638d80854e146103df5780638da5cb5b146103ff57806395d89b411461041d578063a01ffdff1461043257600080fd5b8063715018a61461037d57806375d2a90e1461039257806383ae807b146103b257600080fd5b806325f08cf21161015957806342842e0e1161013357806342842e0e146102fd5780636352211e1461031d5780636e63b1041461033d57806370a082311461035d57600080fd5b806325f08cf2146102ca5780633232deeb146102e057806333958a18146102f557600080fd5b8063081812fc11610195578063081812fc14610237578063095ea7b31461026f57806318160ddd1461029157806323b872dd146102aa57600080fd5b806301ffc9a7146101bc57806304becbc0146101f157806306fdde0314610215575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611298565b61053d565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061020761270f81565b6040519081526020016101e8565b34801561022157600080fd5b5061022a61058f565b6040516101e8919061130d565b34801561024357600080fd5b50610257610252366004611320565b610621565b6040516001600160a01b0390911681526020016101e8565b34801561027b57600080fd5b5061028f61028a366004611355565b610665565b005b34801561029d57600080fd5b5060015460005403610207565b3480156102b657600080fd5b5061028f6102c536600461137f565b610737565b3480156102d657600080fd5b50610207600b5481565b3480156102ec57600080fd5b5061022a610747565b61028f6107d5565b34801561030957600080fd5b5061028f61031836600461137f565b610860565b34801561032957600080fd5b50610257610338366004611320565b61087b565b34801561034957600080fd5b5061028f610358366004611447565b610886565b34801561036957600080fd5b50610207610378366004611490565b6108c7565b34801561038957600080fd5b5061028f610916565b34801561039e57600080fd5b5061028f6103ad366004611320565b61094c565b3480156103be57600080fd5b506102076103cd366004611490565b600c6020526000908152604090205481565b3480156103eb57600080fd5b5061028f6103fa3660046114bb565b61097b565b34801561040b57600080fd5b506008546001600160a01b0316610257565b34801561042957600080fd5b5061022a6109b8565b34801561043e57600080fd5b50600a546101dc9060ff1681565b34801561045857600080fd5b5061028f6104673660046114d6565b6109c7565b34801561047857600080fd5b5061028f610487366004611509565b610a5c565b34801561049857600080fd5b5061022a6104a7366004611320565b610aa6565b3480156104b857600080fd5b5061028f6104c7366004611355565b610b2a565b3480156104d857600080fd5b506101dc6104e7366004611585565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61028f610b84565b34801561052957600080fd5b5061028f610538366004611490565b610c9f565b60006301ffc9a760e01b6001600160e01b03198316148061056e57506380ac58cd60e01b6001600160e01b03198316145b806105895750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461059e906115af565b80601f01602080910402602001604051908101604052809291908181526020018280546105ca906115af565b80156106175780601f106105ec57610100808354040283529160200191610617565b820191906000526020600020905b8154815290600101906020018083116105fa57829003601f168201915b5050505050905090565b600061062c82610d37565b610649576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061067082610d5e565b9050806001600160a01b0316836001600160a01b0316036106a45760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106db576106be81336104e7565b6106db576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610742838383610dc5565b505050565b60098054610754906115af565b80601f0160208091040260200160405190810160405280929190818152602001828054610780906115af565b80156107cd5780601f106107a2576101008083540402835291602001916107cd565b820191906000526020600020905b8154815290600101906020018083116107b057829003601f168201915b505050505081565b6008546001600160a01b031633146108085760405162461bcd60e51b81526004016107ff906115e9565b60405180910390fd5b604051600090339047908381818185875af1925050503d806000811461084a576040519150601f19603f3d011682016040523d82523d6000602084013e61084f565b606091505b505090508061085d57600080fd5b50565b61074283838360405180602001604052806000815250610a5c565b600061058982610d5e565b6008546001600160a01b031633146108b05760405162461bcd60e51b81526004016107ff906115e9565b80516108c39060099060208401906111e9565b5050565b60006001600160a01b0382166108f0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109405760405162461bcd60e51b81526004016107ff906115e9565b61094a6000610f6c565b565b6008546001600160a01b031633146109765760405162461bcd60e51b81526004016107ff906115e9565b600b55565b6008546001600160a01b031633146109a55760405162461bcd60e51b81526004016107ff906115e9565b600a805460ff1916911515919091179055565b60606003805461059e906115af565b336001600160a01b038316036109f05760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610a67848484610dc5565b6001600160a01b0383163b15610aa057610a8384848484610fbe565b610aa0576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ab182610d37565b610ace57604051630a14c4b560e41b815260040160405180910390fd5b6000610ad86110aa565b90508051600003610af85760405180602001604052806000815250610b23565b80610b02846110b9565b604051602001610b1392919061161e565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610b545760405162461bcd60e51b81526004016107ff906115e9565b61270f81610b656001546000540390565b610b6f9190611663565b1115610b7a57600080fd5b6108c38282611108565b600a5460ff16610b9357600080fd5b61270f600b54610ba66001546000540390565b610bb09190611663565b10610bba57600080fd5b333214610bc657600080fd5b600b54336000908152600c602052604090205410610be357600080fd5b610bb8600b54610bf66001546000540390565b610c009190611663565b1080610c1e5750600b54610c1b906611c37937e0800061167b565b34145b610c6a5760405162461bcd60e51b815260206004820152601b60248201527f676f626c656e206e696473206d6f6e692066757220627572677273000000000060448201526064016107ff565b600b54336000908152600c602052604081208054909190610c8c908490611663565b9250508190555061094a33600b54611108565b6008546001600160a01b03163314610cc95760405162461bcd60e51b81526004016107ff906115e9565b6001600160a01b038116610d2e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ff565b61085d81610f6c565b6000805482108015610589575050600090815260046020526040902054600160e01b161590565b600081600054811015610dac5760008181526004602052604081205490600160e01b82169003610daa575b80600003610b23575060001901600081815260046020526040902054610d89565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610dd082610d5e565b9050836001600160a01b0316816001600160a01b031614610e035760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610e215750610e2185336104e7565b80610e3c575033610e3184610621565b6001600160a01b0316145b905080610e5c57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610e8357604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003610f2457600183016000818152600460205260408120549003610f22576000548114610f225760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610ff390339089908890889060040161169a565b6020604051808303816000875af192505050801561102e575060408051601f3d908101601f1916820190925261102b918101906116d7565b60015b61108c573d80801561105c576040519150601f19603f3d011682016040523d82523d6000602084013e611061565b606091505b508051600003611084576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461059e906115af565b604080516080810191829052607f0190826030600a8206018353600a90045b80156110f657600183039250600a81066030018353600a90046110d8565b50819003601f19909101908152919050565b6000546001600160a01b03831661113157604051622e076360e81b815260040160405180910390fd5b816000036111525760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061119d5750600055505050565b8280546111f5906115af565b90600052602060002090601f016020900481019282611217576000855561125d565b82601f1061123057805160ff191683800117855561125d565b8280016001018555821561125d579182015b8281111561125d578251825591602001919060010190611242565b5061126992915061126d565b5090565b5b80821115611269576000815560010161126e565b6001600160e01b03198116811461085d57600080fd5b6000602082840312156112aa57600080fd5b8135610b2381611282565b60005b838110156112d05781810151838201526020016112b8565b83811115610aa05750506000910152565b600081518084526112f98160208601602086016112b5565b601f01601f19169290920160200192915050565b602081526000610b2360208301846112e1565b60006020828403121561133257600080fd5b5035919050565b80356001600160a01b038116811461135057600080fd5b919050565b6000806040838503121561136857600080fd5b61137183611339565b946020939093013593505050565b60008060006060848603121561139457600080fd5b61139d84611339565b92506113ab60208501611339565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156113ec576113ec6113bb565b604051601f8501601f19908116603f01168101908282118183101715611414576114146113bb565b8160405280935085815286868601111561142d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561145957600080fd5b813567ffffffffffffffff81111561147057600080fd5b8201601f8101841361148157600080fd5b6110a2848235602084016113d1565b6000602082840312156114a257600080fd5b610b2382611339565b8035801515811461135057600080fd5b6000602082840312156114cd57600080fd5b610b23826114ab565b600080604083850312156114e957600080fd5b6114f283611339565b9150611500602084016114ab565b90509250929050565b6000806000806080858703121561151f57600080fd5b61152885611339565b935061153660208601611339565b925060408501359150606085013567ffffffffffffffff81111561155957600080fd5b8501601f8101871361156a57600080fd5b611579878235602084016113d1565b91505092959194509250565b6000806040838503121561159857600080fd5b6115a183611339565b915061150060208401611339565b600181811c908216806115c357607f821691505b6020821081036115e357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600083516116308184602088016112b5565b8351908301906116448183602088016112b5565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b600082198211156116765761167661164d565b500190565b60008160001904831182151516156116955761169561164d565b500290565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116cd908301846112e1565b9695505050505050565b6000602082840312156116e957600080fd5b8151610b238161128256fea264697066735822122033d2d504df5079ee020518b79a4368d5747f04b97d26bc18c7d014cbe414f26064736f6c634300080e0033

Deployed Bytecode Sourcemap

41546:1579: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;;;;;;;;41715:43;;;;;;;;;;;;41754:4;41715:43;;;;;738:25:1;;;726:2;711:18;41715:43:0;592:177:1;17973:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20041:204::-;;;;;;;;;;-1:-1:-1;20041:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;20041:204:0;1710: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;;20927:170;;;;;;;;;;-1:-1:-1;20927:170:0;;;;;:::i;:::-;;:::i;41765:31::-;;;;;;;;;;;;;;;;41651:24;;;;;;;;;;;;;:::i;42956:164::-;;;:::i;21168:185::-;;;;;;;;;;-1:-1:-1;21168:185:0;;;;;:::i;:::-;;:::i;17762:144::-;;;;;;;;;;-1:-1:-1;17762:144:0;;;;;:::i;:::-;;:::i;42841:107::-;;;;;;;;;;-1:-1:-1;42841:107:0;;;;;:::i;:::-;;:::i;13639:224::-;;;;;;;;;;-1:-1:-1;13639:224:0;;;;;:::i;:::-;;:::i;40727:103::-;;;;;;;;;;;;;:::i;42733:100::-;;;;;;;;;;-1:-1:-1;42733:100:0;;;;;:::i;:::-;;:::i;41804:50::-;;;;;;;;;;-1:-1:-1;41804:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;42636:89;;;;;;;;;;-1:-1:-1;42636: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;42455:173::-;;;;;;;;;;-1:-1:-1;42455:173: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;41982:467;;;:::i;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;42956:164::-;40149:6;;-1:-1:-1;;;;;40149:6:0;36144:10;40296:23;40288:68;;;;-1:-1:-1;;;40288:68:0;;;;;;;:::i;:::-;;;;;;;;;43036:58:::1;::::0;43018:12:::1;::::0;43044:10:::1;::::0;43068:21:::1;::::0;43018:12;43036:58;43018:12;43036:58;43068:21;43044:10;43036:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43017:77;;;43107:7;43099:16;;;::::0;::::1;;43009:111;42956: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;42841:107::-;40149:6;;-1:-1:-1;;;;;40149:6:0;36144:10;40296:23;40288:68;;;;-1:-1:-1;;;40288:68:0;;;;;;;:::i;:::-;42922:18;;::::1;::::0;:10:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42841: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;42733:100::-;40149:6;;-1:-1:-1;;;;;40149:6:0;36144:10;40296:23;40288:68;;;;-1:-1:-1;;;40288:68:0;;;;;;;:::i;:::-;42803:12:::1;:22:::0;42733:100::o;42636:89::-;40149:6;;-1:-1:-1;;;;;40149:6:0;36144:10;40296:23;40288:68;;;;-1:-1:-1;;;40288:68:0;;;;;;;:::i;:::-;42704:6:::1;:13:::0;;-1:-1:-1;;42704:13:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42636: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;42455:173::-;40149:6;;-1:-1:-1;;;;;40149:6:0;36144:10;40296:23;40288:68;;;;-1:-1:-1;;;40288:68:0;;;;;;;:::i;:::-;41754:4:::1;42562:8;42546:13;12280:12:::0;;12067:7;12264:13;:28;;12014:315;42546:13:::1;:24;;;;:::i;:::-;:40;;42538:49;;;::::0;::::1;;42598:22;42604:5;42611:8;42598:5;:22::i;41982:467::-:0;42042:6;;;;42034:15;;;;;;41754:4;42084:12;;42068:13;12280:12;;12067:7;12264:13;:28;;12014:315;42068:13;:28;;;;:::i;:::-;:43;42060:52;;;;;;42131:10;42145:9;42131:23;42123:32;;;;;;42201:12;;42187:10;42171:27;;;;:15;:27;;;;;;:42;42163:51;;;;;;42264:4;42249:12;;42233:13;12280:12;;12067:7;12264:13;:28;;12014:315;42233:13;:28;;;;:::i;:::-;:35;:78;;;-1:-1:-1;42299:12:0;;42285:26;;:11;:26;:::i;:::-;42272:9;:39;42233:78;42225:118;;;;-1:-1:-1;;;42225:118:0;;7721:2:1;42225:118:0;;;7703:21:1;7760:2;7740:18;;;7733:30;7799:29;7779:18;;;7772:57;7846:18;;42225:118:0;7519:351:1;42225:118:0;42387:12;;42372:10;42356:27;;;;:15;:27;;;;;:43;;:27;;;:43;;42387:12;;42356:43;:::i;:::-;;;;;;;;42410:31;42416:10;42428:12;;42410:5;:31::i;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;;8077:2:1;41066:73:0::1;::::0;::::1;8059:21:1::0;8116:2;8096:18;;;8089:30;8155:34;8135:18;;;8128:62;-1:-1:-1;;;8206:18:1;;;8199:36;8252:19;;41066:73:0::1;7875: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;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;41863:111::-;41923:13;41956:10;41949: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;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;-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;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096: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:470::-;6785:3;6823:6;6817:13;6839:53;6885:6;6880:3;6873:4;6865:6;6861:17;6839:53;:::i;:::-;6955:13;;6914:16;;;;6977:57;6955:13;6914:16;7011:4;6999:17;;6977:57;:::i;:::-;7050:20;;6606:470;-1:-1:-1;;;;6606:470:1:o;7081:127::-;7142:10;7137:3;7133:20;7130:1;7123:31;7173:4;7170:1;7163:15;7197:4;7194:1;7187:15;7213:128;7253:3;7284:1;7280:6;7277:1;7274:13;7271:39;;;7290:18;;:::i;:::-;-1:-1:-1;7326:9:1;;7213:128::o;7346:168::-;7386:7;7452:1;7448;7444:6;7440:14;7437:1;7434:21;7429:1;7422:9;7415:17;7411:45;7408:71;;;7459:18;;:::i;:::-;-1:-1:-1;7499:9:1;;7346:168::o;8282:489::-;-1:-1:-1;;;;;8551:15:1;;;8533:34;;8603:15;;8598:2;8583:18;;8576:43;8650:2;8635:18;;8628:34;;;8698:3;8693:2;8678:18;;8671:31;;;8476:4;;8719:46;;8745:19;;8737:6;8719:46;:::i;:::-;8711:54;8282:489;-1:-1:-1;;;;;;8282:489:1:o;8776:249::-;8845:6;8898:2;8886:9;8877:7;8873:23;8869:32;8866:52;;;8914:1;8911;8904:12;8866:52;8946:9;8940:16;8965:30;8989:5;8965:30;:::i

Swarm Source

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