ETH Price: $2,669.67 (+1.23%)
Gas: 0.98 Gwei

Token

IDontCare (IDC)
 

Overview

Max Total Supply

1,295 IDC

Holders

635

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
icefruit.eth
Balance
1 IDC
0xf80445b9438757b9c996041ca7aa04aaf977b0c8
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:
IDontCare

Compiler Version
v0.8.13+commit.abaa5c0e

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-25
*/

// 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 IDontCare is ERC721A, Ownable, ReentrancyGuard {
  using Address for address;
  using Strings for uint;

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

  uint256 public  maxSupply = 4006;
  uint256 public  MAX_MINTS_PER_TX = 20;
  uint256 public  PUBLIC_SALE_PRICE = 0.0069 ether;
  uint256 public  NUM_FREE_MINTS = 1000;
  uint256 public  MAX_FREE_PER_WALLET = 2;
  uint256 public  freeNFTAlreadyMinted = 0;

  constructor() ERC721A("IDontCare", "IDC") {}

  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 collabMint(address mintAddress, uint256 count) public onlyOwner {
        _safeMint(mintAddress, count);
    }

  function withdraw()
    public
    onlyOwner
    nonReentrant
  {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

//   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 tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token");

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI,Strings.toString(_tokenId+1),".json"))
        : "";
  }

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

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

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

  function setMaxSupply(uint256 maxSupply_) external onlyOwner {
      maxSupply = maxSupply_;
  }
}

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":[{"internalType":"address","name":"mintAddress","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"collabMint","outputs":[],"stateMutability":"nonpayable","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":"maxSupply_","type":"uint256"}],"name":"setMaxSupply","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"}]

608060405260405180602001604052806000815250600a90805190602001906200002b92919062000236565b506000600b60006101000a81548160ff021916908315150217905550610fa6600c556014600d556618838370f34000600e556103e8600f55600260105560006011553480156200007a57600080fd5b506040518060400160405280600981526020017f49446f6e744361726500000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f49444300000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ff92919062000236565b5080600390805190602001906200011892919062000236565b50620001296200015f60201b60201c565b600081905550505062000151620001456200016860201b60201c565b6200017060201b60201c565b60016009819055506200034a565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002449062000315565b90600052602060002090601f016020900481019282620002685760008555620002b4565b82601f106200028357805160ff1916838001178555620002b4565b82800160010185558215620002b4579182015b82811115620002b357825182559160200191906001019062000296565b5b509050620002c39190620002c7565b5090565b5b80821115620002e2576000816000905550600101620002c8565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032e57607f821691505b602082108103620003445762000343620002e6565b5b50919050565b6136dc806200035a6000396000f3fe6080604052600436106102305760003560e01c806370a082311161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107f6578063e985e9c514610821578063efdc77881461085e578063f2fde38b14610887578063fec651b4146108b057610230565b8063a22cb46514610711578063b88d4fde1461073a578063c6a91b4214610763578063c87b56dd1461078e578063d547cfb7146107cb57610230565b806395d89b41116100f257806395d89b411461064b578063982d669e1461067657806398710d1e146106a15780639e9fcffc146106cc578063a0712d68146106f557610230565b806370a0823114610576578063715018a6146105b35780638bc9a4c6146105ca5780638d87caff146105f55780638da5cb5b1461062057610230565b80631e84c413116101bc5780633ccfd60b116101805780633ccfd60b146104a757806342842e0e146104be57806355f804b3146104e75780636352211e146105105780636f8b44b01461054d57610230565b80631e84c413146103d6578063202f298a1461040157806323b872dd1461042a57806328cad13d146104535780632fbc0bf11461047c57610230565b8063095ea7b311610203578063095ea7b3146103055780630a00ae831461032e57806318160ddd146103575780631919fed714610382578063193ad7b4146103ab57610230565b806301ffc9a71461023557806306fdde031461027257806307e89ec01461029d578063081812fc146102c8575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906124eb565b6108d9565b6040516102699190612533565b60405180910390f35b34801561027e57600080fd5b5061028761096b565b60405161029491906125e7565b60405180910390f35b3480156102a957600080fd5b506102b26109fd565b6040516102bf9190612622565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea9190612669565b610a03565b6040516102fc91906126d7565b60405180910390f35b34801561031157600080fd5b5061032c6004803603810190610327919061271e565b610a7f565b005b34801561033a57600080fd5b5061035560048036038101906103509190612669565b610bc0565b005b34801561036357600080fd5b5061036c610bd2565b6040516103799190612622565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a49190612669565b610be9565b005b3480156103b757600080fd5b506103c0610bfb565b6040516103cd9190612622565b60405180910390f35b3480156103e257600080fd5b506103eb610c01565b6040516103f89190612533565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190612669565b610c14565b005b34801561043657600080fd5b50610451600480360381019061044c919061275e565b610c26565b005b34801561045f57600080fd5b5061047a600480360381019061047591906127dd565b610f48565b005b34801561048857600080fd5b50610491610f6d565b60405161049e9190612622565b60405180910390f35b3480156104b357600080fd5b506104bc610f77565b005b3480156104ca57600080fd5b506104e560048036038101906104e0919061275e565b611083565b005b3480156104f357600080fd5b5061050e6004803603810190610509919061293f565b6110a3565b005b34801561051c57600080fd5b5061053760048036038101906105329190612669565b6110c5565b60405161054491906126d7565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612669565b6110d7565b005b34801561058257600080fd5b5061059d60048036038101906105989190612988565b6110e9565b6040516105aa9190612622565b60405180910390f35b3480156105bf57600080fd5b506105c86111a1565b005b3480156105d657600080fd5b506105df6111b5565b6040516105ec9190612533565b60405180910390f35b34801561060157600080fd5b5061060a6111cc565b6040516106179190612622565b60405180910390f35b34801561062c57600080fd5b506106356111d6565b60405161064291906126d7565b60405180910390f35b34801561065757600080fd5b50610660611200565b60405161066d91906125e7565b60405180910390f35b34801561068257600080fd5b5061068b611292565b6040516106989190612622565b60405180910390f35b3480156106ad57600080fd5b506106b6611298565b6040516106c39190612622565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190612669565b61129e565b005b61070f600480360381019061070a9190612669565b6112b0565b005b34801561071d57600080fd5b50610738600480360381019061073391906129b5565b611594565b005b34801561074657600080fd5b50610761600480360381019061075c9190612a96565b61170b565b005b34801561076f57600080fd5b5061077861177e565b6040516107859190612622565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190612669565b611784565b6040516107c291906125e7565b60405180910390f35b3480156107d757600080fd5b506107e0611837565b6040516107ed91906125e7565b60405180910390f35b34801561080257600080fd5b5061080b6118c5565b6040516108189190612622565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190612b19565b6118cb565b6040516108559190612533565b60405180910390f35b34801561086a57600080fd5b5061088560048036038101906108809190612669565b61195f565b005b34801561089357600080fd5b506108ae60048036038101906108a99190612988565b611a0e565b005b3480156108bc57600080fd5b506108d760048036038101906108d2919061271e565b611a91565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109645750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461097a90612b88565b80601f01602080910402602001604051908101604052809291908181526020018280546109a690612b88565b80156109f35780601f106109c8576101008083540402835291602001916109f3565b820191906000526020600020905b8154815290600101906020018083116109d657829003601f168201915b5050505050905090565b600e5481565b6000610a0e82611aa7565b610a44576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8a826110c5565b90508073ffffffffffffffffffffffffffffffffffffffff16610aab611b06565b73ffffffffffffffffffffffffffffffffffffffff1614610b0e57610ad781610ad2611b06565b6118cb565b610b0d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610bc8611b0e565b80600f8190555050565b6000610bdc611b8c565b6001546000540303905090565b610bf1611b0e565b80600e8190555050565b60115481565b600b60009054906101000a900460ff1681565b610c1c611b0e565b8060108190555050565b6000610c3182611b95565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c98576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ca484611c61565b91509150610cba8187610cb5611b06565b611c83565b610d0657610ccf86610cca611b06565b6118cb565b610d05576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d6c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d798686866001611cc7565b8015610d8457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5285610e2e888887611ccd565b7c020000000000000000000000000000000000000000000000000000000017611cf5565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ed85760006001850190506000600460008381526020019081526020016000205403610ed6576000548114610ed5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f408686866001611d20565b505050505050565b610f50611b0e565b80600b60006101000a81548160ff02191690831515021790555050565b6000600e54905090565b610f7f611b0e565b600260095403610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90612c05565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610ff290612c56565b60006040518083038185875af1925050503d806000811461102f576040519150601f19603f3d011682016040523d82523d6000602084013e611034565b606091505b5050905080611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90612cb7565b60405180910390fd5b506001600981905550565b61109e8383836040518060200160405280600081525061170b565b505050565b6110ab611b0e565b80600a90805190602001906110c19291906123dc565b5050565b60006110d082611b95565b9050919050565b6110df611b0e565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611150576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111a9611b0e565b6111b36000611d26565b565b6000600b60009054906101000a900460ff16905090565b6000601154905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461120f90612b88565b80601f016020809104026020016040519081016040528092919081815260200182805461123b90612b88565b80156112885780601f1061125d57610100808354040283529160200191611288565b820191906000526020600020905b81548152906001019060200180831161126b57829003601f168201915b5050505050905090565b600f5481565b60105481565b6112a6611b0e565b80600d8190555050565b600b60009054906101000a900460ff166112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690612d23565b60405180910390fd5b6001600c5461130e9190612d72565b81611317610bd2565b6113219190612d72565b10611361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135890612e14565b60405180910390fd5b600d548111156113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d90612ea6565b60405180910390fd5b600f54816011546113b79190612d72565b1115611412573481600e546113cc9190612ec6565b111561140d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140490612f92565b60405180910390fd5b611587565b600061141d336110e9565b9050601054828261142e9190612d72565b1115611526576010548110156114d05760008160105461144e9190612fb2565b90506000818461145e9190612fb2565b90503481600e5461146f9190612ec6565b11156114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790613058565b60405180910390fd5b81601160008282546114c29190612d72565b925050819055505050611521565b3482600e546114df9190612ec6565b1115611520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611517906130ea565b60405180910390fd5b5b611585565b60105482111561156b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115629061317c565b60405180910390fd5b816011600082825461157d9190612d72565b925050819055505b505b6115913382611dec565b50565b61159c611b06565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611600576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061160d611b06565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116ba611b06565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ff9190612533565b60405180910390a35050565b611716848484610c26565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117785761174184848484611e0a565b611777576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d5481565b606061178f82611aa7565b6117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c59061320e565b60405180910390fd5b60006117d8611f5a565b905060008151116117f8576040518060200160405280600081525061182f565b8061180e6001856118099190612d72565b611fec565b60405160200161181f9291906132b6565b6040516020818303038152906040525b915050919050565b600a805461184490612b88565b80601f016020809104026020016040519081016040528092919081815260200182805461187090612b88565b80156118bd5780601f10611892576101008083540402835291602001916118bd565b820191906000526020600020905b8154815290600101906020018083116118a057829003601f168201915b505050505081565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611967611b0e565b600081116119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a190613331565b60405180910390fd5b600c54816119b6610bd2565b6119c09190612d72565b1115611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f89061339d565b60405180910390fd5b611a0b3382611dec565b50565b611a16611b0e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c9061342f565b60405180910390fd5b611a8e81611d26565b50565b611a99611b0e565b611aa38282611dec565b5050565b600081611ab2611b8c565b11158015611ac1575060005482105b8015611aff575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611b1661214c565b73ffffffffffffffffffffffffffffffffffffffff16611b346111d6565b73ffffffffffffffffffffffffffffffffffffffff1614611b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b819061349b565b60405180910390fd5b565b60006001905090565b60008082905080611ba4611b8c565b11611c2a57600054811015611c295760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c27575b60008103611c1d576004600083600190039350838152602001908152602001600020549050611bf3565b8092505050611c5c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ce4868684612154565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e0682826040518060200160405280600081525061215d565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e30611b06565b8786866040518563ffffffff1660e01b8152600401611e529493929190613510565b6020604051808303816000875af1925050508015611e8e57506040513d601f19601f82011682018060405250810190611e8b9190613571565b60015b611f07573d8060008114611ebe576040519150601f19603f3d011682016040523d82523d6000602084013e611ec3565b606091505b506000815103611eff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611f6990612b88565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9590612b88565b8015611fe25780601f10611fb757610100808354040283529160200191611fe2565b820191906000526020600020905b815481529060010190602001808311611fc557829003601f168201915b5050505050905090565b606060008203612033576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612147565b600082905060005b6000821461206557808061204e9061359e565b915050600a8261205e9190613615565b915061203b565b60008167ffffffffffffffff81111561208157612080612814565b5b6040519080825280601f01601f1916602001820160405280156120b35781602001600182028036833780820191505090505b5090505b60008514612140576001826120cc9190612fb2565b9150600a856120db9190613646565b60306120e79190612d72565b60f81b8183815181106120fd576120fc613677565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121399190613615565b94506120b7565b8093505050505b919050565b600033905090565b60009392505050565b61216783836121fa565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121f557600080549050600083820390505b6121a76000868380600101945086611e0a565b6121dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121945781600054146121f257600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612266576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036122a0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122ad6000848385611cc7565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612324836123156000866000611ccd565b61231e856123cc565b17611cf5565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612348578060008190555050506123c76000848385611d20565b505050565b60006001821460e11b9050919050565b8280546123e890612b88565b90600052602060002090601f01602090048101928261240a5760008555612451565b82601f1061242357805160ff1916838001178555612451565b82800160010185558215612451579182015b82811115612450578251825591602001919060010190612435565b5b50905061245e9190612462565b5090565b5b8082111561247b576000816000905550600101612463565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124c881612493565b81146124d357600080fd5b50565b6000813590506124e5816124bf565b92915050565b60006020828403121561250157612500612489565b5b600061250f848285016124d6565b91505092915050565b60008115159050919050565b61252d81612518565b82525050565b60006020820190506125486000830184612524565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561258857808201518184015260208101905061256d565b83811115612597576000848401525b50505050565b6000601f19601f8301169050919050565b60006125b98261254e565b6125c38185612559565b93506125d381856020860161256a565b6125dc8161259d565b840191505092915050565b6000602082019050818103600083015261260181846125ae565b905092915050565b6000819050919050565b61261c81612609565b82525050565b60006020820190506126376000830184612613565b92915050565b61264681612609565b811461265157600080fd5b50565b6000813590506126638161263d565b92915050565b60006020828403121561267f5761267e612489565b5b600061268d84828501612654565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126c182612696565b9050919050565b6126d1816126b6565b82525050565b60006020820190506126ec60008301846126c8565b92915050565b6126fb816126b6565b811461270657600080fd5b50565b600081359050612718816126f2565b92915050565b6000806040838503121561273557612734612489565b5b600061274385828601612709565b925050602061275485828601612654565b9150509250929050565b60008060006060848603121561277757612776612489565b5b600061278586828701612709565b935050602061279686828701612709565b92505060406127a786828701612654565b9150509250925092565b6127ba81612518565b81146127c557600080fd5b50565b6000813590506127d7816127b1565b92915050565b6000602082840312156127f3576127f2612489565b5b6000612801848285016127c8565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61284c8261259d565b810181811067ffffffffffffffff8211171561286b5761286a612814565b5b80604052505050565b600061287e61247f565b905061288a8282612843565b919050565b600067ffffffffffffffff8211156128aa576128a9612814565b5b6128b38261259d565b9050602081019050919050565b82818337600083830152505050565b60006128e26128dd8461288f565b612874565b9050828152602081018484840111156128fe576128fd61280f565b5b6129098482856128c0565b509392505050565b600082601f8301126129265761292561280a565b5b81356129368482602086016128cf565b91505092915050565b60006020828403121561295557612954612489565b5b600082013567ffffffffffffffff8111156129735761297261248e565b5b61297f84828501612911565b91505092915050565b60006020828403121561299e5761299d612489565b5b60006129ac84828501612709565b91505092915050565b600080604083850312156129cc576129cb612489565b5b60006129da85828601612709565b92505060206129eb858286016127c8565b9150509250929050565b600067ffffffffffffffff821115612a1057612a0f612814565b5b612a198261259d565b9050602081019050919050565b6000612a39612a34846129f5565b612874565b905082815260208101848484011115612a5557612a5461280f565b5b612a608482856128c0565b509392505050565b600082601f830112612a7d57612a7c61280a565b5b8135612a8d848260208601612a26565b91505092915050565b60008060008060808587031215612ab057612aaf612489565b5b6000612abe87828801612709565b9450506020612acf87828801612709565b9350506040612ae087828801612654565b925050606085013567ffffffffffffffff811115612b0157612b0061248e565b5b612b0d87828801612a68565b91505092959194509250565b60008060408385031215612b3057612b2f612489565b5b6000612b3e85828601612709565b9250506020612b4f85828601612709565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ba057607f821691505b602082108103612bb357612bb2612b59565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612bef601f83612559565b9150612bfa82612bb9565b602082019050919050565b60006020820190508181036000830152612c1e81612be2565b9050919050565b600081905092915050565b50565b6000612c40600083612c25565b9150612c4b82612c30565b600082019050919050565b6000612c6182612c33565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612ca1601083612559565b9150612cac82612c6b565b602082019050919050565b60006020820190508181036000830152612cd081612c94565b9050919050565b7f5075626c69632073616c65206973207061757365642e00000000000000000000600082015250565b6000612d0d601683612559565b9150612d1882612cd7565b602082019050919050565b60006020820190508181036000830152612d3c81612d00565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d7d82612609565b9150612d8883612609565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612dbd57612dbc612d43565b5b828201905092915050565b7f4d6178696d756d20737570706c792065786365656465642e0000000000000000600082015250565b6000612dfe601883612559565b9150612e0982612dc8565b602082019050919050565b60006020820190508181036000830152612e2d81612df1565b9050919050565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465642e00000000000000000000000000000000000000000000000000602082015250565b6000612e90602783612559565b9150612e9b82612e34565b604082019050919050565b60006020820190508181036000830152612ebf81612e83565b9050919050565b6000612ed182612609565b9150612edc83612609565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f1557612f14612d43565b5b828202905092915050565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2031000000000000000000000000000000000000000000000000000000602082015250565b6000612f7c602583612559565b9150612f8782612f20565b604082019050919050565b60006020820190508181036000830152612fab81612f6f565b9050919050565b6000612fbd82612609565b9150612fc883612609565b925082821015612fdb57612fda612d43565b5b828203905092915050565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2032000000000000000000000000000000000000000000000000000000602082015250565b6000613042602583612559565b915061304d82612fe6565b604082019050919050565b6000602082019050818103600083015261307181613035565b9050919050565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2033000000000000000000000000000000000000000000000000000000602082015250565b60006130d4602583612559565b91506130df82613078565b604082019050919050565b60006020820190508181036000830152613103816130c7565b9050919050565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465640000000000000000000000000000000000000000000000000000602082015250565b6000613166602683612559565b91506131718261310a565b604082019050919050565b6000602082019050818103600083015261319581613159565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006131f8602f83612559565b91506132038261319c565b604082019050919050565b60006020820190508181036000830152613227816131eb565b9050919050565b600081905092915050565b60006132448261254e565b61324e818561322e565b935061325e81856020860161256a565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006132a060058361322e565b91506132ab8261326a565b600582019050919050565b60006132c28285613239565b91506132ce8284613239565b91506132d982613293565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b600061331b601383612559565b9150613326826132e5565b602082019050919050565b6000602082019050818103600083015261334a8161330e565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000613387601783612559565b915061339282613351565b602082019050919050565b600060208201905081810360008301526133b68161337a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613419602683612559565b9150613424826133bd565b604082019050919050565b600060208201905081810360008301526134488161340c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613485602083612559565b91506134908261344f565b602082019050919050565b600060208201905081810360008301526134b481613478565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134e2826134bb565b6134ec81856134c6565b93506134fc81856020860161256a565b6135058161259d565b840191505092915050565b600060808201905061352560008301876126c8565b61353260208301866126c8565b61353f6040830185612613565b818103606083015261355181846134d7565b905095945050505050565b60008151905061356b816124bf565b92915050565b60006020828403121561358757613586612489565b5b60006135958482850161355c565b91505092915050565b60006135a982612609565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135db576135da612d43565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061362082612609565b915061362b83612609565b92508261363b5761363a6135e6565b5b828204905092915050565b600061365182612609565b915061365c83612609565b92508261366c5761366b6135e6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212209aff98016950c88d65ee5bece1b8e1185285db395b68b69c5f7bec807a95deff64736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102305760003560e01c806370a082311161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146107f6578063e985e9c514610821578063efdc77881461085e578063f2fde38b14610887578063fec651b4146108b057610230565b8063a22cb46514610711578063b88d4fde1461073a578063c6a91b4214610763578063c87b56dd1461078e578063d547cfb7146107cb57610230565b806395d89b41116100f257806395d89b411461064b578063982d669e1461067657806398710d1e146106a15780639e9fcffc146106cc578063a0712d68146106f557610230565b806370a0823114610576578063715018a6146105b35780638bc9a4c6146105ca5780638d87caff146105f55780638da5cb5b1461062057610230565b80631e84c413116101bc5780633ccfd60b116101805780633ccfd60b146104a757806342842e0e146104be57806355f804b3146104e75780636352211e146105105780636f8b44b01461054d57610230565b80631e84c413146103d6578063202f298a1461040157806323b872dd1461042a57806328cad13d146104535780632fbc0bf11461047c57610230565b8063095ea7b311610203578063095ea7b3146103055780630a00ae831461032e57806318160ddd146103575780631919fed714610382578063193ad7b4146103ab57610230565b806301ffc9a71461023557806306fdde031461027257806307e89ec01461029d578063081812fc146102c8575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906124eb565b6108d9565b6040516102699190612533565b60405180910390f35b34801561027e57600080fd5b5061028761096b565b60405161029491906125e7565b60405180910390f35b3480156102a957600080fd5b506102b26109fd565b6040516102bf9190612622565b60405180910390f35b3480156102d457600080fd5b506102ef60048036038101906102ea9190612669565b610a03565b6040516102fc91906126d7565b60405180910390f35b34801561031157600080fd5b5061032c6004803603810190610327919061271e565b610a7f565b005b34801561033a57600080fd5b5061035560048036038101906103509190612669565b610bc0565b005b34801561036357600080fd5b5061036c610bd2565b6040516103799190612622565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a49190612669565b610be9565b005b3480156103b757600080fd5b506103c0610bfb565b6040516103cd9190612622565b60405180910390f35b3480156103e257600080fd5b506103eb610c01565b6040516103f89190612533565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190612669565b610c14565b005b34801561043657600080fd5b50610451600480360381019061044c919061275e565b610c26565b005b34801561045f57600080fd5b5061047a600480360381019061047591906127dd565b610f48565b005b34801561048857600080fd5b50610491610f6d565b60405161049e9190612622565b60405180910390f35b3480156104b357600080fd5b506104bc610f77565b005b3480156104ca57600080fd5b506104e560048036038101906104e0919061275e565b611083565b005b3480156104f357600080fd5b5061050e6004803603810190610509919061293f565b6110a3565b005b34801561051c57600080fd5b5061053760048036038101906105329190612669565b6110c5565b60405161054491906126d7565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612669565b6110d7565b005b34801561058257600080fd5b5061059d60048036038101906105989190612988565b6110e9565b6040516105aa9190612622565b60405180910390f35b3480156105bf57600080fd5b506105c86111a1565b005b3480156105d657600080fd5b506105df6111b5565b6040516105ec9190612533565b60405180910390f35b34801561060157600080fd5b5061060a6111cc565b6040516106179190612622565b60405180910390f35b34801561062c57600080fd5b506106356111d6565b60405161064291906126d7565b60405180910390f35b34801561065757600080fd5b50610660611200565b60405161066d91906125e7565b60405180910390f35b34801561068257600080fd5b5061068b611292565b6040516106989190612622565b60405180910390f35b3480156106ad57600080fd5b506106b6611298565b6040516106c39190612622565b60405180910390f35b3480156106d857600080fd5b506106f360048036038101906106ee9190612669565b61129e565b005b61070f600480360381019061070a9190612669565b6112b0565b005b34801561071d57600080fd5b50610738600480360381019061073391906129b5565b611594565b005b34801561074657600080fd5b50610761600480360381019061075c9190612a96565b61170b565b005b34801561076f57600080fd5b5061077861177e565b6040516107859190612622565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190612669565b611784565b6040516107c291906125e7565b60405180910390f35b3480156107d757600080fd5b506107e0611837565b6040516107ed91906125e7565b60405180910390f35b34801561080257600080fd5b5061080b6118c5565b6040516108189190612622565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190612b19565b6118cb565b6040516108559190612533565b60405180910390f35b34801561086a57600080fd5b5061088560048036038101906108809190612669565b61195f565b005b34801561089357600080fd5b506108ae60048036038101906108a99190612988565b611a0e565b005b3480156108bc57600080fd5b506108d760048036038101906108d2919061271e565b611a91565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109645750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461097a90612b88565b80601f01602080910402602001604051908101604052809291908181526020018280546109a690612b88565b80156109f35780601f106109c8576101008083540402835291602001916109f3565b820191906000526020600020905b8154815290600101906020018083116109d657829003601f168201915b5050505050905090565b600e5481565b6000610a0e82611aa7565b610a44576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8a826110c5565b90508073ffffffffffffffffffffffffffffffffffffffff16610aab611b06565b73ffffffffffffffffffffffffffffffffffffffff1614610b0e57610ad781610ad2611b06565b6118cb565b610b0d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610bc8611b0e565b80600f8190555050565b6000610bdc611b8c565b6001546000540303905090565b610bf1611b0e565b80600e8190555050565b60115481565b600b60009054906101000a900460ff1681565b610c1c611b0e565b8060108190555050565b6000610c3182611b95565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c98576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ca484611c61565b91509150610cba8187610cb5611b06565b611c83565b610d0657610ccf86610cca611b06565b6118cb565b610d05576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d6c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d798686866001611cc7565b8015610d8457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5285610e2e888887611ccd565b7c020000000000000000000000000000000000000000000000000000000017611cf5565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ed85760006001850190506000600460008381526020019081526020016000205403610ed6576000548114610ed5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f408686866001611d20565b505050505050565b610f50611b0e565b80600b60006101000a81548160ff02191690831515021790555050565b6000600e54905090565b610f7f611b0e565b600260095403610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90612c05565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610ff290612c56565b60006040518083038185875af1925050503d806000811461102f576040519150601f19603f3d011682016040523d82523d6000602084013e611034565b606091505b5050905080611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90612cb7565b60405180910390fd5b506001600981905550565b61109e8383836040518060200160405280600081525061170b565b505050565b6110ab611b0e565b80600a90805190602001906110c19291906123dc565b5050565b60006110d082611b95565b9050919050565b6110df611b0e565b80600c8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611150576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111a9611b0e565b6111b36000611d26565b565b6000600b60009054906101000a900460ff16905090565b6000601154905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461120f90612b88565b80601f016020809104026020016040519081016040528092919081815260200182805461123b90612b88565b80156112885780601f1061125d57610100808354040283529160200191611288565b820191906000526020600020905b81548152906001019060200180831161126b57829003601f168201915b5050505050905090565b600f5481565b60105481565b6112a6611b0e565b80600d8190555050565b600b60009054906101000a900460ff166112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690612d23565b60405180910390fd5b6001600c5461130e9190612d72565b81611317610bd2565b6113219190612d72565b10611361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135890612e14565b60405180910390fd5b600d548111156113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d90612ea6565b60405180910390fd5b600f54816011546113b79190612d72565b1115611412573481600e546113cc9190612ec6565b111561140d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140490612f92565b60405180910390fd5b611587565b600061141d336110e9565b9050601054828261142e9190612d72565b1115611526576010548110156114d05760008160105461144e9190612fb2565b90506000818461145e9190612fb2565b90503481600e5461146f9190612ec6565b11156114b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a790613058565b60405180910390fd5b81601160008282546114c29190612d72565b925050819055505050611521565b3482600e546114df9190612ec6565b1115611520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611517906130ea565b60405180910390fd5b5b611585565b60105482111561156b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115629061317c565b60405180910390fd5b816011600082825461157d9190612d72565b925050819055505b505b6115913382611dec565b50565b61159c611b06565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611600576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061160d611b06565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116ba611b06565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ff9190612533565b60405180910390a35050565b611716848484610c26565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117785761174184848484611e0a565b611777576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d5481565b606061178f82611aa7565b6117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c59061320e565b60405180910390fd5b60006117d8611f5a565b905060008151116117f8576040518060200160405280600081525061182f565b8061180e6001856118099190612d72565b611fec565b60405160200161181f9291906132b6565b6040516020818303038152906040525b915050919050565b600a805461184490612b88565b80601f016020809104026020016040519081016040528092919081815260200182805461187090612b88565b80156118bd5780601f10611892576101008083540402835291602001916118bd565b820191906000526020600020905b8154815290600101906020018083116118a057829003601f168201915b505050505081565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611967611b0e565b600081116119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a190613331565b60405180910390fd5b600c54816119b6610bd2565b6119c09190612d72565b1115611a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f89061339d565b60405180910390fd5b611a0b3382611dec565b50565b611a16611b0e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c9061342f565b60405180910390fd5b611a8e81611d26565b50565b611a99611b0e565b611aa38282611dec565b5050565b600081611ab2611b8c565b11158015611ac1575060005482105b8015611aff575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611b1661214c565b73ffffffffffffffffffffffffffffffffffffffff16611b346111d6565b73ffffffffffffffffffffffffffffffffffffffff1614611b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b819061349b565b60405180910390fd5b565b60006001905090565b60008082905080611ba4611b8c565b11611c2a57600054811015611c295760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611c27575b60008103611c1d576004600083600190039350838152602001908152602001600020549050611bf3565b8092505050611c5c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ce4868684612154565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e0682826040518060200160405280600081525061215d565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e30611b06565b8786866040518563ffffffff1660e01b8152600401611e529493929190613510565b6020604051808303816000875af1925050508015611e8e57506040513d601f19601f82011682018060405250810190611e8b9190613571565b60015b611f07573d8060008114611ebe576040519150601f19603f3d011682016040523d82523d6000602084013e611ec3565b606091505b506000815103611eff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611f6990612b88565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9590612b88565b8015611fe25780601f10611fb757610100808354040283529160200191611fe2565b820191906000526020600020905b815481529060010190602001808311611fc557829003601f168201915b5050505050905090565b606060008203612033576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612147565b600082905060005b6000821461206557808061204e9061359e565b915050600a8261205e9190613615565b915061203b565b60008167ffffffffffffffff81111561208157612080612814565b5b6040519080825280601f01601f1916602001820160405280156120b35781602001600182028036833780820191505090505b5090505b60008514612140576001826120cc9190612fb2565b9150600a856120db9190613646565b60306120e79190612d72565b60f81b8183815181106120fd576120fc613677565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121399190613615565b94506120b7565b8093505050505b919050565b600033905090565b60009392505050565b61216783836121fa565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121f557600080549050600083820390505b6121a76000868380600101945086611e0a565b6121dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121945781600054146121f257600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612266576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036122a0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122ad6000848385611cc7565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612324836123156000866000611ccd565b61231e856123cc565b17611cf5565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612348578060008190555050506123c76000848385611d20565b505050565b60006001821460e11b9050919050565b8280546123e890612b88565b90600052602060002090601f01602090048101928261240a5760008555612451565b82601f1061242357805160ff1916838001178555612451565b82800160010185558215612451579182015b82811115612450578251825591602001919060010190612435565b5b50905061245e9190612462565b5090565b5b8082111561247b576000816000905550600101612463565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124c881612493565b81146124d357600080fd5b50565b6000813590506124e5816124bf565b92915050565b60006020828403121561250157612500612489565b5b600061250f848285016124d6565b91505092915050565b60008115159050919050565b61252d81612518565b82525050565b60006020820190506125486000830184612524565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561258857808201518184015260208101905061256d565b83811115612597576000848401525b50505050565b6000601f19601f8301169050919050565b60006125b98261254e565b6125c38185612559565b93506125d381856020860161256a565b6125dc8161259d565b840191505092915050565b6000602082019050818103600083015261260181846125ae565b905092915050565b6000819050919050565b61261c81612609565b82525050565b60006020820190506126376000830184612613565b92915050565b61264681612609565b811461265157600080fd5b50565b6000813590506126638161263d565b92915050565b60006020828403121561267f5761267e612489565b5b600061268d84828501612654565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126c182612696565b9050919050565b6126d1816126b6565b82525050565b60006020820190506126ec60008301846126c8565b92915050565b6126fb816126b6565b811461270657600080fd5b50565b600081359050612718816126f2565b92915050565b6000806040838503121561273557612734612489565b5b600061274385828601612709565b925050602061275485828601612654565b9150509250929050565b60008060006060848603121561277757612776612489565b5b600061278586828701612709565b935050602061279686828701612709565b92505060406127a786828701612654565b9150509250925092565b6127ba81612518565b81146127c557600080fd5b50565b6000813590506127d7816127b1565b92915050565b6000602082840312156127f3576127f2612489565b5b6000612801848285016127c8565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61284c8261259d565b810181811067ffffffffffffffff8211171561286b5761286a612814565b5b80604052505050565b600061287e61247f565b905061288a8282612843565b919050565b600067ffffffffffffffff8211156128aa576128a9612814565b5b6128b38261259d565b9050602081019050919050565b82818337600083830152505050565b60006128e26128dd8461288f565b612874565b9050828152602081018484840111156128fe576128fd61280f565b5b6129098482856128c0565b509392505050565b600082601f8301126129265761292561280a565b5b81356129368482602086016128cf565b91505092915050565b60006020828403121561295557612954612489565b5b600082013567ffffffffffffffff8111156129735761297261248e565b5b61297f84828501612911565b91505092915050565b60006020828403121561299e5761299d612489565b5b60006129ac84828501612709565b91505092915050565b600080604083850312156129cc576129cb612489565b5b60006129da85828601612709565b92505060206129eb858286016127c8565b9150509250929050565b600067ffffffffffffffff821115612a1057612a0f612814565b5b612a198261259d565b9050602081019050919050565b6000612a39612a34846129f5565b612874565b905082815260208101848484011115612a5557612a5461280f565b5b612a608482856128c0565b509392505050565b600082601f830112612a7d57612a7c61280a565b5b8135612a8d848260208601612a26565b91505092915050565b60008060008060808587031215612ab057612aaf612489565b5b6000612abe87828801612709565b9450506020612acf87828801612709565b9350506040612ae087828801612654565b925050606085013567ffffffffffffffff811115612b0157612b0061248e565b5b612b0d87828801612a68565b91505092959194509250565b60008060408385031215612b3057612b2f612489565b5b6000612b3e85828601612709565b9250506020612b4f85828601612709565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612ba057607f821691505b602082108103612bb357612bb2612b59565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612bef601f83612559565b9150612bfa82612bb9565b602082019050919050565b60006020820190508181036000830152612c1e81612be2565b9050919050565b600081905092915050565b50565b6000612c40600083612c25565b9150612c4b82612c30565b600082019050919050565b6000612c6182612c33565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612ca1601083612559565b9150612cac82612c6b565b602082019050919050565b60006020820190508181036000830152612cd081612c94565b9050919050565b7f5075626c69632073616c65206973207061757365642e00000000000000000000600082015250565b6000612d0d601683612559565b9150612d1882612cd7565b602082019050919050565b60006020820190508181036000830152612d3c81612d00565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d7d82612609565b9150612d8883612609565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612dbd57612dbc612d43565b5b828201905092915050565b7f4d6178696d756d20737570706c792065786365656465642e0000000000000000600082015250565b6000612dfe601883612559565b9150612e0982612dc8565b602082019050919050565b60006020820190508181036000830152612e2d81612df1565b9050919050565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465642e00000000000000000000000000000000000000000000000000602082015250565b6000612e90602783612559565b9150612e9b82612e34565b604082019050919050565b60006020820190508181036000830152612ebf81612e83565b9050919050565b6000612ed182612609565b9150612edc83612609565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f1557612f14612d43565b5b828202905092915050565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2031000000000000000000000000000000000000000000000000000000602082015250565b6000612f7c602583612559565b9150612f8782612f20565b604082019050919050565b60006020820190508181036000830152612fab81612f6f565b9050919050565b6000612fbd82612609565b9150612fc883612609565b925082821015612fdb57612fda612d43565b5b828203905092915050565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2032000000000000000000000000000000000000000000000000000000602082015250565b6000613042602583612559565b915061304d82612fe6565b604082019050919050565b6000602082019050818103600083015261307181613035565b9050919050565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2033000000000000000000000000000000000000000000000000000000602082015250565b60006130d4602583612559565b91506130df82613078565b604082019050919050565b60006020820190508181036000830152613103816130c7565b9050919050565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465640000000000000000000000000000000000000000000000000000602082015250565b6000613166602683612559565b91506131718261310a565b604082019050919050565b6000602082019050818103600083015261319581613159565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006131f8602f83612559565b91506132038261319c565b604082019050919050565b60006020820190508181036000830152613227816131eb565b9050919050565b600081905092915050565b60006132448261254e565b61324e818561322e565b935061325e81856020860161256a565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006132a060058361322e565b91506132ab8261326a565b600582019050919050565b60006132c28285613239565b91506132ce8284613239565b91506132d982613293565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b600061331b601383612559565b9150613326826132e5565b602082019050919050565b6000602082019050818103600083015261334a8161330e565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000613387601783612559565b915061339282613351565b602082019050919050565b600060208201905081810360008301526133b68161337a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613419602683612559565b9150613424826133bd565b604082019050919050565b600060208201905081810360008301526134488161340c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613485602083612559565b91506134908261344f565b602082019050919050565b600060208201905081810360008301526134b481613478565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134e2826134bb565b6134ec81856134c6565b93506134fc81856020860161256a565b6135058161259d565b840191505092915050565b600060808201905061352560008301876126c8565b61353260208301866126c8565b61353f6040830185612613565b818103606083015261355181846134d7565b905095945050505050565b60008151905061356b816124bf565b92915050565b60006020828403121561358757613586612489565b5b60006135958482850161355c565b91505092915050565b60006135a982612609565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135db576135da612d43565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061362082612609565b915061362b83612609565b92508261363b5761363a6135e6565b5b828204905092915050565b600061365182612609565b915061365c83612609565b92508261366c5761366b6135e6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212209aff98016950c88d65ee5bece1b8e1185285db395b68b69c5f7bec807a95deff64736f6c634300080d0033

Deployed Bytecode Sourcemap

62173:4794:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31977:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37624:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62455:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39570:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39118:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66236:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31031:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66480:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62594:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62331:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66734:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48835:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66082:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66371:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64673:192;;;;;;;;;;;;;:::i;:::-;;40460:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64182:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37413:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66866:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32656:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16616:103;;;;;;;;;;;;;:::i;:::-;;65829:117;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65952:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15968:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37793:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62508:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62550:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66601:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62691:1485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39846:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40716:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62413:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65204:377;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62293:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62376:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40225:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64296:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16874:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64546:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31977:615;32062:4;32377:10;32362:25;;:11;:25;;;;:102;;;;32454:10;32439:25;;:11;:25;;;;32362:102;:179;;;;32531:10;32516:25;;:11;:25;;;;32362:179;32342:199;;31977:615;;;:::o;37624:100::-;37678:13;37711:5;37704:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37624:100;:::o;62455:48::-;;;;:::o;39570:204::-;39638:7;39663:16;39671:7;39663;:16::i;:::-;39658:64;;39688:34;;;;;;;;;;;;;;39658:64;39742:15;:24;39758:7;39742:24;;;;;;;;;;;;;;;;;;;;;39735:31;;39570:204;;;:::o;39118:386::-;39191:13;39207:16;39215:7;39207;:16::i;:::-;39191:32;;39263:5;39240:28;;:19;:17;:19::i;:::-;:28;;;39236:175;;39288:44;39305:5;39312:19;:17;:19::i;:::-;39288:16;:44::i;:::-;39283:128;;39360:35;;;;;;;;;;;;;;39283:128;39236:175;39450:2;39423:15;:24;39439:7;39423:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39488:7;39484:2;39468:28;;39477:5;39468:28;;;;;;;;;;;;39180:324;39118:386;;:::o;66236:129::-;15854:13;:11;:13::i;:::-;66346::::1;66329:14;:30;;;;66236:129:::0;:::o;31031:315::-;31084:7;31312:15;:13;:15::i;:::-;31297:12;;31281:13;;:28;:46;31274:53;;31031:315;:::o;66480:115::-;15854:13;:11;:13::i;:::-;66583:6:::1;66563:17;:26;;;;66480:115:::0;:::o;62594:40::-;;;;:::o;62331:38::-;;;;;;;;;;;;;:::o;66734:126::-;15854:13;:11;:13::i;:::-;66848:6:::1;66826:19;:28;;;;66734:126:::0;:::o;48835:2800::-;48969:27;48999;49018:7;48999:18;:27::i;:::-;48969:57;;49084:4;49043:45;;49059:19;49043:45;;;49039:86;;49097:28;;;;;;;;;;;;;;49039:86;49139:27;49168:23;49195:28;49215:7;49195:19;:28::i;:::-;49138:85;;;;49323:62;49342:15;49359:4;49365:19;:17;:19::i;:::-;49323:18;:62::i;:::-;49318:174;;49405:43;49422:4;49428:19;:17;:19::i;:::-;49405:16;:43::i;:::-;49400:92;;49457:35;;;;;;;;;;;;;;49400:92;49318:174;49523:1;49509:16;;:2;:16;;;49505:52;;49534:23;;;;;;;;;;;;;;49505:52;49570:43;49592:4;49598:2;49602:7;49611:1;49570:21;:43::i;:::-;49706:15;49703:160;;;49846:1;49825:19;49818:30;49703:160;50241:18;:24;50260:4;50241:24;;;;;;;;;;;;;;;;50239:26;;;;;;;;;;;;50310:18;:22;50329:2;50310:22;;;;;;;;;;;;;;;;50308:24;;;;;;;;;;;50632:145;50669:2;50717:45;50732:4;50738:2;50742:19;50717:14;:45::i;:::-;28259:8;50690:72;50632:18;:145::i;:::-;50603:17;:26;50621:7;50603:26;;;;;;;;;;;:174;;;;50947:1;28259:8;50897:19;:46;:51;50893:626;;50969:19;51001:1;50991:7;:11;50969:33;;51158:1;51124:17;:30;51142:11;51124:30;;;;;;;;;;;;:35;51120:384;;51262:13;;51247:11;:28;51243:242;;51442:19;51409:17;:30;51427:11;51409:30;;;;;;;;;;;:52;;;;51243:242;51120:384;50950:569;50893:626;51566:7;51562:2;51547:27;;51556:4;51547:27;;;;;;;;;;;;51585:42;51606:4;51612:2;51616:7;51625:1;51585:20;:42::i;:::-;48958:2677;;;48835:2800;;;:::o;66082:148::-;15854:13;:11;:13::i;:::-;66205:19:::1;66184:18;;:40;;;;;;;;;;;;;;;;;;66082:148:::0;:::o;66371:103::-;66425:7;66451:17;;66444:24;;66371:103;:::o;64673:192::-;15854:13;:11;:13::i;:::-;12893:1:::1;13491:7;;:19:::0;13483:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;12893:1;13624:7;:18;;;;64749:12:::2;64767:10;:15;;64790:21;64767:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64748:68;;;64831:7;64823:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;64741:124;12849:1:::1;13803:7;:22;;;;64673:192::o:0;40460:185::-;40598:39;40615:4;40621:2;40625:7;40598:39;;;;;;;;;;;;:16;:39::i;:::-;40460:185;;;:::o;64182:108::-;15854:13;:11;:13::i;:::-;64277:7:::1;64262:12;:22;;;;;;;;;;;;:::i;:::-;;64182:108:::0;:::o;37413:144::-;37477:7;37520:27;37539:7;37520:18;:27::i;:::-;37497:52;;37413:144;;;:::o;66866:98::-;15854:13;:11;:13::i;:::-;66948:10:::1;66936:9;:22;;;;66866:98:::0;:::o;32656:224::-;32720:7;32761:1;32744:19;;:5;:19;;;32740:60;;32772:28;;;;;;;;;;;;;;32740:60;27211:13;32818:18;:25;32837:5;32818:25;;;;;;;;;;;;;;;;:54;32811:61;;32656:224;;;:::o;16616:103::-;15854:13;:11;:13::i;:::-;16681:30:::1;16708:1;16681:18;:30::i;:::-;16616:103::o:0;65829:117::-;65900:4;65922:18;;;;;;;;;;;65915:25;;65829:117;:::o;65952:124::-;66025:7;66050:20;;66043:27;;65952:124;:::o;15968:87::-;16014:7;16041:6;;;;;;;;;;;16034:13;;15968:87;:::o;37793:104::-;37849:13;37882:7;37875:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37793:104;:::o;62508:37::-;;;;:::o;62550:39::-;;;;:::o;66601:127::-;15854:13;:11;:13::i;:::-;66716:6:::1;66697:16;:25;;;;66601:127:::0;:::o;62691:1485::-;62764:18;;;;;;;;;;;62756:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;62869:1;62857:9;;:13;;;;:::i;:::-;62840:14;62824:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;62816:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;62934:16;;62916:14;:34;;62908:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;63046:14;;63029;63006:20;;:37;;;;:::i;:::-;:54;63003:1122;;;63124:9;63106:14;63086:17;;:34;;;;:::i;:::-;:47;;63078:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;63003:1122;;;63212:19;63234:21;63244:10;63234:9;:21::i;:::-;63212:43;;63314:19;;63297:14;63280;:31;;;;:::i;:::-;:53;63276:842;;;63382:19;;63365:14;:36;63361:551;;;63435:19;63479:14;63457:19;;:36;;;;:::i;:::-;63435:58;;63512:15;63547:14;63530;:31;;;;:::i;:::-;63512:49;;63622:9;63608:10;63588:17;;:30;;;;:::i;:::-;:43;;63580:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;63718:14;63694:20;;:38;;;;;;;:::i;:::-;;;;;;;;63416:332;;63361:551;;;63845:9;63827:14;63807:17;;:34;;;;:::i;:::-;:47;;63799:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;63361:551;63276:842;;;63991:19;;63973:14;:37;;63965:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;64092:14;64068:20;;:38;;;;;;;:::i;:::-;;;;;;;;63276:842;63201:924;63003:1122;64133:37;64143:10;64155:14;64133:9;:37::i;:::-;62691:1485;:::o;39846:308::-;39957:19;:17;:19::i;:::-;39945:31;;:8;:31;;;39941:61;;39985:17;;;;;;;;;;;;;;39941:61;40067:8;40015:18;:39;40034:19;:17;:19::i;:::-;40015:39;;;;;;;;;;;;;;;:49;40055:8;40015:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;40127:8;40091:55;;40106:19;:17;:19::i;:::-;40091:55;;;40137:8;40091:55;;;;;;:::i;:::-;;;;;;;;39846:308;;:::o;40716:399::-;40883:31;40896:4;40902:2;40906:7;40883:12;:31::i;:::-;40947:1;40929:2;:14;;;:19;40925:183;;40968:56;40999:4;41005:2;41009:7;41018:5;40968:30;:56::i;:::-;40963:145;;41052:40;;;;;;;;;;;;;;40963:145;40925:183;40716:399;;;;:::o;62413:37::-;;;;:::o;65204:377::-;65278:13;65308:17;65316:8;65308:7;:17::i;:::-;65300:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;65385:28;65416:10;:8;:10::i;:::-;65385:41;;65471:1;65446:14;65440:28;:32;:135;;;;;;;;;;;;;;;;;65508:14;65523:28;65549:1;65540:8;:10;;;;:::i;:::-;65523:16;:28::i;:::-;65491:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65440:135;65433:142;;;65204:377;;;:::o;62293:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62376:32::-;;;;:::o;40225:164::-;40322:4;40346:18;:25;40365:5;40346:25;;;;;;;;;;;;;;;:35;40372:8;40346:35;;;;;;;;;;;;;;;;;;;;;;;;;40339:42;;40225:164;;;;:::o;64296:244::-;15854:13;:11;:13::i;:::-;64389:1:::1;64378:8;:12;64370:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;64457:9;;64445:8;64429:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;64421:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;64503:31;64513:10;64525:8;64503:9;:31::i;:::-;64296:244:::0;:::o;16874:201::-;15854:13;:11;:13::i;:::-;16983:1:::1;16963:22;;:8;:22;;::::0;16955:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;17039:28;17058:8;17039:18;:28::i;:::-;16874:201:::0;:::o;64546:121::-;15854:13;:11;:13::i;:::-;64630:29:::1;64640:11;64653:5;64630:9;:29::i;:::-;64546:121:::0;;:::o;41370:273::-;41427:4;41483:7;41464:15;:13;:15::i;:::-;:26;;:66;;;;;41517:13;;41507:7;:23;41464:66;:152;;;;;41615:1;27981:8;41568:17;:26;41586:7;41568:26;;;;;;;;;;;;:43;:48;41464:152;41444:172;;41370:273;;;:::o;59931:105::-;59991:7;60018:10;60011:17;;59931:105;:::o;16133:132::-;16208:12;:10;:12::i;:::-;16197:23;;:7;:5;:7::i;:::-;:23;;;16189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16133:132::o;65728:95::-;65793:7;65816:1;65809:8;;65728:95;:::o;34330:1129::-;34397:7;34417:12;34432:7;34417:22;;34500:4;34481:15;:13;:15::i;:::-;:23;34477:915;;34534:13;;34527:4;:20;34523:869;;;34572:14;34589:17;:23;34607:4;34589:23;;;;;;;;;;;;34572:40;;34705:1;27981:8;34678:6;:23;:28;34674:699;;35197:113;35214:1;35204:6;:11;35197:113;;35257:17;:25;35275:6;;;;;;;35257:25;;;;;;;;;;;;35248:34;;35197:113;;;35343:6;35336:13;;;;;;34674:699;34549:843;34523:869;34477:915;35420:31;;;;;;;;;;;;;;34330:1129;;;;:::o;47171:652::-;47266:27;47295:23;47336:53;47392:15;47336:71;;47578:7;47572:4;47565:21;47613:22;47607:4;47600:36;47689:4;47683;47673:21;47650:44;;47785:19;47779:26;47760:45;;47516:300;47171:652;;;:::o;47936:645::-;48078:11;48240:15;48234:4;48230:26;48222:34;;48399:15;48388:9;48384:31;48371:44;;48546:15;48535:9;48532:30;48525:4;48514:9;48511:19;48508:55;48498:65;;47936:645;;;;;:::o;58764:159::-;;;;;:::o;57076:309::-;57211:7;57231:16;28382:3;57257:19;:40;;57231:67;;28382:3;57324:31;57335:4;57341:2;57345:9;57324:10;:31::i;:::-;57316:40;;:61;;57309:68;;;57076:309;;;;;:::o;36904:447::-;36984:14;37152:15;37145:5;37141:27;37132:36;;37326:5;37312:11;37288:22;37284:40;37281:51;37274:5;37271:62;37261:72;;36904:447;;;;:::o;59582:158::-;;;;;:::o;17235:191::-;17309:16;17328:6;;;;;;;;;;;17309:25;;17354:8;17345:6;;:17;;;;;;;;;;;;;;;;;;17409:8;17378:40;;17399:8;17378:40;;;;;;;;;;;;17298:128;17235:191;:::o;41727:104::-;41796:27;41806:2;41810:8;41796:27;;;;;;;;;;;;:9;:27::i;:::-;41727:104;;:::o;55586:716::-;55749:4;55795:2;55770:45;;;55816:19;:17;:19::i;:::-;55837:4;55843:7;55852:5;55770:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55766:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56070:1;56053:6;:13;:18;56049:235;;56099:40;;;;;;;;;;;;;;56049:235;56242:6;56236:13;56227:6;56223:2;56219:15;56212:38;55766:529;55939:54;;;55929:64;;;:6;:64;;;;55922:71;;;55586:716;;;;;;:::o;65587:135::-;65672:13;65704:12;65697:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65587:135;:::o;461:723::-;517:13;747:1;738:5;:10;734:53;;765:10;;;;;;;;;;;;;;;;;;;;;734:53;797:12;812:5;797:20;;828:14;853:78;868:1;860:4;:9;853:78;;886:8;;;;;:::i;:::-;;;;917:2;909:10;;;;;:::i;:::-;;;853:78;;;941:19;973:6;963:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;941:39;;991:154;1007:1;998:5;:10;991:154;;1035:1;1025:11;;;;;:::i;:::-;;;1102:2;1094:5;:10;;;;:::i;:::-;1081:2;:24;;;;:::i;:::-;1068:39;;1051:6;1058;1051:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1131:2;1122:11;;;;;:::i;:::-;;;991:154;;;1169:6;1155:21;;;;;461:723;;;;:::o;14519:98::-;14572:7;14599:10;14592:17;;14519:98;:::o;57961:147::-;58098:6;57961:147;;;;;:::o;42247:681::-;42370:19;42376:2;42380:8;42370:5;:19::i;:::-;42449:1;42431:2;:14;;;:19;42427:483;;42471:11;42485:13;;42471:27;;42517:13;42539:8;42533:3;:14;42517:30;;42566:233;42597:62;42636:1;42640:2;42644:7;;;;;;42653:5;42597:30;:62::i;:::-;42592:167;;42695:40;;;;;;;;;;;;;;42592:167;42794:3;42786:5;:11;42566:233;;42881:3;42864:13;;:20;42860:34;;42886:8;;;42860:34;42452:458;;42427:483;42247:681;;;:::o;43201:1529::-;43266:20;43289:13;;43266:36;;43331:1;43317:16;;:2;:16;;;43313:48;;43342:19;;;;;;;;;;;;;;43313:48;43388:1;43376:8;:13;43372:44;;43398:18;;;;;;;;;;;;;;43372:44;43429:61;43459:1;43463:2;43467:12;43481:8;43429:21;:61::i;:::-;43972:1;27348:2;43943:1;:25;;43942:31;43930:8;:44;43904:18;:22;43923:2;43904:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;44251:139;44288:2;44342:33;44365:1;44369:2;44373:1;44342:14;:33::i;:::-;44309:30;44330:8;44309:20;:30::i;:::-;:66;44251:18;:139::i;:::-;44217:17;:31;44235:12;44217:31;;;;;;;;;;;:173;;;;44407:15;44425:12;44407:30;;44452:11;44481:8;44466:12;:23;44452:37;;44504:101;44556:9;;;;;;44552:2;44531:35;;44548:1;44531:35;;;;;;;;;;;;44600:3;44590:7;:13;44504:101;;44637:3;44621:13;:19;;;;43678:974;;44662:60;44691:1;44695:2;44699:12;44713:8;44662:20;:60::i;:::-;43255:1475;43201:1529;;:::o;38734:322::-;38804:14;39035:1;39025:8;39022:15;38997:23;38993:45;38983:55;;38734:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:118::-;3078:24;3096:5;3078:24;:::i;:::-;3073:3;3066:37;2991:118;;:::o;3115:222::-;3208:4;3246:2;3235:9;3231:18;3223:26;;3259:71;3327:1;3316:9;3312:17;3303:6;3259:71;:::i;:::-;3115:222;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:116::-;5985:21;6000:5;5985:21;:::i;:::-;5978:5;5975:32;5965:60;;6021:1;6018;6011:12;5965:60;5915:116;:::o;6037:133::-;6080:5;6118:6;6105:20;6096:29;;6134:30;6158:5;6134:30;:::i;:::-;6037:133;;;;:::o;6176:323::-;6232:6;6281:2;6269:9;6260:7;6256:23;6252:32;6249:119;;;6287:79;;:::i;:::-;6249:119;6407:1;6432:50;6474:7;6465:6;6454:9;6450:22;6432:50;:::i;:::-;6422:60;;6378:114;6176:323;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:180::-;12498:77;12495:1;12488:88;12595:4;12592:1;12585:15;12619:4;12616:1;12609:15;12636:320;12680:6;12717:1;12711:4;12707:12;12697:22;;12764:1;12758:4;12754:12;12785:18;12775:81;;12841:4;12833:6;12829:17;12819:27;;12775:81;12903:2;12895:6;12892:14;12872:18;12869:38;12866:84;;12922:18;;:::i;:::-;12866:84;12687:269;12636:320;;;:::o;12962:181::-;13102:33;13098:1;13090:6;13086:14;13079:57;12962:181;:::o;13149:366::-;13291:3;13312:67;13376:2;13371:3;13312:67;:::i;:::-;13305:74;;13388:93;13477:3;13388:93;:::i;:::-;13506:2;13501:3;13497:12;13490:19;;13149:366;;;:::o;13521:419::-;13687:4;13725:2;13714:9;13710:18;13702:26;;13774:9;13768:4;13764:20;13760:1;13749:9;13745:17;13738:47;13802:131;13928:4;13802:131;:::i;:::-;13794:139;;13521:419;;;:::o;13946:147::-;14047:11;14084:3;14069:18;;13946:147;;;;:::o;14099:114::-;;:::o;14219:398::-;14378:3;14399:83;14480:1;14475:3;14399:83;:::i;:::-;14392:90;;14491:93;14580:3;14491:93;:::i;:::-;14609:1;14604:3;14600:11;14593:18;;14219:398;;;:::o;14623:379::-;14807:3;14829:147;14972:3;14829:147;:::i;:::-;14822:154;;14993:3;14986:10;;14623:379;;;:::o;15008:166::-;15148:18;15144:1;15136:6;15132:14;15125:42;15008:166;:::o;15180:366::-;15322:3;15343:67;15407:2;15402:3;15343:67;:::i;:::-;15336:74;;15419:93;15508:3;15419:93;:::i;:::-;15537:2;15532:3;15528:12;15521:19;;15180:366;;;:::o;15552:419::-;15718:4;15756:2;15745:9;15741:18;15733:26;;15805:9;15799:4;15795:20;15791:1;15780:9;15776:17;15769:47;15833:131;15959:4;15833:131;:::i;:::-;15825:139;;15552:419;;;:::o;15977:172::-;16117:24;16113:1;16105:6;16101:14;16094:48;15977:172;:::o;16155:366::-;16297:3;16318:67;16382:2;16377:3;16318:67;:::i;:::-;16311:74;;16394:93;16483:3;16394:93;:::i;:::-;16512:2;16507:3;16503:12;16496:19;;16155:366;;;:::o;16527:419::-;16693:4;16731:2;16720:9;16716:18;16708:26;;16780:9;16774:4;16770:20;16766:1;16755:9;16751:17;16744:47;16808:131;16934:4;16808:131;:::i;:::-;16800:139;;16527:419;;;:::o;16952:180::-;17000:77;16997:1;16990:88;17097:4;17094:1;17087:15;17121:4;17118:1;17111:15;17138:305;17178:3;17197:20;17215:1;17197:20;:::i;:::-;17192:25;;17231:20;17249:1;17231:20;:::i;:::-;17226:25;;17385:1;17317:66;17313:74;17310:1;17307:81;17304:107;;;17391:18;;:::i;:::-;17304:107;17435:1;17432;17428:9;17421:16;;17138:305;;;;:::o;17449:174::-;17589:26;17585:1;17577:6;17573:14;17566:50;17449:174;:::o;17629:366::-;17771:3;17792:67;17856:2;17851:3;17792:67;:::i;:::-;17785:74;;17868:93;17957:3;17868:93;:::i;:::-;17986:2;17981:3;17977:12;17970:19;;17629:366;;;:::o;18001:419::-;18167:4;18205:2;18194:9;18190:18;18182:26;;18254:9;18248:4;18244:20;18240:1;18229:9;18225:17;18218:47;18282:131;18408:4;18282:131;:::i;:::-;18274:139;;18001:419;;;:::o;18426:226::-;18566:34;18562:1;18554:6;18550:14;18543:58;18635:9;18630:2;18622:6;18618:15;18611:34;18426:226;:::o;18658:366::-;18800:3;18821:67;18885:2;18880:3;18821:67;:::i;:::-;18814:74;;18897:93;18986:3;18897:93;:::i;:::-;19015:2;19010:3;19006:12;18999:19;;18658:366;;;:::o;19030:419::-;19196:4;19234:2;19223:9;19219:18;19211:26;;19283:9;19277:4;19273:20;19269:1;19258:9;19254:17;19247:47;19311:131;19437:4;19311:131;:::i;:::-;19303:139;;19030:419;;;:::o;19455:348::-;19495:7;19518:20;19536:1;19518:20;:::i;:::-;19513:25;;19552:20;19570:1;19552:20;:::i;:::-;19547:25;;19740:1;19672:66;19668:74;19665:1;19662:81;19657:1;19650:9;19643:17;19639:105;19636:131;;;19747:18;;:::i;:::-;19636:131;19795:1;19792;19788:9;19777:20;;19455:348;;;;:::o;19809:224::-;19949:34;19945:1;19937:6;19933:14;19926:58;20018:7;20013:2;20005:6;20001:15;19994:32;19809:224;:::o;20039:366::-;20181:3;20202:67;20266:2;20261:3;20202:67;:::i;:::-;20195:74;;20278:93;20367:3;20278:93;:::i;:::-;20396:2;20391:3;20387:12;20380:19;;20039:366;;;:::o;20411:419::-;20577:4;20615:2;20604:9;20600:18;20592:26;;20664:9;20658:4;20654:20;20650:1;20639:9;20635:17;20628:47;20692:131;20818:4;20692:131;:::i;:::-;20684:139;;20411:419;;;:::o;20836:191::-;20876:4;20896:20;20914:1;20896:20;:::i;:::-;20891:25;;20930:20;20948:1;20930:20;:::i;:::-;20925:25;;20969:1;20966;20963:8;20960:34;;;20974:18;;:::i;:::-;20960:34;21019:1;21016;21012:9;21004:17;;20836:191;;;;:::o;21033:224::-;21173:34;21169:1;21161:6;21157:14;21150:58;21242:7;21237:2;21229:6;21225:15;21218:32;21033:224;:::o;21263:366::-;21405:3;21426:67;21490:2;21485:3;21426:67;:::i;:::-;21419:74;;21502:93;21591:3;21502:93;:::i;:::-;21620:2;21615:3;21611:12;21604:19;;21263:366;;;:::o;21635:419::-;21801:4;21839:2;21828:9;21824:18;21816:26;;21888:9;21882:4;21878:20;21874:1;21863:9;21859:17;21852:47;21916:131;22042:4;21916:131;:::i;:::-;21908:139;;21635:419;;;:::o;22060:224::-;22200:34;22196:1;22188:6;22184:14;22177:58;22269:7;22264:2;22256:6;22252:15;22245:32;22060:224;:::o;22290:366::-;22432:3;22453:67;22517:2;22512:3;22453:67;:::i;:::-;22446:74;;22529:93;22618:3;22529:93;:::i;:::-;22647:2;22642:3;22638:12;22631:19;;22290:366;;;:::o;22662:419::-;22828:4;22866:2;22855:9;22851:18;22843:26;;22915:9;22909:4;22905:20;22901:1;22890:9;22886:17;22879:47;22943:131;23069:4;22943:131;:::i;:::-;22935:139;;22662:419;;;:::o;23087:225::-;23227:34;23223:1;23215:6;23211:14;23204:58;23296:8;23291:2;23283:6;23279:15;23272:33;23087:225;:::o;23318:366::-;23460:3;23481:67;23545:2;23540:3;23481:67;:::i;:::-;23474:74;;23557:93;23646:3;23557:93;:::i;:::-;23675:2;23670:3;23666:12;23659:19;;23318:366;;;:::o;23690:419::-;23856:4;23894:2;23883:9;23879:18;23871:26;;23943:9;23937:4;23933:20;23929:1;23918:9;23914:17;23907:47;23971:131;24097:4;23971:131;:::i;:::-;23963:139;;23690:419;;;:::o;24115:234::-;24255:34;24251:1;24243:6;24239:14;24232:58;24324:17;24319:2;24311:6;24307:15;24300:42;24115:234;:::o;24355:366::-;24497:3;24518:67;24582:2;24577:3;24518:67;:::i;:::-;24511:74;;24594:93;24683:3;24594:93;:::i;:::-;24712:2;24707:3;24703:12;24696:19;;24355:366;;;:::o;24727:419::-;24893:4;24931:2;24920:9;24916:18;24908:26;;24980:9;24974:4;24970:20;24966:1;24955:9;24951:17;24944:47;25008:131;25134:4;25008:131;:::i;:::-;25000:139;;24727:419;;;:::o;25152:148::-;25254:11;25291:3;25276:18;;25152:148;;;;:::o;25306:377::-;25412:3;25440:39;25473:5;25440:39;:::i;:::-;25495:89;25577:6;25572:3;25495:89;:::i;:::-;25488:96;;25593:52;25638:6;25633:3;25626:4;25619:5;25615:16;25593:52;:::i;:::-;25670:6;25665:3;25661:16;25654:23;;25416:267;25306:377;;;;:::o;25689:155::-;25829:7;25825:1;25817:6;25813:14;25806:31;25689:155;:::o;25850:400::-;26010:3;26031:84;26113:1;26108:3;26031:84;:::i;:::-;26024:91;;26124:93;26213:3;26124:93;:::i;:::-;26242:1;26237:3;26233:11;26226:18;;25850:400;;;:::o;26256:701::-;26537:3;26559:95;26650:3;26641:6;26559:95;:::i;:::-;26552:102;;26671:95;26762:3;26753:6;26671:95;:::i;:::-;26664:102;;26783:148;26927:3;26783:148;:::i;:::-;26776:155;;26948:3;26941:10;;26256:701;;;;;:::o;26963:169::-;27103:21;27099:1;27091:6;27087:14;27080:45;26963:169;:::o;27138:366::-;27280:3;27301:67;27365:2;27360:3;27301:67;:::i;:::-;27294:74;;27377:93;27466:3;27377:93;:::i;:::-;27495:2;27490:3;27486:12;27479:19;;27138:366;;;:::o;27510:419::-;27676:4;27714:2;27703:9;27699:18;27691:26;;27763:9;27757:4;27753:20;27749:1;27738:9;27734:17;27727:47;27791:131;27917:4;27791:131;:::i;:::-;27783:139;;27510:419;;;:::o;27935:173::-;28075:25;28071:1;28063:6;28059:14;28052:49;27935:173;:::o;28114:366::-;28256:3;28277:67;28341:2;28336:3;28277:67;:::i;:::-;28270:74;;28353:93;28442:3;28353:93;:::i;:::-;28471:2;28466:3;28462:12;28455:19;;28114:366;;;:::o;28486:419::-;28652:4;28690:2;28679:9;28675:18;28667:26;;28739:9;28733:4;28729:20;28725:1;28714:9;28710:17;28703:47;28767:131;28893:4;28767:131;:::i;:::-;28759:139;;28486:419;;;:::o;28911:225::-;29051:34;29047:1;29039:6;29035:14;29028:58;29120:8;29115:2;29107:6;29103:15;29096:33;28911:225;:::o;29142:366::-;29284:3;29305:67;29369:2;29364:3;29305:67;:::i;:::-;29298:74;;29381:93;29470:3;29381:93;:::i;:::-;29499:2;29494:3;29490:12;29483:19;;29142:366;;;:::o;29514:419::-;29680:4;29718:2;29707:9;29703:18;29695:26;;29767:9;29761:4;29757:20;29753:1;29742:9;29738:17;29731:47;29795:131;29921:4;29795:131;:::i;:::-;29787:139;;29514:419;;;:::o;29939:182::-;30079:34;30075:1;30067:6;30063:14;30056:58;29939:182;:::o;30127:366::-;30269:3;30290:67;30354:2;30349:3;30290:67;:::i;:::-;30283:74;;30366:93;30455:3;30366:93;:::i;:::-;30484:2;30479:3;30475:12;30468:19;;30127:366;;;:::o;30499:419::-;30665:4;30703:2;30692:9;30688:18;30680:26;;30752:9;30746:4;30742:20;30738:1;30727:9;30723:17;30716:47;30780:131;30906:4;30780:131;:::i;:::-;30772:139;;30499:419;;;:::o;30924:98::-;30975:6;31009:5;31003:12;30993:22;;30924:98;;;:::o;31028:168::-;31111:11;31145:6;31140:3;31133:19;31185:4;31180:3;31176:14;31161:29;;31028:168;;;;:::o;31202:360::-;31288:3;31316:38;31348:5;31316:38;:::i;:::-;31370:70;31433:6;31428:3;31370:70;:::i;:::-;31363:77;;31449:52;31494:6;31489:3;31482:4;31475:5;31471:16;31449:52;:::i;:::-;31526:29;31548:6;31526:29;:::i;:::-;31521:3;31517:39;31510:46;;31292:270;31202:360;;;;:::o;31568:640::-;31763:4;31801:3;31790:9;31786:19;31778:27;;31815:71;31883:1;31872:9;31868:17;31859:6;31815:71;:::i;:::-;31896:72;31964:2;31953:9;31949:18;31940:6;31896:72;:::i;:::-;31978;32046:2;32035:9;32031:18;32022:6;31978:72;:::i;:::-;32097:9;32091:4;32087:20;32082:2;32071:9;32067:18;32060:48;32125:76;32196:4;32187:6;32125:76;:::i;:::-;32117:84;;31568:640;;;;;;;:::o;32214:141::-;32270:5;32301:6;32295:13;32286:22;;32317:32;32343:5;32317:32;:::i;:::-;32214:141;;;;:::o;32361:349::-;32430:6;32479:2;32467:9;32458:7;32454:23;32450:32;32447:119;;;32485:79;;:::i;:::-;32447:119;32605:1;32630:63;32685:7;32676:6;32665:9;32661:22;32630:63;:::i;:::-;32620:73;;32576:127;32361:349;;;;:::o;32716:233::-;32755:3;32778:24;32796:5;32778:24;:::i;:::-;32769:33;;32824:66;32817:5;32814:77;32811:103;;32894:18;;:::i;:::-;32811:103;32941:1;32934:5;32930:13;32923:20;;32716:233;;;:::o;32955:180::-;33003:77;33000:1;32993:88;33100:4;33097:1;33090:15;33124:4;33121:1;33114:15;33141:185;33181:1;33198:20;33216:1;33198:20;:::i;:::-;33193:25;;33232:20;33250:1;33232:20;:::i;:::-;33227:25;;33271:1;33261:35;;33276:18;;:::i;:::-;33261:35;33318:1;33315;33311:9;33306:14;;33141:185;;;;:::o;33332:176::-;33364:1;33381:20;33399:1;33381:20;:::i;:::-;33376:25;;33415:20;33433:1;33415:20;:::i;:::-;33410:25;;33454:1;33444:35;;33459:18;;:::i;:::-;33444:35;33500:1;33497;33493:9;33488:14;;33332:176;;;;:::o;33514:180::-;33562:77;33559:1;33552:88;33659:4;33656:1;33649:15;33683:4;33680:1;33673:15

Swarm Source

ipfs://9aff98016950c88d65ee5bece1b8e1185285db395b68b69c5f7bec807a95deff
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.