ETH Price: $3,254.88 (+2.50%)
Gas: 2 Gwei

Token

Sachiko (SC)
 

Overview

Max Total Supply

1,832 SC

Holders

498

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SC
0xc9573185b968d084e60bef363359132dee44c8b8
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:
Sachiko

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-09
*/

/**
 *Submitted for verification at Etherscan.io on 2022-06-08
 */

/**
 *Submitted for verification at Etherscan.io on 2022-05-27
 */

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(
        address registrant,
        address operator
    ) external view returns (bool);

    function register(address registrant) external;

    function registerAndSubscribe(
        address registrant,
        address subscription
    ) external;

    function registerAndCopyEntries(
        address registrant,
        address registrantToCopy
    ) external;

    function unregister(address addr) external;

    function updateOperator(
        address registrant,
        address operator,
        bool filtered
    ) external;

    function updateOperators(
        address registrant,
        address[] calldata operators,
        bool filtered
    ) external;

    function updateCodeHash(
        address registrant,
        bytes32 codehash,
        bool filtered
    ) external;

    function updateCodeHashes(
        address registrant,
        bytes32[] calldata codeHashes,
        bool filtered
    ) external;

    function subscribe(
        address registrant,
        address registrantToSubscribe
    ) external;

    function unsubscribe(address registrant, bool copyExistingEntries) external;

    function subscriptionOf(address addr) external returns (address registrant);

    function subscribers(
        address registrant
    ) external returns (address[] memory);

    function subscriberAt(
        address registrant,
        uint256 index
    ) external returns (address);

    function copyEntriesOf(
        address registrant,
        address registrantToCopy
    ) external;

    function isOperatorFiltered(
        address registrant,
        address operator
    ) external returns (bool);

    function isCodeHashOfFiltered(
        address registrant,
        address operatorWithCode
    ) external returns (bool);

    function isCodeHashFiltered(
        address registrant,
        bytes32 codeHash
    ) external returns (bool);

    function filteredOperators(
        address addr
    ) external returns (address[] memory);

    function filteredCodeHashes(
        address addr
    ) external returns (bytes32[] memory);

    function filteredOperatorAt(
        address registrant,
        uint256 index
    ) external returns (address);

    function filteredCodeHashAt(
        address registrant,
        uint256 index
    ) external returns (bytes32);

    function isRegistered(address addr) external returns (bool);

    function codeHashOf(address addr) external returns (bytes32);
}

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(
                    address(this),
                    subscriptionOrRegistrantToCopy
                );
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(
                        address(this),
                        subscriptionOrRegistrantToCopy
                    );
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (
                !OPERATOR_FILTER_REGISTRY.isOperatorAllowed(
                    address(this),
                    operator
                )
            ) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION =
        address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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

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

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

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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);
}

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * 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();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    // Compiler will pack this into a single 256bit word.
    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;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

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

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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(
        address owner
    ) public view virtual override returns (uint256) {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(
        uint256 tokenId
    ) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @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) {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString()))
                : "";
    }

    /**
     * @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, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(
        uint256 tokenId
    ) public view virtual override returns (address) {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(
        address operator,
        bool approved
    ) public virtual override {
        _setApprovalForAll(_msgSender(), 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-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @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 {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(
        address spender,
        uint256 tokenId
    ) internal view virtual returns (bool) {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            isApprovedForAll(owner, spender) ||
            getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

/**
 * @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 Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    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();
        }
    }

    /**
     * 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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(
        bytes4 interfaceId
    ) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary 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 {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    TokenOwnership memory ownership = _ownerships[curr];
                    if (!ownership.burned) {
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                        // 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.
                        while (true) {
                            curr--;
                            ownership = _ownerships[curr];
                            if (ownership.addr != address(0)) {
                                return ownership;
                            }
                        }
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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, tokenId.toString()))
                : "";
    }

    /**
     * @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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId, owner);
    }

    /**
     * @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 == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @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 {
        _transfer(from, to, tokenId);
        if (to.isContract())
            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 &&
            !_ownerships[tokenId].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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) 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 or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (
                        !_checkContractOnERC721Received(
                            address(0),
                            to,
                            updatedIndex++,
                            _data
                        )
                    ) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    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 or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @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 _transfer(address from, address to, uint256 tokenId) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        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 Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId, address owner) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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
            IERC721Receiver(to).onERC721Received(
                _msgSender(),
                from,
                tokenId,
                _data
            )
        returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

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

abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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

contract Sachiko is ERC721A, ERC2981, Ownable, DefaultOperatorFilterer {
    string public baseURI = "https://art.getrik.com/c3291783/sachiko/";

    uint256 public tokenPrice = 2000000000000000; //0.005 ETH

    uint256 public maxTokensPerTx = 20;

    uint256 public defaultTokensPerTx = 2;

    uint256 public MAX_TOKENS = 5000;

    // bool public saleIsActive = true;

    uint256 public whitelistMintRemains = 1000;

    // = 0 if there are no free tokens
    // = maxTokensPerTx if free all
    uint256 public maxTokensFreePerTx = 2;

    enum TokenURIMode {
        MODE_ONE,
        MODE_TWO
    }

    TokenURIMode private tokenUriMode = TokenURIMode.MODE_ONE;

    constructor() ERC721A("Sachiko", "SC") {
        // 500 = RoyaltyFee
        _setDefaultRoyalty(msg.sender, 500);
    }

    struct HelperState {
        uint256 tokenPrice;
        uint256 maxTokensPerTx;
        uint256 MAX_TOKENS;
        bool saleIsActive;
        uint256 totalSupply;
        uint256 maxTokensFreePerTx;
        uint256 userMinted;
        uint256 defaultTokensPerTx;
    }

    function _state(address minter) external view returns (HelperState memory) {
        return
            HelperState({
                tokenPrice: tokenPrice,
                maxTokensPerTx: maxTokensPerTx,
                MAX_TOKENS: MAX_TOKENS,
                saleIsActive: true, //saleIsActive,
                totalSupply: uint256(totalSupply()),
                maxTokensFreePerTx: maxTokensFreePerTx,
                userMinted: uint256(_numberMinted(minter)),
                defaultTokensPerTx: defaultTokensPerTx
            });
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    // function withdrawTo(address to, uint256 amount) public onlyOwner {
    //     require(
    //         amount <= address(this).balance,
    //         "Exceed balance of this contract"
    //     );
    //     payable(to).transfer(amount);
    // }

    function reserveTokens(
        address to,
        uint256 numberOfTokens
    ) public onlyOwner {
        require(
            totalSupply() + numberOfTokens <= MAX_TOKENS,
            "Exceed max supply of tokens"
        );
        _safeMint(to, numberOfTokens);
    }

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

    // function flipSaleState() public onlyOwner {
    //     saleIsActive = !saleIsActive;
    // }

    function openWhitelistMint(uint256 _whitelistMintRemains) public onlyOwner {
        whitelistMintRemains = _whitelistMintRemains;
        // saleIsActive = true;
    }

    function closeWhitelistMint() public onlyOwner {
        whitelistMintRemains = 0;
    }

    function getPrice(
        uint256 numberOfTokens,
        address minter
    ) public view returns (uint256) {
        if (numberMinted(minter) > 0) {
            return numberOfTokens * tokenPrice;
        } else if (numberOfTokens > maxTokensFreePerTx) {
            return (numberOfTokens - maxTokensFreePerTx) * tokenPrice;
        }
        return 0;
    }

    // if numberMinted(msg.sender) > 0 -> no whitelist, no free.
    function mintToken(uint256 numberOfTokens) public payable {
        // require(saleIsActive, "Sale must be active");
        require(numberOfTokens <= maxTokensPerTx, "Exceed max tokens per tx");
        require(numberOfTokens > 0, "Must mint at least one");
        require(
            totalSupply() + numberOfTokens <= MAX_TOKENS,
            "Exceed max supply"
        );

        if (whitelistMintRemains > 0 && numberMinted(msg.sender) <= 0) {
            if (numberOfTokens >= whitelistMintRemains) {
                numberOfTokens = whitelistMintRemains;
            }
            _safeMint(msg.sender, numberOfTokens);
            whitelistMintRemains = whitelistMintRemains - numberOfTokens;
        } else {
            if (_numberMinted(msg.sender) > 0) {
                require(
                    msg.value >= numberOfTokens * tokenPrice,
                    "Not enough ether"
                );
            } else if (numberOfTokens > maxTokensFreePerTx) {
                require(
                    msg.value >=
                        (numberOfTokens - maxTokensFreePerTx) * tokenPrice,
                    "Not enough ether"
                );
            }
            _safeMint(msg.sender, numberOfTokens);
        }
    }

    function setTokenPrice(uint256 newTokenPrice) public onlyOwner {
        tokenPrice = newTokenPrice;
    }

    function tokenURI(
        uint256 _tokenId
    ) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        if (tokenUriMode == TokenURIMode.MODE_TWO) {
            return
                bytes(baseURI).length > 0
                    ? string(
                        abi.encodePacked(baseURI, Strings.toString(_tokenId))
                    )
                    : "";
        } else {
            return
                bytes(baseURI).length > 0
                    ? string(
                        abi.encodePacked(
                            baseURI,
                            Strings.toString(_tokenId),
                            ".json"
                        )
                    )
                    : "";
        }
    }

    function setTokenURIMode(uint256 mode) external onlyOwner {
        if (mode == 2) {
            tokenUriMode = TokenURIMode.MODE_TWO;
        } else {
            tokenUriMode = TokenURIMode.MODE_ONE;
        }
    }

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

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        MAX_TOKENS = _maxSupply;
    }

    function setMaxTokensPerTx(uint256 _maxTokensPerTx) public onlyOwner {
        maxTokensPerTx = _maxTokensPerTx;
    }

    function setMaxTokensFreePerTx(
        uint256 _maxTokensFreePerTx
    ) public onlyOwner {
        maxTokensFreePerTx = _maxTokensFreePerTx;
    }

    function setDefaultTokensPerTx(
        uint256 _defaultTokensPerTx
    ) public onlyOwner {
        defaultTokensPerTx = _defaultTokensPerTx;
    }

    function supportsInterface(
        bytes4 interfaceId
    ) public view virtual override(ERC721A, ERC2981) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function setRoyaltyInfo(
        address receiver,
        uint96 feeBasisPoints
    ) external onlyOwner {
        _setDefaultRoyalty(receiver, feeBasisPoints);
    }

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"_state","outputs":[{"components":[{"internalType":"uint256","name":"tokenPrice","type":"uint256"},{"internalType":"uint256","name":"maxTokensPerTx","type":"uint256"},{"internalType":"uint256","name":"MAX_TOKENS","type":"uint256"},{"internalType":"bool","name":"saleIsActive","type":"bool"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"maxTokensFreePerTx","type":"uint256"},{"internalType":"uint256","name":"userMinted","type":"uint256"},{"internalType":"uint256","name":"defaultTokensPerTx","type":"uint256"}],"internalType":"struct Sachiko.HelperState","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeWhitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"minter","type":"address"}],"name":"getPrice","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":"maxTokensFreePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistMintRemains","type":"uint256"}],"name":"openWhitelistMint","outputs":[],"stateMutability":"nonpayable","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":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_defaultTokensPerTx","type":"uint256"}],"name":"setDefaultTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensFreePerTx","type":"uint256"}],"name":"setMaxTokensFreePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensPerTx","type":"uint256"}],"name":"setMaxTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeBasisPoints","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenPrice","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mode","type":"uint256"}],"name":"setTokenURIMode","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":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"whitelistMintRemains","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806060016040528060288152602001620056e260289139600b90816200002e91906200087b565b5066071afd498d0000600c556014600d556002600e55611388600f556103e860105560026011556000601260006101000a81548160ff021916908360018111156200007e576200007d62000962565b5b02179055503480156200009057600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600781526020017f53616368696b6f000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f534300000000000000000000000000000000000000000000000000000000000081525081600290816200012591906200087b565b5080600390816200013791906200087b565b50620001486200038160201b60201c565b600081905550505062000170620001646200038660201b60201c565b6200038e60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003655780156200022b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001f1929190620009d6565b600060405180830381600087803b1580156200020c57600080fd5b505af115801562000221573d6000803e3d6000fd5b5050505062000364565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002e5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002ab929190620009d6565b600060405180830381600087803b158015620002c657600080fd5b505af1158015620002db573d6000803e3d6000fd5b5050505062000363565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200032e919062000a03565b600060405180830381600087803b1580156200034957600080fd5b505af11580156200035e573d6000803e3d6000fd5b505050505b5b5b50506200037b336101f46200045460201b60201c565b62000b3b565b600090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000464620005f760201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620004c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004bc9062000aa7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000537576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200052e9062000b19565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200068357607f821691505b6020821081036200069957620006986200063b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006c4565b6200070f8683620006c4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200075c62000756620007508462000727565b62000731565b62000727565b9050919050565b6000819050919050565b62000778836200073b565b62000790620007878262000763565b848454620006d1565b825550505050565b600090565b620007a762000798565b620007b48184846200076d565b505050565b5b81811015620007dc57620007d06000826200079d565b600181019050620007ba565b5050565b601f8211156200082b57620007f5816200069f565b6200080084620006b4565b8101602085101562000810578190505b620008286200081f85620006b4565b830182620007b9565b50505b505050565b600082821c905092915050565b6000620008506000198460080262000830565b1980831691505092915050565b60006200086b83836200083d565b9150826002028217905092915050565b620008868262000601565b67ffffffffffffffff811115620008a257620008a16200060c565b5b620008ae82546200066a565b620008bb828285620007e0565b600060209050601f831160018114620008f35760008415620008de578287015190505b620008ea85826200085d565b8655506200095a565b601f19841662000903866200069f565b60005b828110156200092d5784890151825560018201915060208501945060208101905062000906565b868310156200094d578489015162000949601f8916826200083d565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009be8262000991565b9050919050565b620009d081620009b1565b82525050565b6000604082019050620009ed6000830185620009c5565b620009fc6020830184620009c5565b9392505050565b600060208201905062000a1a6000830184620009c5565b92915050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000a8f602a8362000a20565b915062000a9c8262000a31565b604082019050919050565b6000602082019050818103600083015262000ac28162000a80565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000b0160198362000a20565b915062000b0e8262000ac9565b602082019050919050565b6000602082019050818103600083015262000b348162000af2565b9050919050565b614b978062000b4b6000396000f3fe6080604052600436106102515760003560e01c80636f8b44b011610139578063a22cb465116100b6578063c634d0321161007a578063c634d03214610887578063c87b56dd146108a3578063dc33e681146108e0578063e985e9c51461091d578063f2fde38b1461095a578063f47c84c51461098357610251565b8063a22cb465146107cc578063b13e3855146107f5578063b88d4fde1461081e578063b9bed05e14610847578063c4d7e2f81461087057610251565b80637ff9b596116100fd5780637ff9b596146106f75780638da5cb5b146107225780638f69ae6f1461074d578063900c71f51461077857806395d89b41146107a157610251565b80636f8b44b01461062857806370a0823114610651578063715018a61461068e57806378cf19e9146106a55780637b8940cc146106ce57610251565b80633ccfd60b116101d257806355f804b31161019657806355f804b3146105185780635e307a48146105415780636352211e1461056c578063681c8bac146105a95780636a61e5fc146105d45780636c0360eb146105fd57610251565b80633ccfd60b1461044757806341f434341461045e57806342842e0e14610489578063495e1eba146104b25780634df8bb45146104db57610251565b806318160ddd1161021957806318160ddd1461034d578063205a2e9d1461037857806323b872dd146103a35780632a55205a146103cc5780632b57cfbb1461040a57610251565b806301ffc9a71461025657806302fa7c471461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613692565b6109ae565b60405161028a91906136da565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613797565b6109c0565b005b3480156102c857600080fd5b506102d1610a4a565b6040516102de9190613867565b60405180910390f35b3480156102f357600080fd5b5061030e600480360381019061030991906138bf565b610adc565b60405161031b91906138fb565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613916565b610b58565b005b34801561035957600080fd5b50610362610b71565b60405161036f9190613965565b60405180910390f35b34801561038457600080fd5b5061038d610b88565b60405161039a9190613965565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190613980565b610b8e565b005b3480156103d857600080fd5b506103f360048036038101906103ee91906139d3565b610bdd565b604051610401929190613a13565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190613a3c565b610dc7565b60405161043e9190613965565b60405180910390f35b34801561045357600080fd5b5061045c610e25565b005b34801561046a57600080fd5b50610473610ef0565b6040516104809190613adb565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190613980565b610f02565b005b3480156104be57600080fd5b506104d960048036038101906104d491906138bf565b610f51565b005b3480156104e757600080fd5b5061050260048036038101906104fd9190613af6565b610fd7565b60405161050f9190613be3565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a9190613d34565b61103c565b005b34801561054d57600080fd5b506105566110cb565b6040516105639190613965565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e91906138bf565b6110d1565b6040516105a091906138fb565b60405180910390f35b3480156105b557600080fd5b506105be6110e7565b6040516105cb9190613965565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f691906138bf565b6110ed565b005b34801561060957600080fd5b50610612611173565b60405161061f9190613867565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a91906138bf565b611201565b005b34801561065d57600080fd5b5061067860048036038101906106739190613af6565b611287565b6040516106859190613965565b60405180910390f35b34801561069a57600080fd5b506106a3611356565b005b3480156106b157600080fd5b506106cc60048036038101906106c79190613916565b6113de565b005b3480156106da57600080fd5b506106f560048036038101906106f091906138bf565b6114bf565b005b34801561070357600080fd5b5061070c611545565b6040516107199190613965565b60405180910390f35b34801561072e57600080fd5b5061073761154b565b60405161074491906138fb565b60405180910390f35b34801561075957600080fd5b50610762611575565b60405161076f9190613965565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a91906138bf565b61157b565b005b3480156107ad57600080fd5b506107b661165e565b6040516107c39190613867565b60405180910390f35b3480156107d857600080fd5b506107f360048036038101906107ee9190613da9565b6116f0565b005b34801561080157600080fd5b5061081c600480360381019061081791906138bf565b611709565b005b34801561082a57600080fd5b5061084560048036038101906108409190613e8a565b61178f565b005b34801561085357600080fd5b5061086e600480360381019061086991906138bf565b6117e0565b005b34801561087c57600080fd5b50610885611866565b005b6108a1600480360381019061089c91906138bf565b6118ec565b005b3480156108af57600080fd5b506108ca60048036038101906108c591906138bf565b611afa565b6040516108d79190613867565b60405180910390f35b3480156108ec57600080fd5b5061090760048036038101906109029190613af6565b611c3b565b6040516109149190613965565b60405180910390f35b34801561092957600080fd5b50610944600480360381019061093f9190613f0d565b611c4d565b60405161095191906136da565b60405180910390f35b34801561096657600080fd5b50610981600480360381019061097c9190613af6565b611ce1565b005b34801561098f57600080fd5b50610998611dd8565b6040516109a59190613965565b60405180910390f35b60006109b982611dde565b9050919050565b6109c8611e58565b73ffffffffffffffffffffffffffffffffffffffff166109e661154b565b73ffffffffffffffffffffffffffffffffffffffff1614610a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3390613f99565b60405180910390fd5b610a468282611e60565b5050565b606060028054610a5990613fe8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8590613fe8565b8015610ad25780601f10610aa757610100808354040283529160200191610ad2565b820191906000526020600020905b815481529060010190602001808311610ab557829003601f168201915b5050505050905090565b6000610ae782611ff5565b610b1d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b6281612043565b610b6c8383612140565b505050565b6000610b7b612244565b6001546000540303905090565b60115481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bcc57610bcb33612043565b5b610bd7848484612249565b50505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610d725760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610d7c612259565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610da89190614048565b610db291906140b9565b90508160000151819350935050509250929050565b600080610dd383611c3b565b1115610dee57600c5483610de79190614048565b9050610e1f565b601154831115610e1a57600c5460115484610e0991906140ea565b610e139190614048565b9050610e1f565b600090505b92915050565b610e2d611e58565b73ffffffffffffffffffffffffffffffffffffffff16610e4b61154b565b73ffffffffffffffffffffffffffffffffffffffff1614610ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9890613f99565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610eec573d6000803e3d6000fd5b5050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f4057610f3f33612043565b5b610f4b848484612263565b50505050565b610f59611e58565b73ffffffffffffffffffffffffffffffffffffffff16610f7761154b565b73ffffffffffffffffffffffffffffffffffffffff1614610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490613f99565b60405180910390fd5b80600e8190555050565b610fdf61359c565b604051806101000160405280600c548152602001600d548152602001600f548152602001600115158152602001611014610b71565b8152602001601154815260200161102a84612283565b8152602001600e548152509050919050565b611044611e58565b73ffffffffffffffffffffffffffffffffffffffff1661106261154b565b73ffffffffffffffffffffffffffffffffffffffff16146110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90613f99565b60405180910390fd5b80600b90816110c791906142c0565b5050565b600d5481565b60006110dc826122ed565b600001519050919050565b600e5481565b6110f5611e58565b73ffffffffffffffffffffffffffffffffffffffff1661111361154b565b73ffffffffffffffffffffffffffffffffffffffff1614611169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116090613f99565b60405180910390fd5b80600c8190555050565b600b805461118090613fe8565b80601f01602080910402602001604051908101604052809291908181526020018280546111ac90613fe8565b80156111f95780601f106111ce576101008083540402835291602001916111f9565b820191906000526020600020905b8154815290600101906020018083116111dc57829003601f168201915b505050505081565b611209611e58565b73ffffffffffffffffffffffffffffffffffffffff1661122761154b565b73ffffffffffffffffffffffffffffffffffffffff161461127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490613f99565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112ee576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61135e611e58565b73ffffffffffffffffffffffffffffffffffffffff1661137c61154b565b73ffffffffffffffffffffffffffffffffffffffff16146113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c990613f99565b60405180910390fd5b6113dc6000612578565b565b6113e6611e58565b73ffffffffffffffffffffffffffffffffffffffff1661140461154b565b73ffffffffffffffffffffffffffffffffffffffff161461145a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145190613f99565b60405180910390fd5b600f5481611466610b71565b6114709190614392565b11156114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890614412565b60405180910390fd5b6114bb828261263e565b5050565b6114c7611e58565b73ffffffffffffffffffffffffffffffffffffffff166114e561154b565b73ffffffffffffffffffffffffffffffffffffffff161461153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290613f99565b60405180910390fd5b8060108190555050565b600c5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b611583611e58565b73ffffffffffffffffffffffffffffffffffffffff166115a161154b565b73ffffffffffffffffffffffffffffffffffffffff16146115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90613f99565b60405180910390fd5b6002810361162f576001601260006101000a81548160ff0219169083600181111561162557611624614432565b5b021790555061165b565b6000601260006101000a81548160ff0219169083600181111561165557611654614432565b5b02179055505b50565b60606003805461166d90613fe8565b80601f016020809104026020016040519081016040528092919081815260200182805461169990613fe8565b80156116e65780601f106116bb576101008083540402835291602001916116e6565b820191906000526020600020905b8154815290600101906020018083116116c957829003601f168201915b5050505050905090565b816116fa81612043565b611704838361265c565b505050565b611711611e58565b73ffffffffffffffffffffffffffffffffffffffff1661172f61154b565b73ffffffffffffffffffffffffffffffffffffffff1614611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90613f99565b60405180910390fd5b8060118190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117cd576117cc33612043565b5b6117d9858585856127d3565b5050505050565b6117e8611e58565b73ffffffffffffffffffffffffffffffffffffffff1661180661154b565b73ffffffffffffffffffffffffffffffffffffffff161461185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390613f99565b60405180910390fd5b80600d8190555050565b61186e611e58565b73ffffffffffffffffffffffffffffffffffffffff1661188c61154b565b73ffffffffffffffffffffffffffffffffffffffff16146118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990613f99565b60405180910390fd5b6000601081905550565b600d54811115611931576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611928906144ad565b60405180910390fd5b60008111611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b90614519565b60405180910390fd5b600f5481611980610b71565b61198a9190614392565b11156119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c290614585565b60405180910390fd5b60006010541180156119e6575060006119e333611c3b565b11155b15611a1d5760105481106119fa5760105490505b611a04338261263e565b80601054611a1291906140ea565b601081905550611af7565b6000611a2833612283565b1115611a8357600c5481611a3c9190614048565b341015611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a75906145f1565b60405180910390fd5b611aec565b601154811115611aeb57600c5460115482611a9e91906140ea565b611aa89190614048565b341015611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae1906145f1565b60405180910390fd5b5b5b611af6338261263e565b5b50565b6060611b0582611ff5565b611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b9061465d565b60405180910390fd5b600180811115611b5757611b56614432565b5b601260009054906101000a900460ff166001811115611b7957611b78614432565b5b03611bdc576000600b8054611b8d90613fe8565b905011611ba95760405180602001604052806000815250611bd5565b600b611bb48361284b565b604051602001611bc592919061473c565b6040516020818303038152906040525b9050611c36565b6000600b8054611beb90613fe8565b905011611c075760405180602001604052806000815250611c33565b600b611c128361284b565b604051602001611c239291906147ac565b6040516020818303038152906040525b90505b919050565b6000611c4682612283565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ce9611e58565b73ffffffffffffffffffffffffffffffffffffffff16611d0761154b565b73ffffffffffffffffffffffffffffffffffffffff1614611d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5490613f99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc39061484d565b60405180910390fd5b611dd581612578565b50565b600f5481565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e515750611e50826129ab565b5b9050919050565b600033905090565b611e68612259565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebd906148df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c9061494b565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081612000612244565b1115801561200f575060005482105b801561203c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561213d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016120ba92919061496b565b602060405180830381865afa1580156120d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120fb91906149a9565b61213c57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161213391906138fb565b60405180910390fd5b5b50565b600061214b826110d1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121b2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166121d1611e58565b73ffffffffffffffffffffffffffffffffffffffff1614612234576121fd816121f8611e58565b611c4d565b612233576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b61223f838383612a8d565b505050565b600090565b612254838383612b3f565b505050565b6000612710905090565b61227e8383836040518060200160405280600081525061178f565b505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6122f56135e3565b600082905080612303612244565b1161254157600054811015612540576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161253e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612422578092505050612573565b5b60011561253d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612538578092505050612573565b612423565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612658828260405180602001604052806000815250612ff3565b5050565b612664611e58565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126c8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006126d5611e58565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612782611e58565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127c791906136da565b60405180910390a35050565b6127de848484612b3f565b6127fd8373ffffffffffffffffffffffffffffffffffffffff166133b3565b156128455761280e848484846133d6565b612844576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060008203612892576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129a6565b600082905060005b600082146128c45780806128ad906149d6565b915050600a826128bd91906140b9565b915061289a565b60008167ffffffffffffffff8111156128e0576128df613c09565b5b6040519080825280601f01601f1916602001820160405280156129125781602001600182028036833780820191505090505b5090505b6000851461299f5760018261292b91906140ea565b9150600a8561293a9190614a1e565b60306129469190614392565b60f81b81838151811061295c5761295b614a4f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561299891906140b9565b9450612916565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a7657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a865750612a8582613526565b5b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612b4a826122ed565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bb5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612bd6611e58565b73ffffffffffffffffffffffffffffffffffffffff161480612c055750612c0485612bff611e58565b611c4d565b5b80612c4a5750612c13611e58565b73ffffffffffffffffffffffffffffffffffffffff16612c3284610adc565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c83576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612ce9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cf68585856001613590565b612d0260008487612a8d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612f81576000548214612f8057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fec8585856001613596565b5050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361305f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303613099576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130a66000858386613590565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506132678673ffffffffffffffffffffffffffffffffffffffff166133b3565b1561332c575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132dc60008784806001019550876133d6565b613312576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061326d57826000541461332757600080fd5b613397565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061332d575b8160008190555050506133ad6000858386613596565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133fc611e58565b8786866040518563ffffffff1660e01b815260040161341e9493929190614ad3565b6020604051808303816000875af192505050801561345a57506040513d601f19601f820116820180604052508101906134579190614b34565b60015b6134d3573d806000811461348a576040519150601f19603f3d011682016040523d82523d6000602084013e61348f565b606091505b5060008151036134cb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b604051806101000160405280600081526020016000815260200160008152602001600015158152602001600081526020016000815260200160008152602001600081525090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61366f8161363a565b811461367a57600080fd5b50565b60008135905061368c81613666565b92915050565b6000602082840312156136a8576136a7613630565b5b60006136b68482850161367d565b91505092915050565b60008115159050919050565b6136d4816136bf565b82525050565b60006020820190506136ef60008301846136cb565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613720826136f5565b9050919050565b61373081613715565b811461373b57600080fd5b50565b60008135905061374d81613727565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61377481613753565b811461377f57600080fd5b50565b6000813590506137918161376b565b92915050565b600080604083850312156137ae576137ad613630565b5b60006137bc8582860161373e565b92505060206137cd85828601613782565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138115780820151818401526020810190506137f6565b60008484015250505050565b6000601f19601f8301169050919050565b6000613839826137d7565b61384381856137e2565b93506138538185602086016137f3565b61385c8161381d565b840191505092915050565b60006020820190508181036000830152613881818461382e565b905092915050565b6000819050919050565b61389c81613889565b81146138a757600080fd5b50565b6000813590506138b981613893565b92915050565b6000602082840312156138d5576138d4613630565b5b60006138e3848285016138aa565b91505092915050565b6138f581613715565b82525050565b600060208201905061391060008301846138ec565b92915050565b6000806040838503121561392d5761392c613630565b5b600061393b8582860161373e565b925050602061394c858286016138aa565b9150509250929050565b61395f81613889565b82525050565b600060208201905061397a6000830184613956565b92915050565b60008060006060848603121561399957613998613630565b5b60006139a78682870161373e565b93505060206139b88682870161373e565b92505060406139c9868287016138aa565b9150509250925092565b600080604083850312156139ea576139e9613630565b5b60006139f8858286016138aa565b9250506020613a09858286016138aa565b9150509250929050565b6000604082019050613a2860008301856138ec565b613a356020830184613956565b9392505050565b60008060408385031215613a5357613a52613630565b5b6000613a61858286016138aa565b9250506020613a728582860161373e565b9150509250929050565b6000819050919050565b6000613aa1613a9c613a97846136f5565b613a7c565b6136f5565b9050919050565b6000613ab382613a86565b9050919050565b6000613ac582613aa8565b9050919050565b613ad581613aba565b82525050565b6000602082019050613af06000830184613acc565b92915050565b600060208284031215613b0c57613b0b613630565b5b6000613b1a8482850161373e565b91505092915050565b613b2c81613889565b82525050565b613b3b816136bf565b82525050565b61010082016000820151613b586000850182613b23565b506020820151613b6b6020850182613b23565b506040820151613b7e6040850182613b23565b506060820151613b916060850182613b32565b506080820151613ba46080850182613b23565b5060a0820151613bb760a0850182613b23565b5060c0820151613bca60c0850182613b23565b5060e0820151613bdd60e0850182613b23565b50505050565b600061010082019050613bf96000830184613b41565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c418261381d565b810181811067ffffffffffffffff82111715613c6057613c5f613c09565b5b80604052505050565b6000613c73613626565b9050613c7f8282613c38565b919050565b600067ffffffffffffffff821115613c9f57613c9e613c09565b5b613ca88261381d565b9050602081019050919050565b82818337600083830152505050565b6000613cd7613cd284613c84565b613c69565b905082815260208101848484011115613cf357613cf2613c04565b5b613cfe848285613cb5565b509392505050565b600082601f830112613d1b57613d1a613bff565b5b8135613d2b848260208601613cc4565b91505092915050565b600060208284031215613d4a57613d49613630565b5b600082013567ffffffffffffffff811115613d6857613d67613635565b5b613d7484828501613d06565b91505092915050565b613d86816136bf565b8114613d9157600080fd5b50565b600081359050613da381613d7d565b92915050565b60008060408385031215613dc057613dbf613630565b5b6000613dce8582860161373e565b9250506020613ddf85828601613d94565b9150509250929050565b600067ffffffffffffffff821115613e0457613e03613c09565b5b613e0d8261381d565b9050602081019050919050565b6000613e2d613e2884613de9565b613c69565b905082815260208101848484011115613e4957613e48613c04565b5b613e54848285613cb5565b509392505050565b600082601f830112613e7157613e70613bff565b5b8135613e81848260208601613e1a565b91505092915050565b60008060008060808587031215613ea457613ea3613630565b5b6000613eb28782880161373e565b9450506020613ec38782880161373e565b9350506040613ed4878288016138aa565b925050606085013567ffffffffffffffff811115613ef557613ef4613635565b5b613f0187828801613e5c565b91505092959194509250565b60008060408385031215613f2457613f23613630565b5b6000613f328582860161373e565b9250506020613f438582860161373e565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f836020836137e2565b9150613f8e82613f4d565b602082019050919050565b60006020820190508181036000830152613fb281613f76565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061400057607f821691505b60208210810361401357614012613fb9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061405382613889565b915061405e83613889565b925082820261406c81613889565b9150828204841483151761408357614082614019565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140c482613889565b91506140cf83613889565b9250826140df576140de61408a565b5b828204905092915050565b60006140f582613889565b915061410083613889565b925082820390508181111561411857614117614019565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026141807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614143565b61418a8683614143565b95508019841693508086168417925050509392505050565b60006141bd6141b86141b384613889565b613a7c565b613889565b9050919050565b6000819050919050565b6141d7836141a2565b6141eb6141e3826141c4565b848454614150565b825550505050565b600090565b6142006141f3565b61420b8184846141ce565b505050565b5b8181101561422f576142246000826141f8565b600181019050614211565b5050565b601f821115614274576142458161411e565b61424e84614133565b8101602085101561425d578190505b61427161426985614133565b830182614210565b50505b505050565b600082821c905092915050565b600061429760001984600802614279565b1980831691505092915050565b60006142b08383614286565b9150826002028217905092915050565b6142c9826137d7565b67ffffffffffffffff8111156142e2576142e1613c09565b5b6142ec8254613fe8565b6142f7828285614233565b600060209050601f83116001811461432a5760008415614318578287015190505b61432285826142a4565b86555061438a565b601f1984166143388661411e565b60005b828110156143605784890151825560018201915060208501945060208101905061433b565b8683101561437d5784890151614379601f891682614286565b8355505b6001600288020188555050505b505050505050565b600061439d82613889565b91506143a883613889565b92508282019050808211156143c0576143bf614019565b5b92915050565b7f457863656564206d617820737570706c79206f6620746f6b656e730000000000600082015250565b60006143fc601b836137e2565b9150614407826143c6565b602082019050919050565b6000602082019050818103600083015261442b816143ef565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f457863656564206d617820746f6b656e73207065722074780000000000000000600082015250565b60006144976018836137e2565b91506144a282614461565b602082019050919050565b600060208201905081810360008301526144c68161448a565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b60006145036016836137e2565b915061450e826144cd565b602082019050919050565b60006020820190508181036000830152614532816144f6565b9050919050565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b600061456f6011836137e2565b915061457a82614539565b602082019050919050565b6000602082019050818103600083015261459e81614562565b9050919050565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b60006145db6010836137e2565b91506145e6826145a5565b602082019050919050565b6000602082019050818103600083015261460a816145ce565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006146476015836137e2565b915061465282614611565b602082019050919050565b600060208201905081810360008301526146768161463a565b9050919050565b600081905092915050565b6000815461469581613fe8565b61469f818661467d565b945060018216600081146146ba57600181146146cf57614702565b60ff1983168652811515820286019350614702565b6146d88561411e565b60005b838110156146fa578154818901526001820191506020810190506146db565b838801955050505b50505092915050565b6000614716826137d7565b614720818561467d565b93506147308185602086016137f3565b80840191505092915050565b60006147488285614688565b9150614754828461470b565b91508190509392505050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061479660058361467d565b91506147a182614760565b600582019050919050565b60006147b88285614688565b91506147c4828461470b565b91506147cf82614789565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006148376026836137e2565b9150614842826147db565b604082019050919050565b600060208201905081810360008301526148668161482a565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006148c9602a836137e2565b91506148d48261486d565b604082019050919050565b600060208201905081810360008301526148f8816148bc565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006149356019836137e2565b9150614940826148ff565b602082019050919050565b6000602082019050818103600083015261496481614928565b9050919050565b600060408201905061498060008301856138ec565b61498d60208301846138ec565b9392505050565b6000815190506149a381613d7d565b92915050565b6000602082840312156149bf576149be613630565b5b60006149cd84828501614994565b91505092915050565b60006149e182613889565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614a1357614a12614019565b5b600182019050919050565b6000614a2982613889565b9150614a3483613889565b925082614a4457614a4361408a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000614aa582614a7e565b614aaf8185614a89565b9350614abf8185602086016137f3565b614ac88161381d565b840191505092915050565b6000608082019050614ae860008301876138ec565b614af560208301866138ec565b614b026040830185613956565b8181036060830152614b148184614a9a565b905095945050505050565b600081519050614b2e81613666565b92915050565b600060208284031215614b4a57614b49613630565b5b6000614b5884828501614b1f565b9150509291505056fea2646970667358221220a2d50f8c76ea8dbaa8f8c6b2de26f25fad18032d5a6194925b6278787e130cc464736f6c6343000811003368747470733a2f2f6172742e67657472696b2e636f6d2f63333239313738332f73616368696b6f2f

Deployed Bytecode

0x6080604052600436106102515760003560e01c80636f8b44b011610139578063a22cb465116100b6578063c634d0321161007a578063c634d03214610887578063c87b56dd146108a3578063dc33e681146108e0578063e985e9c51461091d578063f2fde38b1461095a578063f47c84c51461098357610251565b8063a22cb465146107cc578063b13e3855146107f5578063b88d4fde1461081e578063b9bed05e14610847578063c4d7e2f81461087057610251565b80637ff9b596116100fd5780637ff9b596146106f75780638da5cb5b146107225780638f69ae6f1461074d578063900c71f51461077857806395d89b41146107a157610251565b80636f8b44b01461062857806370a0823114610651578063715018a61461068e57806378cf19e9146106a55780637b8940cc146106ce57610251565b80633ccfd60b116101d257806355f804b31161019657806355f804b3146105185780635e307a48146105415780636352211e1461056c578063681c8bac146105a95780636a61e5fc146105d45780636c0360eb146105fd57610251565b80633ccfd60b1461044757806341f434341461045e57806342842e0e14610489578063495e1eba146104b25780634df8bb45146104db57610251565b806318160ddd1161021957806318160ddd1461034d578063205a2e9d1461037857806323b872dd146103a35780632a55205a146103cc5780632b57cfbb1461040a57610251565b806301ffc9a71461025657806302fa7c471461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613692565b6109ae565b60405161028a91906136da565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b59190613797565b6109c0565b005b3480156102c857600080fd5b506102d1610a4a565b6040516102de9190613867565b60405180910390f35b3480156102f357600080fd5b5061030e600480360381019061030991906138bf565b610adc565b60405161031b91906138fb565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613916565b610b58565b005b34801561035957600080fd5b50610362610b71565b60405161036f9190613965565b60405180910390f35b34801561038457600080fd5b5061038d610b88565b60405161039a9190613965565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190613980565b610b8e565b005b3480156103d857600080fd5b506103f360048036038101906103ee91906139d3565b610bdd565b604051610401929190613a13565b60405180910390f35b34801561041657600080fd5b50610431600480360381019061042c9190613a3c565b610dc7565b60405161043e9190613965565b60405180910390f35b34801561045357600080fd5b5061045c610e25565b005b34801561046a57600080fd5b50610473610ef0565b6040516104809190613adb565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190613980565b610f02565b005b3480156104be57600080fd5b506104d960048036038101906104d491906138bf565b610f51565b005b3480156104e757600080fd5b5061050260048036038101906104fd9190613af6565b610fd7565b60405161050f9190613be3565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a9190613d34565b61103c565b005b34801561054d57600080fd5b506105566110cb565b6040516105639190613965565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e91906138bf565b6110d1565b6040516105a091906138fb565b60405180910390f35b3480156105b557600080fd5b506105be6110e7565b6040516105cb9190613965565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f691906138bf565b6110ed565b005b34801561060957600080fd5b50610612611173565b60405161061f9190613867565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a91906138bf565b611201565b005b34801561065d57600080fd5b5061067860048036038101906106739190613af6565b611287565b6040516106859190613965565b60405180910390f35b34801561069a57600080fd5b506106a3611356565b005b3480156106b157600080fd5b506106cc60048036038101906106c79190613916565b6113de565b005b3480156106da57600080fd5b506106f560048036038101906106f091906138bf565b6114bf565b005b34801561070357600080fd5b5061070c611545565b6040516107199190613965565b60405180910390f35b34801561072e57600080fd5b5061073761154b565b60405161074491906138fb565b60405180910390f35b34801561075957600080fd5b50610762611575565b60405161076f9190613965565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a91906138bf565b61157b565b005b3480156107ad57600080fd5b506107b661165e565b6040516107c39190613867565b60405180910390f35b3480156107d857600080fd5b506107f360048036038101906107ee9190613da9565b6116f0565b005b34801561080157600080fd5b5061081c600480360381019061081791906138bf565b611709565b005b34801561082a57600080fd5b5061084560048036038101906108409190613e8a565b61178f565b005b34801561085357600080fd5b5061086e600480360381019061086991906138bf565b6117e0565b005b34801561087c57600080fd5b50610885611866565b005b6108a1600480360381019061089c91906138bf565b6118ec565b005b3480156108af57600080fd5b506108ca60048036038101906108c591906138bf565b611afa565b6040516108d79190613867565b60405180910390f35b3480156108ec57600080fd5b5061090760048036038101906109029190613af6565b611c3b565b6040516109149190613965565b60405180910390f35b34801561092957600080fd5b50610944600480360381019061093f9190613f0d565b611c4d565b60405161095191906136da565b60405180910390f35b34801561096657600080fd5b50610981600480360381019061097c9190613af6565b611ce1565b005b34801561098f57600080fd5b50610998611dd8565b6040516109a59190613965565b60405180910390f35b60006109b982611dde565b9050919050565b6109c8611e58565b73ffffffffffffffffffffffffffffffffffffffff166109e661154b565b73ffffffffffffffffffffffffffffffffffffffff1614610a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3390613f99565b60405180910390fd5b610a468282611e60565b5050565b606060028054610a5990613fe8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8590613fe8565b8015610ad25780601f10610aa757610100808354040283529160200191610ad2565b820191906000526020600020905b815481529060010190602001808311610ab557829003601f168201915b5050505050905090565b6000610ae782611ff5565b610b1d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610b6281612043565b610b6c8383612140565b505050565b6000610b7b612244565b6001546000540303905090565b60115481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bcc57610bcb33612043565b5b610bd7848484612249565b50505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610d725760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610d7c612259565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610da89190614048565b610db291906140b9565b90508160000151819350935050509250929050565b600080610dd383611c3b565b1115610dee57600c5483610de79190614048565b9050610e1f565b601154831115610e1a57600c5460115484610e0991906140ea565b610e139190614048565b9050610e1f565b600090505b92915050565b610e2d611e58565b73ffffffffffffffffffffffffffffffffffffffff16610e4b61154b565b73ffffffffffffffffffffffffffffffffffffffff1614610ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9890613f99565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610eec573d6000803e3d6000fd5b5050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f4057610f3f33612043565b5b610f4b848484612263565b50505050565b610f59611e58565b73ffffffffffffffffffffffffffffffffffffffff16610f7761154b565b73ffffffffffffffffffffffffffffffffffffffff1614610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490613f99565b60405180910390fd5b80600e8190555050565b610fdf61359c565b604051806101000160405280600c548152602001600d548152602001600f548152602001600115158152602001611014610b71565b8152602001601154815260200161102a84612283565b8152602001600e548152509050919050565b611044611e58565b73ffffffffffffffffffffffffffffffffffffffff1661106261154b565b73ffffffffffffffffffffffffffffffffffffffff16146110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90613f99565b60405180910390fd5b80600b90816110c791906142c0565b5050565b600d5481565b60006110dc826122ed565b600001519050919050565b600e5481565b6110f5611e58565b73ffffffffffffffffffffffffffffffffffffffff1661111361154b565b73ffffffffffffffffffffffffffffffffffffffff1614611169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116090613f99565b60405180910390fd5b80600c8190555050565b600b805461118090613fe8565b80601f01602080910402602001604051908101604052809291908181526020018280546111ac90613fe8565b80156111f95780601f106111ce576101008083540402835291602001916111f9565b820191906000526020600020905b8154815290600101906020018083116111dc57829003601f168201915b505050505081565b611209611e58565b73ffffffffffffffffffffffffffffffffffffffff1661122761154b565b73ffffffffffffffffffffffffffffffffffffffff161461127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490613f99565b60405180910390fd5b80600f8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112ee576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61135e611e58565b73ffffffffffffffffffffffffffffffffffffffff1661137c61154b565b73ffffffffffffffffffffffffffffffffffffffff16146113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c990613f99565b60405180910390fd5b6113dc6000612578565b565b6113e6611e58565b73ffffffffffffffffffffffffffffffffffffffff1661140461154b565b73ffffffffffffffffffffffffffffffffffffffff161461145a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145190613f99565b60405180910390fd5b600f5481611466610b71565b6114709190614392565b11156114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890614412565b60405180910390fd5b6114bb828261263e565b5050565b6114c7611e58565b73ffffffffffffffffffffffffffffffffffffffff166114e561154b565b73ffffffffffffffffffffffffffffffffffffffff161461153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290613f99565b60405180910390fd5b8060108190555050565b600c5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b611583611e58565b73ffffffffffffffffffffffffffffffffffffffff166115a161154b565b73ffffffffffffffffffffffffffffffffffffffff16146115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee90613f99565b60405180910390fd5b6002810361162f576001601260006101000a81548160ff0219169083600181111561162557611624614432565b5b021790555061165b565b6000601260006101000a81548160ff0219169083600181111561165557611654614432565b5b02179055505b50565b60606003805461166d90613fe8565b80601f016020809104026020016040519081016040528092919081815260200182805461169990613fe8565b80156116e65780601f106116bb576101008083540402835291602001916116e6565b820191906000526020600020905b8154815290600101906020018083116116c957829003601f168201915b5050505050905090565b816116fa81612043565b611704838361265c565b505050565b611711611e58565b73ffffffffffffffffffffffffffffffffffffffff1661172f61154b565b73ffffffffffffffffffffffffffffffffffffffff1614611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90613f99565b60405180910390fd5b8060118190555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117cd576117cc33612043565b5b6117d9858585856127d3565b5050505050565b6117e8611e58565b73ffffffffffffffffffffffffffffffffffffffff1661180661154b565b73ffffffffffffffffffffffffffffffffffffffff161461185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390613f99565b60405180910390fd5b80600d8190555050565b61186e611e58565b73ffffffffffffffffffffffffffffffffffffffff1661188c61154b565b73ffffffffffffffffffffffffffffffffffffffff16146118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990613f99565b60405180910390fd5b6000601081905550565b600d54811115611931576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611928906144ad565b60405180910390fd5b60008111611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b90614519565b60405180910390fd5b600f5481611980610b71565b61198a9190614392565b11156119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c290614585565b60405180910390fd5b60006010541180156119e6575060006119e333611c3b565b11155b15611a1d5760105481106119fa5760105490505b611a04338261263e565b80601054611a1291906140ea565b601081905550611af7565b6000611a2833612283565b1115611a8357600c5481611a3c9190614048565b341015611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a75906145f1565b60405180910390fd5b611aec565b601154811115611aeb57600c5460115482611a9e91906140ea565b611aa89190614048565b341015611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae1906145f1565b60405180910390fd5b5b5b611af6338261263e565b5b50565b6060611b0582611ff5565b611b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3b9061465d565b60405180910390fd5b600180811115611b5757611b56614432565b5b601260009054906101000a900460ff166001811115611b7957611b78614432565b5b03611bdc576000600b8054611b8d90613fe8565b905011611ba95760405180602001604052806000815250611bd5565b600b611bb48361284b565b604051602001611bc592919061473c565b6040516020818303038152906040525b9050611c36565b6000600b8054611beb90613fe8565b905011611c075760405180602001604052806000815250611c33565b600b611c128361284b565b604051602001611c239291906147ac565b6040516020818303038152906040525b90505b919050565b6000611c4682612283565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ce9611e58565b73ffffffffffffffffffffffffffffffffffffffff16611d0761154b565b73ffffffffffffffffffffffffffffffffffffffff1614611d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5490613f99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc39061484d565b60405180910390fd5b611dd581612578565b50565b600f5481565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e515750611e50826129ab565b5b9050919050565b600033905090565b611e68612259565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebd906148df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c9061494b565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081612000612244565b1115801561200f575060005482105b801561203c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561213d576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016120ba92919061496b565b602060405180830381865afa1580156120d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120fb91906149a9565b61213c57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161213391906138fb565b60405180910390fd5b5b50565b600061214b826110d1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121b2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166121d1611e58565b73ffffffffffffffffffffffffffffffffffffffff1614612234576121fd816121f8611e58565b611c4d565b612233576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b61223f838383612a8d565b505050565b600090565b612254838383612b3f565b505050565b6000612710905090565b61227e8383836040518060200160405280600081525061178f565b505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6122f56135e3565b600082905080612303612244565b1161254157600054811015612540576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161253e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612422578092505050612573565b5b60011561253d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612538578092505050612573565b612423565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612658828260405180602001604052806000815250612ff3565b5050565b612664611e58565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126c8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006126d5611e58565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612782611e58565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127c791906136da565b60405180910390a35050565b6127de848484612b3f565b6127fd8373ffffffffffffffffffffffffffffffffffffffff166133b3565b156128455761280e848484846133d6565b612844576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060008203612892576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129a6565b600082905060005b600082146128c45780806128ad906149d6565b915050600a826128bd91906140b9565b915061289a565b60008167ffffffffffffffff8111156128e0576128df613c09565b5b6040519080825280601f01601f1916602001820160405280156129125781602001600182028036833780820191505090505b5090505b6000851461299f5760018261292b91906140ea565b9150600a8561293a9190614a1e565b60306129469190614392565b60f81b81838151811061295c5761295b614a4f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561299891906140b9565b9450612916565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a7657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a865750612a8582613526565b5b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612b4a826122ed565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612bb5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612bd6611e58565b73ffffffffffffffffffffffffffffffffffffffff161480612c055750612c0485612bff611e58565b611c4d565b5b80612c4a5750612c13611e58565b73ffffffffffffffffffffffffffffffffffffffff16612c3284610adc565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612c83576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612ce9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612cf68585856001613590565b612d0260008487612a8d565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612f81576000548214612f8057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fec8585856001613596565b5050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361305f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303613099576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130a66000858386613590565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506132678673ffffffffffffffffffffffffffffffffffffffff166133b3565b1561332c575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132dc60008784806001019550876133d6565b613312576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061326d57826000541461332757600080fd5b613397565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061332d575b8160008190555050506133ad6000858386613596565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133fc611e58565b8786866040518563ffffffff1660e01b815260040161341e9493929190614ad3565b6020604051808303816000875af192505050801561345a57506040513d601f19601f820116820180604052508101906134579190614b34565b60015b6134d3573d806000811461348a576040519150601f19603f3d011682016040523d82523d6000602084013e61348f565b606091505b5060008151036134cb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b604051806101000160405280600081526020016000815260200160008152602001600015158152602001600081526020016000815260200160008152602001600081525090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61366f8161363a565b811461367a57600080fd5b50565b60008135905061368c81613666565b92915050565b6000602082840312156136a8576136a7613630565b5b60006136b68482850161367d565b91505092915050565b60008115159050919050565b6136d4816136bf565b82525050565b60006020820190506136ef60008301846136cb565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613720826136f5565b9050919050565b61373081613715565b811461373b57600080fd5b50565b60008135905061374d81613727565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61377481613753565b811461377f57600080fd5b50565b6000813590506137918161376b565b92915050565b600080604083850312156137ae576137ad613630565b5b60006137bc8582860161373e565b92505060206137cd85828601613782565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138115780820151818401526020810190506137f6565b60008484015250505050565b6000601f19601f8301169050919050565b6000613839826137d7565b61384381856137e2565b93506138538185602086016137f3565b61385c8161381d565b840191505092915050565b60006020820190508181036000830152613881818461382e565b905092915050565b6000819050919050565b61389c81613889565b81146138a757600080fd5b50565b6000813590506138b981613893565b92915050565b6000602082840312156138d5576138d4613630565b5b60006138e3848285016138aa565b91505092915050565b6138f581613715565b82525050565b600060208201905061391060008301846138ec565b92915050565b6000806040838503121561392d5761392c613630565b5b600061393b8582860161373e565b925050602061394c858286016138aa565b9150509250929050565b61395f81613889565b82525050565b600060208201905061397a6000830184613956565b92915050565b60008060006060848603121561399957613998613630565b5b60006139a78682870161373e565b93505060206139b88682870161373e565b92505060406139c9868287016138aa565b9150509250925092565b600080604083850312156139ea576139e9613630565b5b60006139f8858286016138aa565b9250506020613a09858286016138aa565b9150509250929050565b6000604082019050613a2860008301856138ec565b613a356020830184613956565b9392505050565b60008060408385031215613a5357613a52613630565b5b6000613a61858286016138aa565b9250506020613a728582860161373e565b9150509250929050565b6000819050919050565b6000613aa1613a9c613a97846136f5565b613a7c565b6136f5565b9050919050565b6000613ab382613a86565b9050919050565b6000613ac582613aa8565b9050919050565b613ad581613aba565b82525050565b6000602082019050613af06000830184613acc565b92915050565b600060208284031215613b0c57613b0b613630565b5b6000613b1a8482850161373e565b91505092915050565b613b2c81613889565b82525050565b613b3b816136bf565b82525050565b61010082016000820151613b586000850182613b23565b506020820151613b6b6020850182613b23565b506040820151613b7e6040850182613b23565b506060820151613b916060850182613b32565b506080820151613ba46080850182613b23565b5060a0820151613bb760a0850182613b23565b5060c0820151613bca60c0850182613b23565b5060e0820151613bdd60e0850182613b23565b50505050565b600061010082019050613bf96000830184613b41565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613c418261381d565b810181811067ffffffffffffffff82111715613c6057613c5f613c09565b5b80604052505050565b6000613c73613626565b9050613c7f8282613c38565b919050565b600067ffffffffffffffff821115613c9f57613c9e613c09565b5b613ca88261381d565b9050602081019050919050565b82818337600083830152505050565b6000613cd7613cd284613c84565b613c69565b905082815260208101848484011115613cf357613cf2613c04565b5b613cfe848285613cb5565b509392505050565b600082601f830112613d1b57613d1a613bff565b5b8135613d2b848260208601613cc4565b91505092915050565b600060208284031215613d4a57613d49613630565b5b600082013567ffffffffffffffff811115613d6857613d67613635565b5b613d7484828501613d06565b91505092915050565b613d86816136bf565b8114613d9157600080fd5b50565b600081359050613da381613d7d565b92915050565b60008060408385031215613dc057613dbf613630565b5b6000613dce8582860161373e565b9250506020613ddf85828601613d94565b9150509250929050565b600067ffffffffffffffff821115613e0457613e03613c09565b5b613e0d8261381d565b9050602081019050919050565b6000613e2d613e2884613de9565b613c69565b905082815260208101848484011115613e4957613e48613c04565b5b613e54848285613cb5565b509392505050565b600082601f830112613e7157613e70613bff565b5b8135613e81848260208601613e1a565b91505092915050565b60008060008060808587031215613ea457613ea3613630565b5b6000613eb28782880161373e565b9450506020613ec38782880161373e565b9350506040613ed4878288016138aa565b925050606085013567ffffffffffffffff811115613ef557613ef4613635565b5b613f0187828801613e5c565b91505092959194509250565b60008060408385031215613f2457613f23613630565b5b6000613f328582860161373e565b9250506020613f438582860161373e565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f836020836137e2565b9150613f8e82613f4d565b602082019050919050565b60006020820190508181036000830152613fb281613f76565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061400057607f821691505b60208210810361401357614012613fb9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061405382613889565b915061405e83613889565b925082820261406c81613889565b9150828204841483151761408357614082614019565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006140c482613889565b91506140cf83613889565b9250826140df576140de61408a565b5b828204905092915050565b60006140f582613889565b915061410083613889565b925082820390508181111561411857614117614019565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026141807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614143565b61418a8683614143565b95508019841693508086168417925050509392505050565b60006141bd6141b86141b384613889565b613a7c565b613889565b9050919050565b6000819050919050565b6141d7836141a2565b6141eb6141e3826141c4565b848454614150565b825550505050565b600090565b6142006141f3565b61420b8184846141ce565b505050565b5b8181101561422f576142246000826141f8565b600181019050614211565b5050565b601f821115614274576142458161411e565b61424e84614133565b8101602085101561425d578190505b61427161426985614133565b830182614210565b50505b505050565b600082821c905092915050565b600061429760001984600802614279565b1980831691505092915050565b60006142b08383614286565b9150826002028217905092915050565b6142c9826137d7565b67ffffffffffffffff8111156142e2576142e1613c09565b5b6142ec8254613fe8565b6142f7828285614233565b600060209050601f83116001811461432a5760008415614318578287015190505b61432285826142a4565b86555061438a565b601f1984166143388661411e565b60005b828110156143605784890151825560018201915060208501945060208101905061433b565b8683101561437d5784890151614379601f891682614286565b8355505b6001600288020188555050505b505050505050565b600061439d82613889565b91506143a883613889565b92508282019050808211156143c0576143bf614019565b5b92915050565b7f457863656564206d617820737570706c79206f6620746f6b656e730000000000600082015250565b60006143fc601b836137e2565b9150614407826143c6565b602082019050919050565b6000602082019050818103600083015261442b816143ef565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f457863656564206d617820746f6b656e73207065722074780000000000000000600082015250565b60006144976018836137e2565b91506144a282614461565b602082019050919050565b600060208201905081810360008301526144c68161448a565b9050919050565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b60006145036016836137e2565b915061450e826144cd565b602082019050919050565b60006020820190508181036000830152614532816144f6565b9050919050565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b600061456f6011836137e2565b915061457a82614539565b602082019050919050565b6000602082019050818103600083015261459e81614562565b9050919050565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b60006145db6010836137e2565b91506145e6826145a5565b602082019050919050565b6000602082019050818103600083015261460a816145ce565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006146476015836137e2565b915061465282614611565b602082019050919050565b600060208201905081810360008301526146768161463a565b9050919050565b600081905092915050565b6000815461469581613fe8565b61469f818661467d565b945060018216600081146146ba57600181146146cf57614702565b60ff1983168652811515820286019350614702565b6146d88561411e565b60005b838110156146fa578154818901526001820191506020810190506146db565b838801955050505b50505092915050565b6000614716826137d7565b614720818561467d565b93506147308185602086016137f3565b80840191505092915050565b60006147488285614688565b9150614754828461470b565b91508190509392505050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061479660058361467d565b91506147a182614760565b600582019050919050565b60006147b88285614688565b91506147c4828461470b565b91506147cf82614789565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006148376026836137e2565b9150614842826147db565b604082019050919050565b600060208201905081810360008301526148668161482a565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006148c9602a836137e2565b91506148d48261486d565b604082019050919050565b600060208201905081810360008301526148f8816148bc565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006149356019836137e2565b9150614940826148ff565b602082019050919050565b6000602082019050818103600083015261496481614928565b9050919050565b600060408201905061498060008301856138ec565b61498d60208301846138ec565b9392505050565b6000815190506149a381613d7d565b92915050565b6000602082840312156149bf576149be613630565b5b60006149cd84828501614994565b91505092915050565b60006149e182613889565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614a1357614a12614019565b5b600182019050919050565b6000614a2982613889565b9150614a3483613889565b925082614a4457614a4361408a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000614aa582614a7e565b614aaf8185614a89565b9350614abf8185602086016137f3565b614ac88161381d565b840191505092915050565b6000608082019050614ae860008301876138ec565b614af560208301866138ec565b614b026040830185613956565b8181036060830152614b148184614a9a565b905095945050505050565b600081519050614b2e81613666565b92915050565b600060208284031215614b4a57614b49613630565b5b6000614b5884828501614b1f565b9150509291505056fea2646970667358221220a2d50f8c76ea8dbaa8f8c6b2de26f25fad18032d5a6194925b6278787e130cc464736f6c63430008110033

Deployed Bytecode Sourcemap

72320:8005:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78891:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79086:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52097:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53694:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79475:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48101:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72839:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79665:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69686:480;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;75191:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74002:143;;;;;;;;;;;;;:::i;:::-;;2989;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79870:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78731:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73439:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74706:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72538:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51905:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72581:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76923:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72398:66;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78334:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49246:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18174:103;;;;;;;;;;;;;:::i;:::-;;74417:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74914:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72473:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17523:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72711:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77866:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52266:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79266:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78571:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80083:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78443:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75093:90;;;;;;;;;;;;;:::i;:::-;;75637:1278;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77039:819;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78213:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54369:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18432:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72627:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78891:187;79010:4;79034:36;79058:11;79034:23;:36::i;:::-;79027:43;;78891:187;;;:::o;79086:172::-;17754:12;:10;:12::i;:::-;17743:23;;:7;:5;:7::i;:::-;:23;;;17735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79206:44:::1;79225:8;79235:14;79206:18;:44::i;:::-;79086:172:::0;;:::o;52097:100::-;52151:13;52184:5;52177:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52097:100;:::o;53694:220::-;53778:7;53803:16;53811:7;53803;:16::i;:::-;53798:64;;53828:34;;;;;;;;;;;;;;53798:64;53882:15;:24;53898:7;53882:24;;;;;;;;;;;;;;;;;;;;;53875:31;;53694:220;;;:::o;79475:182::-;79596:8;4644:30;4665:8;4644:20;:30::i;:::-;79617:32:::1;79631:8;79641:7;79617:13;:32::i;:::-;79475:182:::0;;;:::o;48101:312::-;48154:7;48379:15;:13;:15::i;:::-;48364:12;;48348:13;;:28;:46;48341:53;;48101:312;:::o;72839:37::-;;;;:::o;79665:197::-;79800:4;4472:10;4464:18;;:4;:18;;;4460:83;;4499:32;4520:10;4499:20;:32::i;:::-;4460:83;79817:37:::1;79836:4;79842:2;79846:7;79817:18;:37::i;:::-;79665:197:::0;;;;:::o;69686:480::-;69808:7;69817;69837:26;69866:17;:27;69884:8;69866:27;;;;;;;;;;;69837:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69938:1;69910:30;;:7;:16;;;:30;;;69906:92;;69967:19;69957:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69906:92;70010:21;70088:17;:15;:17::i;:::-;70034:71;;70048:7;:23;;;70035:36;;:10;:36;;;;:::i;:::-;70034:71;;;;:::i;:::-;70010:95;;70126:7;:16;;;70144:13;70118:40;;;;;;69686:480;;;;;:::o;75191:372::-;75295:7;75342:1;75319:20;75332:6;75319:12;:20::i;:::-;:24;75315:222;;;75384:10;;75367:14;:27;;;;:::i;:::-;75360:34;;;;75315:222;75433:18;;75416:14;:35;75412:125;;;75515:10;;75493:18;;75476:14;:35;;;;:::i;:::-;75475:50;;;;:::i;:::-;75468:57;;;;75412:125;75554:1;75547:8;;75191:372;;;;;:::o;74002:143::-;17754:12;:10;:12::i;:::-;17743:23;;:7;:5;:7::i;:::-;:23;;;17735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74050:15:::1;74068:21;74050:39;;74108:10;74100:28;;:37;74129:7;74100:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;74039:106;74002:143::o:0;2989:::-;3089:42;2989:143;:::o;79870:205::-;80009:4;4472:10;4464:18;;:4;:18;;;4460:83;;4499:32;4520:10;4499:20;:32::i;:::-;4460:83;80026:41:::1;80049:4;80055:2;80059:7;80026:22;:41::i;:::-;79870:205:::0;;;;:::o;78731:152::-;17754:12;:10;:12::i;:::-;17743:23;;:7;:5;:7::i;:::-;:23;;;17735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78856:19:::1;78835:18;:40;;;;78731:152:::0;:::o;73439:555::-;73494:18;;:::i;:::-;73545:441;;;;;;;;73588:10;;73545:441;;;;73633:14;;73545:441;;;;73678:10;;73545:441;;;;73721:4;73545:441;;;;;;73781:13;:11;:13::i;:::-;73545:441;;;;73834:18;;73545:441;;;;73891:21;73905:6;73891:13;:21::i;:::-;73545:441;;;;73952:18;;73545:441;;;73525:461;;73439:555;;;:::o;74706:94::-;17754:12;:10;:12::i;:::-;17743:23;;:7;:5;:7::i;:::-;:23;;;17735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74786:6:::1;74776:7;:16;;;;;;:::i;:::-;;74706:94:::0;:::o;72538:34::-;;;;:::o;51905:125::-;51969:7;51996:21;52009:7;51996:12;:21::i;:::-;:26;;;51989:33;;51905:125;;;:::o;72581:37::-;;;;:::o;76923:108::-;17754:12;:10;:12::i;:::-;17743:23;;:7;:5;:7::i;:::-;:23;;;17735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77010:13:::1;76997:10;:26;;;;76923:108:::0;:::o;72398:66::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;78334:101::-;17754:12;:10;:12::i;:::-;17743:23;;:7;:5;:7::i;:::-;:23;;;17735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78417:10:::1;78404;:23;;;;78334:101:::0;:::o;49246:206::-;49310:7;49351:1;49334:19;;:5;:19;;;49330:60;;49362:28;;;;;;;;;;;;;;49330:60;49416:12;:19;49429:5;49416:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;49408:36;;49401:43;;49246:206;;;:::o;18174:103::-;17754:12;:10;:12::i;:::-;17743:23;;:7;:5;:7::i;:::-;:23;;;17735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18239:30:::1;18266:1;18239:18;:30::i;:::-;18174:103::o:0;74417:281::-;17754:12;:10;:12::i;:::-;17743:23;;:7;:5;:7::i;:::-;:23;;;17735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74585:10:::1;;74567:14;74551:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;74529:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;74661:29;74671:2;74675:14;74661:9;:29::i;:::-;74417:281:::0;;:::o;74914:171::-;17754:12;:10;:12::i;:::-;17743:23;;:7;:5;:7::i;:::-;:23;;;17735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75023:21:::1;75000:20;:44;;;;74914:171:::0;:::o;72473:44::-;;;;:::o;17523:87::-;17569:7;17596:6;;;;;;;;;;;17589:13;;17523:87;:::o;72711:42::-;;;;:::o;77866:223::-;17754:12;:10;:12::i;:::-;17743:23;;:7;:5;:7::i;:::-;:23;;;17735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77947:1:::1;77939:4;:9:::0;77935:147:::1;;77980:21;77965:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;77935:147;;;78049:21;78034:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;77935:147;77866:223:::0;:::o;52266:104::-;52322:13;52355:7;52348:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52266:104;:::o;79266:201::-;79395:8;4644:30;4665:8;4644:20;:30::i;:::-;79416:43:::1;79440:8;79450;79416:23;:43::i;:::-;79266:201:::0;;;:::o;78571:152::-;17754:12;:10;:12::i;:::-;17743:23;;:7;:5;:7::i;:::-;:23;;;17735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78696:19:::1;78675:18;:40;;;;78571:152:::0;:::o;80083:239::-;80250:4;4472:10;4464:18;;:4;:18;;;4460:83;;4499:32;4520:10;4499:20;:32::i;:::-;4460:83;80267:47:::1;80290:4;80296:2;80300:7;80309:4;80267:22;:47::i;:::-;80083:239:::0;;;;;:::o;78443:120::-;17754:12;:10;:12::i;:::-;17743:23;;:7;:5;:7::i;:::-;:23;;;17735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78540:15:::1;78523:14;:32;;;;78443:120:::0;:::o;75093:90::-;17754:12;:10;:12::i;:::-;17743:23;;:7;:5;:7::i;:::-;:23;;;17735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75174:1:::1;75151:20;:24;;;;75093:90::o:0;75637:1278::-;75790:14;;75772;:32;;75764:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;75869:1;75852:14;:18;75844:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;75964:10;;75946:14;75930:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;75908:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;76059:1;76036:20;;:24;:57;;;;;76092:1;76064:24;76077:10;76064:12;:24::i;:::-;:29;;76036:57;76032:876;;;76132:20;;76114:14;:38;76110:116;;76190:20;;76173:37;;76110:116;76240:37;76250:10;76262:14;76240:9;:37::i;:::-;76338:14;76315:20;;:37;;;;:::i;:::-;76292:20;:60;;;;76032:876;;;76417:1;76389:25;76403:10;76389:13;:25::i;:::-;:29;76385:460;;;76499:10;;76482:14;:27;;;;:::i;:::-;76469:9;:40;;76439:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;76385:460;;;76612:18;;76595:14;:35;76591:254;;;76759:10;;76737:18;;76720:14;:35;;;;:::i;:::-;76719:50;;;;:::i;:::-;76681:9;:88;;76651:178;;;;;;;;;;;;:::i;:::-;;;;;;;;;76591:254;76385:460;76859:37;76869:10;76881:14;76859:9;:37::i;:::-;76032:876;75637:1278;:::o;77039:819::-;77121:13;77155:17;77163:8;77155:7;:17::i;:::-;77147:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;77229:21;77213:37;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:37;;;;;;;;:::i;:::-;;;77209:642;;77315:1;77297:7;77291:21;;;;;:::i;:::-;;;:25;:184;;;;;;;;;;;;;;;;;77390:7;77399:26;77416:8;77399:16;:26::i;:::-;77373:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77291:184;77267:208;;;;77209:642;77556:1;77538:7;77532:21;;;;;:::i;:::-;;;:25;:307;;;;;;;;;;;;;;;;;77661:7;77699:26;77716:8;77699:16;:26::i;:::-;77614:176;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77532:307;77508:331;;77039:819;;;;:::o;78213:113::-;78271:7;78298:20;78312:5;78298:13;:20::i;:::-;78291:27;;78213:113;;;:::o;54369:189::-;54491:4;54515:18;:25;54534:5;54515:25;;;;;;;;;;;;;;;:35;54541:8;54515:35;;;;;;;;;;;;;;;;;;;;;;;;;54508:42;;54369:189;;;;:::o;18432:238::-;17754:12;:10;:12::i;:::-;17743:23;;:7;:5;:7::i;:::-;:23;;;17735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18555:1:::1;18535:22;;:8;:22;;::::0;18513:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;18634:28;18653:8;18634:18;:28::i;:::-;18432:238:::0;:::o;72627:32::-;;;;:::o;69374:257::-;69492:4;69544:26;69529:41;;;:11;:41;;;;:94;;;;69587:36;69611:11;69587:23;:36::i;:::-;69529:94;69509:114;;69374:257;;;:::o;6218:98::-;6271:7;6298:10;6291:17;;6218:98;:::o;70816:394::-;70974:17;:15;:17::i;:::-;70958:33;;:12;:33;;;;70936:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;71100:1;71080:22;;:8;:22;;;71072:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;71167:35;;;;;;;;71179:8;71167:35;;;;;;71189:12;71167:35;;;;;71145:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70816:394;;:::o;55769:213::-;55826:4;55882:7;55863:15;:13;:15::i;:::-;:26;;:66;;;;;55916:13;;55906:7;:23;55863:66;:111;;;;;55947:11;:20;55959:7;55947:20;;;;;;;;;;;:27;;;;;;;;;;;;55946:28;55863:111;55843:131;;55769:213;;;:::o;4702:512::-;4941:1;3089:42;4893:45;;;:49;4889:318;;;3089:42;4982;;;5055:4;5083:8;4982:128;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4959:237;;5171:8;5152:28;;;;;;;;;;;:::i;:::-;;;;;;;;4959:237;4889:318;4702:512;:::o;53226:402::-;53307:13;53323:24;53339:7;53323:15;:24::i;:::-;53307:40;;53368:5;53362:11;;:2;:11;;;53358:48;;53382:24;;;;;;;;;;;;;;53358:48;53439:5;53423:21;;:12;:10;:12::i;:::-;:21;;;53419:161;;53464:37;53481:5;53488:12;:10;:12::i;:::-;53464:16;:37::i;:::-;53459:121;;53529:35;;;;;;;;;;;;;;53459:121;53419:161;53592:28;53601:2;53605:7;53614:5;53592:8;:28::i;:::-;53296:332;53226:402;;:::o;47875:92::-;47931:7;47875:92;:::o;54625:170::-;54759:28;54769:4;54775:2;54779:7;54759:9;:28::i;:::-;54625:170;;;:::o;70448:97::-;70506:6;70532:5;70525:12;;70448:97;:::o;54866:185::-;55004:39;55021:4;55027:2;55031:7;55004:39;;;;;;;;;;;;:16;:39::i;:::-;54866:185;;;:::o;49534:137::-;49595:7;49630:12;:19;49643:5;49630:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;49622:41;;49615:48;;49534:137;;;:::o;50627:1216::-;50705:21;;:::i;:::-;50739:12;50754:7;50739:22;;50822:4;50803:15;:13;:15::i;:::-;:23;50799:977;;50856:13;;50849:4;:20;50845:931;;;50894:31;50928:11;:17;50940:4;50928:17;;;;;;;;;;;50894:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50973:9;:16;;;50968:789;;51048:1;51022:28;;:9;:14;;;:28;;;51018:109;;51090:9;51083:16;;;;;;51018:109;51449:285;51456:4;51449:285;;;51493:6;;;;;;;;51542:11;:17;51554:4;51542:17;;;;;;;;;;;51530:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51620:1;51594:28;;:9;:14;;;:28;;;51590:117;;51666:9;51659:16;;;;;;51590:117;51449:285;;;50968:789;50871:905;50845:931;50799:977;51804:31;;;;;;;;;;;;;;50627:1216;;;;:::o;18830:191::-;18904:16;18923:6;;;;;;;;;;;18904:25;;18949:8;18940:6;;:17;;;;;;;;;;;;;;;;;;19004:8;18973:40;;18994:8;18973:40;;;;;;;;;;;;18893:128;18830:191;:::o;56066:104::-;56135:27;56145:2;56149:8;56135:27;;;;;;;;;;;;:9;:27::i;:::-;56066:104;;:::o;53986:312::-;54122:12;:10;:12::i;:::-;54110:24;;:8;:24;;;54106:54;;54143:17;;;;;;;;;;;;;;54106:54;54218:8;54173:18;:32;54192:12;:10;:12::i;:::-;54173:32;;;;;;;;;;;;;;;:42;54206:8;54173:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54271:8;54242:48;;54257:12;:10;:12::i;:::-;54242:48;;;54281:8;54242:48;;;;;;:::i;:::-;;;;;;;;53986:312;;:::o;55122:392::-;55289:28;55299:4;55305:2;55309:7;55289:9;:28::i;:::-;55332:15;:2;:13;;;:15::i;:::-;55328:179;;;55367:56;55398:4;55404:2;55408:7;55417:5;55367:30;:56::i;:::-;55362:145;;55451:40;;;;;;;;;;;;;;55362:145;55328:179;55122:392;;;;:::o;28194:723::-;28250:13;28480:1;28471:5;:10;28467:53;;28498:10;;;;;;;;;;;;;;;;;;;;;28467:53;28530:12;28545:5;28530:20;;28561:14;28586:78;28601:1;28593:4;:9;28586:78;;28619:8;;;;;:::i;:::-;;;;28650:2;28642:10;;;;;:::i;:::-;;;28586:78;;;28674:19;28706:6;28696:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28674:39;;28724:154;28740:1;28731:5;:10;28724:154;;28768:1;28758:11;;;;;:::i;:::-;;;28835:2;28827:5;:10;;;;:::i;:::-;28814:2;:24;;;;:::i;:::-;28801:39;;28784:6;28791;28784:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;28864:2;28855:11;;;;;:::i;:::-;;;28724:154;;;28902:6;28888:21;;;;;28194:723;;;;:::o;48861:321::-;48979:4;49031:25;49016:40;;;:11;:40;;;;:105;;;;49088:33;49073:48;;;:11;:48;;;;49016:105;:158;;;;49138:36;49162:11;49138:23;:36::i;:::-;49016:158;48996:178;;48861:321;;;:::o;65187:162::-;65295:2;65268:15;:24;65284:7;65268:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;65333:7;65329:2;65313:28;;65322:5;65313:28;;;;;;;;;;;;65187:162;;;:::o;60169:2096::-;60250:35;60288:21;60301:7;60288:12;:21::i;:::-;60250:59;;60348:4;60326:26;;:13;:18;;;:26;;;60322:67;;60361:28;;;;;;;;;;;;;;60322:67;60402:22;60444:4;60428:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;60465:36;60482:4;60488:12;:10;:12::i;:::-;60465:16;:36::i;:::-;60428:73;:126;;;;60542:12;:10;:12::i;:::-;60518:36;;:20;60530:7;60518:11;:20::i;:::-;:36;;;60428:126;60402:153;;60573:17;60568:66;;60599:35;;;;;;;;;;;;;;60568:66;60663:1;60649:16;;:2;:16;;;60645:52;;60674:23;;;;;;;;;;;;;;60645:52;60710:43;60732:4;60738:2;60742:7;60751:1;60710:21;:43::i;:::-;60818:35;60835:1;60839:7;60848:4;60818:8;:35::i;:::-;61179:1;61149:12;:18;61162:4;61149:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61223:1;61195:12;:16;61208:2;61195:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61241:31;61275:11;:20;61287:7;61275:20;;;;;;;;;;;61241:54;;61326:2;61310:8;:13;;;:18;;;;;;;;;;;;;;;;;;61376:15;61343:8;:23;;;:49;;;;;;;;;;;;;;;;;;61644:19;61676:1;61666:7;:11;61644:33;;61692:31;61726:11;:24;61738:11;61726:24;;;;;;;;;;;61692:58;;61794:1;61769:27;;:8;:13;;;;;;;;;;;;:27;;;61765:384;;61979:13;;61964:11;:28;61960:174;;62033:4;62017:8;:13;;;:20;;;;;;;;;;;;;;;;;;62086:13;:28;;;62060:8;:23;;;:54;;;;;;;;;;;;;;;;;;61960:174;61765:384;61124:1036;;;62196:7;62192:2;62177:27;;62186:4;62177:27;;;;;;;;;;;;62215:42;62236:4;62242:2;62246:7;62255:1;62215:20;:42::i;:::-;60239:2026;;60169:2096;;;:::o;56543:1940::-;56666:20;56689:13;;56666:36;;56731:1;56717:16;;:2;:16;;;56713:48;;56742:19;;;;;;;;;;;;;;56713:48;56788:1;56776:8;:13;56772:44;;56798:18;;;;;;;;;;;;;;56772:44;56829:61;56859:1;56863:2;56867:12;56881:8;56829:21;:61::i;:::-;57202:8;57167:12;:16;57180:2;57167:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57266:8;57226:12;:16;57239:2;57226:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57325:2;57292:11;:25;57304:12;57292:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;57392:15;57342:11;:25;57354:12;57342:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;57425:20;57448:12;57425:35;;57475:11;57504:8;57489:12;:23;57475:37;;57533:15;:2;:13;;;:15::i;:::-;57529:822;;;57569:504;57625:12;57621:2;57600:38;;57617:1;57600:38;;;;;;;;;;;;57692:212;57761:1;57794:2;57827:14;;;;;;57872:5;57692:30;:212::i;:::-;57661:365;;57962:40;;;;;;;;;;;;;;57661:365;58068:3;58053:12;:18;57569:504;;58154:12;58137:13;;:29;58133:43;;58168:8;;;58133:43;57529:822;;;58217:119;58273:14;;;;;;58269:2;58248:40;;58265:1;58248:40;;;;;;;;;;;;58331:3;58316:12;:18;58217:119;;57529:822;58381:12;58365:13;:28;;;;57142:1263;;58415:60;58444:1;58448:2;58452:12;58466:8;58415:20;:60::i;:::-;56655:1828;56543:1940;;;:::o;20178:326::-;20238:4;20495:1;20473:7;:19;;;:23;20466:30;;20178:326;;;:::o;65841:772::-;66004:4;66054:2;66038:36;;;66093:12;:10;:12::i;:::-;66124:4;66147:7;66173:5;66038:155;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;66021:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66381:1;66364:6;:13;:18;66360:235;;66410:40;;;;;;;;;;;;;;66360:235;66553:6;66547:13;66538:6;66534:2;66530:15;66523:38;66021:585;66259:45;;;66249:55;;;:6;:55;;;;66242:62;;;65841:772;;;;;;:::o;16342:173::-;16443:4;16482:25;16467:40;;;:11;:40;;;;16460:47;;16342:173;;;:::o;67261:159::-;;;;;:::o;68079:158::-;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:246::-;3248:1;3258:113;3272:6;3269:1;3266:13;3258:113;;;3357:1;3352:3;3348:11;3342:18;3338:1;3333:3;3329:11;3322:39;3294:2;3291:1;3287:10;3282:15;;3258:113;;;3405:1;3396:6;3391:3;3387:16;3380:27;3229:184;3167:246;;;:::o;3419:102::-;3460:6;3511:2;3507:7;3502:2;3495:5;3491:14;3487:28;3477:38;;3419:102;;;:::o;3527:377::-;3615:3;3643:39;3676:5;3643:39;:::i;:::-;3698:71;3762:6;3757:3;3698:71;:::i;:::-;3691:78;;3778:65;3836:6;3831:3;3824:4;3817:5;3813:16;3778:65;:::i;:::-;3868:29;3890:6;3868:29;:::i;:::-;3863:3;3859:39;3852:46;;3619:285;3527:377;;;;:::o;3910:313::-;4023:4;4061:2;4050:9;4046:18;4038:26;;4110:9;4104:4;4100:20;4096:1;4085:9;4081:17;4074:47;4138:78;4211:4;4202:6;4138:78;:::i;:::-;4130:86;;3910:313;;;;:::o;4229:77::-;4266:7;4295:5;4284:16;;4229:77;;;:::o;4312:122::-;4385:24;4403:5;4385:24;:::i;:::-;4378:5;4375:35;4365:63;;4424:1;4421;4414:12;4365:63;4312:122;:::o;4440:139::-;4486:5;4524:6;4511:20;4502:29;;4540:33;4567:5;4540:33;:::i;:::-;4440:139;;;;:::o;4585:329::-;4644:6;4693:2;4681:9;4672:7;4668:23;4664:32;4661:119;;;4699:79;;:::i;:::-;4661:119;4819:1;4844:53;4889:7;4880:6;4869:9;4865:22;4844:53;:::i;:::-;4834:63;;4790:117;4585:329;;;;:::o;4920:118::-;5007:24;5025:5;5007:24;:::i;:::-;5002:3;4995:37;4920:118;;:::o;5044:222::-;5137:4;5175:2;5164:9;5160:18;5152:26;;5188:71;5256:1;5245:9;5241:17;5232:6;5188:71;:::i;:::-;5044:222;;;;:::o;5272:474::-;5340:6;5348;5397:2;5385:9;5376:7;5372:23;5368:32;5365:119;;;5403:79;;:::i;:::-;5365:119;5523:1;5548:53;5593:7;5584:6;5573:9;5569:22;5548:53;:::i;:::-;5538:63;;5494:117;5650:2;5676:53;5721:7;5712:6;5701:9;5697:22;5676:53;:::i;:::-;5666:63;;5621:118;5272:474;;;;;:::o;5752:118::-;5839:24;5857:5;5839:24;:::i;:::-;5834:3;5827:37;5752:118;;:::o;5876:222::-;5969:4;6007:2;5996:9;5992:18;5984:26;;6020:71;6088:1;6077:9;6073:17;6064:6;6020:71;:::i;:::-;5876:222;;;;:::o;6104:619::-;6181:6;6189;6197;6246:2;6234:9;6225:7;6221:23;6217:32;6214:119;;;6252:79;;:::i;:::-;6214:119;6372:1;6397:53;6442:7;6433:6;6422:9;6418:22;6397:53;:::i;:::-;6387:63;;6343:117;6499:2;6525:53;6570:7;6561:6;6550:9;6546:22;6525:53;:::i;:::-;6515:63;;6470:118;6627:2;6653:53;6698:7;6689:6;6678:9;6674:22;6653:53;:::i;:::-;6643:63;;6598:118;6104:619;;;;;:::o;6729:474::-;6797:6;6805;6854:2;6842:9;6833:7;6829:23;6825:32;6822:119;;;6860:79;;:::i;:::-;6822:119;6980:1;7005:53;7050:7;7041:6;7030:9;7026:22;7005:53;:::i;:::-;6995:63;;6951:117;7107:2;7133:53;7178:7;7169:6;7158:9;7154:22;7133:53;:::i;:::-;7123:63;;7078:118;6729:474;;;;;:::o;7209:332::-;7330:4;7368:2;7357:9;7353:18;7345:26;;7381:71;7449:1;7438:9;7434:17;7425:6;7381:71;:::i;:::-;7462:72;7530:2;7519:9;7515:18;7506:6;7462:72;:::i;:::-;7209:332;;;;;:::o;7547:474::-;7615:6;7623;7672:2;7660:9;7651:7;7647:23;7643:32;7640:119;;;7678:79;;:::i;:::-;7640:119;7798:1;7823:53;7868:7;7859:6;7848:9;7844:22;7823:53;:::i;:::-;7813:63;;7769:117;7925:2;7951:53;7996:7;7987:6;7976:9;7972:22;7951:53;:::i;:::-;7941:63;;7896:118;7547:474;;;;;:::o;8027:60::-;8055:3;8076:5;8069:12;;8027:60;;;:::o;8093:142::-;8143:9;8176:53;8194:34;8203:24;8221:5;8203:24;:::i;:::-;8194:34;:::i;:::-;8176:53;:::i;:::-;8163:66;;8093:142;;;:::o;8241:126::-;8291:9;8324:37;8355:5;8324:37;:::i;:::-;8311:50;;8241:126;;;:::o;8373:157::-;8454:9;8487:37;8518:5;8487:37;:::i;:::-;8474:50;;8373:157;;;:::o;8536:193::-;8654:68;8716:5;8654:68;:::i;:::-;8649:3;8642:81;8536:193;;:::o;8735:284::-;8859:4;8897:2;8886:9;8882:18;8874:26;;8910:102;9009:1;8998:9;8994:17;8985:6;8910:102;:::i;:::-;8735:284;;;;:::o;9025:329::-;9084:6;9133:2;9121:9;9112:7;9108:23;9104:32;9101:119;;;9139:79;;:::i;:::-;9101:119;9259:1;9284:53;9329:7;9320:6;9309:9;9305:22;9284:53;:::i;:::-;9274:63;;9230:117;9025:329;;;;:::o;9360:108::-;9437:24;9455:5;9437:24;:::i;:::-;9432:3;9425:37;9360:108;;:::o;9474:99::-;9545:21;9560:5;9545:21;:::i;:::-;9540:3;9533:34;9474:99;;:::o;9643:1626::-;9798:6;9793:3;9789:16;9893:4;9886:5;9882:16;9876:23;9912:63;9969:4;9964:3;9960:14;9946:12;9912:63;:::i;:::-;9815:170;10077:4;10070:5;10066:16;10060:23;10096:63;10153:4;10148:3;10144:14;10130:12;10096:63;:::i;:::-;9995:174;10257:4;10250:5;10246:16;10240:23;10276:63;10333:4;10328:3;10324:14;10310:12;10276:63;:::i;:::-;10179:170;10439:4;10432:5;10428:16;10422:23;10458:57;10509:4;10504:3;10500:14;10486:12;10458:57;:::i;:::-;10359:166;10614:4;10607:5;10603:16;10597:23;10633:63;10690:4;10685:3;10681:14;10667:12;10633:63;:::i;:::-;10535:171;10802:4;10795:5;10791:16;10785:23;10821:63;10878:4;10873:3;10869:14;10855:12;10821:63;:::i;:::-;10716:178;10982:4;10975:5;10971:16;10965:23;11001:63;11058:4;11053:3;11049:14;11035:12;11001:63;:::i;:::-;10904:170;11170:4;11163:5;11159:16;11153:23;11189:63;11246:4;11241:3;11237:14;11223:12;11189:63;:::i;:::-;11084:178;9767:1502;9643:1626;;:::o;11275:339::-;11426:4;11464:3;11453:9;11449:19;11441:27;;11478:129;11604:1;11593:9;11589:17;11580:6;11478:129;:::i;:::-;11275:339;;;;:::o;11620:117::-;11729:1;11726;11719:12;11743:117;11852:1;11849;11842:12;11866:180;11914:77;11911:1;11904:88;12011:4;12008:1;12001:15;12035:4;12032:1;12025:15;12052:281;12135:27;12157:4;12135:27;:::i;:::-;12127:6;12123:40;12265:6;12253:10;12250:22;12229:18;12217:10;12214:34;12211:62;12208:88;;;12276:18;;:::i;:::-;12208:88;12316:10;12312:2;12305:22;12095:238;12052:281;;:::o;12339:129::-;12373:6;12400:20;;:::i;:::-;12390:30;;12429:33;12457:4;12449:6;12429:33;:::i;:::-;12339:129;;;:::o;12474:308::-;12536:4;12626:18;12618:6;12615:30;12612:56;;;12648:18;;:::i;:::-;12612:56;12686:29;12708:6;12686:29;:::i;:::-;12678:37;;12770:4;12764;12760:15;12752:23;;12474:308;;;:::o;12788:146::-;12885:6;12880:3;12875;12862:30;12926:1;12917:6;12912:3;12908:16;12901:27;12788:146;;;:::o;12940:425::-;13018:5;13043:66;13059:49;13101:6;13059:49;:::i;:::-;13043:66;:::i;:::-;13034:75;;13132:6;13125:5;13118:21;13170:4;13163:5;13159:16;13208:3;13199:6;13194:3;13190:16;13187:25;13184:112;;;13215:79;;:::i;:::-;13184:112;13305:54;13352:6;13347:3;13342;13305:54;:::i;:::-;13024:341;12940:425;;;;;:::o;13385:340::-;13441:5;13490:3;13483:4;13475:6;13471:17;13467:27;13457:122;;13498:79;;:::i;:::-;13457:122;13615:6;13602:20;13640:79;13715:3;13707:6;13700:4;13692:6;13688:17;13640:79;:::i;:::-;13631:88;;13447:278;13385:340;;;;:::o;13731:509::-;13800:6;13849:2;13837:9;13828:7;13824:23;13820:32;13817:119;;;13855:79;;:::i;:::-;13817:119;14003:1;13992:9;13988:17;13975:31;14033:18;14025:6;14022:30;14019:117;;;14055:79;;:::i;:::-;14019:117;14160:63;14215:7;14206:6;14195:9;14191:22;14160:63;:::i;:::-;14150:73;;13946:287;13731:509;;;;:::o;14246:116::-;14316:21;14331:5;14316:21;:::i;:::-;14309:5;14306:32;14296:60;;14352:1;14349;14342:12;14296:60;14246:116;:::o;14368:133::-;14411:5;14449:6;14436:20;14427:29;;14465:30;14489:5;14465:30;:::i;:::-;14368:133;;;;:::o;14507:468::-;14572:6;14580;14629:2;14617:9;14608:7;14604:23;14600:32;14597:119;;;14635:79;;:::i;:::-;14597:119;14755:1;14780:53;14825:7;14816:6;14805:9;14801:22;14780:53;:::i;:::-;14770:63;;14726:117;14882:2;14908:50;14950:7;14941:6;14930:9;14926:22;14908:50;:::i;:::-;14898:60;;14853:115;14507:468;;;;;:::o;14981:307::-;15042:4;15132:18;15124:6;15121:30;15118:56;;;15154:18;;:::i;:::-;15118:56;15192:29;15214:6;15192:29;:::i;:::-;15184:37;;15276:4;15270;15266:15;15258:23;;14981:307;;;:::o;15294:423::-;15371:5;15396:65;15412:48;15453:6;15412:48;:::i;:::-;15396:65;:::i;:::-;15387:74;;15484:6;15477:5;15470:21;15522:4;15515:5;15511:16;15560:3;15551:6;15546:3;15542:16;15539:25;15536:112;;;15567:79;;:::i;:::-;15536:112;15657:54;15704:6;15699:3;15694;15657:54;:::i;:::-;15377:340;15294:423;;;;;:::o;15736:338::-;15791:5;15840:3;15833:4;15825:6;15821:17;15817:27;15807:122;;15848:79;;:::i;:::-;15807:122;15965:6;15952:20;15990:78;16064:3;16056:6;16049:4;16041:6;16037:17;15990:78;:::i;:::-;15981:87;;15797:277;15736:338;;;;:::o;16080:943::-;16175:6;16183;16191;16199;16248:3;16236:9;16227:7;16223:23;16219:33;16216:120;;;16255:79;;:::i;:::-;16216:120;16375:1;16400:53;16445:7;16436:6;16425:9;16421:22;16400:53;:::i;:::-;16390:63;;16346:117;16502:2;16528:53;16573:7;16564:6;16553:9;16549:22;16528:53;:::i;:::-;16518:63;;16473:118;16630:2;16656:53;16701:7;16692:6;16681:9;16677:22;16656:53;:::i;:::-;16646:63;;16601:118;16786:2;16775:9;16771:18;16758:32;16817:18;16809:6;16806:30;16803:117;;;16839:79;;:::i;:::-;16803:117;16944:62;16998:7;16989:6;16978:9;16974:22;16944:62;:::i;:::-;16934:72;;16729:287;16080:943;;;;;;;:::o;17029:474::-;17097:6;17105;17154:2;17142:9;17133:7;17129:23;17125:32;17122:119;;;17160:79;;:::i;:::-;17122:119;17280:1;17305:53;17350:7;17341:6;17330:9;17326:22;17305:53;:::i;:::-;17295:63;;17251:117;17407:2;17433:53;17478:7;17469:6;17458:9;17454:22;17433:53;:::i;:::-;17423:63;;17378:118;17029:474;;;;;:::o;17509:182::-;17649:34;17645:1;17637:6;17633:14;17626:58;17509:182;:::o;17697:366::-;17839:3;17860:67;17924:2;17919:3;17860:67;:::i;:::-;17853:74;;17936:93;18025:3;17936:93;:::i;:::-;18054:2;18049:3;18045:12;18038:19;;17697:366;;;:::o;18069:419::-;18235:4;18273:2;18262:9;18258:18;18250:26;;18322:9;18316:4;18312:20;18308:1;18297:9;18293:17;18286:47;18350:131;18476:4;18350:131;:::i;:::-;18342:139;;18069:419;;;:::o;18494:180::-;18542:77;18539:1;18532:88;18639:4;18636:1;18629:15;18663:4;18660:1;18653:15;18680:320;18724:6;18761:1;18755:4;18751:12;18741:22;;18808:1;18802:4;18798:12;18829:18;18819:81;;18885:4;18877:6;18873:17;18863:27;;18819:81;18947:2;18939:6;18936:14;18916:18;18913:38;18910:84;;18966:18;;:::i;:::-;18910:84;18731:269;18680:320;;;:::o;19006:180::-;19054:77;19051:1;19044:88;19151:4;19148:1;19141:15;19175:4;19172:1;19165:15;19192:410;19232:7;19255:20;19273:1;19255:20;:::i;:::-;19250:25;;19289:20;19307:1;19289:20;:::i;:::-;19284:25;;19344:1;19341;19337:9;19366:30;19384:11;19366:30;:::i;:::-;19355:41;;19545:1;19536:7;19532:15;19529:1;19526:22;19506:1;19499:9;19479:83;19456:139;;19575:18;;:::i;:::-;19456:139;19240:362;19192:410;;;;:::o;19608:180::-;19656:77;19653:1;19646:88;19753:4;19750:1;19743:15;19777:4;19774:1;19767:15;19794:185;19834:1;19851:20;19869:1;19851:20;:::i;:::-;19846:25;;19885:20;19903:1;19885:20;:::i;:::-;19880:25;;19924:1;19914:35;;19929:18;;:::i;:::-;19914:35;19971:1;19968;19964:9;19959:14;;19794:185;;;;:::o;19985:194::-;20025:4;20045:20;20063:1;20045:20;:::i;:::-;20040:25;;20079:20;20097:1;20079:20;:::i;:::-;20074:25;;20123:1;20120;20116:9;20108:17;;20147:1;20141:4;20138:11;20135:37;;;20152:18;;:::i;:::-;20135:37;19985:194;;;;:::o;20185:141::-;20234:4;20257:3;20249:11;;20280:3;20277:1;20270:14;20314:4;20311:1;20301:18;20293:26;;20185:141;;;:::o;20332:93::-;20369:6;20416:2;20411;20404:5;20400:14;20396:23;20386:33;;20332:93;;;:::o;20431:107::-;20475:8;20525:5;20519:4;20515:16;20494:37;;20431:107;;;;:::o;20544:393::-;20613:6;20663:1;20651:10;20647:18;20686:97;20716:66;20705:9;20686:97;:::i;:::-;20804:39;20834:8;20823:9;20804:39;:::i;:::-;20792:51;;20876:4;20872:9;20865:5;20861:21;20852:30;;20925:4;20915:8;20911:19;20904:5;20901:30;20891:40;;20620:317;;20544:393;;;;;:::o;20943:142::-;20993:9;21026:53;21044:34;21053:24;21071:5;21053:24;:::i;:::-;21044:34;:::i;:::-;21026:53;:::i;:::-;21013:66;;20943:142;;;:::o;21091:75::-;21134:3;21155:5;21148:12;;21091:75;;;:::o;21172:269::-;21282:39;21313:7;21282:39;:::i;:::-;21343:91;21392:41;21416:16;21392:41;:::i;:::-;21384:6;21377:4;21371:11;21343:91;:::i;:::-;21337:4;21330:105;21248:193;21172:269;;;:::o;21447:73::-;21492:3;21447:73;:::o;21526:189::-;21603:32;;:::i;:::-;21644:65;21702:6;21694;21688:4;21644:65;:::i;:::-;21579:136;21526:189;;:::o;21721:186::-;21781:120;21798:3;21791:5;21788:14;21781:120;;;21852:39;21889:1;21882:5;21852:39;:::i;:::-;21825:1;21818:5;21814:13;21805:22;;21781:120;;;21721:186;;:::o;21913:543::-;22014:2;22009:3;22006:11;22003:446;;;22048:38;22080:5;22048:38;:::i;:::-;22132:29;22150:10;22132:29;:::i;:::-;22122:8;22118:44;22315:2;22303:10;22300:18;22297:49;;;22336:8;22321:23;;22297:49;22359:80;22415:22;22433:3;22415:22;:::i;:::-;22405:8;22401:37;22388:11;22359:80;:::i;:::-;22018:431;;22003:446;21913:543;;;:::o;22462:117::-;22516:8;22566:5;22560:4;22556:16;22535:37;;22462:117;;;;:::o;22585:169::-;22629:6;22662:51;22710:1;22706:6;22698:5;22695:1;22691:13;22662:51;:::i;:::-;22658:56;22743:4;22737;22733:15;22723:25;;22636:118;22585:169;;;;:::o;22759:295::-;22835:4;22981:29;23006:3;23000:4;22981:29;:::i;:::-;22973:37;;23043:3;23040:1;23036:11;23030:4;23027:21;23019:29;;22759:295;;;;:::o;23059:1395::-;23176:37;23209:3;23176:37;:::i;:::-;23278:18;23270:6;23267:30;23264:56;;;23300:18;;:::i;:::-;23264:56;23344:38;23376:4;23370:11;23344:38;:::i;:::-;23429:67;23489:6;23481;23475:4;23429:67;:::i;:::-;23523:1;23547:4;23534:17;;23579:2;23571:6;23568:14;23596:1;23591:618;;;;24253:1;24270:6;24267:77;;;24319:9;24314:3;24310:19;24304:26;24295:35;;24267:77;24370:67;24430:6;24423:5;24370:67;:::i;:::-;24364:4;24357:81;24226:222;23561:887;;23591:618;23643:4;23639:9;23631:6;23627:22;23677:37;23709:4;23677:37;:::i;:::-;23736:1;23750:208;23764:7;23761:1;23758:14;23750:208;;;23843:9;23838:3;23834:19;23828:26;23820:6;23813:42;23894:1;23886:6;23882:14;23872:24;;23941:2;23930:9;23926:18;23913:31;;23787:4;23784:1;23780:12;23775:17;;23750:208;;;23986:6;23977:7;23974:19;23971:179;;;24044:9;24039:3;24035:19;24029:26;24087:48;24129:4;24121:6;24117:17;24106:9;24087:48;:::i;:::-;24079:6;24072:64;23994:156;23971:179;24196:1;24192;24184:6;24180:14;24176:22;24170:4;24163:36;23598:611;;;23561:887;;23151:1303;;;23059:1395;;:::o;24460:191::-;24500:3;24519:20;24537:1;24519:20;:::i;:::-;24514:25;;24553:20;24571:1;24553:20;:::i;:::-;24548:25;;24596:1;24593;24589:9;24582:16;;24617:3;24614:1;24611:10;24608:36;;;24624:18;;:::i;:::-;24608:36;24460:191;;;;:::o;24657:177::-;24797:29;24793:1;24785:6;24781:14;24774:53;24657:177;:::o;24840:366::-;24982:3;25003:67;25067:2;25062:3;25003:67;:::i;:::-;24996:74;;25079:93;25168:3;25079:93;:::i;:::-;25197:2;25192:3;25188:12;25181:19;;24840:366;;;:::o;25212:419::-;25378:4;25416:2;25405:9;25401:18;25393:26;;25465:9;25459:4;25455:20;25451:1;25440:9;25436:17;25429:47;25493:131;25619:4;25493:131;:::i;:::-;25485:139;;25212:419;;;:::o;25637:180::-;25685:77;25682:1;25675:88;25782:4;25779:1;25772:15;25806:4;25803:1;25796:15;25823:174;25963:26;25959:1;25951:6;25947:14;25940:50;25823:174;:::o;26003:366::-;26145:3;26166:67;26230:2;26225:3;26166:67;:::i;:::-;26159:74;;26242:93;26331:3;26242:93;:::i;:::-;26360:2;26355:3;26351:12;26344:19;;26003:366;;;:::o;26375:419::-;26541:4;26579:2;26568:9;26564:18;26556:26;;26628:9;26622:4;26618:20;26614:1;26603:9;26599:17;26592:47;26656:131;26782:4;26656:131;:::i;:::-;26648:139;;26375:419;;;:::o;26800:172::-;26940:24;26936:1;26928:6;26924:14;26917:48;26800:172;:::o;26978:366::-;27120:3;27141:67;27205:2;27200:3;27141:67;:::i;:::-;27134:74;;27217:93;27306:3;27217:93;:::i;:::-;27335:2;27330:3;27326:12;27319:19;;26978:366;;;:::o;27350:419::-;27516:4;27554:2;27543:9;27539:18;27531:26;;27603:9;27597:4;27593:20;27589:1;27578:9;27574:17;27567:47;27631:131;27757:4;27631:131;:::i;:::-;27623:139;;27350:419;;;:::o;27775:167::-;27915:19;27911:1;27903:6;27899:14;27892:43;27775:167;:::o;27948:366::-;28090:3;28111:67;28175:2;28170:3;28111:67;:::i;:::-;28104:74;;28187:93;28276:3;28187:93;:::i;:::-;28305:2;28300:3;28296:12;28289:19;;27948:366;;;:::o;28320:419::-;28486:4;28524:2;28513:9;28509:18;28501:26;;28573:9;28567:4;28563:20;28559:1;28548:9;28544:17;28537:47;28601:131;28727:4;28601:131;:::i;:::-;28593:139;;28320:419;;;:::o;28745:166::-;28885:18;28881:1;28873:6;28869:14;28862:42;28745:166;:::o;28917:366::-;29059:3;29080:67;29144:2;29139:3;29080:67;:::i;:::-;29073:74;;29156:93;29245:3;29156:93;:::i;:::-;29274:2;29269:3;29265:12;29258:19;;28917:366;;;:::o;29289:419::-;29455:4;29493:2;29482:9;29478:18;29470:26;;29542:9;29536:4;29532:20;29528:1;29517:9;29513:17;29506:47;29570:131;29696:4;29570:131;:::i;:::-;29562:139;;29289:419;;;:::o;29714:171::-;29854:23;29850:1;29842:6;29838:14;29831:47;29714:171;:::o;29891:366::-;30033:3;30054:67;30118:2;30113:3;30054:67;:::i;:::-;30047:74;;30130:93;30219:3;30130:93;:::i;:::-;30248:2;30243:3;30239:12;30232:19;;29891:366;;;:::o;30263:419::-;30429:4;30467:2;30456:9;30452:18;30444:26;;30516:9;30510:4;30506:20;30502:1;30491:9;30487:17;30480:47;30544:131;30670:4;30544:131;:::i;:::-;30536:139;;30263:419;;;:::o;30688:148::-;30790:11;30827:3;30812:18;;30688:148;;;;:::o;30866:874::-;30969:3;31006:5;31000:12;31035:36;31061:9;31035:36;:::i;:::-;31087:89;31169:6;31164:3;31087:89;:::i;:::-;31080:96;;31207:1;31196:9;31192:17;31223:1;31218:166;;;;31398:1;31393:341;;;;31185:549;;31218:166;31302:4;31298:9;31287;31283:25;31278:3;31271:38;31364:6;31357:14;31350:22;31342:6;31338:35;31333:3;31329:45;31322:52;;31218:166;;31393:341;31460:38;31492:5;31460:38;:::i;:::-;31520:1;31534:154;31548:6;31545:1;31542:13;31534:154;;;31622:7;31616:14;31612:1;31607:3;31603:11;31596:35;31672:1;31663:7;31659:15;31648:26;;31570:4;31567:1;31563:12;31558:17;;31534:154;;;31717:6;31712:3;31708:16;31701:23;;31400:334;;31185:549;;30973:767;;30866:874;;;;:::o;31746:390::-;31852:3;31880:39;31913:5;31880:39;:::i;:::-;31935:89;32017:6;32012:3;31935:89;:::i;:::-;31928:96;;32033:65;32091:6;32086:3;32079:4;32072:5;32068:16;32033:65;:::i;:::-;32123:6;32118:3;32114:16;32107:23;;31856:280;31746:390;;;;:::o;32142:429::-;32319:3;32341:92;32429:3;32420:6;32341:92;:::i;:::-;32334:99;;32450:95;32541:3;32532:6;32450:95;:::i;:::-;32443:102;;32562:3;32555:10;;32142:429;;;;;:::o;32577:155::-;32717:7;32713:1;32705:6;32701:14;32694:31;32577:155;:::o;32738:400::-;32898:3;32919:84;33001:1;32996:3;32919:84;:::i;:::-;32912:91;;33012:93;33101:3;33012:93;:::i;:::-;33130:1;33125:3;33121:11;33114:18;;32738:400;;;:::o;33144:695::-;33422:3;33444:92;33532:3;33523:6;33444:92;:::i;:::-;33437:99;;33553:95;33644:3;33635:6;33553:95;:::i;:::-;33546:102;;33665:148;33809:3;33665:148;:::i;:::-;33658:155;;33830:3;33823:10;;33144:695;;;;;:::o;33845:225::-;33985:34;33981:1;33973:6;33969:14;33962:58;34054:8;34049:2;34041:6;34037:15;34030:33;33845:225;:::o;34076:366::-;34218:3;34239:67;34303:2;34298:3;34239:67;:::i;:::-;34232:74;;34315:93;34404:3;34315:93;:::i;:::-;34433:2;34428:3;34424:12;34417:19;;34076:366;;;:::o;34448:419::-;34614:4;34652:2;34641:9;34637:18;34629:26;;34701:9;34695:4;34691:20;34687:1;34676:9;34672:17;34665:47;34729:131;34855:4;34729:131;:::i;:::-;34721:139;;34448:419;;;:::o;34873:229::-;35013:34;35009:1;35001:6;34997:14;34990:58;35082:12;35077:2;35069:6;35065:15;35058:37;34873:229;:::o;35108:366::-;35250:3;35271:67;35335:2;35330:3;35271:67;:::i;:::-;35264:74;;35347:93;35436:3;35347:93;:::i;:::-;35465:2;35460:3;35456:12;35449:19;;35108:366;;;:::o;35480:419::-;35646:4;35684:2;35673:9;35669:18;35661:26;;35733:9;35727:4;35723:20;35719:1;35708:9;35704:17;35697:47;35761:131;35887:4;35761:131;:::i;:::-;35753:139;;35480:419;;;:::o;35905:175::-;36045:27;36041:1;36033:6;36029:14;36022:51;35905:175;:::o;36086:366::-;36228:3;36249:67;36313:2;36308:3;36249:67;:::i;:::-;36242:74;;36325:93;36414:3;36325:93;:::i;:::-;36443:2;36438:3;36434:12;36427:19;;36086:366;;;:::o;36458:419::-;36624:4;36662:2;36651:9;36647:18;36639:26;;36711:9;36705:4;36701:20;36697:1;36686:9;36682:17;36675:47;36739:131;36865:4;36739:131;:::i;:::-;36731:139;;36458:419;;;:::o;36883:332::-;37004:4;37042:2;37031:9;37027:18;37019:26;;37055:71;37123:1;37112:9;37108:17;37099:6;37055:71;:::i;:::-;37136:72;37204:2;37193:9;37189:18;37180:6;37136:72;:::i;:::-;36883:332;;;;;:::o;37221:137::-;37275:5;37306:6;37300:13;37291:22;;37322:30;37346:5;37322:30;:::i;:::-;37221:137;;;;:::o;37364:345::-;37431:6;37480:2;37468:9;37459:7;37455:23;37451:32;37448:119;;;37486:79;;:::i;:::-;37448:119;37606:1;37631:61;37684:7;37675:6;37664:9;37660:22;37631:61;:::i;:::-;37621:71;;37577:125;37364:345;;;;:::o;37715:233::-;37754:3;37777:24;37795:5;37777:24;:::i;:::-;37768:33;;37823:66;37816:5;37813:77;37810:103;;37893:18;;:::i;:::-;37810:103;37940:1;37933:5;37929:13;37922:20;;37715:233;;;:::o;37954:176::-;37986:1;38003:20;38021:1;38003:20;:::i;:::-;37998:25;;38037:20;38055:1;38037:20;:::i;:::-;38032:25;;38076:1;38066:35;;38081:18;;:::i;:::-;38066:35;38122:1;38119;38115:9;38110:14;;37954:176;;;;:::o;38136:180::-;38184:77;38181:1;38174:88;38281:4;38278:1;38271:15;38305:4;38302:1;38295:15;38322:98;38373:6;38407:5;38401:12;38391:22;;38322:98;;;:::o;38426:168::-;38509:11;38543:6;38538:3;38531:19;38583:4;38578:3;38574:14;38559:29;;38426:168;;;;:::o;38600:373::-;38686:3;38714:38;38746:5;38714:38;:::i;:::-;38768:70;38831:6;38826:3;38768:70;:::i;:::-;38761:77;;38847:65;38905:6;38900:3;38893:4;38886:5;38882:16;38847:65;:::i;:::-;38937:29;38959:6;38937:29;:::i;:::-;38932:3;38928:39;38921:46;;38690:283;38600:373;;;;:::o;38979:640::-;39174:4;39212:3;39201:9;39197:19;39189:27;;39226:71;39294:1;39283:9;39279:17;39270:6;39226:71;:::i;:::-;39307:72;39375:2;39364:9;39360:18;39351:6;39307:72;:::i;:::-;39389;39457:2;39446:9;39442:18;39433:6;39389:72;:::i;:::-;39508:9;39502:4;39498:20;39493:2;39482:9;39478:18;39471:48;39536:76;39607:4;39598:6;39536:76;:::i;:::-;39528:84;;38979:640;;;;;;;:::o;39625:141::-;39681:5;39712:6;39706:13;39697:22;;39728:32;39754:5;39728:32;:::i;:::-;39625:141;;;;:::o;39772:349::-;39841:6;39890:2;39878:9;39869:7;39865:23;39861:32;39858:119;;;39896:79;;:::i;:::-;39858:119;40016:1;40041:63;40096:7;40087:6;40076:9;40072:22;40041:63;:::i;:::-;40031:73;;39987:127;39772:349;;;;:::o

Swarm Source

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