ETH Price: $3,416.90 (-0.69%)
Gas: 2 Gwei

Token

potatoztown (POTATOZ)
 

Overview

Max Total Supply

5,555 POTATOZ

Holders

3,240

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mcning.eth
Balance
1 POTATOZ
0xddb0766ff83a91980c0cc4b9137e089bd8385d7a
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:
Potatoztown

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-22
*/

/**
 *Submitted for verification at Etherscan.io on 2022-07-20
*/

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.0

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 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.1.0

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

    // The 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 tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [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 => address) private _tokenApprovals;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Returns the 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 {
        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;
    }

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev 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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` 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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

// File: contract.sol


pragma solidity ^0.8.7;






contract Potatoztown is ERC721A, Ownable, ReentrancyGuard {
  using Address for address;
  using Strings for uint;

  string  public  baseTokenURI = "";
  bool public isPublicSaleActive = false;

  uint256 public  maxSupply = 5555;
  uint256 public  MAX_MINTS_PER_TX = 20;
  uint256 public  PUBLIC_SALE_PRICE = 0.003 ether;
  uint256 public  NUM_FREE_MINTS = 5555;
  uint256 public  MAX_FREE_PER_WALLET = 1;
  uint256 public  freeNFTAlreadyMinted = 0;

  constructor() ERC721A("potatoztown", "POTATOZ") {}

  function mint(uint256 numberOfTokens) external payable
  {
    require(isPublicSaleActive, "Public sale is paused.");
    require(totalSupply() + numberOfTokens < maxSupply + 1, "Maximum supply exceeded.");

    require(numberOfTokens <= MAX_MINTS_PER_TX, "Maximum mints per transaction exceeded.");

    if(freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS)
    {
        require(PUBLIC_SALE_PRICE * numberOfTokens <= msg.value, "Invalid ETH value sent. Error Code: 1");
    } 
    else 
    {
        uint sender_balance = balanceOf(msg.sender);
        
        if (sender_balance + numberOfTokens > MAX_FREE_PER_WALLET) 
        { 
            if (sender_balance < MAX_FREE_PER_WALLET)
            {
                uint free_available = MAX_FREE_PER_WALLET - sender_balance;
                uint to_be_paid = numberOfTokens - free_available;
                require(PUBLIC_SALE_PRICE * to_be_paid <= msg.value, "Invalid ETH value sent. Error Code: 2");

                freeNFTAlreadyMinted += free_available;
            }
            else
            {
                require(PUBLIC_SALE_PRICE * numberOfTokens <= msg.value, "Invalid ETH value sent. Error Code: 3");
            }
        }  
        else 
        {
            require(numberOfTokens <= MAX_FREE_PER_WALLET, "Maximum mints per transaction exceeded");
            freeNFTAlreadyMinted += numberOfTokens;
        }
    }

    _safeMint(msg.sender, numberOfTokens);
  }

  function setBaseURI(string memory baseURI)
    public
    onlyOwner
  {
    baseTokenURI = baseURI;
  }

  function treasuryMint(uint quantity)
    public
    onlyOwner
  {
    require(quantity > 0, "Invalid mint amount");
    require(totalSupply() + quantity <= maxSupply, "Maximum supply exceeded");

    _safeMint(msg.sender, quantity);
  }

  function withdraw()
    public
    onlyOwner
    nonReentrant
  {
    Address.sendValue(payable(msg.sender), address(this).balance);
  }

  function tokenURI(uint _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
    
    return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json"));
  }

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

  function getIsPublicSaleActive() 
    public
    view 
    returns (bool) {
      return isPublicSaleActive;
  }

  function getFreeNftAlreadyMinted() 
    public
    view 
    returns (uint256) {
      return freeNFTAlreadyMinted;
  }

  function setIsPublicSaleActive(bool _isPublicSaleActive)
      external
      onlyOwner
  {
      isPublicSaleActive = _isPublicSaleActive;
  }

  function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      NUM_FREE_MINTS = _numfreemints;
  }

  function getSalePrice()
  public
  view
  returns (uint256)
  {
    return PUBLIC_SALE_PRICE;
  }

  function setSalePrice(uint256 _price)
      external
      onlyOwner
  {
      PUBLIC_SALE_PRICE = _price;
  }

  function setMaxLimitPerTransaction(uint256 _limit)
      external
      onlyOwner
  {
      MAX_MINTS_PER_TX = _limit;
  }

  function setFreeLimitPerWallet(uint256 _limit)
      external
      onlyOwner
  {
      MAX_FREE_PER_WALLET = _limit;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","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":[],"name":"getFreeNftAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIsPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSalePrice","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":"isPublicSaleActive","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":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b92919062000232565b506000600b60006101000a81548160ff0219169083151502179055506115b3600c556014600d55660aa87bee538000600e556115b3600f55600160105560006011553480156200007a57600080fd5b506040518060400160405280600b81526020017f706f7461746f7a746f776e0000000000000000000000000000000000000000008152506040518060400160405280600781526020017f504f5441544f5a000000000000000000000000000000000000000000000000008152508160029080519060200190620000ff92919062000232565b5080600390805190602001906200011892919062000232565b50620001296200015f60201b60201c565b600081905550505062000151620001456200016460201b60201c565b6200016c60201b60201c565b600160098190555062000347565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024090620002e2565b90600052602060002090601f016020900481019282620002645760008555620002b0565b82601f106200027f57805160ff1916838001178555620002b0565b82800160010185558215620002b0579182015b82811115620002af57825182559160200191906001019062000292565b5b509050620002bf9190620002c3565b5090565b5b80821115620002de576000816000905550600101620002c4565b5090565b60006002820490506001821680620002fb57607f821691505b6020821081141562000312576200031162000318565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61376b80620003576000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063a0712d68116100ab578063d547cfb71161006f578063d547cfb71461078c578063d5abeb01146107b7578063e985e9c5146107e2578063efdc77881461081f578063f2fde38b146108485761021a565b8063a0712d68146106b6578063a22cb465146106d2578063b88d4fde146106fb578063c6a91b4214610724578063c87b56dd1461074f5761021a565b80638da5cb5b116100f25780638da5cb5b146105e157806395d89b411461060c578063982d669e1461063757806398710d1e146106625780639e9fcffc1461068d5761021a565b806370a0823114610537578063715018a6146105745780638bc9a4c61461058b5780638d87caff146105b65761021a565b80631e84c413116101a65780632fbc0bf1116101755780632fbc0bf1146104665780633ccfd60b1461049157806342842e0e146104a857806355f804b3146104d15780636352211e146104fa5761021a565b80631e84c413146103c0578063202f298a146103eb57806323b872dd1461041457806328cad13d1461043d5761021a565b8063095ea7b3116101ed578063095ea7b3146102ef5780630a00ae831461031857806318160ddd146103415780631919fed71461036c578063193ad7b4146103955761021a565b806301ffc9a71461021f57806306fdde031461025c57806307e89ec014610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906126c8565b610871565b6040516102539190612c13565b60405180910390f35b34801561026857600080fd5b50610271610903565b60405161027e9190612c2e565b60405180910390f35b34801561029357600080fd5b5061029c610995565b6040516102a99190612e30565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d4919061276b565b61099b565b6040516102e69190612bac565b60405180910390f35b3480156102fb57600080fd5b506103166004803603810190610311919061265b565b610a17565b005b34801561032457600080fd5b5061033f600480360381019061033a919061276b565b610b58565b005b34801561034d57600080fd5b50610356610b6a565b6040516103639190612e30565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061276b565b610b81565b005b3480156103a157600080fd5b506103aa610b93565b6040516103b79190612e30565b60405180910390f35b3480156103cc57600080fd5b506103d5610b99565b6040516103e29190612c13565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d919061276b565b610bac565b005b34801561042057600080fd5b5061043b60048036038101906104369190612545565b610bbe565b005b34801561044957600080fd5b50610464600480360381019061045f919061269b565b610ee3565b005b34801561047257600080fd5b5061047b610f08565b6040516104889190612e30565b60405180910390f35b34801561049d57600080fd5b506104a6610f12565b005b3480156104b457600080fd5b506104cf60048036038101906104ca9190612545565b610f7c565b005b3480156104dd57600080fd5b506104f860048036038101906104f39190612722565b610f9c565b005b34801561050657600080fd5b50610521600480360381019061051c919061276b565b610fbe565b60405161052e9190612bac565b60405180910390f35b34801561054357600080fd5b5061055e600480360381019061055991906124d8565b610fd0565b60405161056b9190612e30565b60405180910390f35b34801561058057600080fd5b50610589611089565b005b34801561059757600080fd5b506105a061109d565b6040516105ad9190612c13565b60405180910390f35b3480156105c257600080fd5b506105cb6110b4565b6040516105d89190612e30565b60405180910390f35b3480156105ed57600080fd5b506105f66110be565b6040516106039190612bac565b60405180910390f35b34801561061857600080fd5b506106216110e8565b60405161062e9190612c2e565b60405180910390f35b34801561064357600080fd5b5061064c61117a565b6040516106599190612e30565b60405180910390f35b34801561066e57600080fd5b50610677611180565b6040516106849190612e30565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af919061276b565b611186565b005b6106d060048036038101906106cb919061276b565b611198565b005b3480156106de57600080fd5b506106f960048036038101906106f4919061261b565b61147c565b005b34801561070757600080fd5b50610722600480360381019061071d9190612598565b6115f4565b005b34801561073057600080fd5b50610739611667565b6040516107469190612e30565b60405180910390f35b34801561075b57600080fd5b506107766004803603810190610771919061276b565b61166d565b6040516107839190612c2e565b60405180910390f35b34801561079857600080fd5b506107a16116e9565b6040516107ae9190612c2e565b60405180910390f35b3480156107c357600080fd5b506107cc611777565b6040516107d99190612e30565b60405180910390f35b3480156107ee57600080fd5b5061080960048036038101906108049190612505565b61177d565b6040516108169190612c13565b60405180910390f35b34801561082b57600080fd5b506108466004803603810190610841919061276b565b611811565b005b34801561085457600080fd5b5061086f600480360381019061086a91906124d8565b6118c0565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108cc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108fc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461091290613100565b80601f016020809104026020016040519081016040528092919081815260200182805461093e90613100565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b600e5481565b60006109a682611944565b6109dc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2282610fbe565b90508073ffffffffffffffffffffffffffffffffffffffff16610a436119a3565b73ffffffffffffffffffffffffffffffffffffffff1614610aa657610a6f81610a6a6119a3565b61177d565b610aa5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b606119ab565b80600f8190555050565b6000610b74611a29565b6001546000540303905090565b610b896119ab565b80600e8190555050565b60115481565b600b60009054906101000a900460ff1681565b610bb46119ab565b8060108190555050565b6000610bc982611a2e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c30576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3c84611afc565b91509150610c528187610c4d6119a3565b611b1e565b610c9e57610c6786610c626119a3565b61177d565b610c9d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d05576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d128686866001611b62565b8015610d1d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610deb85610dc7888887611b68565b7c020000000000000000000000000000000000000000000000000000000017611b90565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e73576000600185019050600060046000838152602001908152602001600020541415610e71576000548114610e70578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610edb8686866001611bbb565b505050505050565b610eeb6119ab565b80600b60006101000a81548160ff02191690831515021790555050565b6000600e54905090565b610f1a6119ab565b60026009541415610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790612e10565b60405180910390fd5b6002600981905550610f723347611bc1565b6001600981905550565b610f97838383604051806020016040528060008152506115f4565b505050565b610fa46119ab565b80600a9080519060200190610fba9291906122ec565b5050565b6000610fc982611a2e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611038576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110916119ab565b61109b6000611cb5565b565b6000600b60009054906101000a900460ff16905090565b6000601154905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110f790613100565b80601f016020809104026020016040519081016040528092919081815260200182805461112390613100565b80156111705780601f1061114557610100808354040283529160200191611170565b820191906000526020600020905b81548152906001019060200180831161115357829003601f168201915b5050505050905090565b600f5481565b60105481565b61118e6119ab565b80600d8190555050565b600b60009054906101000a900460ff166111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90612d30565b60405180910390fd5b6001600c546111f69190612f35565b816111ff610b6a565b6112099190612f35565b10611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090612cd0565b60405180910390fd5b600d5481111561128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590612dd0565b60405180910390fd5b600f548160115461129f9190612f35565b11156112fa573481600e546112b49190612fbc565b11156112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec90612db0565b60405180910390fd5b61146f565b600061130533610fd0565b905060105482826113169190612f35565b111561140e576010548110156113b8576000816010546113369190613016565b9050600081846113469190613016565b90503481600e546113579190612fbc565b1115611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90612cf0565b60405180910390fd5b81601160008282546113aa9190612f35565b925050819055505050611409565b3482600e546113c79190612fbc565b1115611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90612c50565b60405180910390fd5b5b61146d565b601054821115611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90612d90565b60405180910390fd5b81601160008282546114659190612f35565b925050819055505b505b6114793382611d7b565b50565b6114846119a3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114f66119a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a36119a3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e89190612c13565b60405180910390a35050565b6115ff848484610bbe565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116615761162a84848484611d99565b611660576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d5481565b606061167882611944565b6116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90612d70565b60405180910390fd5b600a6116c283611ef9565b6040516020016116d3929190612b5d565b6040516020818303038152906040529050919050565b600a80546116f690613100565b80601f016020809104026020016040519081016040528092919081815260200182805461172290613100565b801561176f5780601f106117445761010080835404028352916020019161176f565b820191906000526020600020905b81548152906001019060200180831161175257829003601f168201915b505050505081565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118196119ab565b6000811161185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390612df0565b60405180910390fd5b600c5481611868610b6a565b6118729190612f35565b11156118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa90612d10565b60405180910390fd5b6118bd3382611d7b565b50565b6118c86119ab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f90612c70565b60405180910390fd5b61194181611cb5565b50565b60008161194f611a29565b1115801561195e575060005482105b801561199c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6119b361205a565b73ffffffffffffffffffffffffffffffffffffffff166119d16110be565b73ffffffffffffffffffffffffffffffffffffffff1614611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e90612d50565b60405180910390fd5b565b600090565b60008082905080611a3d611a29565b11611ac557600054811015611ac45760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ac2575b6000811415611ab8576004600083600190039350838152602001908152602001600020549050611a8d565b8092505050611af7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b7f868684612062565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb90612cb0565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611c2a90612b97565b60006040518083038185875af1925050503d8060008114611c67576040519150601f19603f3d011682016040523d82523d6000602084013e611c6c565b606091505b5050905080611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca790612c90565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d9582826040518060200160405280600081525061206b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dbf6119a3565b8786866040518563ffffffff1660e01b8152600401611de19493929190612bc7565b602060405180830381600087803b158015611dfb57600080fd5b505af1925050508015611e2c57506040513d601f19601f82011682018060405250810190611e2991906126f5565b60015b611ea6573d8060008114611e5c576040519150601f19603f3d011682016040523d82523d6000602084013e611e61565b606091505b50600081511415611e9e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611f41576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612055565b600082905060005b60008214611f73578080611f5c90613163565b915050600a82611f6c9190612f8b565b9150611f49565b60008167ffffffffffffffff811115611f8f57611f8e613299565b5b6040519080825280601f01601f191660200182016040528015611fc15781602001600182028036833780820191505090505b5090505b6000851461204e57600182611fda9190613016565b9150600a85611fe991906131ac565b6030611ff59190612f35565b60f81b81838151811061200b5761200a61326a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120479190612f8b565b9450611fc5565b8093505050505b919050565b600033905090565b60009392505050565b6120758383612108565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461210357600080549050600083820390505b6120b56000868380600101945086611d99565b6120eb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120a257816000541461210057600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612175576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156121b0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121bd6000848385611b62565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612234836122256000866000611b68565b61222e856122dc565b17611b90565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612258578060008190555050506122d76000848385611bbb565b505050565b60006001821460e11b9050919050565b8280546122f890613100565b90600052602060002090601f01602090048101928261231a5760008555612361565b82601f1061233357805160ff1916838001178555612361565b82800160010185558215612361579182015b82811115612360578251825591602001919060010190612345565b5b50905061236e9190612372565b5090565b5b8082111561238b576000816000905550600101612373565b5090565b60006123a261239d84612e70565b612e4b565b9050828152602081018484840111156123be576123bd6132cd565b5b6123c98482856130be565b509392505050565b60006123e46123df84612ea1565b612e4b565b905082815260208101848484011115612400576123ff6132cd565b5b61240b8482856130be565b509392505050565b600081359050612422816136d9565b92915050565b600081359050612437816136f0565b92915050565b60008135905061244c81613707565b92915050565b60008151905061246181613707565b92915050565b600082601f83011261247c5761247b6132c8565b5b813561248c84826020860161238f565b91505092915050565b600082601f8301126124aa576124a96132c8565b5b81356124ba8482602086016123d1565b91505092915050565b6000813590506124d28161371e565b92915050565b6000602082840312156124ee576124ed6132d7565b5b60006124fc84828501612413565b91505092915050565b6000806040838503121561251c5761251b6132d7565b5b600061252a85828601612413565b925050602061253b85828601612413565b9150509250929050565b60008060006060848603121561255e5761255d6132d7565b5b600061256c86828701612413565b935050602061257d86828701612413565b925050604061258e868287016124c3565b9150509250925092565b600080600080608085870312156125b2576125b16132d7565b5b60006125c087828801612413565b94505060206125d187828801612413565b93505060406125e2878288016124c3565b925050606085013567ffffffffffffffff811115612603576126026132d2565b5b61260f87828801612467565b91505092959194509250565b60008060408385031215612632576126316132d7565b5b600061264085828601612413565b925050602061265185828601612428565b9150509250929050565b60008060408385031215612672576126716132d7565b5b600061268085828601612413565b9250506020612691858286016124c3565b9150509250929050565b6000602082840312156126b1576126b06132d7565b5b60006126bf84828501612428565b91505092915050565b6000602082840312156126de576126dd6132d7565b5b60006126ec8482850161243d565b91505092915050565b60006020828403121561270b5761270a6132d7565b5b600061271984828501612452565b91505092915050565b600060208284031215612738576127376132d7565b5b600082013567ffffffffffffffff811115612756576127556132d2565b5b61276284828501612495565b91505092915050565b600060208284031215612781576127806132d7565b5b600061278f848285016124c3565b91505092915050565b6127a18161304a565b82525050565b6127b08161305c565b82525050565b60006127c182612ee7565b6127cb8185612efd565b93506127db8185602086016130cd565b6127e4816132dc565b840191505092915050565b60006127fa82612ef2565b6128048185612f19565b93506128148185602086016130cd565b61281d816132dc565b840191505092915050565b600061283382612ef2565b61283d8185612f2a565b935061284d8185602086016130cd565b80840191505092915050565b6000815461286681613100565b6128708186612f2a565b9450600182166000811461288b576001811461289c576128cf565b60ff198316865281860193506128cf565b6128a585612ed2565b60005b838110156128c7578154818901526001820191506020810190506128a8565b838801955050505b50505092915050565b60006128e5602583612f19565b91506128f0826132ed565b604082019050919050565b6000612908602683612f19565b91506129138261333c565b604082019050919050565b600061292b603a83612f19565b91506129368261338b565b604082019050919050565b600061294e601d83612f19565b9150612959826133da565b602082019050919050565b6000612971601883612f19565b915061297c82613403565b602082019050919050565b6000612994602583612f19565b915061299f8261342c565b604082019050919050565b60006129b7601783612f19565b91506129c28261347b565b602082019050919050565b60006129da601683612f19565b91506129e5826134a4565b602082019050919050565b60006129fd600583612f2a565b9150612a08826134cd565b600582019050919050565b6000612a20602083612f19565b9150612a2b826134f6565b602082019050919050565b6000612a43602f83612f19565b9150612a4e8261351f565b604082019050919050565b6000612a66602683612f19565b9150612a718261356e565b604082019050919050565b6000612a89602583612f19565b9150612a94826135bd565b604082019050919050565b6000612aac602783612f19565b9150612ab78261360c565b604082019050919050565b6000612acf600083612f0e565b9150612ada8261365b565b600082019050919050565b6000612af2601383612f19565b9150612afd8261365e565b602082019050919050565b6000612b15601f83612f19565b9150612b2082613687565b602082019050919050565b6000612b38600183612f2a565b9150612b43826136b0565b600182019050919050565b612b57816130b4565b82525050565b6000612b698285612859565b9150612b7482612b2b565b9150612b808284612828565b9150612b8b826129f0565b91508190509392505050565b6000612ba282612ac2565b9150819050919050565b6000602082019050612bc16000830184612798565b92915050565b6000608082019050612bdc6000830187612798565b612be96020830186612798565b612bf66040830185612b4e565b8181036060830152612c0881846127b6565b905095945050505050565b6000602082019050612c2860008301846127a7565b92915050565b60006020820190508181036000830152612c4881846127ef565b905092915050565b60006020820190508181036000830152612c69816128d8565b9050919050565b60006020820190508181036000830152612c89816128fb565b9050919050565b60006020820190508181036000830152612ca98161291e565b9050919050565b60006020820190508181036000830152612cc981612941565b9050919050565b60006020820190508181036000830152612ce981612964565b9050919050565b60006020820190508181036000830152612d0981612987565b9050919050565b60006020820190508181036000830152612d29816129aa565b9050919050565b60006020820190508181036000830152612d49816129cd565b9050919050565b60006020820190508181036000830152612d6981612a13565b9050919050565b60006020820190508181036000830152612d8981612a36565b9050919050565b60006020820190508181036000830152612da981612a59565b9050919050565b60006020820190508181036000830152612dc981612a7c565b9050919050565b60006020820190508181036000830152612de981612a9f565b9050919050565b60006020820190508181036000830152612e0981612ae5565b9050919050565b60006020820190508181036000830152612e2981612b08565b9050919050565b6000602082019050612e456000830184612b4e565b92915050565b6000612e55612e66565b9050612e618282613132565b919050565b6000604051905090565b600067ffffffffffffffff821115612e8b57612e8a613299565b5b612e94826132dc565b9050602081019050919050565b600067ffffffffffffffff821115612ebc57612ebb613299565b5b612ec5826132dc565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f40826130b4565b9150612f4b836130b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f8057612f7f6131dd565b5b828201905092915050565b6000612f96826130b4565b9150612fa1836130b4565b925082612fb157612fb061320c565b5b828204905092915050565b6000612fc7826130b4565b9150612fd2836130b4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561300b5761300a6131dd565b5b828202905092915050565b6000613021826130b4565b915061302c836130b4565b92508282101561303f5761303e6131dd565b5b828203905092915050565b600061305582613094565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130eb5780820151818401526020810190506130d0565b838111156130fa576000848401525b50505050565b6000600282049050600182168061311857607f821691505b6020821081141561312c5761312b61323b565b5b50919050565b61313b826132dc565b810181811067ffffffffffffffff8211171561315a57613159613299565b5b80604052505050565b600061316e826130b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131a1576131a06131dd565b5b600182019050919050565b60006131b7826130b4565b91506131c2836130b4565b9250826131d2576131d161320c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2033000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178696d756d20737570706c792065786365656465642e0000000000000000600082015250565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2032000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f5075626c69632073616c65206973207061757365642e00000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465640000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2031000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465642e00000000000000000000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6136e28161304a565b81146136ed57600080fd5b50565b6136f98161305c565b811461370457600080fd5b50565b61371081613068565b811461371b57600080fd5b50565b613727816130b4565b811461373257600080fd5b5056fea2646970667358221220806c7166deca0d186c4d17b55a7f9618247326d7722d050237ef42ad7fd6e52f64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806370a0823111610123578063a0712d68116100ab578063d547cfb71161006f578063d547cfb71461078c578063d5abeb01146107b7578063e985e9c5146107e2578063efdc77881461081f578063f2fde38b146108485761021a565b8063a0712d68146106b6578063a22cb465146106d2578063b88d4fde146106fb578063c6a91b4214610724578063c87b56dd1461074f5761021a565b80638da5cb5b116100f25780638da5cb5b146105e157806395d89b411461060c578063982d669e1461063757806398710d1e146106625780639e9fcffc1461068d5761021a565b806370a0823114610537578063715018a6146105745780638bc9a4c61461058b5780638d87caff146105b65761021a565b80631e84c413116101a65780632fbc0bf1116101755780632fbc0bf1146104665780633ccfd60b1461049157806342842e0e146104a857806355f804b3146104d15780636352211e146104fa5761021a565b80631e84c413146103c0578063202f298a146103eb57806323b872dd1461041457806328cad13d1461043d5761021a565b8063095ea7b3116101ed578063095ea7b3146102ef5780630a00ae831461031857806318160ddd146103415780631919fed71461036c578063193ad7b4146103955761021a565b806301ffc9a71461021f57806306fdde031461025c57806307e89ec014610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906126c8565b610871565b6040516102539190612c13565b60405180910390f35b34801561026857600080fd5b50610271610903565b60405161027e9190612c2e565b60405180910390f35b34801561029357600080fd5b5061029c610995565b6040516102a99190612e30565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d4919061276b565b61099b565b6040516102e69190612bac565b60405180910390f35b3480156102fb57600080fd5b506103166004803603810190610311919061265b565b610a17565b005b34801561032457600080fd5b5061033f600480360381019061033a919061276b565b610b58565b005b34801561034d57600080fd5b50610356610b6a565b6040516103639190612e30565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061276b565b610b81565b005b3480156103a157600080fd5b506103aa610b93565b6040516103b79190612e30565b60405180910390f35b3480156103cc57600080fd5b506103d5610b99565b6040516103e29190612c13565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d919061276b565b610bac565b005b34801561042057600080fd5b5061043b60048036038101906104369190612545565b610bbe565b005b34801561044957600080fd5b50610464600480360381019061045f919061269b565b610ee3565b005b34801561047257600080fd5b5061047b610f08565b6040516104889190612e30565b60405180910390f35b34801561049d57600080fd5b506104a6610f12565b005b3480156104b457600080fd5b506104cf60048036038101906104ca9190612545565b610f7c565b005b3480156104dd57600080fd5b506104f860048036038101906104f39190612722565b610f9c565b005b34801561050657600080fd5b50610521600480360381019061051c919061276b565b610fbe565b60405161052e9190612bac565b60405180910390f35b34801561054357600080fd5b5061055e600480360381019061055991906124d8565b610fd0565b60405161056b9190612e30565b60405180910390f35b34801561058057600080fd5b50610589611089565b005b34801561059757600080fd5b506105a061109d565b6040516105ad9190612c13565b60405180910390f35b3480156105c257600080fd5b506105cb6110b4565b6040516105d89190612e30565b60405180910390f35b3480156105ed57600080fd5b506105f66110be565b6040516106039190612bac565b60405180910390f35b34801561061857600080fd5b506106216110e8565b60405161062e9190612c2e565b60405180910390f35b34801561064357600080fd5b5061064c61117a565b6040516106599190612e30565b60405180910390f35b34801561066e57600080fd5b50610677611180565b6040516106849190612e30565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af919061276b565b611186565b005b6106d060048036038101906106cb919061276b565b611198565b005b3480156106de57600080fd5b506106f960048036038101906106f4919061261b565b61147c565b005b34801561070757600080fd5b50610722600480360381019061071d9190612598565b6115f4565b005b34801561073057600080fd5b50610739611667565b6040516107469190612e30565b60405180910390f35b34801561075b57600080fd5b506107766004803603810190610771919061276b565b61166d565b6040516107839190612c2e565b60405180910390f35b34801561079857600080fd5b506107a16116e9565b6040516107ae9190612c2e565b60405180910390f35b3480156107c357600080fd5b506107cc611777565b6040516107d99190612e30565b60405180910390f35b3480156107ee57600080fd5b5061080960048036038101906108049190612505565b61177d565b6040516108169190612c13565b60405180910390f35b34801561082b57600080fd5b506108466004803603810190610841919061276b565b611811565b005b34801561085457600080fd5b5061086f600480360381019061086a91906124d8565b6118c0565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108cc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108fc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461091290613100565b80601f016020809104026020016040519081016040528092919081815260200182805461093e90613100565b801561098b5780601f106109605761010080835404028352916020019161098b565b820191906000526020600020905b81548152906001019060200180831161096e57829003601f168201915b5050505050905090565b600e5481565b60006109a682611944565b6109dc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2282610fbe565b90508073ffffffffffffffffffffffffffffffffffffffff16610a436119a3565b73ffffffffffffffffffffffffffffffffffffffff1614610aa657610a6f81610a6a6119a3565b61177d565b610aa5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b606119ab565b80600f8190555050565b6000610b74611a29565b6001546000540303905090565b610b896119ab565b80600e8190555050565b60115481565b600b60009054906101000a900460ff1681565b610bb46119ab565b8060108190555050565b6000610bc982611a2e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c30576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3c84611afc565b91509150610c528187610c4d6119a3565b611b1e565b610c9e57610c6786610c626119a3565b61177d565b610c9d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d05576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d128686866001611b62565b8015610d1d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610deb85610dc7888887611b68565b7c020000000000000000000000000000000000000000000000000000000017611b90565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e73576000600185019050600060046000838152602001908152602001600020541415610e71576000548114610e70578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610edb8686866001611bbb565b505050505050565b610eeb6119ab565b80600b60006101000a81548160ff02191690831515021790555050565b6000600e54905090565b610f1a6119ab565b60026009541415610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5790612e10565b60405180910390fd5b6002600981905550610f723347611bc1565b6001600981905550565b610f97838383604051806020016040528060008152506115f4565b505050565b610fa46119ab565b80600a9080519060200190610fba9291906122ec565b5050565b6000610fc982611a2e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611038576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110916119ab565b61109b6000611cb5565b565b6000600b60009054906101000a900460ff16905090565b6000601154905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110f790613100565b80601f016020809104026020016040519081016040528092919081815260200182805461112390613100565b80156111705780601f1061114557610100808354040283529160200191611170565b820191906000526020600020905b81548152906001019060200180831161115357829003601f168201915b5050505050905090565b600f5481565b60105481565b61118e6119ab565b80600d8190555050565b600b60009054906101000a900460ff166111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de90612d30565b60405180910390fd5b6001600c546111f69190612f35565b816111ff610b6a565b6112099190612f35565b10611249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124090612cd0565b60405180910390fd5b600d5481111561128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590612dd0565b60405180910390fd5b600f548160115461129f9190612f35565b11156112fa573481600e546112b49190612fbc565b11156112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec90612db0565b60405180910390fd5b61146f565b600061130533610fd0565b905060105482826113169190612f35565b111561140e576010548110156113b8576000816010546113369190613016565b9050600081846113469190613016565b90503481600e546113579190612fbc565b1115611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90612cf0565b60405180910390fd5b81601160008282546113aa9190612f35565b925050819055505050611409565b3482600e546113c79190612fbc565b1115611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90612c50565b60405180910390fd5b5b61146d565b601054821115611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90612d90565b60405180910390fd5b81601160008282546114659190612f35565b925050819055505b505b6114793382611d7b565b50565b6114846119a3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114e9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114f66119a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a36119a3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e89190612c13565b60405180910390a35050565b6115ff848484610bbe565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116615761162a84848484611d99565b611660576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d5481565b606061167882611944565b6116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae90612d70565b60405180910390fd5b600a6116c283611ef9565b6040516020016116d3929190612b5d565b6040516020818303038152906040529050919050565b600a80546116f690613100565b80601f016020809104026020016040519081016040528092919081815260200182805461172290613100565b801561176f5780601f106117445761010080835404028352916020019161176f565b820191906000526020600020905b81548152906001019060200180831161175257829003601f168201915b505050505081565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118196119ab565b6000811161185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390612df0565b60405180910390fd5b600c5481611868610b6a565b6118729190612f35565b11156118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa90612d10565b60405180910390fd5b6118bd3382611d7b565b50565b6118c86119ab565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192f90612c70565b60405180910390fd5b61194181611cb5565b50565b60008161194f611a29565b1115801561195e575060005482105b801561199c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6119b361205a565b73ffffffffffffffffffffffffffffffffffffffff166119d16110be565b73ffffffffffffffffffffffffffffffffffffffff1614611a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1e90612d50565b60405180910390fd5b565b600090565b60008082905080611a3d611a29565b11611ac557600054811015611ac45760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ac2575b6000811415611ab8576004600083600190039350838152602001908152602001600020549050611a8d565b8092505050611af7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b7f868684612062565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb90612cb0565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611c2a90612b97565b60006040518083038185875af1925050503d8060008114611c67576040519150601f19603f3d011682016040523d82523d6000602084013e611c6c565b606091505b5050905080611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca790612c90565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d9582826040518060200160405280600081525061206b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dbf6119a3565b8786866040518563ffffffff1660e01b8152600401611de19493929190612bc7565b602060405180830381600087803b158015611dfb57600080fd5b505af1925050508015611e2c57506040513d601f19601f82011682018060405250810190611e2991906126f5565b60015b611ea6573d8060008114611e5c576040519150601f19603f3d011682016040523d82523d6000602084013e611e61565b606091505b50600081511415611e9e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611f41576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612055565b600082905060005b60008214611f73578080611f5c90613163565b915050600a82611f6c9190612f8b565b9150611f49565b60008167ffffffffffffffff811115611f8f57611f8e613299565b5b6040519080825280601f01601f191660200182016040528015611fc15781602001600182028036833780820191505090505b5090505b6000851461204e57600182611fda9190613016565b9150600a85611fe991906131ac565b6030611ff59190612f35565b60f81b81838151811061200b5761200a61326a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120479190612f8b565b9450611fc5565b8093505050505b919050565b600033905090565b60009392505050565b6120758383612108565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461210357600080549050600083820390505b6120b56000868380600101945086611d99565b6120eb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120a257816000541461210057600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612175576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156121b0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121bd6000848385611b62565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612234836122256000866000611b68565b61222e856122dc565b17611b90565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612258578060008190555050506122d76000848385611bbb565b505050565b60006001821460e11b9050919050565b8280546122f890613100565b90600052602060002090601f01602090048101928261231a5760008555612361565b82601f1061233357805160ff1916838001178555612361565b82800160010185558215612361579182015b82811115612360578251825591602001919060010190612345565b5b50905061236e9190612372565b5090565b5b8082111561238b576000816000905550600101612373565b5090565b60006123a261239d84612e70565b612e4b565b9050828152602081018484840111156123be576123bd6132cd565b5b6123c98482856130be565b509392505050565b60006123e46123df84612ea1565b612e4b565b905082815260208101848484011115612400576123ff6132cd565b5b61240b8482856130be565b509392505050565b600081359050612422816136d9565b92915050565b600081359050612437816136f0565b92915050565b60008135905061244c81613707565b92915050565b60008151905061246181613707565b92915050565b600082601f83011261247c5761247b6132c8565b5b813561248c84826020860161238f565b91505092915050565b600082601f8301126124aa576124a96132c8565b5b81356124ba8482602086016123d1565b91505092915050565b6000813590506124d28161371e565b92915050565b6000602082840312156124ee576124ed6132d7565b5b60006124fc84828501612413565b91505092915050565b6000806040838503121561251c5761251b6132d7565b5b600061252a85828601612413565b925050602061253b85828601612413565b9150509250929050565b60008060006060848603121561255e5761255d6132d7565b5b600061256c86828701612413565b935050602061257d86828701612413565b925050604061258e868287016124c3565b9150509250925092565b600080600080608085870312156125b2576125b16132d7565b5b60006125c087828801612413565b94505060206125d187828801612413565b93505060406125e2878288016124c3565b925050606085013567ffffffffffffffff811115612603576126026132d2565b5b61260f87828801612467565b91505092959194509250565b60008060408385031215612632576126316132d7565b5b600061264085828601612413565b925050602061265185828601612428565b9150509250929050565b60008060408385031215612672576126716132d7565b5b600061268085828601612413565b9250506020612691858286016124c3565b9150509250929050565b6000602082840312156126b1576126b06132d7565b5b60006126bf84828501612428565b91505092915050565b6000602082840312156126de576126dd6132d7565b5b60006126ec8482850161243d565b91505092915050565b60006020828403121561270b5761270a6132d7565b5b600061271984828501612452565b91505092915050565b600060208284031215612738576127376132d7565b5b600082013567ffffffffffffffff811115612756576127556132d2565b5b61276284828501612495565b91505092915050565b600060208284031215612781576127806132d7565b5b600061278f848285016124c3565b91505092915050565b6127a18161304a565b82525050565b6127b08161305c565b82525050565b60006127c182612ee7565b6127cb8185612efd565b93506127db8185602086016130cd565b6127e4816132dc565b840191505092915050565b60006127fa82612ef2565b6128048185612f19565b93506128148185602086016130cd565b61281d816132dc565b840191505092915050565b600061283382612ef2565b61283d8185612f2a565b935061284d8185602086016130cd565b80840191505092915050565b6000815461286681613100565b6128708186612f2a565b9450600182166000811461288b576001811461289c576128cf565b60ff198316865281860193506128cf565b6128a585612ed2565b60005b838110156128c7578154818901526001820191506020810190506128a8565b838801955050505b50505092915050565b60006128e5602583612f19565b91506128f0826132ed565b604082019050919050565b6000612908602683612f19565b91506129138261333c565b604082019050919050565b600061292b603a83612f19565b91506129368261338b565b604082019050919050565b600061294e601d83612f19565b9150612959826133da565b602082019050919050565b6000612971601883612f19565b915061297c82613403565b602082019050919050565b6000612994602583612f19565b915061299f8261342c565b604082019050919050565b60006129b7601783612f19565b91506129c28261347b565b602082019050919050565b60006129da601683612f19565b91506129e5826134a4565b602082019050919050565b60006129fd600583612f2a565b9150612a08826134cd565b600582019050919050565b6000612a20602083612f19565b9150612a2b826134f6565b602082019050919050565b6000612a43602f83612f19565b9150612a4e8261351f565b604082019050919050565b6000612a66602683612f19565b9150612a718261356e565b604082019050919050565b6000612a89602583612f19565b9150612a94826135bd565b604082019050919050565b6000612aac602783612f19565b9150612ab78261360c565b604082019050919050565b6000612acf600083612f0e565b9150612ada8261365b565b600082019050919050565b6000612af2601383612f19565b9150612afd8261365e565b602082019050919050565b6000612b15601f83612f19565b9150612b2082613687565b602082019050919050565b6000612b38600183612f2a565b9150612b43826136b0565b600182019050919050565b612b57816130b4565b82525050565b6000612b698285612859565b9150612b7482612b2b565b9150612b808284612828565b9150612b8b826129f0565b91508190509392505050565b6000612ba282612ac2565b9150819050919050565b6000602082019050612bc16000830184612798565b92915050565b6000608082019050612bdc6000830187612798565b612be96020830186612798565b612bf66040830185612b4e565b8181036060830152612c0881846127b6565b905095945050505050565b6000602082019050612c2860008301846127a7565b92915050565b60006020820190508181036000830152612c4881846127ef565b905092915050565b60006020820190508181036000830152612c69816128d8565b9050919050565b60006020820190508181036000830152612c89816128fb565b9050919050565b60006020820190508181036000830152612ca98161291e565b9050919050565b60006020820190508181036000830152612cc981612941565b9050919050565b60006020820190508181036000830152612ce981612964565b9050919050565b60006020820190508181036000830152612d0981612987565b9050919050565b60006020820190508181036000830152612d29816129aa565b9050919050565b60006020820190508181036000830152612d49816129cd565b9050919050565b60006020820190508181036000830152612d6981612a13565b9050919050565b60006020820190508181036000830152612d8981612a36565b9050919050565b60006020820190508181036000830152612da981612a59565b9050919050565b60006020820190508181036000830152612dc981612a7c565b9050919050565b60006020820190508181036000830152612de981612a9f565b9050919050565b60006020820190508181036000830152612e0981612ae5565b9050919050565b60006020820190508181036000830152612e2981612b08565b9050919050565b6000602082019050612e456000830184612b4e565b92915050565b6000612e55612e66565b9050612e618282613132565b919050565b6000604051905090565b600067ffffffffffffffff821115612e8b57612e8a613299565b5b612e94826132dc565b9050602081019050919050565b600067ffffffffffffffff821115612ebc57612ebb613299565b5b612ec5826132dc565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f40826130b4565b9150612f4b836130b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f8057612f7f6131dd565b5b828201905092915050565b6000612f96826130b4565b9150612fa1836130b4565b925082612fb157612fb061320c565b5b828204905092915050565b6000612fc7826130b4565b9150612fd2836130b4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561300b5761300a6131dd565b5b828202905092915050565b6000613021826130b4565b915061302c836130b4565b92508282101561303f5761303e6131dd565b5b828203905092915050565b600061305582613094565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130eb5780820151818401526020810190506130d0565b838111156130fa576000848401525b50505050565b6000600282049050600182168061311857607f821691505b6020821081141561312c5761312b61323b565b5b50919050565b61313b826132dc565b810181811067ffffffffffffffff8211171561315a57613159613299565b5b80604052505050565b600061316e826130b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131a1576131a06131dd565b5b600182019050919050565b60006131b7826130b4565b91506131c2836130b4565b9250826131d2576131d161320c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2033000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178696d756d20737570706c792065786365656465642e0000000000000000600082015250565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2032000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f5075626c69632073616c65206973207061757365642e00000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465640000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2031000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465642e00000000000000000000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6136e28161304a565b81146136ed57600080fd5b50565b6136f98161305c565b811461370457600080fd5b50565b61371081613068565b811461371b57600080fd5b50565b613727816130b4565b811461373257600080fd5b5056fea2646970667358221220806c7166deca0d186c4d17b55a7f9618247326d7722d050237ef42ad7fd6e52f64736f6c63430008070033

Deployed Bytecode Sourcemap

62244:4006:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32048:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37695:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62528:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39641:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39189:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65623:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31102:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65867:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62666:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62404:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66121:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48906:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65469:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65758:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64624:142;;;;;;;;;;;;;:::i;:::-;;40531:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64260:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37484:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32727:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16687:103;;;;;;;;;;;;;:::i;:::-;;65216:117;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65339:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16039:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37864:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62580:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62622:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65988:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62769:1485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39917:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40787:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62486:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64772:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62366:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62449:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40296:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64374:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16945:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32048:615;32133:4;32448:10;32433:25;;:11;:25;;;;:102;;;;32525:10;32510:25;;:11;:25;;;;32433:102;:179;;;;32602:10;32587:25;;:11;:25;;;;32433:179;32413:199;;32048:615;;;:::o;37695:100::-;37749:13;37782:5;37775:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37695:100;:::o;62528:47::-;;;;:::o;39641:204::-;39709:7;39734:16;39742:7;39734;:16::i;:::-;39729:64;;39759:34;;;;;;;;;;;;;;39729:64;39813:15;:24;39829:7;39813:24;;;;;;;;;;;;;;;;;;;;;39806:31;;39641:204;;;:::o;39189:386::-;39262:13;39278:16;39286:7;39278;:16::i;:::-;39262:32;;39334:5;39311:28;;:19;:17;:19::i;:::-;:28;;;39307:175;;39359:44;39376:5;39383:19;:17;:19::i;:::-;39359:16;:44::i;:::-;39354:128;;39431:35;;;;;;;;;;;;;;39354:128;39307:175;39521:2;39494:15;:24;39510:7;39494:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39559:7;39555:2;39539:28;;39548:5;39539:28;;;;;;;;;;;;39251:324;39189:386;;:::o;65623:129::-;15925:13;:11;:13::i;:::-;65733::::1;65716:14;:30;;;;65623:129:::0;:::o;31102:315::-;31155:7;31383:15;:13;:15::i;:::-;31368:12;;31352:13;;:28;:46;31345:53;;31102:315;:::o;65867:115::-;15925:13;:11;:13::i;:::-;65970:6:::1;65950:17;:26;;;;65867:115:::0;:::o;62666:40::-;;;;:::o;62404:38::-;;;;;;;;;;;;;:::o;66121:126::-;15925:13;:11;:13::i;:::-;66235:6:::1;66213:19;:28;;;;66121:126:::0;:::o;48906:2800::-;49040:27;49070;49089:7;49070:18;:27::i;:::-;49040:57;;49155:4;49114:45;;49130:19;49114:45;;;49110:86;;49168:28;;;;;;;;;;;;;;49110:86;49210:27;49239:23;49266:28;49286:7;49266:19;:28::i;:::-;49209:85;;;;49394:62;49413:15;49430:4;49436:19;:17;:19::i;:::-;49394:18;:62::i;:::-;49389:174;;49476:43;49493:4;49499:19;:17;:19::i;:::-;49476:16;:43::i;:::-;49471:92;;49528:35;;;;;;;;;;;;;;49471:92;49389:174;49594:1;49580:16;;:2;:16;;;49576:52;;;49605:23;;;;;;;;;;;;;;49576:52;49641:43;49663:4;49669:2;49673:7;49682:1;49641:21;:43::i;:::-;49777:15;49774:160;;;49917:1;49896:19;49889:30;49774:160;50312:18;:24;50331:4;50312:24;;;;;;;;;;;;;;;;50310:26;;;;;;;;;;;;50381:18;:22;50400:2;50381:22;;;;;;;;;;;;;;;;50379:24;;;;;;;;;;;50703:145;50740:2;50788:45;50803:4;50809:2;50813:19;50788:14;:45::i;:::-;28330:8;50761:72;50703:18;:145::i;:::-;50674:17;:26;50692:7;50674:26;;;;;;;;;;;:174;;;;51018:1;28330:8;50968:19;:46;:51;50964:626;;;51040:19;51072:1;51062:7;:11;51040:33;;51229:1;51195:17;:30;51213:11;51195:30;;;;;;;;;;;;:35;51191:384;;;51333:13;;51318:11;:28;51314:242;;51513:19;51480:17;:30;51498:11;51480:30;;;;;;;;;;;:52;;;;51314:242;51191:384;51021:569;50964:626;51637:7;51633:2;51618:27;;51627:4;51618:27;;;;;;;;;;;;51656:42;51677:4;51683:2;51687:7;51696:1;51656:20;:42::i;:::-;49029:2677;;;48906:2800;;;:::o;65469:148::-;15925:13;:11;:13::i;:::-;65592:19:::1;65571:18;;:40;;;;;;;;;;;;;;;;;;65469:148:::0;:::o;65758:103::-;65812:7;65838:17;;65831:24;;65758:103;:::o;64624:142::-;15925:13;:11;:13::i;:::-;12964:1:::1;13562:7;;:19;;13554:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;12964:1;13695:7;:18;;;;64699:61:::2;64725:10;64738:21;64699:17;:61::i;:::-;12920:1:::1;13874:7;:22;;;;64624:142::o:0;40531:185::-;40669:39;40686:4;40692:2;40696:7;40669:39;;;;;;;;;;;;:16;:39::i;:::-;40531:185;;;:::o;64260:108::-;15925:13;:11;:13::i;:::-;64355:7:::1;64340:12;:22;;;;;;;;;;;;:::i;:::-;;64260:108:::0;:::o;37484:144::-;37548:7;37591:27;37610:7;37591:18;:27::i;:::-;37568:52;;37484:144;;;:::o;32727:224::-;32791:7;32832:1;32815:19;;:5;:19;;;32811:60;;;32843:28;;;;;;;;;;;;;;32811:60;27282:13;32889:18;:25;32908:5;32889:25;;;;;;;;;;;;;;;;:54;32882:61;;32727:224;;;:::o;16687:103::-;15925:13;:11;:13::i;:::-;16752:30:::1;16779:1;16752:18;:30::i;:::-;16687:103::o:0;65216:117::-;65287:4;65309:18;;;;;;;;;;;65302:25;;65216:117;:::o;65339:124::-;65412:7;65437:20;;65430:27;;65339:124;:::o;16039:87::-;16085:7;16112:6;;;;;;;;;;;16105:13;;16039:87;:::o;37864:104::-;37920:13;37953:7;37946:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37864:104;:::o;62580:37::-;;;;:::o;62622:39::-;;;;:::o;65988:127::-;15925:13;:11;:13::i;:::-;66103:6:::1;66084:16;:25;;;;65988:127:::0;:::o;62769:1485::-;62842:18;;;;;;;;;;;62834:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;62947:1;62935:9;;:13;;;;:::i;:::-;62918:14;62902:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;62894:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;63012:16;;62994:14;:34;;62986:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;63124:14;;63107;63084:20;;:37;;;;:::i;:::-;:54;63081:1122;;;63202:9;63184:14;63164:17;;:34;;;;:::i;:::-;:47;;63156:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;63081:1122;;;63290:19;63312:21;63322:10;63312:9;:21::i;:::-;63290:43;;63392:19;;63375:14;63358;:31;;;;:::i;:::-;:53;63354:842;;;63460:19;;63443:14;:36;63439:551;;;63513:19;63557:14;63535:19;;:36;;;;:::i;:::-;63513:58;;63590:15;63625:14;63608;:31;;;;:::i;:::-;63590:49;;63700:9;63686:10;63666:17;;:30;;;;:::i;:::-;:43;;63658:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;63796:14;63772:20;;:38;;;;;;;:::i;:::-;;;;;;;;63494:332;;63439:551;;;63923:9;63905:14;63885:17;;:34;;;;:::i;:::-;:47;;63877:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;63439:551;63354:842;;;64069:19;;64051:14;:37;;64043:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;64170:14;64146:20;;:38;;;;;;;:::i;:::-;;;;;;;;63354:842;63279:924;63081:1122;64211:37;64221:10;64233:14;64211:9;:37::i;:::-;62769:1485;:::o;39917:308::-;40028:19;:17;:19::i;:::-;40016:31;;:8;:31;;;40012:61;;;40056:17;;;;;;;;;;;;;;40012:61;40138:8;40086:18;:39;40105:19;:17;:19::i;:::-;40086:39;;;;;;;;;;;;;;;:49;40126:8;40086:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;40198:8;40162:55;;40177:19;:17;:19::i;:::-;40162:55;;;40208:8;40162:55;;;;;;:::i;:::-;;;;;;;;39917:308;;:::o;40787:399::-;40954:31;40967:4;40973:2;40977:7;40954:12;:31::i;:::-;41018:1;41000:2;:14;;;:19;40996:183;;41039:56;41070:4;41076:2;41080:7;41089:5;41039:30;:56::i;:::-;41034:145;;41123:40;;;;;;;;;;;;;;41034:145;40996:183;40787:399;;;;:::o;62486:37::-;;;;:::o;64772:297::-;64868:13;64901:17;64909:8;64901:7;:17::i;:::-;64893:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;65014:12;65033:19;:8;:17;:19::i;:::-;64997:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64983:80;;64772:297;;;:::o;62366:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62449:32::-;;;;:::o;40296:164::-;40393:4;40417:18;:25;40436:5;40417:25;;;;;;;;;;;;;;;:35;40443:8;40417:35;;;;;;;;;;;;;;;;;;;;;;;;;40410:42;;40296:164;;;;:::o;64374:244::-;15925:13;:11;:13::i;:::-;64467:1:::1;64456:8;:12;64448:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;64535:9;;64523:8;64507:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;64499:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;64581:31;64591:10;64603:8;64581:9;:31::i;:::-;64374:244:::0;:::o;16945:201::-;15925:13;:11;:13::i;:::-;17054:1:::1;17034:22;;:8;:22;;;;17026:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17110:28;17129:8;17110:18;:28::i;:::-;16945:201:::0;:::o;41441:273::-;41498:4;41554:7;41535:15;:13;:15::i;:::-;:26;;:66;;;;;41588:13;;41578:7;:23;41535:66;:152;;;;;41686:1;28052:8;41639:17;:26;41657:7;41639:26;;;;;;;;;;;;:43;:48;41535:152;41515:172;;41441:273;;;:::o;60002:105::-;60062:7;60089:10;60082:17;;60002:105;:::o;16204:132::-;16279:12;:10;:12::i;:::-;16268:23;;:7;:5;:7::i;:::-;:23;;;16260:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16204:132::o;30626:92::-;30682:7;30626:92;:::o;34401:1129::-;34468:7;34488:12;34503:7;34488:22;;34571:4;34552:15;:13;:15::i;:::-;:23;34548:915;;34605:13;;34598:4;:20;34594:869;;;34643:14;34660:17;:23;34678:4;34660:23;;;;;;;;;;;;34643:40;;34776:1;28052:8;34749:6;:23;:28;34745:699;;;35268:113;35285:1;35275:6;:11;35268:113;;;35328:17;:25;35346:6;;;;;;;35328:25;;;;;;;;;;;;35319:34;;35268:113;;;35414:6;35407:13;;;;;;34745:699;34620:843;34594:869;34548:915;35491:31;;;;;;;;;;;;;;34401:1129;;;;:::o;47242:652::-;47337:27;47366:23;47407:53;47463:15;47407:71;;47649:7;47643:4;47636:21;47684:22;47678:4;47671:36;47760:4;47754;47744:21;47721:44;;47856:19;47850:26;47831:45;;47587:300;47242:652;;;:::o;48007:645::-;48149:11;48311:15;48305:4;48301:26;48293:34;;48470:15;48459:9;48455:31;48442:44;;48617:15;48606:9;48603:30;48596:4;48585:9;48582:19;48579:55;48569:65;;48007:645;;;;;:::o;58835:159::-;;;;;:::o;57147:309::-;57282:7;57302:16;28453:3;57328:19;:40;;57302:67;;28453:3;57395:31;57406:4;57412:2;57416:9;57395:10;:31::i;:::-;57387:40;;:61;;57380:68;;;57147:309;;;;;:::o;36975:447::-;37055:14;37223:15;37216:5;37212:27;37203:36;;37397:5;37383:11;37359:22;37355:40;37352:51;37345:5;37342:62;37332:72;;36975:447;;;;:::o;59653:158::-;;;;;:::o;5093:317::-;5208:6;5183:21;:31;;5175:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5262:12;5280:9;:14;;5302:6;5280:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5261:52;;;5332:7;5324:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;5164:246;5093:317;;:::o;17306:191::-;17380:16;17399:6;;;;;;;;;;;17380:25;;17425:8;17416:6;;:17;;;;;;;;;;;;;;;;;;17480:8;17449:40;;17470:8;17449:40;;;;;;;;;;;;17369:128;17306:191;:::o;41798:104::-;41867:27;41877:2;41881:8;41867:27;;;;;;;;;;;;:9;:27::i;:::-;41798:104;;:::o;55657:716::-;55820:4;55866:2;55841:45;;;55887:19;:17;:19::i;:::-;55908:4;55914:7;55923:5;55841:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55837:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56141:1;56124:6;:13;:18;56120:235;;;56170:40;;;;;;;;;;;;;;56120:235;56313:6;56307:13;56298:6;56294:2;56290:15;56283:38;55837:529;56010:54;;;56000:64;;;:6;:64;;;;55993:71;;;55657:716;;;;;;:::o;532:723::-;588:13;818:1;809:5;:10;805:53;;;836:10;;;;;;;;;;;;;;;;;;;;;805:53;868:12;883:5;868:20;;899:14;924:78;939:1;931:4;:9;924:78;;957:8;;;;;:::i;:::-;;;;988:2;980:10;;;;;:::i;:::-;;;924:78;;;1012:19;1044:6;1034:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1012:39;;1062:154;1078:1;1069:5;:10;1062:154;;1106:1;1096:11;;;;;:::i;:::-;;;1173:2;1165:5;:10;;;;:::i;:::-;1152:2;:24;;;;:::i;:::-;1139:39;;1122:6;1129;1122:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1202:2;1193:11;;;;;:::i;:::-;;;1062:154;;;1240:6;1226:21;;;;;532:723;;;;:::o;14590:98::-;14643:7;14670:10;14663:17;;14590:98;:::o;58032:147::-;58169:6;58032:147;;;;;:::o;42318:681::-;42441:19;42447:2;42451:8;42441:5;:19::i;:::-;42520:1;42502:2;:14;;;:19;42498:483;;42542:11;42556:13;;42542:27;;42588:13;42610:8;42604:3;:14;42588:30;;42637:233;42668:62;42707:1;42711:2;42715:7;;;;;;42724:5;42668:30;:62::i;:::-;42663:167;;42766:40;;;;;;;;;;;;;;42663:167;42865:3;42857:5;:11;42637:233;;42952:3;42935:13;;:20;42931:34;;42957:8;;;42931:34;42523:458;;42498:483;42318:681;;;:::o;43272:1529::-;43337:20;43360:13;;43337:36;;43402:1;43388:16;;:2;:16;;;43384:48;;;43413:19;;;;;;;;;;;;;;43384:48;43459:1;43447:8;:13;43443:44;;;43469:18;;;;;;;;;;;;;;43443:44;43500:61;43530:1;43534:2;43538:12;43552:8;43500:21;:61::i;:::-;44043:1;27419:2;44014:1;:25;;44013:31;44001:8;:44;43975:18;:22;43994:2;43975:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;44322:139;44359:2;44413:33;44436:1;44440:2;44444:1;44413:14;:33::i;:::-;44380:30;44401:8;44380:20;:30::i;:::-;:66;44322:18;:139::i;:::-;44288:17;:31;44306:12;44288:31;;;;;;;;;;;:173;;;;44478:15;44496:12;44478:30;;44523:11;44552:8;44537:12;:23;44523:37;;44575:101;44627:9;;;;;;44623:2;44602:35;;44619:1;44602:35;;;;;;;;;;;;44671:3;44661:7;:13;44575:101;;44708:3;44692:13;:19;;;;43749:974;;44733:60;44762:1;44766:2;44770:12;44784:8;44733:20;:60::i;:::-;43326:1475;43272:1529;;:::o;38805:322::-;38875:14;39106:1;39096:8;39093:15;39068:23;39064:45;39054:55;;38805:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10836:366;;;:::o;11208:::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11580:366;;;:::o;11952:::-;12094:3;12115:67;12179:2;12174:3;12115:67;:::i;:::-;12108:74;;12191:93;12280:3;12191:93;:::i;:::-;12309:2;12304:3;12300:12;12293:19;;11952:366;;;:::o;12324:::-;12466:3;12487:67;12551:2;12546:3;12487:67;:::i;:::-;12480:74;;12563:93;12652:3;12563:93;:::i;:::-;12681:2;12676:3;12672:12;12665:19;;12324:366;;;:::o;12696:400::-;12856:3;12877:84;12959:1;12954:3;12877:84;:::i;:::-;12870:91;;12970:93;13059:3;12970:93;:::i;:::-;13088:1;13083:3;13079:11;13072:18;;12696:400;;;:::o;13102:366::-;13244:3;13265:67;13329:2;13324:3;13265:67;:::i;:::-;13258:74;;13341:93;13430:3;13341:93;:::i;:::-;13459:2;13454:3;13450:12;13443:19;;13102:366;;;:::o;13474:::-;13616:3;13637:67;13701:2;13696:3;13637:67;:::i;:::-;13630:74;;13713:93;13802:3;13713:93;:::i;:::-;13831:2;13826:3;13822:12;13815:19;;13474:366;;;:::o;13846:::-;13988:3;14009:67;14073:2;14068:3;14009:67;:::i;:::-;14002:74;;14085:93;14174:3;14085:93;:::i;:::-;14203:2;14198:3;14194:12;14187:19;;13846:366;;;:::o;14218:::-;14360:3;14381:67;14445:2;14440:3;14381:67;:::i;:::-;14374:74;;14457:93;14546:3;14457:93;:::i;:::-;14575:2;14570:3;14566:12;14559:19;;14218:366;;;:::o;14590:::-;14732:3;14753:67;14817:2;14812:3;14753:67;:::i;:::-;14746:74;;14829:93;14918:3;14829:93;:::i;:::-;14947:2;14942:3;14938:12;14931:19;;14590:366;;;:::o;14962:398::-;15121:3;15142:83;15223:1;15218:3;15142:83;:::i;:::-;15135:90;;15234:93;15323:3;15234:93;:::i;:::-;15352:1;15347:3;15343:11;15336:18;;14962:398;;;:::o;15366:366::-;15508:3;15529:67;15593:2;15588:3;15529:67;:::i;:::-;15522:74;;15605:93;15694:3;15605:93;:::i;:::-;15723:2;15718:3;15714:12;15707:19;;15366:366;;;:::o;15738:::-;15880:3;15901:67;15965:2;15960:3;15901:67;:::i;:::-;15894:74;;15977:93;16066:3;15977:93;:::i;:::-;16095:2;16090:3;16086:12;16079:19;;15738:366;;;:::o;16110:400::-;16270:3;16291:84;16373:1;16368:3;16291:84;:::i;:::-;16284:91;;16384:93;16473:3;16384:93;:::i;:::-;16502:1;16497:3;16493:11;16486:18;;16110:400;;;:::o;16516:118::-;16603:24;16621:5;16603:24;:::i;:::-;16598:3;16591:37;16516:118;;:::o;16640:961::-;17019:3;17041:92;17129:3;17120:6;17041:92;:::i;:::-;17034:99;;17150:148;17294:3;17150:148;:::i;:::-;17143:155;;17315:95;17406:3;17397:6;17315:95;:::i;:::-;17308:102;;17427:148;17571:3;17427:148;:::i;:::-;17420:155;;17592:3;17585:10;;16640:961;;;;;:::o;17607:379::-;17791:3;17813:147;17956:3;17813:147;:::i;:::-;17806:154;;17977:3;17970:10;;17607:379;;;:::o;17992:222::-;18085:4;18123:2;18112:9;18108:18;18100:26;;18136:71;18204:1;18193:9;18189:17;18180:6;18136:71;:::i;:::-;17992:222;;;;:::o;18220:640::-;18415:4;18453:3;18442:9;18438:19;18430:27;;18467:71;18535:1;18524:9;18520:17;18511:6;18467:71;:::i;:::-;18548:72;18616:2;18605:9;18601:18;18592:6;18548:72;:::i;:::-;18630;18698:2;18687:9;18683:18;18674:6;18630:72;:::i;:::-;18749:9;18743:4;18739:20;18734:2;18723:9;18719:18;18712:48;18777:76;18848:4;18839:6;18777:76;:::i;:::-;18769:84;;18220:640;;;;;;;:::o;18866:210::-;18953:4;18991:2;18980:9;18976:18;18968:26;;19004:65;19066:1;19055:9;19051:17;19042:6;19004:65;:::i;:::-;18866:210;;;;:::o;19082:313::-;19195:4;19233:2;19222:9;19218:18;19210:26;;19282:9;19276:4;19272:20;19268:1;19257:9;19253:17;19246:47;19310:78;19383:4;19374:6;19310:78;:::i;:::-;19302:86;;19082:313;;;;:::o;19401:419::-;19567:4;19605:2;19594:9;19590:18;19582:26;;19654:9;19648:4;19644:20;19640:1;19629:9;19625:17;19618:47;19682:131;19808:4;19682:131;:::i;:::-;19674:139;;19401:419;;;:::o;19826:::-;19992:4;20030:2;20019:9;20015:18;20007:26;;20079:9;20073:4;20069:20;20065:1;20054:9;20050:17;20043:47;20107:131;20233:4;20107:131;:::i;:::-;20099:139;;19826:419;;;:::o;20251:::-;20417:4;20455:2;20444:9;20440:18;20432:26;;20504:9;20498:4;20494:20;20490:1;20479:9;20475:17;20468:47;20532:131;20658:4;20532:131;:::i;:::-;20524:139;;20251:419;;;:::o;20676:::-;20842:4;20880:2;20869:9;20865:18;20857:26;;20929:9;20923:4;20919:20;20915:1;20904:9;20900:17;20893:47;20957:131;21083:4;20957:131;:::i;:::-;20949:139;;20676:419;;;:::o;21101:::-;21267:4;21305:2;21294:9;21290:18;21282:26;;21354:9;21348:4;21344:20;21340:1;21329:9;21325:17;21318:47;21382:131;21508:4;21382:131;:::i;:::-;21374:139;;21101:419;;;:::o;21526:::-;21692:4;21730:2;21719:9;21715:18;21707:26;;21779:9;21773:4;21769:20;21765:1;21754:9;21750:17;21743:47;21807:131;21933:4;21807:131;:::i;:::-;21799:139;;21526:419;;;:::o;21951:::-;22117:4;22155:2;22144:9;22140:18;22132:26;;22204:9;22198:4;22194:20;22190:1;22179:9;22175:17;22168:47;22232:131;22358:4;22232:131;:::i;:::-;22224:139;;21951:419;;;:::o;22376:::-;22542:4;22580:2;22569:9;22565:18;22557:26;;22629:9;22623:4;22619:20;22615:1;22604:9;22600:17;22593:47;22657:131;22783:4;22657:131;:::i;:::-;22649:139;;22376:419;;;:::o;22801:::-;22967:4;23005:2;22994:9;22990:18;22982:26;;23054:9;23048:4;23044:20;23040:1;23029:9;23025:17;23018:47;23082:131;23208:4;23082:131;:::i;:::-;23074:139;;22801:419;;;:::o;23226:::-;23392:4;23430:2;23419:9;23415:18;23407:26;;23479:9;23473:4;23469:20;23465:1;23454:9;23450:17;23443:47;23507:131;23633:4;23507:131;:::i;:::-;23499:139;;23226:419;;;:::o;23651:::-;23817:4;23855:2;23844:9;23840:18;23832:26;;23904:9;23898:4;23894:20;23890:1;23879:9;23875:17;23868:47;23932:131;24058:4;23932:131;:::i;:::-;23924:139;;23651:419;;;:::o;24076:::-;24242:4;24280:2;24269:9;24265:18;24257:26;;24329:9;24323:4;24319:20;24315:1;24304:9;24300:17;24293:47;24357:131;24483:4;24357:131;:::i;:::-;24349:139;;24076:419;;;:::o;24501:::-;24667:4;24705:2;24694:9;24690:18;24682:26;;24754:9;24748:4;24744:20;24740:1;24729:9;24725:17;24718:47;24782:131;24908:4;24782:131;:::i;:::-;24774:139;;24501:419;;;:::o;24926:::-;25092:4;25130:2;25119:9;25115:18;25107:26;;25179:9;25173:4;25169:20;25165:1;25154:9;25150:17;25143:47;25207:131;25333:4;25207:131;:::i;:::-;25199:139;;24926:419;;;:::o;25351:::-;25517:4;25555:2;25544:9;25540:18;25532:26;;25604:9;25598:4;25594:20;25590:1;25579:9;25575:17;25568:47;25632:131;25758:4;25632:131;:::i;:::-;25624:139;;25351:419;;;:::o;25776:222::-;25869:4;25907:2;25896:9;25892:18;25884:26;;25920:71;25988:1;25977:9;25973:17;25964:6;25920:71;:::i;:::-;25776:222;;;;:::o;26004:129::-;26038:6;26065:20;;:::i;:::-;26055:30;;26094:33;26122:4;26114:6;26094:33;:::i;:::-;26004:129;;;:::o;26139:75::-;26172:6;26205:2;26199:9;26189:19;;26139:75;:::o;26220:307::-;26281:4;26371:18;26363:6;26360:30;26357:56;;;26393:18;;:::i;:::-;26357:56;26431:29;26453:6;26431:29;:::i;:::-;26423:37;;26515:4;26509;26505:15;26497:23;;26220:307;;;:::o;26533:308::-;26595:4;26685:18;26677:6;26674:30;26671:56;;;26707:18;;:::i;:::-;26671:56;26745:29;26767:6;26745:29;:::i;:::-;26737:37;;26829:4;26823;26819:15;26811:23;;26533:308;;;:::o;26847:141::-;26896:4;26919:3;26911:11;;26942:3;26939:1;26932:14;26976:4;26973:1;26963:18;26955:26;;26847:141;;;:::o;26994:98::-;27045:6;27079:5;27073:12;27063:22;;26994:98;;;:::o;27098:99::-;27150:6;27184:5;27178:12;27168:22;;27098:99;;;:::o;27203:168::-;27286:11;27320:6;27315:3;27308:19;27360:4;27355:3;27351:14;27336:29;;27203:168;;;;:::o;27377:147::-;27478:11;27515:3;27500:18;;27377:147;;;;:::o;27530:169::-;27614:11;27648:6;27643:3;27636:19;27688:4;27683:3;27679:14;27664:29;;27530:169;;;;:::o;27705:148::-;27807:11;27844:3;27829:18;;27705:148;;;;:::o;27859:305::-;27899:3;27918:20;27936:1;27918:20;:::i;:::-;27913:25;;27952:20;27970:1;27952:20;:::i;:::-;27947:25;;28106:1;28038:66;28034:74;28031:1;28028:81;28025:107;;;28112:18;;:::i;:::-;28025:107;28156:1;28153;28149:9;28142:16;;27859:305;;;;:::o;28170:185::-;28210:1;28227:20;28245:1;28227:20;:::i;:::-;28222:25;;28261:20;28279:1;28261:20;:::i;:::-;28256:25;;28300:1;28290:35;;28305:18;;:::i;:::-;28290:35;28347:1;28344;28340:9;28335:14;;28170:185;;;;:::o;28361:348::-;28401:7;28424:20;28442:1;28424:20;:::i;:::-;28419:25;;28458:20;28476:1;28458:20;:::i;:::-;28453:25;;28646:1;28578:66;28574:74;28571:1;28568:81;28563:1;28556:9;28549:17;28545:105;28542:131;;;28653:18;;:::i;:::-;28542:131;28701:1;28698;28694:9;28683:20;;28361:348;;;;:::o;28715:191::-;28755:4;28775:20;28793:1;28775:20;:::i;:::-;28770:25;;28809:20;28827:1;28809:20;:::i;:::-;28804:25;;28848:1;28845;28842:8;28839:34;;;28853:18;;:::i;:::-;28839:34;28898:1;28895;28891:9;28883:17;;28715:191;;;;:::o;28912:96::-;28949:7;28978:24;28996:5;28978:24;:::i;:::-;28967:35;;28912:96;;;:::o;29014:90::-;29048:7;29091:5;29084:13;29077:21;29066:32;;29014:90;;;:::o;29110:149::-;29146:7;29186:66;29179:5;29175:78;29164:89;;29110:149;;;:::o;29265:126::-;29302:7;29342:42;29335:5;29331:54;29320:65;;29265:126;;;:::o;29397:77::-;29434:7;29463:5;29452:16;;29397:77;;;:::o;29480:154::-;29564:6;29559:3;29554;29541:30;29626:1;29617:6;29612:3;29608:16;29601:27;29480:154;;;:::o;29640:307::-;29708:1;29718:113;29732:6;29729:1;29726:13;29718:113;;;29817:1;29812:3;29808:11;29802:18;29798:1;29793:3;29789:11;29782:39;29754:2;29751:1;29747:10;29742:15;;29718:113;;;29849:6;29846:1;29843:13;29840:101;;;29929:1;29920:6;29915:3;29911:16;29904:27;29840:101;29689:258;29640:307;;;:::o;29953:320::-;29997:6;30034:1;30028:4;30024:12;30014:22;;30081:1;30075:4;30071:12;30102:18;30092:81;;30158:4;30150:6;30146:17;30136:27;;30092:81;30220:2;30212:6;30209:14;30189:18;30186:38;30183:84;;;30239:18;;:::i;:::-;30183:84;30004:269;29953:320;;;:::o;30279:281::-;30362:27;30384:4;30362:27;:::i;:::-;30354:6;30350:40;30492:6;30480:10;30477:22;30456:18;30444:10;30441:34;30438:62;30435:88;;;30503:18;;:::i;:::-;30435:88;30543:10;30539:2;30532:22;30322:238;30279:281;;:::o;30566:233::-;30605:3;30628:24;30646:5;30628:24;:::i;:::-;30619:33;;30674:66;30667:5;30664:77;30661:103;;;30744:18;;:::i;:::-;30661:103;30791:1;30784:5;30780:13;30773:20;;30566:233;;;:::o;30805:176::-;30837:1;30854:20;30872:1;30854:20;:::i;:::-;30849:25;;30888:20;30906:1;30888:20;:::i;:::-;30883:25;;30927:1;30917:35;;30932:18;;:::i;:::-;30917:35;30973:1;30970;30966:9;30961:14;;30805:176;;;;:::o;30987:180::-;31035:77;31032:1;31025:88;31132:4;31129:1;31122:15;31156:4;31153:1;31146:15;31173:180;31221:77;31218:1;31211:88;31318:4;31315:1;31308:15;31342:4;31339:1;31332:15;31359:180;31407:77;31404:1;31397:88;31504:4;31501:1;31494:15;31528:4;31525:1;31518:15;31545:180;31593:77;31590:1;31583:88;31690:4;31687:1;31680:15;31714:4;31711:1;31704:15;31731:180;31779:77;31776:1;31769:88;31876:4;31873:1;31866:15;31900:4;31897:1;31890:15;31917:117;32026:1;32023;32016:12;32040:117;32149:1;32146;32139:12;32163:117;32272:1;32269;32262:12;32286:117;32395:1;32392;32385:12;32409:102;32450:6;32501:2;32497:7;32492:2;32485:5;32481:14;32477:28;32467:38;;32409:102;;;:::o;32517:224::-;32657:34;32653:1;32645:6;32641:14;32634:58;32726:7;32721:2;32713:6;32709:15;32702:32;32517:224;:::o;32747:225::-;32887:34;32883:1;32875:6;32871:14;32864:58;32956:8;32951:2;32943:6;32939:15;32932:33;32747:225;:::o;32978:245::-;33118:34;33114:1;33106:6;33102:14;33095:58;33187:28;33182:2;33174:6;33170:15;33163:53;32978:245;:::o;33229:179::-;33369:31;33365:1;33357:6;33353:14;33346:55;33229:179;:::o;33414:174::-;33554:26;33550:1;33542:6;33538:14;33531:50;33414:174;:::o;33594:224::-;33734:34;33730:1;33722:6;33718:14;33711:58;33803:7;33798:2;33790:6;33786:15;33779:32;33594:224;:::o;33824:173::-;33964:25;33960:1;33952:6;33948:14;33941:49;33824:173;:::o;34003:172::-;34143:24;34139:1;34131:6;34127:14;34120:48;34003:172;:::o;34181:155::-;34321:7;34317:1;34309:6;34305:14;34298:31;34181:155;:::o;34342:182::-;34482:34;34478:1;34470:6;34466:14;34459:58;34342:182;:::o;34530:234::-;34670:34;34666:1;34658:6;34654:14;34647:58;34739:17;34734:2;34726:6;34722:15;34715:42;34530:234;:::o;34770:225::-;34910:34;34906:1;34898:6;34894:14;34887:58;34979:8;34974:2;34966:6;34962:15;34955:33;34770:225;:::o;35001:224::-;35141:34;35137:1;35129:6;35125:14;35118:58;35210:7;35205:2;35197:6;35193:15;35186:32;35001:224;:::o;35231:226::-;35371:34;35367:1;35359:6;35355:14;35348:58;35440:9;35435:2;35427:6;35423:15;35416:34;35231:226;:::o;35463:114::-;;:::o;35583:169::-;35723:21;35719:1;35711:6;35707:14;35700:45;35583:169;:::o;35758:181::-;35898:33;35894:1;35886:6;35882:14;35875:57;35758:181;:::o;35945:151::-;36085:3;36081:1;36073:6;36069:14;36062:27;35945:151;:::o;36102:122::-;36175:24;36193:5;36175:24;:::i;:::-;36168:5;36165:35;36155:63;;36214:1;36211;36204:12;36155:63;36102:122;:::o;36230:116::-;36300:21;36315:5;36300:21;:::i;:::-;36293:5;36290:32;36280:60;;36336:1;36333;36326:12;36280:60;36230:116;:::o;36352:120::-;36424:23;36441:5;36424:23;:::i;:::-;36417:5;36414:34;36404:62;;36462:1;36459;36452:12;36404:62;36352:120;:::o;36478:122::-;36551:24;36569:5;36551:24;:::i;:::-;36544:5;36541:35;36531:63;;36590:1;36587;36580:12;36531:63;36478:122;:::o

Swarm Source

ipfs://806c7166deca0d186c4d17b55a7f9618247326d7722d050237ef42ad7fd6e52f
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.