S Price: $0.896872 (+5.46%)

Contract

0x4C4C6Edfa47dBD865406a593166DbBd11925C442

Overview

S Balance

Sonic LogoSonic LogoSonic Logo0 S

S Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve88816502025-02-20 13:06:243 days ago1740056784IN
0x4C4C6Edf...11925C442
0 S0.00587964120
Approve88813282025-02-20 13:04:213 days ago1740056661IN
0x4C4C6Edf...11925C442
0 S0.021164863.75
Approve88813212025-02-20 13:04:193 days ago1740056659IN
0x4C4C6Edf...11925C442
0 S0.0031235563.75
Approve88805502025-02-20 12:59:133 days ago1740056353IN
0x4C4C6Edf...11925C442
0 S0.0025665255

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
UniShare

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2025-02-20
*/

/*
UniTomb an Algorithmic Token on Base Chain backed by real yields!
/*

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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IWETH is IERC20 {
    function deposit() external payable;

    function withdraw(uint256) external;
}
pragma solidity 0.8.19;

interface IOracle {
    function update() external;

    function consult(
        address _token,
        uint256 _amountIn
    ) external view returns (uint144 amountOut);

    function twap(
        address _token,
        uint256 _amountIn
    ) external view returns (uint144 _amountOut);
}
pragma solidity 0.8.19;

library SafeMath8 {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint8 a, uint8 b) internal pure returns (uint8) {
        uint8 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(uint8 a, uint8 b) internal pure returns (uint8) {
        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(
        uint8 a,
        uint8 b,
        string memory errorMessage
    ) internal pure returns (uint8) {
        require(b <= a, errorMessage);
        uint8 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(uint8 a, uint8 b) internal pure returns (uint8) {
        // 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;
        }

        uint8 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(uint8 a, uint8 b) internal pure returns (uint8) {
        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(
        uint8 a,
        uint8 b,
        string memory errorMessage
    ) internal pure returns (uint8) {
        require(b > 0, errorMessage);
        uint8 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(uint8 a, uint8 b) internal pure returns (uint8) {
        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(
        uint8 a,
        uint8 b,
        string memory errorMessage
    ) internal pure returns (uint8) {
        require(b != 0, errorMessage);
        return a % b;
    }
}
pragma solidity 0.8.19;

contract Operator is Context, Ownable {

    mapping(address => bool) private _operator;

    event OperatorTransferred(
        address indexed previousOperator,
        address indexed newOperator
    );

    constructor() {
    _operator[_msgSender()] = true;
    }

    function operator() public view returns (bool) {
        return _operator[_msgSender()];
    }

    modifier onlyOperator() {
        require(
            _operator[_msgSender()] == true,
            "operator: caller is not the operator"
        );
        _;
    }

    function isOperator() public view returns (bool) {
        return _operator[_msgSender()];
    }

    function setOperator(address newOperator) public onlyOwner {
        _operator[newOperator] = true;
    }

    function removeOperator(address oldOperator) public onlyOwner {
        _operator[oldOperator] = false;
    }

}
pragma solidity ^0.8.0;

interface IRouter {
    struct Route {
        address from;
        address to;
        bool stable;
        address factory;
    }

    error ETHTransferFailed();
    error Expired();
    error InsufficientAmount();
    error InsufficientAmountA();
    error InsufficientAmountB();
    error InsufficientAmountADesired();
    error InsufficientAmountBDesired();
    error InsufficientAmountAOptimal();
    error InsufficientLiquidity();
    error InsufficientOutputAmount();
    error InvalidAmountInForETHDeposit();
    error InvalidTokenInForETHDeposit();
    error InvalidPath();
    error InvalidRouteA();
    error InvalidRouteB();
    error OnlyWETH();
    error PoolDoesNotExist();
    error PoolFactoryDoesNotExist();
    error SameAddresses();
    error ZeroAddress();

    /// @notice Address of FactoryRegistry.sol
    function factoryRegistry() external view returns (address);

    /// @notice Address of Protocol PoolFactory.sol
    function defaultFactory() external view returns (address);

    /// @notice Address of Voter.sol
    function voter() external view returns (address);

    /// @notice Interface of WETH contract used for WETH => ETH wrapping/unwrapping
    function weth() external view returns (IWETH);

    /// @dev Represents Ether. Used by zapper to determine whether to return assets as ETH/WETH.
    function ETHER() external view returns (address);

    /// @dev Struct containing information necessary to zap in and out of pools
    /// @param tokenA           .
    /// @param tokenB           .
    /// @param stable           Stable or volatile pool
    /// @param factory          factory of pool
    /// @param amountOutMinA    Minimum amount expected from swap leg of zap via routesA
    /// @param amountOutMinB    Minimum amount expected from swap leg of zap via routesB
    /// @param amountAMin       Minimum amount of tokenA expected from liquidity leg of zap
    /// @param amountBMin       Minimum amount of tokenB expected from liquidity leg of zap
    struct Zap {
        address tokenA;
        address tokenB;
        bool stable;
        address factory;
        uint256 amountOutMinA;
        uint256 amountOutMinB;
        uint256 amountAMin;
        uint256 amountBMin;
    }

    /// @notice Sort two tokens by which address value is less than the other
    /// @param tokenA   Address of token to sort
    /// @param tokenB   Address of token to sort
    /// @return token0  Lower address value between tokenA and tokenB
    /// @return token1  Higher address value between tokenA and tokenB
    function sortTokens(address tokenA, address tokenB) external pure returns (address token0, address token1);

    /// @notice Calculate the address of a pool by its' factory.
    ///         Used by all Router functions containing a `Route[]` or `_factory` argument.
    ///         Reverts if _factory is not approved by the FactoryRegistry
    /// @dev Returns a randomly generated address for a nonexistent pool
    /// @param tokenA   Address of token to query
    /// @param tokenB   Address of token to query
    /// @param stable   True if pool is stable, false if volatile
    /// @param _factory Address of factory which created the pool
    function poolFor(
        address tokenA,
        address tokenB,
        bool stable,
        address _factory
    ) external view returns (address pool);

    /// @notice Fetch and sort the reserves for a pool
    /// @param tokenA       .
    /// @param tokenB       .
    /// @param stable       True if pool is stable, false if volatile
    /// @param _factory     Address of PoolFactory for tokenA and tokenB
    /// @return reserveA    Amount of reserves of the sorted token A
    /// @return reserveB    Amount of reserves of the sorted token B
    function getReserves(
        address tokenA,
        address tokenB,
        bool stable,
        address _factory
    ) external view returns (uint256 reserveA, uint256 reserveB);

    /// @notice Perform chained getAmountOut calculations on any number of pools
    function getAmountsOut(uint256 amountIn, Route[] memory routes) external view returns (uint256[] memory amounts);

    // **** ADD LIQUIDITY ****

    /// @notice Quote the amount deposited into a Pool
    /// @param tokenA           .
    /// @param tokenB           .
    /// @param stable           True if pool is stable, false if volatile
    /// @param _factory         Address of PoolFactory for tokenA and tokenB
    /// @param amountADesired   Amount of tokenA desired to deposit
    /// @param amountBDesired   Amount of tokenB desired to deposit
    /// @return amountA         Amount of tokenA to actually deposit
    /// @return amountB         Amount of tokenB to actually deposit
    /// @return liquidity       Amount of liquidity token returned from deposit
    function quoteAddLiquidity(
        address tokenA,
        address tokenB,
        bool stable,
        address _factory,
        uint256 amountADesired,
        uint256 amountBDesired
    ) external view returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    /// @notice Quote the amount of liquidity removed from a Pool
    /// @param tokenA       .
    /// @param tokenB       .
    /// @param stable       True if pool is stable, false if volatile
    /// @param _factory     Address of PoolFactory for tokenA and tokenB
    /// @param liquidity    Amount of liquidity to remove
    /// @return amountA     Amount of tokenA received
    /// @return amountB     Amount of tokenB received
    function quoteRemoveLiquidity(
        address tokenA,
        address tokenB,
        bool stable,
        address _factory,
        uint256 liquidity
    ) external view returns (uint256 amountA, uint256 amountB);

    /// @notice Add liquidity of two tokens to a Pool
    /// @param tokenA           .
    /// @param tokenB           .
    /// @param stable           True if pool is stable, false if volatile
    /// @param amountADesired   Amount of tokenA desired to deposit
    /// @param amountBDesired   Amount of tokenB desired to deposit
    /// @param amountAMin       Minimum amount of tokenA to deposit
    /// @param amountBMin       Minimum amount of tokenB to deposit
    /// @param to               Recipient of liquidity token
    /// @param deadline         Deadline to receive liquidity
    /// @return amountA         Amount of tokenA to actually deposit
    /// @return amountB         Amount of tokenB to actually deposit
    /// @return liquidity       Amount of liquidity token returned from deposit
    function addLiquidity(
        address tokenA,
        address tokenB,
        bool stable,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    /// @notice Add liquidity of a token and WETH (transferred as ETH) to a Pool
    /// @param token                .
    /// @param stable               True if pool is stable, false if volatile
    /// @param amountTokenDesired   Amount of token desired to deposit
    /// @param amountTokenMin       Minimum amount of token to deposit
    /// @param amountETHMin         Minimum amount of ETH to deposit
    /// @param to                   Recipient of liquidity token
    /// @param deadline             Deadline to add liquidity
    /// @return amountToken         Amount of token to actually deposit
    /// @return amountETH           Amount of tokenETH to actually deposit
    /// @return liquidity           Amount of liquidity token returned from deposit
    function addLiquidityETH(
        address token,
        bool stable,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    // **** REMOVE LIQUIDITY ****

    /// @notice Remove liquidity of two tokens from a Pool
    /// @param tokenA       .
    /// @param tokenB       .
    /// @param stable       True if pool is stable, false if volatile
    /// @param liquidity    Amount of liquidity to remove
    /// @param amountAMin   Minimum amount of tokenA to receive
    /// @param amountBMin   Minimum amount of tokenB to receive
    /// @param to           Recipient of tokens received
    /// @param deadline     Deadline to remove liquidity
    /// @return amountA     Amount of tokenA received
    /// @return amountB     Amount of tokenB received
    function removeLiquidity(
        address tokenA,
        address tokenB,
        bool stable,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    /// @notice Remove liquidity of a token and WETH (returned as ETH) from a Pool
    /// @param token            .
    /// @param stable           True if pool is stable, false if volatile
    /// @param liquidity        Amount of liquidity to remove
    /// @param amountTokenMin   Minimum amount of token to receive
    /// @param amountETHMin     Minimum amount of ETH to receive
    /// @param to               Recipient of liquidity token
    /// @param deadline         Deadline to receive liquidity
    /// @return amountToken     Amount of token received
    /// @return amountETH       Amount of ETH received
    function removeLiquidityETH(
        address token,
        bool stable,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    /// @notice Remove liquidity of a fee-on-transfer token and WETH (returned as ETH) from a Pool
    /// @param token            .
    /// @param stable           True if pool is stable, false if volatile
    /// @param liquidity        Amount of liquidity to remove
    /// @param amountTokenMin   Minimum amount of token to receive
    /// @param amountETHMin     Minimum amount of ETH to receive
    /// @param to               Recipient of liquidity token
    /// @param deadline         Deadline to receive liquidity
    /// @return amountETH       Amount of ETH received
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        bool stable,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    // **** SWAP ****

    /// @notice Swap one token for another
    /// @param amountIn     Amount of token in
    /// @param amountOutMin Minimum amount of desired token received
    /// @param routes       Array of trade routes used in the swap
    /// @param to           Recipient of the tokens received
    /// @param deadline     Deadline to receive tokens
    /// @return amounts     Array of amounts returned per route
    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        Route[] calldata routes,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    /// @notice Swap ETH for a token
    /// @param amountOutMin Minimum amount of desired token received
    /// @param routes       Array of trade routes used in the swap
    /// @param to           Recipient of the tokens received
    /// @param deadline     Deadline to receive tokens
    /// @return amounts     Array of amounts returned per route
    function swapExactETHForTokens(
        uint256 amountOutMin,
        Route[] calldata routes,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    /// @notice Swap a token for WETH (returned as ETH)
    /// @param amountIn     Amount of token in
    /// @param amountOutMin Minimum amount of desired ETH
    /// @param routes       Array of trade routes used in the swap
    /// @param to           Recipient of the tokens received
    /// @param deadline     Deadline to receive tokens
    /// @return amounts     Array of amounts returned per route
    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        Route[] calldata routes,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    /// @notice Swap one token for another without slippage protection
    /// @return amounts     Array of amounts to swap  per route
    /// @param routes       Array of trade routes used in the swap
    /// @param to           Recipient of the tokens received
    /// @param deadline     Deadline to receive tokens
    function UNSAFE_swapExactTokensForTokens(
        uint256[] memory amounts,
        Route[] calldata routes,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory);

    // **** SWAP (supporting fee-on-transfer tokens) ****

    /// @notice Swap one token for another supporting fee-on-transfer tokens
    /// @param amountIn     Amount of token in
    /// @param amountOutMin Minimum amount of desired token received
    /// @param routes       Array of trade routes used in the swap
    /// @param to           Recipient of the tokens received
    /// @param deadline     Deadline to receive tokens
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        Route[] calldata routes,
        address to,
        uint256 deadline
    ) external;

    /// @notice Swap ETH for a token supporting fee-on-transfer tokens
    /// @param amountOutMin Minimum amount of desired token received
    /// @param routes       Array of trade routes used in the swap
    /// @param to           Recipient of the tokens received
    /// @param deadline     Deadline to receive tokens
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        Route[] calldata routes,
        address to,
        uint256 deadline
    ) external payable;

    /// @notice Swap a token for WETH (returned as ETH) supporting fee-on-transfer tokens
    /// @param amountIn     Amount of token in
    /// @param amountOutMin Minimum amount of desired ETH
    /// @param routes       Array of trade routes used in the swap
    /// @param to           Recipient of the tokens received
    /// @param deadline     Deadline to receive tokens
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        Route[] calldata routes,
        address to,
        uint256 deadline
    ) external;

    /// @notice Zap a token A into a pool (B, C). (A can be equal to B or C).
    ///         Supports standard ERC20 tokens only (i.e. not fee-on-transfer tokens etc).
    ///         Slippage is required for the initial swap.
    ///         Additional slippage may be required when adding liquidity as the
    ///         price of the token may have changed.
    /// @param tokenIn      Token you are zapping in from (i.e. input token).
    /// @param amountInA    Amount of input token you wish to send down routesA
    /// @param amountInB    Amount of input token you wish to send down routesB
    /// @param zapInPool    Contains zap struct information. See Zap struct.
    /// @param routesA      Route used to convert input token to tokenA
    /// @param routesB      Route used to convert input token to tokenB
    /// @param to           Address you wish to mint liquidity to.
    /// @param stake        Auto-stake liquidity in corresponding gauge.
    /// @return liquidity   Amount of LP tokens created from zapping in.
    function zapIn(
        address tokenIn,
        uint256 amountInA,
        uint256 amountInB,
        Zap calldata zapInPool,
        Route[] calldata routesA,
        Route[] calldata routesB,
        address to,
        bool stake
    ) external payable returns (uint256 liquidity);

    /// @notice Zap out a pool (B, C) into A.
    ///         Supports standard ERC20 tokens only (i.e. not fee-on-transfer tokens etc).
    ///         Slippage is required for the removal of liquidity.
    ///         Additional slippage may be required on the swap as the
    ///         price of the token may have changed.
    /// @param tokenOut     Token you are zapping out to (i.e. output token).
    /// @param liquidity    Amount of liquidity you wish to remove.
    /// @param zapOutPool   Contains zap struct information. See Zap struct.
    /// @param routesA      Route used to convert tokenA into output token.
    /// @param routesB      Route used to convert tokenB into output token.
    function zapOut(
        address tokenOut,
        uint256 liquidity,
        Zap calldata zapOutPool,
        Route[] calldata routesA,
        Route[] calldata routesB
    ) external;

    /// @notice Used to generate params required for zapping in.
    ///         Zap in => remove liquidity then swap.
    ///         Apply slippage to expected swap values to account for changes in reserves in between.
    /// @dev Output token refers to the token you want to zap in from.
    /// @param tokenA           .
    /// @param tokenB           .
    /// @param stable           .
    /// @param _factory         .
    /// @param amountInA        Amount of input token you wish to send down routesA
    /// @param amountInB        Amount of input token you wish to send down routesB
    /// @param routesA          Route used to convert input token to tokenA
    /// @param routesB          Route used to convert input token to tokenB
    /// @return amountOutMinA   Minimum output expected from swapping input token to tokenA.
    /// @return amountOutMinB   Minimum output expected from swapping input token to tokenB.
    /// @return amountAMin      Minimum amount of tokenA expected from depositing liquidity.
    /// @return amountBMin      Minimum amount of tokenB expected from depositing liquidity.
    function generateZapInParams(
        address tokenA,
        address tokenB,
        bool stable,
        address _factory,
        uint256 amountInA,
        uint256 amountInB,
        Route[] calldata routesA,
        Route[] calldata routesB
    ) external view returns (uint256 amountOutMinA, uint256 amountOutMinB, uint256 amountAMin, uint256 amountBMin);

    /// @notice Used to generate params required for zapping out.
    ///         Zap out => swap then add liquidity.
    ///         Apply slippage to expected liquidity values to account for changes in reserves in between.
    /// @dev Output token refers to the token you want to zap out of.
    /// @param tokenA           .
    /// @param tokenB           .
    /// @param stable           .
    /// @param _factory         .
    /// @param liquidity        Amount of liquidity being zapped out of into a given output token.
    /// @param routesA          Route used to convert tokenA into output token.
    /// @param routesB          Route used to convert tokenB into output token.
    /// @return amountOutMinA   Minimum output expected from swapping tokenA into output token.
    /// @return amountOutMinB   Minimum output expected from swapping tokenB into output token.
    /// @return amountAMin      Minimum amount of tokenA expected from withdrawing liquidity.
    /// @return amountBMin      Minimum amount of tokenB expected from withdrawing liquidity.
    function generateZapOutParams(
        address tokenA,
        address tokenB,
        bool stable,
        address _factory,
        uint256 liquidity,
        Route[] calldata routesA,
        Route[] calldata routesB
    ) external view returns (uint256 amountOutMinA, uint256 amountOutMinB, uint256 amountAMin, uint256 amountBMin);

    /// @notice Used by zapper to determine appropriate ratio of A to B to deposit liquidity. Assumes stable pool.
    /// @dev Returns stable liquidity ratio of B to (A + B).
    ///      E.g. if ratio is 0.4, it means there is more of A than there is of B.
    ///      Therefore you should deposit more of token A than B.
    /// @param tokenA   tokenA of stable pool you are zapping into.
    /// @param tokenB   tokenB of stable pool you are zapping into.
    /// @param factory  Factory that created stable pool.
    /// @return ratio   Ratio of token0 to token1 required to deposit into zap.
    function quoteStableLiquidityRatio(
        address tokenA,
        address tokenB,
        address factory
    ) external view returns (uint256 ratio);
}
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

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

interface IBasisAsset {
    function burn(uint256 amount) external;

    function burnFrom(address from, uint256 amount) external;
}

contract UniShare is ERC20Burnable, Operator {
    using SafeMath8 for uint8;
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    uint256 public constant LIQUIDITY_ALLOCATION = 1 ether; // plus one
    IRouter public constant ROUTER =
        IRouter(0x1D368773735ee1E678950B7A97bcA2CafB330CDc);
    address public constant FACTORY =
        0x2dA25E7446A70D7be65fd4c053948BEcAA6374c8;
    address public constant WETH = 0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38;
    address public UTOMB;
    bool public swap = true;

    constructor(address _UTOMB) ERC20("Uni Share", "USHARE") {
        UTOMB = _UTOMB;
        _mint(_msgSender(), LIQUIDITY_ALLOCATION);
        taxManager = _msgSender();
    }

    function setTaxManager(address _taxManager) public onlyTaxManager {
        taxManager = _taxManager;
    }

    function _burnUTOMB(uint256 taxAmount) internal {
        IRouter.Route[] memory routes = new IRouter.Route[](2);

        routes[0] = IRouter.Route({
            from: address(this),
            to: WETH,
            stable: false,
            factory: FACTORY
        });

        routes[1] = IRouter.Route({
            from: WETH,
            to: UTOMB,
            stable: true,
            factory: FACTORY
        });

        IERC20(address(this)).approve(address(ROUTER), taxAmount);
        ROUTER.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            taxAmount,
            0,
            routes,
            address(this),
            block.timestamp.add(60)
        );

        uint256 amountToBurn = IERC20(UTOMB).balanceOf(address(this));
        IBasisAsset(UTOMB).burn(amountToBurn);
    }

    function mint(address account, uint256 amount) external onlyOperator {
        _mint(account, amount);
    }

    address public taxManager;
    address public oracle;

    // Should the taxes be calculated using the tax tiers
    bool public autoCalculateTax;
    mapping(address => bool) public isLP;

    // Current tax rate
    uint256 public taxRate;

    // Tax Tiers
    uint256[] public taxTiersTwaps = [
        0,
        5e17,
        6e17,
        7e17,
        8e17,
        9e17,
        9.7e17,
        1e18,
        1.05e18,
        1.10e18
    ];
    uint256[] public taxTiersRates = [
        1000,
        800,
        700,
        500,
        250,
        100,
        0,
        0,
        0,
        0
    ];

    // Sender addresses excluded from Tax
    mapping(address => bool) public excludedAddresses;

    modifier onlyTaxManager() {
        require(taxManager == _msgSender(), "Caller is not the tax office");
        _;
    }

    /* ============= Taxation ============= */

    function getTaxTiersTwapsCount() public view returns (uint256 count) {
        return taxTiersTwaps.length;
    }

    function getTaxTiersRatesCount() public view returns (uint256 count) {
        return taxTiersRates.length;
    }

    function isAddressExcluded(address _address) public view returns (bool) {
        return excludedAddresses[_address];
    }

    function setTaxTiersTwap(
        uint8 _index,
        uint256 _value
    ) public onlyTaxManager returns (bool) {
        require(_index >= 0, "Index has to be higher than 0");
        require(
            _index < getTaxTiersTwapsCount(),
            "Index has to lower than count of tax tiers"
        );
        if (_index > 0) {
            require(_value > taxTiersTwaps[_index - 1]);
        }
        if (_index < getTaxTiersTwapsCount().sub(1)) {
            require(_value < taxTiersTwaps[_index + 1]);
        }
        taxTiersTwaps[_index] = _value;
        return true;
    }

    function setTaxTiersRate(
        uint8 _index,
        uint256 _value
    ) public onlyTaxManager returns (bool) {
        require(_index >= 0, "Index has to be higher than 0");
        require(
            _index < getTaxTiersRatesCount(),
            "Index has to lower than count of tax tiers"
        );
        taxTiersRates[_index] = _value;
        return true;
    }

    function _getUtombPrice() internal view returns (uint256 _utombPrice) {
        try IOracle(oracle).twap(address(UTOMB), 1e18) returns (
            uint144 _price
        ) {
            return uint256(_price);
        } catch {
            revert("Utomb: failed to fetch UTOMB price from Oracle");
        }
    }

    function _updateTaxRate(uint256 _utombPrice) internal returns (uint256) {
        for (
            uint8 tierId = uint8(getTaxTiersTwapsCount()).sub(1);
            tierId >= 0;
            --tierId
        ) {
            if (_utombPrice >= taxTiersTwaps[tierId]) {
                require(
                    taxTiersRates[tierId] < 10000,
                    "tax equal or bigger to 100%"
                );
                taxRate = taxTiersRates[tierId];
                return taxTiersRates[tierId];
            }
        }
        return 0;
    }

    function setLP(address _LP, bool _isLP) public onlyTaxManager {
        isLP[_LP] = _isLP;
    }

    function setSwap(bool _swap) public onlyTaxManager {
        swap = _swap;
    }

    function enableAutoCalculateTax() public onlyTaxManager {
        autoCalculateTax = true;
    }

    function disableAutoCalculateTax() public onlyTaxManager {
        autoCalculateTax = false;
    }

    function setOracle(address _oracle) public onlyTaxManager {
        require(_oracle != address(0), "oracle address cannot be 0 address");
        oracle = _oracle;
    }

    function setTaxRate(uint256 _taxRate) public onlyTaxManager {
        require(!autoCalculateTax, "auto calculate tax cannot be enabled");
        require(_taxRate <= 2000, "tax equal or bigger to 20%");
        taxRate = _taxRate;
    }

    function excludeAddress(
        address _address
    ) public onlyTaxManager returns (bool) {
        require(!excludedAddresses[_address], "address can't be excluded");
        excludedAddresses[_address] = true;
        return true;
    }

    function includeAddress(
        address _address
    ) public onlyTaxManager returns (bool) {
        require(excludedAddresses[_address], "address can't be included");
        excludedAddresses[_address] = false;
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transferUSHARE(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            allowance(sender, _msgSender()).sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );

        return true;
    }

    function transfer(
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        address sender = _msgSender();
        _transferUSHARE(sender, recipient, amount);
        return true;
    }

    function _transferWithTax(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        uint256 taxAmount = amount.mul(taxRate).div(10000);
        uint256 amountAfterTax = amount.sub(taxAmount);
        if (swap) {
            _transfer(sender, address(this), taxAmount);
            _burnUTOMB(taxAmount);
        } else {
            _burn(sender, taxAmount);
        }
        _transfer(sender, recipient, amountAfterTax);
    }

    function _transferUSHARE(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        uint256 currentTaxRate = 0;
        if (autoCalculateTax) {
            uint256 currentUtombPrice = _getUtombPrice();
            currentTaxRate = _updateTaxRate(currentUtombPrice);
        }
        if (!autoCalculateTax) {
            currentTaxRate = taxRate;
        }
        if (
            (isLP[recipient]) &&
            currentTaxRate != 0 &&
            !excludedAddresses[sender] &&
            !excludedAddresses[recipient]
        ) {
            _transferWithTax(sender, recipient, amount);
        } else {
            _transfer(sender, recipient, amount);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_UTOMB","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FACTORY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIQUIDITY_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROUTER","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UTOMB","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoCalculateTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"excludeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersRatesCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersTwapsCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"includeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAddressExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isLP","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"oldOperator","type":"address"}],"name":"removeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_LP","type":"address"},{"internalType":"bool","name":"_isLP","type":"bool"}],"name":"setLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator","type":"address"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_oracle","type":"address"}],"name":"setOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_swap","type":"bool"}],"name":"setSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxManager","type":"address"}],"name":"setTaxManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersRate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersTwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersRates","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersTwaps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6007805460ff60a01b1916600160a01b1790556101c0604052600060809081526706f05b59d3b2000060a052670853a0d2313c000060c0526709b6e64a8ec6000060e052670b1a2bc2ec50000061010052670c7d713b49da000061012052670d7621dc5821000061014052670de0b6b3a764000061016052670e92596fd629000061018052670f43fc2c04ee00006101a052620000a190600c90600a6200033c565b5060408051610140810182526103e8815261032060208201526102bc918101919091526101f4606082015260fa6080820152606460a0820152600060c0820181905260e0820181905261010082018190526101208201526200010890600d90600a62000397565b503480156200011657600080fd5b5060405162002b7038038062002b708339810160408190526200013991620003f2565b60405180604001604052806009815260200168556e6920536861726560b81b8152506040518060400160405280600681526020016555534841524560d01b81525081600390816200018b9190620004c8565b5060046200019a8282620004c8565b505050620001b7620001b16200021b60201b60201c565b6200021f565b336000818152600660205260409020805460ff19166001179055600780546001600160a01b0384166001600160a01b03199091161790556200020290670de0b6b3a764000062000271565b50600880546001600160a01b03191633179055620005bc565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002cc5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002e0919062000594565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b82805482825590600052602060002090810192821562000385579160200282015b828111156200038557825182906001600160401b03169055916020019190600101906200035d565b5062000393929150620003db565b5090565b82805482825590600052602060002090810192821562000385579160200282015b8281111562000385578251829061ffff16905591602001919060010190620003b8565b5b80821115620003935760008155600101620003dc565b6000602082840312156200040557600080fd5b81516001600160a01b03811681146200041d57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200044f57607f821691505b6020821081036200047057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033757600081815260208120601f850160051c810160208610156200049f5750805b601f850160051c820191505b81811015620004c057828155600101620004ab565b505050505050565b81516001600160401b03811115620004e457620004e462000424565b620004fc81620004f584546200043a565b8462000476565b602080601f8311600181146200053457600084156200051b5750858301515b600019600386901b1c1916600185901b178555620004c0565b600085815260208120601f198616915b82811015620005655788860151825594840194600190910190840162000544565b5085821015620005845787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620005b657634e487b7160e01b600052601160045260246000fd5b92915050565b6125a480620005cc6000396000f3fe608060405234801561001057600080fd5b506004361061032b5760003560e01c8063771a3a1d116101b2578063a9059cbb116100f9578063cf011b26116100a2578063ee2a95351161007c578063ee2a953514610700578063f2fde38b14610708578063f9428f381461071b578063ff87fc7c1461072a57600080fd5b8063cf011b2614610678578063dd62ed3e1461069b578063ebca1bd9146106d457600080fd5b8063b3ab15fb116100d3578063b3ab15fb1461063f578063b87c5a4a14610652578063c6d69a301461066557600080fd5b8063a9059cbb146105fe578063ac8a584a14610611578063ad5c46481461062457600080fd5b80638d3cc8181161015b57806395d89b411161013557806395d89b41146105db578063a457c2d7146105e3578063a6431bba146105f657600080fd5b80638d3cc818146105a35780638da5cb5b146105b757806393995d4b146105c857600080fd5b80637dc0d1d01161018c5780637dc0d1d0146105595780637df0f7671461056c5780638119c0651461058f57600080fd5b8063771a3a1d1461052a57806379cc6790146105335780637adbf9731461054657600080fd5b80633950935111610276578063570ca7351161021f57806366206ce9116101f957806366206ce9146104e657806370a08231146104f9578063715018a61461052257600080fd5b8063570ca735146104a05780635c29908d146104cb57806365bbacd9146104de57600080fd5b806342c6b4f11161025057806342c6b4f11461048d5780634456eda2146104a05780634d237730146104b857600080fd5b8063395093511461045457806340c10f191461046757806342966c681461047a57600080fd5b806323b872dd116102d8578063313ce567116102b2578063313ce5671461041757806332fe7b26146104265780633758e6ce1461044157600080fd5b806323b872dd146103d657806328d67938146103e95780632dd31000146103fc57600080fd5b806314f89c981161030957806314f89c981461038657806318160ddd14610399578063238bf63e146103ab57600080fd5b806306fdde0314610330578063095e39131461034e578063095ea7b314610363575b600080fd5b610338610732565b604051610345919061214e565b60405180910390f35b61036161035c3660046121b3565b6107c4565b005b6103766103713660046121ce565b610840565b6040519015158152602001610345565b610361610394366004612206565b61085a565b6002545b604051908152602001610345565b6007546103be906001600160a01b031681565b6040516001600160a01b039091168152602001610345565b6103766103e4366004612223565b6108c0565b6103616103f736600461225f565b61090f565b6103be732da25e7446a70d7be65fd4c053948becaa6374c881565b60405160128152602001610345565b6103be731d368773735ee1e678950b7a97bca2cafb330cdc81565b61037661044f3660046121b3565b610982565b6103766104623660046121ce565b610a63565b6103616104753660046121ce565b610a9d565b610361610488366004612296565b610b34565b61039d61049b366004612296565b610b41565b3360009081526006602052604090205460ff16610376565b6008546103be906001600160a01b031681565b61039d6104d9366004612296565b610b62565b610361610b72565b6103766104f43660046122af565b610bc9565b61039d6105073660046121b3565b6001600160a01b031660009081526020819052604090205490565b610361610d3a565b61039d600b5481565b6103616105413660046121ce565b610d4e565b6103616105543660046121b3565b610d63565b6009546103be906001600160a01b031681565b61037661057a3660046121b3565b600a6020526000908152604090205460ff1681565b60075461037690600160a01b900460ff1681565b60095461037690600160a01b900460ff1681565b6005546001600160a01b03166103be565b6103766105d63660046121b3565b610e3b565b610338610f13565b6103766105f13660046121ce565b610f22565b600c5461039d565b61037661060c3660046121ce565b610fd7565b61036161061f3660046121b3565b610fe5565b6103be73039e2fb66102314ce7b64ce5ce3e5183bc94ad3881565b61036161064d3660046121b3565b61100e565b6103766106603660046122af565b61103a565b610361610673366004612296565b611103565b6103766106863660046121b3565b600e6020526000908152604090205460ff1681565b61039d6106a93660046122d3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6103766106e23660046121b3565b6001600160a01b03166000908152600e602052604090205460ff1690565b600d5461039d565b6103616107163660046121b3565b611221565b61039d670de0b6b3a764000081565b6103616112ae565b60606003805461074190612306565b80601f016020809104026020016040519081016040528092919081815260200182805461076d90612306565b80156107ba5780601f1061078f576101008083540402835291602001916107ba565b820191906000526020600020905b81548152906001019060200180831161079d57829003601f168201915b5050505050905090565b6008546001600160a01b031633146108115760405162461bcd60e51b815260206004820152601c602482015260008051602061252783398151915260448201526064015b60405180910390fd5b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60003361084e81858561130b565b60019150505b92915050565b6008546001600160a01b031633146108a25760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b60078054911515600160a01b0260ff60a01b19909216919091179055565b60006108cd848484611449565b610905843361090085604051806060016040528060288152602001612547602891396108f98a336106a9565b9190611524565b61130b565b5060019392505050565b6008546001600160a01b031633146109575760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6008546000906001600160a01b031633146109cd5760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b6001600160a01b0382166000908152600e602052604090205460ff1615610a365760405162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c75646564000000000000006044820152606401610808565b506001600160a01b0381166000908152600e60205260409020805460ff191660019081179091555b919050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061084e9082908690610900908790612356565b3360009081526006602052604090205460ff161515600114610b265760405162461bcd60e51b8152602060048201526024808201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260448201527f61746f72000000000000000000000000000000000000000000000000000000006064820152608401610808565b610b308282611550565b5050565b610b3e338261160f565b50565b600c8181548110610b5157600080fd5b600091825260209091200154905081565b600d8181548110610b5157600080fd5b6008546001600160a01b03163314610bba5760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b6009805460ff60a01b19169055565b6008546000906001600160a01b03163314610c145760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b600c548360ff1610610c7b5760405162461bcd60e51b815260206004820152602a60248201527f496e6465782068617320746f206c6f776572207468616e20636f756e74206f666044820152692074617820746965727360b01b6064820152608401610808565b60ff831615610cba57600c610c91600185612369565b60ff1681548110610ca457610ca4612382565b90600052602060002001548211610cba57600080fd5b610cce6001610cc8600c5490565b90611770565b8360ff161015610d0e57600c610ce5846001612398565b60ff1681548110610cf857610cf8612382565b90600052602060002001548210610d0e57600080fd5b81600c8460ff1681548110610d2557610d25612382565b60009182526020909120015550600192915050565b610d42611783565b610d4c60006117dd565b565b610d5982338361183c565b610b30828261160f565b6008546001600160a01b03163314610dab5760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b6001600160a01b038116610e0c5760405162461bcd60e51b815260206004820152602260248201527f6f7261636c6520616464726573732063616e6e6f742062652030206164647265604482015261737360f01b6064820152608401610808565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6008546000906001600160a01b03163314610e865760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b6001600160a01b0382166000908152600e602052604090205460ff16610eee5760405162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c75646564000000000000006044820152606401610808565b506001600160a01b03166000908152600e60205260409020805460ff19169055600190565b60606004805461074190612306565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610fbf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610808565b610fcc828686840361130b565b506001949350505050565b60003361084e818585611449565b610fed611783565b6001600160a01b03166000908152600660205260409020805460ff19169055565b611016611783565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6008546000906001600160a01b031633146110855760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b600d548360ff16106110ec5760405162461bcd60e51b815260206004820152602a60248201527f496e6465782068617320746f206c6f776572207468616e20636f756e74206f666044820152692074617820746965727360b01b6064820152608401610808565b81600d8460ff1681548110610d2557610d25612382565b6008546001600160a01b0316331461114b5760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b600954600160a01b900460ff16156111ca5760405162461bcd60e51b8152602060048201526024808201527f6175746f2063616c63756c617465207461782063616e6e6f7420626520656e6160448201527f626c6564000000000000000000000000000000000000000000000000000000006064820152608401610808565b6107d081111561121c5760405162461bcd60e51b815260206004820152601a60248201527f74617820657175616c206f722062696767657220746f203230250000000000006044820152606401610808565b600b55565b611229611783565b6001600160a01b0381166112a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610808565b610b3e816117dd565b6008546001600160a01b031633146112f65760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b6009805460ff60a01b1916600160a01b179055565b6001600160a01b0383166113865760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610808565b6001600160a01b0382166113e75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610808565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600954600090600160a01b900460ff16156114775760006114686118c8565b9050611473816119e7565b9150505b600954600160a01b900460ff1661148d5750600b545b6001600160a01b0383166000908152600a602052604090205460ff1680156114b457508015155b80156114d957506001600160a01b0384166000908152600e602052604090205460ff16155b80156114fe57506001600160a01b0383166000908152600e602052604090205460ff16155b156115135761150e848484611afc565b61151e565b61151e848484611b77565b50505050565b600081848411156115485760405162461bcd60e51b8152600401610808919061214e565b505050900390565b6001600160a01b0382166115a65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610808565b80600260008282546115b89190612356565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03821661168b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610808565b6001600160a01b0382166000908152602081905260409020548181101561171a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610808565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161143c565b600061177c82846123b1565b9392505050565b6005546001600160a01b03163314610d4c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610808565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461151e57818110156118bb5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610808565b61151e848484840361130b565b6009546007546040517f6808a1280000000000000000000000000000000000000000000000000000000081526001600160a01b039182166004820152670de0b6b3a764000060248201526000929190911690636808a12890604401602060405180830381865afa92505050801561195c575060408051601f3d908101601f19168201909252611959918101906123c4565b60015b6119ce5760405162461bcd60e51b815260206004820152602e60248201527f55746f6d623a206661696c656420746f2066657463682055544f4d422070726960448201527f63652066726f6d204f7261636c650000000000000000000000000000000000006064820152608401610808565b71ffffffffffffffffffffffffffffffffffff16919050565b600080611a0160016119f8600c5490565b60ff1690611d64565b90505b600c8160ff1681548110611a1a57611a1a612382565b90600052602060002001548310611aec57612710600d8260ff1681548110611a4457611a44612382565b906000526020600020015410611a9c5760405162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f203130302500000000006044820152606401610808565b600d8160ff1681548110611ab257611ab2612382565b9060005260206000200154600b81905550600d8160ff1681548110611ad957611ad9612382565b9060005260206000200154915050919050565b611af5816123f8565b9050611a04565b6000611b1f612710611b19600b5485611da690919063ffffffff16565b90611db2565b90506000611b2d8383611770565b600754909150600160a01b900460ff1615611b5b57611b4d853084611b77565b611b5682611dbe565b611b65565b611b65858361160f565b611b70858583611b77565b5050505050565b6001600160a01b038316611bf35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610808565b6001600160a01b038216611c6f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610808565b6001600160a01b03831660009081526020819052604090205481811015611cfe5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610808565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361151e565b600061177c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612101565b600061177c8284612415565b600061177c828461242c565b60408051600280825260608201909252600091816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181611dd65750506040805160808101825230815273039e2fb66102314ce7b64ce5ce3e5183bc94ad3860208201526000918101829052732da25e7446a70d7be65fd4c053948becaa6374c86060820152825192935091839190611e6757611e67612382565b6020908102919091018101919091526040805160808101825273039e2fb66102314ce7b64ce5ce3e5183bc94ad3881526007546001600160a01b0316928101929092526001908201819052732da25e7446a70d7be65fd4c053948becaa6374c8606083015282518391908110611edf57611edf612382565b60209081029190910101526040517f095ea7b3000000000000000000000000000000000000000000000000000000008152731d368773735ee1e678950b7a97bca2cafb330cdc600482015260248101839052309063095ea7b3906044016020604051808303816000875af1158015611f5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f7f919061244e565b50731d368773735ee1e678950b7a97bca2cafb330cdc6388cd821e8360008430611faa42603c612142565b6040518663ffffffff1660e01b8152600401611fca95949392919061246b565b600060405180830381600087803b158015611fe457600080fd5b505af1158015611ff8573d6000803e3d6000fd5b50506007546040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152600093506001600160a01b0390911691506370a0823190602401602060405180830381865afa158015612060573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612084919061250d565b6007546040517f42966c68000000000000000000000000000000000000000000000000000000008152600481018390529192506001600160a01b0316906342966c6890602401600060405180830381600087803b1580156120e457600080fd5b505af11580156120f8573d6000803e3d6000fd5b50505050505050565b60008360ff168360ff161115829061212c5760405162461bcd60e51b8152600401610808919061214e565b5060006121398486612369565b95945050505050565b600061177c8284612356565b600060208083528351808285015260005b8181101561217b5785810183015185820160400152820161215f565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a5e57600080fd5b6000602082840312156121c557600080fd5b61177c8261219c565b600080604083850312156121e157600080fd5b6121ea8361219c565b946020939093013593505050565b8015158114610b3e57600080fd5b60006020828403121561221857600080fd5b813561177c816121f8565b60008060006060848603121561223857600080fd5b6122418461219c565b925061224f6020850161219c565b9150604084013590509250925092565b6000806040838503121561227257600080fd5b61227b8361219c565b9150602083013561228b816121f8565b809150509250929050565b6000602082840312156122a857600080fd5b5035919050565b600080604083850312156122c257600080fd5b823560ff811681146121ea57600080fd5b600080604083850312156122e657600080fd5b6122ef8361219c565b91506122fd6020840161219c565b90509250929050565b600181811c9082168061231a57607f821691505b60208210810361233a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561085457610854612340565b60ff828116828216039081111561085457610854612340565b634e487b7160e01b600052603260045260246000fd5b60ff818116838216019081111561085457610854612340565b8181038181111561085457610854612340565b6000602082840312156123d657600080fd5b815171ffffffffffffffffffffffffffffffffffff8116811461177c57600080fd5b600060ff82168061240b5761240b612340565b6000190192915050565b808202811582820484141761085457610854612340565b60008261244957634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561246057600080fd5b815161177c816121f8565b600060a0820187835260208781850152604060a08186015282885180855260c087019150838a01945060005b818110156124e157855180516001600160a01b0390811685528682015181168786015285820151151586860152606091820151169084015294840194608090920191600101612497565b50506001600160a01b038816606087015293506124fd92505050565b8260808301529695505050505050565b60006020828403121561251f57600080fd5b505191905056fe43616c6c6572206973206e6f742074686520746178206f66666963650000000045524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220cc7e35384fc3078d657f04a1c88beb9f7d4ed255cf6e1bb0e1b69e1d7681380c64736f6c634300081300330000000000000000000000008ce0eb56e4d8566907d238dfcfb6ac36aa921f3e

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061032b5760003560e01c8063771a3a1d116101b2578063a9059cbb116100f9578063cf011b26116100a2578063ee2a95351161007c578063ee2a953514610700578063f2fde38b14610708578063f9428f381461071b578063ff87fc7c1461072a57600080fd5b8063cf011b2614610678578063dd62ed3e1461069b578063ebca1bd9146106d457600080fd5b8063b3ab15fb116100d3578063b3ab15fb1461063f578063b87c5a4a14610652578063c6d69a301461066557600080fd5b8063a9059cbb146105fe578063ac8a584a14610611578063ad5c46481461062457600080fd5b80638d3cc8181161015b57806395d89b411161013557806395d89b41146105db578063a457c2d7146105e3578063a6431bba146105f657600080fd5b80638d3cc818146105a35780638da5cb5b146105b757806393995d4b146105c857600080fd5b80637dc0d1d01161018c5780637dc0d1d0146105595780637df0f7671461056c5780638119c0651461058f57600080fd5b8063771a3a1d1461052a57806379cc6790146105335780637adbf9731461054657600080fd5b80633950935111610276578063570ca7351161021f57806366206ce9116101f957806366206ce9146104e657806370a08231146104f9578063715018a61461052257600080fd5b8063570ca735146104a05780635c29908d146104cb57806365bbacd9146104de57600080fd5b806342c6b4f11161025057806342c6b4f11461048d5780634456eda2146104a05780634d237730146104b857600080fd5b8063395093511461045457806340c10f191461046757806342966c681461047a57600080fd5b806323b872dd116102d8578063313ce567116102b2578063313ce5671461041757806332fe7b26146104265780633758e6ce1461044157600080fd5b806323b872dd146103d657806328d67938146103e95780632dd31000146103fc57600080fd5b806314f89c981161030957806314f89c981461038657806318160ddd14610399578063238bf63e146103ab57600080fd5b806306fdde0314610330578063095e39131461034e578063095ea7b314610363575b600080fd5b610338610732565b604051610345919061214e565b60405180910390f35b61036161035c3660046121b3565b6107c4565b005b6103766103713660046121ce565b610840565b6040519015158152602001610345565b610361610394366004612206565b61085a565b6002545b604051908152602001610345565b6007546103be906001600160a01b031681565b6040516001600160a01b039091168152602001610345565b6103766103e4366004612223565b6108c0565b6103616103f736600461225f565b61090f565b6103be732da25e7446a70d7be65fd4c053948becaa6374c881565b60405160128152602001610345565b6103be731d368773735ee1e678950b7a97bca2cafb330cdc81565b61037661044f3660046121b3565b610982565b6103766104623660046121ce565b610a63565b6103616104753660046121ce565b610a9d565b610361610488366004612296565b610b34565b61039d61049b366004612296565b610b41565b3360009081526006602052604090205460ff16610376565b6008546103be906001600160a01b031681565b61039d6104d9366004612296565b610b62565b610361610b72565b6103766104f43660046122af565b610bc9565b61039d6105073660046121b3565b6001600160a01b031660009081526020819052604090205490565b610361610d3a565b61039d600b5481565b6103616105413660046121ce565b610d4e565b6103616105543660046121b3565b610d63565b6009546103be906001600160a01b031681565b61037661057a3660046121b3565b600a6020526000908152604090205460ff1681565b60075461037690600160a01b900460ff1681565b60095461037690600160a01b900460ff1681565b6005546001600160a01b03166103be565b6103766105d63660046121b3565b610e3b565b610338610f13565b6103766105f13660046121ce565b610f22565b600c5461039d565b61037661060c3660046121ce565b610fd7565b61036161061f3660046121b3565b610fe5565b6103be73039e2fb66102314ce7b64ce5ce3e5183bc94ad3881565b61036161064d3660046121b3565b61100e565b6103766106603660046122af565b61103a565b610361610673366004612296565b611103565b6103766106863660046121b3565b600e6020526000908152604090205460ff1681565b61039d6106a93660046122d3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6103766106e23660046121b3565b6001600160a01b03166000908152600e602052604090205460ff1690565b600d5461039d565b6103616107163660046121b3565b611221565b61039d670de0b6b3a764000081565b6103616112ae565b60606003805461074190612306565b80601f016020809104026020016040519081016040528092919081815260200182805461076d90612306565b80156107ba5780601f1061078f576101008083540402835291602001916107ba565b820191906000526020600020905b81548152906001019060200180831161079d57829003601f168201915b5050505050905090565b6008546001600160a01b031633146108115760405162461bcd60e51b815260206004820152601c602482015260008051602061252783398151915260448201526064015b60405180910390fd5b6008805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60003361084e81858561130b565b60019150505b92915050565b6008546001600160a01b031633146108a25760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b60078054911515600160a01b0260ff60a01b19909216919091179055565b60006108cd848484611449565b610905843361090085604051806060016040528060288152602001612547602891396108f98a336106a9565b9190611524565b61130b565b5060019392505050565b6008546001600160a01b031633146109575760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6008546000906001600160a01b031633146109cd5760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b6001600160a01b0382166000908152600e602052604090205460ff1615610a365760405162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c75646564000000000000006044820152606401610808565b506001600160a01b0381166000908152600e60205260409020805460ff191660019081179091555b919050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061084e9082908690610900908790612356565b3360009081526006602052604090205460ff161515600114610b265760405162461bcd60e51b8152602060048201526024808201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260448201527f61746f72000000000000000000000000000000000000000000000000000000006064820152608401610808565b610b308282611550565b5050565b610b3e338261160f565b50565b600c8181548110610b5157600080fd5b600091825260209091200154905081565b600d8181548110610b5157600080fd5b6008546001600160a01b03163314610bba5760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b6009805460ff60a01b19169055565b6008546000906001600160a01b03163314610c145760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b600c548360ff1610610c7b5760405162461bcd60e51b815260206004820152602a60248201527f496e6465782068617320746f206c6f776572207468616e20636f756e74206f666044820152692074617820746965727360b01b6064820152608401610808565b60ff831615610cba57600c610c91600185612369565b60ff1681548110610ca457610ca4612382565b90600052602060002001548211610cba57600080fd5b610cce6001610cc8600c5490565b90611770565b8360ff161015610d0e57600c610ce5846001612398565b60ff1681548110610cf857610cf8612382565b90600052602060002001548210610d0e57600080fd5b81600c8460ff1681548110610d2557610d25612382565b60009182526020909120015550600192915050565b610d42611783565b610d4c60006117dd565b565b610d5982338361183c565b610b30828261160f565b6008546001600160a01b03163314610dab5760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b6001600160a01b038116610e0c5760405162461bcd60e51b815260206004820152602260248201527f6f7261636c6520616464726573732063616e6e6f742062652030206164647265604482015261737360f01b6064820152608401610808565b6009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6008546000906001600160a01b03163314610e865760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b6001600160a01b0382166000908152600e602052604090205460ff16610eee5760405162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c75646564000000000000006044820152606401610808565b506001600160a01b03166000908152600e60205260409020805460ff19169055600190565b60606004805461074190612306565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919083811015610fbf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610808565b610fcc828686840361130b565b506001949350505050565b60003361084e818585611449565b610fed611783565b6001600160a01b03166000908152600660205260409020805460ff19169055565b611016611783565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6008546000906001600160a01b031633146110855760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b600d548360ff16106110ec5760405162461bcd60e51b815260206004820152602a60248201527f496e6465782068617320746f206c6f776572207468616e20636f756e74206f666044820152692074617820746965727360b01b6064820152608401610808565b81600d8460ff1681548110610d2557610d25612382565b6008546001600160a01b0316331461114b5760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b600954600160a01b900460ff16156111ca5760405162461bcd60e51b8152602060048201526024808201527f6175746f2063616c63756c617465207461782063616e6e6f7420626520656e6160448201527f626c6564000000000000000000000000000000000000000000000000000000006064820152608401610808565b6107d081111561121c5760405162461bcd60e51b815260206004820152601a60248201527f74617820657175616c206f722062696767657220746f203230250000000000006044820152606401610808565b600b55565b611229611783565b6001600160a01b0381166112a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610808565b610b3e816117dd565b6008546001600160a01b031633146112f65760405162461bcd60e51b815260206004820152601c60248201526000805160206125278339815191526044820152606401610808565b6009805460ff60a01b1916600160a01b179055565b6001600160a01b0383166113865760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610808565b6001600160a01b0382166113e75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610808565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600954600090600160a01b900460ff16156114775760006114686118c8565b9050611473816119e7565b9150505b600954600160a01b900460ff1661148d5750600b545b6001600160a01b0383166000908152600a602052604090205460ff1680156114b457508015155b80156114d957506001600160a01b0384166000908152600e602052604090205460ff16155b80156114fe57506001600160a01b0383166000908152600e602052604090205460ff16155b156115135761150e848484611afc565b61151e565b61151e848484611b77565b50505050565b600081848411156115485760405162461bcd60e51b8152600401610808919061214e565b505050900390565b6001600160a01b0382166115a65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610808565b80600260008282546115b89190612356565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03821661168b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610808565b6001600160a01b0382166000908152602081905260409020548181101561171a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610808565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161143c565b600061177c82846123b1565b9392505050565b6005546001600160a01b03163314610d4c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610808565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461151e57818110156118bb5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610808565b61151e848484840361130b565b6009546007546040517f6808a1280000000000000000000000000000000000000000000000000000000081526001600160a01b039182166004820152670de0b6b3a764000060248201526000929190911690636808a12890604401602060405180830381865afa92505050801561195c575060408051601f3d908101601f19168201909252611959918101906123c4565b60015b6119ce5760405162461bcd60e51b815260206004820152602e60248201527f55746f6d623a206661696c656420746f2066657463682055544f4d422070726960448201527f63652066726f6d204f7261636c650000000000000000000000000000000000006064820152608401610808565b71ffffffffffffffffffffffffffffffffffff16919050565b600080611a0160016119f8600c5490565b60ff1690611d64565b90505b600c8160ff1681548110611a1a57611a1a612382565b90600052602060002001548310611aec57612710600d8260ff1681548110611a4457611a44612382565b906000526020600020015410611a9c5760405162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f203130302500000000006044820152606401610808565b600d8160ff1681548110611ab257611ab2612382565b9060005260206000200154600b81905550600d8160ff1681548110611ad957611ad9612382565b9060005260206000200154915050919050565b611af5816123f8565b9050611a04565b6000611b1f612710611b19600b5485611da690919063ffffffff16565b90611db2565b90506000611b2d8383611770565b600754909150600160a01b900460ff1615611b5b57611b4d853084611b77565b611b5682611dbe565b611b65565b611b65858361160f565b611b70858583611b77565b5050505050565b6001600160a01b038316611bf35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610808565b6001600160a01b038216611c6f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610808565b6001600160a01b03831660009081526020819052604090205481811015611cfe5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610808565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361151e565b600061177c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612101565b600061177c8284612415565b600061177c828461242c565b60408051600280825260608201909252600091816020015b604080516080810182526000808252602080830182905292820181905260608201528252600019909201910181611dd65750506040805160808101825230815273039e2fb66102314ce7b64ce5ce3e5183bc94ad3860208201526000918101829052732da25e7446a70d7be65fd4c053948becaa6374c86060820152825192935091839190611e6757611e67612382565b6020908102919091018101919091526040805160808101825273039e2fb66102314ce7b64ce5ce3e5183bc94ad3881526007546001600160a01b0316928101929092526001908201819052732da25e7446a70d7be65fd4c053948becaa6374c8606083015282518391908110611edf57611edf612382565b60209081029190910101526040517f095ea7b3000000000000000000000000000000000000000000000000000000008152731d368773735ee1e678950b7a97bca2cafb330cdc600482015260248101839052309063095ea7b3906044016020604051808303816000875af1158015611f5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f7f919061244e565b50731d368773735ee1e678950b7a97bca2cafb330cdc6388cd821e8360008430611faa42603c612142565b6040518663ffffffff1660e01b8152600401611fca95949392919061246b565b600060405180830381600087803b158015611fe457600080fd5b505af1158015611ff8573d6000803e3d6000fd5b50506007546040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152600093506001600160a01b0390911691506370a0823190602401602060405180830381865afa158015612060573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612084919061250d565b6007546040517f42966c68000000000000000000000000000000000000000000000000000000008152600481018390529192506001600160a01b0316906342966c6890602401600060405180830381600087803b1580156120e457600080fd5b505af11580156120f8573d6000803e3d6000fd5b50505050505050565b60008360ff168360ff161115829061212c5760405162461bcd60e51b8152600401610808919061214e565b5060006121398486612369565b95945050505050565b600061177c8284612356565b600060208083528351808285015260005b8181101561217b5785810183015185820160400152820161215f565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610a5e57600080fd5b6000602082840312156121c557600080fd5b61177c8261219c565b600080604083850312156121e157600080fd5b6121ea8361219c565b946020939093013593505050565b8015158114610b3e57600080fd5b60006020828403121561221857600080fd5b813561177c816121f8565b60008060006060848603121561223857600080fd5b6122418461219c565b925061224f6020850161219c565b9150604084013590509250925092565b6000806040838503121561227257600080fd5b61227b8361219c565b9150602083013561228b816121f8565b809150509250929050565b6000602082840312156122a857600080fd5b5035919050565b600080604083850312156122c257600080fd5b823560ff811681146121ea57600080fd5b600080604083850312156122e657600080fd5b6122ef8361219c565b91506122fd6020840161219c565b90509250929050565b600181811c9082168061231a57607f821691505b60208210810361233a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561085457610854612340565b60ff828116828216039081111561085457610854612340565b634e487b7160e01b600052603260045260246000fd5b60ff818116838216019081111561085457610854612340565b8181038181111561085457610854612340565b6000602082840312156123d657600080fd5b815171ffffffffffffffffffffffffffffffffffff8116811461177c57600080fd5b600060ff82168061240b5761240b612340565b6000190192915050565b808202811582820484141761085457610854612340565b60008261244957634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561246057600080fd5b815161177c816121f8565b600060a0820187835260208781850152604060a08186015282885180855260c087019150838a01945060005b818110156124e157855180516001600160a01b0390811685528682015181168786015285820151151586860152606091820151169084015294840194608090920191600101612497565b50506001600160a01b038816606087015293506124fd92505050565b8260808301529695505050505050565b60006020828403121561251f57600080fd5b505191905056fe43616c6c6572206973206e6f742074686520746178206f66666963650000000045524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220cc7e35384fc3078d657f04a1c88beb9f7d4ed255cf6e1bb0e1b69e1d7681380c64736f6c63430008130033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000008ce0eb56e4d8566907d238dfcfb6ac36aa921f3e

-----Decoded View---------------
Arg [0] : _UTOMB (address): 0x8CE0Eb56E4d8566907d238DFcFb6ac36aA921f3e

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000008ce0eb56e4d8566907d238dfcfb6ac36aa921f3e


Deployed Bytecode Sourcemap

74330:8362:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62093:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75072:109;;;;;;:::i;:::-;;:::i;:::-;;64453:201;;;;;;:::i;:::-;;:::i;:::-;;;1383:14:1;;1376:22;1358:41;;1346:2;1331:18;64453:201:0;1218:187:1;79510:82:0;;;;;;:::i;:::-;;:::i;63222:108::-;63310:12;;63222:108;;;1925:25:1;;;1913:2;1898:18;63222:108:0;1779:177:1;74827:20:0;;;;;-1:-1:-1;;;;;74827:20:0;;;;;;-1:-1:-1;;;;;2257:55:1;;;2239:74;;2227:2;2212:18;74827:20:0;2093:226:1;80752:452:0;;;;;;:::i;:::-;;:::i;79404:98::-;;;;;;:::i;:::-;;:::i;74655:85::-;;74698:42;74655:85;;63064:93;;;63147:2;3119:36:1;;3107:2;3092:18;63064:93:0;2977:184:1;74555:93:0;;74605:42;74555:93;;80242:247;;;;;;:::i;:::-;;:::i;65904:238::-;;;;;;:::i;:::-;;:::i;76044:110::-;;;;;;:::i;:::-;;:::i;73584:91::-;;;;;;:::i;:::-;;:::i;76437:195::-;;;;;;:::i;:::-;;:::i;30971:98::-;813:10;31014:4;31038:23;;;:9;:23;;;;;;;;30971:98;;76162:25;;;;;-1:-1:-1;;;;;76162:25:0;;;76639:173;;;;;;:::i;:::-;;:::i;79706:100::-;;;:::i;77483:608::-;;;;;;:::i;:::-;;:::i;63393:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;63494:18:0;63467:7;63494:18;;;;;;;;;;;;63393:127;2762:103;;;:::i;76388:22::-;;;;;;73994:164;;;;;;:::i;:::-;;:::i;79814:172::-;;;;;;:::i;:::-;;:::i;76194:21::-;;;;;-1:-1:-1;;;;;76194:21:0;;;76318:36;;;;;;:::i;:::-;;;;;;;;;;;;;;;;74854:23;;;;;-1:-1:-1;;;74854:23:0;;;;;;76283:28;;;;;-1:-1:-1;;;76283:28:0;;;;;;2121:87;2194:6;;-1:-1:-1;;;;;2194:6:0;2121:87;;80497:247;;;;;;:::i;:::-;;:::i;62312:104::-;;;:::i;66645:436::-;;;;;;:::i;:::-;;:::i;77104:115::-;77191:13;:20;77104:115;;81212:240;;;;;;:::i;:::-;;:::i;31192:111::-;;;;;;:::i;:::-;;:::i;74747:73::-;;74778:42;74747:73;;31077:107;;;;;;:::i;:::-;;:::i;78099:387::-;;;;;;:::i;:::-;;:::i;79994:240::-;;;;;;:::i;:::-;;:::i;76864:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;63982:151;;;;;;:::i;:::-;-1:-1:-1;;;;;64098:18:0;;;64071:7;64098:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;63982:151;77350:125;;;;;;:::i;:::-;-1:-1:-1;;;;;77440:27:0;77416:4;77440:27;;;:17;:27;;;;;;;;;77350:125;77227:115;77314:13;:20;77227:115;;3020:201;;;;;;:::i;:::-;;:::i;74482:54::-;;74529:7;74482:54;;79600:98;;;:::i;62093:100::-;62147:13;62180:5;62173:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62093:100;:::o;75072:109::-;76967:10;;-1:-1:-1;;;;;76967:10:0;813;76967:26;76959:67;;;;-1:-1:-1;;;76959:67:0;;4849:2:1;76959:67:0;;;4831:21:1;4888:2;4868:18;;;4861:30;-1:-1:-1;;;;;;;;;;;4907:18:1;;;4900:58;4975:18;;76959:67:0;;;;;;;;;75149:10:::1;:24:::0;;-1:-1:-1;;75149:24:0::1;-1:-1:-1::0;;;;;75149:24:0;;;::::1;::::0;;;::::1;::::0;;75072:109::o;64453:201::-;64536:4;813:10;64592:32;813:10;64608:7;64617:6;64592:8;:32::i;:::-;64642:4;64635:11;;;64453:201;;;;;:::o;79510:82::-;76967:10;;-1:-1:-1;;;;;76967:10:0;813;76967:26;76959:67;;;;-1:-1:-1;;;76959:67:0;;4849:2:1;76959:67:0;;;4831:21:1;4888:2;4868:18;;;4861:30;-1:-1:-1;;;;;;;;;;;4907:18:1;;;4900:58;4975:18;;76959:67:0;4647:352:1;76959:67:0;79572:4:::1;:12:::0;;;::::1;;-1:-1:-1::0;;;79572:12:0::1;-1:-1:-1::0;;;;79572:12:0;;::::1;::::0;;;::::1;::::0;;79510:82::o;80752:452::-;80884:4;80901:42;80917:6;80925:9;80936:6;80901:15;:42::i;:::-;80954:218;80977:6;813:10;81025:136;81079:6;81025:136;;;;;;;;;;;;;;;;;:31;81035:6;813:10;63982:151;:::i;81025:31::-;:35;:136;:35;:136::i;:::-;80954:8;:218::i;:::-;-1:-1:-1;81192:4:0;80752:452;;;;;:::o;79404:98::-;76967:10;;-1:-1:-1;;;;;76967:10:0;813;76967:26;76959:67;;;;-1:-1:-1;;;76959:67:0;;4849:2:1;76959:67:0;;;4831:21:1;4888:2;4868:18;;;4861:30;-1:-1:-1;;;;;;;;;;;4907:18:1;;;4900:58;4975:18;;76959:67:0;4647:352:1;76959:67:0;-1:-1:-1;;;;;79477:9:0;;;::::1;;::::0;;;:4:::1;:9;::::0;;;;:17;;-1:-1:-1;;79477:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;79404:98::o;80242:247::-;76967:10;;80331:4;;-1:-1:-1;;;;;76967:10:0;813;76967:26;76959:67;;;;-1:-1:-1;;;76959:67:0;;4849:2:1;76959:67:0;;;4831:21:1;4888:2;4868:18;;;4861:30;-1:-1:-1;;;;;;;;;;;4907:18:1;;;4900:58;4975:18;;76959:67:0;4647:352:1;76959:67:0;-1:-1:-1;;;;;80357:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;80356:28;80348:66;;;::::0;-1:-1:-1;;;80348:66:0;;5206:2:1;80348:66:0::1;::::0;::::1;5188:21:1::0;5245:2;5225:18;;;5218:30;5284:27;5264:18;;;5257:55;5329:18;;80348:66:0::1;5004:349:1::0;80348:66:0::1;-1:-1:-1::0;;;;;;80425:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;:34;;-1:-1:-1;;80425:34:0::1;80455:4;80425:34:::0;;::::1;::::0;;;77037:1:::1;80242:247:::0;;;:::o;65904:238::-;813:10;65992:4;64098:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;64098:27:0;;;;;;;;;;65992:4;;813:10;66048:64;;813:10;;64098:27;;66073:38;;66101:10;;66073:38;:::i;76044:110::-;813:10;30848:23;;;;:9;:23;;;;;;;;:31;;:23;:31;30826:117;;;;-1:-1:-1;;;30826:117:0;;5879:2:1;30826:117:0;;;5861:21:1;5918:2;5898:18;;;5891:30;5957:34;5937:18;;;5930:62;6028:6;6008:18;;;6001:34;6052:19;;30826:117:0;5677:400:1;30826:117:0;76124:22:::1;76130:7;76139:6;76124:5;:22::i;:::-;76044:110:::0;;:::o;73584:91::-;73640:27;813:10;73660:6;73640:5;:27::i;:::-;73584:91;:::o;76437:195::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;76437:195:0;:::o;76639:173::-;;;;;;;;;;;;79706:100;76967:10;;-1:-1:-1;;;;;76967:10:0;813;76967:26;76959:67;;;;-1:-1:-1;;;76959:67:0;;4849:2:1;76959:67:0;;;4831:21:1;4888:2;4868:18;;;4861:30;-1:-1:-1;;;;;;;;;;;4907:18:1;;;4900:58;4975:18;;76959:67:0;4647:352:1;76959:67:0;79774:16:::1;:24:::0;;-1:-1:-1;;;;79774:24:0::1;::::0;;79706:100::o;77483:608::-;76967:10;;77594:4;;-1:-1:-1;;;;;76967:10:0;813;76967:26;76959:67;;;;-1:-1:-1;;;76959:67:0;;4849:2:1;76959:67:0;;;4831:21:1;4888:2;4868:18;;;4861:30;-1:-1:-1;;;;;;;;;;;4907:18:1;;;4900:58;4975:18;;76959:67:0;4647:352:1;76959:67:0;77191:13;:20;77697:6:::1;:32;;;77675:124;;;::::0;-1:-1:-1;;;77675:124:0;;6642:2:1;77675:124:0::1;::::0;::::1;6624:21:1::0;6681:2;6661:18;;;6654:30;6720:34;6700:18;;;6693:62;-1:-1:-1;;;6771:18:1;;;6764:40;6821:19;;77675:124:0::1;6440:406:1::0;77675:124:0::1;77814:10;::::0;::::1;::::0;77810:86:::1;;77858:13;77872:10;77881:1;77872:6:::0;:10:::1;:::i;:::-;77858:25;;;;;;;;;;:::i;:::-;;;;;;;;;77849:6;:34;77841:43;;;::::0;::::1;;77919:30;77947:1;77919:23;77191:13:::0;:20;;77104:115;77919:23:::1;:27:::0;::::1;:30::i;:::-;77910:6;:39;;;77906:115;;;77983:13;77997:10;:6:::0;78006:1:::1;77997:10;:::i;:::-;77983:25;;;;;;;;;;:::i;:::-;;;;;;;;;77974:6;:34;77966:43;;;::::0;::::1;;78055:6;78031:13;78045:6;78031:21;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;:30:::0;-1:-1:-1;78079:4:0::1;77483:608:::0;;;;:::o;2762:103::-;2007:13;:11;:13::i;:::-;2827:30:::1;2854:1;2827:18;:30::i;:::-;2762:103::o:0;73994:164::-;74071:46;74087:7;813:10;74110:6;74071:15;:46::i;:::-;74128:22;74134:7;74143:6;74128:5;:22::i;79814:172::-;76967:10;;-1:-1:-1;;;;;76967:10:0;813;76967:26;76959:67;;;;-1:-1:-1;;;76959:67:0;;4849:2:1;76959:67:0;;;4831:21:1;4888:2;4868:18;;;4861:30;-1:-1:-1;;;;;;;;;;;4907:18:1;;;4900:58;4975:18;;76959:67:0;4647:352:1;76959:67:0;-1:-1:-1;;;;;79891:21:0;::::1;79883:68;;;::::0;-1:-1:-1;;;79883:68:0;;7551:2:1;79883:68:0::1;::::0;::::1;7533:21:1::0;7590:2;7570:18;;;7563:30;7629:34;7609:18;;;7602:62;-1:-1:-1;;;7680:18:1;;;7673:32;7722:19;;79883:68:0::1;7349:398:1::0;79883:68:0::1;79962:6;:16:::0;;-1:-1:-1;;79962:16:0::1;-1:-1:-1::0;;;;;79962:16:0;;;::::1;::::0;;;::::1;::::0;;79814:172::o;80497:247::-;76967:10;;80586:4;;-1:-1:-1;;;;;76967:10:0;813;76967:26;76959:67;;;;-1:-1:-1;;;76959:67:0;;4849:2:1;76959:67:0;;;4831:21:1;4888:2;4868:18;;;4861:30;-1:-1:-1;;;;;;;;;;;4907:18:1;;;4900:58;4975:18;;76959:67:0;4647:352:1;76959:67:0;-1:-1:-1;;;;;80611:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;80603:65;;;::::0;-1:-1:-1;;;80603:65:0;;7954:2:1;80603:65:0::1;::::0;::::1;7936:21:1::0;7993:2;7973:18;;;7966:30;8032:27;8012:18;;;8005:55;8077:18;;80603:65:0::1;7752:349:1::0;80603:65:0::1;-1:-1:-1::0;;;;;;80679:27:0::1;80709:5;80679:27:::0;;;:17:::1;:27;::::0;;;;:35;;-1:-1:-1;;80679:35:0::1;::::0;;-1:-1:-1;;80497:247:0:o;62312:104::-;62368:13;62401:7;62394:14;;;;;:::i;66645:436::-;813:10;66738:4;64098:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;64098:27:0;;;;;;;;;;66738:4;;813:10;66885:15;66865:16;:35;;66857:85;;;;-1:-1:-1;;;66857:85:0;;8308:2:1;66857:85:0;;;8290:21:1;8347:2;8327:18;;;8320:30;8386:34;8366:18;;;8359:62;8457:7;8437:18;;;8430:35;8482:19;;66857:85:0;8106:401:1;66857:85:0;66978:60;66987:5;66994:7;67022:15;67003:16;:34;66978:8;:60::i;:::-;-1:-1:-1;67069:4:0;;66645:436;-1:-1:-1;;;;66645:436:0:o;81212:240::-;81323:4;813:10;81380:42;813:10;81404:9;81415:6;81380:15;:42::i;31192:111::-;2007:13;:11;:13::i;:::-;-1:-1:-1;;;;;31265:22:0::1;31290:5;31265:22:::0;;;:9:::1;:22;::::0;;;;:30;;-1:-1:-1;;31265:30:0::1;::::0;;31192:111::o;31077:107::-;2007:13;:11;:13::i;:::-;-1:-1:-1;;;;;31147:22:0::1;;::::0;;;:9:::1;:22;::::0;;;;:29;;-1:-1:-1;;31147:29:0::1;31172:4;31147:29;::::0;;31077:107::o;78099:387::-;76967:10;;78210:4;;-1:-1:-1;;;;;76967:10:0;813;76967:26;76959:67;;;;-1:-1:-1;;;76959:67:0;;4849:2:1;76959:67:0;;;4831:21:1;4888:2;4868:18;;;4861:30;-1:-1:-1;;;;;;;;;;;4907:18:1;;;4900:58;4975:18;;76959:67:0;4647:352:1;76959:67:0;77314:13;:20;78313:6:::1;:32;;;78291:124;;;::::0;-1:-1:-1;;;78291:124:0;;6642:2:1;78291:124:0::1;::::0;::::1;6624:21:1::0;6681:2;6661:18;;;6654:30;6720:34;6700:18;;;6693:62;-1:-1:-1;;;6771:18:1;;;6764:40;6821:19;;78291:124:0::1;6440:406:1::0;78291:124:0::1;78450:6;78426:13;78440:6;78426:21;;;;;;;;;;:::i;79994:240::-:0;76967:10;;-1:-1:-1;;;;;76967:10:0;813;76967:26;76959:67;;;;-1:-1:-1;;;76959:67:0;;4849:2:1;76959:67:0;;;4831:21:1;4888:2;4868:18;;;4861:30;-1:-1:-1;;;;;;;;;;;4907:18:1;;;4900:58;4975:18;;76959:67:0;4647:352:1;76959:67:0;80074:16:::1;::::0;-1:-1:-1;;;80074:16:0;::::1;;;80073:17;80065:66;;;::::0;-1:-1:-1;;;80065:66:0;;8714:2:1;80065:66:0::1;::::0;::::1;8696:21:1::0;8753:2;8733:18;;;8726:30;8792:34;8772:18;;;8765:62;8863:6;8843:18;;;8836:34;8887:19;;80065:66:0::1;8512:400:1::0;80065:66:0::1;80162:4;80150:8;:16;;80142:55;;;::::0;-1:-1:-1;;;80142:55:0;;9119:2:1;80142:55:0::1;::::0;::::1;9101:21:1::0;9158:2;9138:18;;;9131:30;9197:28;9177:18;;;9170:56;9243:18;;80142:55:0::1;8917:350:1::0;80142:55:0::1;80208:7;:18:::0;79994:240::o;3020:201::-;2007:13;:11;:13::i;:::-;-1:-1:-1;;;;;3109:22:0;::::1;3101:73;;;::::0;-1:-1:-1;;;3101:73:0;;9474:2:1;3101:73:0::1;::::0;::::1;9456:21:1::0;9513:2;9493:18;;;9486:30;9552:34;9532:18;;;9525:62;9623:8;9603:18;;;9596:36;9649:19;;3101:73:0::1;9272:402:1::0;3101:73:0::1;3185:28;3204:8;3185:18;:28::i;79600:98::-:0;76967:10;;-1:-1:-1;;;;;76967:10:0;813;76967:26;76959:67;;;;-1:-1:-1;;;76959:67:0;;4849:2:1;76959:67:0;;;4831:21:1;4888:2;4868:18;;;4861:30;-1:-1:-1;;;;;;;;;;;4907:18:1;;;4900:58;4975:18;;76959:67:0;4647:352:1;76959:67:0;79667:16:::1;:23:::0;;-1:-1:-1;;;;79667:23:0::1;-1:-1:-1::0;;;79667:23:0::1;::::0;;79600:98::o;70638:346::-;-1:-1:-1;;;;;70740:19:0;;70732:68;;;;-1:-1:-1;;;70732:68:0;;9881:2:1;70732:68:0;;;9863:21:1;9920:2;9900:18;;;9893:30;9959:34;9939:18;;;9932:62;10030:6;10010:18;;;10003:34;10054:19;;70732:68:0;9679:400:1;70732:68:0;-1:-1:-1;;;;;70819:21:0;;70811:68;;;;-1:-1:-1;;;70811:68:0;;10286:2:1;70811:68:0;;;10268:21:1;10325:2;10305:18;;;10298:30;10364:34;10344:18;;;10337:62;-1:-1:-1;;;10415:18:1;;;10408:32;10457:19;;70811:68:0;10084:398:1;70811:68:0;-1:-1:-1;;;;;70892:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;70944:32;;1925:25:1;;;70944:32:0;;1898:18:1;70944:32:0;;;;;;;;70638:346;;;:::o;81952:737::-;82123:16;;82082:22;;-1:-1:-1;;;82123:16:0;;;;82119:158;;;82156:25;82184:16;:14;:16::i;:::-;82156:44;;82232:33;82247:17;82232:14;:33::i;:::-;82215:50;;82141:136;82119:158;82292:16;;-1:-1:-1;;;82292:16:0;;;;82287:74;;-1:-1:-1;82342:7:0;;82287:74;-1:-1:-1;;;;;82390:15:0;;;;;;:4;:15;;;;;;;;82389:53;;;;-1:-1:-1;82423:19:0;;;82389:53;:96;;;;-1:-1:-1;;;;;;82460:25:0;;;;;;:17;:25;;;;;;;;82459:26;82389:96;:142;;;;-1:-1:-1;;;;;;82503:28:0;;;;;;:17;:28;;;;;;;;82502:29;82389:142;82371:311;;;82558:43;82575:6;82583:9;82594:6;82558:16;:43::i;:::-;82371:311;;;82634:36;82644:6;82652:9;82663:6;82634:9;:36::i;:::-;82071:618;81952:737;;;:::o;23315:206::-;23401:7;23462:12;23454:6;;;;23446:29;;;;-1:-1:-1;;;23446:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;23497:5:0;;;23315:206::o;68644:548::-;-1:-1:-1;;;;;68728:21:0;;68720:65;;;;-1:-1:-1;;;68720:65:0;;10689:2:1;68720:65:0;;;10671:21:1;10728:2;10708:18;;;10701:30;10767:33;10747:18;;;10740:61;10818:18;;68720:65:0;10487:355:1;68720:65:0;68876:6;68860:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;69031:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;69086:37;1925:25:1;;;69086:37:0;;1898:18:1;69086:37:0;;;;;;;76044:110;;:::o;69525:675::-;-1:-1:-1;;;;;69609:21:0;;69601:67;;;;-1:-1:-1;;;69601:67:0;;11049:2:1;69601:67:0;;;11031:21:1;11088:2;11068:18;;;11061:30;11127:34;11107:18;;;11100:62;11198:3;11178:18;;;11171:31;11219:19;;69601:67:0;10847:397:1;69601:67:0;-1:-1:-1;;;;;69768:18:0;;69743:22;69768:18;;;;;;;;;;;69805:24;;;;69797:71;;;;-1:-1:-1;;;69797:71:0;;11451:2:1;69797:71:0;;;11433:21:1;11490:2;11470:18;;;11463:30;11529:34;11509:18;;;11502:62;11600:4;11580:18;;;11573:32;11622:19;;69797:71:0;11249:398:1;69797:71:0;-1:-1:-1;;;;;69904:18:0;;:9;:18;;;;;;;;;;;69925:23;;;69904:44;;70043:12;:22;;;;;;;70094:37;1925:25:1;;;69904:9:0;;:18;70094:37;;1898:18:1;70094:37:0;1779:177:1;21417:98:0;21475:7;21502:5;21506:1;21502;:5;:::i;:::-;21495:12;21417:98;-1:-1:-1;;;21417:98:0:o;2286:132::-;2194:6;;-1:-1:-1;;;;;2194:6:0;813:10;2350:23;2342:68;;;;-1:-1:-1;;;2342:68:0;;11987:2:1;2342:68:0;;;11969:21:1;;;12006:18;;;11999:30;12065:34;12045:18;;;12038:62;12117:18;;2342:68:0;11785:356:1;3381:191:0;3474:6;;;-1:-1:-1;;;;;3491:17:0;;;-1:-1:-1;;3491:17:0;;;;;;;3524:40;;3474:6;;;3491:17;3474:6;;3524:40;;3455:16;;3524:40;3444:128;3381:191;:::o;71275:419::-;-1:-1:-1;;;;;64098:18:0;;;71376:24;64098:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;71443:37:0;;71439:248;;71525:6;71505:16;:26;;71497:68;;;;-1:-1:-1;;;71497:68:0;;12348:2:1;71497:68:0;;;12330:21:1;12387:2;12367:18;;;12360:30;12426:31;12406:18;;;12399:59;12475:18;;71497:68:0;12146:353:1;71497:68:0;71609:51;71618:5;71625:7;71653:6;71634:16;:25;71609:8;:51::i;78494:323::-;78587:6;;78608:5;;78579:42;;;;;-1:-1:-1;;;;;78608:5:0;;;78579:42;;;12704:74:1;78616:4:0;12794:18:1;;;12787:34;78543:19:0;;78587:6;;;;;78579:20;;12677:18:1;;78579:42:0;;;;;;;;;;;;;;;;;;-1:-1:-1;78579:42:0;;;;;;;;-1:-1:-1;;78579:42:0;;;;;;;;;;;;:::i;:::-;;;78575:235;;78742:56;;-1:-1:-1;;;78742:56:0;;13348:2:1;78742:56:0;;;13330:21:1;13387:2;13367:18;;;13360:30;13426:34;13406:18;;;13399:62;13497:16;13477:18;;;13470:44;13531:19;;78742:56:0;13146:410:1;78575:235:0;78693:15;;;78494:323;-1:-1:-1;78494:323:0:o;78825:571::-;78888:7;78927:12;78942:37;78977:1;78948:23;77191:13;:20;;77104:115;78948:23;78942:34;;;;:37::i;:::-;78927:52;;78908:462;79074:13;79088:6;79074:21;;;;;;;;;;:::i;:::-;;;;;;;;;79059:11;:36;79055:304;;79170:5;79146:13;79160:6;79146:21;;;;;;;;;;:::i;:::-;;;;;;;;;:29;79116:130;;;;-1:-1:-1;;;79116:130:0;;13763:2:1;79116:130:0;;;13745:21:1;13802:2;13782:18;;;13775:30;13841:29;13821:18;;;13814:57;13888:18;;79116:130:0;13561:351:1;79116:130:0;79275:13;79289:6;79275:21;;;;;;;;;;:::i;:::-;;;;;;;;;79265:7;:31;;;;79322:13;79336:6;79322:21;;;;;;;;;;:::i;:::-;;;;;;;;;79315:28;;;78825:571;;;:::o;79055:304::-;79020:8;;;:::i;:::-;;;78908:462;;81460:484;81591:17;81611:30;81635:5;81611:19;81622:7;;81611:6;:10;;:19;;;;:::i;:::-;:23;;:30::i;:::-;81591:50;-1:-1:-1;81652:22:0;81677:21;:6;81591:50;81677:10;:21::i;:::-;81713:4;;81652:46;;-1:-1:-1;;;;81713:4:0;;;;81709:173;;;81734:43;81744:6;81760:4;81767:9;81734;:43::i;:::-;81792:21;81803:9;81792:10;:21::i;:::-;81709:173;;;81846:24;81852:6;81860:9;81846:5;:24::i;:::-;81892:44;81902:6;81910:9;81921:14;81892:9;:44::i;:::-;81580:364;;81460:484;;;:::o;67551:806::-;-1:-1:-1;;;;;67648:18:0;;67640:68;;;;-1:-1:-1;;;67640:68:0;;14302:2:1;67640:68:0;;;14284:21:1;14341:2;14321:18;;;14314:30;14380:34;14360:18;;;14353:62;14451:7;14431:18;;;14424:35;14476:19;;67640:68:0;14100:401:1;67640:68:0;-1:-1:-1;;;;;67727:16:0;;67719:64;;;;-1:-1:-1;;;67719:64:0;;14708:2:1;67719:64:0;;;14690:21:1;14747:2;14727:18;;;14720:30;14786:34;14766:18;;;14759:62;14857:5;14837:18;;;14830:33;14880:19;;67719:64:0;14506:399:1;67719:64:0;-1:-1:-1;;;;;67869:15:0;;67847:19;67869:15;;;;;;;;;;;67903:21;;;;67895:72;;;;-1:-1:-1;;;67895:72:0;;15112:2:1;67895:72:0;;;15094:21:1;15151:2;15131:18;;;15124:30;15190:34;15170:18;;;15163:62;15261:8;15241:18;;;15234:36;15287:19;;67895:72:0;14910:402:1;67895:72:0;-1:-1:-1;;;;;68003:15:0;;;:9;:15;;;;;;;;;;;68021:20;;;68003:38;;68221:13;;;;;;;;;;:23;;;;;;68273:26;;1925:25:1;;;68221:13:0;;68273:26;;1898:18:1;68273:26:0;;;;;;;68312:37;69525:675;26325:130;26379:5;26404:43;26408:1;26411;26404:43;;;;;;;;;;;;;;;;;:3;:43::i;21774:98::-;21832:7;21859:5;21863:1;21859;:5;:::i;22173:98::-;22231:7;22258:5;22262:1;22258;:5;:::i;75189:847::-;75280:22;;;75300:1;75280:22;;;;;;;;;75248:29;;75280:22;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75280:22:0;;-1:-1:-1;;75280:22:0;;;;;;;;-1:-1:-1;;75327:142:0;;;;;;;;75370:4;75327:142;;74778:42;75327:142;;;;-1:-1:-1;75327:142:0;;;;;;74698:42;75327:142;;;;75315:9;;;;-1:-1:-1;75327:142:0;75315:9;;-1:-1:-1;75315:9:0;;;;:::i;:::-;;;;;;;;;;;:154;;;;75494:133;;;;;;;;74778:42;75494:133;;75552:5;;-1:-1:-1;;;;;75552:5:0;75494:133;;;;;;;75552:5;75494:133;;;;;;74698:42;75494:133;;;;75482:9;;:6;;75552:5;75482:9;;;;;;:::i;:::-;;;;;;;;;;:145;75640:57;;;;;74605:42;75640:57;;;12704:74:1;12794:18;;;12787:34;;;75655:4:0;;75640:29;;12677:18:1;;75640:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;74605:42:0;75708:60;75783:9;75807:1;75823:6;75852:4;75872:23;:15;75892:2;75872:19;:23::i;:::-;75708:198;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;75949:5:0;;75942:38;;;;;75974:4;75942:38;;;2239:74:1;75919:20:0;;-1:-1:-1;;;;;;75949:5:0;;;;-1:-1:-1;75942:23:0;;2212:18:1;;75942:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;76003:5;;75991:37;;;;;;;;1925:25:1;;;75919:61:0;;-1:-1:-1;;;;;;76003:5:0;;75991:23;;1898:18:1;;75991:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75237:799;;75189:847;:::o;26758:218::-;26874:5;26905:1;26900:6;;:1;:6;;;;26908:12;26892:29;;;;;-1:-1:-1;;;26892:29:0;;;;;;;;:::i;:::-;-1:-1:-1;26932:7:0;26942:5;26946:1;26942;:5;:::i;:::-;26932:15;26758:218;-1:-1:-1;;;;;26758:218:0:o;21036:98::-;21094:7;21121:5;21125:1;21121;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:196::-;635:20;;-1:-1:-1;;;;;684:54:1;;674:65;;664:93;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:254::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;1203:2;1188:18;;;;1175:32;;-1:-1:-1;;;959:254:1:o;1410:118::-;1496:5;1489:13;1482:21;1475:5;1472:32;1462:60;;1518:1;1515;1508:12;1533:241;1589:6;1642:2;1630:9;1621:7;1617:23;1613:32;1610:52;;;1658:1;1655;1648:12;1610:52;1697:9;1684:23;1716:28;1738:5;1716:28;:::i;2324:328::-;2401:6;2409;2417;2470:2;2458:9;2449:7;2445:23;2441:32;2438:52;;;2486:1;2483;2476:12;2438:52;2509:29;2528:9;2509:29;:::i;:::-;2499:39;;2557:38;2591:2;2580:9;2576:18;2557:38;:::i;:::-;2547:48;;2642:2;2631:9;2627:18;2614:32;2604:42;;2324:328;;;;;:::o;2657:315::-;2722:6;2730;2783:2;2771:9;2762:7;2758:23;2754:32;2751:52;;;2799:1;2796;2789:12;2751:52;2822:29;2841:9;2822:29;:::i;:::-;2812:39;;2901:2;2890:9;2886:18;2873:32;2914:28;2936:5;2914:28;:::i;:::-;2961:5;2951:15;;;2657:315;;;;;:::o;3413:180::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;-1:-1:-1;3564:23:1;;3413:180;-1:-1:-1;3413:180:1:o;3598:337::-;3664:6;3672;3725:2;3713:9;3704:7;3700:23;3696:32;3693:52;;;3741:1;3738;3731:12;3693:52;3780:9;3767:23;3830:4;3823:5;3819:16;3812:5;3809:27;3799:55;;3850:1;3847;3840:12;3940:260;4008:6;4016;4069:2;4057:9;4048:7;4044:23;4040:32;4037:52;;;4085:1;4082;4075:12;4037:52;4108:29;4127:9;4108:29;:::i;:::-;4098:39;;4156:38;4190:2;4179:9;4175:18;4156:38;:::i;:::-;4146:48;;3940:260;;;;;:::o;4205:437::-;4284:1;4280:12;;;;4327;;;4348:61;;4402:4;4394:6;4390:17;4380:27;;4348:61;4455:2;4447:6;4444:14;4424:18;4421:38;4418:218;;-1:-1:-1;;;4489:1:1;4482:88;4593:4;4590:1;4583:15;4621:4;4618:1;4611:15;4418:218;;4205:437;;;:::o;5358:184::-;-1:-1:-1;;;5407:1:1;5400:88;5507:4;5504:1;5497:15;5531:4;5528:1;5521:15;5547:125;5612:9;;;5633:10;;;5630:36;;;5646:18;;:::i;6851:151::-;6941:4;6934:12;;;6920;;;6916:31;;6959:14;;6956:40;;;6976:18;;:::i;7007:184::-;-1:-1:-1;;;7056:1:1;7049:88;7156:4;7153:1;7146:15;7180:4;7177:1;7170:15;7196:148;7284:4;7263:12;;;7277;;;7259:31;;7302:13;;7299:39;;;7318:18;;:::i;11652:128::-;11719:9;;;11740:11;;;11737:37;;;11754:18;;:::i;12832:309::-;12902:6;12955:2;12943:9;12934:7;12930:23;12926:32;12923:52;;;12971:1;12968;12961:12;12923:52;13003:9;12997:16;13053:38;13046:5;13042:50;13035:5;13032:61;13022:89;;13107:1;13104;13097:12;13917:178;13954:3;13998:4;13991:5;13987:16;14022:7;14012:41;;14033:18;;:::i;:::-;-1:-1:-1;;14069:20:1;;13917:178;-1:-1:-1;;13917:178:1:o;15317:168::-;15390:9;;;15421;;15438:15;;;15432:22;;15418:37;15408:71;;15459:18;;:::i;15490:274::-;15530:1;15556;15546:189;;-1:-1:-1;;;15588:1:1;15581:88;15692:4;15689:1;15682:15;15720:4;15717:1;15710:15;15546:189;-1:-1:-1;15749:9:1;;15490:274::o;16260:245::-;16327:6;16380:2;16368:9;16359:7;16355:23;16351:32;16348:52;;;16396:1;16393;16386:12;16348:52;16428:9;16422:16;16447:28;16469:5;16447:28;:::i;16510:1338::-;16818:4;16866:3;16855:9;16851:19;16897:6;16886:9;16879:25;16923:2;16961:6;16956:2;16945:9;16941:18;16934:34;16987:2;17025:3;17020:2;17009:9;17005:18;16998:31;17049:6;17084;17078:13;17115:6;17107;17100:22;17153:3;17142:9;17138:19;17131:26;;17192:2;17184:6;17180:15;17166:29;;17213:1;17223:497;17237:6;17234:1;17231:13;17223:497;;;17296:13;;17403:9;;-1:-1:-1;;;;;17399:18:1;;;17387:31;;17462:11;;;17456:18;17452:27;;17438:12;;;17431:49;17534:11;;;17528:18;17521:26;17514:34;17500:12;;;17493:56;17572:4;17620:11;;;17614:18;17610:27;17596:12;;;17589:49;17695:15;;;;17667:4;17658:14;;;;17259:1;17252:9;17223:497;;;-1:-1:-1;;;;;;;2027:54:1;;17791:4;17776:20;;2015:67;17737:3;-1:-1:-1;17749:48:1;;-1:-1:-1;;;1961:127:1;17749:48;17835:6;17828:4;17817:9;17813:20;17806:36;16510:1338;;;;;;;;:::o;17853:184::-;17923:6;17976:2;17964:9;17955:7;17951:23;17947:32;17944:52;;;17992:1;17989;17982:12;17944:52;-1:-1:-1;18015:16:1;;17853:184;-1:-1:-1;17853:184:1:o

Swarm Source

ipfs://cc7e35384fc3078d657f04a1c88beb9f7d4ed255cf6e1bb0e1b69e1d7681380c

Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.