ETH Price: $2,302.88 (+0.90%)

Token

Focus Bloc - Genesis Pass (FCGP)
 

Overview

Max Total Supply

92 FCGP

Holders

80

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FCGP
0x49BB5e19F3FFb6e166c6eBb988d3a7E0AaDbFe04
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:
FocusBlocGenesis

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-19
*/

// File: OperatorFilterer.sol


pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION =
        0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY =
        0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(
        address subscriptionOrRegistrantToCopy,
        bool subscribe
    ) internal virtual {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(
                96,
                shl(96, subscriptionOrRegistrantToCopy)
            )

            for {

            } iszero(subscribe) {

            } {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(
                call(
                    gas(),
                    _OPERATOR_FILTER_REGISTRY,
                    0,
                    0x00,
                    0x44,
                    0x00,
                    0x04
                )
            ) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(
                staticcall(
                    gas(),
                    _OPERATOR_FILTER_REGISTRY,
                    0x16,
                    0x44,
                    0x00,
                    0x00
                )
            ) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external payable;

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

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

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

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

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

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

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

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

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

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

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

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

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

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

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

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

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

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

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;


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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: FocusBlocGenesis.sol

//SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.13;

/*
		______ ____   _____ _    _  _____   ____  _      ____   _____ 
		|  ____/ __ \ / ____| |  | |/ ____| |  _ \| |    / __ \ / ____
		| |__ | |  | | |    | |  | | (___   | |_) | |   | |  | | |    
		|  __|| |  | | |    | |  | |\___ \  |  _ <| |   | |  | | |    
		| |   | |__| | |____| |__| |____) | | |_) | |___| |__| | |____
		|_|    \____/ \_____|\____/|_____/  |____/|______\____/ \_____
		
		
									  /\
									 |==|
									 ====
									  XX
									 xXXx
									 XXXX
									 XXXX
									 XXXX
									xXXXXx
									XXXXXX
									XXXXXX
								   xXXXXXXx
								   XXXXXXXX
								  xXXXXXXXXx
								  XXXXXXXXXX
								 XXXXX  XXXXX
								xXXXX"  "XXXXx
							   XXXXXxxxxxxXXXXX
							 xXXXXX""""""""XXXXXx
						   xXXXXXX"        "XXXXXXx
						xxXXXXXXX            XXXXXXXxx                                                                                                                                    
*/







contract FocusBlocGenesis is Ownable, ERC721A, OperatorFilterer, ERC2981 {
    using Strings for uint256;
    bool public operatorFilteringEnabled;

    string _baseTokenURI;
    uint256 public cost = 0.25 ether;
    uint256 public maxSupply = 120;
    uint256 public freeTokensLimit = 30;
    address public focusBlocNFT;
    mapping(uint256 => bool) public claimed;
    //royalties amount
    uint96 public royalties = 1000; // 10%

    constructor(string memory baseURI, address _focusBlocNFT)
        ERC721A("Focus Bloc - Genesis Pass", "FCGP")
    {
        _baseTokenURI = baseURI;
        focusBlocNFT = _focusBlocNFT;

        _registerForOperatorFiltering();
        operatorFilteringEnabled = true;

        // Set royalty receiver to the contract creator,
        // at 10% (default denominator is 10000).
        _setDefaultRoyalty(msg.sender, 1000);
    }

    modifier onlyNFTHolder() {
        require(
            ERC721A(focusBlocNFT).balanceOf(msg.sender) > 0,
            "You don't own any Focus Bloc NFT"
        );
        _;
    }

    /**
     * @dev Returns the first token id.
     */
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    /**
     * @dev set Paris Match NFT address
     */
    function setFocusBlocNFT(address _focusBlocNFT) external onlyOwner {
        focusBlocNFT = _focusBlocNFT;
    }

    /**
     * @dev change cost
     */
    function setCost(uint256 _cost) external onlyOwner {
        cost = _cost;
    }

    /**
     * @dev update free tokens limit
     * @param _limit new limit
     */
    function setFreeTokensLimit(uint256 _limit) external onlyOwner {
        freeTokensLimit = _limit;
    }

    /**
     * @dev _baseURI overides the Openzeppelin's ERC721 implementation which by default
     * returned an empty string for the baseURI
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    /**
     * @dev set base URI
     * @param _uri new base URI
     */
    function setBaseURI(string memory _uri) external onlyOwner {
        _baseTokenURI = _uri;
    }

    /**
     * @dev mint allows an user to mint.
     */
    function mint(uint256 _tokenId) external payable onlyNFTHolder {
        require(
            ERC721A(focusBlocNFT).ownerOf(_tokenId) == msg.sender,
            "Token not owned"
        );
        require(!claimed[_tokenId], "Token already claimed");
        require(_totalMinted() + 1 <= maxSupply, "Exceed maximum supply");
        require(msg.value == getCost(_tokenId), "Insufficient funds");
        claimed[_tokenId] = true;
        _mint(msg.sender, 1);
    }

    /**
     * @dev Get token URI
     * @param tokenId ID of the token to retrieve
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();

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

    /**
     * @dev withdraw ETH from contract
     */
    function withdraw() public onlyOwner {
        uint256 amount = address(this).balance;
        (bool sent, ) = payable(owner()).call{value: amount}("");
        require(sent, "Failed to send Ether");
    }

    /**
     * @dev withdraw ERC20 from contract
     * @param _erc20Address address of the ERC20 token to withdraw
     */
    function withdrawERC20(address _erc20Address) public onlyOwner {
        IERC20 token = IERC20(_erc20Address);
        uint256 balance = token.balanceOf(address(this));
        // Send the specified amount of the ERC20 token to the contract owner
        token.transfer(msg.sender, balance);
    }

    /**
     * @dev get cost
     */
    function getCost(uint256 _tokenId) public view returns (uint256) {
        if (_tokenId > freeTokensLimit) return cost;
        else return 0;
    }

    function setApprovalForAll(address operator, bool approved)
        public
        override(ERC721A)
        onlyAllowedOperatorApproval(operator)
    {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId)
        public
        payable
        override(ERC721A)
        onlyAllowedOperatorApproval(operator)
    {
        super.approve(operator, tokenId);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override(ERC721A) onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override(ERC721A) onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public payable override(ERC721A) onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, ERC2981)
        returns (bool)
    {
        // Supports the following `interfaceId`s:
        // - IERC165: 0x01ffc9a7
        // - IERC721: 0x80ac58cd
        // - IERC721Metadata: 0x5b5e139f
        // - IERC2981: 0x2a55205a
        return
            ERC721A.supportsInterface(interfaceId) ||
            ERC2981.supportsInterface(interfaceId);
    }

    function setDefaultRoyalty(address receiver, uint96 feeNumerator)
        public
        onlyOwner
    {
        _setDefaultRoyalty(receiver, feeNumerator);
    }

    function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function _operatorFilteringEnabled() internal view override returns (bool) {
        return operatorFilteringEnabled;
    }

    function _isPriorityOperator(address operator)
        internal
        pure
        override
        returns (bool)
    {
        // OpenSea Seaport Conduit:
        // https://etherscan.io/address/0x1E0049783F008A0085193E00003D00cd54003c71
        // https://goerli.etherscan.io/address/0x1E0049783F008A0085193E00003D00cd54003c71
        return operator == address(0x1E0049783F008A0085193E00003D00cd54003c71);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address","name":"_focusBlocNFT","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"operator","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"focusBlocNFT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeTokensLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royalties","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_focusBlocNFT","type":"address"}],"name":"setFocusBlocNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeTokensLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20Address","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526703782dace9d90000600d556078600e55601e600f556103e8601260006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055503480156200005a57600080fd5b506040516200456a3803806200456a8339818101604052810190620000809190620007ce565b6040518060400160405280601981526020017f466f63757320426c6f63202d2047656e657369732050617373000000000000008152506040518060400160405280600481526020017f46434750000000000000000000000000000000000000000000000000000000008152506200010c62000100620001f760201b60201c565b620001ff60201b60201c565b8160039080519060200190620001249291906200051c565b5080600490805190602001906200013d9291906200051c565b506200014e620002c360201b60201c565b600181905550505081600c90805190602001906200016e9291906200051c565b5080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001c0620002cc60201b60201c565b6001600b60006101000a81548160ff021916908315150217905550620001ef336103e8620002f560201b60201c565b5050620009b3565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b620002f3733cc6cdda760b79bafa08df41ecfa224f810dceb660016200049860201b60201c565b565b620003056200051260201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000366576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035d90620008bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003cf906200092d565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b637d3e3dbe8260601b60601c925081620004c75782620004bf57634420e4869050620004c7565b63a0af290390505b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af162000508578060005160e01c036200050757600080fd5b5b6000602452505050565b6000612710905090565b8280546200052a906200097e565b90600052602060002090601f0160209004810192826200054e57600085556200059a565b82601f106200056957805160ff19168380011785556200059a565b828001600101855582156200059a579182015b82811115620005995782518255916020019190600101906200057c565b5b509050620005a99190620005ad565b5090565b5b80821115620005c8576000816000905550600101620005ae565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200063582620005ea565b810181811067ffffffffffffffff82111715620006575762000656620005fb565b5b80604052505050565b60006200066c620005cc565b90506200067a82826200062a565b919050565b600067ffffffffffffffff8211156200069d576200069c620005fb565b5b620006a882620005ea565b9050602081019050919050565b60005b83811015620006d5578082015181840152602081019050620006b8565b83811115620006e5576000848401525b50505050565b600062000702620006fc846200067f565b62000660565b905082815260208101848484011115620007215762000720620005e5565b5b6200072e848285620006b5565b509392505050565b600082601f8301126200074e576200074d620005e0565b5b815162000760848260208601620006eb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007968262000769565b9050919050565b620007a88162000789565b8114620007b457600080fd5b50565b600081519050620007c8816200079d565b92915050565b60008060408385031215620007e857620007e7620005d6565b5b600083015167ffffffffffffffff811115620008095762000808620005db565b5b620008178582860162000736565b92505060206200082a85828601620007b7565b9150509250929050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000620008a3602a8362000834565b9150620008b08262000845565b604082019050919050565b60006020820190508181036000830152620008d68162000894565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006200091560198362000834565b91506200092282620008dd565b602082019050919050565b60006020820190508181036000830152620009488162000906565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200099757607f821691505b602082108103620009ad57620009ac6200094f565b5b50919050565b613ba780620009c36000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063cbad334b116100a0578063f053dc5c1161006f578063f053dc5c14610735578063f2fde38b14610760578063f4f3b20014610789578063f6a79464146107b2578063fb796e6c146107dd57610204565b8063cbad334b14610667578063d5abeb0114610690578063dbe7e3bd146106bb578063e985e9c5146106f857610204565b8063a0712d68116100e7578063a0712d68146105a0578063a22cb465146105bc578063b7c0b8e8146105e5578063b88d4fde1461060e578063c87b56dd1461062a57610204565b8063715018a61461050857806376e3911c1461051f5780638da5cb5b1461054a57806395d89b411461057557610204565b80632a55205a1161019b5780634cec82821161016a5780634cec8282146103ff57806355f804b3146104285780635a4dd47d146104515780636352211e1461048e57806370a08231146104cb57610204565b80632a55205a146103655780633ccfd60b146103a357806342842e0e146103ba57806344a0d68a146103d657610204565b8063095ea7b3116101d7578063095ea7b3146102d757806313faede6146102f357806318160ddd1461031e57806323b872dd1461034957610204565b806301ffc9a71461020957806304634d8d1461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612ab7565b610808565b60405161023d9190612aff565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612bbc565b61082a565b005b34801561027b57600080fd5b50610284610840565b6040516102919190612c95565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612ced565b6108d2565b6040516102ce9190612d29565b60405180910390f35b6102f160048036038101906102ec9190612d44565b610951565b005b3480156102ff57600080fd5b50610308610986565b6040516103159190612d93565b60405180910390f35b34801561032a57600080fd5b5061033361098c565b6040516103409190612d93565b60405180910390f35b610363600480360381019061035e9190612dae565b6109a3565b005b34801561037157600080fd5b5061038c60048036038101906103879190612e01565b610a0e565b60405161039a929190612e41565b60405180910390f35b3480156103af57600080fd5b506103b8610bf8565b005b6103d460048036038101906103cf9190612dae565b610cbc565b005b3480156103e257600080fd5b506103fd60048036038101906103f89190612ced565b610d27565b005b34801561040b57600080fd5b5061042660048036038101906104219190612e6a565b610d39565b005b34801561043457600080fd5b5061044f600480360381019061044a9190612fcc565b610d85565b005b34801561045d57600080fd5b5061047860048036038101906104739190612ced565b610da7565b6040516104859190612d93565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190612ced565b610dc7565b6040516104c29190612d29565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed9190612e6a565b610dd9565b6040516104ff9190612d93565b60405180910390f35b34801561051457600080fd5b5061051d610e91565b005b34801561052b57600080fd5b50610534610ea5565b6040516105419190612d29565b60405180910390f35b34801561055657600080fd5b5061055f610ecb565b60405161056c9190612d29565b60405180910390f35b34801561058157600080fd5b5061058a610ef4565b6040516105979190612c95565b60405180910390f35b6105ba60048036038101906105b59190612ced565b610f86565b005b3480156105c857600080fd5b506105e360048036038101906105de9190613041565b6112aa565b005b3480156105f157600080fd5b5061060c60048036038101906106079190613081565b6112df565b005b6106286004803603810190610623919061314f565b611304565b005b34801561063657600080fd5b50610651600480360381019061064c9190612ced565b611371565b60405161065e9190612c95565b60405180910390f35b34801561067357600080fd5b5061068e60048036038101906106899190612ced565b611418565b005b34801561069c57600080fd5b506106a561142a565b6040516106b29190612d93565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190612ced565b611430565b6040516106ef9190612aff565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a91906131d2565b611450565b60405161072c9190612aff565b60405180910390f35b34801561074157600080fd5b5061074a6114e4565b6040516107579190613221565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190612e6a565b611502565b005b34801561079557600080fd5b506107b060048036038101906107ab9190612e6a565b611585565b005b3480156107be57600080fd5b506107c7611694565b6040516107d49190612d93565b60405180910390f35b3480156107e957600080fd5b506107f261169a565b6040516107ff9190612aff565b60405180910390f35b6000610813826116ad565b8061082357506108228261173f565b5b9050919050565b6108326117b9565b61083c8282611837565b5050565b60606003805461084f9061326b565b80601f016020809104026020016040519081016040528092919081815260200182805461087b9061326b565b80156108c85780601f1061089d576101008083540402835291602001916108c8565b820191906000526020600020905b8154815290600101906020018083116108ab57829003601f168201915b5050505050905090565b60006108dd826119cc565b610913576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8161095b81611a2b565b61097757610967611a77565b156109765761097581611a8e565b5b5b6109818383611ad2565b505050565b600d5481565b6000610996611c16565b6002546001540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109fd576109e033611a2b565b6109fc576109ec611a77565b156109fb576109fa33611a8e565b5b5b5b610a08848484611c1f565b50505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610ba35760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610bad611f41565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610bd991906132cb565b610be39190613354565b90508160000151819350935050509250929050565b610c006117b9565b60004790506000610c0f610ecb565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c32906133b6565b60006040518083038185875af1925050503d8060008114610c6f576040519150601f19603f3d011682016040523d82523d6000602084013e610c74565b606091505b5050905080610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90613417565b60405180910390fd5b5050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d1657610cf933611a2b565b610d1557610d05611a77565b15610d1457610d1333611a8e565b5b5b5b610d21848484611f4b565b50505050565b610d2f6117b9565b80600d8190555050565b610d416117b9565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d8d6117b9565b80600c9080519060200190610da39291906129a8565b5050565b6000600f54821115610dbd57600d549050610dc2565b600090505b919050565b6000610dd282611f6b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e40576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e996117b9565b610ea36000612037565b565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f039061326b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2f9061326b565b8015610f7c5780601f10610f5157610100808354040283529160200191610f7c565b820191906000526020600020905b815481529060010190602001808311610f5f57829003601f168201915b5050505050905090565b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610fe39190612d29565b602060405180830381865afa158015611000573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611024919061344c565b11611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b906134c5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016110d69190612d93565b602060405180830381865afa1580156110f3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111791906134fa565b73ffffffffffffffffffffffffffffffffffffffff161461116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490613573565b60405180910390fd5b6011600082815260200190815260200160002060009054906101000a900460ff16156111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c5906135df565b60405180910390fd5b600e5460016111db6120fb565b6111e591906135ff565b1115611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d906136a1565b60405180910390fd5b61122f81610da7565b3414611270576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112679061370d565b60405180910390fd5b60016011600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506112a733600161210e565b50565b816112b481611a2b565b6112d0576112c0611a77565b156112cf576112ce81611a8e565b5b5b6112da83836122ca565b505050565b6112e76117b9565b80600b60006101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461135e5761134133611a2b565b61135d5761134d611a77565b1561135c5761135b33611a8e565b5b5b5b61136a858585856123d5565b5050505050565b606061137c826119cc565b6113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290613779565b60405180910390fd5b60006113c5612448565b905060008151116113e55760405180602001604052806000815250611410565b806113ef846124da565b604051602001611400929190613821565b6040516020818303038152906040525b915050919050565b6114206117b9565b80600f8190555050565b600e5481565b60116020528060005260406000206000915054906101000a900460ff1681565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601260009054906101000a90046bffffffffffffffffffffffff1681565b61150a6117b9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611579576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611570906138c2565b60405180910390fd5b61158281612037565b50565b61158d6117b9565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016115cd9190612d29565b602060405180830381865afa1580156115ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160e919061344c565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161164b929190612e41565b6020604051808303816000875af115801561166a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168e91906138f7565b50505050565b600f5481565b600b60009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061170857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806117385750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806117b257506117b1826125a8565b5b9050919050565b6117c1612612565b73ffffffffffffffffffffffffffffffffffffffff166117df610ecb565b73ffffffffffffffffffffffffffffffffffffffff1614611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90613970565b60405180910390fd5b565b61183f611f41565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490613a02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390613a6e565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000816119d7611c16565b111580156119e6575060015482105b8015611a24575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b6000731e0049783f008a0085193e00003d00cd54003c7173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b6000600b60009054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611aca573d6000803e3d6000fd5b6000603a5250565b6000611add82610dc7565b90508073ffffffffffffffffffffffffffffffffffffffff16611afe61261a565b73ffffffffffffffffffffffffffffffffffffffff1614611b6157611b2a81611b2561261a565b611450565b611b60576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611c2a82611f6b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c91576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611c9d84612622565b91509150611cb38187611cae61261a565b612649565b611cff57611cc886611cc361261a565b611450565b611cfe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611d65576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d72868686600161268d565b8015611d7d57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611e4b85611e27888887612693565b7c0200000000000000000000000000000000000000000000000000000000176126bb565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611ed15760006001850190506000600560008381526020019081526020016000205403611ecf576001548114611ece578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f3986868660016126e6565b505050505050565b6000612710905090565b611f6683838360405180602001604052806000815250611304565b505050565b60008082905080611f7a611c16565b1161200057600154811015611fff5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ffd575b60008103611ff3576005600083600190039350838152602001908152602001600020549050611fc9565b8092505050612032565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612105611c16565b60015403905090565b600060015490506000820361214f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61215c600084838561268d565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121d3836121c46000866000612693565b6121cd856126ec565b176126bb565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461227457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612239565b50600082036122af576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506122c560008483856126e6565b505050565b80600860006122d761261a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661238461261a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123c99190612aff565b60405180910390a35050565b6123e08484846109a3565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124425761240b848484846126fc565b612441576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600c80546124579061326b565b80601f01602080910402602001604051908101604052809291908181526020018280546124839061326b565b80156124d05780601f106124a5576101008083540402835291602001916124d0565b820191906000526020600020905b8154815290600101906020018083116124b357829003601f168201915b5050505050905090565b6060600060016124e98461284c565b01905060008167ffffffffffffffff81111561250857612507612ea1565b5b6040519080825280601f01601f19166020018201604052801561253a5781602001600182028036833780820191505090505b509050600082602001820190505b60011561259d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161259157612590613325565b5b04945060008503612548575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86126aa86868461299f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261272261261a565b8786866040518563ffffffff1660e01b81526004016127449493929190613ae3565b6020604051808303816000875af192505050801561278057506040513d601f19601f8201168201806040525081019061277d9190613b44565b60015b6127f9573d80600081146127b0576040519150601f19603f3d011682016040523d82523d6000602084013e6127b5565b606091505b5060008151036127f1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106128aa577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816128a05761289f613325565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106128e7576d04ee2d6d415b85acef810000000083816128dd576128dc613325565b5b0492506020810190505b662386f26fc10000831061291657662386f26fc10000838161290c5761290b613325565b5b0492506010810190505b6305f5e100831061293f576305f5e100838161293557612934613325565b5b0492506008810190505b612710831061296457612710838161295a57612959613325565b5b0492506004810190505b60648310612987576064838161297d5761297c613325565b5b0492506002810190505b600a8310612996576001810190505b80915050919050565b60009392505050565b8280546129b49061326b565b90600052602060002090601f0160209004810192826129d65760008555612a1d565b82601f106129ef57805160ff1916838001178555612a1d565b82800160010185558215612a1d579182015b82811115612a1c578251825591602001919060010190612a01565b5b509050612a2a9190612a2e565b5090565b5b80821115612a47576000816000905550600101612a2f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a9481612a5f565b8114612a9f57600080fd5b50565b600081359050612ab181612a8b565b92915050565b600060208284031215612acd57612acc612a55565b5b6000612adb84828501612aa2565b91505092915050565b60008115159050919050565b612af981612ae4565b82525050565b6000602082019050612b146000830184612af0565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b4582612b1a565b9050919050565b612b5581612b3a565b8114612b6057600080fd5b50565b600081359050612b7281612b4c565b92915050565b60006bffffffffffffffffffffffff82169050919050565b612b9981612b78565b8114612ba457600080fd5b50565b600081359050612bb681612b90565b92915050565b60008060408385031215612bd357612bd2612a55565b5b6000612be185828601612b63565b9250506020612bf285828601612ba7565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c36578082015181840152602081019050612c1b565b83811115612c45576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c6782612bfc565b612c718185612c07565b9350612c81818560208601612c18565b612c8a81612c4b565b840191505092915050565b60006020820190508181036000830152612caf8184612c5c565b905092915050565b6000819050919050565b612cca81612cb7565b8114612cd557600080fd5b50565b600081359050612ce781612cc1565b92915050565b600060208284031215612d0357612d02612a55565b5b6000612d1184828501612cd8565b91505092915050565b612d2381612b3a565b82525050565b6000602082019050612d3e6000830184612d1a565b92915050565b60008060408385031215612d5b57612d5a612a55565b5b6000612d6985828601612b63565b9250506020612d7a85828601612cd8565b9150509250929050565b612d8d81612cb7565b82525050565b6000602082019050612da86000830184612d84565b92915050565b600080600060608486031215612dc757612dc6612a55565b5b6000612dd586828701612b63565b9350506020612de686828701612b63565b9250506040612df786828701612cd8565b9150509250925092565b60008060408385031215612e1857612e17612a55565b5b6000612e2685828601612cd8565b9250506020612e3785828601612cd8565b9150509250929050565b6000604082019050612e566000830185612d1a565b612e636020830184612d84565b9392505050565b600060208284031215612e8057612e7f612a55565b5b6000612e8e84828501612b63565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ed982612c4b565b810181811067ffffffffffffffff82111715612ef857612ef7612ea1565b5b80604052505050565b6000612f0b612a4b565b9050612f178282612ed0565b919050565b600067ffffffffffffffff821115612f3757612f36612ea1565b5b612f4082612c4b565b9050602081019050919050565b82818337600083830152505050565b6000612f6f612f6a84612f1c565b612f01565b905082815260208101848484011115612f8b57612f8a612e9c565b5b612f96848285612f4d565b509392505050565b600082601f830112612fb357612fb2612e97565b5b8135612fc3848260208601612f5c565b91505092915050565b600060208284031215612fe257612fe1612a55565b5b600082013567ffffffffffffffff81111561300057612fff612a5a565b5b61300c84828501612f9e565b91505092915050565b61301e81612ae4565b811461302957600080fd5b50565b60008135905061303b81613015565b92915050565b6000806040838503121561305857613057612a55565b5b600061306685828601612b63565b92505060206130778582860161302c565b9150509250929050565b60006020828403121561309757613096612a55565b5b60006130a58482850161302c565b91505092915050565b600067ffffffffffffffff8211156130c9576130c8612ea1565b5b6130d282612c4b565b9050602081019050919050565b60006130f26130ed846130ae565b612f01565b90508281526020810184848401111561310e5761310d612e9c565b5b613119848285612f4d565b509392505050565b600082601f83011261313657613135612e97565b5b81356131468482602086016130df565b91505092915050565b6000806000806080858703121561316957613168612a55565b5b600061317787828801612b63565b945050602061318887828801612b63565b935050604061319987828801612cd8565b925050606085013567ffffffffffffffff8111156131ba576131b9612a5a565b5b6131c687828801613121565b91505092959194509250565b600080604083850312156131e9576131e8612a55565b5b60006131f785828601612b63565b925050602061320885828601612b63565b9150509250929050565b61321b81612b78565b82525050565b60006020820190506132366000830184613212565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061328357607f821691505b6020821081036132965761329561323c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132d682612cb7565b91506132e183612cb7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561331a5761331961329c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061335f82612cb7565b915061336a83612cb7565b92508261337a57613379613325565b5b828204905092915050565b600081905092915050565b50565b60006133a0600083613385565b91506133ab82613390565b600082019050919050565b60006133c182613393565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b6000613401601483612c07565b915061340c826133cb565b602082019050919050565b60006020820190508181036000830152613430816133f4565b9050919050565b60008151905061344681612cc1565b92915050565b60006020828403121561346257613461612a55565b5b600061347084828501613437565b91505092915050565b7f596f7520646f6e2774206f776e20616e7920466f63757320426c6f63204e4654600082015250565b60006134af602083612c07565b91506134ba82613479565b602082019050919050565b600060208201905081810360008301526134de816134a2565b9050919050565b6000815190506134f481612b4c565b92915050565b6000602082840312156135105761350f612a55565b5b600061351e848285016134e5565b91505092915050565b7f546f6b656e206e6f74206f776e65640000000000000000000000000000000000600082015250565b600061355d600f83612c07565b915061356882613527565b602082019050919050565b6000602082019050818103600083015261358c81613550565b9050919050565b7f546f6b656e20616c726561647920636c61696d65640000000000000000000000600082015250565b60006135c9601583612c07565b91506135d482613593565b602082019050919050565b600060208201905081810360008301526135f8816135bc565b9050919050565b600061360a82612cb7565b915061361583612cb7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561364a5761364961329c565b5b828201905092915050565b7f457863656564206d6178696d756d20737570706c790000000000000000000000600082015250565b600061368b601583612c07565b915061369682613655565b602082019050919050565b600060208201905081810360008301526136ba8161367e565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006136f7601283612c07565b9150613702826136c1565b602082019050919050565b60006020820190508181036000830152613726816136ea565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000613763601f83612c07565b915061376e8261372d565b602082019050919050565b6000602082019050818103600083015261379281613756565b9050919050565b600081905092915050565b60006137af82612bfc565b6137b98185613799565b93506137c9818560208601612c18565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061380b600583613799565b9150613816826137d5565b600582019050919050565b600061382d82856137a4565b915061383982846137a4565b9150613844826137fe565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138ac602683612c07565b91506138b782613850565b604082019050919050565b600060208201905081810360008301526138db8161389f565b9050919050565b6000815190506138f181613015565b92915050565b60006020828403121561390d5761390c612a55565b5b600061391b848285016138e2565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061395a602083612c07565b915061396582613924565b602082019050919050565b600060208201905081810360008301526139898161394d565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006139ec602a83612c07565b91506139f782613990565b604082019050919050565b60006020820190508181036000830152613a1b816139df565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000613a58601983612c07565b9150613a6382613a22565b602082019050919050565b60006020820190508181036000830152613a8781613a4b565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ab582613a8e565b613abf8185613a99565b9350613acf818560208601612c18565b613ad881612c4b565b840191505092915050565b6000608082019050613af86000830187612d1a565b613b056020830186612d1a565b613b126040830185612d84565b8181036060830152613b248184613aaa565b905095945050505050565b600081519050613b3e81612a8b565b92915050565b600060208284031215613b5a57613b59612a55565b5b6000613b6884828501613b2f565b9150509291505056fea26469706673582212201cc6eddb315832342f505927f84e287b5bbdbdde1f594f73513f3cf40c17a05164736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000003544ae7a9177c38dcced8a2924c085cdb9eaf81d0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d664158344c5a42426578764b6b356b437337437245464537705a707745417a4a32475234554c59464b7766462f00000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c8063715018a611610118578063cbad334b116100a0578063f053dc5c1161006f578063f053dc5c14610735578063f2fde38b14610760578063f4f3b20014610789578063f6a79464146107b2578063fb796e6c146107dd57610204565b8063cbad334b14610667578063d5abeb0114610690578063dbe7e3bd146106bb578063e985e9c5146106f857610204565b8063a0712d68116100e7578063a0712d68146105a0578063a22cb465146105bc578063b7c0b8e8146105e5578063b88d4fde1461060e578063c87b56dd1461062a57610204565b8063715018a61461050857806376e3911c1461051f5780638da5cb5b1461054a57806395d89b411461057557610204565b80632a55205a1161019b5780634cec82821161016a5780634cec8282146103ff57806355f804b3146104285780635a4dd47d146104515780636352211e1461048e57806370a08231146104cb57610204565b80632a55205a146103655780633ccfd60b146103a357806342842e0e146103ba57806344a0d68a146103d657610204565b8063095ea7b3116101d7578063095ea7b3146102d757806313faede6146102f357806318160ddd1461031e57806323b872dd1461034957610204565b806301ffc9a71461020957806304634d8d1461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612ab7565b610808565b60405161023d9190612aff565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612bbc565b61082a565b005b34801561027b57600080fd5b50610284610840565b6040516102919190612c95565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612ced565b6108d2565b6040516102ce9190612d29565b60405180910390f35b6102f160048036038101906102ec9190612d44565b610951565b005b3480156102ff57600080fd5b50610308610986565b6040516103159190612d93565b60405180910390f35b34801561032a57600080fd5b5061033361098c565b6040516103409190612d93565b60405180910390f35b610363600480360381019061035e9190612dae565b6109a3565b005b34801561037157600080fd5b5061038c60048036038101906103879190612e01565b610a0e565b60405161039a929190612e41565b60405180910390f35b3480156103af57600080fd5b506103b8610bf8565b005b6103d460048036038101906103cf9190612dae565b610cbc565b005b3480156103e257600080fd5b506103fd60048036038101906103f89190612ced565b610d27565b005b34801561040b57600080fd5b5061042660048036038101906104219190612e6a565b610d39565b005b34801561043457600080fd5b5061044f600480360381019061044a9190612fcc565b610d85565b005b34801561045d57600080fd5b5061047860048036038101906104739190612ced565b610da7565b6040516104859190612d93565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190612ced565b610dc7565b6040516104c29190612d29565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed9190612e6a565b610dd9565b6040516104ff9190612d93565b60405180910390f35b34801561051457600080fd5b5061051d610e91565b005b34801561052b57600080fd5b50610534610ea5565b6040516105419190612d29565b60405180910390f35b34801561055657600080fd5b5061055f610ecb565b60405161056c9190612d29565b60405180910390f35b34801561058157600080fd5b5061058a610ef4565b6040516105979190612c95565b60405180910390f35b6105ba60048036038101906105b59190612ced565b610f86565b005b3480156105c857600080fd5b506105e360048036038101906105de9190613041565b6112aa565b005b3480156105f157600080fd5b5061060c60048036038101906106079190613081565b6112df565b005b6106286004803603810190610623919061314f565b611304565b005b34801561063657600080fd5b50610651600480360381019061064c9190612ced565b611371565b60405161065e9190612c95565b60405180910390f35b34801561067357600080fd5b5061068e60048036038101906106899190612ced565b611418565b005b34801561069c57600080fd5b506106a561142a565b6040516106b29190612d93565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190612ced565b611430565b6040516106ef9190612aff565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a91906131d2565b611450565b60405161072c9190612aff565b60405180910390f35b34801561074157600080fd5b5061074a6114e4565b6040516107579190613221565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190612e6a565b611502565b005b34801561079557600080fd5b506107b060048036038101906107ab9190612e6a565b611585565b005b3480156107be57600080fd5b506107c7611694565b6040516107d49190612d93565b60405180910390f35b3480156107e957600080fd5b506107f261169a565b6040516107ff9190612aff565b60405180910390f35b6000610813826116ad565b8061082357506108228261173f565b5b9050919050565b6108326117b9565b61083c8282611837565b5050565b60606003805461084f9061326b565b80601f016020809104026020016040519081016040528092919081815260200182805461087b9061326b565b80156108c85780601f1061089d576101008083540402835291602001916108c8565b820191906000526020600020905b8154815290600101906020018083116108ab57829003601f168201915b5050505050905090565b60006108dd826119cc565b610913576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8161095b81611a2b565b61097757610967611a77565b156109765761097581611a8e565b5b5b6109818383611ad2565b505050565b600d5481565b6000610996611c16565b6002546001540303905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109fd576109e033611a2b565b6109fc576109ec611a77565b156109fb576109fa33611a8e565b5b5b5b610a08848484611c1f565b50505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610ba35760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610bad611f41565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610bd991906132cb565b610be39190613354565b90508160000151819350935050509250929050565b610c006117b9565b60004790506000610c0f610ecb565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c32906133b6565b60006040518083038185875af1925050503d8060008114610c6f576040519150601f19603f3d011682016040523d82523d6000602084013e610c74565b606091505b5050905080610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf90613417565b60405180910390fd5b5050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d1657610cf933611a2b565b610d1557610d05611a77565b15610d1457610d1333611a8e565b5b5b5b610d21848484611f4b565b50505050565b610d2f6117b9565b80600d8190555050565b610d416117b9565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d8d6117b9565b80600c9080519060200190610da39291906129a8565b5050565b6000600f54821115610dbd57600d549050610dc2565b600090505b919050565b6000610dd282611f6b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e40576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610e996117b9565b610ea36000612037565b565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610f039061326b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2f9061326b565b8015610f7c5780601f10610f5157610100808354040283529160200191610f7c565b820191906000526020600020905b815481529060010190602001808311610f5f57829003601f168201915b5050505050905090565b6000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610fe39190612d29565b602060405180830381865afa158015611000573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611024919061344c565b11611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b906134c5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016110d69190612d93565b602060405180830381865afa1580156110f3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111791906134fa565b73ffffffffffffffffffffffffffffffffffffffff161461116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490613573565b60405180910390fd5b6011600082815260200190815260200160002060009054906101000a900460ff16156111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c5906135df565b60405180910390fd5b600e5460016111db6120fb565b6111e591906135ff565b1115611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d906136a1565b60405180910390fd5b61122f81610da7565b3414611270576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112679061370d565b60405180910390fd5b60016011600083815260200190815260200160002060006101000a81548160ff0219169083151502179055506112a733600161210e565b50565b816112b481611a2b565b6112d0576112c0611a77565b156112cf576112ce81611a8e565b5b5b6112da83836122ca565b505050565b6112e76117b9565b80600b60006101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461135e5761134133611a2b565b61135d5761134d611a77565b1561135c5761135b33611a8e565b5b5b5b61136a858585856123d5565b5050505050565b606061137c826119cc565b6113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290613779565b60405180910390fd5b60006113c5612448565b905060008151116113e55760405180602001604052806000815250611410565b806113ef846124da565b604051602001611400929190613821565b6040516020818303038152906040525b915050919050565b6114206117b9565b80600f8190555050565b600e5481565b60116020528060005260406000206000915054906101000a900460ff1681565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601260009054906101000a90046bffffffffffffffffffffffff1681565b61150a6117b9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611579576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611570906138c2565b60405180910390fd5b61158281612037565b50565b61158d6117b9565b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016115cd9190612d29565b602060405180830381865afa1580156115ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160e919061344c565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161164b929190612e41565b6020604051808303816000875af115801561166a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168e91906138f7565b50505050565b600f5481565b600b60009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061170857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806117385750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806117b257506117b1826125a8565b5b9050919050565b6117c1612612565b73ffffffffffffffffffffffffffffffffffffffff166117df610ecb565b73ffffffffffffffffffffffffffffffffffffffff1614611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90613970565b60405180910390fd5b565b61183f611f41565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490613a02565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390613a6e565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000816119d7611c16565b111580156119e6575060015482105b8015611a24575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b6000731e0049783f008a0085193e00003d00cd54003c7173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16149050919050565b6000600b60009054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611aca573d6000803e3d6000fd5b6000603a5250565b6000611add82610dc7565b90508073ffffffffffffffffffffffffffffffffffffffff16611afe61261a565b73ffffffffffffffffffffffffffffffffffffffff1614611b6157611b2a81611b2561261a565b611450565b611b60576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611c2a82611f6b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c91576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611c9d84612622565b91509150611cb38187611cae61261a565b612649565b611cff57611cc886611cc361261a565b611450565b611cfe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611d65576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d72868686600161268d565b8015611d7d57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611e4b85611e27888887612693565b7c0200000000000000000000000000000000000000000000000000000000176126bb565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611ed15760006001850190506000600560008381526020019081526020016000205403611ecf576001548114611ece578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f3986868660016126e6565b505050505050565b6000612710905090565b611f6683838360405180602001604052806000815250611304565b505050565b60008082905080611f7a611c16565b1161200057600154811015611fff5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ffd575b60008103611ff3576005600083600190039350838152602001908152602001600020549050611fc9565b8092505050612032565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612105611c16565b60015403905090565b600060015490506000820361214f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61215c600084838561268d565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121d3836121c46000866000612693565b6121cd856126ec565b176126bb565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461227457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612239565b50600082036122af576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506122c560008483856126e6565b505050565b80600860006122d761261a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661238461261a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123c99190612aff565b60405180910390a35050565b6123e08484846109a3565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124425761240b848484846126fc565b612441576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600c80546124579061326b565b80601f01602080910402602001604051908101604052809291908181526020018280546124839061326b565b80156124d05780601f106124a5576101008083540402835291602001916124d0565b820191906000526020600020905b8154815290600101906020018083116124b357829003601f168201915b5050505050905090565b6060600060016124e98461284c565b01905060008167ffffffffffffffff81111561250857612507612ea1565b5b6040519080825280601f01601f19166020018201604052801561253a5781602001600182028036833780820191505090505b509050600082602001820190505b60011561259d578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161259157612590613325565b5b04945060008503612548575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86126aa86868461299f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261272261261a565b8786866040518563ffffffff1660e01b81526004016127449493929190613ae3565b6020604051808303816000875af192505050801561278057506040513d601f19601f8201168201806040525081019061277d9190613b44565b60015b6127f9573d80600081146127b0576040519150601f19603f3d011682016040523d82523d6000602084013e6127b5565b606091505b5060008151036127f1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106128aa577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816128a05761289f613325565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106128e7576d04ee2d6d415b85acef810000000083816128dd576128dc613325565b5b0492506020810190505b662386f26fc10000831061291657662386f26fc10000838161290c5761290b613325565b5b0492506010810190505b6305f5e100831061293f576305f5e100838161293557612934613325565b5b0492506008810190505b612710831061296457612710838161295a57612959613325565b5b0492506004810190505b60648310612987576064838161297d5761297c613325565b5b0492506002810190505b600a8310612996576001810190505b80915050919050565b60009392505050565b8280546129b49061326b565b90600052602060002090601f0160209004810192826129d65760008555612a1d565b82601f106129ef57805160ff1916838001178555612a1d565b82800160010185558215612a1d579182015b82811115612a1c578251825591602001919060010190612a01565b5b509050612a2a9190612a2e565b5090565b5b80821115612a47576000816000905550600101612a2f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a9481612a5f565b8114612a9f57600080fd5b50565b600081359050612ab181612a8b565b92915050565b600060208284031215612acd57612acc612a55565b5b6000612adb84828501612aa2565b91505092915050565b60008115159050919050565b612af981612ae4565b82525050565b6000602082019050612b146000830184612af0565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b4582612b1a565b9050919050565b612b5581612b3a565b8114612b6057600080fd5b50565b600081359050612b7281612b4c565b92915050565b60006bffffffffffffffffffffffff82169050919050565b612b9981612b78565b8114612ba457600080fd5b50565b600081359050612bb681612b90565b92915050565b60008060408385031215612bd357612bd2612a55565b5b6000612be185828601612b63565b9250506020612bf285828601612ba7565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c36578082015181840152602081019050612c1b565b83811115612c45576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c6782612bfc565b612c718185612c07565b9350612c81818560208601612c18565b612c8a81612c4b565b840191505092915050565b60006020820190508181036000830152612caf8184612c5c565b905092915050565b6000819050919050565b612cca81612cb7565b8114612cd557600080fd5b50565b600081359050612ce781612cc1565b92915050565b600060208284031215612d0357612d02612a55565b5b6000612d1184828501612cd8565b91505092915050565b612d2381612b3a565b82525050565b6000602082019050612d3e6000830184612d1a565b92915050565b60008060408385031215612d5b57612d5a612a55565b5b6000612d6985828601612b63565b9250506020612d7a85828601612cd8565b9150509250929050565b612d8d81612cb7565b82525050565b6000602082019050612da86000830184612d84565b92915050565b600080600060608486031215612dc757612dc6612a55565b5b6000612dd586828701612b63565b9350506020612de686828701612b63565b9250506040612df786828701612cd8565b9150509250925092565b60008060408385031215612e1857612e17612a55565b5b6000612e2685828601612cd8565b9250506020612e3785828601612cd8565b9150509250929050565b6000604082019050612e566000830185612d1a565b612e636020830184612d84565b9392505050565b600060208284031215612e8057612e7f612a55565b5b6000612e8e84828501612b63565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ed982612c4b565b810181811067ffffffffffffffff82111715612ef857612ef7612ea1565b5b80604052505050565b6000612f0b612a4b565b9050612f178282612ed0565b919050565b600067ffffffffffffffff821115612f3757612f36612ea1565b5b612f4082612c4b565b9050602081019050919050565b82818337600083830152505050565b6000612f6f612f6a84612f1c565b612f01565b905082815260208101848484011115612f8b57612f8a612e9c565b5b612f96848285612f4d565b509392505050565b600082601f830112612fb357612fb2612e97565b5b8135612fc3848260208601612f5c565b91505092915050565b600060208284031215612fe257612fe1612a55565b5b600082013567ffffffffffffffff81111561300057612fff612a5a565b5b61300c84828501612f9e565b91505092915050565b61301e81612ae4565b811461302957600080fd5b50565b60008135905061303b81613015565b92915050565b6000806040838503121561305857613057612a55565b5b600061306685828601612b63565b92505060206130778582860161302c565b9150509250929050565b60006020828403121561309757613096612a55565b5b60006130a58482850161302c565b91505092915050565b600067ffffffffffffffff8211156130c9576130c8612ea1565b5b6130d282612c4b565b9050602081019050919050565b60006130f26130ed846130ae565b612f01565b90508281526020810184848401111561310e5761310d612e9c565b5b613119848285612f4d565b509392505050565b600082601f83011261313657613135612e97565b5b81356131468482602086016130df565b91505092915050565b6000806000806080858703121561316957613168612a55565b5b600061317787828801612b63565b945050602061318887828801612b63565b935050604061319987828801612cd8565b925050606085013567ffffffffffffffff8111156131ba576131b9612a5a565b5b6131c687828801613121565b91505092959194509250565b600080604083850312156131e9576131e8612a55565b5b60006131f785828601612b63565b925050602061320885828601612b63565b9150509250929050565b61321b81612b78565b82525050565b60006020820190506132366000830184613212565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061328357607f821691505b6020821081036132965761329561323c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132d682612cb7565b91506132e183612cb7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561331a5761331961329c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061335f82612cb7565b915061336a83612cb7565b92508261337a57613379613325565b5b828204905092915050565b600081905092915050565b50565b60006133a0600083613385565b91506133ab82613390565b600082019050919050565b60006133c182613393565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b6000613401601483612c07565b915061340c826133cb565b602082019050919050565b60006020820190508181036000830152613430816133f4565b9050919050565b60008151905061344681612cc1565b92915050565b60006020828403121561346257613461612a55565b5b600061347084828501613437565b91505092915050565b7f596f7520646f6e2774206f776e20616e7920466f63757320426c6f63204e4654600082015250565b60006134af602083612c07565b91506134ba82613479565b602082019050919050565b600060208201905081810360008301526134de816134a2565b9050919050565b6000815190506134f481612b4c565b92915050565b6000602082840312156135105761350f612a55565b5b600061351e848285016134e5565b91505092915050565b7f546f6b656e206e6f74206f776e65640000000000000000000000000000000000600082015250565b600061355d600f83612c07565b915061356882613527565b602082019050919050565b6000602082019050818103600083015261358c81613550565b9050919050565b7f546f6b656e20616c726561647920636c61696d65640000000000000000000000600082015250565b60006135c9601583612c07565b91506135d482613593565b602082019050919050565b600060208201905081810360008301526135f8816135bc565b9050919050565b600061360a82612cb7565b915061361583612cb7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561364a5761364961329c565b5b828201905092915050565b7f457863656564206d6178696d756d20737570706c790000000000000000000000600082015250565b600061368b601583612c07565b915061369682613655565b602082019050919050565b600060208201905081810360008301526136ba8161367e565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006136f7601283612c07565b9150613702826136c1565b602082019050919050565b60006020820190508181036000830152613726816136ea565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b6000613763601f83612c07565b915061376e8261372d565b602082019050919050565b6000602082019050818103600083015261379281613756565b9050919050565b600081905092915050565b60006137af82612bfc565b6137b98185613799565b93506137c9818560208601612c18565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061380b600583613799565b9150613816826137d5565b600582019050919050565b600061382d82856137a4565b915061383982846137a4565b9150613844826137fe565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138ac602683612c07565b91506138b782613850565b604082019050919050565b600060208201905081810360008301526138db8161389f565b9050919050565b6000815190506138f181613015565b92915050565b60006020828403121561390d5761390c612a55565b5b600061391b848285016138e2565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061395a602083612c07565b915061396582613924565b602082019050919050565b600060208201905081810360008301526139898161394d565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006139ec602a83612c07565b91506139f782613990565b604082019050919050565b60006020820190508181036000830152613a1b816139df565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000613a58601983612c07565b9150613a6382613a22565b602082019050919050565b60006020820190508181036000830152613a8781613a4b565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ab582613a8e565b613abf8185613a99565b9350613acf818560208601612c18565b613ad881612c4b565b840191505092915050565b6000608082019050613af86000830187612d1a565b613b056020830186612d1a565b613b126040830185612d84565b8181036060830152613b248184613aaa565b905095945050505050565b600081519050613b3e81612a8b565b92915050565b600060208284031215613b5a57613b59612a55565b5b6000613b6884828501613b2f565b9150509291505056fea26469706673582212201cc6eddb315832342f505927f84e287b5bbdbdde1f594f73513f3cf40c17a05164736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000003544ae7a9177c38dcced8a2924c085cdb9eaf81d0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d664158344c5a42426578764b6b356b437337437245464537705a707745417a4a32475234554c59464b7766462f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmfAX4LZBBexvKk5kCs7CrEFE7pZpwEAzJ2GR4ULYFKwfF/
Arg [1] : _focusBlocNFT (address): 0x3544Ae7A9177C38dcCED8a2924C085cdb9EAF81D

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000003544ae7a9177c38dcced8a2924c085cdb9eaf81d
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d664158344c5a42426578764b6b356b4373374372454645
Arg [4] : 37705a707745417a4a32475234554c59464b7766462f00000000000000000000


Deployed Bytecode Sourcemap

87421:6913:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92976:487;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93471:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35400:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41891:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92037:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87605:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31151:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92260:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10718:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;90958:209;;;;;;;;;;;;;:::i;:::-;;92482:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88908:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88743:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89555:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91653:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36793:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32335:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85504:103;;;;;;;;;;;;;:::i;:::-;;87723:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84856:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35576:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89721:477;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91812:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93646:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92712:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90302:590;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89086:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87644:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87757:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42840:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87827:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85762:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91303:302;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87681:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87533:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92976:487;93124:4;93362:38;93388:11;93362:25;:38::i;:::-;:93;;;;93417:38;93443:11;93417:25;:38::i;:::-;93362:93;93342:113;;92976:487;;;:::o;93471:167::-;84742:13;:11;:13::i;:::-;93588:42:::1;93607:8;93617:12;93588:18;:42::i;:::-;93471:167:::0;;:::o;35400:100::-;35454:13;35487:5;35480:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35400:100;:::o;41891:218::-;41967:7;41992:16;42000:7;41992;:16::i;:::-;41987:64;;42017:34;;;;;;;;;;;;;;41987:64;42071:15;:24;42087:7;42071:24;;;;;;;;;;;:30;;;;;;;;;;;;42064:37;;41891:218;;;:::o;92037:215::-;92186:8;3879:29;3899:8;3879:19;:29::i;:::-;3874:122;;3929:27;:25;:27::i;:::-;3925:59;;;3958:26;3975:8;3958:16;:26::i;:::-;3925:59;3874:122;92212:32:::1;92226:8;92236:7;92212:13;:32::i;:::-;92037:215:::0;;;:::o;87605:32::-;;;;:::o;31151:323::-;31212:7;31440:15;:13;:15::i;:::-;31425:12;;31409:13;;:28;:46;31402:53;;31151:323;:::o;92260:214::-;92412:4;3522:10;3514:18;;:4;:18;;;3510:184;;3554:31;3574:10;3554:19;:31::i;:::-;3549:134;;3610:27;:25;:27::i;:::-;3606:61;;;3639:28;3656:10;3639:16;:28::i;:::-;3606:61;3549:134;3510:184;92429:37:::1;92448:4;92454:2;92458:7;92429:18;:37::i;:::-;92260:214:::0;;;;:::o;10718:442::-;10815:7;10824;10844:26;10873:17;:27;10891:8;10873:27;;;;;;;;;;;10844:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10945:1;10917:30;;:7;:16;;;:30;;;10913:92;;10974:19;10964:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10913:92;11017:21;11082:17;:15;:17::i;:::-;11041:58;;11055:7;:23;;;11042:36;;:10;:36;;;;:::i;:::-;11041:58;;;;:::i;:::-;11017:82;;11120:7;:16;;;11138:13;11112:40;;;;;;10718:442;;;;;:::o;90958:209::-;84742:13;:11;:13::i;:::-;91006:14:::1;91023:21;91006:38;;91056:9;91079:7;:5;:7::i;:::-;91071:21;;91100:6;91071:40;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91055:56;;;91130:4;91122:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;90995:172;;90958:209::o:0;92482:222::-;92638:4;3522:10;3514:18;;:4;:18;;;3510:184;;3554:31;3574:10;3554:19;:31::i;:::-;3549:134;;3610:27;:25;:27::i;:::-;3606:61;;;3639:28;3656:10;3639:16;:28::i;:::-;3606:61;3549:134;3510:184;92655:41:::1;92678:4;92684:2;92688:7;92655:22;:41::i;:::-;92482:222:::0;;;;:::o;88908:82::-;84742:13;:11;:13::i;:::-;88977:5:::1;88970:4;:12;;;;88908:82:::0;:::o;88743:114::-;84742:13;:11;:13::i;:::-;88836::::1;88821:12;;:28;;;;;;;;;;;;;;;;;;88743:114:::0;:::o;89555:98::-;84742:13;:11;:13::i;:::-;89641:4:::1;89625:13;:20;;;;;;;;;;;;:::i;:::-;;89555:98:::0;:::o;91653:151::-;91709:7;91744:15;;91733:8;:26;91729:67;;;91768:4;;91761:11;;;;91729:67;91795:1;91788:8;;91653:151;;;;:::o;36793:152::-;36865:7;36908:27;36927:7;36908:18;:27::i;:::-;36885:52;;36793:152;;;:::o;32335:233::-;32407:7;32448:1;32431:19;;:5;:19;;;32427:60;;32459:28;;;;;;;;;;;;;;32427:60;26494:13;32505:18;:25;32524:5;32505:25;;;;;;;;;;;;;;;;:55;32498:62;;32335:233;;;:::o;85504:103::-;84742:13;:11;:13::i;:::-;85569:30:::1;85596:1;85569:18;:30::i;:::-;85504:103::o:0;87723:27::-;;;;;;;;;;;;;:::o;84856:87::-;84902:7;84929:6;;;;;;;;;;;84922:13;;84856:87;:::o;35576:104::-;35632:13;35665:7;35658:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35576:104;:::o;89721:477::-;88427:1;88389:12;;;;;;;;;;;88381:31;;;88413:10;88381:43;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:47;88359:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;89860:10:::1;89817:53;;89825:12;;;;;;;;;;;89817:29;;;89847:8;89817:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;89795:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;89933:7;:17;89941:8;89933:17;;;;;;;;;;;;;;;;;;;;;89932:18;89924:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;90017:9;;90012:1;89995:14;:12;:14::i;:::-;:18;;;;:::i;:::-;:31;;89987:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;90084:17;90092:8;90084:7;:17::i;:::-;90071:9;:30;90063:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;90155:4;90135:7;:17;90143:8;90135:17;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;90170:20;90176:10;90188:1;90170:5;:20::i;:::-;89721:477:::0;:::o;91812:217::-;91952:8;3879:29;3899:8;3879:19;:29::i;:::-;3874:122;;3929:27;:25;:27::i;:::-;3925:59;;;3958:26;3975:8;3958:16;:26::i;:::-;3925:59;3874:122;91978:43:::1;92002:8;92012;91978:23;:43::i;:::-;91812:217:::0;;;:::o;93646:117::-;84742:13;:11;:13::i;:::-;93750:5:::1;93723:24;;:32;;;;;;;;;;;;;;;;;;93646:117:::0;:::o;92712:256::-;92896:4;3522:10;3514:18;;:4;:18;;;3510:184;;3554:31;3574:10;3554:19;:31::i;:::-;3549:134;;3610:27;:25;:27::i;:::-;3606:61;;;3639:28;3656:10;3639:16;:28::i;:::-;3606:61;3549:134;3510:184;92913:47:::1;92936:4;92942:2;92946:7;92955:4;92913:22;:47::i;:::-;92712:256:::0;;;;;:::o;90302:590::-;90420:13;90459:16;90467:7;90459;:16::i;:::-;90451:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;90522:28;90553:10;:8;:10::i;:::-;90522:41;;90627:1;90602:14;90596:28;:32;:288;;;;;;;;;;;;;;;;;90720:14;90761:25;90778:7;90761:16;:25::i;:::-;90677:166;;;;;;;;;:::i;:::-;;;;;;;;;;;;;90596:288;90576:308;;;90302:590;;;:::o;89086:106::-;84742:13;:11;:13::i;:::-;89178:6:::1;89160:15;:24;;;;89086:106:::0;:::o;87644:30::-;;;;:::o;87757:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;42840:164::-;42937:4;42961:18;:25;42980:5;42961:25;;;;;;;;;;;;;;;:35;42987:8;42961:35;;;;;;;;;;;;;;;;;;;;;;;;;42954:42;;42840:164;;;;:::o;87827:30::-;;;;;;;;;;;;;:::o;85762:201::-;84742:13;:11;:13::i;:::-;85871:1:::1;85851:22;;:8;:22;;::::0;85843:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;85927:28;85946:8;85927:18;:28::i;:::-;85762:201:::0;:::o;91303:302::-;84742:13;:11;:13::i;:::-;91377:12:::1;91399:13;91377:36;;91424:15;91442:5;:15;;;91466:4;91442:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;91424:48;;91562:5;:14;;;91577:10;91589:7;91562:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;91366:239;;91303:302:::0;:::o;87681:35::-;;;;:::o;87533:36::-;;;;;;;;;;;;;:::o;34498:639::-;34583:4;34922:10;34907:25;;:11;:25;;;;:102;;;;34999:10;34984:25;;:11;:25;;;;34907:102;:179;;;;35076:10;35061:25;;:11;:25;;;;34907:179;34887:199;;34498:639;;;:::o;10448:215::-;10550:4;10589:26;10574:41;;;:11;:41;;;;:81;;;;10619:36;10643:11;10619:23;:36::i;:::-;10574:81;10567:88;;10448:215;;;:::o;85021:132::-;85096:12;:10;:12::i;:::-;85085:23;;:7;:5;:7::i;:::-;:23;;;85077:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;85021:132::o;11810:332::-;11929:17;:15;:17::i;:::-;11913:33;;:12;:33;;;;11905:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;12032:1;12012:22;;:8;:22;;;12004:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;12099:35;;;;;;;;12111:8;12099:35;;;;;;12121:12;12099:35;;;;;12077:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11810:332;;:::o;43262:282::-;43327:4;43383:7;43364:15;:13;:15::i;:::-;:26;;:66;;;;;43417:13;;43407:7;:23;43364:66;:153;;;;;43516:1;27270:8;43468:17;:26;43486:7;43468:26;;;;;;;;;;;;:44;:49;43364:153;43344:173;;43262:282;;;:::o;93904:427::-;94019:4;94280:42;94260:63;;:8;:63;;;94253:70;;93904:427;;;:::o;93771:125::-;93840:4;93864:24;;;;;;;;;;;93857:31;;93771:125;:::o;4112:1536::-;4505:22;4499:4;4492:36;4598:9;4592:4;4585:23;4673:8;4667:4;4660:22;4995:4;4968;4941;4914;4866:25;4838:5;4805:213;4777:451;;5148:16;5142:4;5136;5121:44;5196:16;5190:4;5183:30;4777:451;5628:1;5622:4;5615:15;4112:1536;:::o;41324:408::-;41413:13;41429:16;41437:7;41429;:16::i;:::-;41413:32;;41485:5;41462:28;;:19;:17;:19::i;:::-;:28;;;41458:175;;41510:44;41527:5;41534:19;:17;:19::i;:::-;41510:16;:44::i;:::-;41505:128;;41582:35;;;;;;;;;;;;;;41505:128;41458:175;41678:2;41645:15;:24;41661:7;41645:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;41716:7;41712:2;41696:28;;41705:5;41696:28;;;;;;;;;;;;41402:330;41324:408;;:::o;88575:101::-;88640:7;88667:1;88660:8;;88575:101;:::o;45530:2825::-;45672:27;45702;45721:7;45702:18;:27::i;:::-;45672:57;;45787:4;45746:45;;45762:19;45746:45;;;45742:86;;45800:28;;;;;;;;;;;;;;45742:86;45842:27;45871:23;45898:35;45925:7;45898:26;:35::i;:::-;45841:92;;;;46033:68;46058:15;46075:4;46081:19;:17;:19::i;:::-;46033:24;:68::i;:::-;46028:180;;46121:43;46138:4;46144:19;:17;:19::i;:::-;46121:16;:43::i;:::-;46116:92;;46173:35;;;;;;;;;;;;;;46116:92;46028:180;46239:1;46225:16;;:2;:16;;;46221:52;;46250:23;;;;;;;;;;;;;;46221:52;46286:43;46308:4;46314:2;46318:7;46327:1;46286:21;:43::i;:::-;46422:15;46419:160;;;46562:1;46541:19;46534:30;46419:160;46959:18;:24;46978:4;46959:24;;;;;;;;;;;;;;;;46957:26;;;;;;;;;;;;47028:18;:22;47047:2;47028:22;;;;;;;;;;;;;;;;47026:24;;;;;;;;;;;47350:146;47387:2;47436:45;47451:4;47457:2;47461:19;47436:14;:45::i;:::-;27550:8;47408:73;47350:18;:146::i;:::-;47321:17;:26;47339:7;47321:26;;;;;;;;;;;:175;;;;47667:1;27550:8;47616:19;:47;:52;47612:627;;47689:19;47721:1;47711:7;:11;47689:33;;47878:1;47844:17;:30;47862:11;47844:30;;;;;;;;;;;;:35;47840:384;;47982:13;;47967:11;:28;47963:242;;48162:19;48129:17;:30;48147:11;48129:30;;;;;;;;;;;:52;;;;47963:242;47840:384;47670:569;47612:627;48286:7;48282:2;48267:27;;48276:4;48267:27;;;;;;;;;;;;48305:42;48326:4;48332:2;48336:7;48345:1;48305:20;:42::i;:::-;45661:2694;;;45530:2825;;;:::o;11442:97::-;11500:6;11526:5;11519:12;;11442:97;:::o;48451:193::-;48597:39;48614:4;48620:2;48624:7;48597:39;;;;;;;;;;;;:16;:39::i;:::-;48451:193;;;:::o;37948:1275::-;38015:7;38035:12;38050:7;38035:22;;38118:4;38099:15;:13;:15::i;:::-;:23;38095:1061;;38152:13;;38145:4;:20;38141:1015;;;38190:14;38207:17;:23;38225:4;38207:23;;;;;;;;;;;;38190:40;;38324:1;27270:8;38296:6;:24;:29;38292:845;;38961:113;38978:1;38968:6;:11;38961:113;;39021:17;:25;39039:6;;;;;;;39021:25;;;;;;;;;;;;39012:34;;38961:113;;;39107:6;39100:13;;;;;;38292:845;38167:989;38141:1015;38095:1061;39184:31;;;;;;;;;;;;;;37948:1275;;;;:::o;86123:191::-;86197:16;86216:6;;;;;;;;;;;86197:25;;86242:8;86233:6;;:17;;;;;;;;;;;;;;;;;;86297:8;86266:40;;86287:8;86266:40;;;;;;;;;;;;86186:128;86123:191;:::o;31572:296::-;31627:7;31834:15;:13;:15::i;:::-;31818:13;;:31;31811:38;;31572:296;:::o;52911:2966::-;52984:20;53007:13;;52984:36;;53047:1;53035:8;:13;53031:44;;53057:18;;;;;;;;;;;;;;53031:44;53088:61;53118:1;53122:2;53126:12;53140:8;53088:21;:61::i;:::-;53632:1;26632:2;53602:1;:26;;53601:32;53589:8;:45;53563:18;:22;53582:2;53563:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;53911:139;53948:2;54002:33;54025:1;54029:2;54033:1;54002:14;:33::i;:::-;53969:30;53990:8;53969:20;:30::i;:::-;:66;53911:18;:139::i;:::-;53877:17;:31;53895:12;53877:31;;;;;;;;;;;:173;;;;54067:16;54098:11;54127:8;54112:12;:23;54098:37;;54648:16;54644:2;54640:25;54628:37;;55020:12;54980:8;54939:1;54877:25;54818:1;54757;54730:335;55391:1;55377:12;55373:20;55331:346;55432:3;55423:7;55420:16;55331:346;;55650:7;55640:8;55637:1;55610:25;55607:1;55604;55599:59;55485:1;55476:7;55472:15;55461:26;;55331:346;;;55335:77;55722:1;55710:8;:13;55706:45;;55732:19;;;;;;;;;;;;;;55706:45;55784:3;55768:13;:19;;;;53337:2462;;55809:60;55838:1;55842:2;55846:12;55860:8;55809:20;:60::i;:::-;52973:2904;52911:2966;;:::o;42449:234::-;42596:8;42544:18;:39;42563:19;:17;:19::i;:::-;42544:39;;;;;;;;;;;;;;;:49;42584:8;42544:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;42656:8;42620:55;;42635:19;:17;:19::i;:::-;42620:55;;;42666:8;42620:55;;;;;;:::i;:::-;;;;;;;;42449:234;;:::o;49242:407::-;49417:31;49430:4;49436:2;49440:7;49417:12;:31::i;:::-;49481:1;49463:2;:14;;;:19;49459:183;;49502:56;49533:4;49539:2;49543:7;49552:5;49502:30;:56::i;:::-;49497:145;;49586:40;;;;;;;;;;;;;;49497:145;49459:183;49242:407;;;;:::o;89356:114::-;89416:13;89449;89442:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89356:114;:::o;80834:716::-;80890:13;80941:14;80978:1;80958:17;80969:5;80958:10;:17::i;:::-;:21;80941:38;;80994:20;81028:6;81017:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80994:41;;81050:11;81179:6;81175:2;81171:15;81163:6;81159:28;81152:35;;81216:288;81223:4;81216:288;;;81248:5;;;;;;;;81390:8;81385:2;81378:5;81374:14;81369:30;81364:3;81356:44;81446:2;81437:11;;;;;;:::i;:::-;;;;;81480:1;81471:5;:10;81216:288;81467:21;81216:288;81525:6;81518:13;;;;;80834:716;;;:::o;8000:157::-;8085:4;8124:25;8109:40;;;:11;:40;;;;8102:47;;8000:157;;;:::o;83407:98::-;83460:7;83487:10;83480:17;;83407:98;:::o;65570:105::-;65630:7;65657:10;65650:17;;65570:105;:::o;44425:485::-;44527:27;44556:23;44597:38;44638:15;:24;44654:7;44638:24;;;;;;;;;;;44597:65;;44815:18;44792:41;;44872:19;44866:26;44847:45;;44777:126;44425:485;;;:::o;43653:659::-;43802:11;43967:16;43960:5;43956:28;43947:37;;44127:16;44116:9;44112:32;44099:45;;44277:15;44266:9;44263:30;44255:5;44244:9;44241:20;44238:56;44228:66;;43653:659;;;;;:::o;50311:159::-;;;;;:::o;64879:311::-;65014:7;65034:16;27674:3;65060:19;:41;;65034:68;;27674:3;65128:31;65139:4;65145:2;65149:9;65128:10;:31::i;:::-;65120:40;;:62;;65113:69;;;64879:311;;;;;:::o;39771:450::-;39851:14;40019:16;40012:5;40008:28;39999:37;;40196:5;40182:11;40157:23;40153:41;40150:52;40143:5;40140:63;40130:73;;39771:450;;;;:::o;51135:158::-;;;;;:::o;40323:324::-;40393:14;40626:1;40616:8;40613:15;40587:24;40583:46;40573:56;;40323:324;;;:::o;51733:716::-;51896:4;51942:2;51917:45;;;51963:19;:17;:19::i;:::-;51984:4;51990:7;51999:5;51917:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51913:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52217:1;52200:6;:13;:18;52196:235;;52246:40;;;;;;;;;;;;;;52196:235;52389:6;52383:13;52374:6;52370:2;52366:15;52359:38;51913:529;52086:54;;;52076:64;;;:6;:64;;;;52069:71;;;51733:716;;;;;;:::o;77700:922::-;77753:7;77773:14;77790:1;77773:18;;77840:6;77831:5;:15;77827:102;;77876:6;77867:15;;;;;;:::i;:::-;;;;;77911:2;77901:12;;;;77827:102;77956:6;77947:5;:15;77943:102;;77992:6;77983:15;;;;;;:::i;:::-;;;;;78027:2;78017:12;;;;77943:102;78072:6;78063:5;:15;78059:102;;78108:6;78099:15;;;;;;:::i;:::-;;;;;78143:2;78133:12;;;;78059:102;78188:5;78179;:14;78175:99;;78223:5;78214:14;;;;;;:::i;:::-;;;;;78257:1;78247:11;;;;78175:99;78301:5;78292;:14;78288:99;;78336:5;78327:14;;;;;;:::i;:::-;;;;;78370:1;78360:11;;;;78288:99;78414:5;78405;:14;78401:99;;78449:5;78440:14;;;;;;:::i;:::-;;;;;78483:1;78473:11;;;;78401:99;78527:5;78518;:14;78514:66;;78563:1;78553:11;;;;78514:66;78608:6;78601:13;;;77700:922;;;:::o;64580:147::-;64717:6;64580:147;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:307::-;3235:1;3245:113;3259:6;3256:1;3253:13;3245:113;;;3344:1;3339:3;3335:11;3329:18;3325:1;3320:3;3316:11;3309:39;3281:2;3278:1;3274:10;3269:15;;3245:113;;;3376:6;3373:1;3370:13;3367:101;;;3456:1;3447:6;3442:3;3438:16;3431:27;3367:101;3216:258;3167:307;;;:::o;3480:102::-;3521:6;3572:2;3568:7;3563:2;3556:5;3552:14;3548:28;3538:38;;3480:102;;;:::o;3588:364::-;3676:3;3704:39;3737:5;3704:39;:::i;:::-;3759:71;3823:6;3818:3;3759:71;:::i;:::-;3752:78;;3839:52;3884:6;3879:3;3872:4;3865:5;3861:16;3839:52;:::i;:::-;3916:29;3938:6;3916:29;:::i;:::-;3911:3;3907:39;3900:46;;3680:272;3588:364;;;;:::o;3958:313::-;4071:4;4109:2;4098:9;4094:18;4086:26;;4158:9;4152:4;4148:20;4144:1;4133:9;4129:17;4122:47;4186:78;4259:4;4250:6;4186:78;:::i;:::-;4178:86;;3958:313;;;;:::o;4277:77::-;4314:7;4343:5;4332:16;;4277:77;;;:::o;4360:122::-;4433:24;4451:5;4433:24;:::i;:::-;4426:5;4423:35;4413:63;;4472:1;4469;4462:12;4413:63;4360:122;:::o;4488:139::-;4534:5;4572:6;4559:20;4550:29;;4588:33;4615:5;4588:33;:::i;:::-;4488:139;;;;:::o;4633:329::-;4692:6;4741:2;4729:9;4720:7;4716:23;4712:32;4709:119;;;4747:79;;:::i;:::-;4709:119;4867:1;4892:53;4937:7;4928:6;4917:9;4913:22;4892:53;:::i;:::-;4882:63;;4838:117;4633:329;;;;:::o;4968:118::-;5055:24;5073:5;5055:24;:::i;:::-;5050:3;5043:37;4968:118;;:::o;5092:222::-;5185:4;5223:2;5212:9;5208:18;5200:26;;5236:71;5304:1;5293:9;5289:17;5280:6;5236:71;:::i;:::-;5092:222;;;;:::o;5320:474::-;5388:6;5396;5445:2;5433:9;5424:7;5420:23;5416:32;5413:119;;;5451:79;;:::i;:::-;5413:119;5571:1;5596:53;5641:7;5632:6;5621:9;5617:22;5596:53;:::i;:::-;5586:63;;5542:117;5698:2;5724:53;5769:7;5760:6;5749:9;5745:22;5724:53;:::i;:::-;5714:63;;5669:118;5320:474;;;;;:::o;5800:118::-;5887:24;5905:5;5887:24;:::i;:::-;5882:3;5875:37;5800:118;;:::o;5924:222::-;6017:4;6055:2;6044:9;6040:18;6032:26;;6068:71;6136:1;6125:9;6121:17;6112:6;6068:71;:::i;:::-;5924:222;;;;:::o;6152:619::-;6229:6;6237;6245;6294:2;6282:9;6273:7;6269:23;6265:32;6262:119;;;6300:79;;:::i;:::-;6262:119;6420:1;6445:53;6490:7;6481:6;6470:9;6466:22;6445:53;:::i;:::-;6435:63;;6391:117;6547:2;6573:53;6618:7;6609:6;6598:9;6594:22;6573:53;:::i;:::-;6563:63;;6518:118;6675:2;6701:53;6746:7;6737:6;6726:9;6722:22;6701:53;:::i;:::-;6691:63;;6646:118;6152:619;;;;;:::o;6777:474::-;6845:6;6853;6902:2;6890:9;6881:7;6877:23;6873:32;6870:119;;;6908:79;;:::i;:::-;6870:119;7028:1;7053:53;7098:7;7089:6;7078:9;7074:22;7053:53;:::i;:::-;7043:63;;6999:117;7155:2;7181:53;7226:7;7217:6;7206:9;7202:22;7181:53;:::i;:::-;7171:63;;7126:118;6777:474;;;;;:::o;7257:332::-;7378:4;7416:2;7405:9;7401:18;7393:26;;7429:71;7497:1;7486:9;7482:17;7473:6;7429:71;:::i;:::-;7510:72;7578:2;7567:9;7563:18;7554:6;7510:72;:::i;:::-;7257:332;;;;;:::o;7595:329::-;7654:6;7703:2;7691:9;7682:7;7678:23;7674:32;7671:119;;;7709:79;;:::i;:::-;7671:119;7829:1;7854:53;7899:7;7890:6;7879:9;7875:22;7854:53;:::i;:::-;7844:63;;7800:117;7595:329;;;;:::o;7930:117::-;8039:1;8036;8029:12;8053:117;8162:1;8159;8152:12;8176:180;8224:77;8221:1;8214:88;8321:4;8318:1;8311:15;8345:4;8342:1;8335:15;8362:281;8445:27;8467:4;8445:27;:::i;:::-;8437:6;8433:40;8575:6;8563:10;8560:22;8539:18;8527:10;8524:34;8521:62;8518:88;;;8586:18;;:::i;:::-;8518:88;8626:10;8622:2;8615:22;8405:238;8362:281;;:::o;8649:129::-;8683:6;8710:20;;:::i;:::-;8700:30;;8739:33;8767:4;8759:6;8739:33;:::i;:::-;8649:129;;;:::o;8784:308::-;8846:4;8936:18;8928:6;8925:30;8922:56;;;8958:18;;:::i;:::-;8922:56;8996:29;9018:6;8996:29;:::i;:::-;8988:37;;9080:4;9074;9070:15;9062:23;;8784:308;;;:::o;9098:154::-;9182:6;9177:3;9172;9159:30;9244:1;9235:6;9230:3;9226:16;9219:27;9098:154;;;:::o;9258:412::-;9336:5;9361:66;9377:49;9419:6;9377:49;:::i;:::-;9361:66;:::i;:::-;9352:75;;9450:6;9443:5;9436:21;9488:4;9481:5;9477:16;9526:3;9517:6;9512:3;9508:16;9505:25;9502:112;;;9533:79;;:::i;:::-;9502:112;9623:41;9657:6;9652:3;9647;9623:41;:::i;:::-;9342:328;9258:412;;;;;:::o;9690:340::-;9746:5;9795:3;9788:4;9780:6;9776:17;9772:27;9762:122;;9803:79;;:::i;:::-;9762:122;9920:6;9907:20;9945:79;10020:3;10012:6;10005:4;9997:6;9993:17;9945:79;:::i;:::-;9936:88;;9752:278;9690:340;;;;:::o;10036:509::-;10105:6;10154:2;10142:9;10133:7;10129:23;10125:32;10122:119;;;10160:79;;:::i;:::-;10122:119;10308:1;10297:9;10293:17;10280:31;10338:18;10330:6;10327:30;10324:117;;;10360:79;;:::i;:::-;10324:117;10465:63;10520:7;10511:6;10500:9;10496:22;10465:63;:::i;:::-;10455:73;;10251:287;10036:509;;;;:::o;10551:116::-;10621:21;10636:5;10621:21;:::i;:::-;10614:5;10611:32;10601:60;;10657:1;10654;10647:12;10601:60;10551:116;:::o;10673:133::-;10716:5;10754:6;10741:20;10732:29;;10770:30;10794:5;10770:30;:::i;:::-;10673:133;;;;:::o;10812:468::-;10877:6;10885;10934:2;10922:9;10913:7;10909:23;10905:32;10902:119;;;10940:79;;:::i;:::-;10902:119;11060:1;11085:53;11130:7;11121:6;11110:9;11106:22;11085:53;:::i;:::-;11075:63;;11031:117;11187:2;11213:50;11255:7;11246:6;11235:9;11231:22;11213:50;:::i;:::-;11203:60;;11158:115;10812:468;;;;;:::o;11286:323::-;11342:6;11391:2;11379:9;11370:7;11366:23;11362:32;11359:119;;;11397:79;;:::i;:::-;11359:119;11517:1;11542:50;11584:7;11575:6;11564:9;11560:22;11542:50;:::i;:::-;11532:60;;11488:114;11286:323;;;;:::o;11615:307::-;11676:4;11766:18;11758:6;11755:30;11752:56;;;11788:18;;:::i;:::-;11752:56;11826:29;11848:6;11826:29;:::i;:::-;11818:37;;11910:4;11904;11900:15;11892:23;;11615:307;;;:::o;11928:410::-;12005:5;12030:65;12046:48;12087:6;12046:48;:::i;:::-;12030:65;:::i;:::-;12021:74;;12118:6;12111:5;12104:21;12156:4;12149:5;12145:16;12194:3;12185:6;12180:3;12176:16;12173:25;12170:112;;;12201:79;;:::i;:::-;12170:112;12291:41;12325:6;12320:3;12315;12291:41;:::i;:::-;12011:327;11928:410;;;;;:::o;12357:338::-;12412:5;12461:3;12454:4;12446:6;12442:17;12438:27;12428:122;;12469:79;;:::i;:::-;12428:122;12586:6;12573:20;12611:78;12685:3;12677:6;12670:4;12662:6;12658:17;12611:78;:::i;:::-;12602:87;;12418:277;12357:338;;;;:::o;12701:943::-;12796:6;12804;12812;12820;12869:3;12857:9;12848:7;12844:23;12840:33;12837:120;;;12876:79;;:::i;:::-;12837:120;12996:1;13021:53;13066:7;13057:6;13046:9;13042:22;13021:53;:::i;:::-;13011:63;;12967:117;13123:2;13149:53;13194:7;13185:6;13174:9;13170:22;13149:53;:::i;:::-;13139:63;;13094:118;13251:2;13277:53;13322:7;13313:6;13302:9;13298:22;13277:53;:::i;:::-;13267:63;;13222:118;13407:2;13396:9;13392:18;13379:32;13438:18;13430:6;13427:30;13424:117;;;13460:79;;:::i;:::-;13424:117;13565:62;13619:7;13610:6;13599:9;13595:22;13565:62;:::i;:::-;13555:72;;13350:287;12701:943;;;;;;;:::o;13650:474::-;13718:6;13726;13775:2;13763:9;13754:7;13750:23;13746:32;13743:119;;;13781:79;;:::i;:::-;13743:119;13901:1;13926:53;13971:7;13962:6;13951:9;13947:22;13926:53;:::i;:::-;13916:63;;13872:117;14028:2;14054:53;14099:7;14090:6;14079:9;14075:22;14054:53;:::i;:::-;14044:63;;13999:118;13650:474;;;;;:::o;14130:115::-;14215:23;14232:5;14215:23;:::i;:::-;14210:3;14203:36;14130:115;;:::o;14251:218::-;14342:4;14380:2;14369:9;14365:18;14357:26;;14393:69;14459:1;14448:9;14444:17;14435:6;14393:69;:::i;:::-;14251:218;;;;:::o;14475:180::-;14523:77;14520:1;14513:88;14620:4;14617:1;14610:15;14644:4;14641:1;14634:15;14661:320;14705:6;14742:1;14736:4;14732:12;14722:22;;14789:1;14783:4;14779:12;14810:18;14800:81;;14866:4;14858:6;14854:17;14844:27;;14800:81;14928:2;14920:6;14917:14;14897:18;14894:38;14891:84;;14947:18;;:::i;:::-;14891:84;14712:269;14661:320;;;:::o;14987:180::-;15035:77;15032:1;15025:88;15132:4;15129:1;15122:15;15156:4;15153:1;15146:15;15173:348;15213:7;15236:20;15254:1;15236:20;:::i;:::-;15231:25;;15270:20;15288:1;15270:20;:::i;:::-;15265:25;;15458:1;15390:66;15386:74;15383:1;15380:81;15375:1;15368:9;15361:17;15357:105;15354:131;;;15465:18;;:::i;:::-;15354:131;15513:1;15510;15506:9;15495:20;;15173:348;;;;:::o;15527:180::-;15575:77;15572:1;15565:88;15672:4;15669:1;15662:15;15696:4;15693:1;15686:15;15713:185;15753:1;15770:20;15788:1;15770:20;:::i;:::-;15765:25;;15804:20;15822:1;15804:20;:::i;:::-;15799:25;;15843:1;15833:35;;15848:18;;:::i;:::-;15833:35;15890:1;15887;15883:9;15878:14;;15713:185;;;;:::o;15904:147::-;16005:11;16042:3;16027:18;;15904:147;;;;:::o;16057:114::-;;:::o;16177:398::-;16336:3;16357:83;16438:1;16433:3;16357:83;:::i;:::-;16350:90;;16449:93;16538:3;16449:93;:::i;:::-;16567:1;16562:3;16558:11;16551:18;;16177:398;;;:::o;16581:379::-;16765:3;16787:147;16930:3;16787:147;:::i;:::-;16780:154;;16951:3;16944:10;;16581:379;;;:::o;16966:170::-;17106:22;17102:1;17094:6;17090:14;17083:46;16966:170;:::o;17142:366::-;17284:3;17305:67;17369:2;17364:3;17305:67;:::i;:::-;17298:74;;17381:93;17470:3;17381:93;:::i;:::-;17499:2;17494:3;17490:12;17483:19;;17142:366;;;:::o;17514:419::-;17680:4;17718:2;17707:9;17703:18;17695:26;;17767:9;17761:4;17757:20;17753:1;17742:9;17738:17;17731:47;17795:131;17921:4;17795:131;:::i;:::-;17787:139;;17514:419;;;:::o;17939:143::-;17996:5;18027:6;18021:13;18012:22;;18043:33;18070:5;18043:33;:::i;:::-;17939:143;;;;:::o;18088:351::-;18158:6;18207:2;18195:9;18186:7;18182:23;18178:32;18175:119;;;18213:79;;:::i;:::-;18175:119;18333:1;18358:64;18414:7;18405:6;18394:9;18390:22;18358:64;:::i;:::-;18348:74;;18304:128;18088:351;;;;:::o;18445:182::-;18585:34;18581:1;18573:6;18569:14;18562:58;18445:182;:::o;18633:366::-;18775:3;18796:67;18860:2;18855:3;18796:67;:::i;:::-;18789:74;;18872:93;18961:3;18872:93;:::i;:::-;18990:2;18985:3;18981:12;18974:19;;18633:366;;;:::o;19005:419::-;19171:4;19209:2;19198:9;19194:18;19186:26;;19258:9;19252:4;19248:20;19244:1;19233:9;19229:17;19222:47;19286:131;19412:4;19286:131;:::i;:::-;19278:139;;19005:419;;;:::o;19430:143::-;19487:5;19518:6;19512:13;19503:22;;19534:33;19561:5;19534:33;:::i;:::-;19430:143;;;;:::o;19579:351::-;19649:6;19698:2;19686:9;19677:7;19673:23;19669:32;19666:119;;;19704:79;;:::i;:::-;19666:119;19824:1;19849:64;19905:7;19896:6;19885:9;19881:22;19849:64;:::i;:::-;19839:74;;19795:128;19579:351;;;;:::o;19936:165::-;20076:17;20072:1;20064:6;20060:14;20053:41;19936:165;:::o;20107:366::-;20249:3;20270:67;20334:2;20329:3;20270:67;:::i;:::-;20263:74;;20346:93;20435:3;20346:93;:::i;:::-;20464:2;20459:3;20455:12;20448:19;;20107:366;;;:::o;20479:419::-;20645:4;20683:2;20672:9;20668:18;20660:26;;20732:9;20726:4;20722:20;20718:1;20707:9;20703:17;20696:47;20760:131;20886:4;20760:131;:::i;:::-;20752:139;;20479:419;;;:::o;20904:171::-;21044:23;21040:1;21032:6;21028:14;21021:47;20904:171;:::o;21081:366::-;21223:3;21244:67;21308:2;21303:3;21244:67;:::i;:::-;21237:74;;21320:93;21409:3;21320:93;:::i;:::-;21438:2;21433:3;21429:12;21422:19;;21081:366;;;:::o;21453:419::-;21619:4;21657:2;21646:9;21642:18;21634:26;;21706:9;21700:4;21696:20;21692:1;21681:9;21677:17;21670:47;21734:131;21860:4;21734:131;:::i;:::-;21726:139;;21453:419;;;:::o;21878:305::-;21918:3;21937:20;21955:1;21937:20;:::i;:::-;21932:25;;21971:20;21989:1;21971:20;:::i;:::-;21966:25;;22125:1;22057:66;22053:74;22050:1;22047:81;22044:107;;;22131:18;;:::i;:::-;22044:107;22175:1;22172;22168:9;22161:16;;21878:305;;;;:::o;22189:171::-;22329:23;22325:1;22317:6;22313:14;22306:47;22189:171;:::o;22366:366::-;22508:3;22529:67;22593:2;22588:3;22529:67;:::i;:::-;22522:74;;22605:93;22694:3;22605:93;:::i;:::-;22723:2;22718:3;22714:12;22707:19;;22366:366;;;:::o;22738:419::-;22904:4;22942:2;22931:9;22927:18;22919:26;;22991:9;22985:4;22981:20;22977:1;22966:9;22962:17;22955:47;23019:131;23145:4;23019:131;:::i;:::-;23011:139;;22738:419;;;:::o;23163:168::-;23303:20;23299:1;23291:6;23287:14;23280:44;23163:168;:::o;23337:366::-;23479:3;23500:67;23564:2;23559:3;23500:67;:::i;:::-;23493:74;;23576:93;23665:3;23576:93;:::i;:::-;23694:2;23689:3;23685:12;23678:19;;23337:366;;;:::o;23709:419::-;23875:4;23913:2;23902:9;23898:18;23890:26;;23962:9;23956:4;23952:20;23948:1;23937:9;23933:17;23926:47;23990:131;24116:4;23990:131;:::i;:::-;23982:139;;23709:419;;;:::o;24134:181::-;24274:33;24270:1;24262:6;24258:14;24251:57;24134:181;:::o;24321:366::-;24463:3;24484:67;24548:2;24543:3;24484:67;:::i;:::-;24477:74;;24560:93;24649:3;24560:93;:::i;:::-;24678:2;24673:3;24669:12;24662:19;;24321:366;;;:::o;24693:419::-;24859:4;24897:2;24886:9;24882:18;24874:26;;24946:9;24940:4;24936:20;24932:1;24921:9;24917:17;24910:47;24974:131;25100:4;24974:131;:::i;:::-;24966:139;;24693:419;;;:::o;25118:148::-;25220:11;25257:3;25242:18;;25118:148;;;;:::o;25272:377::-;25378:3;25406:39;25439:5;25406:39;:::i;:::-;25461:89;25543:6;25538:3;25461:89;:::i;:::-;25454:96;;25559:52;25604:6;25599:3;25592:4;25585:5;25581:16;25559:52;:::i;:::-;25636:6;25631:3;25627:16;25620:23;;25382:267;25272:377;;;;:::o;25655:155::-;25795:7;25791:1;25783:6;25779:14;25772:31;25655:155;:::o;25816:400::-;25976:3;25997:84;26079:1;26074:3;25997:84;:::i;:::-;25990:91;;26090:93;26179:3;26090:93;:::i;:::-;26208:1;26203:3;26199:11;26192:18;;25816:400;;;:::o;26222:701::-;26503:3;26525:95;26616:3;26607:6;26525:95;:::i;:::-;26518:102;;26637:95;26728:3;26719:6;26637:95;:::i;:::-;26630:102;;26749:148;26893:3;26749:148;:::i;:::-;26742:155;;26914:3;26907:10;;26222:701;;;;;:::o;26929:225::-;27069:34;27065:1;27057:6;27053:14;27046:58;27138:8;27133:2;27125:6;27121:15;27114:33;26929:225;:::o;27160:366::-;27302:3;27323:67;27387:2;27382:3;27323:67;:::i;:::-;27316:74;;27399:93;27488:3;27399:93;:::i;:::-;27517:2;27512:3;27508:12;27501:19;;27160:366;;;:::o;27532:419::-;27698:4;27736:2;27725:9;27721:18;27713:26;;27785:9;27779:4;27775:20;27771:1;27760:9;27756:17;27749:47;27813:131;27939:4;27813:131;:::i;:::-;27805:139;;27532:419;;;:::o;27957:137::-;28011:5;28042:6;28036:13;28027:22;;28058:30;28082:5;28058:30;:::i;:::-;27957:137;;;;:::o;28100:345::-;28167:6;28216:2;28204:9;28195:7;28191:23;28187:32;28184:119;;;28222:79;;:::i;:::-;28184:119;28342:1;28367:61;28420:7;28411:6;28400:9;28396:22;28367:61;:::i;:::-;28357:71;;28313:125;28100:345;;;;:::o;28451:182::-;28591:34;28587:1;28579:6;28575:14;28568:58;28451:182;:::o;28639:366::-;28781:3;28802:67;28866:2;28861:3;28802:67;:::i;:::-;28795:74;;28878:93;28967:3;28878:93;:::i;:::-;28996:2;28991:3;28987:12;28980:19;;28639:366;;;:::o;29011:419::-;29177:4;29215:2;29204:9;29200:18;29192:26;;29264:9;29258:4;29254:20;29250:1;29239:9;29235:17;29228:47;29292:131;29418:4;29292:131;:::i;:::-;29284:139;;29011:419;;;:::o;29436:229::-;29576:34;29572:1;29564:6;29560:14;29553:58;29645:12;29640:2;29632:6;29628:15;29621:37;29436:229;:::o;29671:366::-;29813:3;29834:67;29898:2;29893:3;29834:67;:::i;:::-;29827:74;;29910:93;29999:3;29910:93;:::i;:::-;30028:2;30023:3;30019:12;30012:19;;29671:366;;;:::o;30043:419::-;30209:4;30247:2;30236:9;30232:18;30224:26;;30296:9;30290:4;30286:20;30282:1;30271:9;30267:17;30260:47;30324:131;30450:4;30324:131;:::i;:::-;30316:139;;30043:419;;;:::o;30468:175::-;30608:27;30604:1;30596:6;30592:14;30585:51;30468:175;:::o;30649:366::-;30791:3;30812:67;30876:2;30871:3;30812:67;:::i;:::-;30805:74;;30888:93;30977:3;30888:93;:::i;:::-;31006:2;31001:3;30997:12;30990:19;;30649:366;;;:::o;31021:419::-;31187:4;31225:2;31214:9;31210:18;31202:26;;31274:9;31268:4;31264:20;31260:1;31249:9;31245:17;31238:47;31302:131;31428:4;31302:131;:::i;:::-;31294:139;;31021:419;;;:::o;31446:98::-;31497:6;31531:5;31525:12;31515:22;;31446:98;;;:::o;31550:168::-;31633:11;31667:6;31662:3;31655:19;31707:4;31702:3;31698:14;31683:29;;31550:168;;;;:::o;31724:360::-;31810:3;31838:38;31870:5;31838:38;:::i;:::-;31892:70;31955:6;31950:3;31892:70;:::i;:::-;31885:77;;31971:52;32016:6;32011:3;32004:4;31997:5;31993:16;31971:52;:::i;:::-;32048:29;32070:6;32048:29;:::i;:::-;32043:3;32039:39;32032:46;;31814:270;31724:360;;;;:::o;32090:640::-;32285:4;32323:3;32312:9;32308:19;32300:27;;32337:71;32405:1;32394:9;32390:17;32381:6;32337:71;:::i;:::-;32418:72;32486:2;32475:9;32471:18;32462:6;32418:72;:::i;:::-;32500;32568:2;32557:9;32553:18;32544:6;32500:72;:::i;:::-;32619:9;32613:4;32609:20;32604:2;32593:9;32589:18;32582:48;32647:76;32718:4;32709:6;32647:76;:::i;:::-;32639:84;;32090:640;;;;;;;:::o;32736:141::-;32792:5;32823:6;32817:13;32808:22;;32839:32;32865:5;32839:32;:::i;:::-;32736:141;;;;:::o;32883:349::-;32952:6;33001:2;32989:9;32980:7;32976:23;32972:32;32969:119;;;33007:79;;:::i;:::-;32969:119;33127:1;33152:63;33207:7;33198:6;33187:9;33183:22;33152:63;:::i;:::-;33142:73;;33098:127;32883:349;;;;:::o

Swarm Source

ipfs://1cc6eddb315832342f505927f84e287b5bbdbdde1f594f73513f3cf40c17a051
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.