ETH Price: $3,497.18 (+2.66%)
Gas: 2 Gwei

Token

Baby Yoda (YODA)
 

Overview

Max Total Supply

1,019,976,643,456.912260829573996665 YODA

Holders

321

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,283,283.809145882484693136 YODA

Value
$0.00
0x6625d7a3262df2a4a3dadd58ec6ebad177cbd2be
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:
Yoda

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-06-12
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol


// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     *
     * CAUTION: See Security Considerations above.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: Metageek.Project/Loky/Yoda/Interfaces/IYoda.sol


pragma solidity ^0.8.20;

abstract contract IYoda 
{
    /**
     * @notice Event emitted when tokens are rebased
     */
    event Rebase(uint256 epoch, uint256 prevEggssScalingFactor, uint256 newEggssScalingFactor);
    /* - Extra Events - */
    /**
     * @notice Tokens minted event
     */
    event Mint(address to, uint256 amount);
    /**
     * @notice Tokens burned event
     */
    event Burn(address from, uint256 amount);
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```solidity
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

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

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

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


// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens 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 amount) 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, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```solidity
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```solidity
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}
 * to enforce additional security measures for this role.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(account),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol)

pragma solidity ^0.8.0;




/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {_grantRole} to track enumerable memberships
     */
    function _grantRole(bytes32 role, address account) internal virtual override {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {_revokeRole} to track enumerable memberships
     */
    function _revokeRole(bytes32 role, address account) internal virtual override {
        super._revokeRole(role, account);
        _roleMembers[role].remove(account);
    }
}

// File: Metageek.Project/Loky/Yoda/ERC20PresetMinterRebaser.sol


pragma solidity ^0.8.20;




contract ERC20PresetMinterRebaser is
    Context,
    AccessControlEnumerable,
    ERC20Burnable
{
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant REBASER_ROLE = keccak256("REBASER_ROLE");

    constructor(string memory name, string memory symbol) ERC20(name, symbol) {
        _grantRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _grantRole(MINTER_ROLE, _msgSender());
        _grantRole(REBASER_ROLE, _msgSender());
    }
}
// File: Metageek.Project/Loky/Yoda/Yoda.sol


pragma solidity ^0.8.20;







contract Yoda is ERC20PresetMinterRebaser, Ownable, IYoda 
{
    using SafeMath for uint256;
    /**
     * @notice Internal decimals used to handle scaling factor
     */
    uint256 public constant internalDecimals = 10**24;
    /**
     * @notice Used for percentage maths
     */
    uint256 public constant BASE = 10**18;
    /**
     * @notice Scaling factor that adjusts everyone's balances
     */
    uint256 public yodasScalingFactor;

    mapping(address => uint256) internal _yodaBalances;

    mapping(address => mapping(address => uint256)) internal _allowedFragments;

    uint256 public initSupply;

    // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    bytes32 public constant PERMIT_TYPEHASH =
        0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
    bytes32 public DOMAIN_SEPARATOR;

    mapping(address => uint256) public nonces;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH =
        keccak256(
            "EIP712Domain(string name,uint256 chainId,address verifyingContract)"
        );

    uint256 private INIT_SUPPLY = 10000000000 * 10**18;
    uint256 private _totalSupply;
    /**
     * @notice valid Recipient Address
     */ 
    modifier validRecipient(address to) {
        require(to != address(0x0));
        require(to != address(this));
        _;
    }
    // @notice init contract
    constructor() ERC20PresetMinterRebaser("Baby Yoda", "YODA")
    {
        yodasScalingFactor = BASE;
        initSupply = _fragmentToYoda(INIT_SUPPLY);
        _totalSupply = INIT_SUPPLY;
        _yodaBalances[owner()] = initSupply;

        emit Transfer(address(0), msg.sender, INIT_SUPPLY);
    }
   
    /**
     * @return The total number of fragments.
     */
    function totalSupply() public view override returns (uint256) 
    {
        return _totalSupply;
    }

    /**
     * @notice Computes the current max scaling factor
     */
    function maxScalingFactor() external view returns (uint256) 
    {
        return _maxScalingFactor();
    }

    function _maxScalingFactor() internal view returns (uint256) 
    {
        // scaling factor can only go up to 2**256-1 = initSupply * yodasScalingFactor
        // this is used to check if yodasScalingFactor will be too high to compute balances when rebasing.
        return uint256(int256(-1)) / initSupply;
    }

    /**
     * @notice Mints new tokens, increasing totalSupply, initSupply, and a users balance.
     */
    function mint(address to, uint256 amount) external returns (bool) 
    {
        require(hasRole(MINTER_ROLE, _msgSender()), "Must have minter role");

        _mint(to, amount);
        return true;
    }

    function _mint(address to, uint256 amount) internal override 
    {
        // increase totalSupply
        _totalSupply = _totalSupply.add(amount);
        // get underlying value
        uint256 yodaValue = _fragmentToYoda(amount);
        // increase initSupply
        initSupply = initSupply.add(yodaValue);
        // make sure the mint didnt push maxScalingFactor too low
        require(yodasScalingFactor <= _maxScalingFactor(),"max scaling factor too low");
        // add balance
        _yodaBalances[to] = _yodaBalances[to].add(yodaValue);

        emit Mint(to, amount);
        emit Transfer(address(0), to, amount);
    }

    /**
     * @notice Burns tokens from msg.sender, decreases totalSupply, initSupply, and a users balance.
     */

    function burn(uint256 amount) public override 
    {
        _burn(amount);
    }

    function _burn(uint256 amount) internal 
    {
        // decrease totalSupply
        _totalSupply = _totalSupply.sub(amount);

        // get underlying value
        uint256 yodaValue = _fragmentToYoda(amount);

        // decrease initSupply
        initSupply = initSupply.sub(yodaValue);

        // decrease balance
        _yodaBalances[msg.sender] = _yodaBalances[msg.sender].sub(yodaValue);
        emit Burn(msg.sender, amount);
        emit Transfer(msg.sender, address(0), amount);
    }

    /**
     * @notice Mints new tokens using underlying amount, increasing totalSupply, initSupply, and a users balance.
     */
    function mintUnderlying(address to, uint256 amount) public returns (bool) 
    {
        require(hasRole(MINTER_ROLE, _msgSender()), "Must have minter role");

        _mintUnderlying(to, amount);
        return true;
    }

    function _mintUnderlying(address to, uint256 amount) internal 
    {
        // increase initSupply
        initSupply = initSupply.add(amount);
        // get external value
        uint256 scaledAmount = _yodaToFragment(amount);
        // increase totalSupply
        _totalSupply = _totalSupply.add(scaledAmount);
        // make sure the mint didnt push maxScalingFactor too low
        require(yodasScalingFactor <= _maxScalingFactor(),"max scaling factor too low");
        // add balance
        _yodaBalances[to] = _yodaBalances[to].add(amount);

        emit Mint(to, scaledAmount);
        emit Transfer(address(0), to, scaledAmount);
    }
    /* - ERC20 functionality - */

    /**
     * @dev Transfer tokens to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return True on success, false otherwise.
     */
    function transfer(address to, uint256 value) public override returns (bool)
    {
        bool transferResult = _transferYodas(msg.sender, to, value);
        return transferResult;
    }
    /**
     * @dev Transfer tokens from one address to another.
     * @param from The address you want to send tokens from.
     * @param to The address you want to transfer to.
     * @param value The amount of tokens to be transferred.
     */
    function transferFrom(address from,  address to, uint256 value) public override returns (bool) 
    {
        // decrease allowance
        _allowedFragments[from][msg.sender] = _allowedFragments[from][msg.sender].sub(value);

        bool transferResult = _transferYodas(from, to, value);
        return transferResult;
    }
   /**
     * @dev Transfer tokens from one address to another.
     * @param from The address you want to send tokens from.
     * @param to The address you want to transfer to.
     * @param value The amount of tokens to be transferred.
     */
    function _transferYodas(address from,  address to, uint256 value) internal validRecipient(to) returns (bool) 
    {
        // underlying balance is stored in yodas, so divide by current scaling factor
        // note, this means as scaling factor grows, dust will be untransferrable.
        // minimum transfer value == yodasScalingFactor / 1e24;
        // get amount in underlying
        uint256 yodaValue = _fragmentToYoda(value);
        // sub from balance of sender
        _yodaBalances[from] = _yodaBalances[from].sub(yodaValue);
        // add to balance of receiver
        _yodaBalances[to] = _yodaBalances[to].add(yodaValue);
        emit Transfer(from, to, value);
        return true;
    }
    /**
     * @param who The address to query.
     * @return The balance of the specified address.
     */
    function balanceOf(address who) public view override returns (uint256) 
    {
        return _yodaToFragment(_yodaBalances[who]);
    }
    /** @notice Currently returns the internal storage amount
     * @param who The address to query.
     * @return The underlying balance of the specified address.
     */
    function balanceOfUnderlying(address who) public view returns (uint256)
    {
        return _yodaBalances[who];
    }
    /**
     * @dev Function to check the amount of tokens that an owner has allowed to a spender.
     * @param owner_ The address which owns the funds.
     * @param spender The address which will spend the funds.
     * @return The number of tokens still available for the spender.
     */
    function allowance(address owner_, address spender) public view override returns (uint256)
    {
        return _allowedFragments[owner_][spender];
    }
    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of
     * msg.sender. This method is included for ERC20 compatibility.
     * increaseAllowance and decreaseAllowance should be used instead.
     * Changing an allowance with this method brings the risk that someone may transfer both
     * the old and the new allowance - if they are both greater than zero - if a transfer
     * transaction is mined before the later approve() call is mined.
     *
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value) public override returns (bool)
    {
        _allowedFragments[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }
    /**
     * @dev Increase the amount of tokens that an owner has allowed to a spender.
     * This method should be used instead of approve() to avoid the double approval vulnerability
     * described above.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue)  public override returns (bool)
    {
        _allowedFragments[msg.sender][spender] = _allowedFragments[msg.sender][spender].add(addedValue);
        emit Approval(msg.sender,spender,_allowedFragments[msg.sender][spender]);
        return true;
    }
    /**
     * @dev Decrease the amount of tokens that an owner has allowed to a spender.
     *
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public  override returns (bool)
    {
        uint256 oldValue = _allowedFragments[msg.sender][spender];
        if (subtractedValue >= oldValue) 
        {
            _allowedFragments[msg.sender][spender] = 0;
        } 
        else 
        {
            _allowedFragments[msg.sender][spender] = oldValue.sub(subtractedValue);
        }
        emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
        return true;
    }

    // --- Approve by signature ---
    function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v,  bytes32 r, bytes32 s) public 
    {
        require(block.timestamp <= deadline, "YODA/permit-expired");

        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                DOMAIN_SEPARATOR,
                keccak256(
                    abi.encode(
                        PERMIT_TYPEHASH,
                        owner,
                        spender,
                        value,
                        nonces[owner]++,
                        deadline
                    )
                )
            )
        );

        require(owner != address(0), "YODA/invalid-address-0");
        require(owner == ecrecover(digest, v, r, s), "YODA/invalid-permit");
        _allowedFragments[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    function rebase(uint256 epoch, uint256 indexDelta, bool positive) public returns (uint256) 
    {
        require(hasRole(REBASER_ROLE, _msgSender()), "Must have rebaser role");

        // no change
        if (indexDelta == 0) {
            emit Rebase(epoch, yodasScalingFactor, yodasScalingFactor);
            return _totalSupply;
        }

        // for events
        uint256 prevYodasScalingFactor = yodasScalingFactor;

        if (!positive) 
        {
            // negative rebase, decrease scaling factor
            yodasScalingFactor = yodasScalingFactor.mul(BASE.sub(indexDelta)).div(BASE);
        } 
        else 
        {
            // positive rebase, increase scaling factor
            uint256 newScalingFactor = yodasScalingFactor.mul(BASE.add(indexDelta)).div(BASE);

            if (newScalingFactor < _maxScalingFactor()) 
            {
                yodasScalingFactor = newScalingFactor;
            } 
            else 
            {
                yodasScalingFactor = _maxScalingFactor();
            }
        }

        // update total supply, correctly
        _totalSupply = _yodaToFragment(initSupply);

        emit Rebase(epoch, prevYodasScalingFactor, yodasScalingFactor);
        return _totalSupply;
    }

    function yodaToFragment(uint256 yoda) public view returns (uint256) 
    {
        return _yodaToFragment(yoda);
    }

    function fragmentToYoda(uint256 value) public view returns (uint256) 
    {
        return _fragmentToYoda(value);
    }

    function _yodaToFragment(uint256 yoda) internal view returns (uint256) 
    {
        return yoda.mul(yodasScalingFactor).div(internalDecimals);
    }

    function _fragmentToYoda(uint256 value) internal view returns (uint256) 
    {
        return value.mul(internalDecimals).div(yodasScalingFactor);
    }

    // Rescue tokens
    function rescueTokens(address token, address to, uint256 amount) public onlyOwner returns (bool) 
    {
        // transfer to
        SafeERC20.safeTransfer(IERC20(token), to, amount);
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","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":false,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"prevEggssScalingFactor","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newEggssScalingFactor","type":"uint256"}],"name":"Rebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REBASER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"fragmentToYoda","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"internalDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintUnderlying","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"},{"internalType":"uint256","name":"indexDelta","type":"uint256"},{"internalType":"bool","name":"positive","type":"bool"}],"name":"rebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"yoda","type":"uint256"}],"name":"yodaToFragment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"yodasScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526b204fce5e3e25026110000000600e5534801562000020575f80fd5b506040518060400160405280600981526020017f4261627920596f646100000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f594f44410000000000000000000000000000000000000000000000000000000081525081818160059081620000a0919062000880565b508060069081620000b2919062000880565b505050620000d85f801b620000cc6200026f60201b60201c565b6200027660201b60201c565b620001197f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66200010d6200026f60201b60201c565b6200027660201b60201c565b6200015a7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b756200014e6200026f60201b60201c565b6200027660201b60201c565b50506200017c620001706200026f60201b60201c565b620002b260201b60201c565b670de0b6b3a76400006008819055506200019e600e546200037560201b60201c565b600b81905550600e54600f81905550600b5460095f620001c3620003b260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503373ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600e5460405162000261919062000975565b60405180910390a362000a6b565b5f33905090565b620002888282620003da60201b60201c565b620002ad8160015f8581526020019081526020015f20620004c560201b90919060201c565b505050565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f620003ab6008546200039c69d3c21bcecceda100000085620004fa60201b90919060201c565b6200051160201b90919060201c565b9050919050565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620003ec82826200052860201b60201c565b620004c15760015f808481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620004666200026f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b5f620004f2835f018373ffffffffffffffffffffffffffffffffffffffff165f1b6200058b60201b60201c565b905092915050565b5f8183620005099190620009bd565b905092915050565b5f818362000520919062000a34565b905092915050565b5f805f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f6200059e8383620005fc60201b60201c565b620005f257825f0182908060018154018082558091505060019003905f5260205f20015f9091909190915055825f0180549050836001015f8481526020019081526020015f208190555060019050620005f6565b5f90505b92915050565b5f80836001015f8481526020019081526020015f20541415905092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200069857607f821691505b602082108103620006ae57620006ad62000653565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620007127fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006d5565b6200071e8683620006d5565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000768620007626200075c8462000736565b6200073f565b62000736565b9050919050565b5f819050919050565b620007838362000748565b6200079b62000792826200076f565b848454620006e1565b825550505050565b5f90565b620007b1620007a3565b620007be81848462000778565b505050565b5b81811015620007e557620007d95f82620007a7565b600181019050620007c4565b5050565b601f8211156200083457620007fe81620006b4565b6200080984620006c6565b8101602085101562000819578190505b620008316200082885620006c6565b830182620007c3565b50505b505050565b5f82821c905092915050565b5f620008565f198460080262000839565b1980831691505092915050565b5f62000870838362000845565b9150826002028217905092915050565b6200088b826200061c565b67ffffffffffffffff811115620008a757620008a662000626565b5b620008b3825462000680565b620008c0828285620007e9565b5f60209050601f831160018114620008f6575f8415620008e1578287015190505b620008ed858262000863565b8655506200095c565b601f1984166200090686620006b4565b5f5b828110156200092f5784890151825560018201915060208501945060208101905062000908565b868310156200094f57848901516200094b601f89168262000845565b8355505b6001600288020188555050505b505050505050565b6200096f8162000736565b82525050565b5f6020820190506200098a5f83018462000964565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620009c98262000736565b9150620009d68362000736565b9250828202620009e68162000736565b9150828204841483151762000a0057620009ff62000990565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000a408262000736565b915062000a4d8362000736565b92508262000a605762000a5f62000a07565b5b828204905092915050565b6148f68062000a795f395ff3fe608060405234801561000f575f80fd5b5060043610610272575f3560e01c80637ecebe001161014f578063a98a4921116100c1578063d547741f11610085578063d547741f14610810578063dadc9d221461082c578063dd62ed3e1461084a578063ec342ad01461087a578063edb208e214610898578063f2fde38b146108c857610272565b8063a98a492114610746578063ca15c87314610776578063cea9d26f146107a6578063d505accf146107d6578063d5391393146107f257610272565b806391d148541161011357806391d148541461065c57806395d89b411461068c57806397d63f93146106aa578063a217fddf146106c8578063a457c2d7146106e6578063a9059cbb1461071657610272565b80637ecebe001461059057806383eb70e5146105c05780638da5cb5b146105de5780639010d07c146105fc578063917505f41461062c57610272565b80633644e515116101e857806342966c68116101ac57806342966c68146104d057806364dd48f5146104ec57806370a082311461050a578063715018a61461053a57806379cc6790146105445780637af548c11461056057610272565b80633644e5151461040657806336568abe1461042457806339509351146104405780633af9e6691461047057806340c10f19146104a057610272565b806320606b701161023a57806320606b701461033057806323b872dd1461034e578063248a9ca31461037e5780632f2ff15d146103ae57806330adf81f146103ca578063313ce567146103e857610272565b806301ffc9a71461027657806306fdde03146102a6578063095ea7b3146102c457806311d3e6c4146102f457806318160ddd14610312575b5f80fd5b610290600480360381019061028b9190613501565b6108e4565b60405161029d9190613546565b60405180910390f35b6102ae61095d565b6040516102bb91906135e9565b60405180910390f35b6102de60048036038101906102d99190613696565b6109ed565b6040516102eb9190613546565b60405180910390f35b6102fc610ada565b60405161030991906136e3565b60405180910390f35b61031a610ae8565b60405161032791906136e3565b60405180910390f35b610338610af1565b6040516103459190613714565b60405180910390f35b6103686004803603810190610363919061372d565b610b15565b6040516103759190613546565b60405180910390f35b610398600480360381019061039391906137a7565b610c36565b6040516103a59190613714565b60405180910390f35b6103c860048036038101906103c391906137d2565b610c52565b005b6103d2610c73565b6040516103df9190613714565b60405180910390f35b6103f0610c99565b6040516103fd919061382b565b60405180910390f35b61040e610ca1565b60405161041b9190613714565b60405180910390f35b61043e600480360381019061043991906137d2565b610ca7565b005b61045a60048036038101906104559190613696565b610d2a565b6040516104679190613546565b60405180910390f35b61048a60048036038101906104859190613844565b610f19565b60405161049791906136e3565b60405180910390f35b6104ba60048036038101906104b59190613696565b610f5f565b6040516104c79190613546565b60405180910390f35b6104ea60048036038101906104e5919061386f565b610fe4565b005b6104f4610ff0565b60405161050191906136e3565b60405180910390f35b610524600480360381019061051f9190613844565b610ffe565b60405161053191906136e3565b60405180910390f35b61054261104c565b005b61055e60048036038101906105599190613696565b61105f565b005b61057a600480360381019061057591906138c4565b61107f565b60405161058791906136e3565b60405180910390f35b6105aa60048036038101906105a59190613844565b611273565b6040516105b791906136e3565b60405180910390f35b6105c8611288565b6040516105d59190613714565b60405180910390f35b6105e66112ac565b6040516105f39190613923565b60405180910390f35b6106166004803603810190610611919061393c565b6112d4565b6040516106239190613923565b60405180910390f35b61064660048036038101906106419190613696565b611300565b6040516106539190613546565b60405180910390f35b610676600480360381019061067191906137d2565b611385565b6040516106839190613546565b60405180910390f35b6106946113e8565b6040516106a191906135e9565b60405180910390f35b6106b2611478565b6040516106bf91906136e3565b60405180910390f35b6106d061147e565b6040516106dd9190613714565b60405180910390f35b61070060048036038101906106fb9190613696565b611484565b60405161070d9190613546565b60405180910390f35b610730600480360381019061072b9190613696565b611702565b60405161073d9190613546565b60405180910390f35b610760600480360381019061075b919061386f565b61171b565b60405161076d91906136e3565b60405180910390f35b610790600480360381019061078b91906137a7565b61172c565b60405161079d91906136e3565b60405180910390f35b6107c060048036038101906107bb919061372d565b61174d565b6040516107cd9190613546565b60405180910390f35b6107f060048036038101906107eb91906139a4565b61176c565b005b6107fa611a92565b6040516108079190613714565b60405180910390f35b61082a600480360381019061082591906137d2565b611ab6565b005b610834611ad7565b60405161084191906136e3565b60405180910390f35b610864600480360381019061085f9190613a41565b611add565b60405161087191906136e3565b60405180910390f35b610882611b5f565b60405161088f91906136e3565b60405180910390f35b6108b260048036038101906108ad919061386f565b611b6b565b6040516108bf91906136e3565b60405180910390f35b6108e260048036038101906108dd9190613844565b611b7c565b005b5f7f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610956575061095582611bfe565b5b9050919050565b60606005805461096c90613aac565b80601f016020809104026020016040519081016040528092919081815260200182805461099890613aac565b80156109e35780601f106109ba576101008083540402835291602001916109e3565b820191905f5260205f20905b8154815290600101906020018083116109c657829003601f168201915b5050505050905090565b5f81600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ac891906136e3565b60405180910390a36001905092915050565b5f610ae3611c77565b905090565b5f600f54905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b5f610ba182600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611cab90919063ffffffff16565b600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f610c29858585611cc0565b9050809150509392505050565b5f805f8381526020019081526020015f20600101549050919050565b610c5b82610c36565b610c6481611ed0565b610c6e8383611ee4565b505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c95f1b81565b5f6012905090565b600c5481565b610caf611f16565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390613b4c565b60405180910390fd5b610d268282611f1d565b5050565b5f610db682600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611f4f90919063ffffffff16565b600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054604051610f0791906136e3565b60405180910390a36001905092915050565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f610f917f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610f8c611f16565b611385565b610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc790613bb4565b60405180910390fd5b610fda8383611f64565b6001905092915050565b610fed81612126565b50565b69d3c21bcecceda100000081565b5f61104560095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461229b565b9050919050565b6110546122d4565b61105d5f612352565b565b6110718261106b611f16565b83612415565b61107b82826124a0565b5050565b5f6110b17f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b756110ac611f16565b611385565b6110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e790613c1c565b60405180910390fd5b5f8303611140577fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c08460085460085460405161112e93929190613c3a565b60405180910390a1600f54905061126c565b5f60085490508261119f57611194670de0b6b3a764000061118661117587670de0b6b3a7640000611cab90919063ffffffff16565b60085461266590919063ffffffff16565b61267a90919063ffffffff16565b600881905550611217565b5f6111e9670de0b6b3a76400006111db6111ca88670de0b6b3a7640000611f4f90919063ffffffff16565b60085461266590919063ffffffff16565b61267a90919063ffffffff16565b90506111f3611c77565b8110156112065780600881905550611215565b61120e611c77565b6008819055505b505b611222600b5461229b565b600f819055507fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c0858260085460405161125d93929190613c3a565b60405180910390a1600f549150505b9392505050565b600d602052805f5260405f205f915090505481565b7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7581565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f6112f88260015f8681526020019081526020015f2061268f90919063ffffffff16565b905092915050565b5f6113327f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661132d611f16565b611385565b611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890613bb4565b60405180910390fd5b61137b83836126a6565b6001905092915050565b5f805f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6060600680546113f790613aac565b80601f016020809104026020016040519081016040528092919081815260200182805461142390613aac565b801561146e5780601f106114455761010080835404028352916020019161146e565b820191905f5260205f20905b81548152906001019060200180831161145157829003601f168201915b5050505050905090565b600b5481565b5f801b81565b5f80600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905080831061158a575f600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061161a565b61159d8382611cab90919063ffffffff16565b600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546040516116ef91906136e3565b60405180910390a3600191505092915050565b5f8061170f338585611cc0565b90508091505092915050565b5f61172582612868565b9050919050565b5f61174660015f8481526020019081526020015f206128a1565b9050919050565b5f6117566122d4565b6117618484846128b4565b600190509392505050565b834211156117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690613cb9565b60405180910390fd5b5f600c547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c95f1b898989600d5f8e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81548092919061182690613d04565b919050558a60405160200161184096959493929190613d4b565b60405160208183030381529060405280519060200120604051602001611867929190613e1e565b6040516020818303038152906040528051906020012090505f73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16036118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e490613e9e565b60405180910390fd5b6001818585856040515f815260200160405260405161190f9493929190613ebc565b6020604051602081039080840390855afa15801561192f573d5f803e3d5ffd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16146119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d90613f49565b60405180910390fd5b85600a5f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92588604051611a8091906136e3565b60405180910390a35050505050505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611abf82610c36565b611ac881611ed0565b611ad28383611f1d565b505050565b60085481565b5f600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b670de0b6b3a764000081565b5f611b758261229b565b9050919050565b611b846122d4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990613fd7565b60405180910390fd5b611bfb81612352565b50565b5f7f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c705750611c6f8261293a565b5b9050919050565b5f600b547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611ca69190614022565b905090565b5f8183611cb89190614052565b905092915050565b5f825f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cf9575f80fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d30575f80fd5b5f611d3a84612868565b9050611d8c8160095f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611cab90919063ffffffff16565b60095f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611e1d8160095f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611f4f90919063ffffffff16565b60095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611ebb91906136e3565b60405180910390a36001925050509392505050565b611ee181611edc611f16565b6129a3565b50565b611eee8282612a27565b611f118160015f8581526020019081526020015f20612b0190919063ffffffff16565b505050565b5f33905090565b611f278282612b2e565b611f4a8160015f8581526020019081526020015f20612c0890919063ffffffff16565b505050565b5f8183611f5c9190614085565b905092915050565b611f7981600f54611f4f90919063ffffffff16565b600f819055505f611f8982612868565b9050611fa081600b54611f4f90919063ffffffff16565b600b81905550611fae611c77565b6008541115611ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe990614102565b60405180910390fd5b6120428160095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611f4f90919063ffffffff16565b60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688583836040516120b4929190614120565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161211991906136e3565b60405180910390a3505050565b61213b81600f54611cab90919063ffffffff16565b600f819055505f61214b82612868565b905061216281600b54611cab90919063ffffffff16565b600b819055506121b88160095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611cab90919063ffffffff16565b60095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055507fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5338360405161222a929190614120565b60405180910390a15f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161228f91906136e3565b60405180910390a35050565b5f6122cd69d3c21bcecceda10000006122bf6008548561266590919063ffffffff16565b61267a90919063ffffffff16565b9050919050565b6122dc611f16565b73ffffffffffffffffffffffffffffffffffffffff166122fa6112ac565b73ffffffffffffffffffffffffffffffffffffffff1614612350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234790614191565b60405180910390fd5b565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6124208484611add565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461249a578181101561248c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612483906141f9565b60405180910390fd5b6124998484848403612c35565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361250e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250590614287565b60405180910390fd5b612519825f83612df8565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561259d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259490614315565b60405180910390fd5b81810360025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160045f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161264d91906136e3565b60405180910390a3612660835f84612dfd565b505050565b5f81836126729190614333565b905092915050565b5f81836126879190614022565b905092915050565b5f61269c835f0183612e02565b5f1c905092915050565b6126bb81600b54611f4f90919063ffffffff16565b600b819055505f6126cb8261229b565b90506126e281600f54611f4f90919063ffffffff16565b600f819055506126f0611c77565b6008541115612734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272b90614102565b60405180910390fd5b6127848260095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611f4f90919063ffffffff16565b60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688583826040516127f6929190614120565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161285b91906136e3565b60405180910390a3505050565b5f61289a60085461288c69d3c21bcecceda10000008561266590919063ffffffff16565b61267a90919063ffffffff16565b9050919050565b5f6128ad825f01612e29565b9050919050565b6129358363a9059cbb60e01b84846040516024016128d3929190614120565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612e38565b505050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6129ad8282611385565b612a23576129ba81612efe565b6129c7835f1c6020612f2b565b6040516020016129d8929190614438565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1a91906135e9565b60405180910390fd5b5050565b612a318282611385565b612afd5760015f808481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550612aa2611f16565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b5f612b26835f018373ffffffffffffffffffffffffffffffffffffffff165f1b613160565b905092915050565b612b388282611385565b15612c04575f805f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550612ba9611f16565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b5f612c2d835f018373ffffffffffffffffffffffffffffffffffffffff165f1b6131c7565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9a906144e1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d089061456f565b60405180910390fd5b8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612deb91906136e3565b60405180910390a3505050565b505050565b505050565b5f825f018281548110612e1857612e1761458d565b5b905f5260205f200154905092915050565b5f815f01805490509050919050565b5f612e99826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166132c39092919063ffffffff16565b90505f81511480612eba575080806020019051810190612eb991906145ce565b5b612ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef090614669565b60405180910390fd5b505050565b6060612f248273ffffffffffffffffffffffffffffffffffffffff16601460ff16612f2b565b9050919050565b60605f6002836002612f3d9190614333565b612f479190614085565b67ffffffffffffffff811115612f6057612f5f614687565b5b6040519080825280601f01601f191660200182016040528015612f925781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000815f81518110612fc957612fc861458d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061302c5761302b61458d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053505f600184600261306a9190614333565b6130749190614085565b90505b6001811115613113577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106130b6576130b561458d565b5b1a60f81b8282815181106130cd576130cc61458d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600485901c94508061310c906146b4565b9050613077565b505f8414613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614725565b60405180910390fd5b8091505092915050565b5f61316b83836132da565b6131bd57825f0182908060018154018082558091505060019003905f5260205f20015f9091909190915055825f0180549050836001015f8481526020019081526020015f2081905550600190506131c1565b5f90505b92915050565b5f80836001015f8481526020019081526020015f205490505f81146132b8575f6001826131f49190614052565b90505f6001865f018054905061320a9190614052565b9050818114613270575f865f0182815481106132295761322861458d565b5b905f5260205f200154905080875f01848154811061324a5761324961458d565b5b905f5260205f20018190555083876001015f8381526020019081526020015f2081905550505b855f0180548061328357613282614743565b5b600190038181905f5260205f20015f90559055856001015f8681526020019081526020015f205f9055600193505050506132bd565b5f9150505b92915050565b60606132d184845f856132fa565b90509392505050565b5f80836001015f8481526020019081526020015f20541415905092915050565b60608247101561333f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613336906147e0565b60405180910390fd5b5f808673ffffffffffffffffffffffffffffffffffffffff1685876040516133679190614842565b5f6040518083038185875af1925050503d805f81146133a1576040519150601f19603f3d011682016040523d82523d5f602084013e6133a6565b606091505b50915091506133b7878383876133c3565b92505050949350505050565b60608315613424575f83510361341c576133dc85613437565b61341b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613412906148a2565b60405180910390fd5b5b82905061342f565b61342e8383613459565b5b949350505050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f8251111561346b5781518083602001fd5b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349f91906135e9565b60405180910390fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134e0816134ac565b81146134ea575f80fd5b50565b5f813590506134fb816134d7565b92915050565b5f60208284031215613516576135156134a8565b5b5f613523848285016134ed565b91505092915050565b5f8115159050919050565b6135408161352c565b82525050565b5f6020820190506135595f830184613537565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561359657808201518184015260208101905061357b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6135bb8261355f565b6135c58185613569565b93506135d5818560208601613579565b6135de816135a1565b840191505092915050565b5f6020820190508181035f83015261360181846135b1565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61363282613609565b9050919050565b61364281613628565b811461364c575f80fd5b50565b5f8135905061365d81613639565b92915050565b5f819050919050565b61367581613663565b811461367f575f80fd5b50565b5f813590506136908161366c565b92915050565b5f80604083850312156136ac576136ab6134a8565b5b5f6136b98582860161364f565b92505060206136ca85828601613682565b9150509250929050565b6136dd81613663565b82525050565b5f6020820190506136f65f8301846136d4565b92915050565b5f819050919050565b61370e816136fc565b82525050565b5f6020820190506137275f830184613705565b92915050565b5f805f60608486031215613744576137436134a8565b5b5f6137518682870161364f565b93505060206137628682870161364f565b925050604061377386828701613682565b9150509250925092565b613786816136fc565b8114613790575f80fd5b50565b5f813590506137a18161377d565b92915050565b5f602082840312156137bc576137bb6134a8565b5b5f6137c984828501613793565b91505092915050565b5f80604083850312156137e8576137e76134a8565b5b5f6137f585828601613793565b92505060206138068582860161364f565b9150509250929050565b5f60ff82169050919050565b61382581613810565b82525050565b5f60208201905061383e5f83018461381c565b92915050565b5f60208284031215613859576138586134a8565b5b5f6138668482850161364f565b91505092915050565b5f60208284031215613884576138836134a8565b5b5f61389184828501613682565b91505092915050565b6138a38161352c565b81146138ad575f80fd5b50565b5f813590506138be8161389a565b92915050565b5f805f606084860312156138db576138da6134a8565b5b5f6138e886828701613682565b93505060206138f986828701613682565b925050604061390a868287016138b0565b9150509250925092565b61391d81613628565b82525050565b5f6020820190506139365f830184613914565b92915050565b5f8060408385031215613952576139516134a8565b5b5f61395f85828601613793565b925050602061397085828601613682565b9150509250929050565b61398381613810565b811461398d575f80fd5b50565b5f8135905061399e8161397a565b92915050565b5f805f805f805f60e0888a0312156139bf576139be6134a8565b5b5f6139cc8a828b0161364f565b97505060206139dd8a828b0161364f565b96505060406139ee8a828b01613682565b95505060606139ff8a828b01613682565b9450506080613a108a828b01613990565b93505060a0613a218a828b01613793565b92505060c0613a328a828b01613793565b91505092959891949750929550565b5f8060408385031215613a5757613a566134a8565b5b5f613a648582860161364f565b9250506020613a758582860161364f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613ac357607f821691505b602082108103613ad657613ad5613a7f565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e63655f8201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b5f613b36602f83613569565b9150613b4182613adc565b604082019050919050565b5f6020820190508181035f830152613b6381613b2a565b9050919050565b7f4d7573742068617665206d696e74657220726f6c6500000000000000000000005f82015250565b5f613b9e601583613569565b9150613ba982613b6a565b602082019050919050565b5f6020820190508181035f830152613bcb81613b92565b9050919050565b7f4d7573742068617665207265626173657220726f6c65000000000000000000005f82015250565b5f613c06601683613569565b9150613c1182613bd2565b602082019050919050565b5f6020820190508181035f830152613c3381613bfa565b9050919050565b5f606082019050613c4d5f8301866136d4565b613c5a60208301856136d4565b613c6760408301846136d4565b949350505050565b7f594f44412f7065726d69742d65787069726564000000000000000000000000005f82015250565b5f613ca3601383613569565b9150613cae82613c6f565b602082019050919050565b5f6020820190508181035f830152613cd081613c97565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613d0e82613663565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d4057613d3f613cd7565b5b600182019050919050565b5f60c082019050613d5e5f830189613705565b613d6b6020830188613914565b613d786040830187613914565b613d8560608301866136d4565b613d9260808301856136d4565b613d9f60a08301846136d4565b979650505050505050565b5f81905092915050565b7f19010000000000000000000000000000000000000000000000000000000000005f82015250565b5f613de8600283613daa565b9150613df382613db4565b600282019050919050565b5f819050919050565b613e18613e13826136fc565b613dfe565b82525050565b5f613e2882613ddc565b9150613e348285613e07565b602082019150613e448284613e07565b6020820191508190509392505050565b7f594f44412f696e76616c69642d616464726573732d30000000000000000000005f82015250565b5f613e88601683613569565b9150613e9382613e54565b602082019050919050565b5f6020820190508181035f830152613eb581613e7c565b9050919050565b5f608082019050613ecf5f830187613705565b613edc602083018661381c565b613ee96040830185613705565b613ef66060830184613705565b95945050505050565b7f594f44412f696e76616c69642d7065726d6974000000000000000000000000005f82015250565b5f613f33601383613569565b9150613f3e82613eff565b602082019050919050565b5f6020820190508181035f830152613f6081613f27565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613fc1602683613569565b9150613fcc82613f67565b604082019050919050565b5f6020820190508181035f830152613fee81613fb5565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61402c82613663565b915061403783613663565b92508261404757614046613ff5565b5b828204905092915050565b5f61405c82613663565b915061406783613663565b925082820390508181111561407f5761407e613cd7565b5b92915050565b5f61408f82613663565b915061409a83613663565b92508282019050808211156140b2576140b1613cd7565b5b92915050565b7f6d6178207363616c696e6720666163746f7220746f6f206c6f770000000000005f82015250565b5f6140ec601a83613569565b91506140f7826140b8565b602082019050919050565b5f6020820190508181035f830152614119816140e0565b9050919050565b5f6040820190506141335f830185613914565b61414060208301846136d4565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61417b602083613569565b915061418682614147565b602082019050919050565b5f6020820190508181035f8301526141a88161416f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6141e3601d83613569565b91506141ee826141af565b602082019050919050565b5f6020820190508181035f830152614210816141d7565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f614271602183613569565b915061427c82614217565b604082019050919050565b5f6020820190508181035f83015261429e81614265565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6142ff602283613569565b915061430a826142a5565b604082019050919050565b5f6020820190508181035f83015261432c816142f3565b9050919050565b5f61433d82613663565b915061434883613663565b925082820261435681613663565b9150828204841483151761436d5761436c613cd7565b5b5092915050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000005f82015250565b5f6143a8601783613daa565b91506143b382614374565b601782019050919050565b5f6143c88261355f565b6143d28185613daa565b93506143e2818560208601613579565b80840191505092915050565b7f206973206d697373696e6720726f6c65200000000000000000000000000000005f82015250565b5f614422601183613daa565b915061442d826143ee565b601182019050919050565b5f6144428261439c565b915061444e82856143be565b915061445982614416565b915061446582846143be565b91508190509392505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6144cb602483613569565b91506144d682614471565b604082019050919050565b5f6020820190508181035f8301526144f8816144bf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614559602283613569565b9150614564826144ff565b604082019050919050565b5f6020820190508181035f8301526145868161454d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506145c88161389a565b92915050565b5f602082840312156145e3576145e26134a8565b5b5f6145f0848285016145ba565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e5f8201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b5f614653602a83613569565b915061465e826145f9565b604082019050919050565b5f6020820190508181035f83015261468081614647565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f6146be82613663565b91505f82036146d0576146cf613cd7565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e745f82015250565b5f61470f602083613569565b915061471a826146db565b602082019050919050565b5f6020820190508181035f83015261473c81614703565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b7f416464726573733a20696e73756666696369656e742062616c616e636520666f5f8201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b5f6147ca602683613569565b91506147d582614770565b604082019050919050565b5f6020820190508181035f8301526147f7816147be565b9050919050565b5f81519050919050565b5f81905092915050565b5f61481c826147fe565b6148268185614808565b9350614836818560208601613579565b80840191505092915050565b5f61484d8284614812565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000005f82015250565b5f61488c601d83613569565b915061489782614858565b602082019050919050565b5f6020820190508181035f8301526148b981614880565b905091905056fea26469706673582212204bb502f17c85dd90306a4f34af9746c4123c0e8a79dc8ecdc884767055626a9564736f6c63430008160033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610272575f3560e01c80637ecebe001161014f578063a98a4921116100c1578063d547741f11610085578063d547741f14610810578063dadc9d221461082c578063dd62ed3e1461084a578063ec342ad01461087a578063edb208e214610898578063f2fde38b146108c857610272565b8063a98a492114610746578063ca15c87314610776578063cea9d26f146107a6578063d505accf146107d6578063d5391393146107f257610272565b806391d148541161011357806391d148541461065c57806395d89b411461068c57806397d63f93146106aa578063a217fddf146106c8578063a457c2d7146106e6578063a9059cbb1461071657610272565b80637ecebe001461059057806383eb70e5146105c05780638da5cb5b146105de5780639010d07c146105fc578063917505f41461062c57610272565b80633644e515116101e857806342966c68116101ac57806342966c68146104d057806364dd48f5146104ec57806370a082311461050a578063715018a61461053a57806379cc6790146105445780637af548c11461056057610272565b80633644e5151461040657806336568abe1461042457806339509351146104405780633af9e6691461047057806340c10f19146104a057610272565b806320606b701161023a57806320606b701461033057806323b872dd1461034e578063248a9ca31461037e5780632f2ff15d146103ae57806330adf81f146103ca578063313ce567146103e857610272565b806301ffc9a71461027657806306fdde03146102a6578063095ea7b3146102c457806311d3e6c4146102f457806318160ddd14610312575b5f80fd5b610290600480360381019061028b9190613501565b6108e4565b60405161029d9190613546565b60405180910390f35b6102ae61095d565b6040516102bb91906135e9565b60405180910390f35b6102de60048036038101906102d99190613696565b6109ed565b6040516102eb9190613546565b60405180910390f35b6102fc610ada565b60405161030991906136e3565b60405180910390f35b61031a610ae8565b60405161032791906136e3565b60405180910390f35b610338610af1565b6040516103459190613714565b60405180910390f35b6103686004803603810190610363919061372d565b610b15565b6040516103759190613546565b60405180910390f35b610398600480360381019061039391906137a7565b610c36565b6040516103a59190613714565b60405180910390f35b6103c860048036038101906103c391906137d2565b610c52565b005b6103d2610c73565b6040516103df9190613714565b60405180910390f35b6103f0610c99565b6040516103fd919061382b565b60405180910390f35b61040e610ca1565b60405161041b9190613714565b60405180910390f35b61043e600480360381019061043991906137d2565b610ca7565b005b61045a60048036038101906104559190613696565b610d2a565b6040516104679190613546565b60405180910390f35b61048a60048036038101906104859190613844565b610f19565b60405161049791906136e3565b60405180910390f35b6104ba60048036038101906104b59190613696565b610f5f565b6040516104c79190613546565b60405180910390f35b6104ea60048036038101906104e5919061386f565b610fe4565b005b6104f4610ff0565b60405161050191906136e3565b60405180910390f35b610524600480360381019061051f9190613844565b610ffe565b60405161053191906136e3565b60405180910390f35b61054261104c565b005b61055e60048036038101906105599190613696565b61105f565b005b61057a600480360381019061057591906138c4565b61107f565b60405161058791906136e3565b60405180910390f35b6105aa60048036038101906105a59190613844565b611273565b6040516105b791906136e3565b60405180910390f35b6105c8611288565b6040516105d59190613714565b60405180910390f35b6105e66112ac565b6040516105f39190613923565b60405180910390f35b6106166004803603810190610611919061393c565b6112d4565b6040516106239190613923565b60405180910390f35b61064660048036038101906106419190613696565b611300565b6040516106539190613546565b60405180910390f35b610676600480360381019061067191906137d2565b611385565b6040516106839190613546565b60405180910390f35b6106946113e8565b6040516106a191906135e9565b60405180910390f35b6106b2611478565b6040516106bf91906136e3565b60405180910390f35b6106d061147e565b6040516106dd9190613714565b60405180910390f35b61070060048036038101906106fb9190613696565b611484565b60405161070d9190613546565b60405180910390f35b610730600480360381019061072b9190613696565b611702565b60405161073d9190613546565b60405180910390f35b610760600480360381019061075b919061386f565b61171b565b60405161076d91906136e3565b60405180910390f35b610790600480360381019061078b91906137a7565b61172c565b60405161079d91906136e3565b60405180910390f35b6107c060048036038101906107bb919061372d565b61174d565b6040516107cd9190613546565b60405180910390f35b6107f060048036038101906107eb91906139a4565b61176c565b005b6107fa611a92565b6040516108079190613714565b60405180910390f35b61082a600480360381019061082591906137d2565b611ab6565b005b610834611ad7565b60405161084191906136e3565b60405180910390f35b610864600480360381019061085f9190613a41565b611add565b60405161087191906136e3565b60405180910390f35b610882611b5f565b60405161088f91906136e3565b60405180910390f35b6108b260048036038101906108ad919061386f565b611b6b565b6040516108bf91906136e3565b60405180910390f35b6108e260048036038101906108dd9190613844565b611b7c565b005b5f7f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610956575061095582611bfe565b5b9050919050565b60606005805461096c90613aac565b80601f016020809104026020016040519081016040528092919081815260200182805461099890613aac565b80156109e35780601f106109ba576101008083540402835291602001916109e3565b820191905f5260205f20905b8154815290600101906020018083116109c657829003601f168201915b5050505050905090565b5f81600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ac891906136e3565b60405180910390a36001905092915050565b5f610ae3611c77565b905090565b5f600f54905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b5f610ba182600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611cab90919063ffffffff16565b600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f610c29858585611cc0565b9050809150509392505050565b5f805f8381526020019081526020015f20600101549050919050565b610c5b82610c36565b610c6481611ed0565b610c6e8383611ee4565b505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c95f1b81565b5f6012905090565b600c5481565b610caf611f16565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1390613b4c565b60405180910390fd5b610d268282611f1d565b5050565b5f610db682600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611f4f90919063ffffffff16565b600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054604051610f0791906136e3565b60405180910390a36001905092915050565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f610f917f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610f8c611f16565b611385565b610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc790613bb4565b60405180910390fd5b610fda8383611f64565b6001905092915050565b610fed81612126565b50565b69d3c21bcecceda100000081565b5f61104560095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461229b565b9050919050565b6110546122d4565b61105d5f612352565b565b6110718261106b611f16565b83612415565b61107b82826124a0565b5050565b5f6110b17f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b756110ac611f16565b611385565b6110f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e790613c1c565b60405180910390fd5b5f8303611140577fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c08460085460085460405161112e93929190613c3a565b60405180910390a1600f54905061126c565b5f60085490508261119f57611194670de0b6b3a764000061118661117587670de0b6b3a7640000611cab90919063ffffffff16565b60085461266590919063ffffffff16565b61267a90919063ffffffff16565b600881905550611217565b5f6111e9670de0b6b3a76400006111db6111ca88670de0b6b3a7640000611f4f90919063ffffffff16565b60085461266590919063ffffffff16565b61267a90919063ffffffff16565b90506111f3611c77565b8110156112065780600881905550611215565b61120e611c77565b6008819055505b505b611222600b5461229b565b600f819055507fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c0858260085460405161125d93929190613c3a565b60405180910390a1600f549150505b9392505050565b600d602052805f5260405f205f915090505481565b7f5fde63b561377d1441afa201ff619faac2ff8fed70a7fbdbe7a5cb07768c0b7581565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f6112f88260015f8681526020019081526020015f2061268f90919063ffffffff16565b905092915050565b5f6113327f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661132d611f16565b611385565b611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890613bb4565b60405180910390fd5b61137b83836126a6565b6001905092915050565b5f805f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6060600680546113f790613aac565b80601f016020809104026020016040519081016040528092919081815260200182805461142390613aac565b801561146e5780601f106114455761010080835404028352916020019161146e565b820191905f5260205f20905b81548152906001019060200180831161145157829003601f168201915b5050505050905090565b600b5481565b5f801b81565b5f80600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905080831061158a575f600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061161a565b61159d8382611cab90919063ffffffff16565b600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546040516116ef91906136e3565b60405180910390a3600191505092915050565b5f8061170f338585611cc0565b90508091505092915050565b5f61172582612868565b9050919050565b5f61174660015f8481526020019081526020015f206128a1565b9050919050565b5f6117566122d4565b6117618484846128b4565b600190509392505050565b834211156117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690613cb9565b60405180910390fd5b5f600c547f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c95f1b898989600d5f8e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81548092919061182690613d04565b919050558a60405160200161184096959493929190613d4b565b60405160208183030381529060405280519060200120604051602001611867929190613e1e565b6040516020818303038152906040528051906020012090505f73ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16036118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e490613e9e565b60405180910390fd5b6001818585856040515f815260200160405260405161190f9493929190613ebc565b6020604051602081039080840390855afa15801561192f573d5f803e3d5ffd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16146119a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199d90613f49565b60405180910390fd5b85600a5f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92588604051611a8091906136e3565b60405180910390a35050505050505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611abf82610c36565b611ac881611ed0565b611ad28383611f1d565b505050565b60085481565b5f600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b670de0b6b3a764000081565b5f611b758261229b565b9050919050565b611b846122d4565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990613fd7565b60405180910390fd5b611bfb81612352565b50565b5f7f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c705750611c6f8261293a565b5b9050919050565b5f600b547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611ca69190614022565b905090565b5f8183611cb89190614052565b905092915050565b5f825f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cf9575f80fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d30575f80fd5b5f611d3a84612868565b9050611d8c8160095f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611cab90919063ffffffff16565b60095f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611e1d8160095f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611f4f90919063ffffffff16565b60095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef86604051611ebb91906136e3565b60405180910390a36001925050509392505050565b611ee181611edc611f16565b6129a3565b50565b611eee8282612a27565b611f118160015f8581526020019081526020015f20612b0190919063ffffffff16565b505050565b5f33905090565b611f278282612b2e565b611f4a8160015f8581526020019081526020015f20612c0890919063ffffffff16565b505050565b5f8183611f5c9190614085565b905092915050565b611f7981600f54611f4f90919063ffffffff16565b600f819055505f611f8982612868565b9050611fa081600b54611f4f90919063ffffffff16565b600b81905550611fae611c77565b6008541115611ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe990614102565b60405180910390fd5b6120428160095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611f4f90919063ffffffff16565b60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688583836040516120b4929190614120565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161211991906136e3565b60405180910390a3505050565b61213b81600f54611cab90919063ffffffff16565b600f819055505f61214b82612868565b905061216281600b54611cab90919063ffffffff16565b600b819055506121b88160095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611cab90919063ffffffff16565b60095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055507fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5338360405161222a929190614120565b60405180910390a15f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161228f91906136e3565b60405180910390a35050565b5f6122cd69d3c21bcecceda10000006122bf6008548561266590919063ffffffff16565b61267a90919063ffffffff16565b9050919050565b6122dc611f16565b73ffffffffffffffffffffffffffffffffffffffff166122fa6112ac565b73ffffffffffffffffffffffffffffffffffffffff1614612350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234790614191565b60405180910390fd5b565b5f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6124208484611add565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461249a578181101561248c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612483906141f9565b60405180910390fd5b6124998484848403612c35565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361250e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250590614287565b60405180910390fd5b612519825f83612df8565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561259d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259490614315565b60405180910390fd5b81810360025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160045f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161264d91906136e3565b60405180910390a3612660835f84612dfd565b505050565b5f81836126729190614333565b905092915050565b5f81836126879190614022565b905092915050565b5f61269c835f0183612e02565b5f1c905092915050565b6126bb81600b54611f4f90919063ffffffff16565b600b819055505f6126cb8261229b565b90506126e281600f54611f4f90919063ffffffff16565b600f819055506126f0611c77565b6008541115612734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272b90614102565b60405180910390fd5b6127848260095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611f4f90919063ffffffff16565b60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688583826040516127f6929190614120565b60405180910390a18273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161285b91906136e3565b60405180910390a3505050565b5f61289a60085461288c69d3c21bcecceda10000008561266590919063ffffffff16565b61267a90919063ffffffff16565b9050919050565b5f6128ad825f01612e29565b9050919050565b6129358363a9059cbb60e01b84846040516024016128d3929190614120565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612e38565b505050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6129ad8282611385565b612a23576129ba81612efe565b6129c7835f1c6020612f2b565b6040516020016129d8929190614438565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1a91906135e9565b60405180910390fd5b5050565b612a318282611385565b612afd5760015f808481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550612aa2611f16565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b5f612b26835f018373ffffffffffffffffffffffffffffffffffffffff165f1b613160565b905092915050565b612b388282611385565b15612c04575f805f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550612ba9611f16565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b5f612c2d835f018373ffffffffffffffffffffffffffffffffffffffff165f1b6131c7565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9a906144e1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d089061456f565b60405180910390fd5b8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612deb91906136e3565b60405180910390a3505050565b505050565b505050565b5f825f018281548110612e1857612e1761458d565b5b905f5260205f200154905092915050565b5f815f01805490509050919050565b5f612e99826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166132c39092919063ffffffff16565b90505f81511480612eba575080806020019051810190612eb991906145ce565b5b612ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef090614669565b60405180910390fd5b505050565b6060612f248273ffffffffffffffffffffffffffffffffffffffff16601460ff16612f2b565b9050919050565b60605f6002836002612f3d9190614333565b612f479190614085565b67ffffffffffffffff811115612f6057612f5f614687565b5b6040519080825280601f01601f191660200182016040528015612f925781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000815f81518110612fc957612fc861458d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061302c5761302b61458d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a9053505f600184600261306a9190614333565b6130749190614085565b90505b6001811115613113577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106130b6576130b561458d565b5b1a60f81b8282815181106130cd576130cc61458d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690815f1a905350600485901c94508061310c906146b4565b9050613077565b505f8414613156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161314d90614725565b60405180910390fd5b8091505092915050565b5f61316b83836132da565b6131bd57825f0182908060018154018082558091505060019003905f5260205f20015f9091909190915055825f0180549050836001015f8481526020019081526020015f2081905550600190506131c1565b5f90505b92915050565b5f80836001015f8481526020019081526020015f205490505f81146132b8575f6001826131f49190614052565b90505f6001865f018054905061320a9190614052565b9050818114613270575f865f0182815481106132295761322861458d565b5b905f5260205f200154905080875f01848154811061324a5761324961458d565b5b905f5260205f20018190555083876001015f8381526020019081526020015f2081905550505b855f0180548061328357613282614743565b5b600190038181905f5260205f20015f90559055856001015f8681526020019081526020015f205f9055600193505050506132bd565b5f9150505b92915050565b60606132d184845f856132fa565b90509392505050565b5f80836001015f8481526020019081526020015f20541415905092915050565b60608247101561333f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613336906147e0565b60405180910390fd5b5f808673ffffffffffffffffffffffffffffffffffffffff1685876040516133679190614842565b5f6040518083038185875af1925050503d805f81146133a1576040519150601f19603f3d011682016040523d82523d5f602084013e6133a6565b606091505b50915091506133b7878383876133c3565b92505050949350505050565b60608315613424575f83510361341c576133dc85613437565b61341b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613412906148a2565b60405180910390fd5b5b82905061342f565b61342e8383613459565b5b949350505050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b5f8251111561346b5781518083602001fd5b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349f91906135e9565b60405180910390fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134e0816134ac565b81146134ea575f80fd5b50565b5f813590506134fb816134d7565b92915050565b5f60208284031215613516576135156134a8565b5b5f613523848285016134ed565b91505092915050565b5f8115159050919050565b6135408161352c565b82525050565b5f6020820190506135595f830184613537565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561359657808201518184015260208101905061357b565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6135bb8261355f565b6135c58185613569565b93506135d5818560208601613579565b6135de816135a1565b840191505092915050565b5f6020820190508181035f83015261360181846135b1565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61363282613609565b9050919050565b61364281613628565b811461364c575f80fd5b50565b5f8135905061365d81613639565b92915050565b5f819050919050565b61367581613663565b811461367f575f80fd5b50565b5f813590506136908161366c565b92915050565b5f80604083850312156136ac576136ab6134a8565b5b5f6136b98582860161364f565b92505060206136ca85828601613682565b9150509250929050565b6136dd81613663565b82525050565b5f6020820190506136f65f8301846136d4565b92915050565b5f819050919050565b61370e816136fc565b82525050565b5f6020820190506137275f830184613705565b92915050565b5f805f60608486031215613744576137436134a8565b5b5f6137518682870161364f565b93505060206137628682870161364f565b925050604061377386828701613682565b9150509250925092565b613786816136fc565b8114613790575f80fd5b50565b5f813590506137a18161377d565b92915050565b5f602082840312156137bc576137bb6134a8565b5b5f6137c984828501613793565b91505092915050565b5f80604083850312156137e8576137e76134a8565b5b5f6137f585828601613793565b92505060206138068582860161364f565b9150509250929050565b5f60ff82169050919050565b61382581613810565b82525050565b5f60208201905061383e5f83018461381c565b92915050565b5f60208284031215613859576138586134a8565b5b5f6138668482850161364f565b91505092915050565b5f60208284031215613884576138836134a8565b5b5f61389184828501613682565b91505092915050565b6138a38161352c565b81146138ad575f80fd5b50565b5f813590506138be8161389a565b92915050565b5f805f606084860312156138db576138da6134a8565b5b5f6138e886828701613682565b93505060206138f986828701613682565b925050604061390a868287016138b0565b9150509250925092565b61391d81613628565b82525050565b5f6020820190506139365f830184613914565b92915050565b5f8060408385031215613952576139516134a8565b5b5f61395f85828601613793565b925050602061397085828601613682565b9150509250929050565b61398381613810565b811461398d575f80fd5b50565b5f8135905061399e8161397a565b92915050565b5f805f805f805f60e0888a0312156139bf576139be6134a8565b5b5f6139cc8a828b0161364f565b97505060206139dd8a828b0161364f565b96505060406139ee8a828b01613682565b95505060606139ff8a828b01613682565b9450506080613a108a828b01613990565b93505060a0613a218a828b01613793565b92505060c0613a328a828b01613793565b91505092959891949750929550565b5f8060408385031215613a5757613a566134a8565b5b5f613a648582860161364f565b9250506020613a758582860161364f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680613ac357607f821691505b602082108103613ad657613ad5613a7f565b5b50919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e63655f8201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b5f613b36602f83613569565b9150613b4182613adc565b604082019050919050565b5f6020820190508181035f830152613b6381613b2a565b9050919050565b7f4d7573742068617665206d696e74657220726f6c6500000000000000000000005f82015250565b5f613b9e601583613569565b9150613ba982613b6a565b602082019050919050565b5f6020820190508181035f830152613bcb81613b92565b9050919050565b7f4d7573742068617665207265626173657220726f6c65000000000000000000005f82015250565b5f613c06601683613569565b9150613c1182613bd2565b602082019050919050565b5f6020820190508181035f830152613c3381613bfa565b9050919050565b5f606082019050613c4d5f8301866136d4565b613c5a60208301856136d4565b613c6760408301846136d4565b949350505050565b7f594f44412f7065726d69742d65787069726564000000000000000000000000005f82015250565b5f613ca3601383613569565b9150613cae82613c6f565b602082019050919050565b5f6020820190508181035f830152613cd081613c97565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613d0e82613663565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d4057613d3f613cd7565b5b600182019050919050565b5f60c082019050613d5e5f830189613705565b613d6b6020830188613914565b613d786040830187613914565b613d8560608301866136d4565b613d9260808301856136d4565b613d9f60a08301846136d4565b979650505050505050565b5f81905092915050565b7f19010000000000000000000000000000000000000000000000000000000000005f82015250565b5f613de8600283613daa565b9150613df382613db4565b600282019050919050565b5f819050919050565b613e18613e13826136fc565b613dfe565b82525050565b5f613e2882613ddc565b9150613e348285613e07565b602082019150613e448284613e07565b6020820191508190509392505050565b7f594f44412f696e76616c69642d616464726573732d30000000000000000000005f82015250565b5f613e88601683613569565b9150613e9382613e54565b602082019050919050565b5f6020820190508181035f830152613eb581613e7c565b9050919050565b5f608082019050613ecf5f830187613705565b613edc602083018661381c565b613ee96040830185613705565b613ef66060830184613705565b95945050505050565b7f594f44412f696e76616c69642d7065726d6974000000000000000000000000005f82015250565b5f613f33601383613569565b9150613f3e82613eff565b602082019050919050565b5f6020820190508181035f830152613f6081613f27565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613fc1602683613569565b9150613fcc82613f67565b604082019050919050565b5f6020820190508181035f830152613fee81613fb5565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61402c82613663565b915061403783613663565b92508261404757614046613ff5565b5b828204905092915050565b5f61405c82613663565b915061406783613663565b925082820390508181111561407f5761407e613cd7565b5b92915050565b5f61408f82613663565b915061409a83613663565b92508282019050808211156140b2576140b1613cd7565b5b92915050565b7f6d6178207363616c696e6720666163746f7220746f6f206c6f770000000000005f82015250565b5f6140ec601a83613569565b91506140f7826140b8565b602082019050919050565b5f6020820190508181035f830152614119816140e0565b9050919050565b5f6040820190506141335f830185613914565b61414060208301846136d4565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61417b602083613569565b915061418682614147565b602082019050919050565b5f6020820190508181035f8301526141a88161416f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6141e3601d83613569565b91506141ee826141af565b602082019050919050565b5f6020820190508181035f830152614210816141d7565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f614271602183613569565b915061427c82614217565b604082019050919050565b5f6020820190508181035f83015261429e81614265565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6142ff602283613569565b915061430a826142a5565b604082019050919050565b5f6020820190508181035f83015261432c816142f3565b9050919050565b5f61433d82613663565b915061434883613663565b925082820261435681613663565b9150828204841483151761436d5761436c613cd7565b5b5092915050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000005f82015250565b5f6143a8601783613daa565b91506143b382614374565b601782019050919050565b5f6143c88261355f565b6143d28185613daa565b93506143e2818560208601613579565b80840191505092915050565b7f206973206d697373696e6720726f6c65200000000000000000000000000000005f82015250565b5f614422601183613daa565b915061442d826143ee565b601182019050919050565b5f6144428261439c565b915061444e82856143be565b915061445982614416565b915061446582846143be565b91508190509392505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6144cb602483613569565b91506144d682614471565b604082019050919050565b5f6020820190508181035f8301526144f8816144bf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f614559602283613569565b9150614564826144ff565b604082019050919050565b5f6020820190508181035f8301526145868161454d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506145c88161389a565b92915050565b5f602082840312156145e3576145e26134a8565b5b5f6145f0848285016145ba565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e5f8201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b5f614653602a83613569565b915061465e826145f9565b604082019050919050565b5f6020820190508181035f83015261468081614647565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f6146be82613663565b91505f82036146d0576146cf613cd7565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e745f82015250565b5f61470f602083613569565b915061471a826146db565b602082019050919050565b5f6020820190508181035f83015261473c81614703565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b7f416464726573733a20696e73756666696369656e742062616c616e636520666f5f8201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b5f6147ca602683613569565b91506147d582614770565b604082019050919050565b5f6020820190508181035f8301526147f7816147be565b9050919050565b5f81519050919050565b5f81905092915050565b5f61481c826147fe565b6148268185614808565b9350614836818560208601613579565b80840191505092915050565b5f61484d8284614812565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000005f82015250565b5f61488c601d83613569565b915061489782614858565b602082019050919050565b5f6020820190508181035f8301526148b981614880565b905091905056fea26469706673582212204bb502f17c85dd90306a4f34af9746c4123c0e8a79dc8ecdc884767055626a9564736f6c63430008160033

Deployed Bytecode Sourcemap

98085:13792:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95581:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74472:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107061:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100165:111;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99977:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99110:155;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104086:333;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91156:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91597:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98832:117;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75443:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98956:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92741:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;107656:320;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105839:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100722:211;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101723:84;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98267:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105517:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71507:103;;;:::i;:::-;;86458:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;109751:1292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98996:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97681:64;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70866:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96394:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102471:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89629:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74691:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98693:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88734:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108236:534;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103635:191;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;111180:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96721:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;111657:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108815:928;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97612:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92037:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98509:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106265:156;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98383:37;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;111051:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71765:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95581:214;95666:4;95705:42;95690:57;;;:11;:57;;;;:97;;;;95751:36;95775:11;95751:23;:36::i;:::-;95690:97;95683:104;;95581:214;;;:::o;74472:100::-;74526:13;74559:5;74552:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74472:100;:::o;107061:224::-;107135:4;107198:5;107157:17;:29;107175:10;107157:29;;;;;;;;;;;;;;;:38;107187:7;107157:38;;;;;;;;;;;;;;;:46;;;;107240:7;107219:36;;107228:10;107219:36;;;107249:5;107219:36;;;;;;:::i;:::-;;;;;;;;107273:4;107266:11;;107061:224;;;;:::o;100165:111::-;100216:7;100249:19;:17;:19::i;:::-;100242:26;;100165:111;:::o;99977:106::-;100030:7;100063:12;;100056:19;;99977:106;:::o;99110:155::-;99161:104;99110:155;:::o;104086:333::-;104175:4;104267:46;104307:5;104267:17;:23;104285:4;104267:23;;;;;;;;;;;;;;;:35;104291:10;104267:35;;;;;;;;;;;;;;;;:39;;:46;;;;:::i;:::-;104229:17;:23;104247:4;104229:23;;;;;;;;;;;;;;;:35;104253:10;104229:35;;;;;;;;;;;;;;;:84;;;;104326:19;104348:31;104363:4;104369:2;104373:5;104348:14;:31::i;:::-;104326:53;;104397:14;104390:21;;;104086:333;;;;;:::o;91156:131::-;91230:7;91257:6;:12;91264:4;91257:12;;;;;;;;;;;:22;;;91250:29;;91156:131;;;:::o;91597:147::-;91680:18;91693:4;91680:12;:18::i;:::-;89225:16;89236:4;89225:10;:16::i;:::-;91711:25:::1;91722:4;91728:7;91711:10;:25::i;:::-;91597:147:::0;;;:::o;98832:117::-;98883:66;98832:117;;;:::o;75443:93::-;75501:5;75526:2;75519:9;;75443:93;:::o;98956:31::-;;;;:::o;92741:218::-;92848:12;:10;:12::i;:::-;92837:23;;:7;:23;;;92829:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;92925:26;92937:4;92943:7;92925:11;:26::i;:::-;92741:218;;:::o;107656:320::-;107746:4;107809:54;107852:10;107809:17;:29;107827:10;107809:29;;;;;;;;;;;;;;;:38;107839:7;107809:38;;;;;;;;;;;;;;;;:42;;:54;;;;:::i;:::-;107768:17;:29;107786:10;107768:29;;;;;;;;;;;;;;;:38;107798:7;107768:38;;;;;;;;;;;;;;;:95;;;;107899:7;107879:67;;107888:10;107879:67;;;107907:17;:29;107925:10;107907:29;;;;;;;;;;;;;;;:38;107937:7;107907:38;;;;;;;;;;;;;;;;107879:67;;;;;;:::i;:::-;;;;;;;;107964:4;107957:11;;107656:320;;;;:::o;105839:121::-;105902:7;105934:13;:18;105948:3;105934:18;;;;;;;;;;;;;;;;105927:25;;105839:121;;;:::o;100722:211::-;100782:4;100813:34;97650:24;100834:12;:10;:12::i;:::-;100813:7;:34::i;:::-;100805:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;100886:17;100892:2;100896:6;100886:5;:17::i;:::-;100921:4;100914:11;;100722:211;;;;:::o;101723:84::-;101786:13;101792:6;101786:5;:13::i;:::-;101723:84;:::o;98267:49::-;98310:6;98267:49;:::o;105517:138::-;105579:7;105612:35;105628:13;:18;105642:3;105628:18;;;;;;;;;;;;;;;;105612:15;:35::i;:::-;105605:42;;105517:138;;;:::o;71507:103::-;70752:13;:11;:13::i;:::-;71572:30:::1;71599:1;71572:18;:30::i;:::-;71507:103::o:0;86458:164::-;86535:46;86551:7;86560:12;:10;:12::i;:::-;86574:6;86535:15;:46::i;:::-;86592:22;86598:7;86607:6;86592:5;:22::i;:::-;86458:164;;:::o;109751:1292::-;109833:7;109867:35;97720:25;109889:12;:10;:12::i;:::-;109867:7;:35::i;:::-;109859:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;109982:1;109968:10;:15;109964:140;;110005:53;110012:5;110019:18;;110039;;110005:53;;;;;;;;:::i;:::-;;;;;;;;110080:12;;110073:19;;;;109964:140;110139:30;110172:18;;110139:51;;110208:8;110203:630;;110321:54;98414:6;110321:44;110344:20;110353:10;98414:6;110344:8;;:20;;;;:::i;:::-;110321:18;;:22;;:44;;;;:::i;:::-;:48;;:54;;;;:::i;:::-;110300:18;:75;;;;110203:630;;;110485:24;110512:54;98414:6;110512:44;110535:20;110544:10;98414:6;110535:8;;:20;;;;:::i;:::-;110512:18;;:22;;:44;;;;:::i;:::-;:48;;:54;;;;:::i;:::-;110485:81;;110606:19;:17;:19::i;:::-;110587:16;:38;110583:239;;;110681:16;110660:18;:37;;;;110583:239;;;110787:19;:17;:19::i;:::-;110766:18;:40;;;;110583:239;110413:420;110203:630;110903:27;110919:10;;110903:15;:27::i;:::-;110888:12;:42;;;;110948:57;110955:5;110962:22;110986:18;;110948:57;;;;;;;;:::i;:::-;;;;;;;;111023:12;;111016:19;;;109751:1292;;;;;;:::o;98996:41::-;;;;;;;;;;;;;;;;;:::o;97681:64::-;97720:25;97681:64;:::o;70866:87::-;70912:7;70939:6;;;;;;;;;;;70932:13;;70866:87;:::o;96394:153::-;96484:7;96511:28;96533:5;96511:12;:18;96524:4;96511:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;96504:35;;96394:153;;;;:::o;102471:229::-;102539:4;102570:34;97650:24;102591:12;:10;:12::i;:::-;102570:7;:34::i;:::-;102562:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;102643:27;102659:2;102663:6;102643:15;:27::i;:::-;102688:4;102681:11;;102471:229;;;;:::o;89629:147::-;89715:4;89739:6;:12;89746:4;89739:12;;;;;;;;;;;:20;;:29;89760:7;89739:29;;;;;;;;;;;;;;;;;;;;;;;;;89732:36;;89629:147;;;;:::o;74691:104::-;74747:13;74780:7;74773:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74691:104;:::o;98693:25::-;;;;:::o;88734:49::-;88779:4;88734:49;;;:::o;108236:534::-;108331:4;108353:16;108372:17;:29;108390:10;108372:29;;;;;;;;;;;;;;;:38;108402:7;108372:38;;;;;;;;;;;;;;;;108353:57;;108444:8;108425:15;:27;108421:235;;108520:1;108479:17;:29;108497:10;108479:29;;;;;;;;;;;;;;;:38;108509:7;108479:38;;;;;;;;;;;;;;;:42;;;;108421:235;;;108615:29;108628:15;108615:8;:12;;:29;;;;:::i;:::-;108574:17;:29;108592:10;108574:29;;;;;;;;;;;;;;;:38;108604:7;108574:38;;;;;;;;;;;;;;;:70;;;;108421:235;108692:7;108671:69;;108680:10;108671:69;;;108701:17;:29;108719:10;108701:29;;;;;;;;;;;;;;;:38;108731:7;108701:38;;;;;;;;;;;;;;;;108671:69;;;;;;:::i;:::-;;;;;;;;108758:4;108751:11;;;108236:534;;;;:::o;103635:191::-;103705:4;103727:19;103749:37;103764:10;103776:2;103780:5;103749:14;:37::i;:::-;103727:59;;103804:14;103797:21;;;103635:191;;;;:::o;111180:123::-;111240:7;111273:22;111289:5;111273:15;:22::i;:::-;111266:29;;111180:123;;;:::o;96721:142::-;96801:7;96828:27;:12;:18;96841:4;96828:18;;;;;;;;;;;:25;:27::i;:::-;96821:34;;96721:142;;;:::o;111657:217::-;111748:4;70752:13;:11;:13::i;:::-;111795:49:::1;111825:5;111833:2;111837:6;111795:22;:49::i;:::-;111862:4;111855:11;;111657:217:::0;;;;;:::o;108815:928::-;108979:8;108960:15;:27;;108952:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;109024:14;109129:16;;98883:66;109233:15;;109275:5;109307:7;109341:5;109373:6;:13;109380:5;109373:13;;;;;;;;;;;;;;;;:15;;;;;;;;;:::i;:::-;;;;;109415:8;109196:250;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;109164:301;;;;;;109065:415;;;;;;;;;:::i;:::-;;;;;;;;;;;;;109041:450;;;;;;109024:467;;109529:1;109512:19;;:5;:19;;;109504:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;109586:26;109596:6;109604:1;109607;109610;109586:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109577:35;;:5;:35;;;109569:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;109683:5;109647:17;:24;109665:5;109647:24;;;;;;;;;;;;;;;:33;109672:7;109647:33;;;;;;;;;;;;;;;:41;;;;109720:7;109704:31;;109713:5;109704:31;;;109729:5;109704:31;;;;;;:::i;:::-;;;;;;;;108941:802;108815:928;;;;;;;:::o;97612:62::-;97650:24;97612:62;:::o;92037:149::-;92121:18;92134:4;92121:12;:18::i;:::-;89225:16;89236:4;89225:10;:16::i;:::-;92152:26:::1;92164:4;92170:7;92152:11;:26::i;:::-;92037:149:::0;;;:::o;98509:33::-;;;;:::o;106265:156::-;106347:7;106379:17;:25;106397:6;106379:25;;;;;;;;;;;;;;;:34;106405:7;106379:34;;;;;;;;;;;;;;;;106372:41;;106265:156;;;;:::o;98383:37::-;98414:6;98383:37;:::o;111051:121::-;111110:7;111143:21;111159:4;111143:15;:21::i;:::-;111136:28;;111051:121;;;:::o;71765:201::-;70752:13;:11;:13::i;:::-;71874:1:::1;71854:22;;:8;:22;;::::0;71846:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;71930:28;71949:8;71930:18;:28::i;:::-;71765:201:::0;:::o;89333:204::-;89418:4;89457:32;89442:47;;;:11;:47;;;;:87;;;;89493:36;89517:11;89493:23;:36::i;:::-;89442:87;89435:94;;89333:204;;;:::o;100284:321::-;100336:7;100587:10;;100580:2;100565:32;;;;:::i;:::-;100558:39;;100284:321;:::o;3290:98::-;3348:7;3379:1;3375;:5;;;;:::i;:::-;3368:12;;3290:98;;;;:::o;104678:720::-;104781:4;104768:2;99494:3;99480:18;;:2;:18;;;99472:27;;;;;;99532:4;99518:19;;:2;:19;;;99510:28;;;;;;105077:17:::1;105097:22;105113:5;105097:15;:22::i;:::-;105077:42;;105191:34;105215:9;105191:13;:19;105205:4;105191:19;;;;;;;;;;;;;;;;:23;;:34;;;;:::i;:::-;105169:13;:19;105183:4;105169:19;;;;;;;;;;;;;;;:56;;;;105295:32;105317:9;105295:13;:17;105309:2;105295:17;;;;;;;;;;;;;;;;:21;;:32;;;;:::i;:::-;105275:13;:17;105289:2;105275:17;;;;;;;;;;;;;;;:52;;;;105358:2;105343:25;;105352:4;105343:25;;;105362:5;105343:25;;;;;;:::i;:::-;;;;;;;;105386:4;105379:11;;;104678:720:::0;;;;;;:::o;90080:105::-;90147:30;90158:4;90164:12;:10;:12::i;:::-;90147:10;:30::i;:::-;90080:105;:::o;96956:169::-;97044:31;97061:4;97067:7;97044:16;:31::i;:::-;97086;97109:7;97086:12;:18;97099:4;97086:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;96956:169;;:::o;69310:98::-;69363:7;69390:10;69383:17;;69310:98;:::o;97219:174::-;97308:32;97326:4;97332:7;97308:17;:32::i;:::-;97351:34;97377:7;97351:12;:18;97364:4;97351:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;97219:174;;:::o;2909:98::-;2967:7;2998:1;2994;:5;;;;:::i;:::-;2987:12;;2909:98;;;;:::o;100941:652::-;101067:24;101084:6;101067:12;;:16;;:24;;;;:::i;:::-;101052:12;:39;;;;101135:17;101155:23;101171:6;101155:15;:23::i;:::-;101135:43;;101234:25;101249:9;101234:10;;:14;;:25;;;;:::i;:::-;101221:10;:38;;;;101367:19;:17;:19::i;:::-;101345:18;;:41;;101337:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;101471:32;101493:9;101471:13;:17;101485:2;101471:17;;;;;;;;;;;;;;;;:21;;:32;;;;:::i;:::-;101451:13;:17;101465:2;101451:17;;;;;;;;;;;;;;;:52;;;;101521:16;101526:2;101530:6;101521:16;;;;;;;:::i;:::-;;;;;;;;101574:2;101553:32;;101570:1;101553:32;;;101578:6;101553:32;;;;;;:::i;:::-;;;;;;;;101008:585;100941:652;;:::o;101815:515::-;101920:24;101937:6;101920:12;;:16;;:24;;;;:::i;:::-;101905:12;:39;;;;101990:17;102010:23;102026:6;102010:15;:23::i;:::-;101990:43;;102091:25;102106:9;102091:10;;:14;;:25;;;;:::i;:::-;102078:10;:38;;;;102186:40;102216:9;102186:13;:25;102200:10;102186:25;;;;;;;;;;;;;;;;:29;;:40;;;;:::i;:::-;102158:13;:25;102172:10;102158:25;;;;;;;;;;;;;;;:68;;;;102242:24;102247:10;102259:6;102242:24;;;;;;;:::i;:::-;;;;;;;;102311:1;102282:40;;102291:10;102282:40;;;102315:6;102282:40;;;;;;:::i;:::-;;;;;;;;101861:469;101815:515;:::o;111311:153::-;111373:7;111406:50;98310:6;111406:28;111415:18;;111406:4;:8;;:28;;;;:::i;:::-;:32;;:50;;;;:::i;:::-;111399:57;;111311:153;;;:::o;71031:132::-;71106:12;:10;:12::i;:::-;71095:23;;:7;:5;:7::i;:::-;:23;;;71087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71031:132::o;72126:191::-;72200:16;72219:6;;;;;;;;;;;72200:25;;72245:8;72236:6;;:17;;;;;;;;;;;;;;;;;;72300:8;72269:40;;72290:8;72269:40;;;;;;;;;;;;72189:128;72126:191;:::o;83654:419::-;83755:24;83782:25;83792:5;83799:7;83782:9;:25::i;:::-;83755:52;;83842:17;83822:16;:37;83818:248;;83904:6;83884:16;:26;;83876:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;83988:51;83997:5;84004:7;84032:6;84013:16;:25;83988:8;:51::i;:::-;83818:248;83744:329;83654:419;;;:::o;81904:675::-;82007:1;81988:21;;:7;:21;;;81980:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;82060:49;82081:7;82098:1;82102:6;82060:20;:49::i;:::-;82122:22;82147:9;:18;82157:7;82147:18;;;;;;;;;;;;;;;;82122:43;;82202:6;82184:14;:24;;82176:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;82321:6;82304:14;:23;82283:9;:18;82293:7;82283:18;;;;;;;;;;;;;;;:44;;;;82438:6;82422:12;;:22;;;;;;;;;;;82499:1;82473:37;;82482:7;82473:37;;;82503:6;82473:37;;;;;;:::i;:::-;;;;;;;;82523:48;82543:7;82560:1;82564:6;82523:19;:48::i;:::-;81969:610;81904:675;;:::o;3647:98::-;3705:7;3736:1;3732;:5;;;;:::i;:::-;3725:12;;3647:98;;;;:::o;4046:::-;4104:7;4135:1;4131;:5;;;;:::i;:::-;4124:12;;4046:98;;;;:::o;41540:158::-;41614:7;41665:22;41669:3;:10;;41681:5;41665:3;:22::i;:::-;41657:31;;41634:56;;41540:158;;;;:::o;102708:666::-;102832:22;102847:6;102832:10;;:14;;:22;;;;:::i;:::-;102819:10;:35;;;;102896:20;102919:23;102935:6;102919:15;:23::i;:::-;102896:46;;103001:30;103018:12;103001;;:16;;:30;;;;:::i;:::-;102986:12;:45;;;;103139:19;:17;:19::i;:::-;103117:18;;:41;;103109:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;103243:29;103265:6;103243:13;:17;103257:2;103243:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;103223:13;:17;103237:2;103223:17;;;;;;;;;;;;;;;:49;;;;103290:22;103295:2;103299:12;103290:22;;;;;;;:::i;:::-;;;;;;;;103349:2;103328:38;;103345:1;103328:38;;;103353:12;103328:38;;;;;;:::i;:::-;;;;;;;;102776:598;102708:666;;:::o;111472:155::-;111535:7;111568:51;111600:18;;111568:27;98310:6;111568:5;:9;;:27;;;;:::i;:::-;:31;;:51;;;;:::i;:::-;111561:58;;111472:155;;;:::o;41069:117::-;41132:7;41159:19;41167:3;:10;;41159:7;:19::i;:::-;41152:26;;41069:117;;;:::o;24810:177::-;24893:86;24913:5;24943:23;;;24968:2;24972:5;24920:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24893:19;:86::i;:::-;24810:177;;;:::o;46819:157::-;46904:4;46943:25;46928:40;;;:11;:40;;;;46921:47;;46819:157;;;:::o;90475:492::-;90564:22;90572:4;90578:7;90564;:22::i;:::-;90559:401;;90752:28;90772:7;90752:19;:28::i;:::-;90853:38;90881:4;90873:13;;90888:2;90853:19;:38::i;:::-;90657:257;;;;;;;;;:::i;:::-;;;;;;;;;;;;;90603:345;;;;;;;;;;;:::i;:::-;;;;;;;;90559:401;90475:492;;:::o;94338:238::-;94422:22;94430:4;94436:7;94422;:22::i;:::-;94417:152;;94493:4;94461:6;:12;94468:4;94461:12;;;;;;;;;;;:20;;:29;94482:7;94461:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;94544:12;:10;:12::i;:::-;94517:40;;94535:7;94517:40;;94529:4;94517:40;;;;;;;;;;94417:152;94338:238;;:::o;40244:152::-;40314:4;40338:50;40343:3;:10;;40379:5;40363:23;;40355:32;;40338:4;:50::i;:::-;40331:57;;40244:152;;;;:::o;94756:239::-;94840:22;94848:4;94854:7;94840;:22::i;:::-;94836:152;;;94911:5;94879:6;:12;94886:4;94879:12;;;;;;;;;;;:20;;:29;94900:7;94879:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;94963:12;:10;:12::i;:::-;94936:40;;94954:7;94936:40;;94948:4;94936:40;;;;;;;;;;94836:152;94756:239;;:::o;40572:158::-;40645:4;40669:53;40677:3;:10;;40713:5;40697:23;;40689:32;;40669:7;:53::i;:::-;40662:60;;40572:158;;;;:::o;83017:346::-;83136:1;83119:19;;:5;:19;;;83111:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;83217:1;83198:21;;:7;:21;;;83190:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;83301:6;83271:11;:18;83283:5;83271:18;;;;;;;;;;;;;;;:27;83290:7;83271:27;;;;;;;;;;;;;;;:36;;;;83339:7;83323:32;;83332:5;83323:32;;;83348:6;83323:32;;;;;;:::i;:::-;;;;;;;;83017:346;;;:::o;84673:91::-;;;;:::o;85368:90::-;;;;:::o;36749:120::-;36816:7;36843:3;:11;;36855:5;36843:18;;;;;;;;:::i;:::-;;;;;;;;;;36836:25;;36749:120;;;;:::o;36286:109::-;36342:7;36369:3;:11;;:18;;;;36362:25;;36286:109;;;:::o;29156:649::-;29580:23;29606:69;29634:4;29606:69;;;;;;;;;;;;;;;;;29614:5;29606:27;;;;:69;;;;;:::i;:::-;29580:95;;29715:1;29694:10;:17;:22;:56;;;;29731:10;29720:30;;;;;;;;;;;;:::i;:::-;29694:56;29686:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29226:579;29156:649;;:::o;63919:151::-;63977:13;64010:52;64038:4;64022:22;;61794:2;64010:52;;:11;:52::i;:::-;64003:59;;63919:151;;;:::o;63315:447::-;63390:13;63416:19;63461:1;63452:6;63448:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;63438:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63416:47;;63474:15;:6;63481:1;63474:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;63500;:6;63507:1;63500:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;63531:9;63556:1;63547:6;63543:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;63531:26;;63526:131;63563:1;63559;:5;63526:131;;;63598:8;63615:3;63607:5;:11;63598:21;;;;;;;:::i;:::-;;;;;63586:6;63593:1;63586:9;;;;;;;;:::i;:::-;;;;;:33;;;;;;;;;;;63644:1;63634:11;;;;;63566:3;;;;:::i;:::-;;;63526:131;;;;63684:1;63675:5;:10;63667:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;63747:6;63733:21;;;63315:447;;;;:::o;33975:414::-;34038:4;34060:21;34070:3;34075:5;34060:9;:21::i;:::-;34055:327;;34098:3;:11;;34115:5;34098:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34281:3;:11;;:18;;;;34259:3;:12;;:19;34272:5;34259:19;;;;;;;;;;;:40;;;;34321:4;34314:11;;;;34055:327;34365:5;34358:12;;33975:414;;;;;:::o;34565:1420::-;34631:4;34749:18;34770:3;:12;;:19;34783:5;34770:19;;;;;;;;;;;;34749:40;;34820:1;34806:10;:15;34802:1176;;35181:21;35218:1;35205:10;:14;;;;:::i;:::-;35181:38;;35234:17;35275:1;35254:3;:11;;:18;;;;:22;;;;:::i;:::-;35234:42;;35310:13;35297:9;:26;35293:405;;35344:17;35364:3;:11;;35376:9;35364:22;;;;;;;;:::i;:::-;;;;;;;;;;35344:42;;35518:9;35489:3;:11;;35501:13;35489:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;35629:10;35603:3;:12;;:23;35616:9;35603:23;;;;;;;;;;;:36;;;;35325:373;35293:405;35779:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35874:3;:12;;:19;35887:5;35874:19;;;;;;;;;;;35867:26;;;35917:4;35910:11;;;;;;;34802:1176;35961:5;35954:12;;;34565:1420;;;;;:::o;11201:229::-;11338:12;11370:52;11392:6;11400:4;11406:1;11409:12;11370:21;:52::i;:::-;11363:59;;11201:229;;;;;:::o;36071:129::-;36144:4;36191:1;36168:3;:12;;:19;36181:5;36168:19;;;;;;;;;;;;:24;;36161:31;;36071:129;;;;:::o;12287:455::-;12457:12;12515:5;12490:21;:30;;12482:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;12575:12;12589:23;12616:6;:11;;12635:5;12642:4;12616:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12574:73;;;;12665:69;12692:6;12700:7;12709:10;12721:12;12665:26;:69::i;:::-;12658:76;;;;12287:455;;;;;;:::o;14860:644::-;15045:12;15074:7;15070:427;;;15123:1;15102:10;:17;:22;15098:290;;15320:18;15331:6;15320:10;:18::i;:::-;15312:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;15098:290;15409:10;15402:17;;;;15070:427;15452:33;15460:10;15472:12;15452:7;:33::i;:::-;14860:644;;;;;;;:::o;8446:326::-;8506:4;8763:1;8741:7;:19;;;:23;8734:30;;8446:326;;;:::o;16046:552::-;16227:1;16207:10;:17;:21;16203:388;;;16439:10;16433:17;16496:15;16483:10;16479:2;16475:19;16468:44;16203:388;16566:12;16559:20;;;;;;;;;;;:::i;:::-;;;;;;;;88:117:1;197:1;194;187:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:126::-;2897:7;2937:42;2930:5;2926:54;2915:65;;2860:126;;;:::o;2992:96::-;3029:7;3058:24;3076:5;3058:24;:::i;:::-;3047:35;;2992:96;;;:::o;3094:122::-;3167:24;3185:5;3167:24;:::i;:::-;3160:5;3157:35;3147:63;;3206:1;3203;3196:12;3147:63;3094:122;:::o;3222:139::-;3268:5;3306:6;3293:20;3284:29;;3322:33;3349:5;3322:33;:::i;:::-;3222:139;;;;:::o;3367:77::-;3404:7;3433:5;3422:16;;3367:77;;;:::o;3450:122::-;3523:24;3541:5;3523:24;:::i;:::-;3516:5;3513:35;3503:63;;3562:1;3559;3552:12;3503:63;3450:122;:::o;3578:139::-;3624:5;3662:6;3649:20;3640:29;;3678:33;3705:5;3678:33;:::i;:::-;3578:139;;;;:::o;3723:474::-;3791:6;3799;3848:2;3836:9;3827:7;3823:23;3819:32;3816:119;;;3854:79;;:::i;:::-;3816:119;3974:1;3999:53;4044:7;4035:6;4024:9;4020:22;3999:53;:::i;:::-;3989:63;;3945:117;4101:2;4127:53;4172:7;4163:6;4152:9;4148:22;4127:53;:::i;:::-;4117:63;;4072:118;3723:474;;;;;:::o;4203:118::-;4290:24;4308:5;4290:24;:::i;:::-;4285:3;4278:37;4203:118;;:::o;4327:222::-;4420:4;4458:2;4447:9;4443:18;4435:26;;4471:71;4539:1;4528:9;4524:17;4515:6;4471:71;:::i;:::-;4327:222;;;;:::o;4555:77::-;4592:7;4621:5;4610:16;;4555:77;;;:::o;4638:118::-;4725:24;4743:5;4725:24;:::i;:::-;4720:3;4713:37;4638:118;;:::o;4762:222::-;4855:4;4893:2;4882:9;4878:18;4870:26;;4906:71;4974:1;4963:9;4959:17;4950:6;4906:71;:::i;:::-;4762:222;;;;:::o;4990:619::-;5067:6;5075;5083;5132:2;5120:9;5111:7;5107:23;5103:32;5100:119;;;5138:79;;:::i;:::-;5100:119;5258:1;5283:53;5328:7;5319:6;5308:9;5304:22;5283:53;:::i;:::-;5273:63;;5229:117;5385:2;5411:53;5456:7;5447:6;5436:9;5432:22;5411:53;:::i;:::-;5401:63;;5356:118;5513:2;5539:53;5584:7;5575:6;5564:9;5560:22;5539:53;:::i;:::-;5529:63;;5484:118;4990:619;;;;;:::o;5615:122::-;5688:24;5706:5;5688:24;:::i;:::-;5681:5;5678:35;5668:63;;5727:1;5724;5717:12;5668:63;5615:122;:::o;5743:139::-;5789:5;5827:6;5814:20;5805:29;;5843:33;5870:5;5843:33;:::i;:::-;5743:139;;;;:::o;5888:329::-;5947:6;5996:2;5984:9;5975:7;5971:23;5967:32;5964:119;;;6002:79;;:::i;:::-;5964:119;6122:1;6147:53;6192:7;6183:6;6172:9;6168:22;6147:53;:::i;:::-;6137:63;;6093:117;5888:329;;;;:::o;6223:474::-;6291:6;6299;6348:2;6336:9;6327:7;6323:23;6319:32;6316:119;;;6354:79;;:::i;:::-;6316:119;6474:1;6499:53;6544:7;6535:6;6524:9;6520:22;6499:53;:::i;:::-;6489:63;;6445:117;6601:2;6627:53;6672:7;6663:6;6652:9;6648:22;6627:53;:::i;:::-;6617:63;;6572:118;6223:474;;;;;:::o;6703:86::-;6738:7;6778:4;6771:5;6767:16;6756:27;;6703:86;;;:::o;6795:112::-;6878:22;6894:5;6878:22;:::i;:::-;6873:3;6866:35;6795:112;;:::o;6913:214::-;7002:4;7040:2;7029:9;7025:18;7017:26;;7053:67;7117:1;7106:9;7102:17;7093:6;7053:67;:::i;:::-;6913:214;;;;:::o;7133:329::-;7192:6;7241:2;7229:9;7220:7;7216:23;7212:32;7209:119;;;7247:79;;:::i;:::-;7209:119;7367:1;7392:53;7437:7;7428:6;7417:9;7413:22;7392:53;:::i;:::-;7382:63;;7338:117;7133:329;;;;:::o;7468:::-;7527:6;7576:2;7564:9;7555:7;7551:23;7547:32;7544:119;;;7582:79;;:::i;:::-;7544:119;7702:1;7727:53;7772:7;7763:6;7752:9;7748:22;7727:53;:::i;:::-;7717:63;;7673:117;7468:329;;;;:::o;7803:116::-;7873:21;7888:5;7873:21;:::i;:::-;7866:5;7863:32;7853:60;;7909:1;7906;7899:12;7853:60;7803:116;:::o;7925:133::-;7968:5;8006:6;7993:20;7984:29;;8022:30;8046:5;8022:30;:::i;:::-;7925:133;;;;:::o;8064:613::-;8138:6;8146;8154;8203:2;8191:9;8182:7;8178:23;8174:32;8171:119;;;8209:79;;:::i;:::-;8171:119;8329:1;8354:53;8399:7;8390:6;8379:9;8375:22;8354:53;:::i;:::-;8344:63;;8300:117;8456:2;8482:53;8527:7;8518:6;8507:9;8503:22;8482:53;:::i;:::-;8472:63;;8427:118;8584:2;8610:50;8652:7;8643:6;8632:9;8628:22;8610:50;:::i;:::-;8600:60;;8555:115;8064:613;;;;;:::o;8683:118::-;8770:24;8788:5;8770:24;:::i;:::-;8765:3;8758:37;8683:118;;:::o;8807:222::-;8900:4;8938:2;8927:9;8923:18;8915:26;;8951:71;9019:1;9008:9;9004:17;8995:6;8951:71;:::i;:::-;8807:222;;;;:::o;9035:474::-;9103:6;9111;9160:2;9148:9;9139:7;9135:23;9131:32;9128:119;;;9166:79;;:::i;:::-;9128:119;9286:1;9311:53;9356:7;9347:6;9336:9;9332:22;9311:53;:::i;:::-;9301:63;;9257:117;9413:2;9439:53;9484:7;9475:6;9464:9;9460:22;9439:53;:::i;:::-;9429:63;;9384:118;9035:474;;;;;:::o;9515:118::-;9586:22;9602:5;9586:22;:::i;:::-;9579:5;9576:33;9566:61;;9623:1;9620;9613:12;9566:61;9515:118;:::o;9639:135::-;9683:5;9721:6;9708:20;9699:29;;9737:31;9762:5;9737:31;:::i;:::-;9639:135;;;;:::o;9780:1199::-;9891:6;9899;9907;9915;9923;9931;9939;9988:3;9976:9;9967:7;9963:23;9959:33;9956:120;;;9995:79;;:::i;:::-;9956:120;10115:1;10140:53;10185:7;10176:6;10165:9;10161:22;10140:53;:::i;:::-;10130:63;;10086:117;10242:2;10268:53;10313:7;10304:6;10293:9;10289:22;10268:53;:::i;:::-;10258:63;;10213:118;10370:2;10396:53;10441:7;10432:6;10421:9;10417:22;10396:53;:::i;:::-;10386:63;;10341:118;10498:2;10524:53;10569:7;10560:6;10549:9;10545:22;10524:53;:::i;:::-;10514:63;;10469:118;10626:3;10653:51;10696:7;10687:6;10676:9;10672:22;10653:51;:::i;:::-;10643:61;;10597:117;10753:3;10780:53;10825:7;10816:6;10805:9;10801:22;10780:53;:::i;:::-;10770:63;;10724:119;10882:3;10909:53;10954:7;10945:6;10934:9;10930:22;10909:53;:::i;:::-;10899:63;;10853:119;9780:1199;;;;;;;;;;:::o;10985:474::-;11053:6;11061;11110:2;11098:9;11089:7;11085:23;11081:32;11078:119;;;11116:79;;:::i;:::-;11078:119;11236:1;11261:53;11306:7;11297:6;11286:9;11282:22;11261:53;:::i;:::-;11251:63;;11207:117;11363:2;11389:53;11434:7;11425:6;11414:9;11410:22;11389:53;:::i;:::-;11379:63;;11334:118;10985:474;;;;;:::o;11465:180::-;11513:77;11510:1;11503:88;11610:4;11607:1;11600:15;11634:4;11631:1;11624:15;11651:320;11695:6;11732:1;11726:4;11722:12;11712:22;;11779:1;11773:4;11769:12;11800:18;11790:81;;11856:4;11848:6;11844:17;11834:27;;11790:81;11918:2;11910:6;11907:14;11887:18;11884:38;11881:84;;11937:18;;:::i;:::-;11881:84;11702:269;11651:320;;;:::o;11977:234::-;12117:34;12113:1;12105:6;12101:14;12094:58;12186:17;12181:2;12173:6;12169:15;12162:42;11977:234;:::o;12217:366::-;12359:3;12380:67;12444:2;12439:3;12380:67;:::i;:::-;12373:74;;12456:93;12545:3;12456:93;:::i;:::-;12574:2;12569:3;12565:12;12558:19;;12217:366;;;:::o;12589:419::-;12755:4;12793:2;12782:9;12778:18;12770:26;;12842:9;12836:4;12832:20;12828:1;12817:9;12813:17;12806:47;12870:131;12996:4;12870:131;:::i;:::-;12862:139;;12589:419;;;:::o;13014:171::-;13154:23;13150:1;13142:6;13138:14;13131:47;13014:171;:::o;13191:366::-;13333:3;13354:67;13418:2;13413:3;13354:67;:::i;:::-;13347:74;;13430:93;13519:3;13430:93;:::i;:::-;13548:2;13543:3;13539:12;13532:19;;13191:366;;;:::o;13563:419::-;13729:4;13767:2;13756:9;13752:18;13744:26;;13816:9;13810:4;13806:20;13802:1;13791:9;13787:17;13780:47;13844:131;13970:4;13844:131;:::i;:::-;13836:139;;13563:419;;;:::o;13988:172::-;14128:24;14124:1;14116:6;14112:14;14105:48;13988:172;:::o;14166:366::-;14308:3;14329:67;14393:2;14388:3;14329:67;:::i;:::-;14322:74;;14405:93;14494:3;14405:93;:::i;:::-;14523:2;14518:3;14514:12;14507:19;;14166:366;;;:::o;14538:419::-;14704:4;14742:2;14731:9;14727:18;14719:26;;14791:9;14785:4;14781:20;14777:1;14766:9;14762:17;14755:47;14819:131;14945:4;14819:131;:::i;:::-;14811:139;;14538:419;;;:::o;14963:442::-;15112:4;15150:2;15139:9;15135:18;15127:26;;15163:71;15231:1;15220:9;15216:17;15207:6;15163:71;:::i;:::-;15244:72;15312:2;15301:9;15297:18;15288:6;15244:72;:::i;:::-;15326;15394:2;15383:9;15379:18;15370:6;15326:72;:::i;:::-;14963:442;;;;;;:::o;15411:169::-;15551:21;15547:1;15539:6;15535:14;15528:45;15411:169;:::o;15586:366::-;15728:3;15749:67;15813:2;15808:3;15749:67;:::i;:::-;15742:74;;15825:93;15914:3;15825:93;:::i;:::-;15943:2;15938:3;15934:12;15927:19;;15586:366;;;:::o;15958:419::-;16124:4;16162:2;16151:9;16147:18;16139:26;;16211:9;16205:4;16201:20;16197:1;16186:9;16182:17;16175:47;16239:131;16365:4;16239:131;:::i;:::-;16231:139;;15958:419;;;:::o;16383:180::-;16431:77;16428:1;16421:88;16528:4;16525:1;16518:15;16552:4;16549:1;16542:15;16569:233;16608:3;16631:24;16649:5;16631:24;:::i;:::-;16622:33;;16677:66;16670:5;16667:77;16664:103;;16747:18;;:::i;:::-;16664:103;16794:1;16787:5;16783:13;16776:20;;16569:233;;;:::o;16808:775::-;17041:4;17079:3;17068:9;17064:19;17056:27;;17093:71;17161:1;17150:9;17146:17;17137:6;17093:71;:::i;:::-;17174:72;17242:2;17231:9;17227:18;17218:6;17174:72;:::i;:::-;17256;17324:2;17313:9;17309:18;17300:6;17256:72;:::i;:::-;17338;17406:2;17395:9;17391:18;17382:6;17338:72;:::i;:::-;17420:73;17488:3;17477:9;17473:19;17464:6;17420:73;:::i;:::-;17503;17571:3;17560:9;17556:19;17547:6;17503:73;:::i;:::-;16808:775;;;;;;;;;:::o;17589:148::-;17691:11;17728:3;17713:18;;17589:148;;;;:::o;17743:214::-;17883:66;17879:1;17871:6;17867:14;17860:90;17743:214;:::o;17963:400::-;18123:3;18144:84;18226:1;18221:3;18144:84;:::i;:::-;18137:91;;18237:93;18326:3;18237:93;:::i;:::-;18355:1;18350:3;18346:11;18339:18;;17963:400;;;:::o;18369:79::-;18408:7;18437:5;18426:16;;18369:79;;;:::o;18454:157::-;18559:45;18579:24;18597:5;18579:24;:::i;:::-;18559:45;:::i;:::-;18554:3;18547:58;18454:157;;:::o;18617:663::-;18858:3;18880:148;19024:3;18880:148;:::i;:::-;18873:155;;19038:75;19109:3;19100:6;19038:75;:::i;:::-;19138:2;19133:3;19129:12;19122:19;;19151:75;19222:3;19213:6;19151:75;:::i;:::-;19251:2;19246:3;19242:12;19235:19;;19271:3;19264:10;;18617:663;;;;;:::o;19286:172::-;19426:24;19422:1;19414:6;19410:14;19403:48;19286:172;:::o;19464:366::-;19606:3;19627:67;19691:2;19686:3;19627:67;:::i;:::-;19620:74;;19703:93;19792:3;19703:93;:::i;:::-;19821:2;19816:3;19812:12;19805:19;;19464:366;;;:::o;19836:419::-;20002:4;20040:2;20029:9;20025:18;20017:26;;20089:9;20083:4;20079:20;20075:1;20064:9;20060:17;20053:47;20117:131;20243:4;20117:131;:::i;:::-;20109:139;;19836:419;;;:::o;20261:545::-;20434:4;20472:3;20461:9;20457:19;20449:27;;20486:71;20554:1;20543:9;20539:17;20530:6;20486:71;:::i;:::-;20567:68;20631:2;20620:9;20616:18;20607:6;20567:68;:::i;:::-;20645:72;20713:2;20702:9;20698:18;20689:6;20645:72;:::i;:::-;20727;20795:2;20784:9;20780:18;20771:6;20727:72;:::i;:::-;20261:545;;;;;;;:::o;20812:169::-;20952:21;20948:1;20940:6;20936:14;20929:45;20812:169;:::o;20987:366::-;21129:3;21150:67;21214:2;21209:3;21150:67;:::i;:::-;21143:74;;21226:93;21315:3;21226:93;:::i;:::-;21344:2;21339:3;21335:12;21328:19;;20987:366;;;:::o;21359:419::-;21525:4;21563:2;21552:9;21548:18;21540:26;;21612:9;21606:4;21602:20;21598:1;21587:9;21583:17;21576:47;21640:131;21766:4;21640:131;:::i;:::-;21632:139;;21359:419;;;:::o;21784:225::-;21924:34;21920:1;21912:6;21908:14;21901:58;21993:8;21988:2;21980:6;21976:15;21969:33;21784:225;:::o;22015:366::-;22157:3;22178:67;22242:2;22237:3;22178:67;:::i;:::-;22171:74;;22254:93;22343:3;22254:93;:::i;:::-;22372:2;22367:3;22363:12;22356:19;;22015:366;;;:::o;22387:419::-;22553:4;22591:2;22580:9;22576:18;22568:26;;22640:9;22634:4;22630:20;22626:1;22615:9;22611:17;22604:47;22668:131;22794:4;22668:131;:::i;:::-;22660:139;;22387:419;;;:::o;22812:180::-;22860:77;22857:1;22850:88;22957:4;22954:1;22947:15;22981:4;22978:1;22971:15;22998:185;23038:1;23055:20;23073:1;23055:20;:::i;:::-;23050:25;;23089:20;23107:1;23089:20;:::i;:::-;23084:25;;23128:1;23118:35;;23133:18;;:::i;:::-;23118:35;23175:1;23172;23168:9;23163:14;;22998:185;;;;:::o;23189:194::-;23229:4;23249:20;23267:1;23249:20;:::i;:::-;23244:25;;23283:20;23301:1;23283:20;:::i;:::-;23278:25;;23327:1;23324;23320:9;23312:17;;23351:1;23345:4;23342:11;23339:37;;;23356:18;;:::i;:::-;23339:37;23189:194;;;;:::o;23389:191::-;23429:3;23448:20;23466:1;23448:20;:::i;:::-;23443:25;;23482:20;23500:1;23482:20;:::i;:::-;23477:25;;23525:1;23522;23518:9;23511:16;;23546:3;23543:1;23540:10;23537:36;;;23553:18;;:::i;:::-;23537:36;23389:191;;;;:::o;23586:176::-;23726:28;23722:1;23714:6;23710:14;23703:52;23586:176;:::o;23768:366::-;23910:3;23931:67;23995:2;23990:3;23931:67;:::i;:::-;23924:74;;24007:93;24096:3;24007:93;:::i;:::-;24125:2;24120:3;24116:12;24109:19;;23768:366;;;:::o;24140:419::-;24306:4;24344:2;24333:9;24329:18;24321:26;;24393:9;24387:4;24383:20;24379:1;24368:9;24364:17;24357:47;24421:131;24547:4;24421:131;:::i;:::-;24413:139;;24140:419;;;:::o;24565:332::-;24686:4;24724:2;24713:9;24709:18;24701:26;;24737:71;24805:1;24794:9;24790:17;24781:6;24737:71;:::i;:::-;24818:72;24886:2;24875:9;24871:18;24862:6;24818:72;:::i;:::-;24565:332;;;;;:::o;24903:182::-;25043:34;25039:1;25031:6;25027:14;25020:58;24903:182;:::o;25091:366::-;25233:3;25254:67;25318:2;25313:3;25254:67;:::i;:::-;25247:74;;25330:93;25419:3;25330:93;:::i;:::-;25448:2;25443:3;25439:12;25432:19;;25091:366;;;:::o;25463:419::-;25629:4;25667:2;25656:9;25652:18;25644:26;;25716:9;25710:4;25706:20;25702:1;25691:9;25687:17;25680:47;25744:131;25870:4;25744:131;:::i;:::-;25736:139;;25463:419;;;:::o;25888:179::-;26028:31;26024:1;26016:6;26012:14;26005:55;25888:179;:::o;26073:366::-;26215:3;26236:67;26300:2;26295:3;26236:67;:::i;:::-;26229:74;;26312:93;26401:3;26312:93;:::i;:::-;26430:2;26425:3;26421:12;26414:19;;26073:366;;;:::o;26445:419::-;26611:4;26649:2;26638:9;26634:18;26626:26;;26698:9;26692:4;26688:20;26684:1;26673:9;26669:17;26662:47;26726:131;26852:4;26726:131;:::i;:::-;26718:139;;26445:419;;;:::o;26870:220::-;27010:34;27006:1;26998:6;26994:14;26987:58;27079:3;27074:2;27066:6;27062:15;27055:28;26870:220;:::o;27096:366::-;27238:3;27259:67;27323:2;27318:3;27259:67;:::i;:::-;27252:74;;27335:93;27424:3;27335:93;:::i;:::-;27453:2;27448:3;27444:12;27437:19;;27096:366;;;:::o;27468:419::-;27634:4;27672:2;27661:9;27657:18;27649:26;;27721:9;27715:4;27711:20;27707:1;27696:9;27692:17;27685:47;27749:131;27875:4;27749:131;:::i;:::-;27741:139;;27468:419;;;:::o;27893:221::-;28033:34;28029:1;28021:6;28017:14;28010:58;28102:4;28097:2;28089:6;28085:15;28078:29;27893:221;:::o;28120:366::-;28262:3;28283:67;28347:2;28342:3;28283:67;:::i;:::-;28276:74;;28359:93;28448:3;28359:93;:::i;:::-;28477:2;28472:3;28468:12;28461:19;;28120:366;;;:::o;28492:419::-;28658:4;28696:2;28685:9;28681:18;28673:26;;28745:9;28739:4;28735:20;28731:1;28720:9;28716:17;28709:47;28773:131;28899:4;28773:131;:::i;:::-;28765:139;;28492:419;;;:::o;28917:410::-;28957:7;28980:20;28998:1;28980:20;:::i;:::-;28975:25;;29014:20;29032:1;29014:20;:::i;:::-;29009:25;;29069:1;29066;29062:9;29091:30;29109:11;29091:30;:::i;:::-;29080:41;;29270:1;29261:7;29257:15;29254:1;29251:22;29231:1;29224:9;29204:83;29181:139;;29300:18;;:::i;:::-;29181:139;28965:362;28917:410;;;;:::o;29333:173::-;29473:25;29469:1;29461:6;29457:14;29450:49;29333:173;:::o;29512:402::-;29672:3;29693:85;29775:2;29770:3;29693:85;:::i;:::-;29686:92;;29787:93;29876:3;29787:93;:::i;:::-;29905:2;29900:3;29896:12;29889:19;;29512:402;;;:::o;29920:390::-;30026:3;30054:39;30087:5;30054:39;:::i;:::-;30109:89;30191:6;30186:3;30109:89;:::i;:::-;30102:96;;30207:65;30265:6;30260:3;30253:4;30246:5;30242:16;30207:65;:::i;:::-;30297:6;30292:3;30288:16;30281:23;;30030:280;29920:390;;;;:::o;30316:167::-;30456:19;30452:1;30444:6;30440:14;30433:43;30316:167;:::o;30489:402::-;30649:3;30670:85;30752:2;30747:3;30670:85;:::i;:::-;30663:92;;30764:93;30853:3;30764:93;:::i;:::-;30882:2;30877:3;30873:12;30866:19;;30489:402;;;:::o;30897:967::-;31279:3;31301:148;31445:3;31301:148;:::i;:::-;31294:155;;31466:95;31557:3;31548:6;31466:95;:::i;:::-;31459:102;;31578:148;31722:3;31578:148;:::i;:::-;31571:155;;31743:95;31834:3;31825:6;31743:95;:::i;:::-;31736:102;;31855:3;31848:10;;30897:967;;;;;:::o;31870:223::-;32010:34;32006:1;31998:6;31994:14;31987:58;32079:6;32074:2;32066:6;32062:15;32055:31;31870:223;:::o;32099:366::-;32241:3;32262:67;32326:2;32321:3;32262:67;:::i;:::-;32255:74;;32338:93;32427:3;32338:93;:::i;:::-;32456:2;32451:3;32447:12;32440:19;;32099:366;;;:::o;32471:419::-;32637:4;32675:2;32664:9;32660:18;32652:26;;32724:9;32718:4;32714:20;32710:1;32699:9;32695:17;32688:47;32752:131;32878:4;32752:131;:::i;:::-;32744:139;;32471:419;;;:::o;32896:221::-;33036:34;33032:1;33024:6;33020:14;33013:58;33105:4;33100:2;33092:6;33088:15;33081:29;32896:221;:::o;33123:366::-;33265:3;33286:67;33350:2;33345:3;33286:67;:::i;:::-;33279:74;;33362:93;33451:3;33362:93;:::i;:::-;33480:2;33475:3;33471:12;33464:19;;33123:366;;;:::o;33495:419::-;33661:4;33699:2;33688:9;33684:18;33676:26;;33748:9;33742:4;33738:20;33734:1;33723:9;33719:17;33712:47;33776:131;33902:4;33776:131;:::i;:::-;33768:139;;33495:419;;;:::o;33920:180::-;33968:77;33965:1;33958:88;34065:4;34062:1;34055:15;34089:4;34086:1;34079:15;34106:137;34160:5;34191:6;34185:13;34176:22;;34207:30;34231:5;34207:30;:::i;:::-;34106:137;;;;:::o;34249:345::-;34316:6;34365:2;34353:9;34344:7;34340:23;34336:32;34333:119;;;34371:79;;:::i;:::-;34333:119;34491:1;34516:61;34569:7;34560:6;34549:9;34545:22;34516:61;:::i;:::-;34506:71;;34462:125;34249:345;;;;:::o;34600:229::-;34740:34;34736:1;34728:6;34724:14;34717:58;34809:12;34804:2;34796:6;34792:15;34785:37;34600:229;:::o;34835:366::-;34977:3;34998:67;35062:2;35057:3;34998:67;:::i;:::-;34991:74;;35074:93;35163:3;35074:93;:::i;:::-;35192:2;35187:3;35183:12;35176:19;;34835:366;;;:::o;35207:419::-;35373:4;35411:2;35400:9;35396:18;35388:26;;35460:9;35454:4;35450:20;35446:1;35435:9;35431:17;35424:47;35488:131;35614:4;35488:131;:::i;:::-;35480:139;;35207:419;;;:::o;35632:180::-;35680:77;35677:1;35670:88;35777:4;35774:1;35767:15;35801:4;35798:1;35791:15;35818:171;35857:3;35880:24;35898:5;35880:24;:::i;:::-;35871:33;;35926:4;35919:5;35916:15;35913:41;;35934:18;;:::i;:::-;35913:41;35981:1;35974:5;35970:13;35963:20;;35818:171;;;:::o;35995:182::-;36135:34;36131:1;36123:6;36119:14;36112:58;35995:182;:::o;36183:366::-;36325:3;36346:67;36410:2;36405:3;36346:67;:::i;:::-;36339:74;;36422:93;36511:3;36422:93;:::i;:::-;36540:2;36535:3;36531:12;36524:19;;36183:366;;;:::o;36555:419::-;36721:4;36759:2;36748:9;36744:18;36736:26;;36808:9;36802:4;36798:20;36794:1;36783:9;36779:17;36772:47;36836:131;36962:4;36836:131;:::i;:::-;36828:139;;36555:419;;;:::o;36980:180::-;37028:77;37025:1;37018:88;37125:4;37122:1;37115:15;37149:4;37146:1;37139:15;37166:225;37306:34;37302:1;37294:6;37290:14;37283:58;37375:8;37370:2;37362:6;37358:15;37351:33;37166:225;:::o;37397:366::-;37539:3;37560:67;37624:2;37619:3;37560:67;:::i;:::-;37553:74;;37636:93;37725:3;37636:93;:::i;:::-;37754:2;37749:3;37745:12;37738:19;;37397:366;;;:::o;37769:419::-;37935:4;37973:2;37962:9;37958:18;37950:26;;38022:9;38016:4;38012:20;38008:1;37997:9;37993:17;37986:47;38050:131;38176:4;38050:131;:::i;:::-;38042:139;;37769:419;;;:::o;38194:98::-;38245:6;38279:5;38273:12;38263:22;;38194:98;;;:::o;38298:147::-;38399:11;38436:3;38421:18;;38298:147;;;;:::o;38451:386::-;38555:3;38583:38;38615:5;38583:38;:::i;:::-;38637:88;38718:6;38713:3;38637:88;:::i;:::-;38630:95;;38734:65;38792:6;38787:3;38780:4;38773:5;38769:16;38734:65;:::i;:::-;38824:6;38819:3;38815:16;38808:23;;38559:278;38451:386;;;;:::o;38843:271::-;38973:3;38995:93;39084:3;39075:6;38995:93;:::i;:::-;38988:100;;39105:3;39098:10;;38843:271;;;;:::o;39120:179::-;39260:31;39256:1;39248:6;39244:14;39237:55;39120:179;:::o;39305:366::-;39447:3;39468:67;39532:2;39527:3;39468:67;:::i;:::-;39461:74;;39544:93;39633:3;39544:93;:::i;:::-;39662:2;39657:3;39653:12;39646:19;;39305:366;;;:::o;39677:419::-;39843:4;39881:2;39870:9;39866:18;39858:26;;39930:9;39924:4;39920:20;39916:1;39905:9;39901:17;39894:47;39958:131;40084:4;39958:131;:::i;:::-;39950:139;;39677:419;;;:::o

Swarm Source

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