ETH Price: $3,452.01 (+1.37%)
Gas: 8 Gwei

Token

Ghosted (GHOST)
 

Overview

Max Total Supply

6,666 GHOST

Holders

673

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 GHOST
0xb4b1bb4c914d710bf712c25673a1cfcb4dd4238e
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:
Ghosted

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-31
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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`
    // - [232..255] `extraData`
    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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 auxiliary 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 auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) 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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev 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;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // 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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: contracts/ghosted.sol



//⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣠⣤⣶⣶⣿⣿⣿⣿⣿⣿⣿⣶⣶⣤⣄⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣤⣶⣿⣿⠿⠟⠛⠉⠉⠀⠀⠀⠀⠀⠉⠉⠛⠛⠿⣿⣿⣷⣦⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣶⣿⡿⠛⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠙⠻⣿⣿⣦⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⠀⣠⣾⣿⠟⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢿⣿⣦⡀⠀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⠀⣴⣿⡿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠹⣿⣷⡀⠀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⠀⣼⣿⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠹⣿⣷⡀⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⠀⣸⣿⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⣿⣧⠀⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⢠⣿⣿⠁⠀⠀⠀⠀⠀⠀⣠⣴⣶⣶⣶⣦⣀⠀⠀⠀⠀⠀⠀⢀⣤⣶⣾⣿⣶⣦⣄⠀⠀⠀⠀⠀⠀⠀⢿⣿⡆⠀⠀⠀⠀⠀
// ⠀⠀⠀⠀⣾⣿⠇⠀⠀⠀⠀⠀⢠⣾⣿⣿⣿⣿⣿⣿⣿⣦⠀⠀⠀⠀⢠⣿⣿⣿⣿⣿⣿⣿⣿⣧⠀⠀⠀⠀⠀⠀⠸⣿⣿⠀⠀⠀⠀⠀
// ⠀⠀⠀⢰⣿⡿⠀⠀⠀⠀⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⡆⠀⠀⠀⣾⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀⠀⠀⠀⠀⢻⣿⡇⠀⠀⠀⠀
// ⠀⠀⠀⣿⣿⠇⠀⠀⠀⠀⠀⠀⠸⣿⣿⣿⣿⣿⣿⣿⣿⡿⠀⠀⠀⠀⠸⣿⣿⣿⣿⣿⣿⣿⣿⡿⠀⠀⠀⠀⠀⠀⠀⠸⣿⣿⠀⠀⠀⠀
// ⠀⠀⢰⣿⣿⠀⠀⠀⠀⠀⠀⠀⠀⠙⠿⣿⣿⣿⣿⡿⠟⠁⠀⠀⠀⠀⠀⠈⠻⢿⣿⣿⣿⠿⠛⠁⠀⠀⠀⠀⠀⠀⠀⠀⢿⣿⡇⠀⠀⠀
// ⠀⠀⣼⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠉⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣷⠀⠀⠀
// ⠀⠀⣿⣿⠃⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⡆⠀⠀
// ⠀⢸⣿⡿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⣿⣇⠀⠀
// ⠀⣸⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⣿⣿⠀⠀
// ⠀⣿⣿⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⡆⠀
// ⠀⣿⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⣿⡇⠀
// ⢸⣿⡿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀      Ghosted⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠸⣿⣿⠀
// ⢸⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀Forged By 3DBlacksmith⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⣿⣿⡀
// ⣸⣿⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢿⣿⡇
// ⣿⣿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⡇
// ⣿⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣧
// ⣿⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣿⣿
// ⣿⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿
// ⣿⣿⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿
// ⢻⣿⡇⠀⠀⠀⠀⠀⠀⠀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿
// ⠸⣿⣷⡀⠀⠀⢀⣤⣾⣿⣿⣿⣿⣦⣀⠀⠀⠀⠀⠀⢀⣠⣴⣶⣶⣶⣤⣀⠀⠀⠀⠀⠀⠀⠀⢀⣠⣤⣤⣤⣄⡀⠀⠀⠀⠀⠀⢰⣿⣿
// ⠀⠹⣿⣷⣶⣾⣿⡿⠛⠉⠀⠈⠙⠿⣿⣷⣶⣤⣴⣾⣿⡿⠟⠋⠉⠛⠿⣿⣷⣦⣀⣀⣠⣴⣾⣿⡿⠟⠛⠻⢿⣿⣶⣄⠀⠀⠀⣼⣿⡇
// ⠀⠀⠈⣙⠛⠉⠁⠀⠀⠀⠀⠀⠀⠀⠈⠙⠛⠛⠛⠋⠁⠀⠀⠀⠀⠀⠀⠈⠙⠿⢿⣿⡿⠟⠋⠁⠀⠀⠀⠀⠀⠉⠻⣿⣿⣶⣾⣿⠟
pragma solidity >=0.7.0 <0.9.0;





contract Ghosted is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;

  string public baseURI;
  uint256 public maxSupply = 6666;
  uint256 public MaxperWallet = 5;
  bool public paused = true;

  constructor(
    string memory _initBaseURI
  ) ERC721A("Ghosted", "GHOST") {
    setBaseURI(_initBaseURI);
  }

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

  function mint(uint256 tokens) public nonReentrant {
    require(!paused, "contract is paused");
    require(tokens <= MaxperWallet, "max mint amount per tx exceeded");
    require(msg.sender == tx.origin, "Not Allowed");
    require(totalSupply() + tokens <= maxSupply, "Soldout");
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWallet, "Max NFT Per Wallet exceeded");

      _safeMint(_msgSenderERC721A(), tokens);
  }

  /// Team mint
  function devMint(uint256 _mintAmount, address destination) public onlyOwner nonReentrant {
    require(totalSupply() + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString()))
        : "";
  }

     /// return the number minted by an address
    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    /// return the tokens owned by an address
      function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }


  /// change the max per wallet
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

  /// change supply
    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }

 /// change baseURI
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

 /// pause and unpause contract
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  /// withdraw funds from contract
  function withdraw() public payable onlyOwner nonReentrant {
      uint256 balance = address(this).balance;
      payable(_msgSenderERC721A()).transfer(balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052611a0a600b556005600c556001600d60006101000a81548160ff0219169083151502179055503480156200003757600080fd5b5060405162003a2f38038062003a2f83398181016040528101906200005d91906200043b565b6040518060400160405280600781526020017f47686f73746564000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f47484f53540000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e19291906200030d565b508060039080519060200190620000fa9291906200030d565b506200010b6200015360201b60201c565b600081905550505062000133620001276200015860201b60201c565b6200016060201b60201c565b60016009819055506200014c816200022660201b60201c565b5062000693565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002366200025260201b60201c565b80600a90805190602001906200024e9291906200030d565b5050565b620002626200015860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000288620002e360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d890620004b3565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200031b906200057b565b90600052602060002090601f0160209004810192826200033f57600085556200038b565b82601f106200035a57805160ff19168380011785556200038b565b828001600101855582156200038b579182015b828111156200038a5782518255916020019190600101906200036d565b5b5090506200039a91906200039e565b5090565b5b80821115620003b95760008160009055506001016200039f565b5090565b6000620003d4620003ce84620004fe565b620004d5565b905082815260208101848484011115620003f357620003f26200064a565b5b6200040084828562000545565b509392505050565b600082601f83011262000420576200041f62000645565b5b815162000432848260208601620003bd565b91505092915050565b60006020828403121562000454576200045362000654565b5b600082015167ffffffffffffffff8111156200047557620004746200064f565b5b620004838482850162000408565b91505092915050565b60006200049b60208362000534565b9150620004a8826200066a565b602082019050919050565b60006020820190508181036000830152620004ce816200048c565b9050919050565b6000620004e1620004f4565b9050620004ef8282620005b1565b919050565b6000604051905090565b600067ffffffffffffffff8211156200051c576200051b62000616565b5b620005278262000659565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200056557808201518184015260208101905062000548565b8381111562000575576000848401525b50505050565b600060028204905060018216806200059457607f821691505b60208210811415620005ab57620005aa620005e7565b5b50919050565b620005bc8262000659565b810181811067ffffffffffffffff82111715620005de57620005dd62000616565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61338c80620006a36000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063b88d4fde11610095578063dc33e68111610064578063dc33e6811461061f578063e268e4d31461065c578063e985e9c514610685578063f2fde38b146106c2576101cd565b8063b88d4fde14610570578063bd7a19981461058c578063c87b56dd146105b7578063d5abeb01146105f4576101cd565b80638da5cb5b116100d15780638da5cb5b146104c857806395d89b41146104f3578063a0712d681461051e578063a22cb46514610547576101cd565b806370a0823114610437578063715018a6146104745780638462151c1461048b576101cd565b806323b872dd1161016f57806355f804b31161013e57806355f804b31461037b5780635c975abb146103a45780636352211e146103cf5780636c0360eb1461040c576101cd565b806323b872dd146103105780632d1a12f61461032c5780633ccfd60b1461035557806342842e0e1461035f576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a0578063149835a0146102bc57806318160ddd146102e5576101cd565b806301ffc9a7146101d257806302329a291461020f57806306fdde0314610238575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906126ab565b6106eb565b6040516102069190612b1b565b60405180910390f35b34801561021b57600080fd5b506102366004803603810190610231919061267e565b61077d565b005b34801561024457600080fd5b5061024d6107a2565b60405161025a9190612b36565b60405180910390f35b34801561026f57600080fd5b5061028a6004803603810190610285919061274e565b610834565b6040516102979190612a92565b60405180910390f35b6102ba60048036038101906102b5919061263e565b6108b3565b005b3480156102c857600080fd5b506102e360048036038101906102de919061274e565b6109f7565b005b3480156102f157600080fd5b506102fa610a09565b6040516103079190612c98565b60405180910390f35b61032a60048036038101906103259190612528565b610a20565b005b34801561033857600080fd5b50610353600480360381019061034e919061277b565b610d45565b005b61035d610e08565b005b61037960048036038101906103749190612528565b610ebc565b005b34801561038757600080fd5b506103a2600480360381019061039d9190612705565b610edc565b005b3480156103b057600080fd5b506103b9610efe565b6040516103c69190612b1b565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f1919061274e565b610f11565b6040516104039190612a92565b60405180910390f35b34801561041857600080fd5b50610421610f23565b60405161042e9190612b36565b60405180910390f35b34801561044357600080fd5b5061045e600480360381019061045991906124bb565b610fb1565b60405161046b9190612c98565b60405180910390f35b34801561048057600080fd5b5061048961106a565b005b34801561049757600080fd5b506104b260048036038101906104ad91906124bb565b61107e565b6040516104bf9190612af9565b60405180910390f35b3480156104d457600080fd5b506104dd6111c8565b6040516104ea9190612a92565b60405180910390f35b3480156104ff57600080fd5b506105086111f2565b6040516105159190612b36565b60405180910390f35b34801561052a57600080fd5b506105456004803603810190610540919061274e565b611284565b005b34801561055357600080fd5b5061056e600480360381019061056991906125fe565b6114a7565b005b61058a6004803603810190610585919061257b565b6115b2565b005b34801561059857600080fd5b506105a1611625565b6040516105ae9190612c98565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d9919061274e565b61162b565b6040516105eb9190612b36565b60405180910390f35b34801561060057600080fd5b506106096116d2565b6040516106169190612c98565b60405180910390f35b34801561062b57600080fd5b50610646600480360381019061064191906124bb565b6116d8565b6040516106539190612c98565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e919061274e565b6116ea565b005b34801561069157600080fd5b506106ac60048036038101906106a791906124e8565b6116fc565b6040516106b99190612b1b565b60405180910390f35b3480156106ce57600080fd5b506106e960048036038101906106e491906124bb565b611790565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107765750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610785611814565b80600d60006101000a81548160ff02191690831515021790555050565b6060600280546107b190612f27565b80601f01602080910402602001604051908101604052809291908181526020018280546107dd90612f27565b801561082a5780601f106107ff5761010080835404028352916020019161082a565b820191906000526020600020905b81548152906001019060200180831161080d57829003601f168201915b5050505050905090565b600061083f82611892565b610875576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108be82610f11565b90508073ffffffffffffffffffffffffffffffffffffffff166108df6118f1565b73ffffffffffffffffffffffffffffffffffffffff16146109425761090b816109066118f1565b6116fc565b610941576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6109ff611814565b80600b8190555050565b6000610a136118f9565b6001546000540303905090565b6000610a2b826118fe565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a92576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a9e846119cc565b91509150610ab48187610aaf6118f1565b6119f3565b610b0057610ac986610ac46118f1565b6116fc565b610aff576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b67576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b748686866001611a37565b8015610b7f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c4d85610c29888887611a3d565b7c020000000000000000000000000000000000000000000000000000000017611a65565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cd5576000600185019050600060046000838152602001908152602001600020541415610cd3576000548114610cd2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d3d8686866001611a90565b505050505050565b610d4d611814565b60026009541415610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90612c58565b60405180910390fd5b6002600981905550600b5482610da7610a09565b610db19190612db6565b1115610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de990612bd8565b60405180910390fd5b610dfc8183611a96565b60016009819055505050565b610e10611814565b60026009541415610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90612c58565b60405180910390fd5b60026009819055506000479050610e6b6118f1565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610eb0573d6000803e3d6000fd5b50506001600981905550565b610ed7838383604051806020016040528060008152506115b2565b505050565b610ee4611814565b80600a9080519060200190610efa929190612280565b5050565b600d60009054906101000a900460ff1681565b6000610f1c826118fe565b9050919050565b600a8054610f3090612f27565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5c90612f27565b8015610fa95780601f10610f7e57610100808354040283529160200191610fa9565b820191906000526020600020905b815481529060010190602001808311610f8c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611019576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611072611814565b61107c6000611ab4565b565b6060600080600061108e85610fb1565b905060008167ffffffffffffffff8111156110ac576110ab6130c0565b5b6040519080825280602002602001820160405280156110da5781602001602082028036833780820191505090505b5090506110e5612306565b60006110ef6118f9565b90505b8386146111ba5761110281611b7a565b9150816040015115611113576111af565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461115357816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156111ae57808387806001019850815181106111a1576111a0613091565b5b6020026020010181815250505b5b8060010190506110f2565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461120190612f27565b80601f016020809104026020016040519081016040528092919081815260200182805461122d90612f27565b801561127a5780601f1061124f5761010080835404028352916020019161127a565b820191906000526020600020905b81548152906001019060200180831161125d57829003601f168201915b5050505050905090565b600260095414156112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c190612c58565b60405180910390fd5b6002600981905550600d60009054906101000a900460ff1615611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990612b98565b60405180910390fd5b600c54811115611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90612c78565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90612c18565b60405180910390fd5b600b54816113e1610a09565b6113eb9190612db6565b111561142c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142390612bb8565b60405180910390fd5b600c548161144061143b6118f1565b611ba5565b61144a9190612db6565b111561148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290612c38565b60405180910390fd5b61149c6114966118f1565b82611a96565b600160098190555050565b80600760006114b46118f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115616118f1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115a69190612b1b565b60405180910390a35050565b6115bd848484610a20565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461161f576115e884848484611bfc565b61161e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b606061163682611892565b611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90612b58565b60405180910390fd5b600061167f611d5c565b9050600081511161169f57604051806020016040528060008152506116ca565b806116a984611dee565b6040516020016116ba929190612a6e565b6040516020818303038152906040525b915050919050565b600b5481565b60006116e382611ba5565b9050919050565b6116f2611814565b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611798611814565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ff90612b78565b60405180910390fd5b61181181611ab4565b50565b61181c611f4f565b73ffffffffffffffffffffffffffffffffffffffff1661183a6111c8565b73ffffffffffffffffffffffffffffffffffffffff1614611890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188790612bf8565b60405180910390fd5b565b60008161189d6118f9565b111580156118ac575060005482105b80156118ea575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061190d6118f9565b11611995576000548110156119945760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611992575b600081141561198857600460008360019003935083815260200190815260200160002054905061195d565b80925050506119c7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a54868684611f57565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611ab0828260405180602001604052806000815250611f60565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b82612306565b611b9e6004600084815260200190815260200160002054611ffd565b9050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c226118f1565b8786866040518563ffffffff1660e01b8152600401611c449493929190612aad565b602060405180830381600087803b158015611c5e57600080fd5b505af1925050508015611c8f57506040513d601f19601f82011682018060405250810190611c8c91906126d8565b60015b611d09573d8060008114611cbf576040519150601f19603f3d011682016040523d82523d6000602084013e611cc4565b606091505b50600081511415611d01576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d6b90612f27565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9790612f27565b8015611de45780601f10611db957610100808354040283529160200191611de4565b820191906000526020600020905b815481529060010190602001808311611dc757829003601f168201915b5050505050905090565b60606000821415611e36576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f4a565b600082905060005b60008214611e68578080611e5190612f8a565b915050600a82611e619190612e0c565b9150611e3e565b60008167ffffffffffffffff811115611e8457611e836130c0565b5b6040519080825280601f01601f191660200182016040528015611eb65781602001600182028036833780820191505090505b5090505b60008514611f4357600182611ecf9190612e3d565b9150600a85611ede9190612fd3565b6030611eea9190612db6565b60f81b818381518110611f0057611eff613091565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f3c9190612e0c565b9450611eba565b8093505050505b919050565b600033905090565b60009392505050565b611f6a83836120b3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ff857600080549050600083820390505b611faa6000868380600101945086611bfc565b611fe0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f97578160005414611ff557600080fd5b50505b505050565b612005612306565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008054905060008214156120f4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121016000848385611a37565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612178836121696000866000611a3d565b61217285612270565b17611a65565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461221957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506121de565b506000821415612255576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061226b6000848385611a90565b505050565b60006001821460e11b9050919050565b82805461228c90612f27565b90600052602060002090601f0160209004810192826122ae57600085556122f5565b82601f106122c757805160ff19168380011785556122f5565b828001600101855582156122f5579182015b828111156122f45782518255916020019190600101906122d9565b5b5090506123029190612355565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b8082111561236e576000816000905550600101612356565b5090565b600061238561238084612cd8565b612cb3565b9050828152602081018484840111156123a1576123a06130f4565b5b6123ac848285612ee5565b509392505050565b60006123c76123c284612d09565b612cb3565b9050828152602081018484840111156123e3576123e26130f4565b5b6123ee848285612ee5565b509392505050565b600081359050612405816132fa565b92915050565b60008135905061241a81613311565b92915050565b60008135905061242f81613328565b92915050565b60008151905061244481613328565b92915050565b600082601f83011261245f5761245e6130ef565b5b813561246f848260208601612372565b91505092915050565b600082601f83011261248d5761248c6130ef565b5b813561249d8482602086016123b4565b91505092915050565b6000813590506124b58161333f565b92915050565b6000602082840312156124d1576124d06130fe565b5b60006124df848285016123f6565b91505092915050565b600080604083850312156124ff576124fe6130fe565b5b600061250d858286016123f6565b925050602061251e858286016123f6565b9150509250929050565b600080600060608486031215612541576125406130fe565b5b600061254f868287016123f6565b9350506020612560868287016123f6565b9250506040612571868287016124a6565b9150509250925092565b60008060008060808587031215612595576125946130fe565b5b60006125a3878288016123f6565b94505060206125b4878288016123f6565b93505060406125c5878288016124a6565b925050606085013567ffffffffffffffff8111156125e6576125e56130f9565b5b6125f28782880161244a565b91505092959194509250565b60008060408385031215612615576126146130fe565b5b6000612623858286016123f6565b92505060206126348582860161240b565b9150509250929050565b60008060408385031215612655576126546130fe565b5b6000612663858286016123f6565b9250506020612674858286016124a6565b9150509250929050565b600060208284031215612694576126936130fe565b5b60006126a28482850161240b565b91505092915050565b6000602082840312156126c1576126c06130fe565b5b60006126cf84828501612420565b91505092915050565b6000602082840312156126ee576126ed6130fe565b5b60006126fc84828501612435565b91505092915050565b60006020828403121561271b5761271a6130fe565b5b600082013567ffffffffffffffff811115612739576127386130f9565b5b61274584828501612478565b91505092915050565b600060208284031215612764576127636130fe565b5b6000612772848285016124a6565b91505092915050565b60008060408385031215612792576127916130fe565b5b60006127a0858286016124a6565b92505060206127b1858286016123f6565b9150509250929050565b60006127c78383612a50565b60208301905092915050565b6127dc81612e71565b82525050565b60006127ed82612d4a565b6127f78185612d78565b935061280283612d3a565b8060005b8381101561283357815161281a88826127bb565b975061282583612d6b565b925050600181019050612806565b5085935050505092915050565b61284981612e83565b82525050565b600061285a82612d55565b6128648185612d89565b9350612874818560208601612ef4565b61287d81613103565b840191505092915050565b600061289382612d60565b61289d8185612d9a565b93506128ad818560208601612ef4565b6128b681613103565b840191505092915050565b60006128cc82612d60565b6128d68185612dab565b93506128e6818560208601612ef4565b80840191505092915050565b60006128ff603083612d9a565b915061290a82613114565b604082019050919050565b6000612922602683612d9a565b915061292d82613163565b604082019050919050565b6000612945601283612d9a565b9150612950826131b2565b602082019050919050565b6000612968600783612d9a565b9150612973826131db565b602082019050919050565b600061298b601683612d9a565b915061299682613204565b602082019050919050565b60006129ae602083612d9a565b91506129b98261322d565b602082019050919050565b60006129d1600b83612d9a565b91506129dc82613256565b602082019050919050565b60006129f4601b83612d9a565b91506129ff8261327f565b602082019050919050565b6000612a17601f83612d9a565b9150612a22826132a8565b602082019050919050565b6000612a3a601f83612d9a565b9150612a45826132d1565b602082019050919050565b612a5981612edb565b82525050565b612a6881612edb565b82525050565b6000612a7a82856128c1565b9150612a8682846128c1565b91508190509392505050565b6000602082019050612aa760008301846127d3565b92915050565b6000608082019050612ac260008301876127d3565b612acf60208301866127d3565b612adc6040830185612a5f565b8181036060830152612aee818461284f565b905095945050505050565b60006020820190508181036000830152612b1381846127e2565b905092915050565b6000602082019050612b306000830184612840565b92915050565b60006020820190508181036000830152612b508184612888565b905092915050565b60006020820190508181036000830152612b71816128f2565b9050919050565b60006020820190508181036000830152612b9181612915565b9050919050565b60006020820190508181036000830152612bb181612938565b9050919050565b60006020820190508181036000830152612bd18161295b565b9050919050565b60006020820190508181036000830152612bf18161297e565b9050919050565b60006020820190508181036000830152612c11816129a1565b9050919050565b60006020820190508181036000830152612c31816129c4565b9050919050565b60006020820190508181036000830152612c51816129e7565b9050919050565b60006020820190508181036000830152612c7181612a0a565b9050919050565b60006020820190508181036000830152612c9181612a2d565b9050919050565b6000602082019050612cad6000830184612a5f565b92915050565b6000612cbd612cce565b9050612cc98282612f59565b919050565b6000604051905090565b600067ffffffffffffffff821115612cf357612cf26130c0565b5b612cfc82613103565b9050602081019050919050565b600067ffffffffffffffff821115612d2457612d236130c0565b5b612d2d82613103565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612dc182612edb565b9150612dcc83612edb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e0157612e00613004565b5b828201905092915050565b6000612e1782612edb565b9150612e2283612edb565b925082612e3257612e31613033565b5b828204905092915050565b6000612e4882612edb565b9150612e5383612edb565b925082821015612e6657612e65613004565b5b828203905092915050565b6000612e7c82612ebb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f12578082015181840152602081019050612ef7565b83811115612f21576000848401525b50505050565b60006002820490506001821680612f3f57607f821691505b60208210811415612f5357612f52613062565b5b50919050565b612f6282613103565b810181811067ffffffffffffffff82111715612f8157612f806130c0565b5b80604052505050565b6000612f9582612edb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fc857612fc7613004565b5b600182019050919050565b6000612fde82612edb565b9150612fe983612edb565b925082612ff957612ff8613033565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f636f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f536f6c646f757400000000000000000000000000000000000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420416c6c6f776564000000000000000000000000000000000000000000600082015250565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b61330381612e71565b811461330e57600080fd5b50565b61331a81612e83565b811461332557600080fd5b50565b61333181612e8f565b811461333c57600080fd5b50565b61334881612edb565b811461335357600080fd5b5056fea26469706673582212206cf7d618a5fe76e5dc8e1a43253dd658df80ada7b3ab0f01de0fdeb10d01bfff64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569637670757a656b63777a356b7679376c61626362676f666566376932757a666a706f6f646f756f7462337975756d70756d7775342f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063b88d4fde11610095578063dc33e68111610064578063dc33e6811461061f578063e268e4d31461065c578063e985e9c514610685578063f2fde38b146106c2576101cd565b8063b88d4fde14610570578063bd7a19981461058c578063c87b56dd146105b7578063d5abeb01146105f4576101cd565b80638da5cb5b116100d15780638da5cb5b146104c857806395d89b41146104f3578063a0712d681461051e578063a22cb46514610547576101cd565b806370a0823114610437578063715018a6146104745780638462151c1461048b576101cd565b806323b872dd1161016f57806355f804b31161013e57806355f804b31461037b5780635c975abb146103a45780636352211e146103cf5780636c0360eb1461040c576101cd565b806323b872dd146103105780632d1a12f61461032c5780633ccfd60b1461035557806342842e0e1461035f576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a0578063149835a0146102bc57806318160ddd146102e5576101cd565b806301ffc9a7146101d257806302329a291461020f57806306fdde0314610238575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906126ab565b6106eb565b6040516102069190612b1b565b60405180910390f35b34801561021b57600080fd5b506102366004803603810190610231919061267e565b61077d565b005b34801561024457600080fd5b5061024d6107a2565b60405161025a9190612b36565b60405180910390f35b34801561026f57600080fd5b5061028a6004803603810190610285919061274e565b610834565b6040516102979190612a92565b60405180910390f35b6102ba60048036038101906102b5919061263e565b6108b3565b005b3480156102c857600080fd5b506102e360048036038101906102de919061274e565b6109f7565b005b3480156102f157600080fd5b506102fa610a09565b6040516103079190612c98565b60405180910390f35b61032a60048036038101906103259190612528565b610a20565b005b34801561033857600080fd5b50610353600480360381019061034e919061277b565b610d45565b005b61035d610e08565b005b61037960048036038101906103749190612528565b610ebc565b005b34801561038757600080fd5b506103a2600480360381019061039d9190612705565b610edc565b005b3480156103b057600080fd5b506103b9610efe565b6040516103c69190612b1b565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f1919061274e565b610f11565b6040516104039190612a92565b60405180910390f35b34801561041857600080fd5b50610421610f23565b60405161042e9190612b36565b60405180910390f35b34801561044357600080fd5b5061045e600480360381019061045991906124bb565b610fb1565b60405161046b9190612c98565b60405180910390f35b34801561048057600080fd5b5061048961106a565b005b34801561049757600080fd5b506104b260048036038101906104ad91906124bb565b61107e565b6040516104bf9190612af9565b60405180910390f35b3480156104d457600080fd5b506104dd6111c8565b6040516104ea9190612a92565b60405180910390f35b3480156104ff57600080fd5b506105086111f2565b6040516105159190612b36565b60405180910390f35b34801561052a57600080fd5b506105456004803603810190610540919061274e565b611284565b005b34801561055357600080fd5b5061056e600480360381019061056991906125fe565b6114a7565b005b61058a6004803603810190610585919061257b565b6115b2565b005b34801561059857600080fd5b506105a1611625565b6040516105ae9190612c98565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d9919061274e565b61162b565b6040516105eb9190612b36565b60405180910390f35b34801561060057600080fd5b506106096116d2565b6040516106169190612c98565b60405180910390f35b34801561062b57600080fd5b50610646600480360381019061064191906124bb565b6116d8565b6040516106539190612c98565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e919061274e565b6116ea565b005b34801561069157600080fd5b506106ac60048036038101906106a791906124e8565b6116fc565b6040516106b99190612b1b565b60405180910390f35b3480156106ce57600080fd5b506106e960048036038101906106e491906124bb565b611790565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107765750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610785611814565b80600d60006101000a81548160ff02191690831515021790555050565b6060600280546107b190612f27565b80601f01602080910402602001604051908101604052809291908181526020018280546107dd90612f27565b801561082a5780601f106107ff5761010080835404028352916020019161082a565b820191906000526020600020905b81548152906001019060200180831161080d57829003601f168201915b5050505050905090565b600061083f82611892565b610875576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108be82610f11565b90508073ffffffffffffffffffffffffffffffffffffffff166108df6118f1565b73ffffffffffffffffffffffffffffffffffffffff16146109425761090b816109066118f1565b6116fc565b610941576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6109ff611814565b80600b8190555050565b6000610a136118f9565b6001546000540303905090565b6000610a2b826118fe565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a92576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a9e846119cc565b91509150610ab48187610aaf6118f1565b6119f3565b610b0057610ac986610ac46118f1565b6116fc565b610aff576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b67576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b748686866001611a37565b8015610b7f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c4d85610c29888887611a3d565b7c020000000000000000000000000000000000000000000000000000000017611a65565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cd5576000600185019050600060046000838152602001908152602001600020541415610cd3576000548114610cd2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d3d8686866001611a90565b505050505050565b610d4d611814565b60026009541415610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90612c58565b60405180910390fd5b6002600981905550600b5482610da7610a09565b610db19190612db6565b1115610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de990612bd8565b60405180910390fd5b610dfc8183611a96565b60016009819055505050565b610e10611814565b60026009541415610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90612c58565b60405180910390fd5b60026009819055506000479050610e6b6118f1565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610eb0573d6000803e3d6000fd5b50506001600981905550565b610ed7838383604051806020016040528060008152506115b2565b505050565b610ee4611814565b80600a9080519060200190610efa929190612280565b5050565b600d60009054906101000a900460ff1681565b6000610f1c826118fe565b9050919050565b600a8054610f3090612f27565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5c90612f27565b8015610fa95780601f10610f7e57610100808354040283529160200191610fa9565b820191906000526020600020905b815481529060010190602001808311610f8c57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611019576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611072611814565b61107c6000611ab4565b565b6060600080600061108e85610fb1565b905060008167ffffffffffffffff8111156110ac576110ab6130c0565b5b6040519080825280602002602001820160405280156110da5781602001602082028036833780820191505090505b5090506110e5612306565b60006110ef6118f9565b90505b8386146111ba5761110281611b7a565b9150816040015115611113576111af565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461115357816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156111ae57808387806001019850815181106111a1576111a0613091565b5b6020026020010181815250505b5b8060010190506110f2565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461120190612f27565b80601f016020809104026020016040519081016040528092919081815260200182805461122d90612f27565b801561127a5780601f1061124f5761010080835404028352916020019161127a565b820191906000526020600020905b81548152906001019060200180831161125d57829003601f168201915b5050505050905090565b600260095414156112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c190612c58565b60405180910390fd5b6002600981905550600d60009054906101000a900460ff1615611322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131990612b98565b60405180910390fd5b600c54811115611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90612c78565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90612c18565b60405180910390fd5b600b54816113e1610a09565b6113eb9190612db6565b111561142c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142390612bb8565b60405180910390fd5b600c548161144061143b6118f1565b611ba5565b61144a9190612db6565b111561148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290612c38565b60405180910390fd5b61149c6114966118f1565b82611a96565b600160098190555050565b80600760006114b46118f1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115616118f1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115a69190612b1b565b60405180910390a35050565b6115bd848484610a20565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461161f576115e884848484611bfc565b61161e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b606061163682611892565b611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90612b58565b60405180910390fd5b600061167f611d5c565b9050600081511161169f57604051806020016040528060008152506116ca565b806116a984611dee565b6040516020016116ba929190612a6e565b6040516020818303038152906040525b915050919050565b600b5481565b60006116e382611ba5565b9050919050565b6116f2611814565b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611798611814565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611808576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ff90612b78565b60405180910390fd5b61181181611ab4565b50565b61181c611f4f565b73ffffffffffffffffffffffffffffffffffffffff1661183a6111c8565b73ffffffffffffffffffffffffffffffffffffffff1614611890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188790612bf8565b60405180910390fd5b565b60008161189d6118f9565b111580156118ac575060005482105b80156118ea575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061190d6118f9565b11611995576000548110156119945760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611992575b600081141561198857600460008360019003935083815260200190815260200160002054905061195d565b80925050506119c7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a54868684611f57565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611ab0828260405180602001604052806000815250611f60565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b82612306565b611b9e6004600084815260200190815260200160002054611ffd565b9050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c226118f1565b8786866040518563ffffffff1660e01b8152600401611c449493929190612aad565b602060405180830381600087803b158015611c5e57600080fd5b505af1925050508015611c8f57506040513d601f19601f82011682018060405250810190611c8c91906126d8565b60015b611d09573d8060008114611cbf576040519150601f19603f3d011682016040523d82523d6000602084013e611cc4565b606091505b50600081511415611d01576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d6b90612f27565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9790612f27565b8015611de45780601f10611db957610100808354040283529160200191611de4565b820191906000526020600020905b815481529060010190602001808311611dc757829003601f168201915b5050505050905090565b60606000821415611e36576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f4a565b600082905060005b60008214611e68578080611e5190612f8a565b915050600a82611e619190612e0c565b9150611e3e565b60008167ffffffffffffffff811115611e8457611e836130c0565b5b6040519080825280601f01601f191660200182016040528015611eb65781602001600182028036833780820191505090505b5090505b60008514611f4357600182611ecf9190612e3d565b9150600a85611ede9190612fd3565b6030611eea9190612db6565b60f81b818381518110611f0057611eff613091565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f3c9190612e0c565b9450611eba565b8093505050505b919050565b600033905090565b60009392505050565b611f6a83836120b3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ff857600080549050600083820390505b611faa6000868380600101945086611bfc565b611fe0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f97578160005414611ff557600080fd5b50505b505050565b612005612306565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008054905060008214156120f4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121016000848385611a37565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612178836121696000866000611a3d565b61217285612270565b17611a65565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461221957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506121de565b506000821415612255576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061226b6000848385611a90565b505050565b60006001821460e11b9050919050565b82805461228c90612f27565b90600052602060002090601f0160209004810192826122ae57600085556122f5565b82601f106122c757805160ff19168380011785556122f5565b828001600101855582156122f5579182015b828111156122f45782518255916020019190600101906122d9565b5b5090506123029190612355565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b8082111561236e576000816000905550600101612356565b5090565b600061238561238084612cd8565b612cb3565b9050828152602081018484840111156123a1576123a06130f4565b5b6123ac848285612ee5565b509392505050565b60006123c76123c284612d09565b612cb3565b9050828152602081018484840111156123e3576123e26130f4565b5b6123ee848285612ee5565b509392505050565b600081359050612405816132fa565b92915050565b60008135905061241a81613311565b92915050565b60008135905061242f81613328565b92915050565b60008151905061244481613328565b92915050565b600082601f83011261245f5761245e6130ef565b5b813561246f848260208601612372565b91505092915050565b600082601f83011261248d5761248c6130ef565b5b813561249d8482602086016123b4565b91505092915050565b6000813590506124b58161333f565b92915050565b6000602082840312156124d1576124d06130fe565b5b60006124df848285016123f6565b91505092915050565b600080604083850312156124ff576124fe6130fe565b5b600061250d858286016123f6565b925050602061251e858286016123f6565b9150509250929050565b600080600060608486031215612541576125406130fe565b5b600061254f868287016123f6565b9350506020612560868287016123f6565b9250506040612571868287016124a6565b9150509250925092565b60008060008060808587031215612595576125946130fe565b5b60006125a3878288016123f6565b94505060206125b4878288016123f6565b93505060406125c5878288016124a6565b925050606085013567ffffffffffffffff8111156125e6576125e56130f9565b5b6125f28782880161244a565b91505092959194509250565b60008060408385031215612615576126146130fe565b5b6000612623858286016123f6565b92505060206126348582860161240b565b9150509250929050565b60008060408385031215612655576126546130fe565b5b6000612663858286016123f6565b9250506020612674858286016124a6565b9150509250929050565b600060208284031215612694576126936130fe565b5b60006126a28482850161240b565b91505092915050565b6000602082840312156126c1576126c06130fe565b5b60006126cf84828501612420565b91505092915050565b6000602082840312156126ee576126ed6130fe565b5b60006126fc84828501612435565b91505092915050565b60006020828403121561271b5761271a6130fe565b5b600082013567ffffffffffffffff811115612739576127386130f9565b5b61274584828501612478565b91505092915050565b600060208284031215612764576127636130fe565b5b6000612772848285016124a6565b91505092915050565b60008060408385031215612792576127916130fe565b5b60006127a0858286016124a6565b92505060206127b1858286016123f6565b9150509250929050565b60006127c78383612a50565b60208301905092915050565b6127dc81612e71565b82525050565b60006127ed82612d4a565b6127f78185612d78565b935061280283612d3a565b8060005b8381101561283357815161281a88826127bb565b975061282583612d6b565b925050600181019050612806565b5085935050505092915050565b61284981612e83565b82525050565b600061285a82612d55565b6128648185612d89565b9350612874818560208601612ef4565b61287d81613103565b840191505092915050565b600061289382612d60565b61289d8185612d9a565b93506128ad818560208601612ef4565b6128b681613103565b840191505092915050565b60006128cc82612d60565b6128d68185612dab565b93506128e6818560208601612ef4565b80840191505092915050565b60006128ff603083612d9a565b915061290a82613114565b604082019050919050565b6000612922602683612d9a565b915061292d82613163565b604082019050919050565b6000612945601283612d9a565b9150612950826131b2565b602082019050919050565b6000612968600783612d9a565b9150612973826131db565b602082019050919050565b600061298b601683612d9a565b915061299682613204565b602082019050919050565b60006129ae602083612d9a565b91506129b98261322d565b602082019050919050565b60006129d1600b83612d9a565b91506129dc82613256565b602082019050919050565b60006129f4601b83612d9a565b91506129ff8261327f565b602082019050919050565b6000612a17601f83612d9a565b9150612a22826132a8565b602082019050919050565b6000612a3a601f83612d9a565b9150612a45826132d1565b602082019050919050565b612a5981612edb565b82525050565b612a6881612edb565b82525050565b6000612a7a82856128c1565b9150612a8682846128c1565b91508190509392505050565b6000602082019050612aa760008301846127d3565b92915050565b6000608082019050612ac260008301876127d3565b612acf60208301866127d3565b612adc6040830185612a5f565b8181036060830152612aee818461284f565b905095945050505050565b60006020820190508181036000830152612b1381846127e2565b905092915050565b6000602082019050612b306000830184612840565b92915050565b60006020820190508181036000830152612b508184612888565b905092915050565b60006020820190508181036000830152612b71816128f2565b9050919050565b60006020820190508181036000830152612b9181612915565b9050919050565b60006020820190508181036000830152612bb181612938565b9050919050565b60006020820190508181036000830152612bd18161295b565b9050919050565b60006020820190508181036000830152612bf18161297e565b9050919050565b60006020820190508181036000830152612c11816129a1565b9050919050565b60006020820190508181036000830152612c31816129c4565b9050919050565b60006020820190508181036000830152612c51816129e7565b9050919050565b60006020820190508181036000830152612c7181612a0a565b9050919050565b60006020820190508181036000830152612c9181612a2d565b9050919050565b6000602082019050612cad6000830184612a5f565b92915050565b6000612cbd612cce565b9050612cc98282612f59565b919050565b6000604051905090565b600067ffffffffffffffff821115612cf357612cf26130c0565b5b612cfc82613103565b9050602081019050919050565b600067ffffffffffffffff821115612d2457612d236130c0565b5b612d2d82613103565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612dc182612edb565b9150612dcc83612edb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e0157612e00613004565b5b828201905092915050565b6000612e1782612edb565b9150612e2283612edb565b925082612e3257612e31613033565b5b828204905092915050565b6000612e4882612edb565b9150612e5383612edb565b925082821015612e6657612e65613004565b5b828203905092915050565b6000612e7c82612ebb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f12578082015181840152602081019050612ef7565b83811115612f21576000848401525b50505050565b60006002820490506001821680612f3f57607f821691505b60208210811415612f5357612f52613062565b5b50919050565b612f6282613103565b810181811067ffffffffffffffff82111715612f8157612f806130c0565b5b80604052505050565b6000612f9582612edb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fc857612fc7613004565b5b600182019050919050565b6000612fde82612edb565b9150612fe983612edb565b925082612ff957612ff8613033565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f636f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f536f6c646f757400000000000000000000000000000000000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420416c6c6f776564000000000000000000000000000000000000000000600082015250565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b61330381612e71565b811461330e57600080fd5b50565b61331a81612e83565b811461332557600080fd5b50565b61333181612e8f565b811461333c57600080fd5b50565b61334881612edb565b811461335357600080fd5b5056fea26469706673582212206cf7d618a5fe76e5dc8e1a43253dd658df80ada7b3ab0f01de0fdeb10d01bfff64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569637670757a656b63777a356b7679376c61626362676f666566376932757a666a706f6f646f756f7462337975756d70756d7775342f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://bafybeicvpuzekcwz5kvy7labcbgofef7i2uzfjpoodouotb3yuumpumwu4/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f62616679626569637670757a656b63777a356b7679376c6162
Arg [3] : 6362676f666566376932757a666a706f6f646f756f7462337975756d70756d77
Arg [4] : 75342f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

64954:3365:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27253:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68032:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28155:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34646:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34079:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67774:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23906:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38285:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65872:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68149:167;;;:::i;:::-;;41206:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67895:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65143:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29548:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65045:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25090:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8032:103;;;;;;;;;;;;;:::i;:::-;;66731:881;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7384:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28331:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65404:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35204:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41997:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65107:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66101:409;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65071:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66567:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67653:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35595:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8290:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27253:639;27338:4;27677:10;27662:25;;:11;:25;;;;:102;;;;27754:10;27739:25;;:11;:25;;;;27662:102;:179;;;;27831:10;27816:25;;:11;:25;;;;27662:179;27642:199;;27253:639;;;:::o;68032:73::-;7270:13;:11;:13::i;:::-;68093:6:::1;68084;;:15;;;;;;;;;;;;;;;;;;68032:73:::0;:::o;28155:100::-;28209:13;28242:5;28235:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28155:100;:::o;34646:218::-;34722:7;34747:16;34755:7;34747;:16::i;:::-;34742:64;;34772:34;;;;;;;;;;;;;;34742:64;34826:15;:24;34842:7;34826:24;;;;;;;;;;;:30;;;;;;;;;;;;34819:37;;34646:218;;;:::o;34079:408::-;34168:13;34184:16;34192:7;34184;:16::i;:::-;34168:32;;34240:5;34217:28;;:19;:17;:19::i;:::-;:28;;;34213:175;;34265:44;34282:5;34289:19;:17;:19::i;:::-;34265:16;:44::i;:::-;34260:128;;34337:35;;;;;;;;;;;;;;34260:128;34213:175;34433:2;34400:15;:24;34416:7;34400:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34471:7;34467:2;34451:28;;34460:5;34451:28;;;;;;;;;;;;34157:330;34079:408;;:::o;67774:94::-;7270:13;:11;:13::i;:::-;67852:10:::1;67840:9;:22;;;;67774:94:::0;:::o;23906:323::-;23967:7;24195:15;:13;:15::i;:::-;24180:12;;24164:13;;:28;:46;24157:53;;23906:323;:::o;38285:2825::-;38427:27;38457;38476:7;38457:18;:27::i;:::-;38427:57;;38542:4;38501:45;;38517:19;38501:45;;;38497:86;;38555:28;;;;;;;;;;;;;;38497:86;38597:27;38626:23;38653:35;38680:7;38653:26;:35::i;:::-;38596:92;;;;38788:68;38813:15;38830:4;38836:19;:17;:19::i;:::-;38788:24;:68::i;:::-;38783:180;;38876:43;38893:4;38899:19;:17;:19::i;:::-;38876:16;:43::i;:::-;38871:92;;38928:35;;;;;;;;;;;;;;38871:92;38783:180;38994:1;38980:16;;:2;:16;;;38976:52;;;39005:23;;;;;;;;;;;;;;38976:52;39041:43;39063:4;39069:2;39073:7;39082:1;39041:21;:43::i;:::-;39177:15;39174:160;;;39317:1;39296:19;39289:30;39174:160;39714:18;:24;39733:4;39714:24;;;;;;;;;;;;;;;;39712:26;;;;;;;;;;;;39783:18;:22;39802:2;39783:22;;;;;;;;;;;;;;;;39781:24;;;;;;;;;;;40105:146;40142:2;40191:45;40206:4;40212:2;40216:19;40191:14;:45::i;:::-;20305:8;40163:73;40105:18;:146::i;:::-;40076:17;:26;40094:7;40076:26;;;;;;;;;;;:175;;;;40422:1;20305:8;40371:19;:47;:52;40367:627;;;40444:19;40476:1;40466:7;:11;40444:33;;40633:1;40599:17;:30;40617:11;40599:30;;;;;;;;;;;;:35;40595:384;;;40737:13;;40722:11;:28;40718:242;;40917:19;40884:17;:30;40902:11;40884:30;;;;;;;;;;;:52;;;;40718:242;40595:384;40425:569;40367:627;41041:7;41037:2;41022:27;;41031:4;41022:27;;;;;;;;;;;;41060:42;41081:4;41087:2;41091:7;41100:1;41060:20;:42::i;:::-;38416:2694;;;38285:2825;;;:::o;65872:223::-;7270:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;66007:9:::2;;65992:11;65976:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;65968:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;66054:35;66064:11;66077;66054:9;:35::i;:::-;1768:1:::1;2722:7;:22;;;;65872:223:::0;;:::o;68149:167::-;7270:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;68216:15:::2;68234:21;68216:39;;68272:19;:17;:19::i;:::-;68264:37;;:46;68302:7;68264:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;68207:109;1768:1:::1;2722:7;:22;;;;68149:167::o:0;41206:193::-;41352:39;41369:4;41375:2;41379:7;41352:39;;;;;;;;;;;;:16;:39::i;:::-;41206:193;;;:::o;67895:98::-;7270:13;:11;:13::i;:::-;67976:11:::1;67966:7;:21;;;;;;;;;;;;:::i;:::-;;67895:98:::0;:::o;65143:25::-;;;;;;;;;;;;;:::o;29548:152::-;29620:7;29663:27;29682:7;29663:18;:27::i;:::-;29640:52;;29548:152;;;:::o;65045:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25090:233::-;25162:7;25203:1;25186:19;;:5;:19;;;25182:60;;;25214:28;;;;;;;;;;;;;;25182:60;19249:13;25260:18;:25;25279:5;25260:25;;;;;;;;;;;;;;;;:55;25253:62;;25090:233;;;:::o;8032:103::-;7270:13;:11;:13::i;:::-;8097:30:::1;8124:1;8097:18;:30::i;:::-;8032:103::o:0;66731:881::-;66790:16;66844:19;66878:25;66918:22;66943:16;66953:5;66943:9;:16::i;:::-;66918:41;;66974:25;67016:14;67002:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66974:57;;67046:31;;:::i;:::-;67097:9;67109:15;:13;:15::i;:::-;67097:27;;67092:472;67141:14;67126:11;:29;67092:472;;67193:15;67206:1;67193:12;:15::i;:::-;67181:27;;67231:9;:16;;;67227:73;;;67272:8;;67227:73;67348:1;67322:28;;:9;:14;;;:28;;;67318:111;;67395:9;:14;;;67375:34;;67318:111;67472:5;67451:26;;:17;:26;;;67447:102;;;67528:1;67502:8;67511:13;;;;;;67502:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;67447:102;67092:472;67157:3;;;;;67092:472;;;;67585:8;67578:15;;;;;;;66731:881;;;:::o;7384:87::-;7430:7;7457:6;;;;;;;;;;;7450:13;;7384:87;:::o;28331:104::-;28387:13;28420:7;28413:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28331:104;:::o;65404:445::-;1812:1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;65470:6:::1;;;;;;;;;;;65469:7;65461:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;65524:12;;65514:6;:22;;65506:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;65601:9;65587:23;;:10;:23;;;65579:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;65667:9;;65657:6;65641:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;65633:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;65750:12;;65740:6;65703:34;65717:19;:17;:19::i;:::-;65703:13;:34::i;:::-;:43;;;;:::i;:::-;:59;;65695:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;65805:38;65815:19;:17;:19::i;:::-;65836:6;65805:9;:38::i;:::-;1768:1:::0;2722:7;:22;;;;65404:445;:::o;35204:234::-;35351:8;35299:18;:39;35318:19;:17;:19::i;:::-;35299:39;;;;;;;;;;;;;;;:49;35339:8;35299:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35411:8;35375:55;;35390:19;:17;:19::i;:::-;35375:55;;;35421:8;35375:55;;;;;;:::i;:::-;;;;;;;;35204:234;;:::o;41997:407::-;42172:31;42185:4;42191:2;42195:7;42172:12;:31::i;:::-;42236:1;42218:2;:14;;;:19;42214:183;;42257:56;42288:4;42294:2;42298:7;42307:5;42257:30;:56::i;:::-;42252:145;;42341:40;;;;;;;;;;;;;;42252:145;42214:183;41997:407;;;;:::o;65107:31::-;;;;:::o;66101:409::-;66199:13;66240:16;66248:7;66240;:16::i;:::-;66224:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;66331:28;66362:10;:8;:10::i;:::-;66331:41;;66417:1;66392:14;66386:28;:32;:118;;;;;;;;;;;;;;;;;66454:14;66470:18;:7;:16;:18::i;:::-;66437:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66386:118;66379:125;;;66101:409;;;:::o;65071:31::-;;;;:::o;66567:107::-;66625:7;66648:20;66662:5;66648:13;:20::i;:::-;66641:27;;66567:107;;;:::o;67653:92::-;7270:13;:11;:13::i;:::-;67733:6:::1;67718:12;:21;;;;67653:92:::0;:::o;35595:164::-;35692:4;35716:18;:25;35735:5;35716:25;;;;;;;;;;;;;;;:35;35742:8;35716:35;;;;;;;;;;;;;;;;;;;;;;;;;35709:42;;35595:164;;;;:::o;8290:201::-;7270:13;:11;:13::i;:::-;8399:1:::1;8379:22;;:8;:22;;;;8371:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8455:28;8474:8;8455:18;:28::i;:::-;8290:201:::0;:::o;7549:132::-;7624:12;:10;:12::i;:::-;7613:23;;:7;:5;:7::i;:::-;:23;;;7605:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7549:132::o;36017:282::-;36082:4;36138:7;36119:15;:13;:15::i;:::-;:26;;:66;;;;;36172:13;;36162:7;:23;36119:66;:153;;;;;36271:1;20025:8;36223:17;:26;36241:7;36223:26;;;;;;;;;;;;:44;:49;36119:153;36099:173;;36017:282;;;:::o;58325:105::-;58385:7;58412:10;58405:17;;58325:105;:::o;23422:92::-;23478:7;23422:92;:::o;30703:1275::-;30770:7;30790:12;30805:7;30790:22;;30873:4;30854:15;:13;:15::i;:::-;:23;30850:1061;;30907:13;;30900:4;:20;30896:1015;;;30945:14;30962:17;:23;30980:4;30962:23;;;;;;;;;;;;30945:40;;31079:1;20025:8;31051:6;:24;:29;31047:845;;;31716:113;31733:1;31723:6;:11;31716:113;;;31776:17;:25;31794:6;;;;;;;31776:25;;;;;;;;;;;;31767:34;;31716:113;;;31862:6;31855:13;;;;;;31047:845;30922:989;30896:1015;30850:1061;31939:31;;;;;;;;;;;;;;30703:1275;;;;:::o;37180:485::-;37282:27;37311:23;37352:38;37393:15;:24;37409:7;37393:24;;;;;;;;;;;37352:65;;37570:18;37547:41;;37627:19;37621:26;37602:45;;37532:126;37180:485;;;:::o;36408:659::-;36557:11;36722:16;36715:5;36711:28;36702:37;;36882:16;36871:9;36867:32;36854:45;;37032:15;37021:9;37018:30;37010:5;36999:9;36996:20;36993:56;36983:66;;36408:659;;;;;:::o;43066:159::-;;;;;:::o;57634:311::-;57769:7;57789:16;20429:3;57815:19;:41;;57789:68;;20429:3;57883:31;57894:4;57900:2;57904:9;57883:10;:31::i;:::-;57875:40;;:62;;57868:69;;;57634:311;;;;;:::o;32526:450::-;32606:14;32774:16;32767:5;32763:28;32754:37;;32951:5;32937:11;32912:23;32908:41;32905:52;32898:5;32895:63;32885:73;;32526:450;;;;:::o;43890:158::-;;;;;:::o;52157:112::-;52234:27;52244:2;52248:8;52234:27;;;;;;;;;;;;:9;:27::i;:::-;52157:112;;:::o;8651:191::-;8725:16;8744:6;;;;;;;;;;;8725:25;;8770:8;8761:6;;:17;;;;;;;;;;;;;;;;;;8825:8;8794:40;;8815:8;8794:40;;;;;;;;;;;;8714:128;8651:191;:::o;30151:161::-;30219:21;;:::i;:::-;30260:44;30279:17;:24;30297:5;30279:24;;;;;;;;;;;;30260:18;:44::i;:::-;30253:51;;30151:161;;;:::o;25405:178::-;25466:7;19249:13;19387:2;25494:18;:25;25513:5;25494:25;;;;;;;;;;;;;;;;:50;;25493:82;25486:89;;25405:178;;;:::o;44488:716::-;44651:4;44697:2;44672:45;;;44718:19;:17;:19::i;:::-;44739:4;44745:7;44754:5;44672:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44668:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44972:1;44955:6;:13;:18;44951:235;;;45001:40;;;;;;;;;;;;;;44951:235;45144:6;45138:13;45129:6;45125:2;45121:15;45114:38;44668:529;44841:54;;;44831:64;;;:6;:64;;;;44824:71;;;44488:716;;;;;;:::o;65296:102::-;65356:13;65385:7;65378:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65296:102;:::o;3189:723::-;3245:13;3475:1;3466:5;:10;3462:53;;;3493:10;;;;;;;;;;;;;;;;;;;;;3462:53;3525:12;3540:5;3525:20;;3556:14;3581:78;3596:1;3588:4;:9;3581:78;;3614:8;;;;;:::i;:::-;;;;3645:2;3637:10;;;;;:::i;:::-;;;3581:78;;;3669:19;3701:6;3691:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3669:39;;3719:154;3735:1;3726:5;:10;3719:154;;3763:1;3753:11;;;;;:::i;:::-;;;3830:2;3822:5;:10;;;;:::i;:::-;3809:2;:24;;;;:::i;:::-;3796:39;;3779:6;3786;3779:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3859:2;3850:11;;;;;:::i;:::-;;;3719:154;;;3897:6;3883:21;;;;;3189:723;;;;:::o;5935:98::-;5988:7;6015:10;6008:17;;5935:98;:::o;57335:147::-;57472:6;57335:147;;;;;:::o;51384:689::-;51515:19;51521:2;51525:8;51515:5;:19::i;:::-;51594:1;51576:2;:14;;;:19;51572:483;;51616:11;51630:13;;51616:27;;51662:13;51684:8;51678:3;:14;51662:30;;51711:233;51742:62;51781:1;51785:2;51789:7;;;;;;51798:5;51742:30;:62::i;:::-;51737:167;;51840:40;;;;;;;;;;;;;;51737:167;51939:3;51931:5;:11;51711:233;;52026:3;52009:13;;:20;52005:34;;52031:8;;;52005:34;51597:458;;51572:483;51384:689;;;:::o;32077:366::-;32143:31;;:::i;:::-;32220:6;32187:9;:14;;:41;;;;;;;;;;;19908:3;32273:6;:33;;32239:9;:24;;:68;;;;;;;;;;;32365:1;20025:8;32337:6;:24;:29;;32318:9;:16;;:48;;;;;;;;;;;20429:3;32406:6;:28;;32377:9;:19;;:58;;;;;;;;;;;32077:366;;;:::o;45666:2966::-;45739:20;45762:13;;45739:36;;45802:1;45790:8;:13;45786:44;;;45812:18;;;;;;;;;;;;;;45786:44;45843:61;45873:1;45877:2;45881:12;45895:8;45843:21;:61::i;:::-;46387:1;19387:2;46357:1;:26;;46356:32;46344:8;:45;46318:18;:22;46337:2;46318:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46666:139;46703:2;46757:33;46780:1;46784:2;46788:1;46757:14;:33::i;:::-;46724:30;46745:8;46724:20;:30::i;:::-;:66;46666:18;:139::i;:::-;46632:17;:31;46650:12;46632:31;;;;;;;;;;;:173;;;;46822:16;46853:11;46882:8;46867:12;:23;46853:37;;47403:16;47399:2;47395:25;47383:37;;47775:12;47735:8;47694:1;47632:25;47573:1;47512;47485:335;48146:1;48132:12;48128:20;48086:346;48187:3;48178:7;48175:16;48086:346;;48405:7;48395:8;48392:1;48365:25;48362:1;48359;48354:59;48240:1;48231:7;48227:15;48216:26;;48086:346;;;48090:77;48477:1;48465:8;:13;48461:45;;;48487:19;;;;;;;;;;;;;;48461:45;48539:3;48523:13;:19;;;;46092:2462;;48564:60;48593:1;48597:2;48601:12;48615:8;48564:20;:60::i;:::-;45728:2904;45666:2966;;:::o;33078:324::-;33148:14;33381:1;33371:8;33368:15;33342:24;33338:46;33328:56;;33078:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10278:366::-;10420:3;10441:67;10505:2;10500:3;10441:67;:::i;:::-;10434:74;;10517:93;10606:3;10517:93;:::i;:::-;10635:2;10630:3;10626:12;10619:19;;10278:366;;;:::o;10650:::-;10792:3;10813:67;10877:2;10872:3;10813:67;:::i;:::-;10806:74;;10889:93;10978:3;10889:93;:::i;:::-;11007:2;11002:3;10998:12;10991:19;;10650:366;;;:::o;11022:::-;11164:3;11185:67;11249:2;11244:3;11185:67;:::i;:::-;11178:74;;11261:93;11350:3;11261:93;:::i;:::-;11379:2;11374:3;11370:12;11363:19;;11022:366;;;:::o;11394:365::-;11536:3;11557:66;11621:1;11616:3;11557:66;:::i;:::-;11550:73;;11632:93;11721:3;11632:93;:::i;:::-;11750:2;11745:3;11741:12;11734:19;;11394:365;;;:::o;11765:366::-;11907:3;11928:67;11992:2;11987:3;11928:67;:::i;:::-;11921:74;;12004:93;12093:3;12004:93;:::i;:::-;12122:2;12117:3;12113:12;12106:19;;11765:366;;;:::o;12137:::-;12279:3;12300:67;12364:2;12359:3;12300:67;:::i;:::-;12293:74;;12376:93;12465:3;12376:93;:::i;:::-;12494:2;12489:3;12485:12;12478:19;;12137:366;;;:::o;12509:::-;12651:3;12672:67;12736:2;12731:3;12672:67;:::i;:::-;12665:74;;12748:93;12837:3;12748:93;:::i;:::-;12866:2;12861:3;12857:12;12850:19;;12509:366;;;:::o;12881:::-;13023:3;13044:67;13108:2;13103:3;13044:67;:::i;:::-;13037:74;;13120:93;13209:3;13120:93;:::i;:::-;13238:2;13233:3;13229:12;13222:19;;12881:366;;;:::o;13253:::-;13395:3;13416:67;13480:2;13475:3;13416:67;:::i;:::-;13409:74;;13492:93;13581:3;13492:93;:::i;:::-;13610:2;13605:3;13601:12;13594:19;;13253:366;;;:::o;13625:::-;13767:3;13788:67;13852:2;13847:3;13788:67;:::i;:::-;13781:74;;13864:93;13953:3;13864:93;:::i;:::-;13982:2;13977:3;13973:12;13966:19;;13625:366;;;:::o;13997:108::-;14074:24;14092:5;14074:24;:::i;:::-;14069:3;14062:37;13997:108;;:::o;14111:118::-;14198:24;14216:5;14198:24;:::i;:::-;14193:3;14186:37;14111:118;;:::o;14235:435::-;14415:3;14437:95;14528:3;14519:6;14437:95;:::i;:::-;14430:102;;14549:95;14640:3;14631:6;14549:95;:::i;:::-;14542:102;;14661:3;14654:10;;14235:435;;;;;:::o;14676:222::-;14769:4;14807:2;14796:9;14792:18;14784:26;;14820:71;14888:1;14877:9;14873:17;14864:6;14820:71;:::i;:::-;14676:222;;;;:::o;14904:640::-;15099:4;15137:3;15126:9;15122:19;15114:27;;15151:71;15219:1;15208:9;15204:17;15195:6;15151:71;:::i;:::-;15232:72;15300:2;15289:9;15285:18;15276:6;15232:72;:::i;:::-;15314;15382:2;15371:9;15367:18;15358:6;15314:72;:::i;:::-;15433:9;15427:4;15423:20;15418:2;15407:9;15403:18;15396:48;15461:76;15532:4;15523:6;15461:76;:::i;:::-;15453:84;;14904:640;;;;;;;:::o;15550:373::-;15693:4;15731:2;15720:9;15716:18;15708:26;;15780:9;15774:4;15770:20;15766:1;15755:9;15751:17;15744:47;15808:108;15911:4;15902:6;15808:108;:::i;:::-;15800:116;;15550:373;;;;:::o;15929:210::-;16016:4;16054:2;16043:9;16039:18;16031:26;;16067:65;16129:1;16118:9;16114:17;16105:6;16067:65;:::i;:::-;15929:210;;;;:::o;16145:313::-;16258:4;16296:2;16285:9;16281:18;16273:26;;16345:9;16339:4;16335:20;16331:1;16320:9;16316:17;16309:47;16373:78;16446:4;16437:6;16373:78;:::i;:::-;16365:86;;16145:313;;;;:::o;16464:419::-;16630:4;16668:2;16657:9;16653:18;16645:26;;16717:9;16711:4;16707:20;16703:1;16692:9;16688:17;16681:47;16745:131;16871:4;16745:131;:::i;:::-;16737:139;;16464:419;;;:::o;16889:::-;17055:4;17093:2;17082:9;17078:18;17070:26;;17142:9;17136:4;17132:20;17128:1;17117:9;17113:17;17106:47;17170:131;17296:4;17170:131;:::i;:::-;17162:139;;16889:419;;;:::o;17314:::-;17480:4;17518:2;17507:9;17503:18;17495:26;;17567:9;17561:4;17557:20;17553:1;17542:9;17538:17;17531:47;17595:131;17721:4;17595:131;:::i;:::-;17587:139;;17314:419;;;:::o;17739:::-;17905:4;17943:2;17932:9;17928:18;17920:26;;17992:9;17986:4;17982:20;17978:1;17967:9;17963:17;17956:47;18020:131;18146:4;18020:131;:::i;:::-;18012:139;;17739:419;;;:::o;18164:::-;18330:4;18368:2;18357:9;18353:18;18345:26;;18417:9;18411:4;18407:20;18403:1;18392:9;18388:17;18381:47;18445:131;18571:4;18445:131;:::i;:::-;18437:139;;18164:419;;;:::o;18589:::-;18755:4;18793:2;18782:9;18778:18;18770:26;;18842:9;18836:4;18832:20;18828:1;18817:9;18813:17;18806:47;18870:131;18996:4;18870:131;:::i;:::-;18862:139;;18589:419;;;:::o;19014:::-;19180:4;19218:2;19207:9;19203:18;19195:26;;19267:9;19261:4;19257:20;19253:1;19242:9;19238:17;19231:47;19295:131;19421:4;19295:131;:::i;:::-;19287:139;;19014:419;;;:::o;19439:::-;19605:4;19643:2;19632:9;19628:18;19620:26;;19692:9;19686:4;19682:20;19678:1;19667:9;19663:17;19656:47;19720:131;19846:4;19720:131;:::i;:::-;19712:139;;19439:419;;;:::o;19864:::-;20030:4;20068:2;20057:9;20053:18;20045:26;;20117:9;20111:4;20107:20;20103:1;20092:9;20088:17;20081:47;20145:131;20271:4;20145:131;:::i;:::-;20137:139;;19864:419;;;:::o;20289:::-;20455:4;20493:2;20482:9;20478:18;20470:26;;20542:9;20536:4;20532:20;20528:1;20517:9;20513:17;20506:47;20570:131;20696:4;20570:131;:::i;:::-;20562:139;;20289:419;;;:::o;20714:222::-;20807:4;20845:2;20834:9;20830:18;20822:26;;20858:71;20926:1;20915:9;20911:17;20902:6;20858:71;:::i;:::-;20714:222;;;;:::o;20942:129::-;20976:6;21003:20;;:::i;:::-;20993:30;;21032:33;21060:4;21052:6;21032:33;:::i;:::-;20942:129;;;:::o;21077:75::-;21110:6;21143:2;21137:9;21127:19;;21077:75;:::o;21158:307::-;21219:4;21309:18;21301:6;21298:30;21295:56;;;21331:18;;:::i;:::-;21295:56;21369:29;21391:6;21369:29;:::i;:::-;21361:37;;21453:4;21447;21443:15;21435:23;;21158:307;;;:::o;21471:308::-;21533:4;21623:18;21615:6;21612:30;21609:56;;;21645:18;;:::i;:::-;21609:56;21683:29;21705:6;21683:29;:::i;:::-;21675:37;;21767:4;21761;21757:15;21749:23;;21471:308;;;:::o;21785:132::-;21852:4;21875:3;21867:11;;21905:4;21900:3;21896:14;21888:22;;21785:132;;;:::o;21923:114::-;21990:6;22024:5;22018:12;22008:22;;21923:114;;;:::o;22043:98::-;22094:6;22128:5;22122:12;22112:22;;22043:98;;;:::o;22147:99::-;22199:6;22233:5;22227:12;22217:22;;22147:99;;;:::o;22252:113::-;22322:4;22354;22349:3;22345:14;22337:22;;22252:113;;;:::o;22371:184::-;22470:11;22504:6;22499:3;22492:19;22544:4;22539:3;22535:14;22520:29;;22371:184;;;;:::o;22561:168::-;22644:11;22678:6;22673:3;22666:19;22718:4;22713:3;22709:14;22694:29;;22561:168;;;;:::o;22735:169::-;22819:11;22853:6;22848:3;22841:19;22893:4;22888:3;22884:14;22869:29;;22735:169;;;;:::o;22910:148::-;23012:11;23049:3;23034:18;;22910:148;;;;:::o;23064:305::-;23104:3;23123:20;23141:1;23123:20;:::i;:::-;23118:25;;23157:20;23175:1;23157:20;:::i;:::-;23152:25;;23311:1;23243:66;23239:74;23236:1;23233:81;23230:107;;;23317:18;;:::i;:::-;23230:107;23361:1;23358;23354:9;23347:16;;23064:305;;;;:::o;23375:185::-;23415:1;23432:20;23450:1;23432:20;:::i;:::-;23427:25;;23466:20;23484:1;23466:20;:::i;:::-;23461:25;;23505:1;23495:35;;23510:18;;:::i;:::-;23495:35;23552:1;23549;23545:9;23540:14;;23375:185;;;;:::o;23566:191::-;23606:4;23626:20;23644:1;23626:20;:::i;:::-;23621:25;;23660:20;23678:1;23660:20;:::i;:::-;23655:25;;23699:1;23696;23693:8;23690:34;;;23704:18;;:::i;:::-;23690:34;23749:1;23746;23742:9;23734:17;;23566:191;;;;:::o;23763:96::-;23800:7;23829:24;23847:5;23829:24;:::i;:::-;23818:35;;23763:96;;;:::o;23865:90::-;23899:7;23942:5;23935:13;23928:21;23917:32;;23865:90;;;:::o;23961:149::-;23997:7;24037:66;24030:5;24026:78;24015:89;;23961:149;;;:::o;24116:126::-;24153:7;24193:42;24186:5;24182:54;24171:65;;24116:126;;;:::o;24248:77::-;24285:7;24314:5;24303:16;;24248:77;;;:::o;24331:154::-;24415:6;24410:3;24405;24392:30;24477:1;24468:6;24463:3;24459:16;24452:27;24331:154;;;:::o;24491:307::-;24559:1;24569:113;24583:6;24580:1;24577:13;24569:113;;;24668:1;24663:3;24659:11;24653:18;24649:1;24644:3;24640:11;24633:39;24605:2;24602:1;24598:10;24593:15;;24569:113;;;24700:6;24697:1;24694:13;24691:101;;;24780:1;24771:6;24766:3;24762:16;24755:27;24691:101;24540:258;24491:307;;;:::o;24804:320::-;24848:6;24885:1;24879:4;24875:12;24865:22;;24932:1;24926:4;24922:12;24953:18;24943:81;;25009:4;25001:6;24997:17;24987:27;;24943:81;25071:2;25063:6;25060:14;25040:18;25037:38;25034:84;;;25090:18;;:::i;:::-;25034:84;24855:269;24804:320;;;:::o;25130:281::-;25213:27;25235:4;25213:27;:::i;:::-;25205:6;25201:40;25343:6;25331:10;25328:22;25307:18;25295:10;25292:34;25289:62;25286:88;;;25354:18;;:::i;:::-;25286:88;25394:10;25390:2;25383:22;25173:238;25130:281;;:::o;25417:233::-;25456:3;25479:24;25497:5;25479:24;:::i;:::-;25470:33;;25525:66;25518:5;25515:77;25512:103;;;25595:18;;:::i;:::-;25512:103;25642:1;25635:5;25631:13;25624:20;;25417:233;;;:::o;25656:176::-;25688:1;25705:20;25723:1;25705:20;:::i;:::-;25700:25;;25739:20;25757:1;25739:20;:::i;:::-;25734:25;;25778:1;25768:35;;25783:18;;:::i;:::-;25768:35;25824:1;25821;25817:9;25812:14;;25656:176;;;;:::o;25838:180::-;25886:77;25883:1;25876:88;25983:4;25980:1;25973:15;26007:4;26004:1;25997:15;26024:180;26072:77;26069:1;26062:88;26169:4;26166:1;26159:15;26193:4;26190:1;26183:15;26210:180;26258:77;26255:1;26248:88;26355:4;26352:1;26345:15;26379:4;26376:1;26369:15;26396:180;26444:77;26441:1;26434:88;26541:4;26538:1;26531:15;26565:4;26562:1;26555:15;26582:180;26630:77;26627:1;26620:88;26727:4;26724:1;26717:15;26751:4;26748:1;26741:15;26768:117;26877:1;26874;26867:12;26891:117;27000:1;26997;26990:12;27014:117;27123:1;27120;27113:12;27137:117;27246:1;27243;27236:12;27260:102;27301:6;27352:2;27348:7;27343:2;27336:5;27332:14;27328:28;27318:38;;27260:102;;;:::o;27368:235::-;27508:34;27504:1;27496:6;27492:14;27485:58;27577:18;27572:2;27564:6;27560:15;27553:43;27368:235;:::o;27609:225::-;27749:34;27745:1;27737:6;27733:14;27726:58;27818:8;27813:2;27805:6;27801:15;27794:33;27609:225;:::o;27840:168::-;27980:20;27976:1;27968:6;27964:14;27957:44;27840:168;:::o;28014:157::-;28154:9;28150:1;28142:6;28138:14;28131:33;28014:157;:::o;28177:172::-;28317:24;28313:1;28305:6;28301:14;28294:48;28177:172;:::o;28355:182::-;28495:34;28491:1;28483:6;28479:14;28472:58;28355:182;:::o;28543:161::-;28683:13;28679:1;28671:6;28667:14;28660:37;28543:161;:::o;28710:177::-;28850:29;28846:1;28838:6;28834:14;28827:53;28710:177;:::o;28893:181::-;29033:33;29029:1;29021:6;29017:14;29010:57;28893:181;:::o;29080:::-;29220:33;29216:1;29208:6;29204:14;29197:57;29080:181;:::o;29267:122::-;29340:24;29358:5;29340:24;:::i;:::-;29333:5;29330:35;29320:63;;29379:1;29376;29369:12;29320:63;29267:122;:::o;29395:116::-;29465:21;29480:5;29465:21;:::i;:::-;29458:5;29455:32;29445:60;;29501:1;29498;29491:12;29445:60;29395:116;:::o;29517:120::-;29589:23;29606:5;29589:23;:::i;:::-;29582:5;29579:34;29569:62;;29627:1;29624;29617:12;29569:62;29517:120;:::o;29643:122::-;29716:24;29734:5;29716:24;:::i;:::-;29709:5;29706:35;29696:63;;29755:1;29752;29745:12;29696:63;29643:122;:::o

Swarm Source

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