ETH Price: $2,677.10 (-2.20%)

Contract

0xBd098c48d5CC2Eb4b880486898C9816e156E43f7
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
0x60a06040202861912024-07-11 22:16:4746 days ago1720736207IN
 Create: ProxySolver
0 ETH0.011333064.06119071

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ProxySolver

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 16 : ProxySolver.sol
pragma solidity ^0.8.0;

import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";

import "./LongTailExecutor.sol";


contract ProxySolver is Initializable, OwnableUpgradeable, UUPSUpgradeable, Executor {
    function _authorizeUpgrade(address) internal override onlyOwner {}

    function initialize(address _clipper_exchange, address _wethAddress, address _initialOwner) public initializer {
        //__Ownable_init(_initialOwner);
        baseInitialize(_initialOwner);
        __UUPSUpgradeable_init();
        weth = IWETH(_wethAddress);
        CLIPPER_EXCHANGE = _clipper_exchange;
    }
}

File 2 of 16 : OwnableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {ContextUpgradeable} from "../utils/ContextUpgradeable.sol";
import {Initializable} from "../proxy/utils/Initializable.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. 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 OwnableUpgradeable is Initializable, ContextUpgradeable {
    /// @custom:storage-location erc7201:openzeppelin.storage.Ownable
    struct OwnableStorage {
        address _owner;
    }

    // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Ownable")) - 1)) & ~bytes32(uint256(0xff))
    bytes32 private constant OwnableStorageLocation = 0x9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300;

    function _getOwnableStorage() private pure returns (OwnableStorage storage $) {
        assembly {
            $.slot := OwnableStorageLocation
        }
    }

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    function __Ownable_init(address initialOwner) internal onlyInitializing {
        __Ownable_init_unchained(initialOwner);
    }

    function __Ownable_init_unchained(address initialOwner) internal onlyInitializing {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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) {
        OwnableStorage storage $ = _getOwnableStorage();
        return $._owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

File 3 of 16 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.20;

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```solidity
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 *
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Storage of the initializable contract.
     *
     * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions
     * when using with upgradeable contracts.
     *
     * @custom:storage-location erc7201:openzeppelin.storage.Initializable
     */
    struct InitializableStorage {
        /**
         * @dev Indicates that the contract has been initialized.
         */
        uint64 _initialized;
        /**
         * @dev Indicates that the contract is in the process of being initialized.
         */
        bool _initializing;
    }

    // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff))
    bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00;

    /**
     * @dev The contract is already initialized.
     */
    error InvalidInitialization();

    /**
     * @dev The contract is not initializing.
     */
    error NotInitializing();

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint64 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts.
     *
     * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any
     * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in
     * production.
     *
     * Emits an {Initialized} event.
     */
    modifier initializer() {
        // solhint-disable-next-line var-name-mixedcase
        InitializableStorage storage $ = _getInitializableStorage();

        // Cache values to avoid duplicated sloads
        bool isTopLevelCall = !$._initializing;
        uint64 initialized = $._initialized;

        // Allowed calls:
        // - initialSetup: the contract is not in the initializing state and no previous version was
        //                 initialized
        // - construction: the contract is initialized at version 1 (no reininitialization) and the
        //                 current contract is just being deployed
        bool initialSetup = initialized == 0 && isTopLevelCall;
        bool construction = initialized == 1 && address(this).code.length == 0;

        if (!initialSetup && !construction) {
            revert InvalidInitialization();
        }
        $._initialized = 1;
        if (isTopLevelCall) {
            $._initializing = true;
        }
        _;
        if (isTopLevelCall) {
            $._initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * A reinitializer may be used after the original initialization step. This is essential to configure modules that
     * are added through upgrades and that require initialization.
     *
     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
     * cannot be nested. If one is invoked in the context of another, execution will revert.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     *
     * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization.
     *
     * Emits an {Initialized} event.
     */
    modifier reinitializer(uint64 version) {
        // solhint-disable-next-line var-name-mixedcase
        InitializableStorage storage $ = _getInitializableStorage();

        if ($._initializing || $._initialized >= version) {
            revert InvalidInitialization();
        }
        $._initialized = version;
        $._initializing = true;
        _;
        $._initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        _checkInitializing();
        _;
    }

    /**
     * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}.
     */
    function _checkInitializing() internal view virtual {
        if (!_isInitializing()) {
            revert NotInitializing();
        }
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     *
     * Emits an {Initialized} event the first time it is successfully executed.
     */
    function _disableInitializers() internal virtual {
        // solhint-disable-next-line var-name-mixedcase
        InitializableStorage storage $ = _getInitializableStorage();

        if ($._initializing) {
            revert InvalidInitialization();
        }
        if ($._initialized != type(uint64).max) {
            $._initialized = type(uint64).max;
            emit Initialized(type(uint64).max);
        }
    }

    /**
     * @dev Returns the highest version that has been initialized. See {reinitializer}.
     */
    function _getInitializedVersion() internal view returns (uint64) {
        return _getInitializableStorage()._initialized;
    }

    /**
     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
     */
    function _isInitializing() internal view returns (bool) {
        return _getInitializableStorage()._initializing;
    }

    /**
     * @dev Returns a pointer to the storage namespace.
     */
    // solhint-disable-next-line var-name-mixedcase
    function _getInitializableStorage() private pure returns (InitializableStorage storage $) {
        assembly {
            $.slot := INITIALIZABLE_STORAGE
        }
    }
}

File 4 of 16 : UUPSUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/UUPSUpgradeable.sol)

pragma solidity ^0.8.20;

import {IERC1822Proxiable} from "@openzeppelin/contracts/interfaces/draft-IERC1822.sol";
import {ERC1967Utils} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol";
import {Initializable} from "./Initializable.sol";

/**
 * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an
 * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.
 *
 * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is
 * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing
 * `UUPSUpgradeable` with a custom implementation of upgrades.
 *
 * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.
 */
abstract contract UUPSUpgradeable is Initializable, IERC1822Proxiable {
    /// @custom:oz-upgrades-unsafe-allow state-variable-immutable
    address private immutable __self = address(this);

    /**
     * @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)`
     * and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called,
     * while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string.
     * If the getter returns `"5.0.0"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must
     * be the empty byte string if no function should be called, making it impossible to invoke the `receive` function
     * during an upgrade.
     */
    string public constant UPGRADE_INTERFACE_VERSION = "5.0.0";

    /**
     * @dev The call is from an unauthorized context.
     */
    error UUPSUnauthorizedCallContext();

    /**
     * @dev The storage `slot` is unsupported as a UUID.
     */
    error UUPSUnsupportedProxiableUUID(bytes32 slot);

    /**
     * @dev Check that the execution is being performed through a delegatecall call and that the execution context is
     * a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case
     * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a
     * function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to
     * fail.
     */
    modifier onlyProxy() {
        _checkProxy();
        _;
    }

    /**
     * @dev Check that the execution is not being performed through a delegate call. This allows a function to be
     * callable on the implementing contract but not through proxies.
     */
    modifier notDelegated() {
        _checkNotDelegated();
        _;
    }

    function __UUPSUpgradeable_init() internal onlyInitializing {
    }

    function __UUPSUpgradeable_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the
     * implementation. It is used to validate the implementation's compatibility when performing an upgrade.
     *
     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
     * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.
     */
    function proxiableUUID() external view virtual notDelegated returns (bytes32) {
        return ERC1967Utils.IMPLEMENTATION_SLOT;
    }

    /**
     * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call
     * encoded in `data`.
     *
     * Calls {_authorizeUpgrade}.
     *
     * Emits an {Upgraded} event.
     *
     * @custom:oz-upgrades-unsafe-allow-reachable delegatecall
     */
    function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {
        _authorizeUpgrade(newImplementation);
        _upgradeToAndCallUUPS(newImplementation, data);
    }

    /**
     * @dev Reverts if the execution is not performed via delegatecall or the execution
     * context is not of a proxy with an ERC1967-compliant implementation pointing to self.
     * See {_onlyProxy}.
     */
    function _checkProxy() internal view virtual {
        if (
            address(this) == __self || // Must be called through delegatecall
            ERC1967Utils.getImplementation() != __self // Must be called through an active proxy
        ) {
            revert UUPSUnauthorizedCallContext();
        }
    }

    /**
     * @dev Reverts if the execution is performed via delegatecall.
     * See {notDelegated}.
     */
    function _checkNotDelegated() internal view virtual {
        if (address(this) != __self) {
            // Must not be called through delegatecall
            revert UUPSUnauthorizedCallContext();
        }
    }

    /**
     * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by
     * {upgradeToAndCall}.
     *
     * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.
     *
     * ```solidity
     * function _authorizeUpgrade(address) internal onlyOwner {}
     * ```
     */
    function _authorizeUpgrade(address newImplementation) internal virtual;

    /**
     * @dev Performs an implementation upgrade with a security check for UUPS proxies, and additional setup call.
     *
     * As a security check, {proxiableUUID} is invoked in the new implementation, and the return value
     * is expected to be the implementation slot in ERC1967.
     *
     * Emits an {IERC1967-Upgraded} event.
     */
    function _upgradeToAndCallUUPS(address newImplementation, bytes memory data) private {
        try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) {
            if (slot != ERC1967Utils.IMPLEMENTATION_SLOT) {
                revert UUPSUnsupportedProxiableUUID(slot);
            }
            ERC1967Utils.upgradeToAndCall(newImplementation, data);
        } catch {
            // The implementation is not UUPS
            revert ERC1967Utils.ERC1967InvalidImplementation(newImplementation);
        }
    }
}

File 5 of 16 : ContextUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;
import {Initializable} from "../proxy/utils/Initializable.sol";

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

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

File 6 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

File 7 of 16 : draft-IERC1822.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC1822.sol)

pragma solidity ^0.8.20;

/**
 * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified
 * proxy whose upgrades are fully controlled by the current implementation.
 */
interface IERC1822Proxiable {
    /**
     * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation
     * address.
     *
     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
     * function revert if invoked through a proxy.
     */
    function proxiableUUID() external view returns (bytes32);
}

File 8 of 16 : IBeacon.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol)

pragma solidity ^0.8.20;

/**
 * @dev This is the interface that {BeaconProxy} expects of its beacon.
 */
interface IBeacon {
    /**
     * @dev Must return an address that can be used as a delegate call target.
     *
     * {UpgradeableBeacon} will check that this address is a contract.
     */
    function implementation() external view returns (address);
}

File 9 of 16 : ERC1967Utils.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/ERC1967/ERC1967Utils.sol)

pragma solidity ^0.8.20;

import {IBeacon} from "../beacon/IBeacon.sol";
import {Address} from "../../utils/Address.sol";
import {StorageSlot} from "../../utils/StorageSlot.sol";

/**
 * @dev This abstract contract provides getters and event emitting update functions for
 * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.
 */
library ERC1967Utils {
    // We re-declare ERC-1967 events here because they can't be used directly from IERC1967.
    // This will be fixed in Solidity 0.8.21. At that point we should remove these events.
    /**
     * @dev Emitted when the implementation is upgraded.
     */
    event Upgraded(address indexed implementation);

    /**
     * @dev Emitted when the admin account has changed.
     */
    event AdminChanged(address previousAdmin, address newAdmin);

    /**
     * @dev Emitted when the beacon is changed.
     */
    event BeaconUpgraded(address indexed beacon);

    /**
     * @dev Storage slot with the address of the current implementation.
     * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1.
     */
    // solhint-disable-next-line private-vars-leading-underscore
    bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * @dev The `implementation` of the proxy is invalid.
     */
    error ERC1967InvalidImplementation(address implementation);

    /**
     * @dev The `admin` of the proxy is invalid.
     */
    error ERC1967InvalidAdmin(address admin);

    /**
     * @dev The `beacon` of the proxy is invalid.
     */
    error ERC1967InvalidBeacon(address beacon);

    /**
     * @dev An upgrade function sees `msg.value > 0` that may be lost.
     */
    error ERC1967NonPayable();

    /**
     * @dev Returns the current implementation address.
     */
    function getImplementation() internal view returns (address) {
        return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 implementation slot.
     */
    function _setImplementation(address newImplementation) private {
        if (newImplementation.code.length == 0) {
            revert ERC1967InvalidImplementation(newImplementation);
        }
        StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation;
    }

    /**
     * @dev Performs implementation upgrade with additional setup call if data is nonempty.
     * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected
     * to avoid stuck value in the contract.
     *
     * Emits an {IERC1967-Upgraded} event.
     */
    function upgradeToAndCall(address newImplementation, bytes memory data) internal {
        _setImplementation(newImplementation);
        emit Upgraded(newImplementation);

        if (data.length > 0) {
            Address.functionDelegateCall(newImplementation, data);
        } else {
            _checkNonPayable();
        }
    }

    /**
     * @dev Storage slot with the admin of the contract.
     * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1.
     */
    // solhint-disable-next-line private-vars-leading-underscore
    bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;

    /**
     * @dev Returns the current admin.
     *
     * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using
     * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
     * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`
     */
    function getAdmin() internal view returns (address) {
        return StorageSlot.getAddressSlot(ADMIN_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 admin slot.
     */
    function _setAdmin(address newAdmin) private {
        if (newAdmin == address(0)) {
            revert ERC1967InvalidAdmin(address(0));
        }
        StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin;
    }

    /**
     * @dev Changes the admin of the proxy.
     *
     * Emits an {IERC1967-AdminChanged} event.
     */
    function changeAdmin(address newAdmin) internal {
        emit AdminChanged(getAdmin(), newAdmin);
        _setAdmin(newAdmin);
    }

    /**
     * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
     * This is the keccak-256 hash of "eip1967.proxy.beacon" subtracted by 1.
     */
    // solhint-disable-next-line private-vars-leading-underscore
    bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;

    /**
     * @dev Returns the current beacon.
     */
    function getBeacon() internal view returns (address) {
        return StorageSlot.getAddressSlot(BEACON_SLOT).value;
    }

    /**
     * @dev Stores a new beacon in the EIP1967 beacon slot.
     */
    function _setBeacon(address newBeacon) private {
        if (newBeacon.code.length == 0) {
            revert ERC1967InvalidBeacon(newBeacon);
        }

        StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon;

        address beaconImplementation = IBeacon(newBeacon).implementation();
        if (beaconImplementation.code.length == 0) {
            revert ERC1967InvalidImplementation(beaconImplementation);
        }
    }

    /**
     * @dev Change the beacon and trigger a setup call if data is nonempty.
     * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected
     * to avoid stuck value in the contract.
     *
     * Emits an {IERC1967-BeaconUpgraded} event.
     *
     * CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since
     * it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for
     * efficiency.
     */
    function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal {
        _setBeacon(newBeacon);
        emit BeaconUpgraded(newBeacon);

        if (data.length > 0) {
            Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);
        } else {
            _checkNonPayable();
        }
    }

    /**
     * @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract
     * if an upgrade doesn't perform an initialization call.
     */
    function _checkNonPayable() private {
        if (msg.value > 0) {
            revert ERC1967NonPayable();
        }
    }
}

File 10 of 16 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.20;

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

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

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

File 11 of 16 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

File 12 of 16 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";
import {IERC20Permit} from "../extensions/IERC20Permit.sol";
import {Address} from "../../../utils/Address.sol";

/**
 * @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 An operation with an ERC20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @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.encodeCall(token.transfer, (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.encodeCall(token.transferFrom, (from, to, 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);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

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

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

    /**
     * @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);
        if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @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(token).code.length > 0;
    }
}

File 13 of 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @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.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @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 or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * 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.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @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`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) 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 FailedInnerCall();
        }
    }
}

File 14 of 16 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

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

File 15 of 16 : StorageSlot.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.

pragma solidity ^0.8.20;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```solidity
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(newImplementation.code.length > 0);
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    struct StringSlot {
        string value;
    }

    struct BytesSlot {
        bytes value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` with member `value` located at `slot`.
     */
    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.
     */
    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` with member `value` located at `slot`.
     */
    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
     */
    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }
}

File 16 of 16 : LongTailExecutor.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

//import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
//import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol";
//import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
// import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
// import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";

//import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
//import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

struct Signature {
    uint8 v;
    bytes32 r;
    bytes32 s;
}

struct ClipperSwapParams {
    uint256 packedInput;
    uint256 packedOutput;
    uint256 goodUntil;
    bytes32 r;
    bytes32 vs;
}

interface ClipperCommonInterface {
    function swap(address inputToken, address outputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) external;
    function sellEthForToken(address outputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) external payable;
    function sellTokenForEth(address inputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) external;
    function nTokens() external view returns (uint);
    function tokenAt(uint i) external view returns (address);
}

interface IWETH {
    function deposit() external payable;
    function withdraw(uint wad) external;
}

error NativeTransferFailed();

abstract contract ExecutorStorage {
    address constant NATIVE = address(0);
    uint256 constant TRANSFER_NATIVE_GAS_LIMIT = 6900;
    IWETH public weth;
    address public CLIPPER_EXCHANGE;
}

abstract contract Executor is ExecutorStorage, OwnableUpgradeable {
    using SafeERC20 for IERC20;

    function baseInitialize(address initialOwner) public initializer {
        __Ownable_init(initialOwner);
    }

    // to receive ETH in a swap using native ETH
    receive() external payable {}

    function setWETH(address _weth) internal {
        weth = IWETH(_weth);
    }

    function setClipperExchange(address _exchange) internal {
        CLIPPER_EXCHANGE = _exchange;
    }

    // Function to execute swaps
    function executeSwaps(
        address inputToken,
        address outputToken,
        bytes calldata callbackData
    )
    external
    payable
    {
        if (callbackData.length > 0) {
            (address[] memory contracts, bytes[] memory swaps, address approvalToken, uint256 approvalAmount, uint256 reactorOutput) = abi.decode(callbackData, (address[], bytes[], address, uint256, uint256));
            require(contracts.length == swaps.length, "Mismatch between contract addresses and calldata length");

            for (uint i = 0; i < contracts.length; i++) {
                if (contracts[i] != CLIPPER_EXCHANGE) {
                    // for non clipper pool we wrap/unwrap native token
                    if (i == 0 && inputToken == NATIVE) {
                        weth.deposit{value: msg.value}();
                    } else if (i == (contracts.length-1) && outputToken == NATIVE) {
                        weth.withdraw(reactorOutput);
                    }
                }

                executeSwap(contracts[i], swaps[i], approvalToken, approvalAmount);
            }

            if (outputToken == NATIVE) {
                // sends native token back to the reactor
                transferNative(msg.sender, reactorOutput);
            } else {
                IERC20(outputToken).safeTransfer(msg.sender, reactorOutput);
            }
        }
    }

    function executeSwap(
        address _contract,
        bytes memory swap,
        address approvalToken,
        uint256 approvalAmount
    ) internal {
        if(_contract == CLIPPER_EXCHANGE){
            ClipperSwapParams memory swapParams = abi.decode(
                swap,
                (ClipperSwapParams)
            );
            bytes32 s = swapParams.vs & 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff;
            uint8 v = 27 + uint8(uint256(swapParams.vs) >> 255);
            Signature memory theSignature = Signature(v,swapParams.r,s);
            delete v;
            delete s;
            if (address(uint160(swapParams.packedInput)) == NATIVE) {
                ClipperCommonInterface(CLIPPER_EXCHANGE).sellEthForToken{value: (swapParams.packedInput >> 160) }(address(uint160(swapParams.packedOutput)),
                (swapParams.packedInput >> 160) , (swapParams.packedOutput >>160),
                swapParams.goodUntil, address(this), theSignature, "ClipperUniswapX");
            } else if (address(uint160(swapParams.packedOutput)) == NATIVE) {
                // TODO: remove on production launch
                IERC20(address(uint160(swapParams.packedInput))).forceApprove(msg.sender, (swapParams.packedInput >> 160));

                IERC20(address(uint160(swapParams.packedInput))).safeTransfer(CLIPPER_EXCHANGE, (swapParams.packedInput >> 160));
                ClipperCommonInterface(CLIPPER_EXCHANGE).sellTokenForEth(address(uint160(swapParams.packedInput)),
                (swapParams.packedInput >> 160) , (swapParams.packedOutput >>160),
                swapParams.goodUntil, address(this), theSignature, "ClipperUniswapX");

            } else {
                // TODO: remove on production launch
                IERC20(address(uint160(swapParams.packedInput))).forceApprove(msg.sender, (swapParams.packedInput >> 160));
                
                IERC20(address(uint160(swapParams.packedInput))).safeTransfer(CLIPPER_EXCHANGE, (swapParams.packedInput >> 160));
                
                ClipperCommonInterface(CLIPPER_EXCHANGE).swap(address(uint160(swapParams.packedInput)), address(uint160(swapParams.packedOutput)),
                 (swapParams.packedInput >> 160) , (swapParams.packedOutput >>160),
                 swapParams.goodUntil, address(this), theSignature, "ClipperUniswapX");
            }
        }
        else {
            // permit2 approval
            //IERC20(approvalToken).approve(UNI_PERMIT2, approvalAmount);

            // universal router approval
            //IERC20(approvalToken).forceApprove(_contract, approvalAmount);

            // TODO: remove on production launch
            IERC20(approvalToken).forceApprove(msg.sender, approvalAmount);

            IERC20(approvalToken).safeTransfer(_contract, approvalAmount);
            _contract.call(swap);
        }
    }

    function rescueFunds(IERC20 token) external {
        token.safeTransfer(owner(), token.balanceOf(address(this)));
    }

    function rescueFundsTokens(address[] memory tokens) external {
        for (uint i = 0; i < tokens.length; i++) {
            address token = tokens[i];
            uint256 toSend = IERC20(token).balanceOf(address(this));

            if(toSend > 0){
                IERC20(token).safeTransfer(owner(), toSend);
            }
        }
    }

    function tokenEscapeAll() external {
        uint n = ClipperCommonInterface(CLIPPER_EXCHANGE).nTokens();
        for (uint i = 0; i < n; i++) {
            address token = ClipperCommonInterface(CLIPPER_EXCHANGE).tokenAt(i);
            uint256 toSend = IERC20(token).balanceOf(address(this));
            if(toSend > 1){
                toSend = toSend - 1;
            }
            IERC20(token).safeTransfer(owner(), toSend);
        }
        transferNative(owner(), address(this).balance);
    }

    function transferNative(address recipient, uint256 amount) internal {
        (bool success,) = recipient.call{value: amount, gas: TRANSFER_NATIVE_GAS_LIMIT}("");
        if (!success) revert NativeTransferFailed();
    }
}

contract LongtailExecutor is Executor {
    constructor(address _clipper_exchange, address _wethAddress, address _initialOwner) {
        baseInitialize(_initialOwner);
        setClipperExchange(_clipper_exchange);
        setWETH(_wethAddress);
    }
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"implementation","type":"address"}],"name":"ERC1967InvalidImplementation","type":"error"},{"inputs":[],"name":"ERC1967NonPayable","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"NativeTransferFailed","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"UUPSUnauthorizedCallContext","type":"error"},{"inputs":[{"internalType":"bytes32","name":"slot","type":"bytes32"}],"name":"UUPSUnsupportedProxiableUUID","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","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":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"CLIPPER_EXCHANGE","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADE_INTERFACE_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"name":"baseInitialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"inputToken","type":"address"},{"internalType":"address","name":"outputToken","type":"address"},{"internalType":"bytes","name":"callbackData","type":"bytes"}],"name":"executeSwaps","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_clipper_exchange","type":"address"},{"internalType":"address","name":"_wethAddress","type":"address"},{"internalType":"address","name":"_initialOwner","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"rescueFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokens","type":"address[]"}],"name":"rescueFundsTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenEscapeAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"contract IWETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523073ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1681525034801561004357600080fd5b506080516131a861006d6000396000818161100401528181611059015261121401526131a86000f3fe6080604052600436106100e15760003560e01c80638da5cb5b1161007f578063ad3cb1cc11610059578063ad3cb1cc14610251578063c0c53b8b1461027c578063e53b2017146102a5578063f2fde38b146102ce576100e8565b80638da5cb5b146101f35780639ed559fb1461021e578063a00a377d14610235576100e8565b80634f1ef286116100bb5780634f1ef2861461016c57806352d1902d14610188578063715018a6146101b35780638abc08e7146101ca576100e8565b806306bd9310146100ed57806339797a7f146101185780633fc8cef314610141576100e8565b366100e857005b600080fd5b3480156100f957600080fd5b506101026102f7565b60405161010f9190612234565b60405180910390f35b34801561012457600080fd5b5061013f600480360381019061013a91906123e8565b61031d565b005b34801561014d57600080fd5b5061015661041b565b6040516101639190612490565b60405180910390f35b61018660048036038101906101819190612560565b61043f565b005b34801561019457600080fd5b5061019d61045e565b6040516101aa91906125d5565b60405180910390f35b3480156101bf57600080fd5b506101c8610491565b005b3480156101d657600080fd5b506101f160048036038101906101ec91906125f0565b6104a5565b005b3480156101ff57600080fd5b50610208610634565b6040516102159190612234565b60405180910390f35b34801561022a57600080fd5b5061023361066c565b005b61024f600480360381019061024a9190612678565b61089f565b005b34801561025d57600080fd5b50610266610bfc565b604051610273919061276b565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061278d565b610c35565b005b3480156102b157600080fd5b506102cc60048036038101906102c7919061281e565b610e4f565b005b3480156102da57600080fd5b506102f560048036038101906102f091906125f0565b610efd565b005b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60005b815181101561041757600082828151811061033e5761033d61284b565b5b6020026020010151905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016103839190612234565b602060405180830381865afa1580156103a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103c491906128b0565b90506000811115610402576104016103da610634565b828473ffffffffffffffffffffffffffffffffffffffff16610f839092919063ffffffff16565b5b5050808061040f9061290c565b915050610320565b5050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610447611002565b610450826110e8565b61045a82826110f3565b5050565b6000610468611212565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b905090565b610499611299565b6104a36000611320565b565b60006104af6113f7565b905060008160000160089054906101000a900460ff1615905060008260000160009054906101000a900467ffffffffffffffff1690506000808267ffffffffffffffff161480156104fd5750825b9050600060018367ffffffffffffffff16148015610532575060003073ffffffffffffffffffffffffffffffffffffffff163b145b905081158015610540575080155b15610577576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018560000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083156105c75760018560000160086101000a81548160ff0219169083151502179055505b6105d08661141f565b831561062c5760008560000160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2600160405161062391906129a3565b60405180910390a15b505050505050565b60008061063f611433565b90508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691505090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631b6a87596040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ff91906128b0565b905060005b8181101561088a576000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392a91a3a836040518263ffffffff1660e01b815260040161076991906129cd565b602060405180830381865afa158015610786573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107aa91906129fd565b905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107e79190612234565b602060405180830381865afa158015610804573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082891906128b0565b90506001811115610843576001816108409190612a2a565b90505b61087561084e610634565b828473ffffffffffffffffffffffffffffffffffffffff16610f839092919063ffffffff16565b505080806108829061290c565b915050610704565b5061089c610896610634565b4761145b565b50565b6000828290501115610bf657600080600080600086868101906108c29190612b92565b945094509450945094508351855114610910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090790612cb7565b60405180910390fd5b60005b8551811015610b8057600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168682815181106109685761096761284b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614610b2d576000811480156109c75750600073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff16145b15610a525760008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015610a3457600080fd5b505af1158015610a48573d6000803e3d6000fd5b5050505050610b2c565b60018651610a609190612a2a565b81148015610a9a5750600073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff16145b15610b2b5760008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b8152600401610af891906129cd565b600060405180830381600087803b158015610b1257600080fd5b505af1158015610b26573d6000803e3d6000fd5b505050505b5b5b610b6d868281518110610b4357610b4261284b565b5b6020026020010151868381518110610b5e57610b5d61284b565b5b60200260200101518686611508565b8080610b789061290c565b915050610913565b50600073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1603610bc457610bbf338261145b565b610bf0565b610bef33828a73ffffffffffffffffffffffffffffffffffffffff16610f839092919063ffffffff16565b5b50505050505b50505050565b6040518060400160405280600581526020017f352e302e3000000000000000000000000000000000000000000000000000000081525081565b6000610c3f6113f7565b905060008160000160089054906101000a900460ff1615905060008260000160009054906101000a900467ffffffffffffffff1690506000808267ffffffffffffffff16148015610c8d5750825b9050600060018367ffffffffffffffff16148015610cc2575060003073ffffffffffffffffffffffffffffffffffffffff163b145b905081158015610cd0575080155b15610d07576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018560000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508315610d575760018560000160086101000a81548160ff0219169083151502179055505b610d60866104a5565b610d68611a75565b866000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555087600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508315610e455760008560000160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d26001604051610e3c91906129a3565b60405180910390a15b5050505050505050565b610efa610e5a610634565b8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e939190612234565b602060405180830381865afa158015610eb0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed491906128b0565b8373ffffffffffffffffffffffffffffffffffffffff16610f839092919063ffffffff16565b50565b610f05611299565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f775760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610f6e9190612234565b60405180910390fd5b610f8081611320565b50565b610ffd838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8585604051602401610fb6929190612cd7565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611a7f565b505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614806110af57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16611096611b16565b73ffffffffffffffffffffffffffffffffffffffff1614155b156110e6576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6110f0611299565b50565b8173ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561115b57506040513d601f19601f820116820180604052508101906111589190612d2c565b60015b61119c57816040517f4c9c8ce30000000000000000000000000000000000000000000000000000000081526004016111939190612234565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b811461120357806040517faa1d49a40000000000000000000000000000000000000000000000000000000081526004016111fa91906125d5565b60405180910390fd5b61120d8383611b6d565b505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614611297576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6112a1611be0565b73ffffffffffffffffffffffffffffffffffffffff166112bf610634565b73ffffffffffffffffffffffffffffffffffffffff161461131e576112e2611be0565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016113159190612234565b60405180910390fd5b565b600061132a611433565b905060008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050828260000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3505050565b60007ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00905090565b611427611be8565b61143081611c28565b50565b60007f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300905090565b60008273ffffffffffffffffffffffffffffffffffffffff1682611af49060405161148590612d8a565b600060405180830381858888f193505050503d80600081146114c3576040519150601f19603f3d011682016040523d82523d6000602084013e6114c8565b606091505b5050905080611503576040517ff4b3b1bc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119ae576000838060200190518101906115739190612e30565b905060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b8260800151169050600060ff836080015160001c901c601b6115bd9190612e6a565b9050600060405180606001604052808360ff168152602001856060015181526020018481525090506000915060009250600073ffffffffffffffffffffffffffffffffffffffff16846000015173ffffffffffffffffffffffffffffffffffffffff16036116e257600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166327a9b42460a08660000151901c866020015160a08860000151901c60a08960200151901c896040015130886040518863ffffffff1660e01b81526004016116ab96959493929190612f5c565b6000604051808303818588803b1580156116c457600080fd5b505af11580156116d8573d6000803e3d6000fd5b50505050506119a5565b600073ffffffffffffffffffffffffffffffffffffffff16846020015173ffffffffffffffffffffffffffffffffffffffff160361185e576117513360a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16611cae9092919063ffffffff16565b6117aa600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16610f839092919063ffffffff16565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634cb6864c856000015160a08760000151901c60a08860200151901c886040015130876040518763ffffffff1660e01b815260040161182796959493929190612f5c565b600060405180830381600087803b15801561184157600080fd5b505af1158015611855573d6000803e3d6000fd5b505050506119a4565b6118953360a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16611cae9092919063ffffffff16565b6118ee600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16610f839092919063ffffffff16565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632b651a6c8560000151866020015160a08860000151901c60a08960200151901c896040015130886040518863ffffffff1660e01b81526004016119719796959493929190612fd2565b600060405180830381600087803b15801561198b57600080fd5b505af115801561199f573d6000803e3d6000fd5b505050505b5b50505050611a6f565b6119d933828473ffffffffffffffffffffffffffffffffffffffff16611cae9092919063ffffffff16565b611a0484828473ffffffffffffffffffffffffffffffffffffffff16610f839092919063ffffffff16565b8373ffffffffffffffffffffffffffffffffffffffff1683604051611a299190613092565b6000604051808303816000865af19150503d8060008114611a66576040519150601f19603f3d011682016040523d82523d6000602084013e611a6b565b606091505b5050505b50505050565b611a7d611be8565b565b6000611aaa828473ffffffffffffffffffffffffffffffffffffffff16611dbd90919063ffffffff16565b90506000815114158015611acf575080806020019051810190611acd91906130e1565b155b15611b1157826040517f5274afe7000000000000000000000000000000000000000000000000000000008152600401611b089190612234565b60405180910390fd5b505050565b6000611b447f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b611dd3565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b7682611ddd565b8173ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a2600081511115611bd357611bcd8282611eaa565b50611bdc565b611bdb611f2e565b5b5050565b600033905090565b611bf0611f6b565b611c26576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b611c30611be8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ca25760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611c999190612234565b60405180910390fd5b611cab81611320565b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663095ea7b38484604051602401611cdf929190612cd7565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050509050611d2d8482611f8b565b611db757611dac848573ffffffffffffffffffffffffffffffffffffffff1663095ea7b3866000604051602401611d65929190613149565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611a7f565b611db68482611a7f565b5b50505050565b6060611dcb83836000612052565b905092915050565b6000819050919050565b60008173ffffffffffffffffffffffffffffffffffffffff163b03611e3957806040517f4c9c8ce3000000000000000000000000000000000000000000000000000000008152600401611e309190612234565b60405180910390fd5b80611e667f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b611dd3565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000808473ffffffffffffffffffffffffffffffffffffffff1684604051611ed49190613092565b600060405180830381855af49150503d8060008114611f0f576040519150601f19603f3d011682016040523d82523d6000602084013e611f14565b606091505b5091509150611f2485838361211f565b9250505092915050565b6000341115611f69576040517fb398979f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6000611f756113f7565b60000160089054906101000a900460ff16905090565b60008060008473ffffffffffffffffffffffffffffffffffffffff1684604051611fb59190613092565b6000604051808303816000865af19150503d8060008114611ff2576040519150601f19603f3d011682016040523d82523d6000602084013e611ff7565b606091505b5091509150818015612025575060008151148061202457508080602001905181019061202391906130e1565b5b5b8015612048575060008573ffffffffffffffffffffffffffffffffffffffff163b115b9250505092915050565b60608147101561209957306040517fcd7860590000000000000000000000000000000000000000000000000000000081526004016120909190612234565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff1684866040516120c29190613092565b60006040518083038185875af1925050503d80600081146120ff576040519150601f19603f3d011682016040523d82523d6000602084013e612104565b606091505b509150915061211486838361211f565b925050509392505050565b6060826121345761212f826121ae565b6121a6565b6000825114801561215c575060008473ffffffffffffffffffffffffffffffffffffffff163b145b1561219e57836040517f9996b3150000000000000000000000000000000000000000000000000000000081526004016121959190612234565b60405180910390fd5b8190506121a7565b5b9392505050565b6000815111156121c15780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061221e826121f3565b9050919050565b61222e81612213565b82525050565b60006020820190506122496000830184612225565b92915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122b182612268565b810181811067ffffffffffffffff821117156122d0576122cf612279565b5b80604052505050565b60006122e361224f565b90506122ef82826122a8565b919050565b600067ffffffffffffffff82111561230f5761230e612279565b5b602082029050602081019050919050565b600080fd5b61232e81612213565b811461233957600080fd5b50565b60008135905061234b81612325565b92915050565b600061236461235f846122f4565b6122d9565b9050808382526020820190506020840283018581111561238757612386612320565b5b835b818110156123b0578061239c888261233c565b845260208401935050602081019050612389565b5050509392505050565b600082601f8301126123cf576123ce612263565b5b81356123df848260208601612351565b91505092915050565b6000602082840312156123fe576123fd612259565b5b600082013567ffffffffffffffff81111561241c5761241b61225e565b5b612428848285016123ba565b91505092915050565b6000819050919050565b600061245661245161244c846121f3565b612431565b6121f3565b9050919050565b60006124688261243b565b9050919050565b600061247a8261245d565b9050919050565b61248a8161246f565b82525050565b60006020820190506124a56000830184612481565b92915050565b600080fd5b600067ffffffffffffffff8211156124cb576124ca612279565b5b6124d482612268565b9050602081019050919050565b82818337600083830152505050565b60006125036124fe846124b0565b6122d9565b90508281526020810184848401111561251f5761251e6124ab565b5b61252a8482856124e1565b509392505050565b600082601f83011261254757612546612263565b5b81356125578482602086016124f0565b91505092915050565b6000806040838503121561257757612576612259565b5b60006125858582860161233c565b925050602083013567ffffffffffffffff8111156125a6576125a561225e565b5b6125b285828601612532565b9150509250929050565b6000819050919050565b6125cf816125bc565b82525050565b60006020820190506125ea60008301846125c6565b92915050565b60006020828403121561260657612605612259565b5b60006126148482850161233c565b91505092915050565b600080fd5b60008083601f84011261263857612637612263565b5b8235905067ffffffffffffffff8111156126555761265461261d565b5b60208301915083600182028301111561267157612670612320565b5b9250929050565b6000806000806060858703121561269257612691612259565b5b60006126a08782880161233c565b94505060206126b18782880161233c565b935050604085013567ffffffffffffffff8111156126d2576126d161225e565b5b6126de87828801612622565b925092505092959194509250565b600081519050919050565b600082825260208201905092915050565b60005b8381101561272657808201518184015260208101905061270b565b60008484015250505050565b600061273d826126ec565b61274781856126f7565b9350612757818560208601612708565b61276081612268565b840191505092915050565b600060208201905081810360008301526127858184612732565b905092915050565b6000806000606084860312156127a6576127a5612259565b5b60006127b48682870161233c565b93505060206127c58682870161233c565b92505060406127d68682870161233c565b9150509250925092565b60006127eb82612213565b9050919050565b6127fb816127e0565b811461280657600080fd5b50565b600081359050612818816127f2565b92915050565b60006020828403121561283457612833612259565b5b600061284284828501612809565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b61288d8161287a565b811461289857600080fd5b50565b6000815190506128aa81612884565b92915050565b6000602082840312156128c6576128c5612259565b5b60006128d48482850161289b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129178261287a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612949576129486128dd565b5b600182019050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600061298d61298861298384612954565b612431565b61295e565b9050919050565b61299d81612972565b82525050565b60006020820190506129b86000830184612994565b92915050565b6129c78161287a565b82525050565b60006020820190506129e260008301846129be565b92915050565b6000815190506129f781612325565b92915050565b600060208284031215612a1357612a12612259565b5b6000612a21848285016129e8565b91505092915050565b6000612a358261287a565b9150612a408361287a565b9250828203905081811115612a5857612a576128dd565b5b92915050565b600067ffffffffffffffff821115612a7957612a78612279565b5b602082029050602081019050919050565b6000612a9d612a9884612a5e565b6122d9565b90508083825260208201905060208402830185811115612ac057612abf612320565b5b835b81811015612b0757803567ffffffffffffffff811115612ae557612ae4612263565b5b808601612af28982612532565b85526020850194505050602081019050612ac2565b5050509392505050565b600082601f830112612b2657612b25612263565b5b8135612b36848260208601612a8a565b91505092915050565b6000612b4a826121f3565b9050919050565b612b5a81612b3f565b8114612b6557600080fd5b50565b600081359050612b7781612b51565b92915050565b600081359050612b8c81612884565b92915050565b600080600080600060a08688031215612bae57612bad612259565b5b600086013567ffffffffffffffff811115612bcc57612bcb61225e565b5b612bd8888289016123ba565b955050602086013567ffffffffffffffff811115612bf957612bf861225e565b5b612c0588828901612b11565b9450506040612c1688828901612b68565b9350506060612c2788828901612b7d565b9250506080612c3888828901612b7d565b9150509295509295909350565b7f4d69736d61746368206265747765656e20636f6e74726163742061646472657360008201527f73657320616e642063616c6c64617461206c656e677468000000000000000000602082015250565b6000612ca16037836126f7565b9150612cac82612c45565b604082019050919050565b60006020820190508181036000830152612cd081612c94565b9050919050565b6000604082019050612cec6000830185612225565b612cf960208301846129be565b9392505050565b612d09816125bc565b8114612d1457600080fd5b50565b600081519050612d2681612d00565b92915050565b600060208284031215612d4257612d41612259565b5b6000612d5084828501612d17565b91505092915050565b600081905092915050565b50565b6000612d74600083612d59565b9150612d7f82612d64565b600082019050919050565b6000612d9582612d67565b9150819050919050565b600080fd5b600060a08284031215612dba57612db9612d9f565b5b612dc460a06122d9565b90506000612dd48482850161289b565b6000830152506020612de88482850161289b565b6020830152506040612dfc8482850161289b565b6040830152506060612e1084828501612d17565b6060830152506080612e2484828501612d17565b60808301525092915050565b600060a08284031215612e4657612e45612259565b5b6000612e5484828501612da4565b91505092915050565b600060ff82169050919050565b6000612e7582612e5d565b9150612e8083612e5d565b9250828201905060ff811115612e9957612e986128dd565b5b92915050565b612ea881612e5d565b82525050565b612eb7816125bc565b82525050565b606082016000820151612ed36000850182612e9f565b506020820151612ee66020850182612eae565b506040820151612ef96040850182612eae565b50505050565b600082825260208201905092915050565b7f436c6970706572556e6973776170580000000000000000000000000000000000600082015250565b6000612f46600f83612eff565b9150612f5182612f10565b602082019050919050565b600061012082019050612f726000830189612225565b612f7f60208301886129be565b612f8c60408301876129be565b612f9960608301866129be565b612fa66080830185612225565b612fb360a0830184612ebd565b818103610100830152612fc581612f39565b9050979650505050505050565b600061014082019050612fe8600083018a612225565b612ff56020830189612225565b61300260408301886129be565b61300f60608301876129be565b61301c60808301866129be565b61302960a0830185612225565b61303660c0830184612ebd565b81810361012083015261304881612f39565b905098975050505050505050565b600081519050919050565b600061306c82613056565b6130768185612d59565b9350613086818560208601612708565b80840191505092915050565b600061309e8284613061565b915081905092915050565b60008115159050919050565b6130be816130a9565b81146130c957600080fd5b50565b6000815190506130db816130b5565b92915050565b6000602082840312156130f7576130f6612259565b5b6000613105848285016130cc565b91505092915050565b6000819050919050565b600061313361312e6131298461310e565b612431565b61287a565b9050919050565b61314381613118565b82525050565b600060408201905061315e6000830185612225565b61316b602083018461313a565b939250505056fea26469706673582212206c2bf2658d2e32c36a31672be94843b7cc1d64da036571ec43e706cf8c6f087664736f6c63430008140033

Deployed Bytecode

0x6080604052600436106100e15760003560e01c80638da5cb5b1161007f578063ad3cb1cc11610059578063ad3cb1cc14610251578063c0c53b8b1461027c578063e53b2017146102a5578063f2fde38b146102ce576100e8565b80638da5cb5b146101f35780639ed559fb1461021e578063a00a377d14610235576100e8565b80634f1ef286116100bb5780634f1ef2861461016c57806352d1902d14610188578063715018a6146101b35780638abc08e7146101ca576100e8565b806306bd9310146100ed57806339797a7f146101185780633fc8cef314610141576100e8565b366100e857005b600080fd5b3480156100f957600080fd5b506101026102f7565b60405161010f9190612234565b60405180910390f35b34801561012457600080fd5b5061013f600480360381019061013a91906123e8565b61031d565b005b34801561014d57600080fd5b5061015661041b565b6040516101639190612490565b60405180910390f35b61018660048036038101906101819190612560565b61043f565b005b34801561019457600080fd5b5061019d61045e565b6040516101aa91906125d5565b60405180910390f35b3480156101bf57600080fd5b506101c8610491565b005b3480156101d657600080fd5b506101f160048036038101906101ec91906125f0565b6104a5565b005b3480156101ff57600080fd5b50610208610634565b6040516102159190612234565b60405180910390f35b34801561022a57600080fd5b5061023361066c565b005b61024f600480360381019061024a9190612678565b61089f565b005b34801561025d57600080fd5b50610266610bfc565b604051610273919061276b565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061278d565b610c35565b005b3480156102b157600080fd5b506102cc60048036038101906102c7919061281e565b610e4f565b005b3480156102da57600080fd5b506102f560048036038101906102f091906125f0565b610efd565b005b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60005b815181101561041757600082828151811061033e5761033d61284b565b5b6020026020010151905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016103839190612234565b602060405180830381865afa1580156103a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103c491906128b0565b90506000811115610402576104016103da610634565b828473ffffffffffffffffffffffffffffffffffffffff16610f839092919063ffffffff16565b5b5050808061040f9061290c565b915050610320565b5050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610447611002565b610450826110e8565b61045a82826110f3565b5050565b6000610468611212565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b905090565b610499611299565b6104a36000611320565b565b60006104af6113f7565b905060008160000160089054906101000a900460ff1615905060008260000160009054906101000a900467ffffffffffffffff1690506000808267ffffffffffffffff161480156104fd5750825b9050600060018367ffffffffffffffff16148015610532575060003073ffffffffffffffffffffffffffffffffffffffff163b145b905081158015610540575080155b15610577576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018560000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083156105c75760018560000160086101000a81548160ff0219169083151502179055505b6105d08661141f565b831561062c5760008560000160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2600160405161062391906129a3565b60405180910390a15b505050505050565b60008061063f611433565b90508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691505090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631b6a87596040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ff91906128b0565b905060005b8181101561088a576000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392a91a3a836040518263ffffffff1660e01b815260040161076991906129cd565b602060405180830381865afa158015610786573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107aa91906129fd565b905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016107e79190612234565b602060405180830381865afa158015610804573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061082891906128b0565b90506001811115610843576001816108409190612a2a565b90505b61087561084e610634565b828473ffffffffffffffffffffffffffffffffffffffff16610f839092919063ffffffff16565b505080806108829061290c565b915050610704565b5061089c610896610634565b4761145b565b50565b6000828290501115610bf657600080600080600086868101906108c29190612b92565b945094509450945094508351855114610910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090790612cb7565b60405180910390fd5b60005b8551811015610b8057600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168682815181106109685761096761284b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614610b2d576000811480156109c75750600073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff16145b15610a525760008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015610a3457600080fd5b505af1158015610a48573d6000803e3d6000fd5b5050505050610b2c565b60018651610a609190612a2a565b81148015610a9a5750600073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff16145b15610b2b5760008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b8152600401610af891906129cd565b600060405180830381600087803b158015610b1257600080fd5b505af1158015610b26573d6000803e3d6000fd5b505050505b5b5b610b6d868281518110610b4357610b4261284b565b5b6020026020010151868381518110610b5e57610b5d61284b565b5b60200260200101518686611508565b8080610b789061290c565b915050610913565b50600073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1603610bc457610bbf338261145b565b610bf0565b610bef33828a73ffffffffffffffffffffffffffffffffffffffff16610f839092919063ffffffff16565b5b50505050505b50505050565b6040518060400160405280600581526020017f352e302e3000000000000000000000000000000000000000000000000000000081525081565b6000610c3f6113f7565b905060008160000160089054906101000a900460ff1615905060008260000160009054906101000a900467ffffffffffffffff1690506000808267ffffffffffffffff16148015610c8d5750825b9050600060018367ffffffffffffffff16148015610cc2575060003073ffffffffffffffffffffffffffffffffffffffff163b145b905081158015610cd0575080155b15610d07576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018560000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508315610d575760018560000160086101000a81548160ff0219169083151502179055505b610d60866104a5565b610d68611a75565b866000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555087600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508315610e455760008560000160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d26001604051610e3c91906129a3565b60405180910390a15b5050505050505050565b610efa610e5a610634565b8273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e939190612234565b602060405180830381865afa158015610eb0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed491906128b0565b8373ffffffffffffffffffffffffffffffffffffffff16610f839092919063ffffffff16565b50565b610f05611299565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f775760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610f6e9190612234565b60405180910390fd5b610f8081611320565b50565b610ffd838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8585604051602401610fb6929190612cd7565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611a7f565b505050565b7f000000000000000000000000bd098c48d5cc2eb4b880486898c9816e156e43f773ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614806110af57507f000000000000000000000000bd098c48d5cc2eb4b880486898c9816e156e43f773ffffffffffffffffffffffffffffffffffffffff16611096611b16565b73ffffffffffffffffffffffffffffffffffffffff1614155b156110e6576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6110f0611299565b50565b8173ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561115b57506040513d601f19601f820116820180604052508101906111589190612d2c565b60015b61119c57816040517f4c9c8ce30000000000000000000000000000000000000000000000000000000081526004016111939190612234565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b811461120357806040517faa1d49a40000000000000000000000000000000000000000000000000000000081526004016111fa91906125d5565b60405180910390fd5b61120d8383611b6d565b505050565b7f000000000000000000000000bd098c48d5cc2eb4b880486898c9816e156e43f773ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614611297576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6112a1611be0565b73ffffffffffffffffffffffffffffffffffffffff166112bf610634565b73ffffffffffffffffffffffffffffffffffffffff161461131e576112e2611be0565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016113159190612234565b60405180910390fd5b565b600061132a611433565b905060008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050828260000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3505050565b60007ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00905090565b611427611be8565b61143081611c28565b50565b60007f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300905090565b60008273ffffffffffffffffffffffffffffffffffffffff1682611af49060405161148590612d8a565b600060405180830381858888f193505050503d80600081146114c3576040519150601f19603f3d011682016040523d82523d6000602084013e6114c8565b606091505b5050905080611503576040517ff4b3b1bc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119ae576000838060200190518101906115739190612e30565b905060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b8260800151169050600060ff836080015160001c901c601b6115bd9190612e6a565b9050600060405180606001604052808360ff168152602001856060015181526020018481525090506000915060009250600073ffffffffffffffffffffffffffffffffffffffff16846000015173ffffffffffffffffffffffffffffffffffffffff16036116e257600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166327a9b42460a08660000151901c866020015160a08860000151901c60a08960200151901c896040015130886040518863ffffffff1660e01b81526004016116ab96959493929190612f5c565b6000604051808303818588803b1580156116c457600080fd5b505af11580156116d8573d6000803e3d6000fd5b50505050506119a5565b600073ffffffffffffffffffffffffffffffffffffffff16846020015173ffffffffffffffffffffffffffffffffffffffff160361185e576117513360a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16611cae9092919063ffffffff16565b6117aa600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16610f839092919063ffffffff16565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634cb6864c856000015160a08760000151901c60a08860200151901c886040015130876040518763ffffffff1660e01b815260040161182796959493929190612f5c565b600060405180830381600087803b15801561184157600080fd5b505af1158015611855573d6000803e3d6000fd5b505050506119a4565b6118953360a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16611cae9092919063ffffffff16565b6118ee600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660a08660000151901c866000015173ffffffffffffffffffffffffffffffffffffffff16610f839092919063ffffffff16565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632b651a6c8560000151866020015160a08860000151901c60a08960200151901c896040015130886040518863ffffffff1660e01b81526004016119719796959493929190612fd2565b600060405180830381600087803b15801561198b57600080fd5b505af115801561199f573d6000803e3d6000fd5b505050505b5b50505050611a6f565b6119d933828473ffffffffffffffffffffffffffffffffffffffff16611cae9092919063ffffffff16565b611a0484828473ffffffffffffffffffffffffffffffffffffffff16610f839092919063ffffffff16565b8373ffffffffffffffffffffffffffffffffffffffff1683604051611a299190613092565b6000604051808303816000865af19150503d8060008114611a66576040519150601f19603f3d011682016040523d82523d6000602084013e611a6b565b606091505b5050505b50505050565b611a7d611be8565b565b6000611aaa828473ffffffffffffffffffffffffffffffffffffffff16611dbd90919063ffffffff16565b90506000815114158015611acf575080806020019051810190611acd91906130e1565b155b15611b1157826040517f5274afe7000000000000000000000000000000000000000000000000000000008152600401611b089190612234565b60405180910390fd5b505050565b6000611b447f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b611dd3565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b7682611ddd565b8173ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a2600081511115611bd357611bcd8282611eaa565b50611bdc565b611bdb611f2e565b5b5050565b600033905090565b611bf0611f6b565b611c26576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b611c30611be8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ca25760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611c999190612234565b60405180910390fd5b611cab81611320565b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663095ea7b38484604051602401611cdf929190612cd7565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050509050611d2d8482611f8b565b611db757611dac848573ffffffffffffffffffffffffffffffffffffffff1663095ea7b3866000604051602401611d65929190613149565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611a7f565b611db68482611a7f565b5b50505050565b6060611dcb83836000612052565b905092915050565b6000819050919050565b60008173ffffffffffffffffffffffffffffffffffffffff163b03611e3957806040517f4c9c8ce3000000000000000000000000000000000000000000000000000000008152600401611e309190612234565b60405180910390fd5b80611e667f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b611dd3565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000808473ffffffffffffffffffffffffffffffffffffffff1684604051611ed49190613092565b600060405180830381855af49150503d8060008114611f0f576040519150601f19603f3d011682016040523d82523d6000602084013e611f14565b606091505b5091509150611f2485838361211f565b9250505092915050565b6000341115611f69576040517fb398979f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6000611f756113f7565b60000160089054906101000a900460ff16905090565b60008060008473ffffffffffffffffffffffffffffffffffffffff1684604051611fb59190613092565b6000604051808303816000865af19150503d8060008114611ff2576040519150601f19603f3d011682016040523d82523d6000602084013e611ff7565b606091505b5091509150818015612025575060008151148061202457508080602001905181019061202391906130e1565b5b5b8015612048575060008573ffffffffffffffffffffffffffffffffffffffff163b115b9250505092915050565b60608147101561209957306040517fcd7860590000000000000000000000000000000000000000000000000000000081526004016120909190612234565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff1684866040516120c29190613092565b60006040518083038185875af1925050503d80600081146120ff576040519150601f19603f3d011682016040523d82523d6000602084013e612104565b606091505b509150915061211486838361211f565b925050509392505050565b6060826121345761212f826121ae565b6121a6565b6000825114801561215c575060008473ffffffffffffffffffffffffffffffffffffffff163b145b1561219e57836040517f9996b3150000000000000000000000000000000000000000000000000000000081526004016121959190612234565b60405180910390fd5b8190506121a7565b5b9392505050565b6000815111156121c15780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061221e826121f3565b9050919050565b61222e81612213565b82525050565b60006020820190506122496000830184612225565b92915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6122b182612268565b810181811067ffffffffffffffff821117156122d0576122cf612279565b5b80604052505050565b60006122e361224f565b90506122ef82826122a8565b919050565b600067ffffffffffffffff82111561230f5761230e612279565b5b602082029050602081019050919050565b600080fd5b61232e81612213565b811461233957600080fd5b50565b60008135905061234b81612325565b92915050565b600061236461235f846122f4565b6122d9565b9050808382526020820190506020840283018581111561238757612386612320565b5b835b818110156123b0578061239c888261233c565b845260208401935050602081019050612389565b5050509392505050565b600082601f8301126123cf576123ce612263565b5b81356123df848260208601612351565b91505092915050565b6000602082840312156123fe576123fd612259565b5b600082013567ffffffffffffffff81111561241c5761241b61225e565b5b612428848285016123ba565b91505092915050565b6000819050919050565b600061245661245161244c846121f3565b612431565b6121f3565b9050919050565b60006124688261243b565b9050919050565b600061247a8261245d565b9050919050565b61248a8161246f565b82525050565b60006020820190506124a56000830184612481565b92915050565b600080fd5b600067ffffffffffffffff8211156124cb576124ca612279565b5b6124d482612268565b9050602081019050919050565b82818337600083830152505050565b60006125036124fe846124b0565b6122d9565b90508281526020810184848401111561251f5761251e6124ab565b5b61252a8482856124e1565b509392505050565b600082601f83011261254757612546612263565b5b81356125578482602086016124f0565b91505092915050565b6000806040838503121561257757612576612259565b5b60006125858582860161233c565b925050602083013567ffffffffffffffff8111156125a6576125a561225e565b5b6125b285828601612532565b9150509250929050565b6000819050919050565b6125cf816125bc565b82525050565b60006020820190506125ea60008301846125c6565b92915050565b60006020828403121561260657612605612259565b5b60006126148482850161233c565b91505092915050565b600080fd5b60008083601f84011261263857612637612263565b5b8235905067ffffffffffffffff8111156126555761265461261d565b5b60208301915083600182028301111561267157612670612320565b5b9250929050565b6000806000806060858703121561269257612691612259565b5b60006126a08782880161233c565b94505060206126b18782880161233c565b935050604085013567ffffffffffffffff8111156126d2576126d161225e565b5b6126de87828801612622565b925092505092959194509250565b600081519050919050565b600082825260208201905092915050565b60005b8381101561272657808201518184015260208101905061270b565b60008484015250505050565b600061273d826126ec565b61274781856126f7565b9350612757818560208601612708565b61276081612268565b840191505092915050565b600060208201905081810360008301526127858184612732565b905092915050565b6000806000606084860312156127a6576127a5612259565b5b60006127b48682870161233c565b93505060206127c58682870161233c565b92505060406127d68682870161233c565b9150509250925092565b60006127eb82612213565b9050919050565b6127fb816127e0565b811461280657600080fd5b50565b600081359050612818816127f2565b92915050565b60006020828403121561283457612833612259565b5b600061284284828501612809565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b61288d8161287a565b811461289857600080fd5b50565b6000815190506128aa81612884565b92915050565b6000602082840312156128c6576128c5612259565b5b60006128d48482850161289b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129178261287a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612949576129486128dd565b5b600182019050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600061298d61298861298384612954565b612431565b61295e565b9050919050565b61299d81612972565b82525050565b60006020820190506129b86000830184612994565b92915050565b6129c78161287a565b82525050565b60006020820190506129e260008301846129be565b92915050565b6000815190506129f781612325565b92915050565b600060208284031215612a1357612a12612259565b5b6000612a21848285016129e8565b91505092915050565b6000612a358261287a565b9150612a408361287a565b9250828203905081811115612a5857612a576128dd565b5b92915050565b600067ffffffffffffffff821115612a7957612a78612279565b5b602082029050602081019050919050565b6000612a9d612a9884612a5e565b6122d9565b90508083825260208201905060208402830185811115612ac057612abf612320565b5b835b81811015612b0757803567ffffffffffffffff811115612ae557612ae4612263565b5b808601612af28982612532565b85526020850194505050602081019050612ac2565b5050509392505050565b600082601f830112612b2657612b25612263565b5b8135612b36848260208601612a8a565b91505092915050565b6000612b4a826121f3565b9050919050565b612b5a81612b3f565b8114612b6557600080fd5b50565b600081359050612b7781612b51565b92915050565b600081359050612b8c81612884565b92915050565b600080600080600060a08688031215612bae57612bad612259565b5b600086013567ffffffffffffffff811115612bcc57612bcb61225e565b5b612bd8888289016123ba565b955050602086013567ffffffffffffffff811115612bf957612bf861225e565b5b612c0588828901612b11565b9450506040612c1688828901612b68565b9350506060612c2788828901612b7d565b9250506080612c3888828901612b7d565b9150509295509295909350565b7f4d69736d61746368206265747765656e20636f6e74726163742061646472657360008201527f73657320616e642063616c6c64617461206c656e677468000000000000000000602082015250565b6000612ca16037836126f7565b9150612cac82612c45565b604082019050919050565b60006020820190508181036000830152612cd081612c94565b9050919050565b6000604082019050612cec6000830185612225565b612cf960208301846129be565b9392505050565b612d09816125bc565b8114612d1457600080fd5b50565b600081519050612d2681612d00565b92915050565b600060208284031215612d4257612d41612259565b5b6000612d5084828501612d17565b91505092915050565b600081905092915050565b50565b6000612d74600083612d59565b9150612d7f82612d64565b600082019050919050565b6000612d9582612d67565b9150819050919050565b600080fd5b600060a08284031215612dba57612db9612d9f565b5b612dc460a06122d9565b90506000612dd48482850161289b565b6000830152506020612de88482850161289b565b6020830152506040612dfc8482850161289b565b6040830152506060612e1084828501612d17565b6060830152506080612e2484828501612d17565b60808301525092915050565b600060a08284031215612e4657612e45612259565b5b6000612e5484828501612da4565b91505092915050565b600060ff82169050919050565b6000612e7582612e5d565b9150612e8083612e5d565b9250828201905060ff811115612e9957612e986128dd565b5b92915050565b612ea881612e5d565b82525050565b612eb7816125bc565b82525050565b606082016000820151612ed36000850182612e9f565b506020820151612ee66020850182612eae565b506040820151612ef96040850182612eae565b50505050565b600082825260208201905092915050565b7f436c6970706572556e6973776170580000000000000000000000000000000000600082015250565b6000612f46600f83612eff565b9150612f5182612f10565b602082019050919050565b600061012082019050612f726000830189612225565b612f7f60208301886129be565b612f8c60408301876129be565b612f9960608301866129be565b612fa66080830185612225565b612fb360a0830184612ebd565b818103610100830152612fc581612f39565b9050979650505050505050565b600061014082019050612fe8600083018a612225565b612ff56020830189612225565b61300260408301886129be565b61300f60608301876129be565b61301c60808301866129be565b61302960a0830185612225565b61303660c0830184612ebd565b81810361012083015261304881612f39565b905098975050505050505050565b600081519050919050565b600061306c82613056565b6130768185612d59565b9350613086818560208601612708565b80840191505092915050565b600061309e8284613061565b915081905092915050565b60008115159050919050565b6130be816130a9565b81146130c957600080fd5b50565b6000815190506130db816130b5565b92915050565b6000602082840312156130f7576130f6612259565b5b6000613105848285016130cc565b91505092915050565b6000819050919050565b600061313361312e6131298461310e565b612431565b61287a565b9050919050565b61314381613118565b82525050565b600060408201905061315e6000830185612225565b61316b602083018461313a565b939250505056fea26469706673582212206c2bf2658d2e32c36a31672be94843b7cc1d64da036571ec43e706cf8c6f087664736f6c63430008140033

Block Transaction Difficulty 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
Loading...
Loading
[ 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.