Address Details
contract
token

0x1794C0757ee68a39195Cf13B70d5cF8F45087674

Token
ToshaAckToken (ToshaAck)
Creator
0xc98b48–837505 at 0xd00c7a–e9dcf7
Balance
0 CELO ( )
Locked CELO Balance
0.00 CELO
Voting CELO Balance
0.00 CELO
Pending Unlocked Gold
0.00 CELO
Tokens
Fetching tokens...
Transactions
1 Transactions
Transfers
2 Transfers
Gas Used
383,001
Last Balance Update
7721908
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
ToshaVault




Optimization enabled
false
Compiler version
v0.8.0+commit.c7dfd78e




EVM Version
istanbul




Verified at
2023-02-01T20:20:23.233975Z

ToshaVault_flat.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.8.0;


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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}
// File: libs/Address.sol



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: libs/IERC20.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

    /**
     * @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: libs/SafeMath.sol



pragma solidity ^0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

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

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

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

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

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


/**
 * @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.zeppelin.solutions/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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 {}
}

interface IToshaFarm {
    
    event Deposit(address indexed user, uint256 indexed pid, uint256 amount);
    event Withdraw(address indexed user, uint256 indexed pid, uint256 amount);
    
    function deposit(uint256 _pid, uint256 _toshaAmt) external;
    function withdraw(uint256 _pid, uint256 _toshaAmt) external;
    function userInfo(uint256 _pid, address _user) external view returns (uint256 shares, uint256 rewardDebt);
    function pendingToken(uint256 _pid, address _user) external view returns (uint256);
}

// File: ToshaVault.sol



pragma solidity 0.8.0;







contract ToshaVault is ERC20, Ownable, ReentrancyGuard {
    using SafeERC20 for IERC20;
    using SafeMath for uint256;

    struct UserInfo {
        uint256 shares; // number of shares for a user
        uint256 lastDepositedTime; // keeps track of deposited time for potential penalty
        uint256 toshaAtLastUserAction; // keeps track of tosha deposited at the last user action
        uint256 lastUserActionTime; // keeps track of the last user action time
    }

    IERC20 public immutable token; // TOSHA token
    IToshaFarm public immutable masterchef;

    mapping(address => UserInfo) public userInfo;

    uint256 public totalShares;
    uint256 public lastHarvestedTime;
    address public treasury;

    uint256 public withdrawFee;
    uint256 public withdrawFeePeriod = 72 hours; // 3 days
    uint256 public constant MAX_WITHDRAW_FEE = 200; // 2%

    event Deposit(address indexed sender, uint256 amount, uint256 shares, uint256 lastDepositedTime);
    event Withdraw(address indexed sender, uint256 amount, uint256 shares);
    event Harvest(address indexed sender);
    event SetTreasury(address treasury);
    event SetWithdrawFee(uint256 withdrawFee);

    /**
     * @notice Constructor
     * @param _token: Tosha token contract
     * @param _masterchef: MasterChef contract
     * @param _owner: address of the owner
     * @param _treasury: address of the treasury (collects fees)
     */
    constructor(
        IERC20 _token,
        IToshaFarm _masterchef,
        address _owner,
        address _treasury,
        uint256 _withdrawFee,
        string memory _name, 
        string memory _symbol
    ) ERC20(
        string(abi.encodePacked(_name)),
        string(abi.encodePacked(_symbol))
    ) {
        token = _token;
        masterchef = _masterchef;
        treasury = _treasury;
        withdrawFee = _withdrawFee;

        transferOwnership(_owner);
    }

    /**
     * @notice Deposits funds into the Tosha Vault
     * @param _amount: number of tokens to deposit (in Tosha token)
     */
    function deposit(uint256 _amount) external nonReentrant {
        require(_amount > 0, "ToshaVault: Nothing to deposit");

        uint256 pool = underlyingTokenBalance();
        token.safeTransferFrom(msg.sender, address(this), _amount);
        uint256 currentShares = 0;
        if (totalShares != 0) {
            currentShares = (_amount.mul(totalShares)).div(pool);
        } else {
            currentShares = _amount;
        }
        UserInfo storage user = userInfo[msg.sender];

        user.shares = user.shares.add(currentShares);
        user.lastDepositedTime = block.timestamp;

        totalShares = totalShares.add(currentShares);

        user.toshaAtLastUserAction = user.shares.mul(underlyingTokenBalance()).div(totalShares);
        user.lastUserActionTime = block.timestamp;
        
        _mint(msg.sender, currentShares);
        
        _earn();

        emit Deposit(msg.sender, _amount, currentShares, block.timestamp);
    }
    

    /**
     * @notice Withdraws all funds for a user
     */
    function withdrawAll() external {
        withdraw(userInfo[msg.sender].shares);
    }

    /**
     * @notice Reinvests Tosha tokens into MasterChef
     */
    function harvest() external {
        masterchef.withdraw(0, 0);

        _earn();

        emit Harvest(msg.sender);
    }

    /**
     * @notice Sets treasury address
     * @dev Only callable by the contract owner.
     */
    function setTreasury(address _treasury) external onlyOwner {
        require(_treasury != address(0), "ToshaVault: Cannot be zero address");

        treasury = _treasury;

        emit SetTreasury(treasury);
    }

    /**
     * @notice Sets withdraw fee
     * @dev Only callable by the contract owner.
     */
    function setWithdrawFee(uint256 _withdrawFee) external onlyOwner {
        require(
            _withdrawFee <= MAX_WITHDRAW_FEE,
            "ToshaVault: withdrawFee cannot be more than MAX_WITHDRAW_FEE"
        );

        withdrawFee = _withdrawFee;

        emit SetWithdrawFee(withdrawFee);
    }

    /**
     * @notice Calculates the total pending rewards that can be restaked
     * @return Returns total pending Tosha rewards
     */
    function calculateTotalPendingRewards() external view returns (uint256) {
        uint256 amount = masterchef.pendingToken(0, address(this));
        amount = amount.add(available());

        return amount;
    }

    /**
     * @notice Calculates the price per share
     */
    function getPricePerFullShare() external view returns (uint256) {
        return totalShares == 0 ? 1e18 : underlyingTokenBalance().mul(1e18).div(totalShares);
    }

    /**
     * @notice Withdraws from funds from the Tosha Vault
     * @param _shares: Number of shares to withdraw
     */
    function withdraw(uint256 _shares) public nonReentrant {
        UserInfo storage user = userInfo[msg.sender];

        require(
            _shares > 0,
            "ToshaVault: Nothing to withdraw"
        );
        require(
            _shares <= user.shares,
            "ToshaVault: Withdraw amount exceeds balance"
        );
        
        _burn(msg.sender, _shares);

        uint256 currentAmount = (underlyingTokenBalance().mul(_shares)).div(totalShares);
        user.shares = user.shares.sub(_shares);
        totalShares = totalShares.sub(_shares);

        uint256 bal = available();
        if (bal < currentAmount) {
            uint256 balWithdraw = currentAmount.sub(bal);
            masterchef.withdraw(0, balWithdraw);
            uint256 balAfter = available();
            uint256 diff = balAfter.sub(bal);
            if (diff < balWithdraw) {
                currentAmount = bal.add(diff);
            }
        }

        if (
            withdrawFee > 0 &&
            block.timestamp < user.lastDepositedTime.add(withdrawFeePeriod)
        ) {
            uint256 currentWithdrawFee = currentAmount.mul(withdrawFee).div(10000);
            token.safeTransfer(treasury, currentWithdrawFee);
            currentAmount = currentAmount.sub(currentWithdrawFee);
        }

        if (user.shares > 0) {
            user.toshaAtLastUserAction = user.shares.mul(underlyingTokenBalance()).div(totalShares);
        } else {
            user.toshaAtLastUserAction = 0;
        }

        user.lastUserActionTime = block.timestamp;

        token.safeTransfer(msg.sender, currentAmount);

        emit Withdraw(msg.sender, currentAmount, _shares);
    }

    /**
     * @notice Custom logic for how much the vault allows to be borrowed
     * @dev The contract puts 100% of the tokens to work.
     */
    function available() public view returns (uint256) {
        return token.balanceOf(address(this));
    }

    /**
     * @notice Calculates the total underlying tokens
     * @dev It includes tokens held by the contract and held in MasterChef
     */
    function underlyingTokenBalance() public view returns (uint256) {
        (uint256 amount,) = masterchef.userInfo(0, address(this));

        return token.balanceOf(address(this)).add(amount);
    }

    /**
     * @notice Deposits tokens into MasterChef to earn staking rewards
     */
    function _earn() internal {
        uint256 balance = available();

        if (balance > 0) {
            if (token.allowance(address(this), address(masterchef)) < balance) {
                token.safeApprove(address(masterchef), type(uint256).max);
            }

            masterchef.deposit(0, balance);
        }
    }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_token","internalType":"contract IERC20"},{"type":"address","name":"_masterchef","internalType":"contract IToshaFarm"},{"type":"address","name":"_owner","internalType":"address"},{"type":"address","name":"_treasury","internalType":"address"},{"type":"uint256","name":"_withdrawFee","internalType":"uint256"},{"type":"string","name":"_name","internalType":"string"},{"type":"string","name":"_symbol","internalType":"string"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Deposit","inputs":[{"type":"address","name":"sender","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false},{"type":"uint256","name":"shares","internalType":"uint256","indexed":false},{"type":"uint256","name":"lastDepositedTime","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Harvest","inputs":[{"type":"address","name":"sender","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"SetTreasury","inputs":[{"type":"address","name":"treasury","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"SetWithdrawFee","inputs":[{"type":"uint256","name":"withdrawFee","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Withdraw","inputs":[{"type":"address","name":"sender","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false},{"type":"uint256","name":"shares","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MAX_WITHDRAW_FEE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"available","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"calculateTotalPendingRewards","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"deposit","inputs":[{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getPricePerFullShare","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"harvest","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"lastHarvestedTime","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IToshaFarm"}],"name":"masterchef","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTreasury","inputs":[{"type":"address","name":"_treasury","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setWithdrawFee","inputs":[{"type":"uint256","name":"_withdrawFee","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20"}],"name":"token","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalShares","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"treasury","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"underlyingTokenBalance","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"shares","internalType":"uint256"},{"type":"uint256","name":"lastDepositedTime","internalType":"uint256"},{"type":"uint256","name":"toshaAtLastUserAction","internalType":"uint256"},{"type":"uint256","name":"lastUserActionTime","internalType":"uint256"}],"name":"userInfo","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdraw","inputs":[{"type":"uint256","name":"_shares","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawAll","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"withdrawFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"withdrawFeePeriod","inputs":[]}]
              

Contract Creation Code

0x60c06040526203f480600c553480156200001857600080fd5b5060405162004a5b38038062004a5b83398181016040528101906200003e91906200053e565b81604051602001620000519190620006fe565b60405160208183030381529060405281604051602001620000739190620006fe565b60405160208183030381529060405281600390805190602001906200009a929190620003c0565b508060049080519060200190620000b3929190620003c0565b505050620000d6620000ca620001b260201b60201c565b620001ba60201b60201c565b60016006819055508673ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508573ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b8152505083600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600b81905550620001a5856200028060201b60201c565b5050505050505062000981565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000290620001b260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002b66200039660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200030f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003069062000739565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000382576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003799062000717565b60405180910390fd5b6200039381620001ba60201b60201c565b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003ce9062000885565b90600052602060002090601f016020900481019282620003f257600085556200043e565b82601f106200040d57805160ff19168380011785556200043e565b828001600101855582156200043e579182015b828111156200043d57825182559160200191906001019062000420565b5b5090506200044d919062000451565b5090565b5b808211156200046c57600081600090555060010162000452565b5090565b60006200048762000481846200078f565b6200075b565b905082815260208101848484011115620004a057600080fd5b620004ad8482856200084f565b509392505050565b600081519050620004c68162000919565b92915050565b600081519050620004dd8162000933565b92915050565b600081519050620004f4816200094d565b92915050565b600082601f8301126200050c57600080fd5b81516200051e84826020860162000470565b91505092915050565b600081519050620005388162000967565b92915050565b600080600080600080600060e0888a0312156200055a57600080fd5b60006200056a8a828b01620004cc565b97505060206200057d8a828b01620004e3565b9650506040620005908a828b01620004b5565b9550506060620005a38a828b01620004b5565b9450506080620005b68a828b0162000527565b93505060a088015167ffffffffffffffff811115620005d457600080fd5b620005e28a828b01620004fa565b92505060c088015167ffffffffffffffff8111156200060057600080fd5b6200060e8a828b01620004fa565b91505092959891949750929550565b60006200062a82620007c2565b620006368185620007de565b9350620006488185602086016200084f565b80840191505092915050565b600062000663602683620007cd565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000620006cb602083620007cd565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006200070c82846200061d565b915081905092915050565b60006020820190508181036000830152620007328162000654565b9050919050565b600060208201905081810360008301526200075481620006bc565b9050919050565b6000604051905081810181811067ffffffffffffffff82111715620007855762000784620008ea565b5b8060405250919050565b600067ffffffffffffffff821115620007ad57620007ac620008ea565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000620007f68262000825565b9050919050565b60006200080a82620007e9565b9050919050565b60006200081e82620007e9565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200086f57808201518184015260208101905062000852565b838111156200087f576000848401525b50505050565b600060028204905060018216806200089e57607f821691505b60208210811415620008b557620008b4620008bb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200092481620007e9565b81146200093057600080fd5b50565b6200093e81620007fd565b81146200094a57600080fd5b50565b620009588162000811565b81146200096457600080fd5b50565b620009728162000845565b81146200097e57600080fd5b50565b60805160601c60a05160601c61404c62000a0f6000396000818161081201528181610a9f01528181610e15015281816111f701528181611af3015281816123ac0152818161244301526124cc015260008181610bf401528181610cb601528181610ef2015281816112a90152818161161b01528181611b170152818161236f0152612485015261404c6000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063853828b61161011a578063b6b55f25116100ad578063e941fa781161007c578063e941fa7814610599578063f0f44260146105b7578063f2fde38b146105d3578063fb1db278146105ef578063fc0c546a1461060d576101fb565b8063b6b55f2514610511578063d4b0de2f1461052d578063dd62ed3e1461054b578063df10b4e61461057b576101fb565b8063a457c2d7116100e9578063a457c2d714610477578063a9059cbb146104a7578063b60f0531146104d7578063b6ac642a146104f5576101fb565b8063853828b6146104135780638da5cb5b1461041d57806395d89b411461043b57806399c91a6414610459576101fb565b8063395093511161019257806361d027b31161016157806361d027b31461039d57806370a08231146103bb578063715018a6146103eb57806377c7b8fc146103f5576101fb565b806339509351146103275780633a98ef39146103575780634641257d1461037557806348a0d7541461037f576101fb565b806323b872dd116101ce57806323b872dd1461029f5780632816cc4a146102cf5780632e1a7d4d146102ed578063313ce56714610309576101fb565b806306fdde0314610200578063095ea7b31461021e57806318160ddd1461024e5780631959a0021461026c575b600080fd5b61020861062b565b60405161021591906138fb565b60405180910390f35b61023860048036038101906102339190612d8e565b6106bd565b604051610245919061382f565b60405180910390f35b6102566106db565b6040516102639190613bfd565b60405180910390f35b61028660048036038101906102819190612cda565b6106e5565b6040516102969493929190613c78565b60405180910390f35b6102b960048036038101906102b49190612d3f565b610715565b6040516102c6919061382f565b60405180910390f35b6102d761080d565b6040516102e49190613bfd565b60405180910390f35b61030760048036038101906103029190612df3565b6108e1565b005b610311610d58565b60405161031e9190613cbd565b60405180910390f35b610341600480360381019061033c9190612d8e565b610d61565b60405161034e919061382f565b60405180910390f35b61035f610e0d565b60405161036c9190613bfd565b60405180910390f35b61037d610e13565b005b610387610eee565b6040516103949190613bfd565b60405180910390f35b6103a5610f9e565b6040516103b2919061378b565b60405180910390f35b6103d560048036038101906103d09190612cda565b610fc4565b6040516103e29190613bfd565b60405180910390f35b6103f361100c565b005b6103fd611094565b60405161040a9190613bfd565b60405180910390f35b61041b6110e9565b005b610425611136565b604051610432919061378b565b60405180910390f35b610443611160565b60405161045091906138fb565b60405180910390f35b6104616111f2565b60405161046e9190613bfd565b60405180910390f35b610491600480360381019061048c9190612d8e565b611364565b60405161049e919061382f565b60405180910390f35b6104c160048036038101906104bc9190612d8e565b61144f565b6040516104ce919061382f565b60405180910390f35b6104df61146d565b6040516104ec9190613bfd565b60405180910390f35b61050f600480360381019061050a9190612df3565b611473565b005b61052b60048036038101906105269190612df3565b611576565b005b6105356117d8565b6040516105429190613bfd565b60405180910390f35b61056560048036038101906105609190612d03565b6117dd565b6040516105729190613bfd565b60405180910390f35b610583611864565b6040516105909190613bfd565b60405180910390f35b6105a161186a565b6040516105ae9190613bfd565b60405180910390f35b6105d160048036038101906105cc9190612cda565b611870565b005b6105ed60048036038101906105e89190612cda565b6119f9565b005b6105f7611af1565b6040516106049190613865565b60405180910390f35b610615611b15565b604051610622919061384a565b60405180910390f35b60606003805461063a90613f01565b80601f016020809104026020016040519081016040528092919081815260200182805461066690613f01565b80156106b35780601f10610688576101008083540402835291602001916106b3565b820191906000526020600020905b81548152906001019060200180831161069657829003601f168201915b5050505050905090565b60006106d16106ca611b39565b8484611b41565b6001905092915050565b6000600254905090565b60076020528060005260406000206000915090508060000154908060010154908060020154908060030154905084565b6000610722848484611d0c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061076d611b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e490613a5d565b60405180910390fd5b610801856107f9611b39565b858403611b41565b60019150509392505050565b6000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166348e43af46000306040518363ffffffff1660e01b815260040161086c929190613880565b60206040518083038186803b15801561088457600080fd5b505afa158015610898573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108bc9190612e1c565b90506108d86108c9610eee565b82611f8d90919063ffffffff16565b90508091505090565b60026006541415610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e90613b7d565b60405180910390fd5b60026006819055506000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600082116109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90613a1d565b60405180910390fd5b80600001548211156109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f390613b5d565b60405180910390fd5b610a063383611feb565b6000610a36600854610a2885610a1a6111f2565b6121c290919063ffffffff16565b61223d90919063ffffffff16565b9050610a4f83836000015461228790919063ffffffff16565b8260000181905550610a6c8360085461228790919063ffffffff16565b6008819055506000610a7c610eee565b905081811015610b70576000610a9b828461228790919063ffffffff16565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663441a3e706000836040518363ffffffff1660e01b8152600401610af99291906138d2565b600060405180830381600087803b158015610b1357600080fd5b505af1158015610b27573d6000803e3d6000fd5b505050506000610b35610eee565b90506000610b4c848361228790919063ffffffff16565b905082811015610b6c57610b698185611f8d90919063ffffffff16565b94505b5050505b6000600b54118015610b995750610b96600c548460010154611f8d90919063ffffffff16565b42105b15610c4f576000610bc9612710610bbb600b54866121c290919063ffffffff16565b61223d90919063ffffffff16565b9050610c38600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166122d19092919063ffffffff16565b610c4b818461228790919063ffffffff16565b9250505b600083600001541115610c9b57610c8e600854610c80610c6d6111f2565b86600001546121c290919063ffffffff16565b61223d90919063ffffffff16565b8360020181905550610ca6565b600083600201819055505b428360030181905550610cfa33837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166122d19092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5688386604051610d42929190613c18565b60405180910390a2505050600160068190555050565b60006012905090565b6000610e03610d6e611b39565b848460016000610d7c611b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dfe9190613d0a565b611b41565b6001905092915050565b60085481565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663441a3e706000806040518363ffffffff1660e01b8152600401610e6f9291906138a9565b600060405180830381600087803b158015610e8957600080fd5b505af1158015610e9d573d6000803e3d6000fd5b50505050610ea9612357565b3373ffffffffffffffffffffffffffffffffffffffff167f188a622567eeca997c3d494fd65f76ca910b90a50a0c44d5e37b2ea5539e027b60405160405180910390a2565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f49919061378b565b60206040518083038186803b158015610f6157600080fd5b505afa158015610f75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f999190612e1c565b905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611014611b39565b73ffffffffffffffffffffffffffffffffffffffff16611032611136565b73ffffffffffffffffffffffffffffffffffffffff1614611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90613a7d565b60405180910390fd5b611092600061255c565b565b600080600854146110da576110d56008546110c7670de0b6b3a76400006110b96111f2565b6121c290919063ffffffff16565b61223d90919063ffffffff16565b6110e4565b670de0b6b3a76400005b905090565b611134600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001546108e1565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461116f90613f01565b80601f016020809104026020016040519081016040528092919081815260200182805461119b90613f01565b80156111e85780601f106111bd576101008083540402835291602001916111e8565b820191906000526020600020905b8154815290600101906020018083116111cb57829003601f168201915b5050505050905090565b6000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166393f1a40b6000306040518363ffffffff1660e01b8152600401611251929190613880565b604080518083038186803b15801561126857600080fd5b505afa15801561127c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a09190612e45565b50905061135e817f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611300919061378b565b60206040518083038186803b15801561131857600080fd5b505afa15801561132c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113509190612e1c565b611f8d90919063ffffffff16565b91505090565b60008060016000611373611b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790613bbd565b60405180910390fd5b61144461143b611b39565b85858403611b41565b600191505092915050565b600061146361145c611b39565b8484611d0c565b6001905092915050565b60095481565b61147b611b39565b73ffffffffffffffffffffffffffffffffffffffff16611499611136565b73ffffffffffffffffffffffffffffffffffffffff16146114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e690613a7d565b60405180910390fd5b60c8811115611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90613abd565b60405180910390fd5b80600b819055507f7be0a744e4d6f887e4fd578978ae62cb2568d860f0f2eb0a54fd0de804b16440600b5460405161156b9190613bfd565b60405180910390a150565b600260065414156115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390613b7d565b60405180910390fd5b600260068190555060008111611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe906139fd565b60405180910390fd5b60006116116111f2565b90506116603330847f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16612622909392919063ffffffff16565b600080600854146116995761169282611684600854866121c290919063ffffffff16565b61223d90919063ffffffff16565b905061169d565b8290505b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506116f7828260000154611f8d90919063ffffffff16565b816000018190555042816001018190555061171d82600854611f8d90919063ffffffff16565b6008819055506117556008546117476117346111f2565b84600001546121c290919063ffffffff16565b61223d90919063ffffffff16565b816002018190555042816003018190555061177033836126ab565b611778612357565b3373ffffffffffffffffffffffffffffffffffffffff167f36af321ec8d3c75236829c5317affd40ddb308863a1236d2d277a4025cccee1e8584426040516117c293929190613c41565b60405180910390a2505050600160068190555050565b60c881565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b600b5481565b611878611b39565b73ffffffffffffffffffffffffffffffffffffffff16611896611136565b73ffffffffffffffffffffffffffffffffffffffff16146118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390613a7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561195c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119539061395d565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fcb7ef3e545f5cdb893f5c568ba710fe08f336375a2d9fd66e161033f8fc09ef3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516119ee919061378b565b60405180910390a150565b611a01611b39565b73ffffffffffffffffffffffffffffffffffffffff16611a1f611136565b73ffffffffffffffffffffffffffffffffffffffff1614611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c90613a7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc9061397d565b60405180910390fd5b611aee8161255c565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba890613afd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c189061399d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611cff9190613bfd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7390613add565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de39061391d565b60405180910390fd5b611df783838361280b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e74906139dd565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f109190613d0a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f749190613bfd565b60405180910390a3611f87848484612810565b50505050565b6000808284611f9c9190613d0a565b905083811015611fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd8906139bd565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290613a9d565b60405180910390fd5b6120678260008361280b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156120ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e49061393d565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546121449190613deb565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121a99190613bfd565b60405180910390a36121bd83600084612810565b505050565b6000808314156121d55760009050612237565b600082846121e39190613d91565b90508284826121f29190613d60565b14612232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222990613a3d565b60405180910390fd5b809150505b92915050565b600061227f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612815565b905092915050565b60006122c983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612878565b905092915050565b6123528363a9059cbb60e01b84846040516024016122f0929190613806565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506128dc565b505050565b6000612361610eee565b9050600081111561255957807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e307f00000000000000000000000000000000000000000000000000000000000000006040518363ffffffff1660e01b81526004016123e89291906137a6565b60206040518083038186803b15801561240057600080fd5b505afa158015612414573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124389190612e1c565b10156124ca576124c97f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166129a39092919063ffffffff16565b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e2bbb1586000836040518363ffffffff1660e01b81526004016125269291906138d2565b600060405180830381600087803b15801561254057600080fd5b505af1158015612554573d6000803e3d6000fd5b505050505b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126a5846323b872dd60e01b858585604051602401612643939291906137cf565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506128dc565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561271b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271290613bdd565b60405180910390fd5b6127276000838361280b565b80600260008282546127399190613d0a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461278e9190613d0a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516127f39190613bfd565b60405180910390a361280760008383612810565b5050565b505050565b505050565b6000808311829061285c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285391906138fb565b60405180910390fd5b506000838561286b9190613d60565b9050809150509392505050565b60008383111582906128c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b791906138fb565b60405180910390fd5b50600083856128cf9190613deb565b9050809150509392505050565b600061293e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612b019092919063ffffffff16565b905060008151111561299e578080602001905181019061295e9190612dca565b61299d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299490613b3d565b60405180910390fd5b5b505050565b6000811480612a3c575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b81526004016129ea9291906137a6565b60206040518083038186803b158015612a0257600080fd5b505afa158015612a16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a3a9190612e1c565b145b612a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7290613b9d565b60405180910390fd5b612afc8363095ea7b360e01b8484604051602401612a9a929190613806565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506128dc565b505050565b6060612b108484600085612b19565b90509392505050565b6060612b2485612c3b565b612b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5a90613b1d565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612b8c9190613774565b60006040518083038185875af1925050503d8060008114612bc9576040519150601f19603f3d011682016040523d82523d6000602084013e612bce565b606091505b50915091508115612be3578092505050612c33565b600081511115612bf65780518082602001fd5b836040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2a91906138fb565b60405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015612c7d57506000801b8214155b92505050919050565b600081359050612c9581613fd1565b92915050565b600081519050612caa81613fe8565b92915050565b600081359050612cbf81613fff565b92915050565b600081519050612cd481613fff565b92915050565b600060208284031215612cec57600080fd5b6000612cfa84828501612c86565b91505092915050565b60008060408385031215612d1657600080fd5b6000612d2485828601612c86565b9250506020612d3585828601612c86565b9150509250929050565b600080600060608486031215612d5457600080fd5b6000612d6286828701612c86565b9350506020612d7386828701612c86565b9250506040612d8486828701612cb0565b9150509250925092565b60008060408385031215612da157600080fd5b6000612daf85828601612c86565b9250506020612dc085828601612cb0565b9150509250929050565b600060208284031215612ddc57600080fd5b6000612dea84828501612c9b565b91505092915050565b600060208284031215612e0557600080fd5b6000612e1384828501612cb0565b91505092915050565b600060208284031215612e2e57600080fd5b6000612e3c84828501612cc5565b91505092915050565b60008060408385031215612e5857600080fd5b6000612e6685828601612cc5565b9250506020612e7785828601612cc5565b9150509250929050565b612e8a81613e1f565b82525050565b612e9981613e31565b82525050565b6000612eaa82613cd8565b612eb48185613cee565b9350612ec4818560208601613ece565b80840191505092915050565b612ed981613e74565b82525050565b612ee881613e98565b82525050565b612ef781613ebc565b82525050565b6000612f0882613ce3565b612f128185613cf9565b9350612f22818560208601613ece565b612f2b81613fc0565b840191505092915050565b6000612f43602383613cf9565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612fa9602283613cf9565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061300f602283613cf9565b91507f546f7368615661756c743a2043616e6e6f74206265207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613075602683613cf9565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130db602283613cf9565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613141601b83613cf9565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613181602683613cf9565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131e7601e83613cf9565b91507f546f7368615661756c743a204e6f7468696e6720746f206465706f73697400006000830152602082019050919050565b6000613227601f83613cf9565b91507f546f7368615661756c743a204e6f7468696e6720746f207769746864726177006000830152602082019050919050565b6000613267602183613cf9565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132cd602883613cf9565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613333602083613cf9565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613373602183613cf9565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133d9603c83613cf9565b91507f546f7368615661756c743a2077697468647261774665652063616e6e6f74206260008301527f65206d6f7265207468616e204d41585f57495448445241575f464545000000006020830152604082019050919050565b600061343f602583613cf9565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134a5602483613cf9565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061350b601d83613cf9565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b600061354b602a83613cf9565b91507f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008301527f6f742073756363656564000000000000000000000000000000000000000000006020830152604082019050919050565b60006135b1602b83613cf9565b91507f546f7368615661756c743a20576974686472617720616d6f756e74206578636560008301527f6564732062616c616e63650000000000000000000000000000000000000000006020830152604082019050919050565b6000613617601f83613cf9565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000613657603683613cf9565b91507f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60008301527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006020830152604082019050919050565b60006136bd602583613cf9565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613723601f83613cf9565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61375f81613e5d565b82525050565b61376e81613e67565b82525050565b60006137808284612e9f565b915081905092915050565b60006020820190506137a06000830184612e81565b92915050565b60006040820190506137bb6000830185612e81565b6137c86020830184612e81565b9392505050565b60006060820190506137e46000830186612e81565b6137f16020830185612e81565b6137fe6040830184613756565b949350505050565b600060408201905061381b6000830185612e81565b6138286020830184613756565b9392505050565b60006020820190506138446000830184612e90565b92915050565b600060208201905061385f6000830184612ed0565b92915050565b600060208201905061387a6000830184612edf565b92915050565b60006040820190506138956000830185612eee565b6138a26020830184612e81565b9392505050565b60006040820190506138be6000830185612eee565b6138cb6020830184612eee565b9392505050565b60006040820190506138e76000830185612eee565b6138f46020830184613756565b9392505050565b600060208201905081810360008301526139158184612efd565b905092915050565b6000602082019050818103600083015261393681612f36565b9050919050565b6000602082019050818103600083015261395681612f9c565b9050919050565b6000602082019050818103600083015261397681613002565b9050919050565b6000602082019050818103600083015261399681613068565b9050919050565b600060208201905081810360008301526139b6816130ce565b9050919050565b600060208201905081810360008301526139d681613134565b9050919050565b600060208201905081810360008301526139f681613174565b9050919050565b60006020820190508181036000830152613a16816131da565b9050919050565b60006020820190508181036000830152613a368161321a565b9050919050565b60006020820190508181036000830152613a568161325a565b9050919050565b60006020820190508181036000830152613a76816132c0565b9050919050565b60006020820190508181036000830152613a9681613326565b9050919050565b60006020820190508181036000830152613ab681613366565b9050919050565b60006020820190508181036000830152613ad6816133cc565b9050919050565b60006020820190508181036000830152613af681613432565b9050919050565b60006020820190508181036000830152613b1681613498565b9050919050565b60006020820190508181036000830152613b36816134fe565b9050919050565b60006020820190508181036000830152613b568161353e565b9050919050565b60006020820190508181036000830152613b76816135a4565b9050919050565b60006020820190508181036000830152613b968161360a565b9050919050565b60006020820190508181036000830152613bb68161364a565b9050919050565b60006020820190508181036000830152613bd6816136b0565b9050919050565b60006020820190508181036000830152613bf681613716565b9050919050565b6000602082019050613c126000830184613756565b92915050565b6000604082019050613c2d6000830185613756565b613c3a6020830184613756565b9392505050565b6000606082019050613c566000830186613756565b613c636020830185613756565b613c706040830184613756565b949350505050565b6000608082019050613c8d6000830187613756565b613c9a6020830186613756565b613ca76040830185613756565b613cb46060830184613756565b95945050505050565b6000602082019050613cd26000830184613765565b92915050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000613d1582613e5d565b9150613d2083613e5d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d5557613d54613f33565b5b828201905092915050565b6000613d6b82613e5d565b9150613d7683613e5d565b925082613d8657613d85613f62565b5b828204905092915050565b6000613d9c82613e5d565b9150613da783613e5d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613de057613ddf613f33565b5b828202905092915050565b6000613df682613e5d565b9150613e0183613e5d565b925082821015613e1457613e13613f33565b5b828203905092915050565b6000613e2a82613e3d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000613e7f82613e86565b9050919050565b6000613e9182613e3d565b9050919050565b6000613ea382613eaa565b9050919050565b6000613eb582613e3d565b9050919050565b6000613ec782613e5d565b9050919050565b60005b83811015613eec578082015181840152602081019050613ed1565b83811115613efb576000848401525b50505050565b60006002820490506001821680613f1957607f821691505b60208210811415613f2d57613f2c613f91565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b613fda81613e1f565b8114613fe557600080fd5b50565b613ff181613e31565b8114613ffc57600080fd5b50565b61400881613e5d565b811461401357600080fd5b5056fea2646970667358221220907e804fb82aa32e196efd42a51dcc0797f1d0b38810d0ce2e83fb596845a41264736f6c63430008000033000000000000000000000000e1ea3fc4413e143af108973342d76080622e66c40000000000000000000000005a50abc9a7ba04b0e4fe1334f126f41261a4d5f1000000000000000000000000c98b486802918bd5f5eaaf0ca656dec460837505000000000000000000000000c98b486802918bd5f5eaaf0ca656dec460837505000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000d546f73686141636b546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008546f73686141636b000000000000000000000000000000000000000000000000

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063853828b61161011a578063b6b55f25116100ad578063e941fa781161007c578063e941fa7814610599578063f0f44260146105b7578063f2fde38b146105d3578063fb1db278146105ef578063fc0c546a1461060d576101fb565b8063b6b55f2514610511578063d4b0de2f1461052d578063dd62ed3e1461054b578063df10b4e61461057b576101fb565b8063a457c2d7116100e9578063a457c2d714610477578063a9059cbb146104a7578063b60f0531146104d7578063b6ac642a146104f5576101fb565b8063853828b6146104135780638da5cb5b1461041d57806395d89b411461043b57806399c91a6414610459576101fb565b8063395093511161019257806361d027b31161016157806361d027b31461039d57806370a08231146103bb578063715018a6146103eb57806377c7b8fc146103f5576101fb565b806339509351146103275780633a98ef39146103575780634641257d1461037557806348a0d7541461037f576101fb565b806323b872dd116101ce57806323b872dd1461029f5780632816cc4a146102cf5780632e1a7d4d146102ed578063313ce56714610309576101fb565b806306fdde0314610200578063095ea7b31461021e57806318160ddd1461024e5780631959a0021461026c575b600080fd5b61020861062b565b60405161021591906138fb565b60405180910390f35b61023860048036038101906102339190612d8e565b6106bd565b604051610245919061382f565b60405180910390f35b6102566106db565b6040516102639190613bfd565b60405180910390f35b61028660048036038101906102819190612cda565b6106e5565b6040516102969493929190613c78565b60405180910390f35b6102b960048036038101906102b49190612d3f565b610715565b6040516102c6919061382f565b60405180910390f35b6102d761080d565b6040516102e49190613bfd565b60405180910390f35b61030760048036038101906103029190612df3565b6108e1565b005b610311610d58565b60405161031e9190613cbd565b60405180910390f35b610341600480360381019061033c9190612d8e565b610d61565b60405161034e919061382f565b60405180910390f35b61035f610e0d565b60405161036c9190613bfd565b60405180910390f35b61037d610e13565b005b610387610eee565b6040516103949190613bfd565b60405180910390f35b6103a5610f9e565b6040516103b2919061378b565b60405180910390f35b6103d560048036038101906103d09190612cda565b610fc4565b6040516103e29190613bfd565b60405180910390f35b6103f361100c565b005b6103fd611094565b60405161040a9190613bfd565b60405180910390f35b61041b6110e9565b005b610425611136565b604051610432919061378b565b60405180910390f35b610443611160565b60405161045091906138fb565b60405180910390f35b6104616111f2565b60405161046e9190613bfd565b60405180910390f35b610491600480360381019061048c9190612d8e565b611364565b60405161049e919061382f565b60405180910390f35b6104c160048036038101906104bc9190612d8e565b61144f565b6040516104ce919061382f565b60405180910390f35b6104df61146d565b6040516104ec9190613bfd565b60405180910390f35b61050f600480360381019061050a9190612df3565b611473565b005b61052b60048036038101906105269190612df3565b611576565b005b6105356117d8565b6040516105429190613bfd565b60405180910390f35b61056560048036038101906105609190612d03565b6117dd565b6040516105729190613bfd565b60405180910390f35b610583611864565b6040516105909190613bfd565b60405180910390f35b6105a161186a565b6040516105ae9190613bfd565b60405180910390f35b6105d160048036038101906105cc9190612cda565b611870565b005b6105ed60048036038101906105e89190612cda565b6119f9565b005b6105f7611af1565b6040516106049190613865565b60405180910390f35b610615611b15565b604051610622919061384a565b60405180910390f35b60606003805461063a90613f01565b80601f016020809104026020016040519081016040528092919081815260200182805461066690613f01565b80156106b35780601f10610688576101008083540402835291602001916106b3565b820191906000526020600020905b81548152906001019060200180831161069657829003601f168201915b5050505050905090565b60006106d16106ca611b39565b8484611b41565b6001905092915050565b6000600254905090565b60076020528060005260406000206000915090508060000154908060010154908060020154908060030154905084565b6000610722848484611d0c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061076d611b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e490613a5d565b60405180910390fd5b610801856107f9611b39565b858403611b41565b60019150509392505050565b6000807f0000000000000000000000005a50abc9a7ba04b0e4fe1334f126f41261a4d5f173ffffffffffffffffffffffffffffffffffffffff166348e43af46000306040518363ffffffff1660e01b815260040161086c929190613880565b60206040518083038186803b15801561088457600080fd5b505afa158015610898573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108bc9190612e1c565b90506108d86108c9610eee565b82611f8d90919063ffffffff16565b90508091505090565b60026006541415610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e90613b7d565b60405180910390fd5b60026006819055506000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600082116109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90613a1d565b60405180910390fd5b80600001548211156109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f390613b5d565b60405180910390fd5b610a063383611feb565b6000610a36600854610a2885610a1a6111f2565b6121c290919063ffffffff16565b61223d90919063ffffffff16565b9050610a4f83836000015461228790919063ffffffff16565b8260000181905550610a6c8360085461228790919063ffffffff16565b6008819055506000610a7c610eee565b905081811015610b70576000610a9b828461228790919063ffffffff16565b90507f0000000000000000000000005a50abc9a7ba04b0e4fe1334f126f41261a4d5f173ffffffffffffffffffffffffffffffffffffffff1663441a3e706000836040518363ffffffff1660e01b8152600401610af99291906138d2565b600060405180830381600087803b158015610b1357600080fd5b505af1158015610b27573d6000803e3d6000fd5b505050506000610b35610eee565b90506000610b4c848361228790919063ffffffff16565b905082811015610b6c57610b698185611f8d90919063ffffffff16565b94505b5050505b6000600b54118015610b995750610b96600c548460010154611f8d90919063ffffffff16565b42105b15610c4f576000610bc9612710610bbb600b54866121c290919063ffffffff16565b61223d90919063ffffffff16565b9050610c38600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16827f000000000000000000000000e1ea3fc4413e143af108973342d76080622e66c473ffffffffffffffffffffffffffffffffffffffff166122d19092919063ffffffff16565b610c4b818461228790919063ffffffff16565b9250505b600083600001541115610c9b57610c8e600854610c80610c6d6111f2565b86600001546121c290919063ffffffff16565b61223d90919063ffffffff16565b8360020181905550610ca6565b600083600201819055505b428360030181905550610cfa33837f000000000000000000000000e1ea3fc4413e143af108973342d76080622e66c473ffffffffffffffffffffffffffffffffffffffff166122d19092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5688386604051610d42929190613c18565b60405180910390a2505050600160068190555050565b60006012905090565b6000610e03610d6e611b39565b848460016000610d7c611b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dfe9190613d0a565b611b41565b6001905092915050565b60085481565b7f0000000000000000000000005a50abc9a7ba04b0e4fe1334f126f41261a4d5f173ffffffffffffffffffffffffffffffffffffffff1663441a3e706000806040518363ffffffff1660e01b8152600401610e6f9291906138a9565b600060405180830381600087803b158015610e8957600080fd5b505af1158015610e9d573d6000803e3d6000fd5b50505050610ea9612357565b3373ffffffffffffffffffffffffffffffffffffffff167f188a622567eeca997c3d494fd65f76ca910b90a50a0c44d5e37b2ea5539e027b60405160405180910390a2565b60007f000000000000000000000000e1ea3fc4413e143af108973342d76080622e66c473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f49919061378b565b60206040518083038186803b158015610f6157600080fd5b505afa158015610f75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f999190612e1c565b905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611014611b39565b73ffffffffffffffffffffffffffffffffffffffff16611032611136565b73ffffffffffffffffffffffffffffffffffffffff1614611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f90613a7d565b60405180910390fd5b611092600061255c565b565b600080600854146110da576110d56008546110c7670de0b6b3a76400006110b96111f2565b6121c290919063ffffffff16565b61223d90919063ffffffff16565b6110e4565b670de0b6b3a76400005b905090565b611134600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001546108e1565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461116f90613f01565b80601f016020809104026020016040519081016040528092919081815260200182805461119b90613f01565b80156111e85780601f106111bd576101008083540402835291602001916111e8565b820191906000526020600020905b8154815290600101906020018083116111cb57829003601f168201915b5050505050905090565b6000807f0000000000000000000000005a50abc9a7ba04b0e4fe1334f126f41261a4d5f173ffffffffffffffffffffffffffffffffffffffff166393f1a40b6000306040518363ffffffff1660e01b8152600401611251929190613880565b604080518083038186803b15801561126857600080fd5b505afa15801561127c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a09190612e45565b50905061135e817f000000000000000000000000e1ea3fc4413e143af108973342d76080622e66c473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611300919061378b565b60206040518083038186803b15801561131857600080fd5b505afa15801561132c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113509190612e1c565b611f8d90919063ffffffff16565b91505090565b60008060016000611373611b39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790613bbd565b60405180910390fd5b61144461143b611b39565b85858403611b41565b600191505092915050565b600061146361145c611b39565b8484611d0c565b6001905092915050565b60095481565b61147b611b39565b73ffffffffffffffffffffffffffffffffffffffff16611499611136565b73ffffffffffffffffffffffffffffffffffffffff16146114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e690613a7d565b60405180910390fd5b60c8811115611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90613abd565b60405180910390fd5b80600b819055507f7be0a744e4d6f887e4fd578978ae62cb2568d860f0f2eb0a54fd0de804b16440600b5460405161156b9190613bfd565b60405180910390a150565b600260065414156115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390613b7d565b60405180910390fd5b600260068190555060008111611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe906139fd565b60405180910390fd5b60006116116111f2565b90506116603330847f000000000000000000000000e1ea3fc4413e143af108973342d76080622e66c473ffffffffffffffffffffffffffffffffffffffff16612622909392919063ffffffff16565b600080600854146116995761169282611684600854866121c290919063ffffffff16565b61223d90919063ffffffff16565b905061169d565b8290505b6000600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506116f7828260000154611f8d90919063ffffffff16565b816000018190555042816001018190555061171d82600854611f8d90919063ffffffff16565b6008819055506117556008546117476117346111f2565b84600001546121c290919063ffffffff16565b61223d90919063ffffffff16565b816002018190555042816003018190555061177033836126ab565b611778612357565b3373ffffffffffffffffffffffffffffffffffffffff167f36af321ec8d3c75236829c5317affd40ddb308863a1236d2d277a4025cccee1e8584426040516117c293929190613c41565b60405180910390a2505050600160068190555050565b60c881565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b600b5481565b611878611b39565b73ffffffffffffffffffffffffffffffffffffffff16611896611136565b73ffffffffffffffffffffffffffffffffffffffff16146118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e390613a7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561195c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119539061395d565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fcb7ef3e545f5cdb893f5c568ba710fe08f336375a2d9fd66e161033f8fc09ef3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516119ee919061378b565b60405180910390a150565b611a01611b39565b73ffffffffffffffffffffffffffffffffffffffff16611a1f611136565b73ffffffffffffffffffffffffffffffffffffffff1614611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c90613a7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc9061397d565b60405180910390fd5b611aee8161255c565b50565b7f0000000000000000000000005a50abc9a7ba04b0e4fe1334f126f41261a4d5f181565b7f000000000000000000000000e1ea3fc4413e143af108973342d76080622e66c481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba890613afd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c189061399d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611cff9190613bfd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7390613add565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de39061391d565b60405180910390fd5b611df783838361280b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e74906139dd565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f109190613d0a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f749190613bfd565b60405180910390a3611f87848484612810565b50505050565b6000808284611f9c9190613d0a565b905083811015611fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd8906139bd565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561205b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205290613a9d565b60405180910390fd5b6120678260008361280b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156120ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e49061393d565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546121449190613deb565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516121a99190613bfd565b60405180910390a36121bd83600084612810565b505050565b6000808314156121d55760009050612237565b600082846121e39190613d91565b90508284826121f29190613d60565b14612232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222990613a3d565b60405180910390fd5b809150505b92915050565b600061227f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612815565b905092915050565b60006122c983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612878565b905092915050565b6123528363a9059cbb60e01b84846040516024016122f0929190613806565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506128dc565b505050565b6000612361610eee565b9050600081111561255957807f000000000000000000000000e1ea3fc4413e143af108973342d76080622e66c473ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e307f0000000000000000000000005a50abc9a7ba04b0e4fe1334f126f41261a4d5f16040518363ffffffff1660e01b81526004016123e89291906137a6565b60206040518083038186803b15801561240057600080fd5b505afa158015612414573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124389190612e1c565b10156124ca576124c97f0000000000000000000000005a50abc9a7ba04b0e4fe1334f126f41261a4d5f17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000e1ea3fc4413e143af108973342d76080622e66c473ffffffffffffffffffffffffffffffffffffffff166129a39092919063ffffffff16565b5b7f0000000000000000000000005a50abc9a7ba04b0e4fe1334f126f41261a4d5f173ffffffffffffffffffffffffffffffffffffffff1663e2bbb1586000836040518363ffffffff1660e01b81526004016125269291906138d2565b600060405180830381600087803b15801561254057600080fd5b505af1158015612554573d6000803e3d6000fd5b505050505b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126a5846323b872dd60e01b858585604051602401612643939291906137cf565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506128dc565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561271b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271290613bdd565b60405180910390fd5b6127276000838361280b565b80600260008282546127399190613d0a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461278e9190613d0a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516127f39190613bfd565b60405180910390a361280760008383612810565b5050565b505050565b505050565b6000808311829061285c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285391906138fb565b60405180910390fd5b506000838561286b9190613d60565b9050809150509392505050565b60008383111582906128c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b791906138fb565b60405180910390fd5b50600083856128cf9190613deb565b9050809150509392505050565b600061293e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612b019092919063ffffffff16565b905060008151111561299e578080602001905181019061295e9190612dca565b61299d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299490613b3d565b60405180910390fd5b5b505050565b6000811480612a3c575060008373ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30856040518363ffffffff1660e01b81526004016129ea9291906137a6565b60206040518083038186803b158015612a0257600080fd5b505afa158015612a16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a3a9190612e1c565b145b612a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7290613b9d565b60405180910390fd5b612afc8363095ea7b360e01b8484604051602401612a9a929190613806565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506128dc565b505050565b6060612b108484600085612b19565b90509392505050565b6060612b2485612c3b565b612b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5a90613b1d565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051612b8c9190613774565b60006040518083038185875af1925050503d8060008114612bc9576040519150601f19603f3d011682016040523d82523d6000602084013e612bce565b606091505b50915091508115612be3578092505050612c33565b600081511115612bf65780518082602001fd5b836040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2a91906138fb565b60405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015612c7d57506000801b8214155b92505050919050565b600081359050612c9581613fd1565b92915050565b600081519050612caa81613fe8565b92915050565b600081359050612cbf81613fff565b92915050565b600081519050612cd481613fff565b92915050565b600060208284031215612cec57600080fd5b6000612cfa84828501612c86565b91505092915050565b60008060408385031215612d1657600080fd5b6000612d2485828601612c86565b9250506020612d3585828601612c86565b9150509250929050565b600080600060608486031215612d5457600080fd5b6000612d6286828701612c86565b9350506020612d7386828701612c86565b9250506040612d8486828701612cb0565b9150509250925092565b60008060408385031215612da157600080fd5b6000612daf85828601612c86565b9250506020612dc085828601612cb0565b9150509250929050565b600060208284031215612ddc57600080fd5b6000612dea84828501612c9b565b91505092915050565b600060208284031215612e0557600080fd5b6000612e1384828501612cb0565b91505092915050565b600060208284031215612e2e57600080fd5b6000612e3c84828501612cc5565b91505092915050565b60008060408385031215612e5857600080fd5b6000612e6685828601612cc5565b9250506020612e7785828601612cc5565b9150509250929050565b612e8a81613e1f565b82525050565b612e9981613e31565b82525050565b6000612eaa82613cd8565b612eb48185613cee565b9350612ec4818560208601613ece565b80840191505092915050565b612ed981613e74565b82525050565b612ee881613e98565b82525050565b612ef781613ebc565b82525050565b6000612f0882613ce3565b612f128185613cf9565b9350612f22818560208601613ece565b612f2b81613fc0565b840191505092915050565b6000612f43602383613cf9565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612fa9602283613cf9565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061300f602283613cf9565b91507f546f7368615661756c743a2043616e6e6f74206265207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613075602683613cf9565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130db602283613cf9565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613141601b83613cf9565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613181602683613cf9565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131e7601e83613cf9565b91507f546f7368615661756c743a204e6f7468696e6720746f206465706f73697400006000830152602082019050919050565b6000613227601f83613cf9565b91507f546f7368615661756c743a204e6f7468696e6720746f207769746864726177006000830152602082019050919050565b6000613267602183613cf9565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006132cd602883613cf9565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613333602083613cf9565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613373602183613cf9565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006133d9603c83613cf9565b91507f546f7368615661756c743a2077697468647261774665652063616e6e6f74206260008301527f65206d6f7265207468616e204d41585f57495448445241575f464545000000006020830152604082019050919050565b600061343f602583613cf9565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134a5602483613cf9565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061350b601d83613cf9565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b600061354b602a83613cf9565b91507f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008301527f6f742073756363656564000000000000000000000000000000000000000000006020830152604082019050919050565b60006135b1602b83613cf9565b91507f546f7368615661756c743a20576974686472617720616d6f756e74206578636560008301527f6564732062616c616e63650000000000000000000000000000000000000000006020830152604082019050919050565b6000613617601f83613cf9565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6000613657603683613cf9565b91507f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60008301527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006020830152604082019050919050565b60006136bd602583613cf9565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613723601f83613cf9565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61375f81613e5d565b82525050565b61376e81613e67565b82525050565b60006137808284612e9f565b915081905092915050565b60006020820190506137a06000830184612e81565b92915050565b60006040820190506137bb6000830185612e81565b6137c86020830184612e81565b9392505050565b60006060820190506137e46000830186612e81565b6137f16020830185612e81565b6137fe6040830184613756565b949350505050565b600060408201905061381b6000830185612e81565b6138286020830184613756565b9392505050565b60006020820190506138446000830184612e90565b92915050565b600060208201905061385f6000830184612ed0565b92915050565b600060208201905061387a6000830184612edf565b92915050565b60006040820190506138956000830185612eee565b6138a26020830184612e81565b9392505050565b60006040820190506138be6000830185612eee565b6138cb6020830184612eee565b9392505050565b60006040820190506138e76000830185612eee565b6138f46020830184613756565b9392505050565b600060208201905081810360008301526139158184612efd565b905092915050565b6000602082019050818103600083015261393681612f36565b9050919050565b6000602082019050818103600083015261395681612f9c565b9050919050565b6000602082019050818103600083015261397681613002565b9050919050565b6000602082019050818103600083015261399681613068565b9050919050565b600060208201905081810360008301526139b6816130ce565b9050919050565b600060208201905081810360008301526139d681613134565b9050919050565b600060208201905081810360008301526139f681613174565b9050919050565b60006020820190508181036000830152613a16816131da565b9050919050565b60006020820190508181036000830152613a368161321a565b9050919050565b60006020820190508181036000830152613a568161325a565b9050919050565b60006020820190508181036000830152613a76816132c0565b9050919050565b60006020820190508181036000830152613a9681613326565b9050919050565b60006020820190508181036000830152613ab681613366565b9050919050565b60006020820190508181036000830152613ad6816133cc565b9050919050565b60006020820190508181036000830152613af681613432565b9050919050565b60006020820190508181036000830152613b1681613498565b9050919050565b60006020820190508181036000830152613b36816134fe565b9050919050565b60006020820190508181036000830152613b568161353e565b9050919050565b60006020820190508181036000830152613b76816135a4565b9050919050565b60006020820190508181036000830152613b968161360a565b9050919050565b60006020820190508181036000830152613bb68161364a565b9050919050565b60006020820190508181036000830152613bd6816136b0565b9050919050565b60006020820190508181036000830152613bf681613716565b9050919050565b6000602082019050613c126000830184613756565b92915050565b6000604082019050613c2d6000830185613756565b613c3a6020830184613756565b9392505050565b6000606082019050613c566000830186613756565b613c636020830185613756565b613c706040830184613756565b949350505050565b6000608082019050613c8d6000830187613756565b613c9a6020830186613756565b613ca76040830185613756565b613cb46060830184613756565b95945050505050565b6000602082019050613cd26000830184613765565b92915050565b600081519050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b6000613d1582613e5d565b9150613d2083613e5d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d5557613d54613f33565b5b828201905092915050565b6000613d6b82613e5d565b9150613d7683613e5d565b925082613d8657613d85613f62565b5b828204905092915050565b6000613d9c82613e5d565b9150613da783613e5d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613de057613ddf613f33565b5b828202905092915050565b6000613df682613e5d565b9150613e0183613e5d565b925082821015613e1457613e13613f33565b5b828203905092915050565b6000613e2a82613e3d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000613e7f82613e86565b9050919050565b6000613e9182613e3d565b9050919050565b6000613ea382613eaa565b9050919050565b6000613eb582613e3d565b9050919050565b6000613ec782613e5d565b9050919050565b60005b83811015613eec578082015181840152602081019050613ed1565b83811115613efb576000848401525b50505050565b60006002820490506001821680613f1957607f821691505b60208210811415613f2d57613f2c613f91565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b613fda81613e1f565b8114613fe557600080fd5b50565b613ff181613e31565b8114613ffc57600080fd5b50565b61400881613e5d565b811461401357600080fd5b5056fea2646970667358221220907e804fb82aa32e196efd42a51dcc0797f1d0b38810d0ce2e83fb596845a41264736f6c63430008000033