ETH Price: $3,388.73 (-1.54%)
Gas: 2 Gwei

Token

DegenDicks (DD)
 

Overview

Max Total Supply

2,831 DD

Holders

1,262

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 DD
0x96c697a9a7ee0b4804097f6eeceddc76df4df4e4
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:
DegenDicks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-05
*/

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

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

  uint256 public  maxSupply = 2222;
  uint256 public  MAX_MINTS_PER_TX = 6;
  uint256 public  PUBLIC_SALE_PRICE = 0.002 ether;
  uint256 public  NUM_FREE_MINTS = 2222;
  uint256 public  MAX_FREE_PER_WALLET = 2;
  uint256 public  freeNFTAlreadyMinted = 0;

  constructor() ERC721A("DegenDicks", "DD") {}

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

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

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

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

    _safeMint(msg.sender, numberOfTokens);
  }

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

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

    _safeMint(msg.sender, quantity);
  }

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

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

608060405260405180602001604052806000815250600a90805190602001906200002b92919062000232565b506000600b60006101000a81548160ff0219169083151502179055506108ae600c556006600d5566071afd498d0000600e556108ae600f55600260105560006011553480156200007a57600080fd5b506040518060400160405280600a81526020017f446567656e4469636b73000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f44440000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ff92919062000232565b5080600390805190602001906200011892919062000232565b50620001296200015f60201b60201c565b600081905550505062000151620001456200016460201b60201c565b6200016c60201b60201c565b600160098190555062000347565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024090620002e2565b90600052602060002090601f016020900481019282620002645760008555620002b0565b82601f106200027f57805160ff1916838001178555620002b0565b82800160010185558215620002b0579182015b82811115620002af57825182559160200191906001019062000292565b5b509050620002bf9190620002c3565b5090565b5b80821115620002de576000816000905550600101620002c4565b5090565b60006002820490506001821680620002fb57607f821691505b6020821081141562000312576200031162000318565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61375a80620003576000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063a0712d68116100ab578063d547cfb71161006f578063d547cfb7146107c0578063d5abeb01146107eb578063e985e9c514610816578063efdc778814610853578063f2fde38b1461087c57610225565b8063a0712d68146106ea578063a22cb46514610706578063b88d4fde1461072f578063c6a91b4214610758578063c87b56dd1461078357610225565b80638da5cb5b116100f25780638da5cb5b1461061557806395d89b4114610640578063982d669e1461066b57806398710d1e146106965780639e9fcffc146106c157610225565b806370a082311461056b578063715018a6146105a85780638bc9a4c6146105bf5780638d87caff146105ea57610225565b80631e84c413116101b15780632fbc0bf1116101755780632fbc0bf11461049a5780633ccfd60b146104c557806342842e0e146104dc57806355f804b3146105055780636352211e1461052e57610225565b80631e84c413146103cb578063202f298a146103f6578063228025e81461041f57806323b872dd1461044857806328cad13d1461047157610225565b8063095ea7b3116101f8578063095ea7b3146102fa5780630a00ae831461032357806318160ddd1461034c5780631919fed714610377578063193ad7b4146103a057610225565b806301ffc9a71461022a57806306fdde031461026757806307e89ec014610292578063081812fc146102bd575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061270e565b6108a5565b60405161025e9190612c2b565b60405180910390f35b34801561027357600080fd5b5061027c610937565b6040516102899190612c46565b60405180910390f35b34801561029e57600080fd5b506102a76109c9565b6040516102b49190612e48565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df91906127b1565b6109cf565b6040516102f19190612bc4565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c91906126a1565b610a4b565b005b34801561032f57600080fd5b5061034a600480360381019061034591906127b1565b610b8c565b005b34801561035857600080fd5b50610361610b9e565b60405161036e9190612e48565b60405180910390f35b34801561038357600080fd5b5061039e600480360381019061039991906127b1565b610bb5565b005b3480156103ac57600080fd5b506103b5610bc7565b6040516103c29190612e48565b60405180910390f35b3480156103d757600080fd5b506103e0610bcd565b6040516103ed9190612c2b565b60405180910390f35b34801561040257600080fd5b5061041d600480360381019061041891906127b1565b610be0565b005b34801561042b57600080fd5b50610446600480360381019061044191906127b1565b610bf2565b005b34801561045457600080fd5b5061046f600480360381019061046a919061258b565b610c04565b005b34801561047d57600080fd5b50610498600480360381019061049391906126e1565b610f29565b005b3480156104a657600080fd5b506104af610f4e565b6040516104bc9190612e48565b60405180910390f35b3480156104d157600080fd5b506104da610f58565b005b3480156104e857600080fd5b5061050360048036038101906104fe919061258b565b610fc2565b005b34801561051157600080fd5b5061052c60048036038101906105279190612768565b610fe2565b005b34801561053a57600080fd5b50610555600480360381019061055091906127b1565b611004565b6040516105629190612bc4565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d919061251e565b611016565b60405161059f9190612e48565b60405180910390f35b3480156105b457600080fd5b506105bd6110cf565b005b3480156105cb57600080fd5b506105d46110e3565b6040516105e19190612c2b565b60405180910390f35b3480156105f657600080fd5b506105ff6110fa565b60405161060c9190612e48565b60405180910390f35b34801561062157600080fd5b5061062a611104565b6040516106379190612bc4565b60405180910390f35b34801561064c57600080fd5b5061065561112e565b6040516106629190612c46565b60405180910390f35b34801561067757600080fd5b506106806111c0565b60405161068d9190612e48565b60405180910390f35b3480156106a257600080fd5b506106ab6111c6565b6040516106b89190612e48565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e391906127b1565b6111cc565b005b61070460048036038101906106ff91906127b1565b6111de565b005b34801561071257600080fd5b5061072d60048036038101906107289190612661565b6114c2565b005b34801561073b57600080fd5b50610756600480360381019061075191906125de565b61163a565b005b34801561076457600080fd5b5061076d6116ad565b60405161077a9190612e48565b60405180910390f35b34801561078f57600080fd5b506107aa60048036038101906107a591906127b1565b6116b3565b6040516107b79190612c46565b60405180910390f35b3480156107cc57600080fd5b506107d561172f565b6040516107e29190612c46565b60405180910390f35b3480156107f757600080fd5b506108006117bd565b60405161080d9190612e48565b60405180910390f35b34801561082257600080fd5b5061083d6004803603810190610838919061254b565b6117c3565b60405161084a9190612c2b565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906127b1565b611857565b005b34801561088857600080fd5b506108a3600480360381019061089e919061251e565b611906565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109305750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461094690613118565b80601f016020809104026020016040519081016040528092919081815260200182805461097290613118565b80156109bf5780601f10610994576101008083540402835291602001916109bf565b820191906000526020600020905b8154815290600101906020018083116109a257829003601f168201915b5050505050905090565b600e5481565b60006109da8261198a565b610a10576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5682611004565b90508073ffffffffffffffffffffffffffffffffffffffff16610a776119e9565b73ffffffffffffffffffffffffffffffffffffffff1614610ada57610aa381610a9e6119e9565b6117c3565b610ad9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b946119f1565b80600f8190555050565b6000610ba8611a6f565b6001546000540303905090565b610bbd6119f1565b80600e8190555050565b60115481565b600b60009054906101000a900460ff1681565b610be86119f1565b8060108190555050565b610bfa6119f1565b80600c8190555050565b6000610c0f82611a74565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c76576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c8284611b42565b91509150610c988187610c936119e9565b611b64565b610ce457610cad86610ca86119e9565b6117c3565b610ce3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d4b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d588686866001611ba8565b8015610d6357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e3185610e0d888887611bae565b7c020000000000000000000000000000000000000000000000000000000017611bd6565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610eb9576000600185019050600060046000838152602001908152602001600020541415610eb7576000548114610eb6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f218686866001611c01565b505050505050565b610f316119f1565b80600b60006101000a81548160ff02191690831515021790555050565b6000600e54905090565b610f606119f1565b60026009541415610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90612e28565b60405180910390fd5b6002600981905550610fb83347611c07565b6001600981905550565b610fdd8383836040518060200160405280600081525061163a565b505050565b610fea6119f1565b80600a9080519060200190611000929190612332565b5050565b600061100f82611a74565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561107e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110d76119f1565b6110e16000611cfb565b565b6000600b60009054906101000a900460ff16905090565b6000601154905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461113d90613118565b80601f016020809104026020016040519081016040528092919081815260200182805461116990613118565b80156111b65780601f1061118b576101008083540402835291602001916111b6565b820191906000526020600020905b81548152906001019060200180831161119957829003601f168201915b5050505050905090565b600f5481565b60105481565b6111d46119f1565b80600d8190555050565b600b60009054906101000a900460ff1661122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612d48565b60405180910390fd5b6001600c5461123c9190612f4d565b81611245610b9e565b61124f9190612f4d565b1061128f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128690612ce8565b60405180910390fd5b600d548111156112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb90612de8565b60405180910390fd5b600f54816011546112e59190612f4d565b1115611340573481600e546112fa9190612fd4565b111561133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290612dc8565b60405180910390fd5b6114b5565b600061134b33611016565b9050601054828261135c9190612f4d565b1115611454576010548110156113fe5760008160105461137c919061302e565b90506000818461138c919061302e565b90503481600e5461139d9190612fd4565b11156113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590612d08565b60405180910390fd5b81601160008282546113f09190612f4d565b92505081905550505061144f565b3482600e5461140d9190612fd4565b111561144e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144590612c68565b60405180910390fd5b5b6114b3565b601054821115611499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149090612da8565b60405180910390fd5b81601160008282546114ab9190612f4d565b925050819055505b505b6114bf3382611dc1565b50565b6114ca6119e9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561152f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061153c6119e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115e96119e9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161162e9190612c2b565b60405180910390a35050565b611645848484610c04565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116a75761167084848484611ddf565b6116a6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d5481565b60606116be8261198a565b6116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f490612d88565b60405180910390fd5b600a61170883611f3f565b604051602001611719929190612b80565b6040516020818303038152906040529050919050565b600a805461173c90613118565b80601f016020809104026020016040519081016040528092919081815260200182805461176890613118565b80156117b55780601f1061178a576101008083540402835291602001916117b5565b820191906000526020600020905b81548152906001019060200180831161179857829003601f168201915b505050505081565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61185f6119f1565b600081116118a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189990612e08565b60405180910390fd5b600c54816118ae610b9e565b6118b89190612f4d565b11156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f090612d28565b60405180910390fd5b6119033382611dc1565b50565b61190e6119f1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590612c88565b60405180910390fd5b61198781611cfb565b50565b600081611995611a6f565b111580156119a4575060005482105b80156119e2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6119f96120a0565b73ffffffffffffffffffffffffffffffffffffffff16611a17611104565b73ffffffffffffffffffffffffffffffffffffffff1614611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6490612d68565b60405180910390fd5b565b600090565b60008082905080611a83611a6f565b11611b0b57600054811015611b0a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b08575b6000811415611afe576004600083600190039350838152602001908152602001600020549050611ad3565b8092505050611b3d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bc58686846120a8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4190612cc8565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611c7090612baf565b60006040518083038185875af1925050503d8060008114611cad576040519150601f19603f3d011682016040523d82523d6000602084013e611cb2565b606091505b5050905080611cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ced90612ca8565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ddb8282604051806020016040528060008152506120b1565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e056119e9565b8786866040518563ffffffff1660e01b8152600401611e279493929190612bdf565b602060405180830381600087803b158015611e4157600080fd5b505af1925050508015611e7257506040513d601f19601f82011682018060405250810190611e6f919061273b565b60015b611eec573d8060008114611ea2576040519150601f19603f3d011682016040523d82523d6000602084013e611ea7565b606091505b50600081511415611ee4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611f87576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061209b565b600082905060005b60008214611fb9578080611fa29061317b565b915050600a82611fb29190612fa3565b9150611f8f565b60008167ffffffffffffffff811115611fd557611fd46132b1565b5b6040519080825280601f01601f1916602001820160405280156120075781602001600182028036833780820191505090505b5090505b6000851461209457600182612020919061302e565b9150600a8561202f91906131c4565b603061203b9190612f4d565b60f81b81838151811061205157612050613282565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561208d9190612fa3565b945061200b565b8093505050505b919050565b600033905090565b60009392505050565b6120bb838361214e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461214957600080549050600083820390505b6120fb6000868380600101945086611ddf565b612131576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120e857816000541461214657600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121bb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156121f6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122036000848385611ba8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061227a8361226b6000866000611bae565b61227485612322565b17611bd6565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061229e5780600081905550505061231d6000848385611c01565b505050565b60006001821460e11b9050919050565b82805461233e90613118565b90600052602060002090601f01602090048101928261236057600085556123a7565b82601f1061237957805160ff19168380011785556123a7565b828001600101855582156123a7579182015b828111156123a657825182559160200191906001019061238b565b5b5090506123b491906123b8565b5090565b5b808211156123d15760008160009055506001016123b9565b5090565b60006123e86123e384612e88565b612e63565b905082815260208101848484011115612404576124036132e5565b5b61240f8482856130d6565b509392505050565b600061242a61242584612eb9565b612e63565b905082815260208101848484011115612446576124456132e5565b5b6124518482856130d6565b509392505050565b600081359050612468816136c8565b92915050565b60008135905061247d816136df565b92915050565b600081359050612492816136f6565b92915050565b6000815190506124a7816136f6565b92915050565b600082601f8301126124c2576124c16132e0565b5b81356124d28482602086016123d5565b91505092915050565b600082601f8301126124f0576124ef6132e0565b5b8135612500848260208601612417565b91505092915050565b6000813590506125188161370d565b92915050565b600060208284031215612534576125336132ef565b5b600061254284828501612459565b91505092915050565b60008060408385031215612562576125616132ef565b5b600061257085828601612459565b925050602061258185828601612459565b9150509250929050565b6000806000606084860312156125a4576125a36132ef565b5b60006125b286828701612459565b93505060206125c386828701612459565b92505060406125d486828701612509565b9150509250925092565b600080600080608085870312156125f8576125f76132ef565b5b600061260687828801612459565b945050602061261787828801612459565b935050604061262887828801612509565b925050606085013567ffffffffffffffff811115612649576126486132ea565b5b612655878288016124ad565b91505092959194509250565b60008060408385031215612678576126776132ef565b5b600061268685828601612459565b92505060206126978582860161246e565b9150509250929050565b600080604083850312156126b8576126b76132ef565b5b60006126c685828601612459565b92505060206126d785828601612509565b9150509250929050565b6000602082840312156126f7576126f66132ef565b5b60006127058482850161246e565b91505092915050565b600060208284031215612724576127236132ef565b5b600061273284828501612483565b91505092915050565b600060208284031215612751576127506132ef565b5b600061275f84828501612498565b91505092915050565b60006020828403121561277e5761277d6132ef565b5b600082013567ffffffffffffffff81111561279c5761279b6132ea565b5b6127a8848285016124db565b91505092915050565b6000602082840312156127c7576127c66132ef565b5b60006127d584828501612509565b91505092915050565b6127e781613062565b82525050565b6127f681613074565b82525050565b600061280782612eff565b6128118185612f15565b93506128218185602086016130e5565b61282a816132f4565b840191505092915050565b600061284082612f0a565b61284a8185612f31565b935061285a8185602086016130e5565b612863816132f4565b840191505092915050565b600061287982612f0a565b6128838185612f42565b93506128938185602086016130e5565b80840191505092915050565b600081546128ac81613118565b6128b68186612f42565b945060018216600081146128d157600181146128e257612915565b60ff19831686528186019350612915565b6128eb85612eea565b60005b8381101561290d578154818901526001820191506020810190506128ee565b838801955050505b50505092915050565b600061292b602583612f31565b915061293682613305565b604082019050919050565b600061294e602683612f31565b915061295982613354565b604082019050919050565b6000612971603a83612f31565b915061297c826133a3565b604082019050919050565b6000612994601d83612f31565b915061299f826133f2565b602082019050919050565b60006129b7601883612f31565b91506129c28261341b565b602082019050919050565b60006129da602583612f31565b91506129e582613444565b604082019050919050565b60006129fd601783612f31565b9150612a0882613493565b602082019050919050565b6000612a20601683612f31565b9150612a2b826134bc565b602082019050919050565b6000612a43602083612f31565b9150612a4e826134e5565b602082019050919050565b6000612a66602f83612f31565b9150612a718261350e565b604082019050919050565b6000612a89602683612f31565b9150612a948261355d565b604082019050919050565b6000612aac602583612f31565b9150612ab7826135ac565b604082019050919050565b6000612acf602783612f31565b9150612ada826135fb565b604082019050919050565b6000612af2600083612f26565b9150612afd8261364a565b600082019050919050565b6000612b15601383612f31565b9150612b208261364d565b602082019050919050565b6000612b38601f83612f31565b9150612b4382613676565b602082019050919050565b6000612b5b600183612f42565b9150612b668261369f565b600182019050919050565b612b7a816130cc565b82525050565b6000612b8c828561289f565b9150612b9782612b4e565b9150612ba3828461286e565b91508190509392505050565b6000612bba82612ae5565b9150819050919050565b6000602082019050612bd960008301846127de565b92915050565b6000608082019050612bf460008301876127de565b612c0160208301866127de565b612c0e6040830185612b71565b8181036060830152612c2081846127fc565b905095945050505050565b6000602082019050612c4060008301846127ed565b92915050565b60006020820190508181036000830152612c608184612835565b905092915050565b60006020820190508181036000830152612c818161291e565b9050919050565b60006020820190508181036000830152612ca181612941565b9050919050565b60006020820190508181036000830152612cc181612964565b9050919050565b60006020820190508181036000830152612ce181612987565b9050919050565b60006020820190508181036000830152612d01816129aa565b9050919050565b60006020820190508181036000830152612d21816129cd565b9050919050565b60006020820190508181036000830152612d41816129f0565b9050919050565b60006020820190508181036000830152612d6181612a13565b9050919050565b60006020820190508181036000830152612d8181612a36565b9050919050565b60006020820190508181036000830152612da181612a59565b9050919050565b60006020820190508181036000830152612dc181612a7c565b9050919050565b60006020820190508181036000830152612de181612a9f565b9050919050565b60006020820190508181036000830152612e0181612ac2565b9050919050565b60006020820190508181036000830152612e2181612b08565b9050919050565b60006020820190508181036000830152612e4181612b2b565b9050919050565b6000602082019050612e5d6000830184612b71565b92915050565b6000612e6d612e7e565b9050612e79828261314a565b919050565b6000604051905090565b600067ffffffffffffffff821115612ea357612ea26132b1565b5b612eac826132f4565b9050602081019050919050565b600067ffffffffffffffff821115612ed457612ed36132b1565b5b612edd826132f4565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f58826130cc565b9150612f63836130cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f9857612f976131f5565b5b828201905092915050565b6000612fae826130cc565b9150612fb9836130cc565b925082612fc957612fc8613224565b5b828204905092915050565b6000612fdf826130cc565b9150612fea836130cc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613023576130226131f5565b5b828202905092915050565b6000613039826130cc565b9150613044836130cc565b925082821015613057576130566131f5565b5b828203905092915050565b600061306d826130ac565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131035780820151818401526020810190506130e8565b83811115613112576000848401525b50505050565b6000600282049050600182168061313057607f821691505b6020821081141561314457613143613253565b5b50919050565b613153826132f4565b810181811067ffffffffffffffff82111715613172576131716132b1565b5b80604052505050565b6000613186826130cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131b9576131b86131f5565b5b600182019050919050565b60006131cf826130cc565b91506131da836130cc565b9250826131ea576131e9613224565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2033000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178696d756d20737570706c792065786365656465642e0000000000000000600082015250565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2032000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f5075626c69632073616c65206973207061757365642e00000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465640000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2031000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465642e00000000000000000000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6136d181613062565b81146136dc57600080fd5b50565b6136e881613074565b81146136f357600080fd5b50565b6136ff81613080565b811461370a57600080fd5b50565b613716816130cc565b811461372157600080fd5b5056fea2646970667358221220cd292e41ad7f68abfa15c3f205fe14c1ee7096721360f0da3d5289e1a03fec9f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063a0712d68116100ab578063d547cfb71161006f578063d547cfb7146107c0578063d5abeb01146107eb578063e985e9c514610816578063efdc778814610853578063f2fde38b1461087c57610225565b8063a0712d68146106ea578063a22cb46514610706578063b88d4fde1461072f578063c6a91b4214610758578063c87b56dd1461078357610225565b80638da5cb5b116100f25780638da5cb5b1461061557806395d89b4114610640578063982d669e1461066b57806398710d1e146106965780639e9fcffc146106c157610225565b806370a082311461056b578063715018a6146105a85780638bc9a4c6146105bf5780638d87caff146105ea57610225565b80631e84c413116101b15780632fbc0bf1116101755780632fbc0bf11461049a5780633ccfd60b146104c557806342842e0e146104dc57806355f804b3146105055780636352211e1461052e57610225565b80631e84c413146103cb578063202f298a146103f6578063228025e81461041f57806323b872dd1461044857806328cad13d1461047157610225565b8063095ea7b3116101f8578063095ea7b3146102fa5780630a00ae831461032357806318160ddd1461034c5780631919fed714610377578063193ad7b4146103a057610225565b806301ffc9a71461022a57806306fdde031461026757806307e89ec014610292578063081812fc146102bd575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061270e565b6108a5565b60405161025e9190612c2b565b60405180910390f35b34801561027357600080fd5b5061027c610937565b6040516102899190612c46565b60405180910390f35b34801561029e57600080fd5b506102a76109c9565b6040516102b49190612e48565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df91906127b1565b6109cf565b6040516102f19190612bc4565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c91906126a1565b610a4b565b005b34801561032f57600080fd5b5061034a600480360381019061034591906127b1565b610b8c565b005b34801561035857600080fd5b50610361610b9e565b60405161036e9190612e48565b60405180910390f35b34801561038357600080fd5b5061039e600480360381019061039991906127b1565b610bb5565b005b3480156103ac57600080fd5b506103b5610bc7565b6040516103c29190612e48565b60405180910390f35b3480156103d757600080fd5b506103e0610bcd565b6040516103ed9190612c2b565b60405180910390f35b34801561040257600080fd5b5061041d600480360381019061041891906127b1565b610be0565b005b34801561042b57600080fd5b50610446600480360381019061044191906127b1565b610bf2565b005b34801561045457600080fd5b5061046f600480360381019061046a919061258b565b610c04565b005b34801561047d57600080fd5b50610498600480360381019061049391906126e1565b610f29565b005b3480156104a657600080fd5b506104af610f4e565b6040516104bc9190612e48565b60405180910390f35b3480156104d157600080fd5b506104da610f58565b005b3480156104e857600080fd5b5061050360048036038101906104fe919061258b565b610fc2565b005b34801561051157600080fd5b5061052c60048036038101906105279190612768565b610fe2565b005b34801561053a57600080fd5b50610555600480360381019061055091906127b1565b611004565b6040516105629190612bc4565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d919061251e565b611016565b60405161059f9190612e48565b60405180910390f35b3480156105b457600080fd5b506105bd6110cf565b005b3480156105cb57600080fd5b506105d46110e3565b6040516105e19190612c2b565b60405180910390f35b3480156105f657600080fd5b506105ff6110fa565b60405161060c9190612e48565b60405180910390f35b34801561062157600080fd5b5061062a611104565b6040516106379190612bc4565b60405180910390f35b34801561064c57600080fd5b5061065561112e565b6040516106629190612c46565b60405180910390f35b34801561067757600080fd5b506106806111c0565b60405161068d9190612e48565b60405180910390f35b3480156106a257600080fd5b506106ab6111c6565b6040516106b89190612e48565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e391906127b1565b6111cc565b005b61070460048036038101906106ff91906127b1565b6111de565b005b34801561071257600080fd5b5061072d60048036038101906107289190612661565b6114c2565b005b34801561073b57600080fd5b50610756600480360381019061075191906125de565b61163a565b005b34801561076457600080fd5b5061076d6116ad565b60405161077a9190612e48565b60405180910390f35b34801561078f57600080fd5b506107aa60048036038101906107a591906127b1565b6116b3565b6040516107b79190612c46565b60405180910390f35b3480156107cc57600080fd5b506107d561172f565b6040516107e29190612c46565b60405180910390f35b3480156107f757600080fd5b506108006117bd565b60405161080d9190612e48565b60405180910390f35b34801561082257600080fd5b5061083d6004803603810190610838919061254b565b6117c3565b60405161084a9190612c2b565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906127b1565b611857565b005b34801561088857600080fd5b506108a3600480360381019061089e919061251e565b611906565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109305750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461094690613118565b80601f016020809104026020016040519081016040528092919081815260200182805461097290613118565b80156109bf5780601f10610994576101008083540402835291602001916109bf565b820191906000526020600020905b8154815290600101906020018083116109a257829003601f168201915b5050505050905090565b600e5481565b60006109da8261198a565b610a10576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5682611004565b90508073ffffffffffffffffffffffffffffffffffffffff16610a776119e9565b73ffffffffffffffffffffffffffffffffffffffff1614610ada57610aa381610a9e6119e9565b6117c3565b610ad9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b946119f1565b80600f8190555050565b6000610ba8611a6f565b6001546000540303905090565b610bbd6119f1565b80600e8190555050565b60115481565b600b60009054906101000a900460ff1681565b610be86119f1565b8060108190555050565b610bfa6119f1565b80600c8190555050565b6000610c0f82611a74565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c76576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c8284611b42565b91509150610c988187610c936119e9565b611b64565b610ce457610cad86610ca86119e9565b6117c3565b610ce3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d4b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d588686866001611ba8565b8015610d6357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e3185610e0d888887611bae565b7c020000000000000000000000000000000000000000000000000000000017611bd6565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610eb9576000600185019050600060046000838152602001908152602001600020541415610eb7576000548114610eb6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f218686866001611c01565b505050505050565b610f316119f1565b80600b60006101000a81548160ff02191690831515021790555050565b6000600e54905090565b610f606119f1565b60026009541415610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90612e28565b60405180910390fd5b6002600981905550610fb83347611c07565b6001600981905550565b610fdd8383836040518060200160405280600081525061163a565b505050565b610fea6119f1565b80600a9080519060200190611000929190612332565b5050565b600061100f82611a74565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561107e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110d76119f1565b6110e16000611cfb565b565b6000600b60009054906101000a900460ff16905090565b6000601154905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461113d90613118565b80601f016020809104026020016040519081016040528092919081815260200182805461116990613118565b80156111b65780601f1061118b576101008083540402835291602001916111b6565b820191906000526020600020905b81548152906001019060200180831161119957829003601f168201915b5050505050905090565b600f5481565b60105481565b6111d46119f1565b80600d8190555050565b600b60009054906101000a900460ff1661122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612d48565b60405180910390fd5b6001600c5461123c9190612f4d565b81611245610b9e565b61124f9190612f4d565b1061128f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128690612ce8565b60405180910390fd5b600d548111156112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb90612de8565b60405180910390fd5b600f54816011546112e59190612f4d565b1115611340573481600e546112fa9190612fd4565b111561133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290612dc8565b60405180910390fd5b6114b5565b600061134b33611016565b9050601054828261135c9190612f4d565b1115611454576010548110156113fe5760008160105461137c919061302e565b90506000818461138c919061302e565b90503481600e5461139d9190612fd4565b11156113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590612d08565b60405180910390fd5b81601160008282546113f09190612f4d565b92505081905550505061144f565b3482600e5461140d9190612fd4565b111561144e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144590612c68565b60405180910390fd5b5b6114b3565b601054821115611499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149090612da8565b60405180910390fd5b81601160008282546114ab9190612f4d565b925050819055505b505b6114bf3382611dc1565b50565b6114ca6119e9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561152f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061153c6119e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115e96119e9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161162e9190612c2b565b60405180910390a35050565b611645848484610c04565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116a75761167084848484611ddf565b6116a6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d5481565b60606116be8261198a565b6116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f490612d88565b60405180910390fd5b600a61170883611f3f565b604051602001611719929190612b80565b6040516020818303038152906040529050919050565b600a805461173c90613118565b80601f016020809104026020016040519081016040528092919081815260200182805461176890613118565b80156117b55780601f1061178a576101008083540402835291602001916117b5565b820191906000526020600020905b81548152906001019060200180831161179857829003601f168201915b505050505081565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61185f6119f1565b600081116118a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189990612e08565b60405180910390fd5b600c54816118ae610b9e565b6118b89190612f4d565b11156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f090612d28565b60405180910390fd5b6119033382611dc1565b50565b61190e6119f1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590612c88565b60405180910390fd5b61198781611cfb565b50565b600081611995611a6f565b111580156119a4575060005482105b80156119e2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6119f96120a0565b73ffffffffffffffffffffffffffffffffffffffff16611a17611104565b73ffffffffffffffffffffffffffffffffffffffff1614611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6490612d68565b60405180910390fd5b565b600090565b60008082905080611a83611a6f565b11611b0b57600054811015611b0a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b08575b6000811415611afe576004600083600190039350838152602001908152602001600020549050611ad3565b8092505050611b3d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bc58686846120a8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4190612cc8565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611c7090612baf565b60006040518083038185875af1925050503d8060008114611cad576040519150601f19603f3d011682016040523d82523d6000602084013e611cb2565b606091505b5050905080611cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ced90612ca8565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ddb8282604051806020016040528060008152506120b1565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e056119e9565b8786866040518563ffffffff1660e01b8152600401611e279493929190612bdf565b602060405180830381600087803b158015611e4157600080fd5b505af1925050508015611e7257506040513d601f19601f82011682018060405250810190611e6f919061273b565b60015b611eec573d8060008114611ea2576040519150601f19603f3d011682016040523d82523d6000602084013e611ea7565b606091505b50600081511415611ee4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611f87576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061209b565b600082905060005b60008214611fb9578080611fa29061317b565b915050600a82611fb29190612fa3565b9150611f8f565b60008167ffffffffffffffff811115611fd557611fd46132b1565b5b6040519080825280601f01601f1916602001820160405280156120075781602001600182028036833780820191505090505b5090505b6000851461209457600182612020919061302e565b9150600a8561202f91906131c4565b603061203b9190612f4d565b60f81b81838151811061205157612050613282565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561208d9190612fa3565b945061200b565b8093505050505b919050565b600033905090565b60009392505050565b6120bb838361214e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461214957600080549050600083820390505b6120fb6000868380600101945086611ddf565b612131576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120e857816000541461214657600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121bb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156121f6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122036000848385611ba8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061227a8361226b6000866000611bae565b61227485612322565b17611bd6565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061229e5780600081905550505061231d6000848385611c01565b505050565b60006001821460e11b9050919050565b82805461233e90613118565b90600052602060002090601f01602090048101928261236057600085556123a7565b82601f1061237957805160ff19168380011785556123a7565b828001600101855582156123a7579182015b828111156123a657825182559160200191906001019061238b565b5b5090506123b491906123b8565b5090565b5b808211156123d15760008160009055506001016123b9565b5090565b60006123e86123e384612e88565b612e63565b905082815260208101848484011115612404576124036132e5565b5b61240f8482856130d6565b509392505050565b600061242a61242584612eb9565b612e63565b905082815260208101848484011115612446576124456132e5565b5b6124518482856130d6565b509392505050565b600081359050612468816136c8565b92915050565b60008135905061247d816136df565b92915050565b600081359050612492816136f6565b92915050565b6000815190506124a7816136f6565b92915050565b600082601f8301126124c2576124c16132e0565b5b81356124d28482602086016123d5565b91505092915050565b600082601f8301126124f0576124ef6132e0565b5b8135612500848260208601612417565b91505092915050565b6000813590506125188161370d565b92915050565b600060208284031215612534576125336132ef565b5b600061254284828501612459565b91505092915050565b60008060408385031215612562576125616132ef565b5b600061257085828601612459565b925050602061258185828601612459565b9150509250929050565b6000806000606084860312156125a4576125a36132ef565b5b60006125b286828701612459565b93505060206125c386828701612459565b92505060406125d486828701612509565b9150509250925092565b600080600080608085870312156125f8576125f76132ef565b5b600061260687828801612459565b945050602061261787828801612459565b935050604061262887828801612509565b925050606085013567ffffffffffffffff811115612649576126486132ea565b5b612655878288016124ad565b91505092959194509250565b60008060408385031215612678576126776132ef565b5b600061268685828601612459565b92505060206126978582860161246e565b9150509250929050565b600080604083850312156126b8576126b76132ef565b5b60006126c685828601612459565b92505060206126d785828601612509565b9150509250929050565b6000602082840312156126f7576126f66132ef565b5b60006127058482850161246e565b91505092915050565b600060208284031215612724576127236132ef565b5b600061273284828501612483565b91505092915050565b600060208284031215612751576127506132ef565b5b600061275f84828501612498565b91505092915050565b60006020828403121561277e5761277d6132ef565b5b600082013567ffffffffffffffff81111561279c5761279b6132ea565b5b6127a8848285016124db565b91505092915050565b6000602082840312156127c7576127c66132ef565b5b60006127d584828501612509565b91505092915050565b6127e781613062565b82525050565b6127f681613074565b82525050565b600061280782612eff565b6128118185612f15565b93506128218185602086016130e5565b61282a816132f4565b840191505092915050565b600061284082612f0a565b61284a8185612f31565b935061285a8185602086016130e5565b612863816132f4565b840191505092915050565b600061287982612f0a565b6128838185612f42565b93506128938185602086016130e5565b80840191505092915050565b600081546128ac81613118565b6128b68186612f42565b945060018216600081146128d157600181146128e257612915565b60ff19831686528186019350612915565b6128eb85612eea565b60005b8381101561290d578154818901526001820191506020810190506128ee565b838801955050505b50505092915050565b600061292b602583612f31565b915061293682613305565b604082019050919050565b600061294e602683612f31565b915061295982613354565b604082019050919050565b6000612971603a83612f31565b915061297c826133a3565b604082019050919050565b6000612994601d83612f31565b915061299f826133f2565b602082019050919050565b60006129b7601883612f31565b91506129c28261341b565b602082019050919050565b60006129da602583612f31565b91506129e582613444565b604082019050919050565b60006129fd601783612f31565b9150612a0882613493565b602082019050919050565b6000612a20601683612f31565b9150612a2b826134bc565b602082019050919050565b6000612a43602083612f31565b9150612a4e826134e5565b602082019050919050565b6000612a66602f83612f31565b9150612a718261350e565b604082019050919050565b6000612a89602683612f31565b9150612a948261355d565b604082019050919050565b6000612aac602583612f31565b9150612ab7826135ac565b604082019050919050565b6000612acf602783612f31565b9150612ada826135fb565b604082019050919050565b6000612af2600083612f26565b9150612afd8261364a565b600082019050919050565b6000612b15601383612f31565b9150612b208261364d565b602082019050919050565b6000612b38601f83612f31565b9150612b4382613676565b602082019050919050565b6000612b5b600183612f42565b9150612b668261369f565b600182019050919050565b612b7a816130cc565b82525050565b6000612b8c828561289f565b9150612b9782612b4e565b9150612ba3828461286e565b91508190509392505050565b6000612bba82612ae5565b9150819050919050565b6000602082019050612bd960008301846127de565b92915050565b6000608082019050612bf460008301876127de565b612c0160208301866127de565b612c0e6040830185612b71565b8181036060830152612c2081846127fc565b905095945050505050565b6000602082019050612c4060008301846127ed565b92915050565b60006020820190508181036000830152612c608184612835565b905092915050565b60006020820190508181036000830152612c818161291e565b9050919050565b60006020820190508181036000830152612ca181612941565b9050919050565b60006020820190508181036000830152612cc181612964565b9050919050565b60006020820190508181036000830152612ce181612987565b9050919050565b60006020820190508181036000830152612d01816129aa565b9050919050565b60006020820190508181036000830152612d21816129cd565b9050919050565b60006020820190508181036000830152612d41816129f0565b9050919050565b60006020820190508181036000830152612d6181612a13565b9050919050565b60006020820190508181036000830152612d8181612a36565b9050919050565b60006020820190508181036000830152612da181612a59565b9050919050565b60006020820190508181036000830152612dc181612a7c565b9050919050565b60006020820190508181036000830152612de181612a9f565b9050919050565b60006020820190508181036000830152612e0181612ac2565b9050919050565b60006020820190508181036000830152612e2181612b08565b9050919050565b60006020820190508181036000830152612e4181612b2b565b9050919050565b6000602082019050612e5d6000830184612b71565b92915050565b6000612e6d612e7e565b9050612e79828261314a565b919050565b6000604051905090565b600067ffffffffffffffff821115612ea357612ea26132b1565b5b612eac826132f4565b9050602081019050919050565b600067ffffffffffffffff821115612ed457612ed36132b1565b5b612edd826132f4565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f58826130cc565b9150612f63836130cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f9857612f976131f5565b5b828201905092915050565b6000612fae826130cc565b9150612fb9836130cc565b925082612fc957612fc8613224565b5b828204905092915050565b6000612fdf826130cc565b9150612fea836130cc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613023576130226131f5565b5b828202905092915050565b6000613039826130cc565b9150613044836130cc565b925082821015613057576130566131f5565b5b828203905092915050565b600061306d826130ac565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131035780820151818401526020810190506130e8565b83811115613112576000848401525b50505050565b6000600282049050600182168061313057607f821691505b6020821081141561314457613143613253565b5b50919050565b613153826132f4565b810181811067ffffffffffffffff82111715613172576131716132b1565b5b80604052505050565b6000613186826130cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131b9576131b86131f5565b5b600182019050919050565b60006131cf826130cc565b91506131da836130cc565b9250826131ea576131e9613224565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2033000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178696d756d20737570706c792065786365656465642e0000000000000000600082015250565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2032000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f5075626c69632073616c65206973207061757365642e00000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465640000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964204554482076616c75652073656e742e204572726f7220436f60008201527f64653a2031000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d206d696e747320706572207472616e73616374696f6e20657860008201527f6365656465642e00000000000000000000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6136d181613062565b81146136dc57600080fd5b50565b6136e881613074565b81146136f357600080fd5b50565b6136ff81613080565b811461370a57600080fd5b50565b613716816130cc565b811461372157600080fd5b5056fea2646970667358221220cd292e41ad7f68abfa15c3f205fe14c1ee7096721360f0da3d5289e1a03fec9f64736f6c63430008070033

Deployed Bytecode Sourcemap

62173:4113:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31977:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37624:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62455:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39574:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39122:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65535:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31031:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65903:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62593:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62332:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66157:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65670:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48839:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65381:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65794:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64545:142;;;;;;;;;;;;;:::i;:::-;;40464:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64181:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37413:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32656:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16616:103;;;;;;;;;;;;;:::i;:::-;;65128:117;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65251:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15968:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37797:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62507:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62549:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66024:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62690:1485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39850:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40720:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62414:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64693:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62294:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62377:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40229:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64295:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16874:201;;;;;;;;;;;;;;;;;;;;;;;:::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:47::-;;;;:::o;39574:204::-;39642:7;39667:16;39675:7;39667;:16::i;:::-;39662:64;;39692:34;;;;;;;;;;;;;;39662:64;39746:15;:24;39762:7;39746:24;;;;;;;;;;;;;;;;;;;;;39739:31;;39574:204;;;:::o;39122:386::-;39195:13;39211:16;39219:7;39211;:16::i;:::-;39195:32;;39267:5;39244:28;;:19;:17;:19::i;:::-;:28;;;39240:175;;39292:44;39309:5;39316:19;:17;:19::i;:::-;39292:16;:44::i;:::-;39287:128;;39364:35;;;;;;;;;;;;;;39287:128;39240:175;39454:2;39427:15;:24;39443:7;39427:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39492:7;39488:2;39472:28;;39481:5;39472:28;;;;;;;;;;;;39184:324;39122:386;;:::o;65535:129::-;15854:13;:11;:13::i;:::-;65645::::1;65628:14;:30;;;;65535:129:::0;:::o;31031:315::-;31084:7;31312:15;:13;:15::i;:::-;31297:12;;31281:13;;:28;:46;31274:53;;31031:315;:::o;65903:115::-;15854:13;:11;:13::i;:::-;66006:6:::1;65986:17;:26;;;;65903:115:::0;:::o;62593:40::-;;;;:::o;62332:38::-;;;;;;;;;;;;;:::o;66157:126::-;15854:13;:11;:13::i;:::-;66271:6:::1;66249:19;:28;;;;66157:126:::0;:::o;65670:118::-;15854:13;:11;:13::i;:::-;65772:10:::1;65760:9;:22;;;;65670:118:::0;:::o;48839:2800::-;48973:27;49003;49022:7;49003:18;:27::i;:::-;48973:57;;49088:4;49047:45;;49063:19;49047:45;;;49043:86;;49101:28;;;;;;;;;;;;;;49043:86;49143:27;49172:23;49199:28;49219:7;49199:19;:28::i;:::-;49142:85;;;;49327:62;49346:15;49363:4;49369:19;:17;:19::i;:::-;49327:18;:62::i;:::-;49322:174;;49409:43;49426:4;49432:19;:17;:19::i;:::-;49409:16;:43::i;:::-;49404:92;;49461:35;;;;;;;;;;;;;;49404:92;49322:174;49527:1;49513:16;;:2;:16;;;49509:52;;;49538:23;;;;;;;;;;;;;;49509:52;49574:43;49596:4;49602:2;49606:7;49615:1;49574:21;:43::i;:::-;49710:15;49707:160;;;49850:1;49829:19;49822:30;49707:160;50245:18;:24;50264:4;50245:24;;;;;;;;;;;;;;;;50243:26;;;;;;;;;;;;50314:18;:22;50333:2;50314:22;;;;;;;;;;;;;;;;50312:24;;;;;;;;;;;50636:145;50673:2;50721:45;50736:4;50742:2;50746:19;50721:14;:45::i;:::-;28259:8;50694:72;50636:18;:145::i;:::-;50607:17;:26;50625:7;50607:26;;;;;;;;;;;:174;;;;50951:1;28259:8;50901:19;:46;:51;50897:626;;;50973:19;51005:1;50995:7;:11;50973:33;;51162:1;51128:17;:30;51146:11;51128:30;;;;;;;;;;;;:35;51124:384;;;51266:13;;51251:11;:28;51247:242;;51446:19;51413:17;:30;51431:11;51413:30;;;;;;;;;;;:52;;;;51247:242;51124:384;50954:569;50897:626;51570:7;51566:2;51551:27;;51560:4;51551:27;;;;;;;;;;;;51589:42;51610:4;51616:2;51620:7;51629:1;51589:20;:42::i;:::-;48962:2677;;;48839:2800;;;:::o;65381:148::-;15854:13;:11;:13::i;:::-;65504:19:::1;65483:18;;:40;;;;;;;;;;;;;;;;;;65381:148:::0;:::o;65794:103::-;65848:7;65874:17;;65867:24;;65794:103;:::o;64545:142::-;15854:13;:11;:13::i;:::-;12893:1:::1;13491:7;;:19;;13483:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;12893:1;13624:7;:18;;;;64620:61:::2;64646:10;64659:21;64620:17;:61::i;:::-;12849:1:::1;13803:7;:22;;;;64545:142::o:0;40464:185::-;40602:39;40619:4;40625:2;40629:7;40602:39;;;;;;;;;;;;:16;:39::i;:::-;40464:185;;;:::o;64181:108::-;15854:13;:11;:13::i;:::-;64276:7:::1;64261:12;:22;;;;;;;;;;;;:::i;:::-;;64181:108:::0;:::o;37413:144::-;37477:7;37520:27;37539:7;37520:18;:27::i;:::-;37497:52;;37413:144;;;:::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;65128:117::-;65199:4;65221:18;;;;;;;;;;;65214:25;;65128:117;:::o;65251:124::-;65324:7;65349:20;;65342:27;;65251:124;:::o;15968:87::-;16014:7;16041:6;;;;;;;;;;;16034:13;;15968:87;:::o;37797:104::-;37853:13;37886:7;37879:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37797:104;:::o;62507:37::-;;;;:::o;62549:39::-;;;;:::o;66024:127::-;15854:13;:11;:13::i;:::-;66139:6:::1;66120:16;:25;;;;66024:127:::0;:::o;62690:1485::-;62763:18;;;;;;;;;;;62755:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;62868:1;62856:9;;:13;;;;:::i;:::-;62839:14;62823:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;62815:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;62933:16;;62915:14;:34;;62907:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;63045:14;;63028;63005:20;;:37;;;;:::i;:::-;:54;63002:1122;;;63123:9;63105:14;63085:17;;:34;;;;:::i;:::-;:47;;63077:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;63002:1122;;;63211:19;63233:21;63243:10;63233:9;:21::i;:::-;63211:43;;63313:19;;63296:14;63279;:31;;;;:::i;:::-;:53;63275:842;;;63381:19;;63364:14;:36;63360:551;;;63434:19;63478:14;63456:19;;:36;;;;:::i;:::-;63434:58;;63511:15;63546:14;63529;:31;;;;:::i;:::-;63511:49;;63621:9;63607:10;63587:17;;:30;;;;:::i;:::-;:43;;63579:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;63717:14;63693:20;;:38;;;;;;;:::i;:::-;;;;;;;;63415:332;;63360:551;;;63844:9;63826:14;63806:17;;:34;;;;:::i;:::-;:47;;63798:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;63360:551;63275:842;;;63990:19;;63972:14;:37;;63964:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;64091:14;64067:20;;:38;;;;;;;:::i;:::-;;;;;;;;63275:842;63200:924;63002:1122;64132:37;64142:10;64154:14;64132:9;:37::i;:::-;62690:1485;:::o;39850:308::-;39961:19;:17;:19::i;:::-;39949:31;;:8;:31;;;39945:61;;;39989:17;;;;;;;;;;;;;;39945:61;40071:8;40019:18;:39;40038:19;:17;:19::i;:::-;40019:39;;;;;;;;;;;;;;;:49;40059:8;40019:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;40131:8;40095:55;;40110:19;:17;:19::i;:::-;40095:55;;;40141:8;40095:55;;;;;;:::i;:::-;;;;;;;;39850:308;;:::o;40720:399::-;40887:31;40900:4;40906:2;40910:7;40887:12;:31::i;:::-;40951:1;40933:2;:14;;;:19;40929:183;;40972:56;41003:4;41009:2;41013:7;41022:5;40972:30;:56::i;:::-;40967:145;;41056:40;;;;;;;;;;;;;;40967:145;40929:183;40720:399;;;;:::o;62414:36::-;;;;:::o;64693:288::-;64789:13;64822:17;64830:8;64822:7;:17::i;:::-;64814:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;64935:12;64954:19;:8;:17;:19::i;:::-;64918:56;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64904:71;;64693:288;;;:::o;62294:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62377:32::-;;;;:::o;40229:164::-;40326:4;40350:18;:25;40369:5;40350:25;;;;;;;;;;;;;;;:35;40376:8;40350:35;;;;;;;;;;;;;;;;;;;;;;;;;40343:42;;40229:164;;;;:::o;64295:244::-;15854:13;:11;:13::i;:::-;64388:1:::1;64377:8;:12;64369:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;64456:9;;64444:8;64428:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;64420:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;64502:31;64512:10;64524:8;64502:9;:31::i;:::-;64295:244:::0;:::o;16874:201::-;15854:13;:11;:13::i;:::-;16983:1:::1;16963:22;;:8;:22;;;;16955:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17039:28;17058:8;17039:18;:28::i;:::-;16874:201:::0;:::o;41374:273::-;41431:4;41487:7;41468:15;:13;:15::i;:::-;:26;;:66;;;;;41521:13;;41511:7;:23;41468:66;:152;;;;;41619:1;27981:8;41572:17;:26;41590:7;41572:26;;;;;;;;;;;;:43;:48;41468:152;41448:172;;41374:273;;;:::o;59935:105::-;59995:7;60022:10;60015:17;;59935:105;:::o;16133:132::-;16208:12;:10;:12::i;:::-;16197:23;;:7;:5;:7::i;:::-;:23;;;16189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16133:132::o;30555:92::-;30611:7;30555:92;:::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;47175:652::-;47270:27;47299:23;47340:53;47396:15;47340:71;;47582:7;47576:4;47569:21;47617:22;47611:4;47604:36;47693:4;47687;47677:21;47654:44;;47789:19;47783:26;47764:45;;47520:300;47175:652;;;:::o;47940:645::-;48082:11;48244:15;48238:4;48234:26;48226:34;;48403:15;48392:9;48388:31;48375:44;;48550:15;48539:9;48536:30;48529:4;48518:9;48515:19;48512:55;48502:65;;47940:645;;;;;:::o;58768:159::-;;;;;:::o;57080:309::-;57215:7;57235:16;28382:3;57261:19;:40;;57235:67;;28382:3;57328:31;57339:4;57345:2;57349:9;57328:10;:31::i;:::-;57320:40;;:61;;57313:68;;;57080: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;59586:158::-;;;;;:::o;5022:317::-;5137:6;5112:21;:31;;5104:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5191:12;5209:9;:14;;5231:6;5209:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5190:52;;;5261:7;5253:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;5093:246;5022:317;;:::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;41731:104::-;41800:27;41810:2;41814:8;41800:27;;;;;;;;;;;;:9;:27::i;:::-;41731:104;;:::o;55590:716::-;55753:4;55799:2;55774:45;;;55820:19;:17;:19::i;:::-;55841:4;55847:7;55856:5;55774:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55770:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56074:1;56057:6;:13;:18;56053:235;;;56103:40;;;;;;;;;;;;;;56053:235;56246:6;56240:13;56231:6;56227:2;56223:15;56216:38;55770:529;55943:54;;;55933:64;;;:6;:64;;;;55926:71;;;55590:716;;;;;;:::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;57965:147::-;58102:6;57965:147;;;;;:::o;42251:681::-;42374:19;42380:2;42384:8;42374:5;:19::i;:::-;42453:1;42435:2;:14;;;:19;42431:483;;42475:11;42489:13;;42475:27;;42521:13;42543:8;42537:3;:14;42521:30;;42570:233;42601:62;42640:1;42644:2;42648:7;;;;;;42657:5;42601:30;:62::i;:::-;42596:167;;42699:40;;;;;;;;;;;;;;42596:167;42798:3;42790:5;:11;42570:233;;42885:3;42868:13;;:20;42864:34;;42890:8;;;42864:34;42456:458;;42431:483;42251:681;;;:::o;43205:1529::-;43270:20;43293:13;;43270:36;;43335:1;43321:16;;:2;:16;;;43317:48;;;43346:19;;;;;;;;;;;;;;43317:48;43392:1;43380:8;:13;43376:44;;;43402:18;;;;;;;;;;;;;;43376:44;43433:61;43463:1;43467:2;43471:12;43485:8;43433:21;:61::i;:::-;43976:1;27348:2;43947:1;:25;;43946:31;43934:8;:44;43908:18;:22;43927:2;43908:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;44255:139;44292:2;44346:33;44369:1;44373:2;44377:1;44346:14;:33::i;:::-;44313:30;44334:8;44313:20;:30::i;:::-;:66;44255:18;:139::i;:::-;44221:17;:31;44239:12;44221:31;;;;;;;;;;;:173;;;;44411:15;44429:12;44411:30;;44456:11;44485:8;44470:12;:23;44456:37;;44508:101;44560:9;;;;;;44556:2;44535:35;;44552:1;44535:35;;;;;;;;;;;;44604:3;44594:7;:13;44508:101;;44641:3;44625:13;:19;;;;43682:974;;44666:60;44695:1;44699:2;44703:12;44717:8;44666:20;:60::i;:::-;43259:1475;43205:1529;;:::o;38738:322::-;38808:14;39039:1;39029:8;39026:15;39001:23;38997:45;38987:55;;38738:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10836:366;;;:::o;11208:::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11580:366;;;:::o;11952:::-;12094:3;12115:67;12179:2;12174:3;12115:67;:::i;:::-;12108:74;;12191:93;12280:3;12191:93;:::i;:::-;12309:2;12304:3;12300:12;12293:19;;11952:366;;;:::o;12324:::-;12466:3;12487:67;12551:2;12546:3;12487:67;:::i;:::-;12480:74;;12563:93;12652:3;12563:93;:::i;:::-;12681:2;12676:3;12672:12;12665:19;;12324:366;;;:::o;12696:::-;12838:3;12859:67;12923:2;12918:3;12859:67;:::i;:::-;12852:74;;12935:93;13024:3;12935:93;:::i;:::-;13053:2;13048:3;13044:12;13037:19;;12696:366;;;:::o;13068:::-;13210:3;13231:67;13295:2;13290:3;13231:67;:::i;:::-;13224:74;;13307:93;13396:3;13307:93;:::i;:::-;13425:2;13420:3;13416:12;13409:19;;13068:366;;;:::o;13440:::-;13582:3;13603:67;13667:2;13662:3;13603:67;:::i;:::-;13596:74;;13679:93;13768:3;13679:93;:::i;:::-;13797:2;13792:3;13788:12;13781:19;;13440:366;;;:::o;13812:::-;13954:3;13975:67;14039:2;14034:3;13975:67;:::i;:::-;13968:74;;14051:93;14140:3;14051:93;:::i;:::-;14169:2;14164:3;14160:12;14153:19;;13812:366;;;:::o;14184:::-;14326:3;14347:67;14411:2;14406:3;14347:67;:::i;:::-;14340:74;;14423:93;14512:3;14423:93;:::i;:::-;14541:2;14536:3;14532:12;14525:19;;14184:366;;;:::o;14556:398::-;14715:3;14736:83;14817:1;14812:3;14736:83;:::i;:::-;14729:90;;14828:93;14917:3;14828:93;:::i;:::-;14946:1;14941:3;14937:11;14930:18;;14556:398;;;:::o;14960:366::-;15102:3;15123:67;15187:2;15182:3;15123:67;:::i;:::-;15116:74;;15199:93;15288:3;15199:93;:::i;:::-;15317:2;15312:3;15308:12;15301:19;;14960:366;;;:::o;15332:::-;15474:3;15495:67;15559:2;15554:3;15495:67;:::i;:::-;15488:74;;15571:93;15660:3;15571:93;:::i;:::-;15689:2;15684:3;15680:12;15673:19;;15332:366;;;:::o;15704:400::-;15864:3;15885:84;15967:1;15962:3;15885:84;:::i;:::-;15878:91;;15978:93;16067:3;15978:93;:::i;:::-;16096:1;16091:3;16087:11;16080:18;;15704:400;;;:::o;16110:118::-;16197:24;16215:5;16197:24;:::i;:::-;16192:3;16185:37;16110:118;;:::o;16234:695::-;16512:3;16534:92;16622:3;16613:6;16534:92;:::i;:::-;16527:99;;16643:148;16787:3;16643:148;:::i;:::-;16636:155;;16808:95;16899:3;16890:6;16808:95;:::i;:::-;16801:102;;16920:3;16913:10;;16234:695;;;;;:::o;16935:379::-;17119:3;17141:147;17284:3;17141:147;:::i;:::-;17134:154;;17305:3;17298:10;;16935:379;;;:::o;17320:222::-;17413:4;17451:2;17440:9;17436:18;17428:26;;17464:71;17532:1;17521:9;17517:17;17508:6;17464:71;:::i;:::-;17320:222;;;;:::o;17548:640::-;17743:4;17781:3;17770:9;17766:19;17758:27;;17795:71;17863:1;17852:9;17848:17;17839:6;17795:71;:::i;:::-;17876:72;17944:2;17933:9;17929:18;17920:6;17876:72;:::i;:::-;17958;18026:2;18015:9;18011:18;18002:6;17958:72;:::i;:::-;18077:9;18071:4;18067:20;18062:2;18051:9;18047:18;18040:48;18105:76;18176:4;18167:6;18105:76;:::i;:::-;18097:84;;17548:640;;;;;;;:::o;18194:210::-;18281:4;18319:2;18308:9;18304:18;18296:26;;18332:65;18394:1;18383:9;18379:17;18370:6;18332:65;:::i;:::-;18194:210;;;;:::o;18410:313::-;18523:4;18561:2;18550:9;18546:18;18538:26;;18610:9;18604:4;18600:20;18596:1;18585:9;18581:17;18574:47;18638:78;18711:4;18702:6;18638:78;:::i;:::-;18630:86;;18410:313;;;;:::o;18729:419::-;18895:4;18933:2;18922:9;18918:18;18910:26;;18982:9;18976:4;18972:20;18968:1;18957:9;18953:17;18946:47;19010:131;19136:4;19010:131;:::i;:::-;19002:139;;18729:419;;;:::o;19154:::-;19320:4;19358:2;19347:9;19343:18;19335:26;;19407:9;19401:4;19397:20;19393:1;19382:9;19378:17;19371:47;19435:131;19561:4;19435:131;:::i;:::-;19427:139;;19154:419;;;:::o;19579:::-;19745:4;19783:2;19772:9;19768:18;19760:26;;19832:9;19826:4;19822:20;19818:1;19807:9;19803:17;19796:47;19860:131;19986:4;19860:131;:::i;:::-;19852:139;;19579:419;;;:::o;20004:::-;20170:4;20208:2;20197:9;20193:18;20185:26;;20257:9;20251:4;20247:20;20243:1;20232:9;20228:17;20221:47;20285:131;20411:4;20285:131;:::i;:::-;20277:139;;20004:419;;;:::o;20429:::-;20595:4;20633:2;20622:9;20618:18;20610:26;;20682:9;20676:4;20672:20;20668:1;20657:9;20653:17;20646:47;20710:131;20836:4;20710:131;:::i;:::-;20702:139;;20429:419;;;:::o;20854:::-;21020:4;21058:2;21047:9;21043:18;21035:26;;21107:9;21101:4;21097:20;21093:1;21082:9;21078:17;21071:47;21135:131;21261:4;21135:131;:::i;:::-;21127:139;;20854:419;;;:::o;21279:::-;21445:4;21483:2;21472:9;21468:18;21460:26;;21532:9;21526:4;21522:20;21518:1;21507:9;21503:17;21496:47;21560:131;21686:4;21560:131;:::i;:::-;21552:139;;21279:419;;;:::o;21704:::-;21870:4;21908:2;21897:9;21893:18;21885:26;;21957:9;21951:4;21947:20;21943:1;21932:9;21928:17;21921:47;21985:131;22111:4;21985:131;:::i;:::-;21977:139;;21704:419;;;:::o;22129:::-;22295:4;22333:2;22322:9;22318:18;22310:26;;22382:9;22376:4;22372:20;22368:1;22357:9;22353:17;22346:47;22410:131;22536:4;22410:131;:::i;:::-;22402:139;;22129:419;;;:::o;22554:::-;22720:4;22758:2;22747:9;22743:18;22735:26;;22807:9;22801:4;22797:20;22793:1;22782:9;22778:17;22771:47;22835:131;22961:4;22835:131;:::i;:::-;22827:139;;22554:419;;;:::o;22979:::-;23145:4;23183:2;23172:9;23168:18;23160:26;;23232:9;23226:4;23222:20;23218:1;23207:9;23203:17;23196:47;23260:131;23386:4;23260:131;:::i;:::-;23252:139;;22979:419;;;:::o;23404:::-;23570:4;23608:2;23597:9;23593:18;23585:26;;23657:9;23651:4;23647:20;23643:1;23632:9;23628:17;23621:47;23685:131;23811:4;23685:131;:::i;:::-;23677:139;;23404:419;;;:::o;23829:::-;23995:4;24033:2;24022:9;24018:18;24010:26;;24082:9;24076:4;24072:20;24068:1;24057:9;24053:17;24046:47;24110:131;24236:4;24110:131;:::i;:::-;24102:139;;23829:419;;;:::o;24254:::-;24420:4;24458:2;24447:9;24443:18;24435:26;;24507:9;24501:4;24497:20;24493:1;24482:9;24478:17;24471:47;24535:131;24661:4;24535:131;:::i;:::-;24527:139;;24254:419;;;:::o;24679:::-;24845:4;24883:2;24872:9;24868:18;24860:26;;24932:9;24926:4;24922:20;24918:1;24907:9;24903:17;24896:47;24960:131;25086:4;24960:131;:::i;:::-;24952:139;;24679:419;;;:::o;25104:222::-;25197:4;25235:2;25224:9;25220:18;25212:26;;25248:71;25316:1;25305:9;25301:17;25292:6;25248:71;:::i;:::-;25104:222;;;;:::o;25332:129::-;25366:6;25393:20;;:::i;:::-;25383:30;;25422:33;25450:4;25442:6;25422:33;:::i;:::-;25332:129;;;:::o;25467:75::-;25500:6;25533:2;25527:9;25517:19;;25467:75;:::o;25548:307::-;25609:4;25699:18;25691:6;25688:30;25685:56;;;25721:18;;:::i;:::-;25685:56;25759:29;25781:6;25759:29;:::i;:::-;25751:37;;25843:4;25837;25833:15;25825:23;;25548:307;;;:::o;25861:308::-;25923:4;26013:18;26005:6;26002:30;25999:56;;;26035:18;;:::i;:::-;25999:56;26073:29;26095:6;26073:29;:::i;:::-;26065:37;;26157:4;26151;26147:15;26139:23;;25861:308;;;:::o;26175:141::-;26224:4;26247:3;26239:11;;26270:3;26267:1;26260:14;26304:4;26301:1;26291:18;26283:26;;26175:141;;;:::o;26322:98::-;26373:6;26407:5;26401:12;26391:22;;26322:98;;;:::o;26426:99::-;26478:6;26512:5;26506:12;26496:22;;26426:99;;;:::o;26531:168::-;26614:11;26648:6;26643:3;26636:19;26688:4;26683:3;26679:14;26664:29;;26531:168;;;;:::o;26705:147::-;26806:11;26843:3;26828:18;;26705:147;;;;:::o;26858:169::-;26942:11;26976:6;26971:3;26964:19;27016:4;27011:3;27007:14;26992:29;;26858:169;;;;:::o;27033:148::-;27135:11;27172:3;27157:18;;27033:148;;;;:::o;27187:305::-;27227:3;27246:20;27264:1;27246:20;:::i;:::-;27241:25;;27280:20;27298:1;27280:20;:::i;:::-;27275:25;;27434:1;27366:66;27362:74;27359:1;27356:81;27353:107;;;27440:18;;:::i;:::-;27353:107;27484:1;27481;27477:9;27470:16;;27187:305;;;;:::o;27498:185::-;27538:1;27555:20;27573:1;27555:20;:::i;:::-;27550:25;;27589:20;27607:1;27589:20;:::i;:::-;27584:25;;27628:1;27618:35;;27633:18;;:::i;:::-;27618:35;27675:1;27672;27668:9;27663:14;;27498:185;;;;:::o;27689:348::-;27729:7;27752:20;27770:1;27752:20;:::i;:::-;27747:25;;27786:20;27804:1;27786:20;:::i;:::-;27781:25;;27974:1;27906:66;27902:74;27899:1;27896:81;27891:1;27884:9;27877:17;27873:105;27870:131;;;27981:18;;:::i;:::-;27870:131;28029:1;28026;28022:9;28011:20;;27689:348;;;;:::o;28043:191::-;28083:4;28103:20;28121:1;28103:20;:::i;:::-;28098:25;;28137:20;28155:1;28137:20;:::i;:::-;28132:25;;28176:1;28173;28170:8;28167:34;;;28181:18;;:::i;:::-;28167:34;28226:1;28223;28219:9;28211:17;;28043:191;;;;:::o;28240:96::-;28277:7;28306:24;28324:5;28306:24;:::i;:::-;28295:35;;28240:96;;;:::o;28342:90::-;28376:7;28419:5;28412:13;28405:21;28394:32;;28342:90;;;:::o;28438:149::-;28474:7;28514:66;28507:5;28503:78;28492:89;;28438:149;;;:::o;28593:126::-;28630:7;28670:42;28663:5;28659:54;28648:65;;28593:126;;;:::o;28725:77::-;28762:7;28791:5;28780:16;;28725:77;;;:::o;28808:154::-;28892:6;28887:3;28882;28869:30;28954:1;28945:6;28940:3;28936:16;28929:27;28808:154;;;:::o;28968:307::-;29036:1;29046:113;29060:6;29057:1;29054:13;29046:113;;;29145:1;29140:3;29136:11;29130:18;29126:1;29121:3;29117:11;29110:39;29082:2;29079:1;29075:10;29070:15;;29046:113;;;29177:6;29174:1;29171:13;29168:101;;;29257:1;29248:6;29243:3;29239:16;29232:27;29168:101;29017:258;28968:307;;;:::o;29281:320::-;29325:6;29362:1;29356:4;29352:12;29342:22;;29409:1;29403:4;29399:12;29430:18;29420:81;;29486:4;29478:6;29474:17;29464:27;;29420:81;29548:2;29540:6;29537:14;29517:18;29514:38;29511:84;;;29567:18;;:::i;:::-;29511:84;29332:269;29281:320;;;:::o;29607:281::-;29690:27;29712:4;29690:27;:::i;:::-;29682:6;29678:40;29820:6;29808:10;29805:22;29784:18;29772:10;29769:34;29766:62;29763:88;;;29831:18;;:::i;:::-;29763:88;29871:10;29867:2;29860:22;29650:238;29607:281;;:::o;29894:233::-;29933:3;29956:24;29974:5;29956:24;:::i;:::-;29947:33;;30002:66;29995:5;29992:77;29989:103;;;30072:18;;:::i;:::-;29989:103;30119:1;30112:5;30108:13;30101:20;;29894:233;;;:::o;30133:176::-;30165:1;30182:20;30200:1;30182:20;:::i;:::-;30177:25;;30216:20;30234:1;30216:20;:::i;:::-;30211:25;;30255:1;30245:35;;30260:18;;:::i;:::-;30245:35;30301:1;30298;30294:9;30289:14;;30133:176;;;;:::o;30315:180::-;30363:77;30360:1;30353:88;30460:4;30457:1;30450:15;30484:4;30481:1;30474:15;30501:180;30549:77;30546:1;30539:88;30646:4;30643:1;30636:15;30670:4;30667:1;30660:15;30687:180;30735:77;30732:1;30725:88;30832:4;30829:1;30822:15;30856:4;30853:1;30846:15;30873:180;30921:77;30918:1;30911:88;31018:4;31015:1;31008:15;31042:4;31039:1;31032:15;31059:180;31107:77;31104:1;31097:88;31204:4;31201:1;31194:15;31228:4;31225:1;31218:15;31245:117;31354:1;31351;31344:12;31368:117;31477:1;31474;31467:12;31491:117;31600:1;31597;31590:12;31614:117;31723:1;31720;31713:12;31737:102;31778:6;31829:2;31825:7;31820:2;31813:5;31809:14;31805:28;31795:38;;31737:102;;;:::o;31845:224::-;31985:34;31981:1;31973:6;31969:14;31962:58;32054:7;32049:2;32041:6;32037:15;32030:32;31845:224;:::o;32075:225::-;32215:34;32211:1;32203:6;32199:14;32192:58;32284:8;32279:2;32271:6;32267:15;32260:33;32075:225;:::o;32306:245::-;32446:34;32442:1;32434:6;32430:14;32423:58;32515:28;32510:2;32502:6;32498:15;32491:53;32306:245;:::o;32557:179::-;32697:31;32693:1;32685:6;32681:14;32674:55;32557:179;:::o;32742:174::-;32882:26;32878:1;32870:6;32866:14;32859:50;32742:174;:::o;32922:224::-;33062:34;33058:1;33050:6;33046:14;33039:58;33131:7;33126:2;33118:6;33114:15;33107:32;32922:224;:::o;33152:173::-;33292:25;33288:1;33280:6;33276:14;33269:49;33152:173;:::o;33331:172::-;33471:24;33467:1;33459:6;33455:14;33448:48;33331:172;:::o;33509:182::-;33649:34;33645:1;33637:6;33633:14;33626:58;33509:182;:::o;33697:234::-;33837:34;33833:1;33825:6;33821:14;33814:58;33906:17;33901:2;33893:6;33889:15;33882:42;33697:234;:::o;33937:225::-;34077:34;34073:1;34065:6;34061:14;34054:58;34146:8;34141:2;34133:6;34129:15;34122:33;33937:225;:::o;34168:224::-;34308:34;34304:1;34296:6;34292:14;34285:58;34377:7;34372:2;34364:6;34360:15;34353:32;34168:224;:::o;34398:226::-;34538:34;34534:1;34526:6;34522:14;34515:58;34607:9;34602:2;34594:6;34590:15;34583:34;34398:226;:::o;34630:114::-;;:::o;34750:169::-;34890:21;34886:1;34878:6;34874:14;34867:45;34750:169;:::o;34925:181::-;35065:33;35061:1;35053:6;35049:14;35042:57;34925:181;:::o;35112:151::-;35252:3;35248:1;35240:6;35236:14;35229:27;35112:151;:::o;35269:122::-;35342:24;35360:5;35342:24;:::i;:::-;35335:5;35332:35;35322:63;;35381:1;35378;35371:12;35322:63;35269:122;:::o;35397:116::-;35467:21;35482:5;35467:21;:::i;:::-;35460:5;35457:32;35447:60;;35503:1;35500;35493:12;35447:60;35397:116;:::o;35519:120::-;35591:23;35608:5;35591:23;:::i;:::-;35584:5;35581:34;35571:62;;35629:1;35626;35619:12;35571:62;35519:120;:::o;35645:122::-;35718:24;35736:5;35718:24;:::i;:::-;35711:5;35708:35;35698:63;;35757:1;35754;35747:12;35698:63;35645:122;:::o

Swarm Source

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