Token gmUSD

 

Overview ERC20

Price
$1.08 @ 0.000676 ETH (+0.09%)
Fully Diluted Market Cap
Total Supply:
507,577.567459 gmUSD

Holders:
661 addresses

Transfers:
-

Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

OVERVIEW

GND Protocol is the mother protocol of $gmUSD, a Yield-Bearing, Fully-Backed Stablecoin built on top of Uniswap V3's liquidity engine and farm.

Market

Volume (24H):$2,201.27
Market Capitalization:$0.00
Circulating Supply:0.00 gmUSD
Market Data Source: Coinmarketcap


Update? Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
gmUSD

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Arbiscan.io on 2023-02-21
*/

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


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

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


// OpenZeppelin Contracts (last updated v4.6.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.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-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.
 */
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].
     */
    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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.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.8.0) (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;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

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

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    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");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    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");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// 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/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 value {ERC20} uses, unless this function is
     * 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: src/gmUSD.sol



pragma solidity 0.8.12;






contract gmUSD is ERC20("gmUSD", "gmUSD"), Ownable , ReentrancyGuard{ 

    address public arbitragor;
    constructor() {
        arbitragor = msg.sender;
    }
   
    using SafeERC20 for IERC20;
    using SafeMath for uint256;
    bool public onlyArbitragor = true;

    uint256 public vestingPeriod = 365 days;
    IERC20 public gmdUSDC = IERC20(0x3DB4B7DA67dd5aF61Cb9b3C70501B1BdB24b2C22);
    IERC20 public gDAI = IERC20(0xd85E038593d7A098614721EaE955EC2022B9B91B);


    function updateArbitragor(address _newArbitragor) external onlyOwner {
        arbitragor = _newArbitragor;
    }
   
    function GenesisMint(uint256 _amount, IERC20 _token) external nonReentrant {
        require(totalSupply() <= 150000e18, "max initial supply");
        require(gmdUSDC.balanceOf(address(this)) <= 100_000e18, "max gmdUSDC");
        require(gDAI.balanceOf(address(this)) <= 50_000e18, "max gDai");
        require(_token == gmdUSDC || _token == gDAI, "not pegged token");
        require(_token.balanceOf(msg.sender) >= _amount, "token balance too low");
        uint256 amountOut = _amount;
        _token.safeTransferFrom(msg.sender, address(this), _amount);
        _mint(msg.sender, amountOut);
        
    }


    function mint(uint256 _amount, IERC20 _token) external nonReentrant {
        if (onlyArbitragor){
            require(msg.sender == arbitragor, "not arbitragor");
        }
        
        require(_token == gmdUSDC || _token == gDAI, "not pegged token");
        require(_token.balanceOf(msg.sender) >= _amount, "token balance too low");
        uint256 amountOut = _amount;
        _mint(msg.sender, amountOut);
        _token.safeTransferFrom(msg.sender, address(this), _amount);
    }

    function redeem(uint256 _amount, IERC20 _token) external nonReentrant {
        if (onlyArbitragor){
            require(msg.sender == arbitragor, "not arbitragor");
        }
        require(_token == gmdUSDC || _token == gDAI, "not pegged token");
        require(balanceOf(msg.sender) >= _amount, "token balance too low");
        uint256 amountOut = _amount;
        _burn(msg.sender, amountOut);
        _token.safeTransfer(msg.sender, _amount);
    }


}

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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"contract IERC20","name":"_token","type":"address"}],"name":"GenesisMint","outputs":[],"stateMutability":"nonpayable","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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"arbitragor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"gDAI","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gmdUSDC","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"contract IERC20","name":"_token","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyArbitragor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"contract IERC20","name":"_token","type":"address"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"amount","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":"amount","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":"address","name":"_newArbitragor","type":"address"}],"name":"updateArbitragor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vestingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526001600760146101000a81548160ff0219169083151502179055506301e13380600855733db4b7da67dd5af61cb9b3c70501b1bdb24b2c22600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d85e038593d7a098614721eae955ec2022b9b91b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000de57600080fd5b506040518060400160405280600581526020017f676d5553440000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f676d555344000000000000000000000000000000000000000000000000000000815250816003908051906020019062000163929190620002bc565b5080600490805190602001906200017c929190620002bc565b5050506200019f62000193620001ee60201b60201c565b620001f660201b60201c565b600160068190555033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003d1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ca906200039b565b90600052602060002090601f016020900481019282620002ee57600085556200033a565b82601f106200030957805160ff19168380011785556200033a565b828001600101855582156200033a579182015b82811115620003395782518255916020019190600101906200031c565b5b5090506200034991906200034d565b5090565b5b80821115620003685760008160009055506001016200034e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003b457607f821691505b60208210811415620003cb57620003ca6200036c565b5b50919050565b6130b680620003e16000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c357806395d89b411161007c57806395d89b411461037c578063a457c2d71461039a578063a9059cbb146103ca578063dd62ed3e146103fa578063e789f4331461042a578063f2fde38b146104485761014d565b806370a08231146102ce578063715018a6146102fe5780637313ee5a146103085780637bde82f2146103265780638da5cb5b1461034257806394bf804d146103605761014d565b8063313ce56711610115578063313ce5671461020c5780633323739d1461022a578063395093511461024857806348853cf814610278578063577322471461029457806362aede3c146102b05761014d565b806306fdde0314610152578063095ea7b3146101705780630ca01dda146101a057806318160ddd146101be57806323b872dd146101dc575b600080fd5b61015a610464565b6040516101679190611fe3565b60405180910390f35b61018a6004803603810190610185919061209e565b6104f6565b60405161019791906120f9565b60405180910390f35b6101a8610519565b6040516101b591906120f9565b60405180910390f35b6101c661052c565b6040516101d39190612123565b60405180910390f35b6101f660048036038101906101f1919061213e565b610536565b60405161020391906120f9565b60405180910390f35b610214610565565b60405161022191906121ad565b60405180910390f35b61023261056e565b60405161023f91906121d7565b60405180910390f35b610262600480360381019061025d919061209e565b610594565b60405161026f91906120f9565b60405180910390f35b610292600480360381019061028d9190612230565b6105cb565b005b6102ae60048036038101906102a99190612270565b6109e4565b005b6102b8610a30565b6040516102c591906122fc565b60405180910390f35b6102e860048036038101906102e39190612270565b610a56565b6040516102f59190612123565b60405180910390f35b610306610a9e565b005b610310610ab2565b60405161031d9190612123565b60405180910390f35b610340600480360381019061033b9190612230565b610ab8565b005b61034a610ce0565b60405161035791906121d7565b60405180910390f35b61037a60048036038101906103759190612230565b610d0a565b005b610384610fa5565b6040516103919190611fe3565b60405180910390f35b6103b460048036038101906103af919061209e565b611037565b6040516103c191906120f9565b60405180910390f35b6103e460048036038101906103df919061209e565b6110ae565b6040516103f191906120f9565b60405180910390f35b610414600480360381019061040f9190612317565b6110d1565b6040516104219190612123565b60405180910390f35b610432611158565b60405161043f91906122fc565b60405180910390f35b610462600480360381019061045d9190612270565b61117e565b005b60606003805461047390612386565b80601f016020809104026020016040519081016040528092919081815260200182805461049f90612386565b80156104ec5780601f106104c1576101008083540402835291602001916104ec565b820191906000526020600020905b8154815290600101906020018083116104cf57829003601f168201915b5050505050905090565b600080610501611202565b905061050e81858561120a565b600191505092915050565b600760149054906101000a900460ff1681565b6000600254905090565b600080610541611202565b905061054e8582856113d5565b610559858585611461565b60019150509392505050565b60006012905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061059f611202565b90506105c08185856105b185896110d1565b6105bb91906123e7565b61120a565b600191505092915050565b6105d36116d9565b691fc3842bd1f071c000006105e661052c565b1115610627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061e90612489565b60405180910390fd5b69152d02c7e14af6800000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161068d91906121d7565b602060405180830381865afa1580156106aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ce91906124be565b111561070f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070690612537565b60405180910390fd5b690a968163f0a57b400000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161077591906121d7565b602060405180830381865afa158015610792573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107b691906124be565b11156107f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ee906125a3565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614806108a05750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b6108df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d69061260f565b60405180910390fd5b818173ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161091991906121d7565b602060405180830381865afa158015610936573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095a91906124be565b101561099b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109929061267b565b60405180910390fd5b60008290506109cd3330858573ffffffffffffffffffffffffffffffffffffffff16611729909392919063ffffffff16565b6109d733826117b2565b506109e0611909565b5050565b6109ec611913565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610aa6611913565b610ab06000611991565b565b60085481565b610ac06116d9565b600760149054906101000a900460ff1615610b6657600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c906126e7565b60405180910390fd5b5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480610c0f5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c459061260f565b60405180910390fd5b81610c5833610a56565b1015610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c909061267b565b60405180910390fd5b6000829050610ca83382611a57565b610cd333848473ffffffffffffffffffffffffffffffffffffffff16611c259092919063ffffffff16565b50610cdc611909565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610d126116d9565b600760149054906101000a900460ff1615610db857600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906126e7565b60405180910390fd5b5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480610e615750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e979061260f565b60405180910390fd5b818173ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610eda91906121d7565b602060405180830381865afa158015610ef7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1b91906124be565b1015610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f539061267b565b60405180910390fd5b6000829050610f6b33826117b2565b610f983330858573ffffffffffffffffffffffffffffffffffffffff16611729909392919063ffffffff16565b50610fa1611909565b5050565b606060048054610fb490612386565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe090612386565b801561102d5780601f106110025761010080835404028352916020019161102d565b820191906000526020600020905b81548152906001019060200180831161101057829003601f168201915b5050505050905090565b600080611042611202565b9050600061105082866110d1565b905083811015611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90612779565b60405180910390fd5b6110a2828686840361120a565b60019250505092915050565b6000806110b9611202565b90506110c6818585611461565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611186611913565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed9061280b565b60405180910390fd5b6111ff81611991565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561127a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112719061289d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e19061292f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113c89190612123565b60405180910390a3505050565b60006113e184846110d1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461145b578181101561144d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114449061299b565b60405180910390fd5b61145a848484840361120a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890612a2d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153890612abf565b60405180910390fd5b61154c838383611cab565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c990612b51565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116c09190612123565b60405180910390a36116d3848484611cb0565b50505050565b6002600654141561171f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171690612bbd565b60405180910390fd5b6002600681905550565b6117ac846323b872dd60e01b85858560405160240161174a93929190612bdd565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611cb5565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181990612c60565b60405180910390fd5b61182e60008383611cab565b806002600082825461184091906123e7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516118f19190612123565b60405180910390a361190560008383611cb0565b5050565b6001600681905550565b61191b611202565b73ffffffffffffffffffffffffffffffffffffffff16611939610ce0565b73ffffffffffffffffffffffffffffffffffffffff161461198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690612ccc565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90612d5e565b60405180910390fd5b611ad382600083611cab565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5090612df0565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c0c9190612123565b60405180910390a3611c2083600084611cb0565b505050565b611ca68363a9059cbb60e01b8484604051602401611c44929190612e10565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611cb5565b505050565b505050565b505050565b6000611d17826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611d7c9092919063ffffffff16565b9050600081511115611d775780806020019051810190611d379190612e65565b611d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6d90612f04565b60405180910390fd5b5b505050565b6060611d8b8484600085611d94565b90509392505050565b606082471015611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd090612f96565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051611e029190612ffd565b60006040518083038185875af1925050503d8060008114611e3f576040519150601f19603f3d011682016040523d82523d6000602084013e611e44565b606091505b5091509150611e5587838387611e61565b92505050949350505050565b60608315611ec457600083511415611ebc57611e7c85611ed7565b611ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb290613060565b60405180910390fd5b5b829050611ecf565b611ece8383611efa565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082511115611f0d5781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f419190611fe3565b60405180910390fd5b600081519050919050565b600082825260208201905092915050565b60005b83811015611f84578082015181840152602081019050611f69565b83811115611f93576000848401525b50505050565b6000601f19601f8301169050919050565b6000611fb582611f4a565b611fbf8185611f55565b9350611fcf818560208601611f66565b611fd881611f99565b840191505092915050565b60006020820190508181036000830152611ffd8184611faa565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120358261200a565b9050919050565b6120458161202a565b811461205057600080fd5b50565b6000813590506120628161203c565b92915050565b6000819050919050565b61207b81612068565b811461208657600080fd5b50565b60008135905061209881612072565b92915050565b600080604083850312156120b5576120b4612005565b5b60006120c385828601612053565b92505060206120d485828601612089565b9150509250929050565b60008115159050919050565b6120f3816120de565b82525050565b600060208201905061210e60008301846120ea565b92915050565b61211d81612068565b82525050565b60006020820190506121386000830184612114565b92915050565b60008060006060848603121561215757612156612005565b5b600061216586828701612053565b935050602061217686828701612053565b925050604061218786828701612089565b9150509250925092565b600060ff82169050919050565b6121a781612191565b82525050565b60006020820190506121c2600083018461219e565b92915050565b6121d18161202a565b82525050565b60006020820190506121ec60008301846121c8565b92915050565b60006121fd8261202a565b9050919050565b61220d816121f2565b811461221857600080fd5b50565b60008135905061222a81612204565b92915050565b6000806040838503121561224757612246612005565b5b600061225585828601612089565b92505060206122668582860161221b565b9150509250929050565b60006020828403121561228657612285612005565b5b600061229484828501612053565b91505092915050565b6000819050919050565b60006122c26122bd6122b88461200a565b61229d565b61200a565b9050919050565b60006122d4826122a7565b9050919050565b60006122e6826122c9565b9050919050565b6122f6816122db565b82525050565b600060208201905061231160008301846122ed565b92915050565b6000806040838503121561232e5761232d612005565b5b600061233c85828601612053565b925050602061234d85828601612053565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061239e57607f821691505b602082108114156123b2576123b1612357565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123f282612068565b91506123fd83612068565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612432576124316123b8565b5b828201905092915050565b7f6d617820696e697469616c20737570706c790000000000000000000000000000600082015250565b6000612473601283611f55565b915061247e8261243d565b602082019050919050565b600060208201905081810360008301526124a281612466565b9050919050565b6000815190506124b881612072565b92915050565b6000602082840312156124d4576124d3612005565b5b60006124e2848285016124a9565b91505092915050565b7f6d617820676d6455534443000000000000000000000000000000000000000000600082015250565b6000612521600b83611f55565b915061252c826124eb565b602082019050919050565b6000602082019050818103600083015261255081612514565b9050919050565b7f6d61782067446169000000000000000000000000000000000000000000000000600082015250565b600061258d600883611f55565b915061259882612557565b602082019050919050565b600060208201905081810360008301526125bc81612580565b9050919050565b7f6e6f742070656767656420746f6b656e00000000000000000000000000000000600082015250565b60006125f9601083611f55565b9150612604826125c3565b602082019050919050565b60006020820190508181036000830152612628816125ec565b9050919050565b7f746f6b656e2062616c616e636520746f6f206c6f770000000000000000000000600082015250565b6000612665601583611f55565b91506126708261262f565b602082019050919050565b6000602082019050818103600083015261269481612658565b9050919050565b7f6e6f742061726269747261676f72000000000000000000000000000000000000600082015250565b60006126d1600e83611f55565b91506126dc8261269b565b602082019050919050565b60006020820190508181036000830152612700816126c4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612763602583611f55565b915061276e82612707565b604082019050919050565b6000602082019050818103600083015261279281612756565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006127f5602683611f55565b915061280082612799565b604082019050919050565b60006020820190508181036000830152612824816127e8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612887602483611f55565b91506128928261282b565b604082019050919050565b600060208201905081810360008301526128b68161287a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612919602283611f55565b9150612924826128bd565b604082019050919050565b600060208201905081810360008301526129488161290c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612985601d83611f55565b91506129908261294f565b602082019050919050565b600060208201905081810360008301526129b481612978565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a17602583611f55565b9150612a22826129bb565b604082019050919050565b60006020820190508181036000830152612a4681612a0a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612aa9602383611f55565b9150612ab482612a4d565b604082019050919050565b60006020820190508181036000830152612ad881612a9c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b3b602683611f55565b9150612b4682612adf565b604082019050919050565b60006020820190508181036000830152612b6a81612b2e565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612ba7601f83611f55565b9150612bb282612b71565b602082019050919050565b60006020820190508181036000830152612bd681612b9a565b9050919050565b6000606082019050612bf260008301866121c8565b612bff60208301856121c8565b612c0c6040830184612114565b949350505050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612c4a601f83611f55565b9150612c5582612c14565b602082019050919050565b60006020820190508181036000830152612c7981612c3d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612cb6602083611f55565b9150612cc182612c80565b602082019050919050565b60006020820190508181036000830152612ce581612ca9565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d48602183611f55565b9150612d5382612cec565b604082019050919050565b60006020820190508181036000830152612d7781612d3b565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612dda602283611f55565b9150612de582612d7e565b604082019050919050565b60006020820190508181036000830152612e0981612dcd565b9050919050565b6000604082019050612e2560008301856121c8565b612e326020830184612114565b9392505050565b612e42816120de565b8114612e4d57600080fd5b50565b600081519050612e5f81612e39565b92915050565b600060208284031215612e7b57612e7a612005565b5b6000612e8984828501612e50565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000612eee602a83611f55565b9150612ef982612e92565b604082019050919050565b60006020820190508181036000830152612f1d81612ee1565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000612f80602683611f55565b9150612f8b82612f24565b604082019050919050565b60006020820190508181036000830152612faf81612f73565b9050919050565b600081519050919050565b600081905092915050565b6000612fd782612fb6565b612fe18185612fc1565b9350612ff1818560208601611f66565b80840191505092915050565b60006130098284612fcc565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b600061304a601d83611f55565b915061305582613014565b602082019050919050565b600060208201905081810360008301526130798161303d565b905091905056fea2646970667358221220711e66f9df1f769fe7828438820ee775b2482c68b37c39ea73dbf603d415680364736f6c634300080c0033

Deployed ByteCode Sourcemap

46890:2231:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35635:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37986:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47133:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36755:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38767:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36597:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46968:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39471:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47510:622;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47384:115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47221:74;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36926:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24556:103;;;:::i;:::-;;47175:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48649:465;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23908:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48142:499;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35854:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40212:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37259:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37515:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47302:71;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24814:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35635:100;35689:13;35722:5;35715:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35635:100;:::o;37986:201::-;38069:4;38086:13;38102:12;:10;:12::i;:::-;38086:28;;38125:32;38134:5;38141:7;38150:6;38125:8;:32::i;:::-;38175:4;38168:11;;;37986:201;;;;:::o;47133:33::-;;;;;;;;;;;;;:::o;36755:108::-;36816:7;36843:12;;36836:19;;36755:108;:::o;38767:295::-;38898:4;38915:15;38933:12;:10;:12::i;:::-;38915:30;;38956:38;38972:4;38978:7;38987:6;38956:15;:38::i;:::-;39005:27;39015:4;39021:2;39025:6;39005:9;:27::i;:::-;39050:4;39043:11;;;38767:295;;;;;:::o;36597:93::-;36655:5;36680:2;36673:9;;36597:93;:::o;46968:25::-;;;;;;;;;;;;;:::o;39471:238::-;39559:4;39576:13;39592:12;:10;:12::i;:::-;39576:28;;39615:64;39624:5;39631:7;39668:10;39640:25;39650:5;39657:7;39640:9;:25::i;:::-;:38;;;;:::i;:::-;39615:8;:64::i;:::-;39697:4;39690:11;;;39471:238;;;;:::o;47510:622::-;2345:21;:19;:21::i;:::-;47621:9:::1;47604:13;:11;:13::i;:::-;:26;;47596:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47708:10;47672:7;;;;;;;;;;;:17;;;47698:4;47672:32;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:46;;47664:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;47786:9;47753:4;;;;;;;;;;;:14;;;47776:4;47753:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:42;;47745:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47837:7;;;;;;;;;;;47827:17;;:6;:17;;;:35;;;;47858:4;;;;;;;;;;;47848:14;;:6;:14;;;47827:35;47819:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;47934:7;47902:6;:16;;;47919:10;47902:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;;47894:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47978:17;47998:7;47978:27;;48016:59;48040:10;48060:4;48067:7;48016:6;:23;;;;:59;;;;;;:::i;:::-;48086:28;48092:10;48104:9;48086:5;:28::i;:::-;47585:547;2389:20:::0;:18;:20::i;:::-;47510:622;;:::o;47384:115::-;23794:13;:11;:13::i;:::-;47477:14:::1;47464:10;;:27;;;;;;;;;;;;;;;;;;47384:115:::0;:::o;47221:74::-;;;;;;;;;;;;;:::o;36926:127::-;37000:7;37027:9;:18;37037:7;37027:18;;;;;;;;;;;;;;;;37020:25;;36926:127;;;:::o;24556:103::-;23794:13;:11;:13::i;:::-;24621:30:::1;24648:1;24621:18;:30::i;:::-;24556:103::o:0;47175:39::-;;;;:::o;48649:465::-;2345:21;:19;:21::i;:::-;48734:14:::1;;;;;;;;;;;48730:97;;;48786:10;;;;;;;;;;;48772:24;;:10;:24;;;48764:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48730:97;48855:7;;;;;;;;;;;48845:17;;:6;:17;;;:35;;;;48876:4;;;;;;;;;;;48866:14;;:6;:14;;;48845:35;48837:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48945:7;48920:21;48930:10;48920:9;:21::i;:::-;:32;;48912:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48989:17;49009:7;48989:27;;49027:28;49033:10;49045:9;49027:5;:28::i;:::-;49066:40;49086:10;49098:7;49066:6;:19;;;;:40;;;;;:::i;:::-;48719:395;2389:20:::0;:18;:20::i;:::-;48649:465;;:::o;23908:87::-;23954:7;23981:6;;;;;;;;;;;23974:13;;23908:87;:::o;48142:499::-;2345:21;:19;:21::i;:::-;48225:14:::1;;;;;;;;;;;48221:97;;;48277:10;;;;;;;;;;;48263:24;;:10;:24;;;48255:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48221:97;48356:7;;;;;;;;;;;48346:17;;:6;:17;;;:35;;;;48377:4;;;;;;;;;;;48367:14;;:6;:14;;;48346:35;48338:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48453:7;48421:6;:16;;;48438:10;48421:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;;48413:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48497:17;48517:7;48497:27;;48535:28;48541:10;48553:9;48535:5;:28::i;:::-;48574:59;48598:10;48618:4;48625:7;48574:6;:23;;;;:59;;;;;;:::i;:::-;48210:431;2389:20:::0;:18;:20::i;:::-;48142:499;;:::o;35854:104::-;35910:13;35943:7;35936:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35854:104;:::o;40212:436::-;40305:4;40322:13;40338:12;:10;:12::i;:::-;40322:28;;40361:24;40388:25;40398:5;40405:7;40388:9;:25::i;:::-;40361:52;;40452:15;40432:16;:35;;40424:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40545:60;40554:5;40561:7;40589:15;40570:16;:34;40545:8;:60::i;:::-;40636:4;40629:11;;;;40212:436;;;;:::o;37259:193::-;37338:4;37355:13;37371:12;:10;:12::i;:::-;37355:28;;37394;37404:5;37411:2;37415:6;37394:9;:28::i;:::-;37440:4;37433:11;;;37259:193;;;;:::o;37515:151::-;37604:7;37631:11;:18;37643:5;37631:18;;;;;;;;;;;;;;;:27;37650:7;37631:27;;;;;;;;;;;;;;;;37624:34;;37515:151;;;;:::o;47302:71::-;;;;;;;;;;;;;:::o;24814:201::-;23794:13;:11;:13::i;:::-;24923:1:::1;24903:22;;:8;:22;;;;24895:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24979:28;24998:8;24979:18;:28::i;:::-;24814:201:::0;:::o;22459:98::-;22512:7;22539:10;22532:17;;22459:98;:::o;44239:380::-;44392:1;44375:19;;:5;:19;;;;44367:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44473:1;44454:21;;:7;:21;;;;44446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44557:6;44527:11;:18;44539:5;44527:18;;;;;;;;;;;;;;;:27;44546:7;44527:27;;;;;;;;;;;;;;;:36;;;;44595:7;44579:32;;44588:5;44579:32;;;44604:6;44579:32;;;;;;:::i;:::-;;;;;;;;44239:380;;;:::o;44910:453::-;45045:24;45072:25;45082:5;45089:7;45072:9;:25::i;:::-;45045:52;;45132:17;45112:16;:37;45108:248;;45194:6;45174:16;:26;;45166:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45278:51;45287:5;45294:7;45322:6;45303:16;:25;45278:8;:51::i;:::-;45108:248;45034:329;44910:453;;;:::o;41118:840::-;41265:1;41249:18;;:4;:18;;;;41241:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41342:1;41328:16;;:2;:16;;;;41320:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41397:38;41418:4;41424:2;41428:6;41397:20;:38::i;:::-;41448:19;41470:9;:15;41480:4;41470:15;;;;;;;;;;;;;;;;41448:37;;41519:6;41504:11;:21;;41496:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;41636:6;41622:11;:20;41604:9;:15;41614:4;41604:15;;;;;;;;;;;;;;;:38;;;;41839:6;41822:9;:13;41832:2;41822:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;41889:2;41874:26;;41883:4;41874:26;;;41893:6;41874:26;;;;;;:::i;:::-;;;;;;;;41913:37;41933:4;41939:2;41943:6;41913:19;:37::i;:::-;41230:728;41118:840;;;:::o;2425:293::-;1827:1;2559:7;;:19;;2551:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1827:1;2692:7;:18;;;;2425:293::o;29185:248::-;29329:96;29349:5;29379:27;;;29408:4;29414:2;29418:5;29356:68;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29329:19;:96::i;:::-;29185:248;;;;:::o;42245:548::-;42348:1;42329:21;;:7;:21;;;;42321:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;42399:49;42428:1;42432:7;42441:6;42399:20;:49::i;:::-;42477:6;42461:12;;:22;;;;;;;:::i;:::-;;;;;;;;42654:6;42632:9;:18;42642:7;42632:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;42708:7;42687:37;;42704:1;42687:37;;;42717:6;42687:37;;;;;;:::i;:::-;;;;;;;;42737:48;42765:1;42769:7;42778:6;42737:19;:48::i;:::-;42245:548;;:::o;2726:213::-;1783:1;2909:7;:22;;;;2726:213::o;24073:132::-;24148:12;:10;:12::i;:::-;24137:23;;:7;:5;:7::i;:::-;:23;;;24129:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24073:132::o;25175:191::-;25249:16;25268:6;;;;;;;;;;;25249:25;;25294:8;25285:6;;:17;;;;;;;;;;;;;;;;;;25349:8;25318:40;;25339:8;25318:40;;;;;;;;;;;;25238:128;25175:191;:::o;43126:675::-;43229:1;43210:21;;:7;:21;;;;43202:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;43282:49;43303:7;43320:1;43324:6;43282:20;:49::i;:::-;43344:22;43369:9;:18;43379:7;43369:18;;;;;;;;;;;;;;;;43344:43;;43424:6;43406:14;:24;;43398:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43543:6;43526:14;:23;43505:9;:18;43515:7;43505:18;;;;;;;;;;;;;;;:44;;;;43660:6;43644:12;;:22;;;;;;;;;;;43721:1;43695:37;;43704:7;43695:37;;;43725:6;43695:37;;;;;;:::i;:::-;;;;;;;;43745:48;43765:7;43782:1;43786:6;43745:19;:48::i;:::-;43191:610;43126:675;;:::o;28966:211::-;29083:86;29103:5;29133:23;;;29158:2;29162:5;29110:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29083:19;:86::i;:::-;28966:211;;;:::o;45963:125::-;;;;:::o;46692:124::-;;;;:::o;32033:716::-;32457:23;32483:69;32511:4;32483:69;;;;;;;;;;;;;;;;;32491:5;32483:27;;;;:69;;;;;:::i;:::-;32457:95;;32587:1;32567:10;:17;:21;32563:179;;;32664:10;32653:30;;;;;;;;;;;;:::i;:::-;32645:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32563:179;32103:646;32033:716;;:::o;13977:229::-;14114:12;14146:52;14168:6;14176:4;14182:1;14185:12;14146:21;:52::i;:::-;14139:59;;13977:229;;;;;:::o;15097:455::-;15267:12;15325:5;15300:21;:30;;15292:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;15385:12;15399:23;15426:6;:11;;15445:5;15452:4;15426:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15384:73;;;;15475:69;15502:6;15510:7;15519:10;15531:12;15475:26;:69::i;:::-;15468:76;;;;15097:455;;;;;;:::o;17670:644::-;17855:12;17884:7;17880:427;;;17933:1;17912:10;:17;:22;17908:290;;;18130:18;18141:6;18130:10;:18::i;:::-;18122:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;17908:290;18219:10;18212:17;;;;17880:427;18262:33;18270:10;18282:12;18262:7;:33::i;:::-;17670:644;;;;;;;:::o;11220:326::-;11280:4;11537:1;11515:7;:19;;;:23;11508:30;;11220:326;;;:::o;18856:552::-;19037:1;19017:10;:17;:21;19013:388;;;19249:10;19243:17;19306:15;19293:10;19289:2;19285:19;19278:44;19013:388;19376:12;19369:20;;;;;;;;;;;:::i;:::-;;;;;;;;7:99:1;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:118::-;4988:24;5006:5;4988:24;:::i;:::-;4983:3;4976:37;4901:118;;:::o;5025:222::-;5118:4;5156:2;5145:9;5141:18;5133:26;;5169:71;5237:1;5226:9;5222:17;5213:6;5169:71;:::i;:::-;5025:222;;;;:::o;5253:110::-;5304:7;5333:24;5351:5;5333:24;:::i;:::-;5322:35;;5253:110;;;:::o;5369:150::-;5456:38;5488:5;5456:38;:::i;:::-;5449:5;5446:49;5436:77;;5509:1;5506;5499:12;5436:77;5369:150;:::o;5525:167::-;5585:5;5623:6;5610:20;5601:29;;5639:47;5680:5;5639:47;:::i;:::-;5525:167;;;;:::o;5698:502::-;5780:6;5788;5837:2;5825:9;5816:7;5812:23;5808:32;5805:119;;;5843:79;;:::i;:::-;5805:119;5963:1;5988:53;6033:7;6024:6;6013:9;6009:22;5988:53;:::i;:::-;5978:63;;5934:117;6090:2;6116:67;6175:7;6166:6;6155:9;6151:22;6116:67;:::i;:::-;6106:77;;6061:132;5698:502;;;;;:::o;6206:329::-;6265:6;6314:2;6302:9;6293:7;6289:23;6285:32;6282:119;;;6320:79;;:::i;:::-;6282:119;6440:1;6465:53;6510:7;6501:6;6490:9;6486:22;6465:53;:::i;:::-;6455:63;;6411:117;6206:329;;;;:::o;6541:60::-;6569:3;6590:5;6583:12;;6541:60;;;:::o;6607:142::-;6657:9;6690:53;6708:34;6717:24;6735:5;6717:24;:::i;:::-;6708:34;:::i;:::-;6690:53;:::i;:::-;6677:66;;6607:142;;;:::o;6755:126::-;6805:9;6838:37;6869:5;6838:37;:::i;:::-;6825:50;;6755:126;;;:::o;6887:140::-;6951:9;6984:37;7015:5;6984:37;:::i;:::-;6971:50;;6887:140;;;:::o;7033:159::-;7134:51;7179:5;7134:51;:::i;:::-;7129:3;7122:64;7033:159;;:::o;7198:250::-;7305:4;7343:2;7332:9;7328:18;7320:26;;7356:85;7438:1;7427:9;7423:17;7414:6;7356:85;:::i;:::-;7198:250;;;;:::o;7454:474::-;7522:6;7530;7579:2;7567:9;7558:7;7554:23;7550:32;7547:119;;;7585:79;;:::i;:::-;7547:119;7705:1;7730:53;7775:7;7766:6;7755:9;7751:22;7730:53;:::i;:::-;7720:63;;7676:117;7832:2;7858:53;7903:7;7894:6;7883:9;7879:22;7858:53;:::i;:::-;7848:63;;7803:118;7454:474;;;;;:::o;7934:180::-;7982:77;7979:1;7972:88;8079:4;8076:1;8069:15;8103:4;8100:1;8093:15;8120:320;8164:6;8201:1;8195:4;8191:12;8181:22;;8248:1;8242:4;8238:12;8269:18;8259:81;;8325:4;8317:6;8313:17;8303:27;;8259:81;8387:2;8379:6;8376:14;8356:18;8353:38;8350:84;;;8406:18;;:::i;:::-;8350:84;8171:269;8120:320;;;:::o;8446:180::-;8494:77;8491:1;8484:88;8591:4;8588:1;8581:15;8615:4;8612:1;8605:15;8632:305;8672:3;8691:20;8709:1;8691:20;:::i;:::-;8686:25;;8725:20;8743:1;8725:20;:::i;:::-;8720:25;;8879:1;8811:66;8807:74;8804:1;8801:81;8798:107;;;8885:18;;:::i;:::-;8798:107;8929:1;8926;8922:9;8915:16;;8632:305;;;;:::o;8943:168::-;9083:20;9079:1;9071:6;9067:14;9060:44;8943:168;:::o;9117:366::-;9259:3;9280:67;9344:2;9339:3;9280:67;:::i;:::-;9273:74;;9356:93;9445:3;9356:93;:::i;:::-;9474:2;9469:3;9465:12;9458:19;;9117:366;;;:::o;9489:419::-;9655:4;9693:2;9682:9;9678:18;9670:26;;9742:9;9736:4;9732:20;9728:1;9717:9;9713:17;9706:47;9770:131;9896:4;9770:131;:::i;:::-;9762:139;;9489:419;;;:::o;9914:143::-;9971:5;10002:6;9996:13;9987:22;;10018:33;10045:5;10018:33;:::i;:::-;9914:143;;;;:::o;10063:351::-;10133:6;10182:2;10170:9;10161:7;10157:23;10153:32;10150:119;;;10188:79;;:::i;:::-;10150:119;10308:1;10333:64;10389:7;10380:6;10369:9;10365:22;10333:64;:::i;:::-;10323:74;;10279:128;10063:351;;;;:::o;10420:161::-;10560:13;10556:1;10548:6;10544:14;10537:37;10420:161;:::o;10587:366::-;10729:3;10750:67;10814:2;10809:3;10750:67;:::i;:::-;10743:74;;10826:93;10915:3;10826:93;:::i;:::-;10944:2;10939:3;10935:12;10928:19;;10587:366;;;:::o;10959:419::-;11125:4;11163:2;11152:9;11148:18;11140:26;;11212:9;11206:4;11202:20;11198:1;11187:9;11183:17;11176:47;11240:131;11366:4;11240:131;:::i;:::-;11232:139;;10959:419;;;:::o;11384:158::-;11524:10;11520:1;11512:6;11508:14;11501:34;11384:158;:::o;11548:365::-;11690:3;11711:66;11775:1;11770:3;11711:66;:::i;:::-;11704:73;;11786:93;11875:3;11786:93;:::i;:::-;11904:2;11899:3;11895:12;11888:19;;11548:365;;;:::o;11919:419::-;12085:4;12123:2;12112:9;12108:18;12100:26;;12172:9;12166:4;12162:20;12158:1;12147:9;12143:17;12136:47;12200:131;12326:4;12200:131;:::i;:::-;12192:139;;11919:419;;;:::o;12344:166::-;12484:18;12480:1;12472:6;12468:14;12461:42;12344:166;:::o;12516:366::-;12658:3;12679:67;12743:2;12738:3;12679:67;:::i;:::-;12672:74;;12755:93;12844:3;12755:93;:::i;:::-;12873:2;12868:3;12864:12;12857:19;;12516:366;;;:::o;12888:419::-;13054:4;13092:2;13081:9;13077:18;13069:26;;13141:9;13135:4;13131:20;13127:1;13116:9;13112:17;13105:47;13169:131;13295:4;13169:131;:::i;:::-;13161:139;;12888:419;;;:::o;13313:171::-;13453:23;13449:1;13441:6;13437:14;13430:47;13313:171;:::o;13490:366::-;13632:3;13653:67;13717:2;13712:3;13653:67;:::i;:::-;13646:74;;13729:93;13818:3;13729:93;:::i;:::-;13847:2;13842:3;13838:12;13831:19;;13490:366;;;:::o;13862:419::-;14028:4;14066:2;14055:9;14051:18;14043:26;;14115:9;14109:4;14105:20;14101:1;14090:9;14086:17;14079:47;14143:131;14269:4;14143:131;:::i;:::-;14135:139;;13862:419;;;:::o;14287:164::-;14427:16;14423:1;14415:6;14411:14;14404:40;14287:164;:::o;14457:366::-;14599:3;14620:67;14684:2;14679:3;14620:67;:::i;:::-;14613:74;;14696:93;14785:3;14696:93;:::i;:::-;14814:2;14809:3;14805:12;14798:19;;14457:366;;;:::o;14829:419::-;14995:4;15033:2;15022:9;15018:18;15010:26;;15082:9;15076:4;15072:20;15068:1;15057:9;15053:17;15046:47;15110:131;15236:4;15110:131;:::i;:::-;15102:139;;14829:419;;;:::o;15254:224::-;15394:34;15390:1;15382:6;15378:14;15371:58;15463:7;15458:2;15450:6;15446:15;15439:32;15254:224;:::o;15484:366::-;15626:3;15647:67;15711:2;15706:3;15647:67;:::i;:::-;15640:74;;15723:93;15812:3;15723:93;:::i;:::-;15841:2;15836:3;15832:12;15825:19;;15484:366;;;:::o;15856:419::-;16022:4;16060:2;16049:9;16045:18;16037:26;;16109:9;16103:4;16099:20;16095:1;16084:9;16080:17;16073:47;16137:131;16263:4;16137:131;:::i;:::-;16129:139;;15856:419;;;:::o;16281:225::-;16421:34;16417:1;16409:6;16405:14;16398:58;16490:8;16485:2;16477:6;16473:15;16466:33;16281:225;:::o;16512:366::-;16654:3;16675:67;16739:2;16734:3;16675:67;:::i;:::-;16668:74;;16751:93;16840:3;16751:93;:::i;:::-;16869:2;16864:3;16860:12;16853:19;;16512:366;;;:::o;16884:419::-;17050:4;17088:2;17077:9;17073:18;17065:26;;17137:9;17131:4;17127:20;17123:1;17112:9;17108:17;17101:47;17165:131;17291:4;17165:131;:::i;:::-;17157:139;;16884:419;;;:::o;17309:223::-;17449:34;17445:1;17437:6;17433:14;17426:58;17518:6;17513:2;17505:6;17501:15;17494:31;17309:223;:::o;17538:366::-;17680:3;17701:67;17765:2;17760:3;17701:67;:::i;:::-;17694:74;;17777:93;17866:3;17777:93;:::i;:::-;17895:2;17890:3;17886:12;17879:19;;17538:366;;;:::o;17910:419::-;18076:4;18114:2;18103:9;18099:18;18091:26;;18163:9;18157:4;18153:20;18149:1;18138:9;18134:17;18127:47;18191:131;18317:4;18191:131;:::i;:::-;18183:139;;17910:419;;;:::o;18335:221::-;18475:34;18471:1;18463:6;18459:14;18452:58;18544:4;18539:2;18531:6;18527:15;18520:29;18335:221;:::o;18562:366::-;18704:3;18725:67;18789:2;18784:3;18725:67;:::i;:::-;18718:74;;18801:93;18890:3;18801:93;:::i;:::-;18919:2;18914:3;18910:12;18903:19;;18562:366;;;:::o;18934:419::-;19100:4;19138:2;19127:9;19123:18;19115:26;;19187:9;19181:4;19177:20;19173:1;19162:9;19158:17;19151:47;19215:131;19341:4;19215:131;:::i;:::-;19207:139;;18934:419;;;:::o;19359:179::-;19499:31;19495:1;19487:6;19483:14;19476:55;19359:179;:::o;19544:366::-;19686:3;19707:67;19771:2;19766:3;19707:67;:::i;:::-;19700:74;;19783:93;19872:3;19783:93;:::i;:::-;19901:2;19896:3;19892:12;19885:19;;19544:366;;;:::o;19916:419::-;20082:4;20120:2;20109:9;20105:18;20097:26;;20169:9;20163:4;20159:20;20155:1;20144:9;20140:17;20133:47;20197:131;20323:4;20197:131;:::i;:::-;20189:139;;19916:419;;;:::o;20341:224::-;20481:34;20477:1;20469:6;20465:14;20458:58;20550:7;20545:2;20537:6;20533:15;20526:32;20341:224;:::o;20571:366::-;20713:3;20734:67;20798:2;20793:3;20734:67;:::i;:::-;20727:74;;20810:93;20899:3;20810:93;:::i;:::-;20928:2;20923:3;20919:12;20912:19;;20571:366;;;:::o;20943:419::-;21109:4;21147:2;21136:9;21132:18;21124:26;;21196:9;21190:4;21186:20;21182:1;21171:9;21167:17;21160:47;21224:131;21350:4;21224:131;:::i;:::-;21216:139;;20943:419;;;:::o;21368:222::-;21508:34;21504:1;21496:6;21492:14;21485:58;21577:5;21572:2;21564:6;21560:15;21553:30;21368:222;:::o;21596:366::-;21738:3;21759:67;21823:2;21818:3;21759:67;:::i;:::-;21752:74;;21835:93;21924:3;21835:93;:::i;:::-;21953:2;21948:3;21944:12;21937:19;;21596:366;;;:::o;21968:419::-;22134:4;22172:2;22161:9;22157:18;22149:26;;22221:9;22215:4;22211:20;22207:1;22196:9;22192:17;22185:47;22249:131;22375:4;22249:131;:::i;:::-;22241:139;;21968:419;;;:::o;22393:225::-;22533:34;22529:1;22521:6;22517:14;22510:58;22602:8;22597:2;22589:6;22585:15;22578:33;22393:225;:::o;22624:366::-;22766:3;22787:67;22851:2;22846:3;22787:67;:::i;:::-;22780:74;;22863:93;22952:3;22863:93;:::i;:::-;22981:2;22976:3;22972:12;22965:19;;22624:366;;;:::o;22996:419::-;23162:4;23200:2;23189:9;23185:18;23177:26;;23249:9;23243:4;23239:20;23235:1;23224:9;23220:17;23213:47;23277:131;23403:4;23277:131;:::i;:::-;23269:139;;22996:419;;;:::o;23421:181::-;23561:33;23557:1;23549:6;23545:14;23538:57;23421:181;:::o;23608:366::-;23750:3;23771:67;23835:2;23830:3;23771:67;:::i;:::-;23764:74;;23847:93;23936:3;23847:93;:::i;:::-;23965:2;23960:3;23956:12;23949:19;;23608:366;;;:::o;23980:419::-;24146:4;24184:2;24173:9;24169:18;24161:26;;24233:9;24227:4;24223:20;24219:1;24208:9;24204:17;24197:47;24261:131;24387:4;24261:131;:::i;:::-;24253:139;;23980:419;;;:::o;24405:442::-;24554:4;24592:2;24581:9;24577:18;24569:26;;24605:71;24673:1;24662:9;24658:17;24649:6;24605:71;:::i;:::-;24686:72;24754:2;24743:9;24739:18;24730:6;24686:72;:::i;:::-;24768;24836:2;24825:9;24821:18;24812:6;24768:72;:::i;:::-;24405:442;;;;;;:::o;24853:181::-;24993:33;24989:1;24981:6;24977:14;24970:57;24853:181;:::o;25040:366::-;25182:3;25203:67;25267:2;25262:3;25203:67;:::i;:::-;25196:74;;25279:93;25368:3;25279:93;:::i;:::-;25397:2;25392:3;25388:12;25381:19;;25040:366;;;:::o;25412:419::-;25578:4;25616:2;25605:9;25601:18;25593:26;;25665:9;25659:4;25655:20;25651:1;25640:9;25636:17;25629:47;25693:131;25819:4;25693:131;:::i;:::-;25685:139;;25412:419;;;:::o;25837:182::-;25977:34;25973:1;25965:6;25961:14;25954:58;25837:182;:::o;26025:366::-;26167:3;26188:67;26252:2;26247:3;26188:67;:::i;:::-;26181:74;;26264:93;26353:3;26264:93;:::i;:::-;26382:2;26377:3;26373:12;26366:19;;26025:366;;;:::o;26397:419::-;26563:4;26601:2;26590:9;26586:18;26578:26;;26650:9;26644:4;26640:20;26636:1;26625:9;26621:17;26614:47;26678:131;26804:4;26678:131;:::i;:::-;26670:139;;26397:419;;;:::o;26822:220::-;26962:34;26958:1;26950:6;26946:14;26939:58;27031:3;27026:2;27018:6;27014:15;27007:28;26822:220;:::o;27048:366::-;27190:3;27211:67;27275:2;27270:3;27211:67;:::i;:::-;27204:74;;27287:93;27376:3;27287:93;:::i;:::-;27405:2;27400:3;27396:12;27389:19;;27048:366;;;:::o;27420:419::-;27586:4;27624:2;27613:9;27609:18;27601:26;;27673:9;27667:4;27663:20;27659:1;27648:9;27644:17;27637:47;27701:131;27827:4;27701:131;:::i;:::-;27693:139;;27420:419;;;:::o;27845:221::-;27985:34;27981:1;27973:6;27969:14;27962:58;28054:4;28049:2;28041:6;28037:15;28030:29;27845:221;:::o;28072:366::-;28214:3;28235:67;28299:2;28294:3;28235:67;:::i;:::-;28228:74;;28311:93;28400:3;28311:93;:::i;:::-;28429:2;28424:3;28420:12;28413:19;;28072:366;;;:::o;28444:419::-;28610:4;28648:2;28637:9;28633:18;28625:26;;28697:9;28691:4;28687:20;28683:1;28672:9;28668:17;28661:47;28725:131;28851:4;28725:131;:::i;:::-;28717:139;;28444:419;;;:::o;28869:332::-;28990:4;29028:2;29017:9;29013:18;29005:26;;29041:71;29109:1;29098:9;29094:17;29085:6;29041:71;:::i;:::-;29122:72;29190:2;29179:9;29175:18;29166:6;29122:72;:::i;:::-;28869:332;;;;;:::o;29207:116::-;29277:21;29292:5;29277:21;:::i;:::-;29270:5;29267:32;29257:60;;29313:1;29310;29303:12;29257:60;29207:116;:::o;29329:137::-;29383:5;29414:6;29408:13;29399:22;;29430:30;29454:5;29430:30;:::i;:::-;29329:137;;;;:::o;29472:345::-;29539:6;29588:2;29576:9;29567:7;29563:23;29559:32;29556:119;;;29594:79;;:::i;:::-;29556:119;29714:1;29739:61;29792:7;29783:6;29772:9;29768:22;29739:61;:::i;:::-;29729:71;;29685:125;29472:345;;;;:::o;29823:229::-;29963:34;29959:1;29951:6;29947:14;29940:58;30032:12;30027:2;30019:6;30015:15;30008:37;29823:229;:::o;30058:366::-;30200:3;30221:67;30285:2;30280:3;30221:67;:::i;:::-;30214:74;;30297:93;30386:3;30297:93;:::i;:::-;30415:2;30410:3;30406:12;30399:19;;30058:366;;;:::o;30430:419::-;30596:4;30634:2;30623:9;30619:18;30611:26;;30683:9;30677:4;30673:20;30669:1;30658:9;30654:17;30647:47;30711:131;30837:4;30711:131;:::i;:::-;30703:139;;30430:419;;;:::o;30855:225::-;30995:34;30991:1;30983:6;30979:14;30972:58;31064:8;31059:2;31051:6;31047:15;31040:33;30855:225;:::o;31086:366::-;31228:3;31249:67;31313:2;31308:3;31249:67;:::i;:::-;31242:74;;31325:93;31414:3;31325:93;:::i;:::-;31443:2;31438:3;31434:12;31427:19;;31086:366;;;:::o;31458:419::-;31624:4;31662:2;31651:9;31647:18;31639:26;;31711:9;31705:4;31701:20;31697:1;31686:9;31682:17;31675:47;31739:131;31865:4;31739:131;:::i;:::-;31731:139;;31458:419;;;:::o;31883:98::-;31934:6;31968:5;31962:12;31952:22;;31883:98;;;:::o;31987:147::-;32088:11;32125:3;32110:18;;31987:147;;;;:::o;32140:373::-;32244:3;32272:38;32304:5;32272:38;:::i;:::-;32326:88;32407:6;32402:3;32326:88;:::i;:::-;32319:95;;32423:52;32468:6;32463:3;32456:4;32449:5;32445:16;32423:52;:::i;:::-;32500:6;32495:3;32491:16;32484:23;;32248:265;32140:373;;;;:::o;32519:271::-;32649:3;32671:93;32760:3;32751:6;32671:93;:::i;:::-;32664:100;;32781:3;32774:10;;32519:271;;;;:::o;32796:179::-;32936:31;32932:1;32924:6;32920:14;32913:55;32796:179;:::o;32981:366::-;33123:3;33144:67;33208:2;33203:3;33144:67;:::i;:::-;33137:74;;33220:93;33309:3;33220:93;:::i;:::-;33338:2;33333:3;33329:12;33322:19;;32981:366;;;:::o;33353:419::-;33519:4;33557:2;33546:9;33542:18;33534:26;;33606:9;33600:4;33596:20;33592:1;33581:9;33577:17;33570:47;33634:131;33760:4;33634:131;:::i;:::-;33626:139;;33353:419;;;:::o

Metadata Hash

ipfs://711e66f9df1f769fe7828438820ee775b2482c68b37c39ea73dbf603d4156803
Loading