ETH Price: $2,867.61 (-6.10%)
Gas: 6 Gwei

VOXVOT_BlindVox (VXVTBV)
 

Overview

TokenID

5011

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
VOXVOT_BlindVox

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//SPDX-License-Identifier: MIT
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

// File: https://github.com/chiru-labs/ERC721A/blob/main/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: https://github.com/chiru-labs/ERC721A/blob/main/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: https://github.com/chiru-labs/ERC721A/blob/main/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override 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;
        }
    }
}

// File: contracts/VOXVOTBlindVox.sol


// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


// File: @openzeppelin/contracts/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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}



pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if a `leafs` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, `proofs` for each leaf must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Then
     * 'proofFlag' designates the nodes needed for the multi proof.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32 root,
        bytes32[] memory leafs,
        bytes32[] memory proofs,
        bool[] memory proofFlag
    ) internal pure returns (bool) {
        return processMultiProof(leafs, proofs, proofFlag) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using the multi proof as `proofFlag`. A multi proof is
     * valid if the final hash matches the root of the tree.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory leafs,
        bytes32[] memory proofs,
        bool[] memory proofFlag
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leafs` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leafsLen = leafs.length;
        uint256 proofsLen = proofs.length;
        uint256 totalHashes = proofFlag.length;

        // Check proof validity.
        require(leafsLen + proofsLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proofs` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leafsLen ? leafs[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlag[i] ? leafPos < leafsLen ? leafs[leafPos++] : hashes[hashPos++] : proofs[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        return hashes[totalHashes - 1];
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

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

//custom reverts
error NotOwner();
error NotOpenable();
error NoBotMint();
error AlreadyMinted();
error InvalidAddr();
error NonexistsToken();
error SoldOut();
error InvalidInput();
error ExcessMint();
error IsPublicMint();
error IsWhiteListMint();

pragma solidity >=0.7.0 <0.9.0;

abstract contract voxvotNFT {
    function openVox(address _to, uint256 _tokenID) public virtual;
}

//tested contract
contract VOXVOT_BlindVox is ERC721AQueryable, Ownable, Pausable, ReentrancyGuard{
  using Strings for uint256;

  string baseURI;
  string public baseExtension = ".json";
  uint256 public maxSupply = 6666;
  uint256 public WLMintlimit;
  uint256 public publicMintlimit;
  mapping (address => uint256) public WLMintCount;
  mapping (address => uint256) public publicMintCount;
  address private NftContract;
  uint256 public totalMints;

  //state
  bool public isWhitelistMint = false;
  bool public isOpenable = false;

  //merkle proof
  bytes32 private rootHash;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _baseUri
  ) ERC721A(_name, _symbol) {
      setBaseUri(_baseUri);
  }

  function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
  }

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

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
  {
    if (!_exists(tokenId)) revert NonexistsToken();
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

  function openVox(uint256 tokenid) public nonReentrant() {
      if(!isOpenable) revert NotOpenable();
      if(msg.sender != ownerOf(tokenid)) revert NotOwner();
      voxvotNFT nftcontract = voxvotNFT(NftContract);
      _burn(tokenid, true);
      nftcontract.openVox(msg.sender, tokenid);
  }

  function openVoxes(uint256[] calldata tokenids) external {
      for (uint256 i; i < tokenids.length; ) {
        openVox(tokenids[i]);
        unchecked { ++i; }
      }
  }

  function whitelistMint(bytes32[] calldata proof) external payable whenNotPaused {
      if(!isWhitelistMint) revert IsPublicMint();
      if (WLMintCount[msg.sender] + 2 > WLMintlimit || 2 + totalMints > maxSupply) revert ExcessMint();
      bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
      if (!MerkleProof.verify(proof, rootHash, leaf)) revert InvalidAddr();
      totalMints += 2;
      WLMintCount[msg.sender] += 2;
      _mint(msg.sender,2);
  }

  function mintBlindVox(uint256 amount) external payable whenNotPaused {
      if (isWhitelistMint) revert IsWhiteListMint();
      if (tx.origin != msg.sender) revert NoBotMint();
      if (publicMintCount[msg.sender] + amount > publicMintlimit || amount + totalMints > maxSupply) revert ExcessMint();
      totalMints += amount;
      publicMintCount[msg.sender] += amount;
      _safeMint(msg.sender,amount);
  }

  //-----air drop-----
  function preMint(address[] calldata listedAddr, uint256[] calldata sendAmounts) external onlyOwner {
      if (listedAddr.length != sendAmounts.length || listedAddr.length == 0) revert InvalidInput();
      
      for (uint256 i; i < listedAddr.length; ) {
        totalMints += sendAmounts[i];
        _mint(listedAddr[i], sendAmounts[i]);
        unchecked { ++i; }
      }
  }

  //-----only owner-----
  function ownerMint(uint256 amount) external onlyOwner {
      if(amount + totalMints > maxSupply) revert ExcessMint();
      totalMints += amount;
      _mint(msg.sender,amount);
  }

  function setBaseUri(string memory _newBaseUri) public onlyOwner {
      baseURI = _newBaseUri;
  }

  function setRootHash(bytes32 _newHash) external onlyOwner {
      rootHash = _newHash;
  }

  function setMaxSupply(uint256 _newSupply) external onlyOwner {
      if(_newSupply > maxSupply) revert InvalidInput();
      maxSupply = _newSupply;
  }

  function setWLMintLimit(uint256 _newLimit) external onlyOwner {
      WLMintlimit = _newLimit;
  }

  function setPublicMintLimit(uint256 _newLimit) external onlyOwner {
      publicMintlimit = _newLimit;
  }

  function setNftContract(address _newAddr) external onlyOwner {
      NftContract = _newAddr;
  }

  function setMintStatus() external onlyOwner {
      if(isWhitelistMint){
          isWhitelistMint = false;
      } else {
          isWhitelistMint = true;
      }
  }

  function setIsOpenable() external onlyOwner {
      if(!isOpenable){
          isOpenable = true;
      }
  }

  function pause() external onlyOwner {
	_pause();
  }

	function unpause() external onlyOwner {
	_unpause();
  }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ExcessMint","type":"error"},{"inputs":[],"name":"InvalidAddr","type":"error"},{"inputs":[],"name":"InvalidInput","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"IsPublicMint","type":"error"},{"inputs":[],"name":"IsWhiteListMint","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoBotMint","type":"error"},{"inputs":[],"name":"NonexistsToken","type":"error"},{"inputs":[],"name":"NotOpenable","type":"error"},{"inputs":[],"name":"NotOwner","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WLMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLMintlimit","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOpenable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistMint","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":"amount","type":"uint256"}],"name":"mintBlindVox","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenid","type":"uint256"}],"name":"openVox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenids","type":"uint256[]"}],"name":"openVoxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"listedAddr","type":"address[]"},{"internalType":"uint256[]","name":"sendAmounts","type":"uint256[]"}],"name":"preMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintlimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"setIsOpenable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddr","type":"address"}],"name":"setNftContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setPublicMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newHash","type":"bytes32"}],"name":"setRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"setWLMintLimit","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMints","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600b91906200019c565b50611a0a600c556013805461ffff191690553480156200004757600080fd5b5060405162002e4b38038062002e4b8339810160408190526200006a91620002f9565b825183908390620000839060029060208501906200019c565b508051620000999060039060208401906200019c565b5050600160005550620000ac33620000d2565b6008805460ff60a01b191690556001600955620000c98162000124565b505050620003dd565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200019890600a9060208401906200019c565b5050565b828054620001aa906200038a565b90600052602060002090601f016020900481019282620001ce576000855562000219565b82601f10620001e957805160ff191683800117855562000219565b8280016001018555821562000219579182015b8281111562000219578251825591602001919060010190620001fc565b50620002279291506200022b565b5090565b5b808211156200022757600081556001016200022c565b600082601f8301126200025457600080fd5b81516001600160401b0380821115620002715762000271620003c7565b604051601f8301601f19908116603f011681019082821181831017156200029c576200029c620003c7565b81604052838152602092508683858801011115620002b957600080fd5b600091505b83821015620002dd5785820183015181830184015290820190620002be565b83821115620002ef5760008385830101525b9695505050505050565b6000806000606084860312156200030f57600080fd5b83516001600160401b03808211156200032757600080fd5b620003358783880162000242565b945060208601519150808211156200034c57600080fd5b6200035a8783880162000242565b935060408601519150808211156200037157600080fd5b50620003808682870162000242565b9150509250925092565b600181811c908216806200039f57607f821691505b60208210811415620003c157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612a5e80620003ed6000396000f3fe6080604052600436106102885760003560e01c80638462151c1161015a578063c6682862116100c1578063d96552a11161007a578063d96552a11461074c578063e985e9c514610779578063ec9070f8146107c2578063ef3e067c146107e2578063f19e75d414610802578063f2fde38b1461082257600080fd5b8063c6682862146106bc578063c754da33146106d1578063c87b56dd146106eb578063cf6714321461070b578063d02c30ee14610720578063d5abeb011461073657600080fd5b8063a0bcfc7f11610113578063a0bcfc7f14610608578063a22cb46514610628578063ad4d3f4c14610648578063adb4d9621461065d578063b88d4fde1461067c578063c23dc68f1461068f57600080fd5b80638462151c146105485780638da5cb5b14610575578063956752061461059357806395d89b41146105a657806396330b5f146105bb57806399a2557a146105e857600080fd5b806342842e0e116101fe5780636352211e116101b75780636352211e1461049e5780636f8b44b0146104be57806370a08231146104de578063715018a6146104fe5780637d5a9192146105135780638456cb591461053357600080fd5b806342842e0e146103e95780634bc1d2f4146103fc578063500393d61461041257806352f5ad77146104325780635bbb2177146104525780635c975abb1461047f57600080fd5b80631f21bfbf116102505780631f21bfbf1461035857806321205e951461036e57806323b872dd1461038e5780632d7eae66146103a1578063372f657c146103c15780633f4ba83a146103d457600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c57806318160ddd14610331575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612606565b610842565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d7610894565b6040516102b9919061286b565b3480156102f057600080fd5b506103046102ff3660046125ed565b610926565b6040516001600160a01b0390911681526020016102b9565b61032f61032a3660046124e4565b61096a565b005b34801561033d57600080fd5b5060015460005403600019015b6040519081526020016102b9565b34801561036457600080fd5b5061034a60125481565b34801561037a57600080fd5b5061032f6103893660046125ed565b610a0a565b61032f61039c3660046123f1565b610af9565b3480156103ad57600080fd5b5061032f6103bc3660046125ed565b610c82565b61032f6103cf3660046125ac565b610cba565b3480156103e057600080fd5b5061032f610e20565b61032f6103f73660046123f1565b610e54565b34801561040857600080fd5b5061034a600e5481565b34801561041e57600080fd5b5061032f61042d3660046125ac565b610e6f565b34801561043e57600080fd5b5061032f61044d3660046123a3565b610ea3565b34801561045e57600080fd5b5061047261046d3660046125ac565b610eef565b6040516102b991906127f1565b34801561048b57600080fd5b50600854600160a01b900460ff166102ad565b3480156104aa57600080fd5b506103046104b93660046125ed565b610fba565b3480156104ca57600080fd5b5061032f6104d93660046125ed565b610fc5565b3480156104ea57600080fd5b5061034a6104f93660046123a3565b611017565b34801561050a57600080fd5b5061032f611065565b34801561051f57600080fd5b5061032f61052e366004612541565b611099565b34801561053f57600080fd5b5061032f611180565b34801561055457600080fd5b506105686105633660046123a3565b6111b2565b6040516102b99190612833565b34801561058157600080fd5b506008546001600160a01b0316610304565b61032f6105a13660046125ed565b6112c1565b3480156105b257600080fd5b506102d76113a8565b3480156105c757600080fd5b5061034a6105d63660046123a3565b60106020526000908152604090205481565b3480156105f457600080fd5b5061056861060336600461250e565b6113b7565b34801561061457600080fd5b5061032f610623366004612640565b611542565b34801561063457600080fd5b5061032f6106433660046124a8565b611583565b34801561065457600080fd5b5061032f6115ef565b34801561066957600080fd5b506013546102ad90610100900460ff1681565b61032f61068a36600461242d565b61163f565b34801561069b57600080fd5b506106af6106aa3660046125ed565b611689565b6040516102b991906128b3565b3480156106c857600080fd5b506102d7611711565b3480156106dd57600080fd5b506013546102ad9060ff1681565b3480156106f757600080fd5b506102d76107063660046125ed565b61179f565b34801561071757600080fd5b5061032f611825565b34801561072c57600080fd5b5061034a600d5481565b34801561074257600080fd5b5061034a600c5481565b34801561075857600080fd5b5061034a6107673660046123a3565b600f6020526000908152604090205481565b34801561078557600080fd5b506102ad6107943660046123be565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107ce57600080fd5b5061032f6107dd3660046125ed565b61186f565b3480156107ee57600080fd5b5061032f6107fd3660046125ed565b61189e565b34801561080e57600080fd5b5061032f61081d3660046125ed565b6118cd565b34801561082e57600080fd5b5061032f61083d3660046123a3565b611948565b60006301ffc9a760e01b6001600160e01b03198316148061087357506380ac58cd60e01b6001600160e01b03198316145b8061088e5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546108a390612930565b80601f01602080910402602001604051908101604052809291908181526020018280546108cf90612930565b801561091c5780601f106108f15761010080835404028352916020019161091c565b820191906000526020600020905b8154815290600101906020018083116108ff57829003601f168201915b5050505050905090565b6000610931826119e0565b61094e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061097582610fba565b9050336001600160a01b038216146109ae576109918133610794565b6109ae576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a12611a15565b601354610100900460ff16610a3a57604051635e3fda8b60e01b815260040160405180910390fd5b610a4381610fba565b6001600160a01b0316336001600160a01b031614610a74576040516330cd747160e01b815260040160405180910390fd5b6011546001600160a01b0316610a8b826001611a6f565b60405163e66c734d60e01b8152336004820152602481018390526001600160a01b0382169063e66c734d90604401600060405180830381600087803b158015610ad357600080fd5b505af1158015610ae7573d6000803e3d6000fd5b5050505050610af66001600955565b50565b6000610b0482611ba0565b9050836001600160a01b0316816001600160a01b031614610b375760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054610b638187335b6001600160a01b039081169116811491141790565b610b8e57610b718633610794565b610b8e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610bb557604051633a954ecd60e21b815260040160405180910390fd5b8015610bc057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610c4b5760018401600081815260046020526040902054610c49576000548114610c495760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b0316600080516020612a0983398151915260405160405180910390a4505050505050565b6008546001600160a01b03163314610cb55760405162461bcd60e51b8152600401610cac9061287e565b60405180910390fd5b601455565b610cc2611c09565b60135460ff16610ce557604051638f490e9560e01b815260040160405180910390fd5b600d54336000908152600f6020526040902054610d039060026128c1565b1180610d1d5750600c54601254610d1b9060026128c1565b115b15610d3b57604051632fdc52b160e01b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610db5838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014549150849050611c56565b610dd25760405163e481c26960e01b815260040160405180910390fd5b600260126000828254610de591906128c1565b9091555050336000908152600f60205260408120805460029290610e0a9084906128c1565b90915550610e1b9050336002611c6c565b505050565b6008546001600160a01b03163314610e4a5760405162461bcd60e51b8152600401610cac9061287e565b610e52611d3f565b565b610e1b8383836040518060200160405280600081525061163f565b60005b81811015610e1b57610e9b838383818110610e8f57610e8f6129c6565b90506020020135610a0a565b600101610e72565b6008546001600160a01b03163314610ecd5760405162461bcd60e51b8152600401610cac9061287e565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6060816000816001600160401b03811115610f0c57610f0c6129dc565b604051908082528060200260200182016040528015610f5e57816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610f2a5790505b50905060005b828114610fb157610f8c868683818110610f8057610f806129c6565b90506020020135611689565b828281518110610f9e57610f9e6129c6565b6020908102919091010152600101610f64565b50949350505050565b600061088e82611ba0565b6008546001600160a01b03163314610fef5760405162461bcd60e51b8152600401610cac9061287e565b600c548111156110125760405163b4fa3fb360e01b815260040160405180910390fd5b600c55565b60006001600160a01b038216611040576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461108f5760405162461bcd60e51b8152600401610cac9061287e565b610e526000611d94565b6008546001600160a01b031633146110c35760405162461bcd60e51b8152600401610cac9061287e565b82811415806110d0575082155b156110ee5760405163b4fa3fb360e01b815260040160405180910390fd5b60005b838110156111795782828281811061110b5761110b6129c6565b905060200201356012600082825461112391906128c1565b90915550611171905085858381811061113e5761113e6129c6565b905060200201602081019061115391906123a3565b848484818110611165576111656129c6565b90506020020135611c6c565b6001016110f1565b5050505050565b6008546001600160a01b031633146111aa5760405162461bcd60e51b8152600401610cac9061287e565b610e52611de6565b606060008060006111c285611017565b90506000816001600160401b038111156111de576111de6129dc565b604051908082528060200260200182016040528015611207578160200160208202803683370190505b50905061123460408051608081018252600080825260208201819052918101829052606081019190915290565b60015b8386146112b55761124781611e29565b9150816040015115611258576112ad565b81516001600160a01b03161561126d57815194505b876001600160a01b0316856001600160a01b031614156112ad57808387806001019850815181106112a0576112a06129c6565b6020026020010181815250505b600101611237565b50909695505050505050565b6112c9611c09565b60135460ff16156112ed5760405163c68ebab360e01b815260040160405180910390fd5b32331461130d57604051633a5aca6960e01b815260040160405180910390fd5b600e543360009081526010602052604090205461132b9083906128c1565b11806113445750600c5460125461134290836128c1565b115b1561136257604051632fdc52b160e01b815260040160405180910390fd5b806012600082825461137491906128c1565b909155505033600090815260106020526040812080548392906113989084906128c1565b90915550610af690503382611e65565b6060600380546108a390612930565b60608183106113d957604051631960ccad60e11b815260040160405180910390fd5b6000806113e560005490565b905060018510156113f557600194505b80841115611401578093505b600061140c87611017565b90508486101561142b5785850381811015611425578091505b5061142f565b5060005b6000816001600160401b03811115611449576114496129dc565b604051908082528060200260200182016040528015611472578160200160208202803683370190505b5090508161148557935061153b92505050565b600061149088611689565b9050600081604001516114a1575080515b885b8881141580156114b35750848714155b1561152f576114c181611e29565b92508260400151156114d257611527565b82516001600160a01b0316156114e757825191505b8a6001600160a01b0316826001600160a01b03161415611527578084888060010199508151811061151a5761151a6129c6565b6020026020010181815250505b6001016114a3565b50505092835250909150505b9392505050565b6008546001600160a01b0316331461156c5760405162461bcd60e51b8152600401610cac9061287e565b805161157f90600a90602084019061222e565b5050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146116195760405162461bcd60e51b8152600401610cac9061287e565b60135460ff1615611630576013805460ff19169055565b6013805460ff19166001179055565b61164a848484610af9565b6001600160a01b0383163b156116835761166684848484611e7f565b611683576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60408051608081018252600080825260208201819052918101829052606081019190915260408051608081018252600080825260208201819052918101829052606081019190915260018310806116e257506000548310155b156116ed5792915050565b6116f683611e29565b90508060400151156117085792915050565b61153b83611f77565b600b805461171e90612930565b80601f016020809104026020016040519081016040528092919081815260200182805461174a90612930565b80156117975780601f1061176c57610100808354040283529160200191611797565b820191906000526020600020905b81548152906001019060200180831161177a57829003601f168201915b505050505081565b60606117aa826119e0565b6117c757604051639041bcff60e01b815260040160405180910390fd5b60006117d1611fac565b905060008151116117f1576040518060200160405280600081525061153b565b806117fb84611fbb565b600b60405160200161180f939291906126f0565b6040516020818303038152906040529392505050565b6008546001600160a01b0316331461184f5760405162461bcd60e51b8152600401610cac9061287e565b601354610100900460ff16610e52576013805461ff001916610100179055565b6008546001600160a01b031633146118995760405162461bcd60e51b8152600401610cac9061287e565b600d55565b6008546001600160a01b031633146118c85760405162461bcd60e51b8152600401610cac9061287e565b600e55565b6008546001600160a01b031633146118f75760405162461bcd60e51b8152600401610cac9061287e565b600c5460125461190790836128c1565b111561192657604051632fdc52b160e01b815260040160405180910390fd5b806012600082825461193891906128c1565b90915550610af690503382611c6c565b6008546001600160a01b031633146119725760405162461bcd60e51b8152600401610cac9061287e565b6001600160a01b0381166119d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cac565b610af681611d94565b6000816001111580156119f4575060005482105b801561088e575050600090815260046020526040902054600160e01b161590565b60026009541415611a685760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610cac565b6002600955565b6000611a7a83611ba0565b905080600080611a9886600090815260066020526040902080549091565b915091508415611ad857611aad818433610b4e565b611ad857611abb8333610794565b611ad857604051632ce44b5f60e11b815260040160405180910390fd5b8015611ae357600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040902055600160e11b8416611b6a5760018601600081815260046020526040902054611b68576000548114611b685760008181526004602052604090208590555b505b60405186906000906001600160a01b03861690600080516020612a09833981519152908390a45050600180548101905550505050565b60008180600111611bf057600054811015611bf057600081815260046020526040902054600160e01b8116611bee575b8061153b575060001901600081815260046020526040902054611bd0565b505b604051636f96cda160e11b815260040160405180910390fd5b600854600160a01b900460ff1615610e525760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610cac565b600082611c6385846120b8565b14949350505050565b60005481611c8d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b17831790558284019083908390600080516020612a098339815191528180a4600183015b818114611d185780836000600080516020612a09833981519152600080a4600101611cf2565b5081611d3657604051622e076360e81b815260040160405180910390fd5b60005550505050565b611d47612105565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611dee611c09565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d773390565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461088e90612155565b61157f82826040518060200160405280600081525061219c565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611eb49033908990889088906004016127b4565b602060405180830381600087803b158015611ece57600080fd5b505af1925050508015611efe575060408051601f3d908101601f19168201909252611efb91810190612623565b60015b611f59573d808015611f2c576040519150601f19603f3d011682016040523d82523d6000602084013e611f31565b606091505b508051611f51576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60408051608081018252600080825260208201819052918101829052606081019190915261088e611fa783611ba0565b612155565b6060600a80546108a390612930565b606081611fdf5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120095780611ff38161296b565b91506120029050600a836128d9565b9150611fe3565b6000816001600160401b03811115612023576120236129dc565b6040519080825280601f01601f19166020018201604052801561204d576020820181803683370190505b5090505b8415611f6f576120626001836128ed565b915061206f600a86612986565b61207a9060306128c1565b60f81b81838151811061208f5761208f6129c6565b60200101906001600160f81b031916908160001a9053506120b1600a866128d9565b9450612051565b600081815b84518110156120fd576120e9828683815181106120dc576120dc6129c6565b6020026020010151612202565b9150806120f58161296b565b9150506120bd565b509392505050565b600854600160a01b900460ff16610e525760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610cac565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b6121a68383611c6c565b6001600160a01b0383163b15610e1b576000548281035b6121d06000868380600101945086611e7f565b6121ed576040516368d2bf6b60e11b815260040160405180910390fd5b8181106121bd57816000541461117957600080fd5b600081831061221e57600082815260208490526040902061153b565b5060009182526020526040902090565b82805461223a90612930565b90600052602060002090601f01602090048101928261225c57600085556122a2565b82601f1061227557805160ff19168380011785556122a2565b828001600101855582156122a2579182015b828111156122a2578251825591602001919060010190612287565b506122ae9291506122b2565b5090565b5b808211156122ae57600081556001016122b3565b60006001600160401b03808411156122e1576122e16129dc565b604051601f8501601f19908116603f01168101908282118183101715612309576123096129dc565b8160405280935085815286868601111561232257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461235357600080fd5b919050565b60008083601f84011261236a57600080fd5b5081356001600160401b0381111561238157600080fd5b6020830191508360208260051b850101111561239c57600080fd5b9250929050565b6000602082840312156123b557600080fd5b61153b8261233c565b600080604083850312156123d157600080fd5b6123da8361233c565b91506123e86020840161233c565b90509250929050565b60008060006060848603121561240657600080fd5b61240f8461233c565b925061241d6020850161233c565b9150604084013590509250925092565b6000806000806080858703121561244357600080fd5b61244c8561233c565b935061245a6020860161233c565b92506040850135915060608501356001600160401b0381111561247c57600080fd5b8501601f8101871361248d57600080fd5b61249c878235602084016122c7565b91505092959194509250565b600080604083850312156124bb57600080fd5b6124c48361233c565b9150602083013580151581146124d957600080fd5b809150509250929050565b600080604083850312156124f757600080fd5b6125008361233c565b946020939093013593505050565b60008060006060848603121561252357600080fd5b61252c8461233c565b95602085013595506040909401359392505050565b6000806000806040858703121561255757600080fd5b84356001600160401b038082111561256e57600080fd5b61257a88838901612358565b9096509450602087013591508082111561259357600080fd5b506125a087828801612358565b95989497509550505050565b600080602083850312156125bf57600080fd5b82356001600160401b038111156125d557600080fd5b6125e185828601612358565b90969095509350505050565b6000602082840312156125ff57600080fd5b5035919050565b60006020828403121561261857600080fd5b813561153b816129f2565b60006020828403121561263557600080fd5b815161153b816129f2565b60006020828403121561265257600080fd5b81356001600160401b0381111561266857600080fd5b8201601f8101841361267957600080fd5b611f6f848235602084016122c7565b600081518084526126a0816020860160208601612904565b601f01601f19169290920160200192915050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6000845160206127038285838a01612904565b8551918401916127168184848a01612904565b8554920191600090600181811c908083168061273357607f831692505b85831081141561275157634e487b7160e01b85526022600452602485fd5b8080156127655760018114612776576127a3565b60ff198516885283880195506127a3565b60008b81526020902060005b8581101561279b5781548a820152908401908801612782565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127e790830184612688565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156112b5576128208385516126b4565b928401926080929092019160010161280d565b6020808252825182820181905260009190848201906040850190845b818110156112b55783518352928401929184019160010161284f565b60208152600061153b6020830184612688565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6080810161088e82846126b4565b600082198211156128d4576128d461299a565b500190565b6000826128e8576128e86129b0565b500490565b6000828210156128ff576128ff61299a565b500390565b60005b8381101561291f578181015183820152602001612907565b838111156116835750506000910152565b600181811c9082168061294457607f821691505b6020821081141561296557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561297f5761297f61299a565b5060010190565b600082612995576129956129b0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610af657600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212209dbfc8bfd7ac8337c63a12ff47fc187c793538a20476c3e86d1586f5da92e57c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f564f58564f545f426c696e64566f780000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000656585654425600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5938417a50574665395147754d4c53463379316e653742785765354d617052436d32747333355370426e324e2f00000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c80638462151c1161015a578063c6682862116100c1578063d96552a11161007a578063d96552a11461074c578063e985e9c514610779578063ec9070f8146107c2578063ef3e067c146107e2578063f19e75d414610802578063f2fde38b1461082257600080fd5b8063c6682862146106bc578063c754da33146106d1578063c87b56dd146106eb578063cf6714321461070b578063d02c30ee14610720578063d5abeb011461073657600080fd5b8063a0bcfc7f11610113578063a0bcfc7f14610608578063a22cb46514610628578063ad4d3f4c14610648578063adb4d9621461065d578063b88d4fde1461067c578063c23dc68f1461068f57600080fd5b80638462151c146105485780638da5cb5b14610575578063956752061461059357806395d89b41146105a657806396330b5f146105bb57806399a2557a146105e857600080fd5b806342842e0e116101fe5780636352211e116101b75780636352211e1461049e5780636f8b44b0146104be57806370a08231146104de578063715018a6146104fe5780637d5a9192146105135780638456cb591461053357600080fd5b806342842e0e146103e95780634bc1d2f4146103fc578063500393d61461041257806352f5ad77146104325780635bbb2177146104525780635c975abb1461047f57600080fd5b80631f21bfbf116102505780631f21bfbf1461035857806321205e951461036e57806323b872dd1461038e5780632d7eae66146103a1578063372f657c146103c15780633f4ba83a146103d457600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c57806318160ddd14610331575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612606565b610842565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d7610894565b6040516102b9919061286b565b3480156102f057600080fd5b506103046102ff3660046125ed565b610926565b6040516001600160a01b0390911681526020016102b9565b61032f61032a3660046124e4565b61096a565b005b34801561033d57600080fd5b5060015460005403600019015b6040519081526020016102b9565b34801561036457600080fd5b5061034a60125481565b34801561037a57600080fd5b5061032f6103893660046125ed565b610a0a565b61032f61039c3660046123f1565b610af9565b3480156103ad57600080fd5b5061032f6103bc3660046125ed565b610c82565b61032f6103cf3660046125ac565b610cba565b3480156103e057600080fd5b5061032f610e20565b61032f6103f73660046123f1565b610e54565b34801561040857600080fd5b5061034a600e5481565b34801561041e57600080fd5b5061032f61042d3660046125ac565b610e6f565b34801561043e57600080fd5b5061032f61044d3660046123a3565b610ea3565b34801561045e57600080fd5b5061047261046d3660046125ac565b610eef565b6040516102b991906127f1565b34801561048b57600080fd5b50600854600160a01b900460ff166102ad565b3480156104aa57600080fd5b506103046104b93660046125ed565b610fba565b3480156104ca57600080fd5b5061032f6104d93660046125ed565b610fc5565b3480156104ea57600080fd5b5061034a6104f93660046123a3565b611017565b34801561050a57600080fd5b5061032f611065565b34801561051f57600080fd5b5061032f61052e366004612541565b611099565b34801561053f57600080fd5b5061032f611180565b34801561055457600080fd5b506105686105633660046123a3565b6111b2565b6040516102b99190612833565b34801561058157600080fd5b506008546001600160a01b0316610304565b61032f6105a13660046125ed565b6112c1565b3480156105b257600080fd5b506102d76113a8565b3480156105c757600080fd5b5061034a6105d63660046123a3565b60106020526000908152604090205481565b3480156105f457600080fd5b5061056861060336600461250e565b6113b7565b34801561061457600080fd5b5061032f610623366004612640565b611542565b34801561063457600080fd5b5061032f6106433660046124a8565b611583565b34801561065457600080fd5b5061032f6115ef565b34801561066957600080fd5b506013546102ad90610100900460ff1681565b61032f61068a36600461242d565b61163f565b34801561069b57600080fd5b506106af6106aa3660046125ed565b611689565b6040516102b991906128b3565b3480156106c857600080fd5b506102d7611711565b3480156106dd57600080fd5b506013546102ad9060ff1681565b3480156106f757600080fd5b506102d76107063660046125ed565b61179f565b34801561071757600080fd5b5061032f611825565b34801561072c57600080fd5b5061034a600d5481565b34801561074257600080fd5b5061034a600c5481565b34801561075857600080fd5b5061034a6107673660046123a3565b600f6020526000908152604090205481565b34801561078557600080fd5b506102ad6107943660046123be565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107ce57600080fd5b5061032f6107dd3660046125ed565b61186f565b3480156107ee57600080fd5b5061032f6107fd3660046125ed565b61189e565b34801561080e57600080fd5b5061032f61081d3660046125ed565b6118cd565b34801561082e57600080fd5b5061032f61083d3660046123a3565b611948565b60006301ffc9a760e01b6001600160e01b03198316148061087357506380ac58cd60e01b6001600160e01b03198316145b8061088e5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546108a390612930565b80601f01602080910402602001604051908101604052809291908181526020018280546108cf90612930565b801561091c5780601f106108f15761010080835404028352916020019161091c565b820191906000526020600020905b8154815290600101906020018083116108ff57829003601f168201915b5050505050905090565b6000610931826119e0565b61094e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061097582610fba565b9050336001600160a01b038216146109ae576109918133610794565b6109ae576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610a12611a15565b601354610100900460ff16610a3a57604051635e3fda8b60e01b815260040160405180910390fd5b610a4381610fba565b6001600160a01b0316336001600160a01b031614610a74576040516330cd747160e01b815260040160405180910390fd5b6011546001600160a01b0316610a8b826001611a6f565b60405163e66c734d60e01b8152336004820152602481018390526001600160a01b0382169063e66c734d90604401600060405180830381600087803b158015610ad357600080fd5b505af1158015610ae7573d6000803e3d6000fd5b5050505050610af66001600955565b50565b6000610b0482611ba0565b9050836001600160a01b0316816001600160a01b031614610b375760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054610b638187335b6001600160a01b039081169116811491141790565b610b8e57610b718633610794565b610b8e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610bb557604051633a954ecd60e21b815260040160405180910390fd5b8015610bc057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610c4b5760018401600081815260046020526040902054610c49576000548114610c495760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b0316600080516020612a0983398151915260405160405180910390a4505050505050565b6008546001600160a01b03163314610cb55760405162461bcd60e51b8152600401610cac9061287e565b60405180910390fd5b601455565b610cc2611c09565b60135460ff16610ce557604051638f490e9560e01b815260040160405180910390fd5b600d54336000908152600f6020526040902054610d039060026128c1565b1180610d1d5750600c54601254610d1b9060026128c1565b115b15610d3b57604051632fdc52b160e01b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610db5838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014549150849050611c56565b610dd25760405163e481c26960e01b815260040160405180910390fd5b600260126000828254610de591906128c1565b9091555050336000908152600f60205260408120805460029290610e0a9084906128c1565b90915550610e1b9050336002611c6c565b505050565b6008546001600160a01b03163314610e4a5760405162461bcd60e51b8152600401610cac9061287e565b610e52611d3f565b565b610e1b8383836040518060200160405280600081525061163f565b60005b81811015610e1b57610e9b838383818110610e8f57610e8f6129c6565b90506020020135610a0a565b600101610e72565b6008546001600160a01b03163314610ecd5760405162461bcd60e51b8152600401610cac9061287e565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6060816000816001600160401b03811115610f0c57610f0c6129dc565b604051908082528060200260200182016040528015610f5e57816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181610f2a5790505b50905060005b828114610fb157610f8c868683818110610f8057610f806129c6565b90506020020135611689565b828281518110610f9e57610f9e6129c6565b6020908102919091010152600101610f64565b50949350505050565b600061088e82611ba0565b6008546001600160a01b03163314610fef5760405162461bcd60e51b8152600401610cac9061287e565b600c548111156110125760405163b4fa3fb360e01b815260040160405180910390fd5b600c55565b60006001600160a01b038216611040576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461108f5760405162461bcd60e51b8152600401610cac9061287e565b610e526000611d94565b6008546001600160a01b031633146110c35760405162461bcd60e51b8152600401610cac9061287e565b82811415806110d0575082155b156110ee5760405163b4fa3fb360e01b815260040160405180910390fd5b60005b838110156111795782828281811061110b5761110b6129c6565b905060200201356012600082825461112391906128c1565b90915550611171905085858381811061113e5761113e6129c6565b905060200201602081019061115391906123a3565b848484818110611165576111656129c6565b90506020020135611c6c565b6001016110f1565b5050505050565b6008546001600160a01b031633146111aa5760405162461bcd60e51b8152600401610cac9061287e565b610e52611de6565b606060008060006111c285611017565b90506000816001600160401b038111156111de576111de6129dc565b604051908082528060200260200182016040528015611207578160200160208202803683370190505b50905061123460408051608081018252600080825260208201819052918101829052606081019190915290565b60015b8386146112b55761124781611e29565b9150816040015115611258576112ad565b81516001600160a01b03161561126d57815194505b876001600160a01b0316856001600160a01b031614156112ad57808387806001019850815181106112a0576112a06129c6565b6020026020010181815250505b600101611237565b50909695505050505050565b6112c9611c09565b60135460ff16156112ed5760405163c68ebab360e01b815260040160405180910390fd5b32331461130d57604051633a5aca6960e01b815260040160405180910390fd5b600e543360009081526010602052604090205461132b9083906128c1565b11806113445750600c5460125461134290836128c1565b115b1561136257604051632fdc52b160e01b815260040160405180910390fd5b806012600082825461137491906128c1565b909155505033600090815260106020526040812080548392906113989084906128c1565b90915550610af690503382611e65565b6060600380546108a390612930565b60608183106113d957604051631960ccad60e11b815260040160405180910390fd5b6000806113e560005490565b905060018510156113f557600194505b80841115611401578093505b600061140c87611017565b90508486101561142b5785850381811015611425578091505b5061142f565b5060005b6000816001600160401b03811115611449576114496129dc565b604051908082528060200260200182016040528015611472578160200160208202803683370190505b5090508161148557935061153b92505050565b600061149088611689565b9050600081604001516114a1575080515b885b8881141580156114b35750848714155b1561152f576114c181611e29565b92508260400151156114d257611527565b82516001600160a01b0316156114e757825191505b8a6001600160a01b0316826001600160a01b03161415611527578084888060010199508151811061151a5761151a6129c6565b6020026020010181815250505b6001016114a3565b50505092835250909150505b9392505050565b6008546001600160a01b0316331461156c5760405162461bcd60e51b8152600401610cac9061287e565b805161157f90600a90602084019061222e565b5050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146116195760405162461bcd60e51b8152600401610cac9061287e565b60135460ff1615611630576013805460ff19169055565b6013805460ff19166001179055565b61164a848484610af9565b6001600160a01b0383163b156116835761166684848484611e7f565b611683576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60408051608081018252600080825260208201819052918101829052606081019190915260408051608081018252600080825260208201819052918101829052606081019190915260018310806116e257506000548310155b156116ed5792915050565b6116f683611e29565b90508060400151156117085792915050565b61153b83611f77565b600b805461171e90612930565b80601f016020809104026020016040519081016040528092919081815260200182805461174a90612930565b80156117975780601f1061176c57610100808354040283529160200191611797565b820191906000526020600020905b81548152906001019060200180831161177a57829003601f168201915b505050505081565b60606117aa826119e0565b6117c757604051639041bcff60e01b815260040160405180910390fd5b60006117d1611fac565b905060008151116117f1576040518060200160405280600081525061153b565b806117fb84611fbb565b600b60405160200161180f939291906126f0565b6040516020818303038152906040529392505050565b6008546001600160a01b0316331461184f5760405162461bcd60e51b8152600401610cac9061287e565b601354610100900460ff16610e52576013805461ff001916610100179055565b6008546001600160a01b031633146118995760405162461bcd60e51b8152600401610cac9061287e565b600d55565b6008546001600160a01b031633146118c85760405162461bcd60e51b8152600401610cac9061287e565b600e55565b6008546001600160a01b031633146118f75760405162461bcd60e51b8152600401610cac9061287e565b600c5460125461190790836128c1565b111561192657604051632fdc52b160e01b815260040160405180910390fd5b806012600082825461193891906128c1565b90915550610af690503382611c6c565b6008546001600160a01b031633146119725760405162461bcd60e51b8152600401610cac9061287e565b6001600160a01b0381166119d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cac565b610af681611d94565b6000816001111580156119f4575060005482105b801561088e575050600090815260046020526040902054600160e01b161590565b60026009541415611a685760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610cac565b6002600955565b6000611a7a83611ba0565b905080600080611a9886600090815260066020526040902080549091565b915091508415611ad857611aad818433610b4e565b611ad857611abb8333610794565b611ad857604051632ce44b5f60e11b815260040160405180910390fd5b8015611ae357600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040902055600160e11b8416611b6a5760018601600081815260046020526040902054611b68576000548114611b685760008181526004602052604090208590555b505b60405186906000906001600160a01b03861690600080516020612a09833981519152908390a45050600180548101905550505050565b60008180600111611bf057600054811015611bf057600081815260046020526040902054600160e01b8116611bee575b8061153b575060001901600081815260046020526040902054611bd0565b505b604051636f96cda160e11b815260040160405180910390fd5b600854600160a01b900460ff1615610e525760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610cac565b600082611c6385846120b8565b14949350505050565b60005481611c8d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b17831790558284019083908390600080516020612a098339815191528180a4600183015b818114611d185780836000600080516020612a09833981519152600080a4600101611cf2565b5081611d3657604051622e076360e81b815260040160405180910390fd5b60005550505050565b611d47612105565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611dee611c09565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d773390565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526004602052604090205461088e90612155565b61157f82826040518060200160405280600081525061219c565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611eb49033908990889088906004016127b4565b602060405180830381600087803b158015611ece57600080fd5b505af1925050508015611efe575060408051601f3d908101601f19168201909252611efb91810190612623565b60015b611f59573d808015611f2c576040519150601f19603f3d011682016040523d82523d6000602084013e611f31565b606091505b508051611f51576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60408051608081018252600080825260208201819052918101829052606081019190915261088e611fa783611ba0565b612155565b6060600a80546108a390612930565b606081611fdf5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120095780611ff38161296b565b91506120029050600a836128d9565b9150611fe3565b6000816001600160401b03811115612023576120236129dc565b6040519080825280601f01601f19166020018201604052801561204d576020820181803683370190505b5090505b8415611f6f576120626001836128ed565b915061206f600a86612986565b61207a9060306128c1565b60f81b81838151811061208f5761208f6129c6565b60200101906001600160f81b031916908160001a9053506120b1600a866128d9565b9450612051565b600081815b84518110156120fd576120e9828683815181106120dc576120dc6129c6565b6020026020010151612202565b9150806120f58161296b565b9150506120bd565b509392505050565b600854600160a01b900460ff16610e525760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610cac565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b6121a68383611c6c565b6001600160a01b0383163b15610e1b576000548281035b6121d06000868380600101945086611e7f565b6121ed576040516368d2bf6b60e11b815260040160405180910390fd5b8181106121bd57816000541461117957600080fd5b600081831061221e57600082815260208490526040902061153b565b5060009182526020526040902090565b82805461223a90612930565b90600052602060002090601f01602090048101928261225c57600085556122a2565b82601f1061227557805160ff19168380011785556122a2565b828001600101855582156122a2579182015b828111156122a2578251825591602001919060010190612287565b506122ae9291506122b2565b5090565b5b808211156122ae57600081556001016122b3565b60006001600160401b03808411156122e1576122e16129dc565b604051601f8501601f19908116603f01168101908282118183101715612309576123096129dc565b8160405280935085815286868601111561232257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461235357600080fd5b919050565b60008083601f84011261236a57600080fd5b5081356001600160401b0381111561238157600080fd5b6020830191508360208260051b850101111561239c57600080fd5b9250929050565b6000602082840312156123b557600080fd5b61153b8261233c565b600080604083850312156123d157600080fd5b6123da8361233c565b91506123e86020840161233c565b90509250929050565b60008060006060848603121561240657600080fd5b61240f8461233c565b925061241d6020850161233c565b9150604084013590509250925092565b6000806000806080858703121561244357600080fd5b61244c8561233c565b935061245a6020860161233c565b92506040850135915060608501356001600160401b0381111561247c57600080fd5b8501601f8101871361248d57600080fd5b61249c878235602084016122c7565b91505092959194509250565b600080604083850312156124bb57600080fd5b6124c48361233c565b9150602083013580151581146124d957600080fd5b809150509250929050565b600080604083850312156124f757600080fd5b6125008361233c565b946020939093013593505050565b60008060006060848603121561252357600080fd5b61252c8461233c565b95602085013595506040909401359392505050565b6000806000806040858703121561255757600080fd5b84356001600160401b038082111561256e57600080fd5b61257a88838901612358565b9096509450602087013591508082111561259357600080fd5b506125a087828801612358565b95989497509550505050565b600080602083850312156125bf57600080fd5b82356001600160401b038111156125d557600080fd5b6125e185828601612358565b90969095509350505050565b6000602082840312156125ff57600080fd5b5035919050565b60006020828403121561261857600080fd5b813561153b816129f2565b60006020828403121561263557600080fd5b815161153b816129f2565b60006020828403121561265257600080fd5b81356001600160401b0381111561266857600080fd5b8201601f8101841361267957600080fd5b611f6f848235602084016122c7565b600081518084526126a0816020860160208601612904565b601f01601f19169290920160200192915050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b6000845160206127038285838a01612904565b8551918401916127168184848a01612904565b8554920191600090600181811c908083168061273357607f831692505b85831081141561275157634e487b7160e01b85526022600452602485fd5b8080156127655760018114612776576127a3565b60ff198516885283880195506127a3565b60008b81526020902060005b8581101561279b5781548a820152908401908801612782565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127e790830184612688565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156112b5576128208385516126b4565b928401926080929092019160010161280d565b6020808252825182820181905260009190848201906040850190845b818110156112b55783518352928401929184019160010161284f565b60208152600061153b6020830184612688565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6080810161088e82846126b4565b600082198211156128d4576128d461299a565b500190565b6000826128e8576128e86129b0565b500490565b6000828210156128ff576128ff61299a565b500390565b60005b8381101561291f578181015183820152602001612907565b838111156116835750506000910152565b600181811c9082168061294457607f821691505b6020821081141561296557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561297f5761297f61299a565b5060010190565b600082612995576129956129b0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610af657600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212209dbfc8bfd7ac8337c63a12ff47fc187c793538a20476c3e86d1586f5da92e57c64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f564f58564f545f426c696e64566f780000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000656585654425600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5938417a50574665395147754d4c53463379316e653742785765354d617052436d32747333355370426e324e2f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): VOXVOT_BlindVox
Arg [1] : _symbol (string): VXVTBV
Arg [2] : _baseUri (string): ipfs://QmY8AzPWFe9QGuMLSF3y1ne7BxWe5MapRCm2ts35SpBn2N/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 564f58564f545f426c696e64566f780000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 5658565442560000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d5938417a50574665395147754d4c53463379316e653742
Arg [9] : 785765354d617052436d32747333355370426e324e2f00000000000000000000


Deployed Bytecode Sourcemap

77487:4466:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21794:639;;;;;;;;;;-1:-1:-1;21794:639:0;;;;;:::i;:::-;;:::i;:::-;;;11480:14:1;;11473:22;11455:41;;11443:2;11428:18;21794:639:0;;;;;;;;22696:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29187:218::-;;;;;;;;;;-1:-1:-1;29187:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9135:32:1;;;9117:51;;9105:2;9090:18;29187:218:0;8971:203:1;28620:408:0;;;;;;:::i;:::-;;:::i;:::-;;18447:323;;;;;;;;;;-1:-1:-1;78333:1:0;18721:12;18508:7;18705:13;:28;-1:-1:-1;;18705:46:0;18447:323;;;13970:25:1;;;13958:2;13943:18;18447:323:0;13824:177:1;77907:25:0;;;;;;;;;;;;;;;;78811:301;;;;;;;;;;-1:-1:-1;78811:301:0;;;;;:::i;:::-;;:::i;32826:2825::-;;;;;;:::i;:::-;;:::i;80947:92::-;;;;;;;;;;-1:-1:-1;80947:92:0;;;;;:::i;:::-;;:::i;79303:471::-;;;;;;:::i;:::-;;:::i;81888:58::-;;;;;;;;;;;;;:::i;35747:193::-;;;;;;:::i;:::-;;:::i;77732:30::-;;;;;;;;;;;;;;;;79118:179;;;;;;;;;;-1:-1:-1;79118:179:0;;;;;:::i;:::-;;:::i;81426:98::-;;;;;;;;;;-1:-1:-1;81426:98:0;;;;;:::i;:::-;;:::i;59097:528::-;;;;;;;;;;-1:-1:-1;59097:528:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;66603:86::-;;;;;;;;;;-1:-1:-1;66674:7:0;;-1:-1:-1;;;66674:7:0;;;;66603:86;;24089:152;;;;;;;;;;-1:-1:-1;24089:152:0;;;;;:::i;:::-;;:::i;81045:155::-;;;;;;;;;;-1:-1:-1;81045:155:0;;;;;:::i;:::-;;:::i;19631:233::-;;;;;;;;;;-1:-1:-1;19631:233:0;;;;;:::i;:::-;;:::i;69226:94::-;;;;;;;;;;;;;:::i;80230:387::-;;;;;;;;;;-1:-1:-1;80230:387:0;;;;;:::i;:::-;;:::i;81829:54::-;;;;;;;;;;;;;:::i;62973:900::-;;;;;;;;;;-1:-1:-1;62973:900:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;68575:87::-;;;;;;;;;;-1:-1:-1;68648:6:0;;-1:-1:-1;;;;;68648:6:0;68575:87;;79780:420;;;;;;:::i;:::-;;:::i;22872:104::-;;;;;;;;;;;;;:::i;77819:51::-;;;;;;;;;;-1:-1:-1;77819:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;60013:2513;;;;;;;;;;-1:-1:-1;60013:2513:0;;;;;:::i;:::-;;:::i;80841:100::-;;;;;;;;;;-1:-1:-1;80841:100:0;;;;;:::i;:::-;;:::i;29745:234::-;;;;;;;;;;-1:-1:-1;29745:234:0;;;;;:::i;:::-;;:::i;81530:174::-;;;;;;;;;;;;;:::i;77990:30::-;;;;;;;;;;-1:-1:-1;77990:30:0;;;;;;;;;;;36538:407;;;;;;:::i;:::-;;:::i;58510:428::-;;;;;;;;;;-1:-1:-1;58510:428:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;77623:37::-;;;;;;;;;;;;;:::i;77950:35::-;;;;;;;;;;-1:-1:-1;77950:35:0;;;;;;;;78460:345;;;;;;;;;;-1:-1:-1;78460:345:0;;;;;:::i;:::-;;:::i;81710:113::-;;;;;;;;;;;;;:::i;77701:26::-;;;;;;;;;;;;;;;;77665:31;;;;;;;;;;;;;;;;77767:47;;;;;;;;;;-1:-1:-1;77767:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;30136:164;;;;;;;;;;-1:-1:-1;30136:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30257:25:0;;;30233:4;30257:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30136:164;81206:100;;;;;;;;;;-1:-1:-1;81206:100:0;;;;;:::i;:::-;;:::i;81312:108::-;;;;;;;;;;-1:-1:-1;81312:108:0;;;;;:::i;:::-;;:::i;80649:186::-;;;;;;;;;;-1:-1:-1;80649:186:0;;;;;:::i;:::-;;:::i;69475:192::-;;;;;;;;;;-1:-1:-1;69475:192:0;;;;;:::i;:::-;;:::i;21794:639::-;21879:4;-1:-1:-1;;;;;;;;;22203:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22280:25:0;;;22203:102;:179;;;-1:-1:-1;;;;;;;;;;22357:25:0;;;22203:179;22183:199;21794:639;-1:-1:-1;;21794:639:0:o;22696:100::-;22750:13;22783:5;22776:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22696:100;:::o;29187:218::-;29263:7;29288:16;29296:7;29288;:16::i;:::-;29283:64;;29313:34;;-1:-1:-1;;;29313:34:0;;;;;;;;;;;29283:64;-1:-1:-1;29367:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;29367:30:0;;29187:218::o;28620:408::-;28709:13;28725:16;28733:7;28725;:16::i;:::-;28709:32;-1:-1:-1;52953:10:0;-1:-1:-1;;;;;28758:28:0;;;28754:175;;28806:44;28823:5;52953:10;30136:164;:::i;28806:44::-;28801:128;;28878:35;;-1:-1:-1;;;28878:35:0;;;;;;;;;;;28801:128;28941:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;28941:35:0;-1:-1:-1;;;;;28941:35:0;;;;;;;;;28992:28;;28941:24;;28992:28;;;;;;;28698:330;28620:408;;:::o;78811:301::-;2415:21;:19;:21::i;:::-;78880:10:::1;::::0;::::1;::::0;::::1;;;78876:36;;78899:13;;-1:-1:-1::0;;;78899:13:0::1;;;;;;;;;;;78876:36;78938:16;78946:7;78938;:16::i;:::-;-1:-1:-1::0;;;;;78924:30:0::1;:10;-1:-1:-1::0;;;;;78924:30:0::1;;78921:52;;78963:10;;-1:-1:-1::0;;;78963:10:0::1;;;;;;;;;;;78921:52;79016:11;::::0;-1:-1:-1;;;;;79016:11:0::1;79037:20;79043:7:::0;79016:11;79037:5:::1;:20::i;:::-;79066:40;::::0;-1:-1:-1;;;79066:40:0;;79086:10:::1;79066:40;::::0;::::1;9846:51:1::0;9913:18;;;9906:34;;;-1:-1:-1;;;;;79066:19:0;::::1;::::0;::::1;::::0;9819:18:1;;79066:40:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;78867:245;2459:20:::0;1853:1;2979:7;:22;2796:213;2459:20;78811:301;:::o;32826:2825::-;32968:27;32998;33017:7;32998:18;:27::i;:::-;32968:57;;33083:4;-1:-1:-1;;;;;33042:45:0;33058:19;-1:-1:-1;;;;;33042:45:0;;33038:86;;33096:28;;-1:-1:-1;;;33096:28:0;;;;;;;;;;;33038:86;33138:27;31934:24;;;:15;:24;;;;;32162:26;;33329:68;32162:26;33371:4;52953:10;33377:19;-1:-1:-1;;;;;31408:32:0;;;31252:28;;31537:20;;31559:30;;31534:56;;30949:659;33329:68;33324:180;;33417:43;33434:4;52953:10;30136:164;:::i;33417:43::-;33412:92;;33469:35;;-1:-1:-1;;;33469:35:0;;;;;;;;;;;33412:92;-1:-1:-1;;;;;33521:16:0;;33517:52;;33546:23;;-1:-1:-1;;;33546:23:0;;;;;;;;;;;33517:52;33718:15;33715:160;;;33858:1;33837:19;33830:30;33715:160;-1:-1:-1;;;;;34255:24:0;;;;;;;:18;:24;;;;;;34253:26;;-1:-1:-1;;34253:26:0;;;34324:22;;;;;;;;;34322:24;;-1:-1:-1;34322:24:0;;;27478:11;27453:23;27449:41;27436:63;-1:-1:-1;;;27436:63:0;34617:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;34912:47:0;;34908:627;;35017:1;35007:11;;34985:19;35140:30;;;:17;:30;;;;;;35136:384;;35278:13;;35263:11;:28;35259:242;;35425:30;;;;:17;:30;;;;;:52;;;35259:242;34966:569;34908:627;35582:7;35578:2;-1:-1:-1;;;;;35563:27:0;35572:4;-1:-1:-1;;;;;35563:27:0;-1:-1:-1;;;;;;;;;;;35563:27:0;;;;;;;;;32957:2694;;;32826:2825;;;:::o;80947:92::-;68648:6;;-1:-1:-1;;;;;68648:6:0;52953:10;68795:23;68787:68;;;;-1:-1:-1;;;68787:68:0;;;;;;;:::i;:::-;;;;;;;;;81014:8:::1;:19:::0;80947:92::o;79303:471::-;66208:19;:17;:19::i;:::-;79396:15:::1;::::0;::::1;;79392:42;;79420:14;;-1:-1:-1::0;;;79420:14:0::1;;;;;;;;;;;79392:42;79477:11;::::0;79459:10:::1;79447:23;::::0;;;:11:::1;:23;::::0;;;;;:27:::1;::::0;79473:1:::1;79447:27;:::i;:::-;:41;:71;;;-1:-1:-1::0;79509:9:0::1;::::0;79496:10:::1;::::0;79492:14:::1;::::0;:1:::1;:14;:::i;:::-;:26;79447:71;79443:96;;;79527:12;;-1:-1:-1::0;;;79527:12:0::1;;;;;;;;;;;79443:96;79573:28;::::0;-1:-1:-1;;79590:10:0::1;7354:2:1::0;7350:15;7346:53;79573:28:0::1;::::0;::::1;7334:66:1::0;79548:12:0::1;::::0;7416::1;;79573:28:0::1;;;;;;;;;;;;79563:39;;;;;;79548:54;;79616:41;79635:5;;79616:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;79642:8:0::1;::::0;;-1:-1:-1;79652:4:0;;-1:-1:-1;79616:18:0::1;:41::i;:::-;79611:68;;79666:13;;-1:-1:-1::0;;;79666:13:0::1;;;;;;;;;;;79611:68;79702:1;79688:10;;:15;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;79724:10:0::1;79712:23;::::0;;;:11:::1;:23;::::0;;;;:28;;79739:1:::1;::::0;79712:23;:28:::1;::::0;79739:1;;79712:28:::1;:::i;:::-;::::0;;;-1:-1:-1;79749:19:0::1;::::0;-1:-1:-1;79755:10:0::1;79766:1;79749:5;:19::i;:::-;79383:391;79303:471:::0;;:::o;81888:58::-;68648:6;;-1:-1:-1;;;;;68648:6:0;52953:10;68795:23;68787:68;;;;-1:-1:-1;;;68787:68:0;;;;;;;:::i;:::-;81930:10:::1;:8;:10::i;:::-;81888:58::o:0;35747:193::-;35893:39;35910:4;35916:2;35920:7;35893:39;;;;;;;;;;;;:16;:39::i;79118:179::-;79189:9;79184:108;79200:19;;;79184:108;;;79234:20;79242:8;;79251:1;79242:11;;;;;;;:::i;:::-;;;;;;;79234:7;:20::i;:::-;79277:3;;79184:108;;81426:98;68648:6;;-1:-1:-1;;;;;68648:6:0;52953:10;68795:23;68787:68;;;;-1:-1:-1;;;68787:68:0;;;;;;;:::i;:::-;81496:11:::1;:22:::0;;-1:-1:-1;;;;;;81496:22:0::1;-1:-1:-1::0;;;;;81496:22:0;;;::::1;::::0;;;::::1;::::0;;81426:98::o;59097:528::-;59241:23;59332:8;59307:22;59332:8;-1:-1:-1;;;;;59399:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59399:36:0;;-1:-1:-1;;59399:36:0;;;;;;;;;;;;59362:73;;59455:9;59450:125;59471:14;59466:1;:19;59450:125;;59527:32;59547:8;;59556:1;59547:11;;;;;;;:::i;:::-;;;;;;;59527:19;:32::i;:::-;59511:10;59522:1;59511:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;59487:3;;59450:125;;;-1:-1:-1;59596:10:0;59097:528;-1:-1:-1;;;;59097:528:0:o;24089:152::-;24161:7;24204:27;24223:7;24204:18;:27::i;81045:155::-;68648:6;;-1:-1:-1;;;;;68648:6:0;52953:10;68795:23;68787:68;;;;-1:-1:-1;;;68787:68:0;;;;;;;:::i;:::-;81131:9:::1;;81118:10;:22;81115:48;;;81149:14;;-1:-1:-1::0;;;81149:14:0::1;;;;;;;;;;;81115:48;81172:9;:22:::0;81045:155::o;19631:233::-;19703:7;-1:-1:-1;;;;;19727:19:0;;19723:60;;19755:28;;-1:-1:-1;;;19755:28:0;;;;;;;;;;;19723:60;-1:-1:-1;;;;;;19801:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;19801:55:0;;19631:233::o;69226:94::-;68648:6;;-1:-1:-1;;;;;68648:6:0;52953:10;68795:23;68787:68;;;;-1:-1:-1;;;68787:68:0;;;;;;;:::i;:::-;69291:21:::1;69309:1;69291:9;:21::i;80230:387::-:0;68648:6;;-1:-1:-1;;;;;68648:6:0;52953:10;68795:23;68787:68;;;;-1:-1:-1;;;68787:68:0;;;;;;;:::i;:::-;80342:39;;::::1;;::::0;:65:::1;;-1:-1:-1::0;80385:22:0;;80342:65:::1;80338:92;;;80416:14;;-1:-1:-1::0;;;80416:14:0::1;;;;;;;;;;;80338:92;80452:9;80447:165;80463:21:::0;;::::1;80447:165;;;80513:11;;80525:1;80513:14;;;;;;;:::i;:::-;;;;;;;80499:10;;:28;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;80538:36:0::1;::::0;-1:-1:-1;80544:10:0;;80555:1;80544:13;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;80559:11;;80571:1;80559:14;;;;;;;:::i;:::-;;;;;;;80538:5;:36::i;:::-;80597:3;;80447:165;;;;80230:387:::0;;;;:::o;81829:54::-;68648:6;;-1:-1:-1;;;;;68648:6:0;52953:10;68795:23;68787:68;;;;-1:-1:-1;;;68787:68:0;;;;;;;:::i;:::-;81869:8:::1;:6;:8::i;62973:900::-:0;63051:16;63105:19;63139:25;63179:22;63204:16;63214:5;63204:9;:16::i;:::-;63179:41;;63235:25;63277:14;-1:-1:-1;;;;;63263:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63263:29:0;;63235:57;;63307:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63307:31:0;78333:1;63353:472;63402:14;63387:11;:29;63353:472;;63454:15;63467:1;63454:12;:15::i;:::-;63442:27;;63492:9;:16;;;63488:73;;;63533:8;;63488:73;63583:14;;-1:-1:-1;;;;;63583:28:0;;63579:111;;63656:14;;;-1:-1:-1;63579:111:0;63733:5;-1:-1:-1;;;;;63712:26:0;:17;-1:-1:-1;;;;;63712:26:0;;63708:102;;;63789:1;63763:8;63772:13;;;;;;63763:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;63708:102;63418:3;;63353:472;;;-1:-1:-1;63846:8:0;;62973:900;-1:-1:-1;;;;;;62973:900:0:o;79780:420::-;66208:19;:17;:19::i;:::-;79862:15:::1;::::0;::::1;;79858:45;;;79886:17;;-1:-1:-1::0;;;79886:17:0::1;;;;;;;;;;;79858:45;79916:9;79929:10;79916:23;79912:47;;79948:11;;-1:-1:-1::0;;;79948:11:0::1;;;;;;;;;;;79912:47;80011:15;::::0;79988:10:::1;79972:27;::::0;;;:15:::1;:27;::::0;;;;;:36:::1;::::0;80002:6;;79972:36:::1;:::i;:::-;:54;:89;;;-1:-1:-1::0;80052:9:0::1;::::0;80039:10:::1;::::0;80030:19:::1;::::0;:6;:19:::1;:::i;:::-;:31;79972:89;79968:114;;;80070:12;;-1:-1:-1::0;;;80070:12:0::1;;;;;;;;;;;79968:114;80105:6;80091:10;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;80136:10:0::1;80120:27;::::0;;;:15:::1;:27;::::0;;;;:37;;80151:6;;80120:27;:37:::1;::::0;80151:6;;80120:37:::1;:::i;:::-;::::0;;;-1:-1:-1;80166:28:0::1;::::0;-1:-1:-1;80176:10:0::1;80187:6:::0;80166:9:::1;:28::i;22872:104::-:0;22928:13;22961:7;22954:14;;;;;:::i;60013:2513::-;60156:16;60223:4;60214:5;:13;60210:45;;60236:19;;-1:-1:-1;;;60236:19:0;;;;;;;;;;;60210:45;60270:19;60304:17;60324:14;18189:7;18216:13;;18134:103;60324:14;60304:34;-1:-1:-1;78333:1:0;60416:5;:23;60412:87;;;78333:1;60460:23;;60412:87;60575:9;60568:4;:16;60564:73;;;60612:9;60605:16;;60564:73;60651:25;60679:16;60689:5;60679:9;:16::i;:::-;60651:44;;60873:4;60865:5;:12;60861:278;;;60920:12;;;60955:31;;;60951:111;;;61031:11;61011:31;;60951:111;60879:198;60861:278;;;-1:-1:-1;61122:1:0;60861:278;61153:25;61195:17;-1:-1:-1;;;;;61181:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61181:32:0;-1:-1:-1;61153:60:0;-1:-1:-1;61232:22:0;61228:78;;61282:8;-1:-1:-1;61275:15:0;;-1:-1:-1;;;61275:15:0;61228:78;61450:31;61484:26;61504:5;61484:19;:26::i;:::-;61450:60;;61525:25;61770:9;:16;;;61765:92;;-1:-1:-1;61827:14:0;;61765:92;61888:5;61871:478;61900:4;61895:1;:9;;:45;;;;;61923:17;61908:11;:32;;61895:45;61871:478;;;61978:15;61991:1;61978:12;:15::i;:::-;61966:27;;62016:9;:16;;;62012:73;;;62057:8;;62012:73;62107:14;;-1:-1:-1;;;;;62107:28:0;;62103:111;;62180:14;;;-1:-1:-1;62103:111:0;62257:5;-1:-1:-1;;;;;62236:26:0;:17;-1:-1:-1;;;;;62236:26:0;;62232:102;;;62313:1;62287:8;62296:13;;;;;;62287:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;62232:102;61942:3;;61871:478;;;-1:-1:-1;;;62434:29:0;;;-1:-1:-1;62441:8:0;;-1:-1:-1;;60013:2513:0;;;;;;:::o;80841:100::-;68648:6;;-1:-1:-1;;;;;68648:6:0;52953:10;68795:23;68787:68;;;;-1:-1:-1;;;68787:68:0;;;;;;;:::i;:::-;80914:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;80841:100:::0;:::o;29745:234::-;52953:10;29840:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;29840:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;29840:60:0;;;;;;;;;;29916:55;;11455:41:1;;;29840:49:0;;52953:10;29916:55;;11428:18:1;29916:55:0;;;;;;;29745:234;;:::o;81530:174::-;68648:6;;-1:-1:-1;;;;;68648:6:0;52953:10;68795:23;68787:68;;;;-1:-1:-1;;;68787:68:0;;;;;;;:::i;:::-;81586:15:::1;::::0;::::1;;81583:116;;;81615:15;:23:::0;;-1:-1:-1;;81615:23:0::1;::::0;;81888:58::o;81583:116::-:1;81667:15;:22:::0;;-1:-1:-1;;81667:22:0::1;81685:4;81667:22;::::0;;81530:174::o;36538:407::-;36713:31;36726:4;36732:2;36736:7;36713:12;:31::i;:::-;-1:-1:-1;;;;;36759:14:0;;;:19;36755:183;;36798:56;36829:4;36835:2;36839:7;36848:5;36798:30;:56::i;:::-;36793:145;;36882:40;;-1:-1:-1;;;36882:40:0;;;;;;;;;;;36793:145;36538:407;;;;:::o;58510:428::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78333:1:0;58674:7;:25;:54;;;-1:-1:-1;18189:7:0;18216:13;58703:7;:25;;58674:54;58670:103;;;58752:9;58510:428;-1:-1:-1;;58510:428:0:o;58670:103::-;58795:21;58808:7;58795:12;:21::i;:::-;58783:33;;58831:9;:16;;;58827:65;;;58871:9;58510:428;-1:-1:-1;;58510:428:0:o;58827:65::-;58909:21;58922:7;58909:12;:21::i;77623:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;78460:345::-;78533:13;78563:16;78571:7;78563;:16::i;:::-;78558:46;;78588:16;;-1:-1:-1;;;78588:16:0;;;;;;;;;;;78558:46;78611:28;78642:10;:8;:10::i;:::-;78611:41;;78697:1;78672:14;78666:28;:32;:133;;;;;;;;;;;;;;;;;78734:14;78750:18;:7;:16;:18::i;:::-;78770:13;78717:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78659:140;78460:345;-1:-1:-1;;;78460:345:0:o;81710:113::-;68648:6;;-1:-1:-1;;;;;68648:6:0;52953:10;68795:23;68787:68;;;;-1:-1:-1;;;68787:68:0;;;;;;;:::i;:::-;81767:10:::1;::::0;::::1;::::0;::::1;;;81763:55;;81791:10;:17:::0;;-1:-1:-1;;81791:17:0::1;;;::::0;;81710:113::o;81206:100::-;68648:6;;-1:-1:-1;;;;;68648:6:0;52953:10;68795:23;68787:68;;;;-1:-1:-1;;;68787:68:0;;;;;;;:::i;:::-;81277:11:::1;:23:::0;81206:100::o;81312:108::-;68648:6;;-1:-1:-1;;;;;68648:6:0;52953:10;68795:23;68787:68;;;;-1:-1:-1;;;68787:68:0;;;;;;;:::i;:::-;81387:15:::1;:27:::0;81312:108::o;80649:186::-;68648:6;;-1:-1:-1;;;;;68648:6:0;52953:10;68795:23;68787:68;;;;-1:-1:-1;;;68787:68:0;;;;;;;:::i;:::-;80737:9:::1;::::0;80724:10:::1;::::0;80715:19:::1;::::0;:6;:19:::1;:::i;:::-;:31;80712:55;;;80755:12;;-1:-1:-1::0;;;80755:12:0::1;;;;;;;;;;;80712:55;80790:6;80776:10;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;80805:24:0::1;::::0;-1:-1:-1;80811:10:0::1;80822:6:::0;80805:5:::1;:24::i;69475:192::-:0;68648:6;;-1:-1:-1;;;;;68648:6:0;52953:10;68795:23;68787:68;;;;-1:-1:-1;;;68787:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;69564:22:0;::::1;69556:73;;;::::0;-1:-1:-1;;;69556:73:0;;12282:2:1;69556:73:0::1;::::0;::::1;12264:21:1::0;12321:2;12301:18;;;12294:30;12360:34;12340:18;;;12333:62;-1:-1:-1;;;12411:18:1;;;12404:36;12457:19;;69556:73:0::1;12080:402:1::0;69556:73:0::1;69640:19;69650:8;69640:9;:19::i;30558:282::-:0;30623:4;30679:7;78333:1;30660:26;;:66;;;;;30713:13;;30703:7;:23;30660:66;:153;;;;-1:-1:-1;;30764:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;30764:44:0;:49;;30558:282::o;2495:293::-;1897:1;2629:7;;:19;;2621:63;;;;-1:-1:-1;;;2621:63:0;;13395:2:1;2621:63:0;;;13377:21:1;13434:2;13414:18;;;13407:30;13473:33;13453:18;;;13446:61;13524:18;;2621:63:0;13193:355:1;2621:63:0;1897:1;2762:7;:18;2495:293::o;47395:3081::-;47475:27;47505;47524:7;47505:18;:27::i;:::-;47475:57;-1:-1:-1;47475:57:0;47545:12;;47667:35;47694:7;31823:27;31934:24;;;:15;:24;;;;;32162:26;;31934:24;;31721:485;47667:35;47610:92;;;;47719:13;47715:316;;;47840:68;47865:15;47882:4;52953:10;47888:19;52866:105;47840:68;47835:184;;47932:43;47949:4;52953:10;30136:164;:::i;47932:43::-;47927:92;;47984:35;;-1:-1:-1;;;47984:35:0;;;;;;;;;;;47927:92;48187:15;48184:160;;;48327:1;48306:19;48299:30;48184:160;-1:-1:-1;;;;;48946:24:0;;;;;;:18;:24;;;;;:60;;48974:32;48946:60;;;27478:11;27453:23;27449:41;27436:63;-1:-1:-1;;;27436:63:0;49244:26;;;;:17;:26;;;;;:205;-1:-1:-1;;;49569:47:0;;49565:627;;49674:1;49664:11;;49642:19;49797:30;;;:17;:30;;;;;;49793:384;;49935:13;;49920:11;:28;49916:242;;50082:30;;;;:17;:30;;;;;:52;;;49916:242;49623:569;49565:627;50220:35;;50247:7;;50243:1;;-1:-1:-1;;;;;50220:35:0;;;-1:-1:-1;;;;;;;;;;;50220:35:0;50243:1;;50220:35;-1:-1:-1;;50443:12:0;:14;;;;;;-1:-1:-1;;;;47395:3081:0:o;25244:1275::-;25311:7;25346;;78333:1;25395:23;25391:1061;;25448:13;;25441:4;:20;25437:1015;;;25486:14;25503:23;;;:17;:23;;;;;;-1:-1:-1;;;25592:24:0;;25588:845;;26257:113;26264:11;26257:113;;-1:-1:-1;;;26335:6:0;26317:25;;;;:17;:25;;;;;;26257:113;;25588:845;25463:989;25437:1015;26480:31;;-1:-1:-1;;;26480:31:0;;;;;;;;;;;66762:108;66674:7;;-1:-1:-1;;;66674:7:0;;;;66832:9;66824:38;;;;-1:-1:-1;;;66824:38:0;;12689:2:1;66824:38:0;;;12671:21:1;12728:2;12708:18;;;12701:30;-1:-1:-1;;;12747:18:1;;;12740:46;12803:18;;66824:38:0;12487:340:1;70918:190:0;71043:4;71096;71067:25;71080:5;71087:4;71067:12;:25::i;:::-;:33;;70918:190;-1:-1:-1;;;;70918:190:0:o;40207:2966::-;40280:20;40303:13;40331;40327:44;;40353:18;;-1:-1:-1;;;40353:18:0;;;;;;;;;;;40327:44;-1:-1:-1;;;;;40859:22:0;;;;;;:18;:22;;;;13928:2;40859:22;;;:71;;40897:32;40885:45;;40859:71;;;41173:31;;;:17;:31;;;;;-1:-1:-1;27909:15:0;;27883:24;27879:46;27478:11;27453:23;27449:41;27446:52;27436:63;;41173:173;;41408:23;;;;41173:31;;40859:22;;-1:-1:-1;;;;;;;;;;;40859:22:0;;42026:335;42687:1;42673:12;42669:20;42627:346;42728:3;42719:7;42716:16;42627:346;;42946:7;42936:8;42933:1;-1:-1:-1;;;;;;;;;;;42903:1:0;42900;42895:59;42781:1;42768:15;42627:346;;;-1:-1:-1;43006:13:0;43002:45;;43028:19;;-1:-1:-1;;;43028:19:0;;;;;;;;;;;43002:45;43064:13;:19;-1:-1:-1;79383:391:0::1;79303:471:::0;;:::o;67458:120::-;66467:16;:14;:16::i;:::-;67517:7:::1;:15:::0;;-1:-1:-1;;;;67517:15:0::1;::::0;;67548:22:::1;52953:10:::0;67557:12:::1;67548:22;::::0;-1:-1:-1;;;;;9135:32:1;;;9117:51;;9105:2;9090:18;67548:22:0::1;;;;;;;67458:120::o:0;69675:173::-;69750:6;;;-1:-1:-1;;;;;69767:17:0;;;-1:-1:-1;;;;;;69767:17:0;;;;;;;69800:40;;69750:6;;;69767:17;69750:6;;69800:40;;69731:16;;69800:40;69720:128;69675:173;:::o;67199:118::-;66208:19;:17;:19::i;:::-;67259:7:::1;:14:::0;;-1:-1:-1;;;;67259:14:0::1;-1:-1:-1::0;;;67259:14:0::1;::::0;;67289:20:::1;67296:12;52953:10:::0;;52866:105;24692:161;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24820:24:0;;;;:17;:24;;;;;;24801:44;;:18;:44::i;46698:112::-;46775:27;46785:2;46789:8;46775:27;;;;;;;;;;;;:9;:27::i;39029:716::-;39213:88;;-1:-1:-1;;;39213:88:0;;39192:4;;-1:-1:-1;;;;;39213:45:0;;;;;:88;;52953:10;;39280:4;;39286:7;;39295:5;;39213:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39213:88:0;;;;;;;;-1:-1:-1;;39213:88:0;;;;;;;;;;;;:::i;:::-;;;39209:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39496:13:0;;39492:235;;39542:40;;-1:-1:-1;;;39542:40:0;;;;;;;;;;;39492:235;39685:6;39679:13;39670:6;39666:2;39662:15;39655:38;39209:529;-1:-1:-1;;;;;;39372:64:0;-1:-1:-1;;;39372:64:0;;-1:-1:-1;39209:529:0;39029:716;;;;;;:::o;24430:166::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24541:47:0;24560:27;24579:7;24560:18;:27::i;:::-;24541:18;:47::i;78346:108::-;78406:13;78439:7;78432:14;;;;;:::i;75306:723::-;75362:13;75583:10;75579:53;;-1:-1:-1;;75610:10:0;;;;;;;;;;;;-1:-1:-1;;;75610:10:0;;;;;75306:723::o;75579:53::-;75657:5;75642:12;75698:78;75705:9;;75698:78;;75731:8;;;;:::i;:::-;;-1:-1:-1;75754:10:0;;-1:-1:-1;75762:2:0;75754:10;;:::i;:::-;;;75698:78;;;75786:19;75818:6;-1:-1:-1;;;;;75808:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;75808:17:0;;75786:39;;75836:154;75843:10;;75836:154;;75870:11;75880:1;75870:11;;:::i;:::-;;-1:-1:-1;75939:10:0;75947:2;75939:5;:10;:::i;:::-;75926:24;;:2;:24;:::i;:::-;75913:39;;75896:6;75903;75896:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;75896:56:0;;;;;;;;-1:-1:-1;75967:11:0;75976:2;75967:11;;:::i;:::-;;;75836:154;;71469:296;71552:7;71595:4;71552:7;71610:118;71634:5;:12;71630:1;:16;71610:118;;;71683:33;71693:12;71707:5;71713:1;71707:8;;;;;;;;:::i;:::-;;;;;;;71683:9;:33::i;:::-;71668:48;-1:-1:-1;71648:3:0;;;;:::i;:::-;;;;71610:118;;;-1:-1:-1;71745:12:0;71469:296;-1:-1:-1;;;71469:296:0:o;66947:108::-;66674:7;;-1:-1:-1;;;66674:7:0;;;;67006:41;;;;-1:-1:-1;;;67006:41:0;;11933:2:1;67006:41:0;;;11915:21:1;11972:2;11952:18;;;11945:30;-1:-1:-1;;;11991:18:1;;;11984:50;12051:18;;67006:41:0;11731:344:1;26618:366:0;-1:-1:-1;;;;;;;;;;;;;26728:41:0;;;;14449:3;26814:33;;;-1:-1:-1;;;;;26780:68:0;-1:-1:-1;;;26780:68:0;-1:-1:-1;;;26878:24:0;;:29;;-1:-1:-1;;;26859:48:0;;;;14970:3;26947:28;;;;-1:-1:-1;;;26918:58:0;-1:-1:-1;26618:366:0:o;45925:689::-;46056:19;46062:2;46066:8;46056:5;:19::i;:::-;-1:-1:-1;;;;;46117:14:0;;;:19;46113:483;;46157:11;46171:13;46219:14;;;46252:233;46283:62;46322:1;46326:2;46330:7;;;;;;46339:5;46283:30;:62::i;:::-;46278:167;;46381:40;;-1:-1:-1;;;46381:40:0;;;;;;;;;;;46278:167;46480:3;46472:5;:11;46252:233;;46567:3;46550:13;;:20;46546:34;;46572:8;;;74648:149;74711:7;74742:1;74738;:5;:51;;74873:13;74967:15;;;75003:4;74996:15;;;75050:4;75034:21;;74738:51;;;-1:-1:-1;74873:13:0;74967:15;;;75003:4;74996:15;75050:4;75034:21;;;74648:149::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;-1:-1:-1;;;;;1028:30:1;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:186::-;1259:6;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1351:29;1370:9;1351:29;:::i;1391:260::-;1459:6;1467;1520:2;1508:9;1499:7;1495:23;1491:32;1488:52;;;1536:1;1533;1526:12;1488:52;1559:29;1578:9;1559:29;:::i;:::-;1549:39;;1607:38;1641:2;1630:9;1626:18;1607:38;:::i;:::-;1597:48;;1391:260;;;;;:::o;1656:328::-;1733:6;1741;1749;1802:2;1790:9;1781:7;1777:23;1773:32;1770:52;;;1818:1;1815;1808:12;1770:52;1841:29;1860:9;1841:29;:::i;:::-;1831:39;;1889:38;1923:2;1912:9;1908:18;1889:38;:::i;:::-;1879:48;;1974:2;1963:9;1959:18;1946:32;1936:42;;1656:328;;;;;:::o;1989:666::-;2084:6;2092;2100;2108;2161:3;2149:9;2140:7;2136:23;2132:33;2129:53;;;2178:1;2175;2168:12;2129:53;2201:29;2220:9;2201:29;:::i;:::-;2191:39;;2249:38;2283:2;2272:9;2268:18;2249:38;:::i;:::-;2239:48;;2334:2;2323:9;2319:18;2306:32;2296:42;;2389:2;2378:9;2374:18;2361:32;-1:-1:-1;;;;;2408:6:1;2405:30;2402:50;;;2448:1;2445;2438:12;2402:50;2471:22;;2524:4;2516:13;;2512:27;-1:-1:-1;2502:55:1;;2553:1;2550;2543:12;2502:55;2576:73;2641:7;2636:2;2623:16;2618:2;2614;2610:11;2576:73;:::i;:::-;2566:83;;;1989:666;;;;;;;:::o;2660:347::-;2725:6;2733;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2825:29;2844:9;2825:29;:::i;:::-;2815:39;;2904:2;2893:9;2889:18;2876:32;2951:5;2944:13;2937:21;2930:5;2927:32;2917:60;;2973:1;2970;2963:12;2917:60;2996:5;2986:15;;;2660:347;;;;;:::o;3012:254::-;3080:6;3088;3141:2;3129:9;3120:7;3116:23;3112:32;3109:52;;;3157:1;3154;3147:12;3109:52;3180:29;3199:9;3180:29;:::i;:::-;3170:39;3256:2;3241:18;;;;3228:32;;-1:-1:-1;;;3012:254:1:o;3271:322::-;3348:6;3356;3364;3417:2;3405:9;3396:7;3392:23;3388:32;3385:52;;;3433:1;3430;3423:12;3385:52;3456:29;3475:9;3456:29;:::i;:::-;3446:39;3532:2;3517:18;;3504:32;;-1:-1:-1;3583:2:1;3568:18;;;3555:32;;3271:322;-1:-1:-1;;;3271:322:1:o;3598:773::-;3720:6;3728;3736;3744;3797:2;3785:9;3776:7;3772:23;3768:32;3765:52;;;3813:1;3810;3803:12;3765:52;3853:9;3840:23;-1:-1:-1;;;;;3923:2:1;3915:6;3912:14;3909:34;;;3939:1;3936;3929:12;3909:34;3978:70;4040:7;4031:6;4020:9;4016:22;3978:70;:::i;:::-;4067:8;;-1:-1:-1;3952:96:1;-1:-1:-1;4155:2:1;4140:18;;4127:32;;-1:-1:-1;4171:16:1;;;4168:36;;;4200:1;4197;4190:12;4168:36;;4239:72;4303:7;4292:8;4281:9;4277:24;4239:72;:::i;:::-;3598:773;;;;-1:-1:-1;4330:8:1;-1:-1:-1;;;;3598:773:1:o;4376:437::-;4462:6;4470;4523:2;4511:9;4502:7;4498:23;4494:32;4491:52;;;4539:1;4536;4529:12;4491:52;4579:9;4566:23;-1:-1:-1;;;;;4604:6:1;4601:30;4598:50;;;4644:1;4641;4634:12;4598:50;4683:70;4745:7;4736:6;4725:9;4721:22;4683:70;:::i;:::-;4772:8;;4657:96;;-1:-1:-1;4376:437:1;-1:-1:-1;;;;4376:437:1:o;5260:180::-;5319:6;5372:2;5360:9;5351:7;5347:23;5343:32;5340:52;;;5388:1;5385;5378:12;5340:52;-1:-1:-1;5411:23:1;;5260:180;-1:-1:-1;5260:180:1:o;5445:245::-;5503:6;5556:2;5544:9;5535:7;5531:23;5527:32;5524:52;;;5572:1;5569;5562:12;5524:52;5611:9;5598:23;5630:30;5654:5;5630:30;:::i;5695:249::-;5764:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:52;;;5833:1;5830;5823:12;5785:52;5865:9;5859:16;5884:30;5908:5;5884:30;:::i;5949:450::-;6018:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:52;;;6087:1;6084;6077:12;6039:52;6127:9;6114:23;-1:-1:-1;;;;;6152:6:1;6149:30;6146:50;;;6192:1;6189;6182:12;6146:50;6215:22;;6268:4;6260:13;;6256:27;-1:-1:-1;6246:55:1;;6297:1;6294;6287:12;6246:55;6320:73;6385:7;6380:2;6367:16;6362:2;6358;6354:11;6320:73;:::i;6589:257::-;6630:3;6668:5;6662:12;6695:6;6690:3;6683:19;6711:63;6767:6;6760:4;6755:3;6751:14;6744:4;6737:5;6733:16;6711:63;:::i;:::-;6828:2;6807:15;-1:-1:-1;;6803:29:1;6794:39;;;;6835:4;6790:50;;6589:257;-1:-1:-1;;6589:257:1:o;6851:349::-;6935:12;;-1:-1:-1;;;;;6931:38:1;6919:51;;7023:4;7012:16;;;7006:23;-1:-1:-1;;;;;7002:48:1;6986:14;;;6979:72;7114:4;7103:16;;;7097:23;7090:31;7083:39;7067:14;;;7060:63;7176:4;7165:16;;;7159:23;7184:8;7155:38;7139:14;;7132:62;6851:349::o;7439:1527::-;7663:3;7701:6;7695:13;7727:4;7740:51;7784:6;7779:3;7774:2;7766:6;7762:15;7740:51;:::i;:::-;7854:13;;7813:16;;;;7876:55;7854:13;7813:16;7898:15;;;7876:55;:::i;:::-;8020:13;;7953:20;;;7993:1;;8080;8102:18;;;;8155;;;;8182:93;;8260:4;8250:8;8246:19;8234:31;;8182:93;8323:2;8313:8;8310:16;8290:18;8287:40;8284:167;;;-1:-1:-1;;;8350:33:1;;8406:4;8403:1;8396:15;8436:4;8357:3;8424:17;8284:167;8467:18;8494:110;;;;8618:1;8613:328;;;;8460:481;;8494:110;-1:-1:-1;;8529:24:1;;8515:39;;8574:20;;;;-1:-1:-1;8494:110:1;;8613:328;14079:1;14072:14;;;14116:4;14103:18;;8708:1;8722:169;8736:8;8733:1;8730:15;8722:169;;;8818:14;;8803:13;;;8796:37;8861:16;;;;8753:10;;8722:169;;;8726:3;;8922:8;8915:5;8911:20;8904:27;;8460:481;-1:-1:-1;8957:3:1;;7439:1527;-1:-1:-1;;;;;;;;;;;7439:1527:1:o;9179:488::-;-1:-1:-1;;;;;9448:15:1;;;9430:34;;9500:15;;9495:2;9480:18;;9473:43;9547:2;9532:18;;9525:34;;;9595:3;9590:2;9575:18;;9568:31;;;9373:4;;9616:45;;9641:19;;9633:6;9616:45;:::i;:::-;9608:53;9179:488;-1:-1:-1;;;;;;9179:488:1:o;9951:722::-;10184:2;10236:21;;;10306:13;;10209:18;;;10328:22;;;10155:4;;10184:2;10407:15;;;;10381:2;10366:18;;;10155:4;10450:197;10464:6;10461:1;10458:13;10450:197;;;10513:52;10561:3;10552:6;10546:13;10513:52;:::i;:::-;10622:15;;;;10594:4;10585:14;;;;;10486:1;10479:9;10450:197;;10678:632;10849:2;10901:21;;;10971:13;;10874:18;;;10993:22;;;10820:4;;10849:2;11072:15;;;;11046:2;11031:18;;;10820:4;11115:169;11129:6;11126:1;11123:13;11115:169;;;11190:13;;11178:26;;11259:15;;;;11224:12;;;;11151:1;11144:9;11115:169;;11507:219;11656:2;11645:9;11638:21;11619:4;11676:44;11716:2;11705:9;11701:18;11693:6;11676:44;:::i;12832:356::-;13034:2;13016:21;;;13053:18;;;13046:30;13112:34;13107:2;13092:18;;13085:62;13179:2;13164:18;;12832:356::o;13553:266::-;13749:3;13734:19;;13762:51;13738:9;13795:6;13762:51;:::i;14132:128::-;14172:3;14203:1;14199:6;14196:1;14193:13;14190:39;;;14209:18;;:::i;:::-;-1:-1:-1;14245:9:1;;14132:128::o;14265:120::-;14305:1;14331;14321:35;;14336:18;;:::i;:::-;-1:-1:-1;14370:9:1;;14265:120::o;14390:125::-;14430:4;14458:1;14455;14452:8;14449:34;;;14463:18;;:::i;:::-;-1:-1:-1;14500:9:1;;14390:125::o;14520:258::-;14592:1;14602:113;14616:6;14613:1;14610:13;14602:113;;;14692:11;;;14686:18;14673:11;;;14666:39;14638:2;14631:10;14602:113;;;14733:6;14730:1;14727:13;14724:48;;;-1:-1:-1;;14768:1:1;14750:16;;14743:27;14520:258::o;14783:380::-;14862:1;14858:12;;;;14905;;;14926:61;;14980:4;14972:6;14968:17;14958:27;;14926:61;15033:2;15025:6;15022:14;15002:18;14999:38;14996:161;;;15079:10;15074:3;15070:20;15067:1;15060:31;15114:4;15111:1;15104:15;15142:4;15139:1;15132:15;14996:161;;14783:380;;;:::o;15168:135::-;15207:3;-1:-1:-1;;15228:17:1;;15225:43;;;15248:18;;:::i;:::-;-1:-1:-1;15295:1:1;15284:13;;15168:135::o;15308:112::-;15340:1;15366;15356:35;;15371:18;;:::i;:::-;-1:-1:-1;15405:9:1;;15308:112::o;15425:127::-;15486:10;15481:3;15477:20;15474:1;15467:31;15517:4;15514:1;15507:15;15541:4;15538:1;15531:15;15557:127;15618:10;15613:3;15609:20;15606:1;15599:31;15649:4;15646:1;15639:15;15673:4;15670:1;15663:15;15689:127;15750:10;15745:3;15741:20;15738:1;15731:31;15781:4;15778:1;15771:15;15805:4;15802:1;15795:15;15821:127;15882:10;15877:3;15873:20;15870:1;15863:31;15913:4;15910:1;15903:15;15937:4;15934:1;15927:15;15953:131;-1:-1:-1;;;;;;16027:32:1;;16017:43;;16007:71;;16074:1;16071;16064:12

Swarm Source

ipfs://9dbfc8bfd7ac8337c63a12ff47fc187c793538a20476c3e86d1586f5da92e57c
Loading...
Loading
Loading...
Loading
[ 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.