ETH Price: $2,128.89 (+0.48%)

Transaction Decoder

Block:
22348756 at Apr-25-2025 09:34:59 PM +UTC
Transaction Fee:
0.00003427792712694 ETH $0.07
Gas Used:
66,801 Gas / 0.51313494 Gwei

Emitted Events:

321 CoWSwapEthFlow.OrderRefund( orderUid=0x93545FD9BC3A53C4EEEED4B5CA100B50D132B96AC00D5320EDE1188B85DFE212BA3CB449BD2B4ADDDBC894D8697F5170800EADECFFFFFFFF, refunder=[Sender] 0x0214ae5fd178986fa18ff792e0b995dc6a78cd56 )
322 WETH9.Withdrawal( src=[Receiver] CoWSwapEthFlow, wad=1000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x0214aE5f...c6a78cD56
2.464994897613891454 Eth
Nonce: 5471
2.464960619686764514 Eth
Nonce: 5472
0.00003427792712694
0xa64bdf7a...D1E814efe 0.0256373051416625 Eth0.0266373051416625 Eth0.001
0xbA3cB449...0800EAdeC
(CoW Protocol: CoW Swap Eth Flow)
0xC02aaA39...83C756Cc2 2,813,877.188722484053322397 Eth2,813,877.187722484053322397 Eth0.001
(BuilderNet)
104.07662127695732607 Eth104.076626805566337639 Eth0.000005528609011569

Execution Trace

CoWSwapEthFlow.invalidateOrdersIgnoringNotAllowed( orderArray= )
  • GPv2Settlement.filledAmount( 0x93545FD9BC3A53C4EEEED4B5CA100B50D132B96AC00D5320EDE1188B85DFE212BA3CB449BD2B4ADDDBC894D8697F5170800EADECFFFFFFFF ) => ( 0 )
  • WETH9.withdraw( wad=1000000000000000 )
    • ETH 0.001 CoWSwapEthFlow.CALL( )
    • ETH 0.001 0xa64bdf7afe7590f74b6d1fbd831a5e8d1e814efe.CALL( )
      File 1 of 3: CoWSwapEthFlow
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.8;
      import "./libraries/EthFlowOrder.sol";
      import "./interfaces/ICoWSwapSettlement.sol";
      import "./interfaces/ICoWSwapEthFlow.sol";
      import "./interfaces/IWrappedNativeToken.sol";
      import "./mixins/CoWSwapOnchainOrders.sol";
      import "./vendored/GPv2EIP1271.sol";
      /// @title CoW Swap ETH Flow
      /// @author CoW Swap Developers
      contract CoWSwapEthFlow is
          CoWSwapOnchainOrders,
          EIP1271Verifier,
          ICoWSwapEthFlow
      {
          using EthFlowOrder for EthFlowOrder.Data;
          using GPv2Order for GPv2Order.Data;
          using GPv2Order for bytes;
          /// @dev The address of the CoW Swap settlement contract that will be used to settle orders created by this
          /// contract.
          ICoWSwapSettlement public immutable cowSwapSettlement;
          /// @dev The address of the contract representing the default native token in the current chain (e.g., WETH for
          /// Ethereum mainnet).
          IWrappedNativeToken public immutable wrappedNativeToken;
          /// @dev Each ETH flow order as described in [`EthFlowOrder.Data`] can be converted to a CoW Swap order. Distinct
          /// CoW Swap orders have non-colliding order hashes. This mapping associates some extra data to a specific CoW Swap
          /// order. This data is stored onchain and is used to verify the ownership and validity of an ETH flow order.
          /// An ETH flow order can be settled onchain only if converting it to a CoW Swap order and hashing yields valid
          /// onchain data.
          mapping(bytes32 => EthFlowOrder.OnchainData) public orders;
          /// @param _cowSwapSettlement The CoW Swap settlement contract.
          /// @param _wrappedNativeToken The default native token in the current chain (e.g., WETH on mainnet).
          constructor(
              ICoWSwapSettlement _cowSwapSettlement,
              IWrappedNativeToken _wrappedNativeToken
          ) CoWSwapOnchainOrders(address(_cowSwapSettlement)) {
              cowSwapSettlement = _cowSwapSettlement;
              wrappedNativeToken = _wrappedNativeToken;
              _wrappedNativeToken.approve(
                  cowSwapSettlement.vaultRelayer(),
                  type(uint256).max
              );
          }
          // The contract needs to be able to receive native tokens when unwrapping.
          // solhint-disable-next-line no-empty-blocks
          receive() external payable {}
          /// @inheritdoc ICoWSwapEthFlow
          function wrapAll() external {
              wrap(address(this).balance);
          }
          /// @inheritdoc ICoWSwapEthFlow
          function wrap(uint256 amount) public {
              // The fallback implementation of the standard WETH9 contract just calls `deposit`. Using the fallback instead
              // of directly calling `deposit` is slightly cheaper in terms of gas.
              // solhint-disable-next-line avoid-low-level-calls
              (bool success, ) = payable(address(wrappedNativeToken)).call{
                  value: amount
              }("");
              // The success value is intentionally disregarded. The callback of the standard WETH9 contract has no revert
              // path in the code, so it could only revert if the internal call runs out of gas. This is not considered a
              // security risk since a reverting internal call would just mean that calling this function has no effect.
              success;
          }
          /// @inheritdoc ICoWSwapEthFlow
          function unwrap(uint256 amount) external {
              wrappedNativeToken.withdraw(amount);
          }
          /// @inheritdoc ICoWSwapEthFlow
          function createOrder(EthFlowOrder.Data calldata order)
              external
              payable
              returns (bytes32 orderHash)
          {
              if (msg.value != order.sellAmount + order.feeAmount) {
                  revert IncorrectEthAmount();
              }
              if (0 == order.sellAmount) {
                  revert NotAllowedZeroSellAmount();
              }
              // solhint-disable-next-line not-rely-on-time
              if (order.validTo < block.timestamp) {
                  revert OrderIsAlreadyExpired();
              }
              EthFlowOrder.OnchainData memory onchainData = EthFlowOrder.OnchainData(
                  msg.sender,
                  order.validTo
              );
              OnchainSignature memory signature = OnchainSignature(
                  OnchainSigningScheme.Eip1271,
                  abi.encodePacked(address(this))
              );
              // The data event field includes extra information needed to settle orders with the CoW Swap API.
              bytes memory data = abi.encodePacked(
                  order.quoteId,
                  onchainData.validTo
              );
              orderHash = broadcastOrder(
                  onchainData.owner,
                  order.toCoWSwapOrder(wrappedNativeToken),
                  signature,
                  data
              );
              if (orders[orderHash].owner != EthFlowOrder.NO_OWNER) {
                  revert OrderIsAlreadyOwned(orderHash);
              }
              orders[orderHash] = onchainData;
          }
          /// @inheritdoc ICoWSwapEthFlow
          function invalidateOrdersIgnoringNotAllowed(
              EthFlowOrder.Data[] calldata orderArray
          ) external {
              for (uint256 i = 0; i < orderArray.length; i++) {
                  _invalidateOrder(orderArray[i], false);
              }
          }
          /// @inheritdoc ICoWSwapEthFlow
          function invalidateOrder(EthFlowOrder.Data calldata order) public {
              _invalidateOrder(order, true);
          }
          /// @dev Performs the same tasks as `invalidateOrder` (see documentation in `ICoWSwapEthFlow`), but also allows the
          /// caller to ignore the revert condition `NotAllowedToInvalidateOrder`. Instead of reverting, it stops execution
          /// without causing any state change.
          ///
          /// @param order order to be invalidated.
          /// @param revertOnInvalidDeletion controls whether the function call should revert or just return.
          function _invalidateOrder(
              EthFlowOrder.Data calldata order,
              bool revertOnInvalidDeletion
          ) internal {
              GPv2Order.Data memory cowSwapOrder = order.toCoWSwapOrder(
                  wrappedNativeToken
              );
              bytes32 orderHash = cowSwapOrder.hash(cowSwapDomainSeparator);
              EthFlowOrder.OnchainData memory orderData = orders[orderHash];
              // solhint-disable-next-line not-rely-on-time
              bool isTradable = orderData.validTo >= block.timestamp;
              if (
                  orderData.owner == EthFlowOrder.INVALIDATED_OWNER ||
                  orderData.owner == EthFlowOrder.NO_OWNER ||
                  (isTradable && orderData.owner != msg.sender)
              ) {
                  if (revertOnInvalidDeletion) {
                      revert NotAllowedToInvalidateOrder(orderHash);
                  } else {
                      return;
                  }
              }
              orders[orderHash].owner = EthFlowOrder.INVALIDATED_OWNER;
              bytes memory orderUid = new bytes(GPv2Order.UID_LENGTH);
              orderUid.packOrderUidParams(
                  orderHash,
                  address(this),
                  cowSwapOrder.validTo
              );
              // solhint-disable-next-line not-rely-on-time
              if (isTradable) {
                  // Order is valid but its owner decided to invalidate it.
                  emit OrderInvalidation(orderUid);
              } else {
                  // The order cannot be traded anymore, so this transaction is likely triggered to get back the ETH. We are
                  // interested in knowing who is the source of the refund.
                  emit OrderRefund(orderUid, msg.sender);
              }
              uint256 filledAmount = cowSwapSettlement.filledAmount(orderUid);
              // This comment argues that a CoW Swap trader does not pay more fees if a partially fillable order is
              // (partially) settled in multiple batches rather than in one single batch of the combined size.
              // This also means that we can refund the user assuming the worst case of settling the filled amount in a single
              // batch without risking giving out more funds than available in the contract because of rounding issues.
              // A CoW Swap trader is always charged exactly the amount of fees that is proportional to the filled amount
              // rounded down to the smaller integer. The code is here:
              // https://github.com/cowprotocol/contracts/blob/d4e0fcd58367907bf1aff54d182222eeaee793dd/src/contracts/GPv2Settlement.sol#L385-L387
              // We show that a trader pays less in fee to CoW Swap when settiling a partially fillable order in two
              // executions rather than a single one for the combined amount; by induction this proves our original statement.
              // Our previous statement is equivalent to `floor(a/c) + floor(b/c) ≤ floor((a+b)/c)`. Writing a and b in terms
              // of reminders (`a = ad*c+ar`, `b = bd*c+br`) the equation becomes `ad + bd ≤ ad + bd + floor((ar+br)/c)`,
              // which is immediately true.
              uint256 refundAmount;
              unchecked {
                  // - Multiplication overflow: since this smart contract never invalidates orders on CoW Swap,
                  //   `filledAmount <= sellAmount`. Also, `feeAmount + sellAmount` is an amount of native tokens that was
                  //   originally sent by the user. As such, it cannot be larger than the amount of native tokens available,
                  //   which is smaller than 2¹²⁸/10¹⁸ ≈ 10²⁰ in all networks supported by CoW Swap so far. Since both values
                  //    are smaller than 2¹²⁸, their product does not overflow a uint256.
                  // - Subtraction underflow: again `filledAmount ≤ sellAmount`, meaning:
                  //   feeAmount * filledAmount / sellAmount ≤ feeAmount
                  uint256 feeRefundAmount = cowSwapOrder.feeAmount -
                      ((cowSwapOrder.feeAmount * filledAmount) /
                          cowSwapOrder.sellAmount);
                  // - Subtraction underflow: as noted before, filledAmount ≤ sellAmount.
                  // - Addition overflow: as noted before, the user already sent feeAmount + sellAmount native tokens, which
                  //   did not overflow.
                  refundAmount =
                      cowSwapOrder.sellAmount -
                      filledAmount +
                      feeRefundAmount;
              }
              // If not enough native token is available in the contract, unwrap the needed amount.
              if (address(this).balance < refundAmount) {
                  uint256 withdrawAmount;
                  unchecked {
                      withdrawAmount = refundAmount - address(this).balance;
                  }
                  wrappedNativeToken.withdraw(withdrawAmount);
              }
              // Using low level calls to perform the transfer avoids setting arbitrary limits to the amount of gas used in a
              // call. Reentrancy is avoided thanks to the `nonReentrant` function modifier.
              // solhint-disable-next-line avoid-low-level-calls
              (bool success, ) = payable(orderData.owner).call{value: refundAmount}(
                  ""
              );
              if (!success) {
                  revert EthTransferFailed();
              }
          }
          /// @inheritdoc ICoWSwapEthFlow
          function isValidSignature(bytes32 orderHash, bytes memory)
              external
              view
              override(EIP1271Verifier, ICoWSwapEthFlow)
              returns (bytes4)
          {
              // Note: the signature parameter is ignored since all information needed to verify the validity of the order is
              // already available onchain.
              EthFlowOrder.OnchainData memory orderData = orders[orderHash];
              if (
                  (orderData.owner != EthFlowOrder.NO_OWNER) &&
                  (orderData.owner != EthFlowOrder.INVALIDATED_OWNER) &&
                  // solhint-disable-next-line not-rely-on-time
                  (orderData.validTo >= block.timestamp)
              ) {
                  return GPv2EIP1271.MAGICVALUE;
              } else {
                  return bytes4(type(uint32).max);
              }
          }
      }
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.8;
      import "../vendored/GPv2Order.sol";
      import "../vendored/IERC20.sol";
      /// @title CoW Swap ETH Flow Order Library
      /// @author CoW Swap Developers
      library EthFlowOrder {
          /// @dev Struct collecting all parameters of an ETH flow order that need to be stored onchain.
          struct OnchainData {
              /// @dev The address of the user whom the order belongs to.
              address owner;
              /// @dev The latest timestamp in seconds when the order can be settled.
              uint32 validTo;
          }
          /// @dev Data describing all parameters of an ETH flow order.
          struct Data {
              /// @dev The address of the token that should be bought for ETH. It follows the same format as in the CoW Swap
              /// contracts, meaning that the token GPv2Transfer.BUY_ETH_ADDRESS (0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE)
              /// represents native ETH (and should most likely not be used in this context).
              IERC20 buyToken;
              /// @dev The address that should receive the proceeds from the order. Note that using the address
              /// GPv2Order.RECEIVER_SAME_AS_OWNER (i.e., the zero address) as the receiver is not allowed.
              address receiver;
              /// @dev The exact amount of ETH that should be sold in this order.
              uint256 sellAmount;
              /// @dev The minimum amount of buyToken that should be received to settle this order.
              uint256 buyAmount;
              /// @dev Extra data to include in the order. It is used by the CoW Swap infrastructure as extra information on
              /// the order and has no direct effect on on-chain execution.
              bytes32 appData;
              /// @dev The exact amount of ETH that should be paid by the user to the CoW Swap contract after the order is
              /// settled.
              uint256 feeAmount;
              /// @dev The last timestamp in seconds from which the order can be settled (order cannot resolve after this timestamp).
              uint32 validTo;
              /// @dev Flag indicating whether the order is fill-or-kill or can be filled partially.
              bool partiallyFillable;
              /// @dev quoteId The quote id obtained from the CoW Swap API to lock in the current price. It is not directly
              /// used by any onchain component but is part of the information emitted onchain on order creation and may be
              /// required for an order to be automatically picked up by the CoW Swap orderbook.
              int64 quoteId;
          }
          /// @dev An order that is owned by this address is an order that has not yet been assigned.
          address internal constant NO_OWNER = address(0);
          /// @dev An order that is owned by this address is an order that has been invalidated. Note that this address cannot
          /// be directly used to create orders.
          address internal constant INVALIDATED_OWNER = address(type(uint160).max);
          /// @dev Error returned if the receiver of the ETH flow order is unspecified (`GPv2Order.RECEIVER_SAME_AS_OWNER`).
          error ReceiverMustBeSet();
          /// @dev Transforms an ETH flow order into the CoW Swap order that can be settled by the ETH flow contract.
          ///
          /// @param order The ETH flow order to be converted.
          /// @param wrappedNativeToken The address of the wrapped native token for the current network (e.g., WETH for
          /// Ethereum mainet).
          /// @return The CoW Swap order data that represents the user order in the ETH flow contract.
          function toCoWSwapOrder(Data memory order, IERC20 wrappedNativeToken)
              internal
              pure
              returns (GPv2Order.Data memory)
          {
              if (order.receiver == GPv2Order.RECEIVER_SAME_AS_OWNER) {
                  // The receiver field specified which address is going to receive the proceeds from the orders. If using
                  // `RECEIVER_SAME_AS_OWNER`, then the receiver is implicitly assumed by the CoW Swap Protocol to be the
                  // same as the order owner.
                  // However, the owner of an ETH flow order is always the ETH flow smart contract, and any ERC20 tokens sent
                  // to this contract would be lost.
                  revert ReceiverMustBeSet();
              }
              // Note that not all fields from `order` are used in creating the corresponding CoW Swap order.
              // For example, validTo and quoteId are ignored.
              return
                  GPv2Order.Data(
                      wrappedNativeToken, // IERC20 sellToken
                      order.buyToken, // IERC20 buyToken
                      order.receiver, // address receiver
                      order.sellAmount, // uint256 sellAmount
                      order.buyAmount, // uint256 buyAmount
                      // This CoW Swap order is not allowed to expire. If it expired, then any solver of CoW Swap contract
                      // would be allowed to clear the `filledAmount` for this order using `freeFilledAmountStorage`, making
                      // it impossible to detect if the order has been previously filled.
                      // Note that order.validTo is disregarded in building the CoW Swap order.
                      type(uint32).max, // uint32 validTo
                      order.appData, // bytes32 appData
                      order.feeAmount, // uint256 feeAmount
                      // Only sell orders are allowed. In a buy order, any leftover ETH would stay in the ETH flow contract
                      // and would need to be sent back to the user, whose extra gas cost is usually not worth it.
                      GPv2Order.KIND_SELL, // bytes32 kind
                      order.partiallyFillable, // bool partiallyFillable
                      // We do not currently support interacting with the Balancer vault.
                      GPv2Order.BALANCE_ERC20, // bytes32 sellTokenBalance
                      GPv2Order.BALANCE_ERC20 // bytes32 buyTokenBalance
                  );
          }
      }
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.8;
      /// @title CoW Swap Settlement Contract Interface
      /// @author CoW Swap Developers
      /// @dev This interface collects the functions of the CoW Swap settlement contract that are used by the ETH flow
      /// contract.
      interface ICoWSwapSettlement {
          /// @dev Map each user order by UID to the amount that has been filled so
          /// far. If this amount is larger than or equal to the amount traded in the
          /// order (amount sold for sell orders, amount bought for buy orders) then
          /// the order cannot be traded anymore. If the order is fill or kill, then
          /// this value is only used to determine whether the order has already been
          /// executed.
          /// @param orderUid The uinique identifier to use to retrieve the filled amount.
          function filledAmount(bytes memory orderUid) external returns (uint256);
          /// @dev The address of the vault relayer: the contract that handles withdrawing tokens from the user to the
          /// settlement contract. A user who wants to sell a token on CoW Swap must approve this contract to spend the token.
          function vaultRelayer() external returns (address);
      }
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.8;
      import "../libraries/EthFlowOrder.sol";
      /// @title CoW Swap ETH Flow Event Interface
      /// @author CoW Swap Developers
      interface ICoWSwapEthFlowEvents {
          /// @dev Event emitted to notify that an order was refunded. Note that this event is not fired every time the order
          /// is invalidated (even though the user receives all unspent ETH back). This is because we want to differenciate
          /// the case where the user invalidates a valid order and when the user receives back the funds from an expired
          /// order.
          ///
          /// @param orderUid CoW Swap's unique order identifier of the order that has been invalidated (and refunded).
          /// @param refunder The address that triggered the order refund.
          event OrderRefund(bytes orderUid, address indexed refunder);
      }
      /// @title CoW Swap ETH Flow Interface
      /// @author CoW Swap Developers
      interface ICoWSwapEthFlow is ICoWSwapEthFlowEvents {
          /// @dev Error thrown when trying to create a new order whose order hash is the same as an order hash that was
          /// already assigned.
          error OrderIsAlreadyOwned(bytes32 orderHash);
          /// @dev Error thrown when trying to create an order that would be expired at the time of creation
          error OrderIsAlreadyExpired();
          /// @dev Error thrown when trying to create an order without sending the expected amount of ETH to this contract.
          error IncorrectEthAmount();
          /// @dev Error thrown when trying to create an order with a sell amount == 0
          error NotAllowedZeroSellAmount();
          /// @dev Error thrown if trying to invalidate an order while not allowed.
          error NotAllowedToInvalidateOrder(bytes32 orderHash);
          /// @dev Error thrown when unsuccessfully sending ETH to an address.
          error EthTransferFailed();
          /// @dev Function that creates and broadcasts an ETH flow order that sells native ETH. The order is paid for when
          /// the caller sends out the transaction. The caller takes ownership of the new order.
          ///
          /// @param order The data describing the order to be created. See [`EthFlowOrder.Data`] for extra information on
          /// each parameter.
          /// @return orderHash The hash of the CoW Swap order that is created to settle the new ETH order.
          function createOrder(EthFlowOrder.Data calldata order)
              external
              payable
              returns (bytes32 orderHash);
          /// @dev Marks existing ETH-flow orders as invalid and, for each order, refunds the ETH that hasn't been traded yet.
          /// The function call will not revert, if some orders are not refundable. It will silently ignore these orders.
          /// Note that some parameters of the orders are ignored, as for example the order expiration date and the quote id.
          ///
          /// @param orderArray Array of orders to be invalidated.
          function invalidateOrdersIgnoringNotAllowed(
              EthFlowOrder.Data[] calldata orderArray
          ) external;
          /// @dev Marks an existing ETH-flow order as invalid and refunds the ETH that hasn't been traded yet.
          /// Note that some parameters of the orders are ignored, as for example the order expiration date and the quote id.
          ///
          /// @param order Order to be invalidated.
          function invalidateOrder(EthFlowOrder.Data calldata order) external;
          /// @dev EIP1271-compliant onchain signature verification function.
          /// This function is used by the CoW Swap settlement contract to determine if an order that is signed with an
          /// EIP1271 signature is valid. As this contract has approved the vault relayer contract, a valid signature for an
          /// order means that the order can be traded on CoW Swap.
          ///
          /// @param orderHash Hash of the order to be signed. This is the EIP-712 signing hash for the specified order as
          /// defined in the CoW Swap settlement contract.
          /// @param signature Signature byte array. This parameter is unused since as all information needed to verify if an
          /// order is already available onchain.
          /// @return magicValue Either the EIP-1271 "magic value" indicating success (0x1626ba7e) or a different value
          /// indicating failure (0xffffffff).
          function isValidSignature(bytes32 orderHash, bytes memory signature)
              external
              view
              returns (bytes4 magicValue);
          /// @dev This function reads the  chain's native token balance of this contract (e.g., ETH for mainnet) and converts
          // the entire amount to its wrapped version (e.g., WETH).
          function wrapAll() external;
          /// @dev This function takes the specified amount of the chain's native token (e.g., ETH for mainnet) stored by this
          /// contract and converts it to its wrapped version (e.g., WETH).
          ///
          /// @param amount The amount of native tokens to convert to wrapped native tokens.
          function wrap(uint256 amount) external;
          /// @dev This function takes the specified amount of the chain's wrapped native token (e.g., WETH for mainnet)
          /// and converts it to its unwrapped version (e.g., ETH).
          ///
          /// @param amount The amount of wrapped native tokens to convert to native tokens.
          function unwrap(uint256 amount) external;
      }
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.8;
      import "../vendored/IERC20.sol";
      /// @title CoW Swap Wrapped Native Token Interface
      /// @author CoW Swap Developers
      interface IWrappedNativeToken is IERC20 {
          /// @dev Deposit native token in exchange for wrapped netive tokens.
          function deposit() external payable;
          /// @dev Burn wrapped native tokens in exchange for native tokens.
          /// @param amount Amount of wrapped tokens to exchange for native tokens.
          function withdraw(uint256 amount) external;
      }
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.8;
      import "../vendored/GPv2Order.sol";
      import "../interfaces/ICoWSwapOnchainOrders.sol";
      import "../libraries/CoWSwapEip712.sol";
      /// @title CoW Swap Onchain Order Creator Event Emitter
      /// @author CoW Swap Developers
      contract CoWSwapOnchainOrders is ICoWSwapOnchainOrders {
          using GPv2Order for GPv2Order.Data;
          using GPv2Order for bytes;
          /// @dev The domain separator for the CoW Swap settlement contract.
          bytes32 internal immutable cowSwapDomainSeparator;
          /// @param settlementContractAddress The address of CoW Swap's settlement contract on the chain where this contract
          /// is deployed.
          constructor(address settlementContractAddress) {
              cowSwapDomainSeparator = CoWSwapEip712.domainSeparator(
                  settlementContractAddress
              );
          }
          /// @dev Emits an event with all information needed to execute an order onchain and returns the corresponding order
          /// hash.
          ///
          /// See [`ICoWSwapOnchainOrders.OrderPlacement`] for details on the meaning of each parameter.
          /// @return The EIP-712 hash of the order data as computed by the CoW Swap settlement contract.
          function broadcastOrder(
              address sender,
              GPv2Order.Data memory order,
              OnchainSignature memory signature,
              bytes memory data
          ) internal returns (bytes32) {
              emit OrderPlacement(sender, order, signature, data);
              return order.hash(cowSwapDomainSeparator);
          }
      }
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.8;
      // Vendored from GPv2 contracts v1.0.0, see:
      // <https://raw.githubusercontent.com/cowprotocol/contracts/main/src/contracts/interfaces/GPv2EIP1271.sol>
      // The following changes were made:
      // - Bumped up Solidity version.
      library GPv2EIP1271 {
          /// @dev Value returned by a call to `isValidSignature` if the signature
          /// was verified successfully. The value is defined in EIP-1271 as:
          /// bytes4(keccak256("isValidSignature(bytes32,bytes)"))
          bytes4 internal constant MAGICVALUE = 0x1626ba7e;
      }
      /// @title EIP1271 Interface
      /// @dev Standardized interface for an implementation of smart contract
      /// signatures as described in EIP-1271. The code that follows is identical to
      /// the code in the standard with the exception of formatting and syntax
      /// changes to adapt the code to our Solidity version.
      interface EIP1271Verifier {
          /// @dev Should return whether the signature provided is valid for the
          /// provided data
          /// @param _hash      Hash of the data to be signed
          /// @param _signature Signature byte array associated with _data
          ///
          /// MUST return the bytes4 magic value 0x1626ba7e when function passes.
          /// MUST NOT modify state (using STATICCALL for solc < 0.5, view modifier for
          /// solc > 0.5)
          /// MUST allow external calls
          ///
          function isValidSignature(bytes32 _hash, bytes memory _signature)
              external
              view
              returns (bytes4 magicValue);
      }
      // SPDX-License-Identifier: LGPL-3.0-or-later
      // Vendored from GPv2 contracts v1.0.0, see:
      // <https://raw.githubusercontent.com/cowprotocol/contracts/v1.0.0/src/contracts/libraries/GPv2Order.sol>
      // The following changes were made:
      // - Bumped up Solidity version.
      // - Vendored imports.
      pragma solidity ^0.8;
      import "./IERC20.sol";
      /// @title Gnosis Protocol v2 Order Library
      /// @author Gnosis Developers
      library GPv2Order {
          /// @dev The complete data for a Gnosis Protocol order. This struct contains
          /// all order parameters that are signed for submitting to GP.
          struct Data {
              IERC20 sellToken;
              IERC20 buyToken;
              address receiver;
              uint256 sellAmount;
              uint256 buyAmount;
              uint32 validTo;
              bytes32 appData;
              uint256 feeAmount;
              bytes32 kind;
              bool partiallyFillable;
              bytes32 sellTokenBalance;
              bytes32 buyTokenBalance;
          }
          /// @dev The order EIP-712 type hash for the [`GPv2Order.Data`] struct.
          ///
          /// This value is pre-computed from the following expression:
          /// ```
          /// keccak256(
          ///     "Order(" +
          ///         "address sellToken," +
          ///         "address buyToken," +
          ///         "address receiver," +
          ///         "uint256 sellAmount," +
          ///         "uint256 buyAmount," +
          ///         "uint32 validTo," +
          ///         "bytes32 appData," +
          ///         "uint256 feeAmount," +
          ///         "string kind," +
          ///         "bool partiallyFillable" +
          ///         "string sellTokenBalance" +
          ///         "string buyTokenBalance" +
          ///     ")"
          /// )
          /// ```
          bytes32 internal constant TYPE_HASH =
              hex"d5a25ba2e97094ad7d83dc28a6572da797d6b3e7fc6663bd93efb789fc17e489";
          /// @dev The marker value for a sell order for computing the order struct
          /// hash. This allows the EIP-712 compatible wallets to display a
          /// descriptive string for the order kind (instead of 0 or 1).
          ///
          /// This value is pre-computed from the following expression:
          /// ```
          /// keccak256("sell")
          /// ```
          bytes32 internal constant KIND_SELL =
              hex"f3b277728b3fee749481eb3e0b3b48980dbbab78658fc419025cb16eee346775";
          /// @dev The OrderKind marker value for a buy order for computing the order
          /// struct hash.
          ///
          /// This value is pre-computed from the following expression:
          /// ```
          /// keccak256("buy")
          /// ```
          bytes32 internal constant KIND_BUY =
              hex"6ed88e868af0a1983e3886d5f3e95a2fafbd6c3450bc229e27342283dc429ccc";
          /// @dev The TokenBalance marker value for using direct ERC20 balances for
          /// computing the order struct hash.
          ///
          /// This value is pre-computed from the following expression:
          /// ```
          /// keccak256("erc20")
          /// ```
          bytes32 internal constant BALANCE_ERC20 =
              hex"5a28e9363bb942b639270062aa6bb295f434bcdfc42c97267bf003f272060dc9";
          /// @dev The TokenBalance marker value for using Balancer Vault external
          /// balances (in order to re-use Vault ERC20 approvals) for computing the
          /// order struct hash.
          ///
          /// This value is pre-computed from the following expression:
          /// ```
          /// keccak256("external")
          /// ```
          bytes32 internal constant BALANCE_EXTERNAL =
              hex"abee3b73373acd583a130924aad6dc38cfdc44ba0555ba94ce2ff63980ea0632";
          /// @dev The TokenBalance marker value for using Balancer Vault internal
          /// balances for computing the order struct hash.
          ///
          /// This value is pre-computed from the following expression:
          /// ```
          /// keccak256("internal")
          /// ```
          bytes32 internal constant BALANCE_INTERNAL =
              hex"4ac99ace14ee0a5ef932dc609df0943ab7ac16b7583634612f8dc35a4289a6ce";
          /// @dev Marker address used to indicate that the receiver of the trade
          /// proceeds should the owner of the order.
          ///
          /// This is chosen to be `address(0)` for gas efficiency as it is expected
          /// to be the most common case.
          address internal constant RECEIVER_SAME_AS_OWNER = address(0);
          /// @dev The byte length of an order unique identifier.
          uint256 internal constant UID_LENGTH = 56;
          /// @dev Returns the actual receiver for an order. This function checks
          /// whether or not the [`receiver`] field uses the marker value to indicate
          /// it is the same as the order owner.
          ///
          /// @return receiver The actual receiver of trade proceeds.
          function actualReceiver(Data memory order, address owner)
              internal
              pure
              returns (address receiver)
          {
              if (order.receiver == RECEIVER_SAME_AS_OWNER) {
                  receiver = owner;
              } else {
                  receiver = order.receiver;
              }
          }
          /// @dev Return the EIP-712 signing hash for the specified order.
          ///
          /// @param order The order to compute the EIP-712 signing hash for.
          /// @param domainSeparator The EIP-712 domain separator to use.
          /// @return orderDigest The 32 byte EIP-712 struct hash.
          function hash(Data memory order, bytes32 domainSeparator)
              internal
              pure
              returns (bytes32 orderDigest)
          {
              bytes32 structHash;
              // NOTE: Compute the EIP-712 order struct hash in place. As suggested
              // in the EIP proposal, noting that the order struct has 10 fields, and
              // including the type hash `(12 + 1) * 32 = 416` bytes to hash.
              // <https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md#rationale-for-encodedata>
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  let dataStart := sub(order, 32)
                  let temp := mload(dataStart)
                  mstore(dataStart, TYPE_HASH)
                  structHash := keccak256(dataStart, 416)
                  mstore(dataStart, temp)
              }
              // NOTE: Now that we have the struct hash, compute the EIP-712 signing
              // hash using scratch memory past the free memory pointer. The signing
              // hash is computed from `"\\x19\\x01" || domainSeparator || structHash`.
              // <https://docs.soliditylang.org/en/v0.8.16/internals/layout_in_memory.html#layout-in-memory>
              // <https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md#specification>
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  let freeMemoryPointer := mload(0x40)
                  mstore(freeMemoryPointer, "\\x19\\x01")
                  mstore(add(freeMemoryPointer, 2), domainSeparator)
                  mstore(add(freeMemoryPointer, 34), structHash)
                  orderDigest := keccak256(freeMemoryPointer, 66)
              }
          }
          /// @dev Packs order UID parameters into the specified memory location. The
          /// result is equivalent to `abi.encodePacked(...)` with the difference that
          /// it allows re-using the memory for packing the order UID.
          ///
          /// This function reverts if the order UID buffer is not the correct size.
          ///
          /// @param orderUid The buffer pack the order UID parameters into.
          /// @param orderDigest The EIP-712 struct digest derived from the order
          /// parameters.
          /// @param owner The address of the user who owns this order.
          /// @param validTo The epoch time at which the order will stop being valid.
          function packOrderUidParams(
              bytes memory orderUid,
              bytes32 orderDigest,
              address owner,
              uint32 validTo
          ) internal pure {
              require(orderUid.length == UID_LENGTH, "GPv2: uid buffer overflow");
              // NOTE: Write the order UID to the allocated memory buffer. The order
              // parameters are written to memory in **reverse order** as memory
              // operations write 32-bytes at a time and we want to use a packed
              // encoding. This means, for example, that after writing the value of
              // `owner` to bytes `20:52`, writing the `orderDigest` to bytes `0:32`
              // will **overwrite** bytes `20:32`. This is desirable as addresses are
              // only 20 bytes and `20:32` should be `0`s:
              //
              //        |           1111111111222222222233333333334444444444555555
              //   byte | 01234567890123456789012345678901234567890123456789012345
              // -------+---------------------------------------------------------
              //  field | [.........orderDigest..........][......owner.......][vT]
              // -------+---------------------------------------------------------
              // mstore |                         [000000000000000000000000000.vT]
              //        |                     [00000000000.......owner.......]
              //        | [.........orderDigest..........]
              //
              // Additionally, since Solidity `bytes memory` are length prefixed,
              // 32 needs to be added to all the offsets.
              //
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  mstore(add(orderUid, 56), validTo)
                  mstore(add(orderUid, 52), owner)
                  mstore(add(orderUid, 32), orderDigest)
              }
          }
          /// @dev Extracts specific order information from the standardized unique
          /// order id of the protocol.
          ///
          /// @param orderUid The unique identifier used to represent an order in
          /// the protocol. This uid is the packed concatenation of the order digest,
          /// the validTo order parameter and the address of the user who created the
          /// order. It is used by the user to interface with the contract directly,
          /// and not by calls that are triggered by the solvers.
          /// @return orderDigest The EIP-712 signing digest derived from the order
          /// parameters.
          /// @return owner The address of the user who owns this order.
          /// @return validTo The epoch time at which the order will stop being valid.
          function extractOrderUidParams(bytes calldata orderUid)
              internal
              pure
              returns (
                  bytes32 orderDigest,
                  address owner,
                  uint32 validTo
              )
          {
              require(orderUid.length == UID_LENGTH, "GPv2: invalid uid");
              // Use assembly to efficiently decode packed calldata.
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  orderDigest := calldataload(orderUid.offset)
                  owner := shr(96, calldataload(add(orderUid.offset, 32)))
                  validTo := shr(224, calldataload(add(orderUid.offset, 52)))
              }
          }
      }
      // SPDX-License-Identifier: MIT
      // Vendored from OpenZeppelin Contracts v4.4.0, see:
      // <https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.4.0/contracts/token/ERC20/IERC20.sol>
      // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)
      pragma solidity ^0.8.0;
      /**
       * @dev Interface of the ERC20 standard as defined in the EIP.
       */
      interface IERC20 {
          /**
           * @dev Returns the amount of tokens in existence.
           */
          function totalSupply() external view returns (uint256);
          /**
           * @dev Returns the amount of tokens owned by `account`.
           */
          function balanceOf(address account) external view returns (uint256);
          /**
           * @dev Moves `amount` tokens from the caller's account to `recipient`.
           *
           * Returns a boolean value indicating whether the operation succeeded.
           *
           * Emits a {Transfer} event.
           */
          function transfer(address recipient, uint256 amount)
              external
              returns (bool);
          /**
           * @dev Returns the remaining number of tokens that `spender` will be
           * allowed to spend on behalf of `owner` through {transferFrom}. This is
           * zero by default.
           *
           * This value changes when {approve} or {transferFrom} are called.
           */
          function allowance(address owner, address spender)
              external
              view
              returns (uint256);
          /**
           * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
           *
           * Returns a boolean value indicating whether the operation succeeded.
           *
           * IMPORTANT: Beware that changing an allowance with this method brings the risk
           * that someone may use both the old and the new allowance by unfortunate
           * transaction ordering. One possible solution to mitigate this race
           * condition is to first reduce the spender's allowance to 0 and set the
           * desired value afterwards:
           * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
           *
           * Emits an {Approval} event.
           */
          function approve(address spender, uint256 amount) external returns (bool);
          /**
           * @dev Moves `amount` tokens from `sender` to `recipient` using the
           * allowance mechanism. `amount` is then deducted from the caller's
           * allowance.
           *
           * Returns a boolean value indicating whether the operation succeeded.
           *
           * Emits a {Transfer} event.
           */
          function transferFrom(
              address sender,
              address recipient,
              uint256 amount
          ) external returns (bool);
          /**
           * @dev Emitted when `value` tokens are moved from one account (`from`) to
           * another (`to`).
           *
           * Note that `value` may be zero.
           */
          event Transfer(address indexed from, address indexed to, uint256 value);
          /**
           * @dev Emitted when the allowance of a `spender` for an `owner` is set by
           * a call to {approve}. `value` is the new allowance.
           */
          event Approval(
              address indexed owner,
              address indexed spender,
              uint256 value
          );
      }
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.8;
      import "../vendored/GPv2Order.sol";
      /// @title CoW Swap Onchain Order Creator Interface
      /// @author CoW Swap Developers
      interface ICoWSwapOnchainOrders {
          /// @dev List of signature schemes that are supported by this contract to create orders onchain.
          enum OnchainSigningScheme {
              Eip1271,
              PreSign
          }
          /// @dev Struct containing information on the signign scheme used plus the corresponding signature.
          struct OnchainSignature {
              /// @dev The signing scheme used by the signature data.
              OnchainSigningScheme scheme;
              /// @dev The data used as an order signature.
              bytes data;
          }
          /// @dev Event emitted to broadcast an order onchain.
          ///
          /// @param sender The user who triggered the creation of the order. Note that this address does *not* need to be
          /// the actual owner of the order and does not need to be related to the order or signature in any way.
          /// For example, if a smart contract creates orders on behalf of the user, then the sender would be the user who
          /// triggers the creation of the order, while the actual owner of the order would be the smart contract that
          /// creates it.
          /// @param order Information on the order that is created in this transacion. The order is expected to be a valid
          /// order for the CoW Swap settlement contract and contain all information needed to settle it in a batch.
          /// @param signature The signature that can be used to verify the newly created order. Note that it is always
          /// possible to recover the owner of the order from a valid signature.
          /// @param data Any extra data that should be passed along with the order. This will be used by the services that
          /// collects onchain orders and no specific encoding is enforced on this field. It is supposed to encode extra
          /// information that is not included in the order data so that it can be passed along when decoding an onchain
          /// order. As an example, a contract that creates orders on behalf of a user could set a different expiration date
          /// than the one specified in the order.
          event OrderPlacement(
              address indexed sender,
              GPv2Order.Data order,
              OnchainSignature signature,
              bytes data
          );
          /// @dev Event emitted to notify that an order was invalidated.
          ///
          /// @param orderUid CoW Swap's unique order identifier of the order that has been invalidated.
          event OrderInvalidation(bytes orderUid);
      }
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.8;
      /// @title CoW Swap EIP-712 Encoding Library
      /// @author CoW Swap Developers
      /// @dev The code in this contract was largely taken from:
      /// <https://raw.githubusercontent.com/cowprotocol/contracts/v1.0.0/src/contracts/mixins/GPv2Signing.sol>
      library CoWSwapEip712 {
          /// @dev The EIP-712 domain type hash used for computing the domain separator.
          bytes32 private constant DOMAIN_TYPE_HASH =
              keccak256(
                  "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
              );
          /// @dev The EIP-712 domain name used for computing the domain separator.
          bytes32 private constant DOMAIN_NAME = keccak256("Gnosis Protocol");
          /// @dev The EIP-712 domain version used for computing the domain separator.
          bytes32 private constant DOMAIN_VERSION = keccak256("v2");
          /// @dev Computes the EIP-712 domain separator of the CoW Swap settlement contract on the current network.
          ///
          /// @param cowSwapAddress The address of the CoW Swap settlement contract for which to compute the domain separator.
          /// Note that there are no checks to verify that the input address points to an actual contract.
          /// @return The domain separator of the settlement contract for the input address as computed by the settlement
          /// contract internally.
          function domainSeparator(address cowSwapAddress)
              internal
              view
              returns (bytes32)
          {
              // NOTE: Currently, the only way to get the chain ID in solidity is using assembly.
              uint256 chainId;
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  chainId := chainid()
              }
              return
                  keccak256(
                      abi.encode(
                          DOMAIN_TYPE_HASH,
                          DOMAIN_NAME,
                          DOMAIN_VERSION,
                          chainId,
                          cowSwapAddress
                      )
                  );
          }
      }
      

      File 2 of 3: WETH9
      // Copyright (C) 2015, 2016, 2017 Dapphub
      
      // This program is free software: you can redistribute it and/or modify
      // it under the terms of the GNU General Public License as published by
      // the Free Software Foundation, either version 3 of the License, or
      // (at your option) any later version.
      
      // This program is distributed in the hope that it will be useful,
      // but WITHOUT ANY WARRANTY; without even the implied warranty of
      // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      // GNU General Public License for more details.
      
      // You should have received a copy of the GNU General Public License
      // along with this program.  If not, see <http://www.gnu.org/licenses/>.
      
      pragma solidity ^0.4.18;
      
      contract WETH9 {
          string public name     = "Wrapped Ether";
          string public symbol   = "WETH";
          uint8  public decimals = 18;
      
          event  Approval(address indexed src, address indexed guy, uint wad);
          event  Transfer(address indexed src, address indexed dst, uint wad);
          event  Deposit(address indexed dst, uint wad);
          event  Withdrawal(address indexed src, uint wad);
      
          mapping (address => uint)                       public  balanceOf;
          mapping (address => mapping (address => uint))  public  allowance;
      
          function() public payable {
              deposit();
          }
          function deposit() public payable {
              balanceOf[msg.sender] += msg.value;
              Deposit(msg.sender, msg.value);
          }
          function withdraw(uint wad) public {
              require(balanceOf[msg.sender] >= wad);
              balanceOf[msg.sender] -= wad;
              msg.sender.transfer(wad);
              Withdrawal(msg.sender, wad);
          }
      
          function totalSupply() public view returns (uint) {
              return this.balance;
          }
      
          function approve(address guy, uint wad) public returns (bool) {
              allowance[msg.sender][guy] = wad;
              Approval(msg.sender, guy, wad);
              return true;
          }
      
          function transfer(address dst, uint wad) public returns (bool) {
              return transferFrom(msg.sender, dst, wad);
          }
      
          function transferFrom(address src, address dst, uint wad)
              public
              returns (bool)
          {
              require(balanceOf[src] >= wad);
      
              if (src != msg.sender && allowance[src][msg.sender] != uint(-1)) {
                  require(allowance[src][msg.sender] >= wad);
                  allowance[src][msg.sender] -= wad;
              }
      
              balanceOf[src] -= wad;
              balanceOf[dst] += wad;
      
              Transfer(src, dst, wad);
      
              return true;
          }
      }
      
      
      /*
                          GNU GENERAL PUBLIC LICENSE
                             Version 3, 29 June 2007
      
       Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
       Everyone is permitted to copy and distribute verbatim copies
       of this license document, but changing it is not allowed.
      
                                  Preamble
      
        The GNU General Public License is a free, copyleft license for
      software and other kinds of works.
      
        The licenses for most software and other practical works are designed
      to take away your freedom to share and change the works.  By contrast,
      the GNU General Public License is intended to guarantee your freedom to
      share and change all versions of a program--to make sure it remains free
      software for all its users.  We, the Free Software Foundation, use the
      GNU General Public License for most of our software; it applies also to
      any other work released this way by its authors.  You can apply it to
      your programs, too.
      
        When we speak of free software, we are referring to freedom, not
      price.  Our General Public Licenses are designed to make sure that you
      have the freedom to distribute copies of free software (and charge for
      them if you wish), that you receive source code or can get it if you
      want it, that you can change the software or use pieces of it in new
      free programs, and that you know you can do these things.
      
        To protect your rights, we need to prevent others from denying you
      these rights or asking you to surrender the rights.  Therefore, you have
      certain responsibilities if you distribute copies of the software, or if
      you modify it: responsibilities to respect the freedom of others.
      
        For example, if you distribute copies of such a program, whether
      gratis or for a fee, you must pass on to the recipients the same
      freedoms that you received.  You must make sure that they, too, receive
      or can get the source code.  And you must show them these terms so they
      know their rights.
      
        Developers that use the GNU GPL protect your rights with two steps:
      (1) assert copyright on the software, and (2) offer you this License
      giving you legal permission to copy, distribute and/or modify it.
      
        For the developers' and authors' protection, the GPL clearly explains
      that there is no warranty for this free software.  For both users' and
      authors' sake, the GPL requires that modified versions be marked as
      changed, so that their problems will not be attributed erroneously to
      authors of previous versions.
      
        Some devices are designed to deny users access to install or run
      modified versions of the software inside them, although the manufacturer
      can do so.  This is fundamentally incompatible with the aim of
      protecting users' freedom to change the software.  The systematic
      pattern of such abuse occurs in the area of products for individuals to
      use, which is precisely where it is most unacceptable.  Therefore, we
      have designed this version of the GPL to prohibit the practice for those
      products.  If such problems arise substantially in other domains, we
      stand ready to extend this provision to those domains in future versions
      of the GPL, as needed to protect the freedom of users.
      
        Finally, every program is threatened constantly by software patents.
      States should not allow patents to restrict development and use of
      software on general-purpose computers, but in those that do, we wish to
      avoid the special danger that patents applied to a free program could
      make it effectively proprietary.  To prevent this, the GPL assures that
      patents cannot be used to render the program non-free.
      
        The precise terms and conditions for copying, distribution and
      modification follow.
      
                             TERMS AND CONDITIONS
      
        0. Definitions.
      
        "This License" refers to version 3 of the GNU General Public License.
      
        "Copyright" also means copyright-like laws that apply to other kinds of
      works, such as semiconductor masks.
      
        "The Program" refers to any copyrightable work licensed under this
      License.  Each licensee is addressed as "you".  "Licensees" and
      "recipients" may be individuals or organizations.
      
        To "modify" a work means to copy from or adapt all or part of the work
      in a fashion requiring copyright permission, other than the making of an
      exact copy.  The resulting work is called a "modified version" of the
      earlier work or a work "based on" the earlier work.
      
        A "covered work" means either the unmodified Program or a work based
      on the Program.
      
        To "propagate" a work means to do anything with it that, without
      permission, would make you directly or secondarily liable for
      infringement under applicable copyright law, except executing it on a
      computer or modifying a private copy.  Propagation includes copying,
      distribution (with or without modification), making available to the
      public, and in some countries other activities as well.
      
        To "convey" a work means any kind of propagation that enables other
      parties to make or receive copies.  Mere interaction with a user through
      a computer network, with no transfer of a copy, is not conveying.
      
        An interactive user interface displays "Appropriate Legal Notices"
      to the extent that it includes a convenient and prominently visible
      feature that (1) displays an appropriate copyright notice, and (2)
      tells the user that there is no warranty for the work (except to the
      extent that warranties are provided), that licensees may convey the
      work under this License, and how to view a copy of this License.  If
      the interface presents a list of user commands or options, such as a
      menu, a prominent item in the list meets this criterion.
      
        1. Source Code.
      
        The "source code" for a work means the preferred form of the work
      for making modifications to it.  "Object code" means any non-source
      form of a work.
      
        A "Standard Interface" means an interface that either is an official
      standard defined by a recognized standards body, or, in the case of
      interfaces specified for a particular programming language, one that
      is widely used among developers working in that language.
      
        The "System Libraries" of an executable work include anything, other
      than the work as a whole, that (a) is included in the normal form of
      packaging a Major Component, but which is not part of that Major
      Component, and (b) serves only to enable use of the work with that
      Major Component, or to implement a Standard Interface for which an
      implementation is available to the public in source code form.  A
      "Major Component", in this context, means a major essential component
      (kernel, window system, and so on) of the specific operating system
      (if any) on which the executable work runs, or a compiler used to
      produce the work, or an object code interpreter used to run it.
      
        The "Corresponding Source" for a work in object code form means all
      the source code needed to generate, install, and (for an executable
      work) run the object code and to modify the work, including scripts to
      control those activities.  However, it does not include the work's
      System Libraries, or general-purpose tools or generally available free
      programs which are used unmodified in performing those activities but
      which are not part of the work.  For example, Corresponding Source
      includes interface definition files associated with source files for
      the work, and the source code for shared libraries and dynamically
      linked subprograms that the work is specifically designed to require,
      such as by intimate data communication or control flow between those
      subprograms and other parts of the work.
      
        The Corresponding Source need not include anything that users
      can regenerate automatically from other parts of the Corresponding
      Source.
      
        The Corresponding Source for a work in source code form is that
      same work.
      
        2. Basic Permissions.
      
        All rights granted under this License are granted for the term of
      copyright on the Program, and are irrevocable provided the stated
      conditions are met.  This License explicitly affirms your unlimited
      permission to run the unmodified Program.  The output from running a
      covered work is covered by this License only if the output, given its
      content, constitutes a covered work.  This License acknowledges your
      rights of fair use or other equivalent, as provided by copyright law.
      
        You may make, run and propagate covered works that you do not
      convey, without conditions so long as your license otherwise remains
      in force.  You may convey covered works to others for the sole purpose
      of having them make modifications exclusively for you, or provide you
      with facilities for running those works, provided that you comply with
      the terms of this License in conveying all material for which you do
      not control copyright.  Those thus making or running the covered works
      for you must do so exclusively on your behalf, under your direction
      and control, on terms that prohibit them from making any copies of
      your copyrighted material outside their relationship with you.
      
        Conveying under any other circumstances is permitted solely under
      the conditions stated below.  Sublicensing is not allowed; section 10
      makes it unnecessary.
      
        3. Protecting Users' Legal Rights From Anti-Circumvention Law.
      
        No covered work shall be deemed part of an effective technological
      measure under any applicable law fulfilling obligations under article
      11 of the WIPO copyright treaty adopted on 20 December 1996, or
      similar laws prohibiting or restricting circumvention of such
      measures.
      
        When you convey a covered work, you waive any legal power to forbid
      circumvention of technological measures to the extent such circumvention
      is effected by exercising rights under this License with respect to
      the covered work, and you disclaim any intention to limit operation or
      modification of the work as a means of enforcing, against the work's
      users, your or third parties' legal rights to forbid circumvention of
      technological measures.
      
        4. Conveying Verbatim Copies.
      
        You may convey verbatim copies of the Program's source code as you
      receive it, in any medium, provided that you conspicuously and
      appropriately publish on each copy an appropriate copyright notice;
      keep intact all notices stating that this License and any
      non-permissive terms added in accord with section 7 apply to the code;
      keep intact all notices of the absence of any warranty; and give all
      recipients a copy of this License along with the Program.
      
        You may charge any price or no price for each copy that you convey,
      and you may offer support or warranty protection for a fee.
      
        5. Conveying Modified Source Versions.
      
        You may convey a work based on the Program, or the modifications to
      produce it from the Program, in the form of source code under the
      terms of section 4, provided that you also meet all of these conditions:
      
          a) The work must carry prominent notices stating that you modified
          it, and giving a relevant date.
      
          b) The work must carry prominent notices stating that it is
          released under this License and any conditions added under section
          7.  This requirement modifies the requirement in section 4 to
          "keep intact all notices".
      
          c) You must license the entire work, as a whole, under this
          License to anyone who comes into possession of a copy.  This
          License will therefore apply, along with any applicable section 7
          additional terms, to the whole of the work, and all its parts,
          regardless of how they are packaged.  This License gives no
          permission to license the work in any other way, but it does not
          invalidate such permission if you have separately received it.
      
          d) If the work has interactive user interfaces, each must display
          Appropriate Legal Notices; however, if the Program has interactive
          interfaces that do not display Appropriate Legal Notices, your
          work need not make them do so.
      
        A compilation of a covered work with other separate and independent
      works, which are not by their nature extensions of the covered work,
      and which are not combined with it such as to form a larger program,
      in or on a volume of a storage or distribution medium, is called an
      "aggregate" if the compilation and its resulting copyright are not
      used to limit the access or legal rights of the compilation's users
      beyond what the individual works permit.  Inclusion of a covered work
      in an aggregate does not cause this License to apply to the other
      parts of the aggregate.
      
        6. Conveying Non-Source Forms.
      
        You may convey a covered work in object code form under the terms
      of sections 4 and 5, provided that you also convey the
      machine-readable Corresponding Source under the terms of this License,
      in one of these ways:
      
          a) Convey the object code in, or embodied in, a physical product
          (including a physical distribution medium), accompanied by the
          Corresponding Source fixed on a durable physical medium
          customarily used for software interchange.
      
          b) Convey the object code in, or embodied in, a physical product
          (including a physical distribution medium), accompanied by a
          written offer, valid for at least three years and valid for as
          long as you offer spare parts or customer support for that product
          model, to give anyone who possesses the object code either (1) a
          copy of the Corresponding Source for all the software in the
          product that is covered by this License, on a durable physical
          medium customarily used for software interchange, for a price no
          more than your reasonable cost of physically performing this
          conveying of source, or (2) access to copy the
          Corresponding Source from a network server at no charge.
      
          c) Convey individual copies of the object code with a copy of the
          written offer to provide the Corresponding Source.  This
          alternative is allowed only occasionally and noncommercially, and
          only if you received the object code with such an offer, in accord
          with subsection 6b.
      
          d) Convey the object code by offering access from a designated
          place (gratis or for a charge), and offer equivalent access to the
          Corresponding Source in the same way through the same place at no
          further charge.  You need not require recipients to copy the
          Corresponding Source along with the object code.  If the place to
          copy the object code is a network server, the Corresponding Source
          may be on a different server (operated by you or a third party)
          that supports equivalent copying facilities, provided you maintain
          clear directions next to the object code saying where to find the
          Corresponding Source.  Regardless of what server hosts the
          Corresponding Source, you remain obligated to ensure that it is
          available for as long as needed to satisfy these requirements.
      
          e) Convey the object code using peer-to-peer transmission, provided
          you inform other peers where the object code and Corresponding
          Source of the work are being offered to the general public at no
          charge under subsection 6d.
      
        A separable portion of the object code, whose source code is excluded
      from the Corresponding Source as a System Library, need not be
      included in conveying the object code work.
      
        A "User Product" is either (1) a "consumer product", which means any
      tangible personal property which is normally used for personal, family,
      or household purposes, or (2) anything designed or sold for incorporation
      into a dwelling.  In determining whether a product is a consumer product,
      doubtful cases shall be resolved in favor of coverage.  For a particular
      product received by a particular user, "normally used" refers to a
      typical or common use of that class of product, regardless of the status
      of the particular user or of the way in which the particular user
      actually uses, or expects or is expected to use, the product.  A product
      is a consumer product regardless of whether the product has substantial
      commercial, industrial or non-consumer uses, unless such uses represent
      the only significant mode of use of the product.
      
        "Installation Information" for a User Product means any methods,
      procedures, authorization keys, or other information required to install
      and execute modified versions of a covered work in that User Product from
      a modified version of its Corresponding Source.  The information must
      suffice to ensure that the continued functioning of the modified object
      code is in no case prevented or interfered with solely because
      modification has been made.
      
        If you convey an object code work under this section in, or with, or
      specifically for use in, a User Product, and the conveying occurs as
      part of a transaction in which the right of possession and use of the
      User Product is transferred to the recipient in perpetuity or for a
      fixed term (regardless of how the transaction is characterized), the
      Corresponding Source conveyed under this section must be accompanied
      by the Installation Information.  But this requirement does not apply
      if neither you nor any third party retains the ability to install
      modified object code on the User Product (for example, the work has
      been installed in ROM).
      
        The requirement to provide Installation Information does not include a
      requirement to continue to provide support service, warranty, or updates
      for a work that has been modified or installed by the recipient, or for
      the User Product in which it has been modified or installed.  Access to a
      network may be denied when the modification itself materially and
      adversely affects the operation of the network or violates the rules and
      protocols for communication across the network.
      
        Corresponding Source conveyed, and Installation Information provided,
      in accord with this section must be in a format that is publicly
      documented (and with an implementation available to the public in
      source code form), and must require no special password or key for
      unpacking, reading or copying.
      
        7. Additional Terms.
      
        "Additional permissions" are terms that supplement the terms of this
      License by making exceptions from one or more of its conditions.
      Additional permissions that are applicable to the entire Program shall
      be treated as though they were included in this License, to the extent
      that they are valid under applicable law.  If additional permissions
      apply only to part of the Program, that part may be used separately
      under those permissions, but the entire Program remains governed by
      this License without regard to the additional permissions.
      
        When you convey a copy of a covered work, you may at your option
      remove any additional permissions from that copy, or from any part of
      it.  (Additional permissions may be written to require their own
      removal in certain cases when you modify the work.)  You may place
      additional permissions on material, added by you to a covered work,
      for which you have or can give appropriate copyright permission.
      
        Notwithstanding any other provision of this License, for material you
      add to a covered work, you may (if authorized by the copyright holders of
      that material) supplement the terms of this License with terms:
      
          a) Disclaiming warranty or limiting liability differently from the
          terms of sections 15 and 16 of this License; or
      
          b) Requiring preservation of specified reasonable legal notices or
          author attributions in that material or in the Appropriate Legal
          Notices displayed by works containing it; or
      
          c) Prohibiting misrepresentation of the origin of that material, or
          requiring that modified versions of such material be marked in
          reasonable ways as different from the original version; or
      
          d) Limiting the use for publicity purposes of names of licensors or
          authors of the material; or
      
          e) Declining to grant rights under trademark law for use of some
          trade names, trademarks, or service marks; or
      
          f) Requiring indemnification of licensors and authors of that
          material by anyone who conveys the material (or modified versions of
          it) with contractual assumptions of liability to the recipient, for
          any liability that these contractual assumptions directly impose on
          those licensors and authors.
      
        All other non-permissive additional terms are considered "further
      restrictions" within the meaning of section 10.  If the Program as you
      received it, or any part of it, contains a notice stating that it is
      governed by this License along with a term that is a further
      restriction, you may remove that term.  If a license document contains
      a further restriction but permits relicensing or conveying under this
      License, you may add to a covered work material governed by the terms
      of that license document, provided that the further restriction does
      not survive such relicensing or conveying.
      
        If you add terms to a covered work in accord with this section, you
      must place, in the relevant source files, a statement of the
      additional terms that apply to those files, or a notice indicating
      where to find the applicable terms.
      
        Additional terms, permissive or non-permissive, may be stated in the
      form of a separately written license, or stated as exceptions;
      the above requirements apply either way.
      
        8. Termination.
      
        You may not propagate or modify a covered work except as expressly
      provided under this License.  Any attempt otherwise to propagate or
      modify it is void, and will automatically terminate your rights under
      this License (including any patent licenses granted under the third
      paragraph of section 11).
      
        However, if you cease all violation of this License, then your
      license from a particular copyright holder is reinstated (a)
      provisionally, unless and until the copyright holder explicitly and
      finally terminates your license, and (b) permanently, if the copyright
      holder fails to notify you of the violation by some reasonable means
      prior to 60 days after the cessation.
      
        Moreover, your license from a particular copyright holder is
      reinstated permanently if the copyright holder notifies you of the
      violation by some reasonable means, this is the first time you have
      received notice of violation of this License (for any work) from that
      copyright holder, and you cure the violation prior to 30 days after
      your receipt of the notice.
      
        Termination of your rights under this section does not terminate the
      licenses of parties who have received copies or rights from you under
      this License.  If your rights have been terminated and not permanently
      reinstated, you do not qualify to receive new licenses for the same
      material under section 10.
      
        9. Acceptance Not Required for Having Copies.
      
        You are not required to accept this License in order to receive or
      run a copy of the Program.  Ancillary propagation of a covered work
      occurring solely as a consequence of using peer-to-peer transmission
      to receive a copy likewise does not require acceptance.  However,
      nothing other than this License grants you permission to propagate or
      modify any covered work.  These actions infringe copyright if you do
      not accept this License.  Therefore, by modifying or propagating a
      covered work, you indicate your acceptance of this License to do so.
      
        10. Automatic Licensing of Downstream Recipients.
      
        Each time you convey a covered work, the recipient automatically
      receives a license from the original licensors, to run, modify and
      propagate that work, subject to this License.  You are not responsible
      for enforcing compliance by third parties with this License.
      
        An "entity transaction" is a transaction transferring control of an
      organization, or substantially all assets of one, or subdividing an
      organization, or merging organizations.  If propagation of a covered
      work results from an entity transaction, each party to that
      transaction who receives a copy of the work also receives whatever
      licenses to the work the party's predecessor in interest had or could
      give under the previous paragraph, plus a right to possession of the
      Corresponding Source of the work from the predecessor in interest, if
      the predecessor has it or can get it with reasonable efforts.
      
        You may not impose any further restrictions on the exercise of the
      rights granted or affirmed under this License.  For example, you may
      not impose a license fee, royalty, or other charge for exercise of
      rights granted under this License, and you may not initiate litigation
      (including a cross-claim or counterclaim in a lawsuit) alleging that
      any patent claim is infringed by making, using, selling, offering for
      sale, or importing the Program or any portion of it.
      
        11. Patents.
      
        A "contributor" is a copyright holder who authorizes use under this
      License of the Program or a work on which the Program is based.  The
      work thus licensed is called the contributor's "contributor version".
      
        A contributor's "essential patent claims" are all patent claims
      owned or controlled by the contributor, whether already acquired or
      hereafter acquired, that would be infringed by some manner, permitted
      by this License, of making, using, or selling its contributor version,
      but do not include claims that would be infringed only as a
      consequence of further modification of the contributor version.  For
      purposes of this definition, "control" includes the right to grant
      patent sublicenses in a manner consistent with the requirements of
      this License.
      
        Each contributor grants you a non-exclusive, worldwide, royalty-free
      patent license under the contributor's essential patent claims, to
      make, use, sell, offer for sale, import and otherwise run, modify and
      propagate the contents of its contributor version.
      
        In the following three paragraphs, a "patent license" is any express
      agreement or commitment, however denominated, not to enforce a patent
      (such as an express permission to practice a patent or covenant not to
      sue for patent infringement).  To "grant" such a patent license to a
      party means to make such an agreement or commitment not to enforce a
      patent against the party.
      
        If you convey a covered work, knowingly relying on a patent license,
      and the Corresponding Source of the work is not available for anyone
      to copy, free of charge and under the terms of this License, through a
      publicly available network server or other readily accessible means,
      then you must either (1) cause the Corresponding Source to be so
      available, or (2) arrange to deprive yourself of the benefit of the
      patent license for this particular work, or (3) arrange, in a manner
      consistent with the requirements of this License, to extend the patent
      license to downstream recipients.  "Knowingly relying" means you have
      actual knowledge that, but for the patent license, your conveying the
      covered work in a country, or your recipient's use of the covered work
      in a country, would infringe one or more identifiable patents in that
      country that you have reason to believe are valid.
      
        If, pursuant to or in connection with a single transaction or
      arrangement, you convey, or propagate by procuring conveyance of, a
      covered work, and grant a patent license to some of the parties
      receiving the covered work authorizing them to use, propagate, modify
      or convey a specific copy of the covered work, then the patent license
      you grant is automatically extended to all recipients of the covered
      work and works based on it.
      
        A patent license is "discriminatory" if it does not include within
      the scope of its coverage, prohibits the exercise of, or is
      conditioned on the non-exercise of one or more of the rights that are
      specifically granted under this License.  You may not convey a covered
      work if you are a party to an arrangement with a third party that is
      in the business of distributing software, under which you make payment
      to the third party based on the extent of your activity of conveying
      the work, and under which the third party grants, to any of the
      parties who would receive the covered work from you, a discriminatory
      patent license (a) in connection with copies of the covered work
      conveyed by you (or copies made from those copies), or (b) primarily
      for and in connection with specific products or compilations that
      contain the covered work, unless you entered into that arrangement,
      or that patent license was granted, prior to 28 March 2007.
      
        Nothing in this License shall be construed as excluding or limiting
      any implied license or other defenses to infringement that may
      otherwise be available to you under applicable patent law.
      
        12. No Surrender of Others' Freedom.
      
        If conditions are imposed on you (whether by court order, agreement or
      otherwise) that contradict the conditions of this License, they do not
      excuse you from the conditions of this License.  If you cannot convey a
      covered work so as to satisfy simultaneously your obligations under this
      License and any other pertinent obligations, then as a consequence you may
      not convey it at all.  For example, if you agree to terms that obligate you
      to collect a royalty for further conveying from those to whom you convey
      the Program, the only way you could satisfy both those terms and this
      License would be to refrain entirely from conveying the Program.
      
        13. Use with the GNU Affero General Public License.
      
        Notwithstanding any other provision of this License, you have
      permission to link or combine any covered work with a work licensed
      under version 3 of the GNU Affero General Public License into a single
      combined work, and to convey the resulting work.  The terms of this
      License will continue to apply to the part which is the covered work,
      but the special requirements of the GNU Affero General Public License,
      section 13, concerning interaction through a network will apply to the
      combination as such.
      
        14. Revised Versions of this License.
      
        The Free Software Foundation may publish revised and/or new versions of
      the GNU General Public License from time to time.  Such new versions will
      be similar in spirit to the present version, but may differ in detail to
      address new problems or concerns.
      
        Each version is given a distinguishing version number.  If the
      Program specifies that a certain numbered version of the GNU General
      Public License "or any later version" applies to it, you have the
      option of following the terms and conditions either of that numbered
      version or of any later version published by the Free Software
      Foundation.  If the Program does not specify a version number of the
      GNU General Public License, you may choose any version ever published
      by the Free Software Foundation.
      
        If the Program specifies that a proxy can decide which future
      versions of the GNU General Public License can be used, that proxy's
      public statement of acceptance of a version permanently authorizes you
      to choose that version for the Program.
      
        Later license versions may give you additional or different
      permissions.  However, no additional obligations are imposed on any
      author or copyright holder as a result of your choosing to follow a
      later version.
      
        15. Disclaimer of Warranty.
      
        THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
      APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
      HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
      OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
      THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
      PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
      IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
      ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
      
        16. Limitation of Liability.
      
        IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
      WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
      THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
      GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
      USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
      DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
      PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
      EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
      SUCH DAMAGES.
      
        17. Interpretation of Sections 15 and 16.
      
        If the disclaimer of warranty and limitation of liability provided
      above cannot be given local legal effect according to their terms,
      reviewing courts shall apply local law that most closely approximates
      an absolute waiver of all civil liability in connection with the
      Program, unless a warranty or assumption of liability accompanies a
      copy of the Program in return for a fee.
      
                           END OF TERMS AND CONDITIONS
      
                  How to Apply These Terms to Your New Programs
      
        If you develop a new program, and you want it to be of the greatest
      possible use to the public, the best way to achieve this is to make it
      free software which everyone can redistribute and change under these terms.
      
        To do so, attach the following notices to the program.  It is safest
      to attach them to the start of each source file to most effectively
      state the exclusion of warranty; and each file should have at least
      the "copyright" line and a pointer to where the full notice is found.
      
          <one line to give the program's name and a brief idea of what it does.>
          Copyright (C) <year>  <name of author>
      
          This program is free software: you can redistribute it and/or modify
          it under the terms of the GNU General Public License as published by
          the Free Software Foundation, either version 3 of the License, or
          (at your option) any later version.
      
          This program is distributed in the hope that it will be useful,
          but WITHOUT ANY WARRANTY; without even the implied warranty of
          MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
          GNU General Public License for more details.
      
          You should have received a copy of the GNU General Public License
          along with this program.  If not, see <http://www.gnu.org/licenses/>.
      
      Also add information on how to contact you by electronic and paper mail.
      
        If the program does terminal interaction, make it output a short
      notice like this when it starts in an interactive mode:
      
          <program>  Copyright (C) <year>  <name of author>
          This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
          This is free software, and you are welcome to redistribute it
          under certain conditions; type `show c' for details.
      
      The hypothetical commands `show w' and `show c' should show the appropriate
      parts of the General Public License.  Of course, your program's commands
      might be different; for a GUI interface, you would use an "about box".
      
        You should also get your employer (if you work as a programmer) or school,
      if any, to sign a "copyright disclaimer" for the program, if necessary.
      For more information on this, and how to apply and follow the GNU GPL, see
      <http://www.gnu.org/licenses/>.
      
        The GNU General Public License does not permit incorporating your program
      into proprietary programs.  If your program is a subroutine library, you
      may consider it more useful to permit linking proprietary applications with
      the library.  If this is what you want to do, use the GNU Lesser General
      Public License instead of this License.  But first, please read
      <http://www.gnu.org/philosophy/why-not-lgpl.html>.
      
      */

      File 3 of 3: GPv2Settlement
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.7.6;
      pragma abicoder v2;
      import "./GPv2VaultRelayer.sol";
      import "./interfaces/GPv2Authentication.sol";
      import "./interfaces/IERC20.sol";
      import "./interfaces/IVault.sol";
      import "./libraries/GPv2Interaction.sol";
      import "./libraries/GPv2Order.sol";
      import "./libraries/GPv2Trade.sol";
      import "./libraries/GPv2Transfer.sol";
      import "./libraries/SafeCast.sol";
      import "./libraries/SafeMath.sol";
      import "./mixins/GPv2Signing.sol";
      import "./mixins/ReentrancyGuard.sol";
      import "./mixins/StorageAccessible.sol";
      /// @title Gnosis Protocol v2 Settlement Contract
      /// @author Gnosis Developers
      contract GPv2Settlement is GPv2Signing, ReentrancyGuard, StorageAccessible {
          using GPv2Order for bytes;
          using GPv2Transfer for IVault;
          using SafeCast for int256;
          using SafeCast for uint256;
          using SafeMath for uint256;
          /// @dev The authenticator is used to determine who can call the settle function.
          /// That is, only authorised solvers have the ability to invoke settlements.
          /// Any valid authenticator implements an isSolver method called by the onlySolver
          /// modifier below.
          GPv2Authentication public immutable authenticator;
          /// @dev The Balancer Vault the protocol uses for managing user funds.
          IVault public immutable vault;
          /// @dev The Balancer Vault relayer which can interact on behalf of users.
          /// This contract is created during deployment
          GPv2VaultRelayer public immutable vaultRelayer;
          /// @dev Map each user order by UID to the amount that has been filled so
          /// far. If this amount is larger than or equal to the amount traded in the
          /// order (amount sold for sell orders, amount bought for buy orders) then
          /// the order cannot be traded anymore. If the order is fill or kill, then
          /// this value is only used to determine whether the order has already been
          /// executed.
          mapping(bytes => uint256) public filledAmount;
          /// @dev Event emitted for each executed trade.
          event Trade(
              address indexed owner,
              IERC20 sellToken,
              IERC20 buyToken,
              uint256 sellAmount,
              uint256 buyAmount,
              uint256 feeAmount,
              bytes orderUid
          );
          /// @dev Event emitted for each executed interaction.
          ///
          /// For gas effeciency, only the interaction calldata selector (first 4
          /// bytes) is included in the event. For interactions without calldata or
          /// whose calldata is shorter than 4 bytes, the selector will be `0`.
          event Interaction(address indexed target, uint256 value, bytes4 selector);
          /// @dev Event emitted when a settlement complets
          event Settlement(address indexed solver);
          /// @dev Event emitted when an order is invalidated.
          event OrderInvalidated(address indexed owner, bytes orderUid);
          constructor(GPv2Authentication authenticator_, IVault vault_) {
              authenticator = authenticator_;
              vault = vault_;
              vaultRelayer = new GPv2VaultRelayer(vault_);
          }
          // solhint-disable-next-line no-empty-blocks
          receive() external payable {
              // NOTE: Include an empty receive function so that the settlement
              // contract can receive Ether from contract interactions.
          }
          /// @dev This modifier is called by settle function to block any non-listed
          /// senders from settling batches.
          modifier onlySolver {
              require(authenticator.isSolver(msg.sender), "GPv2: not a solver");
              _;
          }
          /// @dev Modifier to ensure that an external function is only callable as a
          /// settlement interaction.
          modifier onlyInteraction {
              require(address(this) == msg.sender, "GPv2: not an interaction");
              _;
          }
          /// @dev Settle the specified orders at a clearing price. Note that it is
          /// the responsibility of the caller to ensure that all GPv2 invariants are
          /// upheld for the input settlement, otherwise this call will revert.
          /// Namely:
          /// - All orders are valid and signed
          /// - Accounts have sufficient balance and approval.
          /// - Settlement contract has sufficient balance to execute trades. Note
          ///   this implies that the accumulated fees held in the contract can also
          ///   be used for settlement. This is OK since:
          ///   - Solvers need to be authorized
          ///   - Misbehaving solvers will be slashed for abusing accumulated fees for
          ///     settlement
          ///   - Critically, user orders are entirely protected
          ///
          /// @param tokens An array of ERC20 tokens to be traded in the settlement.
          /// Trades encode tokens as indices into this array.
          /// @param clearingPrices An array of clearing prices where the `i`-th price
          /// is for the `i`-th token in the [`tokens`] array.
          /// @param trades Trades for signed orders.
          /// @param interactions Smart contract interactions split into three
          /// separate lists to be run before the settlement, during the settlement
          /// and after the settlement respectively.
          function settle(
              IERC20[] calldata tokens,
              uint256[] calldata clearingPrices,
              GPv2Trade.Data[] calldata trades,
              GPv2Interaction.Data[][3] calldata interactions
          ) external nonReentrant onlySolver {
              executeInteractions(interactions[0]);
              (
                  GPv2Transfer.Data[] memory inTransfers,
                  GPv2Transfer.Data[] memory outTransfers
              ) = computeTradeExecutions(tokens, clearingPrices, trades);
              vaultRelayer.transferFromAccounts(inTransfers);
              executeInteractions(interactions[1]);
              vault.transferToAccounts(outTransfers);
              executeInteractions(interactions[2]);
              emit Settlement(msg.sender);
          }
          /// @dev Settle an order directly against Balancer V2 pools.
          ///
          /// @param swaps The Balancer V2 swap steps to use for trading.
          /// @param tokens An array of ERC20 tokens to be traded in the settlement.
          /// Swaps and the trade encode tokens as indices into this array.
          /// @param trade The trade to match directly against Balancer liquidity. The
          /// order will always be fully executed, so the trade's `executedAmount`
          /// field is used to represent a swap limit amount.
          function swap(
              IVault.BatchSwapStep[] calldata swaps,
              IERC20[] calldata tokens,
              GPv2Trade.Data calldata trade
          ) external nonReentrant onlySolver {
              RecoveredOrder memory recoveredOrder = allocateRecoveredOrder();
              GPv2Order.Data memory order = recoveredOrder.data;
              recoverOrderFromTrade(recoveredOrder, tokens, trade);
              IVault.SwapKind kind =
                  order.kind == GPv2Order.KIND_SELL
                      ? IVault.SwapKind.GIVEN_IN
                      : IVault.SwapKind.GIVEN_OUT;
              IVault.FundManagement memory funds;
              funds.sender = recoveredOrder.owner;
              funds.fromInternalBalance =
                  order.sellTokenBalance == GPv2Order.BALANCE_INTERNAL;
              funds.recipient = payable(recoveredOrder.receiver);
              funds.toInternalBalance =
                  order.buyTokenBalance == GPv2Order.BALANCE_INTERNAL;
              int256[] memory limits = new int256[](tokens.length);
              uint256 limitAmount = trade.executedAmount;
              // NOTE: Array allocation initializes elements to 0, so we only need to
              // set the limits we care about. This ensures that the swap will respect
              // the order's limit price.
              if (order.kind == GPv2Order.KIND_SELL) {
                  require(limitAmount >= order.buyAmount, "GPv2: limit too low");
                  limits[trade.sellTokenIndex] = order.sellAmount.toInt256();
                  limits[trade.buyTokenIndex] = -limitAmount.toInt256();
              } else {
                  require(limitAmount <= order.sellAmount, "GPv2: limit too high");
                  limits[trade.sellTokenIndex] = limitAmount.toInt256();
                  limits[trade.buyTokenIndex] = -order.buyAmount.toInt256();
              }
              GPv2Transfer.Data memory feeTransfer;
              feeTransfer.account = recoveredOrder.owner;
              feeTransfer.token = order.sellToken;
              feeTransfer.amount = order.feeAmount;
              feeTransfer.balance = order.sellTokenBalance;
              int256[] memory tokenDeltas =
                  vaultRelayer.batchSwapWithFee(
                      kind,
                      swaps,
                      tokens,
                      funds,
                      limits,
                      // NOTE: Specify a deadline to ensure that an expire order
                      // cannot be used to trade.
                      order.validTo,
                      feeTransfer
                  );
              bytes memory orderUid = recoveredOrder.uid;
              uint256 executedSellAmount =
                  tokenDeltas[trade.sellTokenIndex].toUint256();
              uint256 executedBuyAmount =
                  (-tokenDeltas[trade.buyTokenIndex]).toUint256();
              // NOTE: Check that the orders were completely filled and update their
              // filled amounts to avoid replaying them. The limit price and order
              // validity have already been verified when executing the swap through
              // the `limit` and `deadline` parameters.
              require(filledAmount[orderUid] == 0, "GPv2: order filled");
              if (order.kind == GPv2Order.KIND_SELL) {
                  require(
                      executedSellAmount == order.sellAmount,
                      "GPv2: sell amount not respected"
                  );
                  filledAmount[orderUid] = order.sellAmount;
              } else {
                  require(
                      executedBuyAmount == order.buyAmount,
                      "GPv2: buy amount not respected"
                  );
                  filledAmount[orderUid] = order.buyAmount;
              }
              emit Trade(
                  recoveredOrder.owner,
                  order.sellToken,
                  order.buyToken,
                  executedSellAmount,
                  executedBuyAmount,
                  order.feeAmount,
                  orderUid
              );
              emit Settlement(msg.sender);
          }
          /// @dev Invalidate onchain an order that has been signed offline.
          ///
          /// @param orderUid The unique identifier of the order that is to be made
          /// invalid after calling this function. The user that created the order
          /// must be the the sender of this message. See [`extractOrderUidParams`]
          /// for details on orderUid.
          function invalidateOrder(bytes calldata orderUid) external {
              (, address owner, ) = orderUid.extractOrderUidParams();
              require(owner == msg.sender, "GPv2: caller does not own order");
              filledAmount[orderUid] = uint256(-1);
              emit OrderInvalidated(owner, orderUid);
          }
          /// @dev Free storage from the filled amounts of **expired** orders to claim
          /// a gas refund. This method can only be called as an interaction.
          ///
          /// @param orderUids The unique identifiers of the expired order to free
          /// storage for.
          function freeFilledAmountStorage(bytes[] calldata orderUids)
              external
              onlyInteraction
          {
              freeOrderStorage(filledAmount, orderUids);
          }
          /// @dev Free storage from the pre signatures of **expired** orders to claim
          /// a gas refund. This method can only be called as an interaction.
          ///
          /// @param orderUids The unique identifiers of the expired order to free
          /// storage for.
          function freePreSignatureStorage(bytes[] calldata orderUids)
              external
              onlyInteraction
          {
              freeOrderStorage(preSignature, orderUids);
          }
          /// @dev Process all trades one at a time returning the computed net in and
          /// out transfers for the trades.
          ///
          /// This method reverts if processing of any single trade fails. See
          /// [`computeTradeExecution`] for more details.
          ///
          /// @param tokens An array of ERC20 tokens to be traded in the settlement.
          /// @param clearingPrices An array of token clearing prices.
          /// @param trades Trades for signed orders.
          /// @return inTransfers Array of in transfers of executed sell amounts.
          /// @return outTransfers Array of out transfers of executed buy amounts.
          function computeTradeExecutions(
              IERC20[] calldata tokens,
              uint256[] calldata clearingPrices,
              GPv2Trade.Data[] calldata trades
          )
              internal
              returns (
                  GPv2Transfer.Data[] memory inTransfers,
                  GPv2Transfer.Data[] memory outTransfers
              )
          {
              RecoveredOrder memory recoveredOrder = allocateRecoveredOrder();
              inTransfers = new GPv2Transfer.Data[](trades.length);
              outTransfers = new GPv2Transfer.Data[](trades.length);
              for (uint256 i = 0; i < trades.length; i++) {
                  GPv2Trade.Data calldata trade = trades[i];
                  recoverOrderFromTrade(recoveredOrder, tokens, trade);
                  computeTradeExecution(
                      recoveredOrder,
                      clearingPrices[trade.sellTokenIndex],
                      clearingPrices[trade.buyTokenIndex],
                      trade.executedAmount,
                      inTransfers[i],
                      outTransfers[i]
                  );
              }
          }
          /// @dev Compute the in and out transfer amounts for a single trade.
          /// This function reverts if:
          /// - The order has expired
          /// - The order's limit price is not respected
          /// - The order gets over-filled
          /// - The fee discount is larger than the executed fee
          ///
          /// @param recoveredOrder The recovered order to process.
          /// @param sellPrice The price of the order's sell token.
          /// @param buyPrice The price of the order's buy token.
          /// @param executedAmount The portion of the order to execute. This will be
          /// ignored for fill-or-kill orders.
          /// @param inTransfer Memory location for computed executed sell amount
          /// transfer.
          /// @param outTransfer Memory location for computed executed buy amount
          /// transfer.
          function computeTradeExecution(
              RecoveredOrder memory recoveredOrder,
              uint256 sellPrice,
              uint256 buyPrice,
              uint256 executedAmount,
              GPv2Transfer.Data memory inTransfer,
              GPv2Transfer.Data memory outTransfer
          ) internal {
              GPv2Order.Data memory order = recoveredOrder.data;
              bytes memory orderUid = recoveredOrder.uid;
              // solhint-disable-next-line not-rely-on-time
              require(order.validTo >= block.timestamp, "GPv2: order expired");
              // NOTE: The following computation is derived from the equation:
              // ```
              // amount_x * price_x = amount_y * price_y
              // ```
              // Intuitively, if a chocolate bar is 0,50€ and a beer is 4€, 1 beer
              // is roughly worth 8 chocolate bars (`1 * 4 = 8 * 0.5`). From this
              // equation, we can derive:
              // - The limit price for selling `x` and buying `y` is respected iff
              // ```
              // limit_x * price_x >= limit_y * price_y
              // ```
              // - The executed amount of token `y` given some amount of `x` and
              //   clearing prices is:
              // ```
              // amount_y = amount_x * price_x / price_y
              // ```
              require(
                  order.sellAmount.mul(sellPrice) >= order.buyAmount.mul(buyPrice),
                  "GPv2: limit price not respected"
              );
              uint256 executedSellAmount;
              uint256 executedBuyAmount;
              uint256 executedFeeAmount;
              uint256 currentFilledAmount;
              if (order.kind == GPv2Order.KIND_SELL) {
                  if (order.partiallyFillable) {
                      executedSellAmount = executedAmount;
                      executedFeeAmount = order.feeAmount.mul(executedSellAmount).div(
                          order.sellAmount
                      );
                  } else {
                      executedSellAmount = order.sellAmount;
                      executedFeeAmount = order.feeAmount;
                  }
                  executedBuyAmount = executedSellAmount.mul(sellPrice).ceilDiv(
                      buyPrice
                  );
                  currentFilledAmount = filledAmount[orderUid].add(
                      executedSellAmount
                  );
                  require(
                      currentFilledAmount <= order.sellAmount,
                      "GPv2: order filled"
                  );
              } else {
                  if (order.partiallyFillable) {
                      executedBuyAmount = executedAmount;
                      executedFeeAmount = order.feeAmount.mul(executedBuyAmount).div(
                          order.buyAmount
                      );
                  } else {
                      executedBuyAmount = order.buyAmount;
                      executedFeeAmount = order.feeAmount;
                  }
                  executedSellAmount = executedBuyAmount.mul(buyPrice).div(sellPrice);
                  currentFilledAmount = filledAmount[orderUid].add(executedBuyAmount);
                  require(
                      currentFilledAmount <= order.buyAmount,
                      "GPv2: order filled"
                  );
              }
              executedSellAmount = executedSellAmount.add(executedFeeAmount);
              filledAmount[orderUid] = currentFilledAmount;
              emit Trade(
                  recoveredOrder.owner,
                  order.sellToken,
                  order.buyToken,
                  executedSellAmount,
                  executedBuyAmount,
                  executedFeeAmount,
                  orderUid
              );
              inTransfer.account = recoveredOrder.owner;
              inTransfer.token = order.sellToken;
              inTransfer.amount = executedSellAmount;
              inTransfer.balance = order.sellTokenBalance;
              outTransfer.account = recoveredOrder.receiver;
              outTransfer.token = order.buyToken;
              outTransfer.amount = executedBuyAmount;
              outTransfer.balance = order.buyTokenBalance;
          }
          /// @dev Execute a list of arbitrary contract calls from this contract.
          /// @param interactions The list of interactions to execute.
          function executeInteractions(GPv2Interaction.Data[] calldata interactions)
              internal
          {
              for (uint256 i; i < interactions.length; i++) {
                  GPv2Interaction.Data calldata interaction = interactions[i];
                  // To prevent possible attack on user funds, we explicitly disable
                  // any interactions with the vault relayer contract.
                  require(
                      interaction.target != address(vaultRelayer),
                      "GPv2: forbidden interaction"
                  );
                  GPv2Interaction.execute(interaction);
                  emit Interaction(
                      interaction.target,
                      interaction.value,
                      GPv2Interaction.selector(interaction)
                  );
              }
          }
          /// @dev Claims refund for the specified storage and order UIDs.
          ///
          /// This method reverts if any of the orders are still valid.
          ///
          /// @param orderUids Order refund data for freeing storage.
          /// @param orderStorage Order storage mapped on a UID.
          function freeOrderStorage(
              mapping(bytes => uint256) storage orderStorage,
              bytes[] calldata orderUids
          ) internal {
              for (uint256 i = 0; i < orderUids.length; i++) {
                  bytes calldata orderUid = orderUids[i];
                  (, , uint32 validTo) = orderUid.extractOrderUidParams();
                  // solhint-disable-next-line not-rely-on-time
                  require(validTo < block.timestamp, "GPv2: order still valid");
                  orderStorage[orderUid] = 0;
              }
          }
      }
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.7.6;
      pragma abicoder v2;
      import "./interfaces/IERC20.sol";
      import "./interfaces/IVault.sol";
      import "./libraries/GPv2Transfer.sol";
      /// @title Gnosis Protocol v2 Vault Relayer Contract
      /// @author Gnosis Developers
      contract GPv2VaultRelayer {
          using GPv2Transfer for IVault;
          /// @dev The creator of the contract which has special permissions. This
          /// value is set at creation time and cannot change.
          address private immutable creator;
          /// @dev The vault this relayer is for.
          IVault private immutable vault;
          constructor(IVault vault_) {
              creator = msg.sender;
              vault = vault_;
          }
          /// @dev Modifier that ensures that a function can only be called by the
          /// creator of this contract.
          modifier onlyCreator {
              require(msg.sender == creator, "GPv2: not creator");
              _;
          }
          /// @dev Transfers all sell amounts for the executed trades from their
          /// owners to the caller.
          ///
          /// This function reverts if:
          /// - The caller is not the creator of the vault relayer
          /// - Any ERC20 transfer fails
          ///
          /// @param transfers The transfers to execute.
          function transferFromAccounts(GPv2Transfer.Data[] calldata transfers)
              external
              onlyCreator
          {
              vault.transferFromAccounts(transfers, msg.sender);
          }
          /// @dev Performs a Balancer batched swap on behalf of a user and sends a
          /// fee to the caller.
          ///
          /// This function reverts if:
          /// - The caller is not the creator of the vault relayer
          /// - The swap fails
          /// - The fee transfer fails
          ///
          /// @param kind The Balancer swap kind, this can either be `GIVEN_IN` for
          /// sell orders or `GIVEN_OUT` for buy orders.
          /// @param swaps The swaps to perform.
          /// @param tokens The tokens for the swaps. Swaps encode to and from tokens
          /// as indices into this array.
          /// @param funds The fund management settings, specifying the user the swap
          /// is being performed for as well as the recipient of the proceeds.
          /// @param limits Swap limits for encoding limit prices.
          /// @param deadline The deadline for the swap.
          /// @param feeTransfer The transfer data for the caller fee.
          /// @return tokenDeltas The executed swap amounts.
          function batchSwapWithFee(
              IVault.SwapKind kind,
              IVault.BatchSwapStep[] calldata swaps,
              IERC20[] memory tokens,
              IVault.FundManagement memory funds,
              int256[] memory limits,
              uint256 deadline,
              GPv2Transfer.Data calldata feeTransfer
          ) external onlyCreator returns (int256[] memory tokenDeltas) {
              tokenDeltas = vault.batchSwap(
                  kind,
                  swaps,
                  tokens,
                  funds,
                  limits,
                  deadline
              );
              vault.fastTransferFromAccount(feeTransfer, msg.sender);
          }
      }
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.7.6;
      /// @title Gnosis Protocol v2 Authentication Interface
      /// @author Gnosis Developers
      interface GPv2Authentication {
          /// @dev determines whether the provided address is an authenticated solver.
          /// @param prospectiveSolver the address of prospective solver.
          /// @return true when prospectiveSolver is an authenticated solver, otherwise false.
          function isSolver(address prospectiveSolver) external view returns (bool);
      }
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.7.6;
      library GPv2EIP1271 {
          /// @dev Value returned by a call to `isValidSignature` if the signature
          /// was verified successfully. The value is defined in EIP-1271 as:
          /// bytes4(keccak256("isValidSignature(bytes32,bytes)"))
          bytes4 internal constant MAGICVALUE = 0x1626ba7e;
      }
      /// @title EIP1271 Interface
      /// @dev Standardized interface for an implementation of smart contract
      /// signatures as described in EIP-1271. The code that follows is identical to
      /// the code in the standard with the exception of formatting and syntax
      /// changes to adapt the code to our Solidity version.
      interface EIP1271Verifier {
          /// @dev Should return whether the signature provided is valid for the
          /// provided data
          /// @param _hash      Hash of the data to be signed
          /// @param _signature Signature byte array associated with _data
          ///
          /// MUST return the bytes4 magic value 0x1626ba7e when function passes.
          /// MUST NOT modify state (using STATICCALL for solc < 0.5, view modifier for
          /// solc > 0.5)
          /// MUST allow external calls
          ///
          function isValidSignature(bytes32 _hash, bytes memory _signature)
              external
              view
              returns (bytes4 magicValue);
      }
      // SPDX-License-Identifier: MIT
      // Vendored from OpenZeppelin contracts with minor modifications:
      // - Modified Solidity version
      // - Formatted code
      // - Added `name`, `symbol` and `decimals` function declarations
      // <https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0/contracts/token/ERC20/IERC20.sol>
      pragma solidity ^0.7.6;
      /**
       * @dev Interface of the ERC20 standard as defined in the EIP.
       */
      interface IERC20 {
          /**
           * @dev Returns the name of the token.
           */
          function name() external view returns (string memory);
          /**
           * @dev Returns the symbol of the token.
           */
          function symbol() external view returns (string memory);
          /**
           * @dev Returns the number of decimals the token uses.
           */
          function decimals() external view returns (uint8);
          /**
           * @dev Returns the amount of tokens in existence.
           */
          function totalSupply() external view returns (uint256);
          /**
           * @dev Returns the amount of tokens owned by `account`.
           */
          function balanceOf(address account) external view returns (uint256);
          /**
           * @dev Moves `amount` tokens from the caller's account to `recipient`.
           *
           * Returns a boolean value indicating whether the operation succeeded.
           *
           * Emits a {Transfer} event.
           */
          function transfer(address recipient, uint256 amount)
              external
              returns (bool);
          /**
           * @dev Returns the remaining number of tokens that `spender` will be
           * allowed to spend on behalf of `owner` through {transferFrom}. This is
           * zero by default.
           *
           * This value changes when {approve} or {transferFrom} are called.
           */
          function allowance(address owner, address spender)
              external
              view
              returns (uint256);
          /**
           * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
           *
           * Returns a boolean value indicating whether the operation succeeded.
           *
           * IMPORTANT: Beware that changing an allowance with this method brings the risk
           * that someone may use both the old and the new allowance by unfortunate
           * transaction ordering. One possible solution to mitigate this race
           * condition is to first reduce the spender's allowance to 0 and set the
           * desired value afterwards:
           * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
           *
           * Emits an {Approval} event.
           */
          function approve(address spender, uint256 amount) external returns (bool);
          /**
           * @dev Moves `amount` tokens from `sender` to `recipient` using the
           * allowance mechanism. `amount` is then deducted from the caller's
           * allowance.
           *
           * Returns a boolean value indicating whether the operation succeeded.
           *
           * Emits a {Transfer} event.
           */
          function transferFrom(
              address sender,
              address recipient,
              uint256 amount
          ) external returns (bool);
          /**
           * @dev Emitted when `value` tokens are moved from one account (`from`) to
           * another (`to`).
           *
           * Note that `value` may be zero.
           */
          event Transfer(address indexed from, address indexed to, uint256 value);
          /**
           * @dev Emitted when the allowance of a `spender` for an `owner` is set by
           * a call to {approve}. `value` is the new allowance.
           */
          event Approval(
              address indexed owner,
              address indexed spender,
              uint256 value
          );
      }
      // SPDX-License-Identifier: GPL-3.0-or-later
      // This program is free software: you can redistribute it and/or modify
      // it under the terms of the GNU General Public License as published by
      // the Free Software Foundation, either version 3 of the License, or
      // (at your option) any later version.
      // This program is distributed in the hope that it will be useful,
      // but WITHOUT ANY WARRANTY; without even the implied warranty of
      // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      // GNU General Public License for more details.
      // You should have received a copy of the GNU General Public License
      // along with this program.  If not, see <http://www.gnu.org/licenses/>.
      pragma solidity ^0.7.6;
      pragma abicoder v2;
      import "./IERC20.sol";
      /**
       * @dev Minimal interface for the Vault core contract only containing methods
       * used by Gnosis Protocol V2. Original source:
       * <https://github.com/balancer-labs/balancer-core-v2/blob/v1.0.0/contracts/vault/interfaces/IVault.sol>
       */
      interface IVault {
          // Internal Balance
          //
          // Users can deposit tokens into the Vault, where they are allocated to their Internal Balance, and later
          // transferred or withdrawn. It can also be used as a source of tokens when joining Pools, as a destination
          // when exiting them, and as either when performing swaps. This usage of Internal Balance results in greatly reduced
          // gas costs when compared to relying on plain ERC20 transfers, leading to large savings for frequent users.
          //
          // Internal Balance management features batching, which means a single contract call can be used to perform multiple
          // operations of different kinds, with different senders and recipients, at once.
          /**
           * @dev Performs a set of user balance operations, which involve Internal Balance (deposit, withdraw or transfer)
           * and plain ERC20 transfers using the Vault's allowance. This last feature is particularly useful for relayers, as
           * it lets integrators reuse a user's Vault allowance.
           *
           * For each operation, if the caller is not `sender`, it must be an authorized relayer for them.
           */
          function manageUserBalance(UserBalanceOp[] memory ops) external payable;
          /**
           * @dev Data for `manageUserBalance` operations, which include the possibility for ETH to be sent and received
           without manual WETH wrapping or unwrapping.
           */
          struct UserBalanceOp {
              UserBalanceOpKind kind;
              IERC20 asset;
              uint256 amount;
              address sender;
              address payable recipient;
          }
          // There are four possible operations in `manageUserBalance`:
          //
          // - DEPOSIT_INTERNAL
          // Increases the Internal Balance of the `recipient` account by transferring tokens from the corresponding
          // `sender`. The sender must have allowed the Vault to use their tokens via `IERC20.approve()`.
          //
          // ETH can be used by passing the ETH sentinel value as the asset and forwarding ETH in the call: it will be wrapped
          // and deposited as WETH. Any ETH amount remaining will be sent back to the caller (not the sender, which is
          // relevant for relayers).
          //
          // Emits an `InternalBalanceChanged` event.
          //
          //
          // - WITHDRAW_INTERNAL
          // Decreases the Internal Balance of the `sender` account by transferring tokens to the `recipient`.
          //
          // ETH can be used by passing the ETH sentinel value as the asset. This will deduct WETH instead, unwrap it and send
          // it to the recipient as ETH.
          //
          // Emits an `InternalBalanceChanged` event.
          //
          //
          // - TRANSFER_INTERNAL
          // Transfers tokens from the Internal Balance of the `sender` account to the Internal Balance of `recipient`.
          //
          // Reverts if the ETH sentinel value is passed.
          //
          // Emits an `InternalBalanceChanged` event.
          //
          //
          // - TRANSFER_EXTERNAL
          // Transfers tokens from `sender` to `recipient`, using the Vault's ERC20 allowance. This is typically used by
          // relayers, as it lets them reuse a user's Vault allowance.
          //
          // Reverts if the ETH sentinel value is passed.
          //
          // Emits an `ExternalBalanceTransfer` event.
          enum UserBalanceOpKind {
              DEPOSIT_INTERNAL,
              WITHDRAW_INTERNAL,
              TRANSFER_INTERNAL,
              TRANSFER_EXTERNAL
          }
          // Swaps
          //
          // Users can swap tokens with Pools by calling the `swap` and `batchSwap` functions. To do this,
          // they need not trust Pool contracts in any way: all security checks are made by the Vault. They must however be
          // aware of the Pools' pricing algorithms in order to estimate the prices Pools will quote.
          //
          // The `swap` function executes a single swap, while `batchSwap` can perform multiple swaps in sequence.
          // In each individual swap, tokens of one kind are sent from the sender to the Pool (this is the 'token in'),
          // and tokens of another kind are sent from the Pool to the recipient in exchange (this is the 'token out').
          // More complex swaps, such as one token in to multiple tokens out can be achieved by batching together
          // individual swaps.
          //
          // There are two swap kinds:
          //  - 'given in' swaps, where the amount of tokens in (sent to the Pool) is known, and the Pool determines (via the
          // `onSwap` hook) the amount of tokens out (to send to the recipient).
          //  - 'given out' swaps, where the amount of tokens out (received from the Pool) is known, and the Pool determines
          // (via the `onSwap` hook) the amount of tokens in (to receive from the sender).
          //
          // Additionally, it is possible to chain swaps using a placeholder input amount, which the Vault replaces with
          // the calculated output of the previous swap. If the previous swap was 'given in', this will be the calculated
          // tokenOut amount. If the previous swap was 'given out', it will use the calculated tokenIn amount. These extended
          // swaps are known as 'multihop' swaps, since they 'hop' through a number of intermediate tokens before arriving at
          // the final intended token.
          //
          // In all cases, tokens are only transferred in and out of the Vault (or withdrawn from and deposited into Internal
          // Balance) after all individual swaps have been completed, and the net token balance change computed. This makes
          // certain swap patterns, such as multihops, or swaps that interact with the same token pair in multiple Pools, cost
          // much less gas than they would otherwise.
          //
          // It also means that under certain conditions it is possible to perform arbitrage by swapping with multiple
          // Pools in a way that results in net token movement out of the Vault (profit), with no tokens being sent in (only
          // updating the Pool's internal accounting).
          //
          // To protect users from front-running or the market changing rapidly, they supply a list of 'limits' for each token
          // involved in the swap, where either the maximum number of tokens to send (by passing a positive value) or the
          // minimum amount of tokens to receive (by passing a negative value) is specified.
          //
          // Additionally, a 'deadline' timestamp can also be provided, forcing the swap to fail if it occurs after
          // this point in time (e.g. if the transaction failed to be included in a block promptly).
          //
          // If interacting with Pools that hold WETH, it is possible to both send and receive ETH directly: the Vault will do
          // the wrapping and unwrapping. To enable this mechanism, the IAsset sentinel value (the zero address) must be
          // passed in the `assets` array instead of the WETH address. Note that it is possible to combine ETH and WETH in the
          // same swap. Any excess ETH will be sent back to the caller (not the sender, which is relevant for relayers).
          //
          // Finally, Internal Balance can be used when either sending or receiving tokens.
          enum SwapKind {GIVEN_IN, GIVEN_OUT}
          /**
           * @dev Performs a swap with a single Pool.
           *
           * If the swap is 'given in' (the number of tokens to send to the Pool is known), it returns the amount of tokens
           * taken from the Pool, which must be greater than or equal to `limit`.
           *
           * If the swap is 'given out' (the number of tokens to take from the Pool is known), it returns the amount of tokens
           * sent to the Pool, which must be less than or equal to `limit`.
           *
           * Internal Balance usage and the recipient are determined by the `funds` struct.
           *
           * Emits a `Swap` event.
           */
          function swap(
              SingleSwap memory singleSwap,
              FundManagement memory funds,
              uint256 limit,
              uint256 deadline
          ) external payable returns (uint256);
          /**
           * @dev Data for a single swap executed by `swap`. `amount` is either `amountIn` or `amountOut` depending on
           * the `kind` value.
           *
           * `assetIn` and `assetOut` are either token addresses, or the IAsset sentinel value for ETH (the zero address).
           * Note that Pools never interact with ETH directly: it will be wrapped to or unwrapped from WETH by the Vault.
           *
           * The `userData` field is ignored by the Vault, but forwarded to the Pool in the `onSwap` hook, and may be
           * used to extend swap behavior.
           */
          struct SingleSwap {
              bytes32 poolId;
              SwapKind kind;
              IERC20 assetIn;
              IERC20 assetOut;
              uint256 amount;
              bytes userData;
          }
          /**
           * @dev Performs a series of swaps with one or multiple Pools. In each individual swap, the caller determines either
           * the amount of tokens sent to or received from the Pool, depending on the `kind` value.
           *
           * Returns an array with the net Vault asset balance deltas. Positive amounts represent tokens (or ETH) sent to the
           * Vault, and negative amounts represent tokens (or ETH) sent by the Vault. Each delta corresponds to the asset at
           * the same index in the `assets` array.
           *
           * Swaps are executed sequentially, in the order specified by the `swaps` array. Each array element describes a
           * Pool, the token to be sent to this Pool, the token to receive from it, and an amount that is either `amountIn` or
           * `amountOut` depending on the swap kind.
           *
           * Multihop swaps can be executed by passing an `amount` value of zero for a swap. This will cause the amount in/out
           * of the previous swap to be used as the amount in for the current one. In a 'given in' swap, 'tokenIn' must equal
           * the previous swap's `tokenOut`. For a 'given out' swap, `tokenOut` must equal the previous swap's `tokenIn`.
           *
           * The `assets` array contains the addresses of all assets involved in the swaps. These are either token addresses,
           * or the IAsset sentinel value for ETH (the zero address). Each entry in the `swaps` array specifies tokens in and
           * out by referencing an index in `assets`. Note that Pools never interact with ETH directly: it will be wrapped to
           * or unwrapped from WETH by the Vault.
           *
           * Internal Balance usage, sender, and recipient are determined by the `funds` struct. The `limits` array specifies
           * the minimum or maximum amount of each token the vault is allowed to transfer.
           *
           * `batchSwap` can be used to make a single swap, like `swap` does, but doing so requires more gas than the
           * equivalent `swap` call.
           *
           * Emits `Swap` events.
           */
          function batchSwap(
              SwapKind kind,
              BatchSwapStep[] memory swaps,
              IERC20[] memory assets,
              FundManagement memory funds,
              int256[] memory limits,
              uint256 deadline
          ) external payable returns (int256[] memory);
          /**
           * @dev Data for each individual swap executed by `batchSwap`. The asset in and out fields are indexes into the
           * `assets` array passed to that function, and ETH assets are converted to WETH.
           *
           * If `amount` is zero, the multihop mechanism is used to determine the actual amount based on the amount in/out
           * from the previous swap, depending on the swap kind.
           *
           * The `userData` field is ignored by the Vault, but forwarded to the Pool in the `onSwap` hook, and may be
           * used to extend swap behavior.
           */
          struct BatchSwapStep {
              bytes32 poolId;
              uint256 assetInIndex;
              uint256 assetOutIndex;
              uint256 amount;
              bytes userData;
          }
          /**
           * @dev All tokens in a swap are either sent from the `sender` account to the Vault, or from the Vault to the
           * `recipient` account.
           *
           * If the caller is not `sender`, it must be an authorized relayer for them.
           *
           * If `fromInternalBalance` is true, the `sender`'s Internal Balance will be preferred, performing an ERC20
           * transfer for the difference between the requested amount and the User's Internal Balance (if any). The `sender`
           * must have allowed the Vault to use their tokens via `IERC20.approve()`. This matches the behavior of
           * `joinPool`.
           *
           * If `toInternalBalance` is true, tokens will be deposited to `recipient`'s internal balance instead of
           * transferred. This matches the behavior of `exitPool`.
           *
           * Note that ETH cannot be deposited to or withdrawn from Internal Balance: attempting to do so will trigger a
           * revert.
           */
          struct FundManagement {
              address sender;
              bool fromInternalBalance;
              address payable recipient;
              bool toInternalBalance;
          }
      }
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.7.6;
      /// @title Gnosis Protocol v2 Interaction Library
      /// @author Gnosis Developers
      library GPv2Interaction {
          /// @dev Interaction data for performing arbitrary contract interactions.
          /// Submitted to [`GPv2Settlement.settle`] for code execution.
          struct Data {
              address target;
              uint256 value;
              bytes callData;
          }
          /// @dev Execute an arbitrary contract interaction.
          ///
          /// @param interaction Interaction data.
          function execute(Data calldata interaction) internal {
              address target = interaction.target;
              uint256 value = interaction.value;
              bytes calldata callData = interaction.callData;
              // NOTE: Use assembly to call the interaction instead of a low level
              // call for two reasons:
              // - We don't want to copy the return data, since we discard it for
              // interactions.
              // - Solidity will under certain conditions generate code to copy input
              // calldata twice to memory (the second being a "memcopy loop").
              // <https://github.com/gnosis/gp-v2-contracts/pull/417#issuecomment-775091258>
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  let freeMemoryPointer := mload(0x40)
                  calldatacopy(freeMemoryPointer, callData.offset, callData.length)
                  if iszero(
                      call(
                          gas(),
                          target,
                          value,
                          freeMemoryPointer,
                          callData.length,
                          0,
                          0
                      )
                  ) {
                      returndatacopy(0, 0, returndatasize())
                      revert(0, returndatasize())
                  }
              }
          }
          /// @dev Extracts the Solidity ABI selector for the specified interaction.
          ///
          /// @param interaction Interaction data.
          /// @return result The 4 byte function selector of the call encoded in
          /// this interaction.
          function selector(Data calldata interaction)
              internal
              pure
              returns (bytes4 result)
          {
              bytes calldata callData = interaction.callData;
              if (callData.length >= 4) {
                  // NOTE: Read the first word of the interaction's calldata. The
                  // value does not need to be shifted since `bytesN` values are left
                  // aligned, and the value does not need to be masked since masking
                  // occurs when the value is accessed and not stored:
                  // <https://docs.soliditylang.org/en/v0.7.6/abi-spec.html#encoding-of-indexed-event-parameters>
                  // <https://docs.soliditylang.org/en/v0.7.6/assembly.html#access-to-external-variables-functions-and-libraries>
                  // solhint-disable-next-line no-inline-assembly
                  assembly {
                      result := calldataload(callData.offset)
                  }
              }
          }
      }
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.7.6;
      import "../interfaces/IERC20.sol";
      /// @title Gnosis Protocol v2 Order Library
      /// @author Gnosis Developers
      library GPv2Order {
          /// @dev The complete data for a Gnosis Protocol order. This struct contains
          /// all order parameters that are signed for submitting to GP.
          struct Data {
              IERC20 sellToken;
              IERC20 buyToken;
              address receiver;
              uint256 sellAmount;
              uint256 buyAmount;
              uint32 validTo;
              bytes32 appData;
              uint256 feeAmount;
              bytes32 kind;
              bool partiallyFillable;
              bytes32 sellTokenBalance;
              bytes32 buyTokenBalance;
          }
          /// @dev The order EIP-712 type hash for the [`GPv2Order.Data`] struct.
          ///
          /// This value is pre-computed from the following expression:
          /// ```
          /// keccak256(
          ///     "Order(" +
          ///         "address sellToken," +
          ///         "address buyToken," +
          ///         "address receiver," +
          ///         "uint256 sellAmount," +
          ///         "uint256 buyAmount," +
          ///         "uint32 validTo," +
          ///         "bytes32 appData," +
          ///         "uint256 feeAmount," +
          ///         "string kind," +
          ///         "bool partiallyFillable" +
          ///         "string sellTokenBalance" +
          ///         "string buyTokenBalance" +
          ///     ")"
          /// )
          /// ```
          bytes32 internal constant TYPE_HASH =
              hex"d5a25ba2e97094ad7d83dc28a6572da797d6b3e7fc6663bd93efb789fc17e489";
          /// @dev The marker value for a sell order for computing the order struct
          /// hash. This allows the EIP-712 compatible wallets to display a
          /// descriptive string for the order kind (instead of 0 or 1).
          ///
          /// This value is pre-computed from the following expression:
          /// ```
          /// keccak256("sell")
          /// ```
          bytes32 internal constant KIND_SELL =
              hex"f3b277728b3fee749481eb3e0b3b48980dbbab78658fc419025cb16eee346775";
          /// @dev The OrderKind marker value for a buy order for computing the order
          /// struct hash.
          ///
          /// This value is pre-computed from the following expression:
          /// ```
          /// keccak256("buy")
          /// ```
          bytes32 internal constant KIND_BUY =
              hex"6ed88e868af0a1983e3886d5f3e95a2fafbd6c3450bc229e27342283dc429ccc";
          /// @dev The TokenBalance marker value for using direct ERC20 balances for
          /// computing the order struct hash.
          ///
          /// This value is pre-computed from the following expression:
          /// ```
          /// keccak256("erc20")
          /// ```
          bytes32 internal constant BALANCE_ERC20 =
              hex"5a28e9363bb942b639270062aa6bb295f434bcdfc42c97267bf003f272060dc9";
          /// @dev The TokenBalance marker value for using Balancer Vault external
          /// balances (in order to re-use Vault ERC20 approvals) for computing the
          /// order struct hash.
          ///
          /// This value is pre-computed from the following expression:
          /// ```
          /// keccak256("external")
          /// ```
          bytes32 internal constant BALANCE_EXTERNAL =
              hex"abee3b73373acd583a130924aad6dc38cfdc44ba0555ba94ce2ff63980ea0632";
          /// @dev The TokenBalance marker value for using Balancer Vault internal
          /// balances for computing the order struct hash.
          ///
          /// This value is pre-computed from the following expression:
          /// ```
          /// keccak256("internal")
          /// ```
          bytes32 internal constant BALANCE_INTERNAL =
              hex"4ac99ace14ee0a5ef932dc609df0943ab7ac16b7583634612f8dc35a4289a6ce";
          /// @dev Marker address used to indicate that the receiver of the trade
          /// proceeds should the owner of the order.
          ///
          /// This is chosen to be `address(0)` for gas efficiency as it is expected
          /// to be the most common case.
          address internal constant RECEIVER_SAME_AS_OWNER = address(0);
          /// @dev The byte length of an order unique identifier.
          uint256 internal constant UID_LENGTH = 56;
          /// @dev Returns the actual receiver for an order. This function checks
          /// whether or not the [`receiver`] field uses the marker value to indicate
          /// it is the same as the order owner.
          ///
          /// @return receiver The actual receiver of trade proceeds.
          function actualReceiver(Data memory order, address owner)
              internal
              pure
              returns (address receiver)
          {
              if (order.receiver == RECEIVER_SAME_AS_OWNER) {
                  receiver = owner;
              } else {
                  receiver = order.receiver;
              }
          }
          /// @dev Return the EIP-712 signing hash for the specified order.
          ///
          /// @param order The order to compute the EIP-712 signing hash for.
          /// @param domainSeparator The EIP-712 domain separator to use.
          /// @return orderDigest The 32 byte EIP-712 struct hash.
          function hash(Data memory order, bytes32 domainSeparator)
              internal
              pure
              returns (bytes32 orderDigest)
          {
              bytes32 structHash;
              // NOTE: Compute the EIP-712 order struct hash in place. As suggested
              // in the EIP proposal, noting that the order struct has 10 fields, and
              // including the type hash `(12 + 1) * 32 = 416` bytes to hash.
              // <https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md#rationale-for-encodedata>
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  let dataStart := sub(order, 32)
                  let temp := mload(dataStart)
                  mstore(dataStart, TYPE_HASH)
                  structHash := keccak256(dataStart, 416)
                  mstore(dataStart, temp)
              }
              // NOTE: Now that we have the struct hash, compute the EIP-712 signing
              // hash using scratch memory past the free memory pointer. The signing
              // hash is computed from `"\\x19\\x01" || domainSeparator || structHash`.
              // <https://docs.soliditylang.org/en/v0.7.6/internals/layout_in_memory.html#layout-in-memory>
              // <https://github.com/ethereum/EIPs/blob/master/EIPS/eip-712.md#specification>
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  let freeMemoryPointer := mload(0x40)
                  mstore(freeMemoryPointer, "\\x19\\x01")
                  mstore(add(freeMemoryPointer, 2), domainSeparator)
                  mstore(add(freeMemoryPointer, 34), structHash)
                  orderDigest := keccak256(freeMemoryPointer, 66)
              }
          }
          /// @dev Packs order UID parameters into the specified memory location. The
          /// result is equivalent to `abi.encodePacked(...)` with the difference that
          /// it allows re-using the memory for packing the order UID.
          ///
          /// This function reverts if the order UID buffer is not the correct size.
          ///
          /// @param orderUid The buffer pack the order UID parameters into.
          /// @param orderDigest The EIP-712 struct digest derived from the order
          /// parameters.
          /// @param owner The address of the user who owns this order.
          /// @param validTo The epoch time at which the order will stop being valid.
          function packOrderUidParams(
              bytes memory orderUid,
              bytes32 orderDigest,
              address owner,
              uint32 validTo
          ) internal pure {
              require(orderUid.length == UID_LENGTH, "GPv2: uid buffer overflow");
              // NOTE: Write the order UID to the allocated memory buffer. The order
              // parameters are written to memory in **reverse order** as memory
              // operations write 32-bytes at a time and we want to use a packed
              // encoding. This means, for example, that after writing the value of
              // `owner` to bytes `20:52`, writing the `orderDigest` to bytes `0:32`
              // will **overwrite** bytes `20:32`. This is desirable as addresses are
              // only 20 bytes and `20:32` should be `0`s:
              //
              //        |           1111111111222222222233333333334444444444555555
              //   byte | 01234567890123456789012345678901234567890123456789012345
              // -------+---------------------------------------------------------
              //  field | [.........orderDigest..........][......owner.......][vT]
              // -------+---------------------------------------------------------
              // mstore |                         [000000000000000000000000000.vT]
              //        |                     [00000000000.......owner.......]
              //        | [.........orderDigest..........]
              //
              // Additionally, since Solidity `bytes memory` are length prefixed,
              // 32 needs to be added to all the offsets.
              //
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  mstore(add(orderUid, 56), validTo)
                  mstore(add(orderUid, 52), owner)
                  mstore(add(orderUid, 32), orderDigest)
              }
          }
          /// @dev Extracts specific order information from the standardized unique
          /// order id of the protocol.
          ///
          /// @param orderUid The unique identifier used to represent an order in
          /// the protocol. This uid is the packed concatenation of the order digest,
          /// the validTo order parameter and the address of the user who created the
          /// order. It is used by the user to interface with the contract directly,
          /// and not by calls that are triggered by the solvers.
          /// @return orderDigest The EIP-712 signing digest derived from the order
          /// parameters.
          /// @return owner The address of the user who owns this order.
          /// @return validTo The epoch time at which the order will stop being valid.
          function extractOrderUidParams(bytes calldata orderUid)
              internal
              pure
              returns (
                  bytes32 orderDigest,
                  address owner,
                  uint32 validTo
              )
          {
              require(orderUid.length == UID_LENGTH, "GPv2: invalid uid");
              // Use assembly to efficiently decode packed calldata.
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  orderDigest := calldataload(orderUid.offset)
                  owner := shr(96, calldataload(add(orderUid.offset, 32)))
                  validTo := shr(224, calldataload(add(orderUid.offset, 52)))
              }
          }
      }
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.7.6;
      import "../interfaces/IERC20.sol";
      /// @title Gnosis Protocol v2 Safe ERC20 Transfer Library
      /// @author Gnosis Developers
      /// @dev Gas-efficient version of Openzeppelin's SafeERC20 contract that notably
      /// does not revert when calling a non-contract.
      library GPv2SafeERC20 {
          /// @dev Wrapper around a call to the ERC20 function `transfer` that reverts
          /// also when the token returns `false`.
          function safeTransfer(
              IERC20 token,
              address to,
              uint256 value
          ) internal {
              bytes4 selector_ = token.transfer.selector;
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  let freeMemoryPointer := mload(0x40)
                  mstore(freeMemoryPointer, selector_)
                  mstore(
                      add(freeMemoryPointer, 4),
                      and(to, 0xffffffffffffffffffffffffffffffffffffffff)
                  )
                  mstore(add(freeMemoryPointer, 36), value)
                  if iszero(call(gas(), token, 0, freeMemoryPointer, 68, 0, 0)) {
                      returndatacopy(0, 0, returndatasize())
                      revert(0, returndatasize())
                  }
              }
              require(getLastTansferResult(token), "GPv2: failed transfer");
          }
          /// @dev Wrapper around a call to the ERC20 function `transferFrom` that
          /// reverts also when the token returns `false`.
          function safeTransferFrom(
              IERC20 token,
              address from,
              address to,
              uint256 value
          ) internal {
              bytes4 selector_ = token.transferFrom.selector;
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  let freeMemoryPointer := mload(0x40)
                  mstore(freeMemoryPointer, selector_)
                  mstore(
                      add(freeMemoryPointer, 4),
                      and(from, 0xffffffffffffffffffffffffffffffffffffffff)
                  )
                  mstore(
                      add(freeMemoryPointer, 36),
                      and(to, 0xffffffffffffffffffffffffffffffffffffffff)
                  )
                  mstore(add(freeMemoryPointer, 68), value)
                  if iszero(call(gas(), token, 0, freeMemoryPointer, 100, 0, 0)) {
                      returndatacopy(0, 0, returndatasize())
                      revert(0, returndatasize())
                  }
              }
              require(getLastTansferResult(token), "GPv2: failed transferFrom");
          }
          /// @dev Verifies that the last return was a successful `transfer*` call.
          /// This is done by checking that the return data is either empty, or
          /// is a valid ABI encoded boolean.
          function getLastTansferResult(IERC20 token)
              private
              view
              returns (bool success)
          {
              // NOTE: Inspecting previous return data requires assembly. Note that
              // we write the return data to memory 0 in the case where the return
              // data size is 32, this is OK since the first 64 bytes of memory are
              // reserved by Solidy as a scratch space that can be used within
              // assembly blocks.
              // <https://docs.soliditylang.org/en/v0.7.6/internals/layout_in_memory.html>
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  /// @dev Revert with an ABI encoded Solidity error with a message
                  /// that fits into 32-bytes.
                  ///
                  /// An ABI encoded Solidity error has the following memory layout:
                  ///
                  /// ------------+----------------------------------
                  ///  byte range | value
                  /// ------------+----------------------------------
                  ///  0x00..0x04 |        selector("Error(string)")
                  ///  0x04..0x24 |      string offset (always 0x20)
                  ///  0x24..0x44 |                    string length
                  ///  0x44..0x64 | string value, padded to 32-bytes
                  function revertWithMessage(length, message) {
                      mstore(0x00, "\\x08\\xc3\\x79\\xa0")
                      mstore(0x04, 0x20)
                      mstore(0x24, length)
                      mstore(0x44, message)
                      revert(0x00, 0x64)
                  }
                  switch returndatasize()
                      // Non-standard ERC20 transfer without return.
                      case 0 {
                          // NOTE: When the return data size is 0, verify that there
                          // is code at the address. This is done in order to maintain
                          // compatibility with Solidity calling conventions.
                          // <https://docs.soliditylang.org/en/v0.7.6/control-structures.html#external-function-calls>
                          if iszero(extcodesize(token)) {
                              revertWithMessage(20, "GPv2: not a contract")
                          }
                          success := 1
                      }
                      // Standard ERC20 transfer returning boolean success value.
                      case 32 {
                          returndatacopy(0, 0, returndatasize())
                          // NOTE: For ABI encoding v1, any non-zero value is accepted
                          // as `true` for a boolean. In order to stay compatible with
                          // OpenZeppelin's `SafeERC20` library which is known to work
                          // with the existing ERC20 implementation we care about,
                          // make sure we return success for any non-zero return value
                          // from the `transfer*` call.
                          success := iszero(iszero(mload(0)))
                      }
                      default {
                          revertWithMessage(31, "GPv2: malformed transfer result")
                      }
              }
          }
      }
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.7.6;
      import "../interfaces/IERC20.sol";
      import "../mixins/GPv2Signing.sol";
      import "./GPv2Order.sol";
      /// @title Gnosis Protocol v2 Trade Library.
      /// @author Gnosis Developers
      library GPv2Trade {
          using GPv2Order for GPv2Order.Data;
          using GPv2Order for bytes;
          /// @dev A struct representing a trade to be executed as part a batch
          /// settlement.
          struct Data {
              uint256 sellTokenIndex;
              uint256 buyTokenIndex;
              address receiver;
              uint256 sellAmount;
              uint256 buyAmount;
              uint32 validTo;
              bytes32 appData;
              uint256 feeAmount;
              uint256 flags;
              uint256 executedAmount;
              bytes signature;
          }
          /// @dev Extracts the order data and signing scheme for the specified trade.
          ///
          /// @param trade The trade.
          /// @param tokens The list of tokens included in the settlement. The token
          /// indices in the trade parameters map to tokens in this array.
          /// @param order The memory location to extract the order data to.
          function extractOrder(
              Data calldata trade,
              IERC20[] calldata tokens,
              GPv2Order.Data memory order
          ) internal pure returns (GPv2Signing.Scheme signingScheme) {
              order.sellToken = tokens[trade.sellTokenIndex];
              order.buyToken = tokens[trade.buyTokenIndex];
              order.receiver = trade.receiver;
              order.sellAmount = trade.sellAmount;
              order.buyAmount = trade.buyAmount;
              order.validTo = trade.validTo;
              order.appData = trade.appData;
              order.feeAmount = trade.feeAmount;
              (
                  order.kind,
                  order.partiallyFillable,
                  order.sellTokenBalance,
                  order.buyTokenBalance,
                  signingScheme
              ) = extractFlags(trade.flags);
          }
          /// @dev Decodes trade flags.
          ///
          /// Trade flags are used to tightly encode information on how to decode
          /// an order. Examples that directly affect the structure of an order are
          /// the kind of order (either a sell or a buy order) as well as whether the
          /// order is partially fillable or if it is a "fill-or-kill" order. It also
          /// encodes the signature scheme used to validate the order. As the most
          /// likely values are fill-or-kill sell orders by an externally owned
          /// account, the flags are chosen such that `0x00` represents this kind of
          /// order. The flags byte uses the following format:
          ///
          /// ```
          /// bit | 31 ...   | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
          /// ----+----------+---+---+-------+---+---+
          ///     | reserved | *   * | * | *   * | * | * |
          ///                  |   |   |   |   |   |   |
          ///                  |   |   |   |   |   |   +---- order kind bit, 0 for a sell order
          ///                  |   |   |   |   |   |         and 1 for a buy order
          ///                  |   |   |   |   |   |
          ///                  |   |   |   |   |   +-------- order fill bit, 0 for fill-or-kill
          ///                  |   |   |   |   |             and 1 for a partially fillable order
          ///                  |   |   |   |   |
          ///                  |   |   |   +---+------------ use internal sell token balance bit:
          ///                  |   |   |                     0x: ERC20 token balance
          ///                  |   |   |                     10: external Balancer Vault balance
          ///                  |   |   |                     11: internal Balancer Vault balance
          ///                  |   |   |
          ///                  |   |   +-------------------- use buy token balance bit
          ///                  |   |                         0: ERC20 token balance
          ///                  |   |                         1: internal Balancer Vault balance
          ///                  |   |
          ///                  +---+------------------------ signature scheme bits:
          ///                                                00: EIP-712
          ///                                                01: eth_sign
          ///                                                10: EIP-1271
          ///                                                11: pre_sign
          /// ```
          function extractFlags(uint256 flags)
              internal
              pure
              returns (
                  bytes32 kind,
                  bool partiallyFillable,
                  bytes32 sellTokenBalance,
                  bytes32 buyTokenBalance,
                  GPv2Signing.Scheme signingScheme
              )
          {
              if (flags & 0x01 == 0) {
                  kind = GPv2Order.KIND_SELL;
              } else {
                  kind = GPv2Order.KIND_BUY;
              }
              partiallyFillable = flags & 0x02 != 0;
              if (flags & 0x08 == 0) {
                  sellTokenBalance = GPv2Order.BALANCE_ERC20;
              } else if (flags & 0x04 == 0) {
                  sellTokenBalance = GPv2Order.BALANCE_EXTERNAL;
              } else {
                  sellTokenBalance = GPv2Order.BALANCE_INTERNAL;
              }
              if (flags & 0x10 == 0) {
                  buyTokenBalance = GPv2Order.BALANCE_ERC20;
              } else {
                  buyTokenBalance = GPv2Order.BALANCE_INTERNAL;
              }
              // NOTE: Take advantage of the fact that Solidity will revert if the
              // following expression does not produce a valid enum value. This means
              // we check here that the leading reserved bits must be 0.
              signingScheme = GPv2Signing.Scheme(flags >> 5);
          }
      }
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.7.6;
      pragma abicoder v2;
      import "../interfaces/IERC20.sol";
      import "../interfaces/IVault.sol";
      import "./GPv2Order.sol";
      import "./GPv2SafeERC20.sol";
      /// @title Gnosis Protocol v2 Transfers
      /// @author Gnosis Developers
      library GPv2Transfer {
          using GPv2SafeERC20 for IERC20;
          /// @dev Transfer data.
          struct Data {
              address account;
              IERC20 token;
              uint256 amount;
              bytes32 balance;
          }
          /// @dev Ether marker address used to indicate an Ether transfer.
          address internal constant BUY_ETH_ADDRESS =
              0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;
          /// @dev Execute the specified transfer from the specified account to a
          /// recipient. The recipient will either receive internal Vault balances or
          /// ERC20 token balances depending on whether the account is using internal
          /// balances or not.
          ///
          /// This method is used for transferring fees to the settlement contract
          /// when settling a single order directly with Balancer.
          ///
          /// Note that this method is subtly different from `transferFromAccounts`
          /// with a single transfer with respect to how it deals with internal
          /// balances. Specifically, this method will perform an **internal balance
          /// transfer to the settlement contract instead of a withdrawal to the
          /// external balance of the settlement contract** for trades that specify
          /// trading with internal balances. This is done as a gas optimization in
          /// the single order "fast-path".
          ///
          /// @param vault The Balancer vault to use.
          /// @param transfer The transfer to perform specifying the sender account.
          /// @param recipient The recipient for the transfer.
          function fastTransferFromAccount(
              IVault vault,
              Data calldata transfer,
              address recipient
          ) internal {
              require(
                  address(transfer.token) != BUY_ETH_ADDRESS,
                  "GPv2: cannot transfer native ETH"
              );
              if (transfer.balance == GPv2Order.BALANCE_ERC20) {
                  transfer.token.safeTransferFrom(
                      transfer.account,
                      recipient,
                      transfer.amount
                  );
              } else {
                  IVault.UserBalanceOp[] memory balanceOps =
                      new IVault.UserBalanceOp[](1);
                  IVault.UserBalanceOp memory balanceOp = balanceOps[0];
                  balanceOp.kind = transfer.balance == GPv2Order.BALANCE_EXTERNAL
                      ? IVault.UserBalanceOpKind.TRANSFER_EXTERNAL
                      : IVault.UserBalanceOpKind.TRANSFER_INTERNAL;
                  balanceOp.asset = transfer.token;
                  balanceOp.amount = transfer.amount;
                  balanceOp.sender = transfer.account;
                  balanceOp.recipient = payable(recipient);
                  vault.manageUserBalance(balanceOps);
              }
          }
          /// @dev Execute the specified transfers from the specified accounts to a
          /// single recipient. The recipient will receive all transfers as ERC20
          /// token balances, regardless of whether or not the accounts are using
          /// internal Vault balances.
          ///
          /// This method is used for accumulating user balances into the settlement
          /// contract.
          ///
          /// @param vault The Balancer vault to use.
          /// @param transfers The batched transfers to perform specifying the
          /// sender accounts.
          /// @param recipient The single recipient for all the transfers.
          function transferFromAccounts(
              IVault vault,
              Data[] calldata transfers,
              address recipient
          ) internal {
              // NOTE: Allocate buffer of Vault balance operations large enough to
              // hold all GP transfers. This is done to avoid re-allocations (which
              // are gas inefficient) while still allowing all transfers to be batched
              // into a single Vault call.
              IVault.UserBalanceOp[] memory balanceOps =
                  new IVault.UserBalanceOp[](transfers.length);
              uint256 balanceOpCount = 0;
              for (uint256 i = 0; i < transfers.length; i++) {
                  Data calldata transfer = transfers[i];
                  require(
                      address(transfer.token) != BUY_ETH_ADDRESS,
                      "GPv2: cannot transfer native ETH"
                  );
                  if (transfer.balance == GPv2Order.BALANCE_ERC20) {
                      transfer.token.safeTransferFrom(
                          transfer.account,
                          recipient,
                          transfer.amount
                      );
                  } else {
                      IVault.UserBalanceOp memory balanceOp =
                          balanceOps[balanceOpCount++];
                      balanceOp.kind = transfer.balance == GPv2Order.BALANCE_EXTERNAL
                          ? IVault.UserBalanceOpKind.TRANSFER_EXTERNAL
                          : IVault.UserBalanceOpKind.WITHDRAW_INTERNAL;
                      balanceOp.asset = transfer.token;
                      balanceOp.amount = transfer.amount;
                      balanceOp.sender = transfer.account;
                      balanceOp.recipient = payable(recipient);
                  }
              }
              if (balanceOpCount > 0) {
                  truncateBalanceOpsArray(balanceOps, balanceOpCount);
                  vault.manageUserBalance(balanceOps);
              }
          }
          /// @dev Execute the specified transfers to their respective accounts.
          ///
          /// This method is used for paying out trade proceeds from the settlement
          /// contract.
          ///
          /// @param vault The Balancer vault to use.
          /// @param transfers The batched transfers to perform.
          function transferToAccounts(IVault vault, Data[] memory transfers)
              internal
          {
              IVault.UserBalanceOp[] memory balanceOps =
                  new IVault.UserBalanceOp[](transfers.length);
              uint256 balanceOpCount = 0;
              for (uint256 i = 0; i < transfers.length; i++) {
                  Data memory transfer = transfers[i];
                  if (address(transfer.token) == BUY_ETH_ADDRESS) {
                      require(
                          transfer.balance != GPv2Order.BALANCE_INTERNAL,
                          "GPv2: unsupported internal ETH"
                      );
                      payable(transfer.account).transfer(transfer.amount);
                  } else if (transfer.balance == GPv2Order.BALANCE_ERC20) {
                      transfer.token.safeTransfer(transfer.account, transfer.amount);
                  } else {
                      IVault.UserBalanceOp memory balanceOp =
                          balanceOps[balanceOpCount++];
                      balanceOp.kind = IVault.UserBalanceOpKind.DEPOSIT_INTERNAL;
                      balanceOp.asset = transfer.token;
                      balanceOp.amount = transfer.amount;
                      balanceOp.sender = address(this);
                      balanceOp.recipient = payable(transfer.account);
                  }
              }
              if (balanceOpCount > 0) {
                  truncateBalanceOpsArray(balanceOps, balanceOpCount);
                  vault.manageUserBalance(balanceOps);
              }
          }
          /// @dev Truncate a Vault balance operation array to its actual size.
          ///
          /// This method **does not** check whether or not the new length is valid,
          /// and specifying a size that is larger than the array's actual length is
          /// undefined behaviour.
          ///
          /// @param balanceOps The memory array of balance operations to truncate.
          /// @param newLength The new length to set.
          function truncateBalanceOpsArray(
              IVault.UserBalanceOp[] memory balanceOps,
              uint256 newLength
          ) private pure {
              // NOTE: Truncate the vault transfers array to the specified length.
              // This is done by setting the array's length which occupies the first
              // word in memory pointed to by the `balanceOps` memory variable.
              // <https://docs.soliditylang.org/en/v0.7.6/internals/layout_in_memory.html>
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  mstore(balanceOps, newLength)
              }
          }
      }
      // SPDX-License-Identifier: MIT
      // Vendored from OpenZeppelin contracts with minor modifications:
      // - Modified Solidity version
      // - Formatted code
      // - Shortened revert messages
      // - Removed unused methods
      // - Convert to `type(*).*` notation
      // <https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0/contracts/utils/SafeCast.sol>
      pragma solidity ^0.7.6;
      /**
       * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
       * checks.
       *
       * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
       * easily result in undesired exploitation or bugs, since developers usually
       * assume that overflows raise errors. `SafeCast` restores this intuition by
       * reverting the transaction when such an operation overflows.
       *
       * Using this library instead of the unchecked operations eliminates an entire
       * class of bugs, so it's recommended to use it always.
       *
       * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
       * all math on `uint256` and `int256` and then downcasting.
       */
      library SafeCast {
          /**
           * @dev Converts a signed int256 into an unsigned uint256.
           *
           * Requirements:
           *
           * - input must be greater than or equal to 0.
           */
          function toUint256(int256 value) internal pure returns (uint256) {
              require(value >= 0, "SafeCast: not positive");
              return uint256(value);
          }
          /**
           * @dev Converts an unsigned uint256 into a signed int256.
           *
           * Requirements:
           *
           * - input must be less than or equal to maxInt256.
           */
          function toInt256(uint256 value) internal pure returns (int256) {
              require(
                  value <= uint256(type(int256).max),
                  "SafeCast: int256 overflow"
              );
              return int256(value);
          }
      }
      // SPDX-License-Identifier: MIT
      // Vendored from OpenZeppelin contracts with minor modifications:
      // - Modified Solidity version
      // - Formatted code
      // - Shortened some revert messages
      // - Removed unused methods
      // - Added `ceilDiv` method
      // <https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0/contracts/math/SafeMath.sol>
      pragma solidity ^0.7.6;
      /**
       * @dev Wrappers over Solidity's arithmetic operations with added overflow
       * checks.
       *
       * Arithmetic operations in Solidity wrap on overflow. This can easily result
       * in bugs, because programmers usually assume that an overflow raises an
       * error, which is the standard behavior in high level programming languages.
       * `SafeMath` restores this intuition by reverting the transaction when an
       * operation overflows.
       *
       * Using this library instead of the unchecked operations eliminates an entire
       * class of bugs, so it's recommended to use it always.
       */
      library SafeMath {
          /**
           * @dev Returns the addition of two unsigned integers, reverting on
           * overflow.
           *
           * Counterpart to Solidity's `+` operator.
           *
           * Requirements:
           *
           * - Addition cannot overflow.
           */
          function add(uint256 a, uint256 b) internal pure returns (uint256) {
              uint256 c = a + b;
              require(c >= a, "SafeMath: addition overflow");
              return c;
          }
          /**
           * @dev Returns the subtraction of two unsigned integers, reverting on
           * overflow (when the result is negative).
           *
           * Counterpart to Solidity's `-` operator.
           *
           * Requirements:
           *
           * - Subtraction cannot overflow.
           */
          function sub(uint256 a, uint256 b) internal pure returns (uint256) {
              require(b <= a, "SafeMath: subtraction overflow");
              return a - b;
          }
          /**
           * @dev Returns the multiplication of two unsigned integers, reverting on
           * overflow.
           *
           * Counterpart to Solidity's `*` operator.
           *
           * Requirements:
           *
           * - Multiplication cannot overflow.
           */
          function mul(uint256 a, uint256 b) internal pure returns (uint256) {
              if (a == 0) return 0;
              uint256 c = a * b;
              require(c / a == b, "SafeMath: mul overflow");
              return c;
          }
          /**
           * @dev Returns the integer division of two unsigned integers, reverting on
           * division by zero. The result is rounded towards zero.
           *
           * Counterpart to Solidity's `/` operator. Note: this function uses a
           * `revert` opcode (which leaves remaining gas untouched) while Solidity
           * uses an invalid opcode to revert (consuming all remaining gas).
           *
           * Requirements:
           *
           * - The divisor cannot be zero.
           */
          function div(uint256 a, uint256 b) internal pure returns (uint256) {
              require(b > 0, "SafeMath: division by 0");
              return a / b;
          }
          /**
           * @dev Returns the ceiling integer division of two unsigned integers,
           * reverting on division by zero. The result is rounded towards up the
           * nearest integer, instead of truncating the fractional part.
           *
           * Requirements:
           *
           * - The divisor cannot be zero.
           * - The sum of the dividend and divisor cannot overflow.
           */
          function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
              require(b > 0, "SafeMath: ceiling division by 0");
              return a / b + (a % b == 0 ? 0 : 1);
          }
      }
      // SPDX-License-Identifier: LGPL-3.0-or-later
      pragma solidity ^0.7.6;
      import "../interfaces/GPv2EIP1271.sol";
      import "../libraries/GPv2Order.sol";
      import "../libraries/GPv2Trade.sol";
      /// @title Gnosis Protocol v2 Signing Library.
      /// @author Gnosis Developers
      abstract contract GPv2Signing {
          using GPv2Order for GPv2Order.Data;
          using GPv2Order for bytes;
          /// @dev Recovered trade data containing the extracted order and the
          /// recovered owner address.
          struct RecoveredOrder {
              GPv2Order.Data data;
              bytes uid;
              address owner;
              address receiver;
          }
          /// @dev Signing scheme used for recovery.
          enum Scheme {Eip712, EthSign, Eip1271, PreSign}
          /// @dev The EIP-712 domain type hash used for computing the domain
          /// separator.
          bytes32 private constant DOMAIN_TYPE_HASH =
              keccak256(
                  "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
              );
          /// @dev The EIP-712 domain name used for computing the domain separator.
          bytes32 private constant DOMAIN_NAME = keccak256("Gnosis Protocol");
          /// @dev The EIP-712 domain version used for computing the domain separator.
          bytes32 private constant DOMAIN_VERSION = keccak256("v2");
          /// @dev Marker value indicating an order is pre-signed.
          uint256 private constant PRE_SIGNED =
              uint256(keccak256("GPv2Signing.Scheme.PreSign"));
          /// @dev The domain separator used for signing orders that gets mixed in
          /// making signatures for different domains incompatible. This domain
          /// separator is computed following the EIP-712 standard and has replay
          /// protection mixed in so that signed orders are only valid for specific
          /// GPv2 contracts.
          bytes32 public immutable domainSeparator;
          /// @dev Storage indicating whether or not an order has been signed by a
          /// particular address.
          mapping(bytes => uint256) public preSignature;
          /// @dev Event that is emitted when an account either pre-signs an order or
          /// revokes an existing pre-signature.
          event PreSignature(address indexed owner, bytes orderUid, bool signed);
          constructor() {
              // NOTE: Currently, the only way to get the chain ID in solidity is
              // using assembly.
              uint256 chainId;
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  chainId := chainid()
              }
              domainSeparator = keccak256(
                  abi.encode(
                      DOMAIN_TYPE_HASH,
                      DOMAIN_NAME,
                      DOMAIN_VERSION,
                      chainId,
                      address(this)
                  )
              );
          }
          /// @dev Sets a presignature for the specified order UID.
          ///
          /// @param orderUid The unique identifier of the order to pre-sign.
          function setPreSignature(bytes calldata orderUid, bool signed) external {
              (, address owner, ) = orderUid.extractOrderUidParams();
              require(owner == msg.sender, "GPv2: cannot presign order");
              if (signed) {
                  preSignature[orderUid] = PRE_SIGNED;
              } else {
                  preSignature[orderUid] = 0;
              }
              emit PreSignature(owner, orderUid, signed);
          }
          /// @dev Returns an empty recovered order with a pre-allocated buffer for
          /// packing the unique identifier.
          ///
          /// @return recoveredOrder The empty recovered order data.
          function allocateRecoveredOrder()
              internal
              pure
              returns (RecoveredOrder memory recoveredOrder)
          {
              recoveredOrder.uid = new bytes(GPv2Order.UID_LENGTH);
          }
          /// @dev Extracts order data and recovers the signer from the specified
          /// trade.
          ///
          /// @param recoveredOrder Memory location used for writing the recovered order data.
          /// @param tokens The list of tokens included in the settlement. The token
          /// indices in the trade parameters map to tokens in this array.
          /// @param trade The trade data to recover the order data from.
          function recoverOrderFromTrade(
              RecoveredOrder memory recoveredOrder,
              IERC20[] calldata tokens,
              GPv2Trade.Data calldata trade
          ) internal view {
              GPv2Order.Data memory order = recoveredOrder.data;
              Scheme signingScheme = GPv2Trade.extractOrder(trade, tokens, order);
              (bytes32 orderDigest, address owner) =
                  recoverOrderSigner(order, signingScheme, trade.signature);
              recoveredOrder.uid.packOrderUidParams(
                  orderDigest,
                  owner,
                  order.validTo
              );
              recoveredOrder.owner = owner;
              recoveredOrder.receiver = order.actualReceiver(owner);
          }
          /// @dev The length of any signature from an externally owned account.
          uint256 private constant ECDSA_SIGNATURE_LENGTH = 65;
          /// @dev Recovers an order's signer from the specified order and signature.
          ///
          /// @param order The order to recover a signature for.
          /// @param signingScheme The signing scheme.
          /// @param signature The signature bytes.
          /// @return orderDigest The computed order hash.
          /// @return owner The recovered address from the specified signature.
          function recoverOrderSigner(
              GPv2Order.Data memory order,
              Scheme signingScheme,
              bytes calldata signature
          ) internal view returns (bytes32 orderDigest, address owner) {
              orderDigest = order.hash(domainSeparator);
              if (signingScheme == Scheme.Eip712) {
                  owner = recoverEip712Signer(orderDigest, signature);
              } else if (signingScheme == Scheme.EthSign) {
                  owner = recoverEthsignSigner(orderDigest, signature);
              } else if (signingScheme == Scheme.Eip1271) {
                  owner = recoverEip1271Signer(orderDigest, signature);
              } else {
                  // signingScheme == Scheme.PreSign
                  owner = recoverPreSigner(orderDigest, signature, order.validTo);
              }
          }
          /// @dev Perform an ECDSA recover for the specified message and calldata
          /// signature.
          ///
          /// The signature is encoded by tighyly packing the following struct:
          /// ```
          /// struct EncodedSignature {
          ///     bytes32 r;
          ///     bytes32 s;
          ///     uint8 v;
          /// }
          /// ```
          ///
          /// @param message The signed message.
          /// @param encodedSignature The encoded signature.
          function ecdsaRecover(bytes32 message, bytes calldata encodedSignature)
              internal
              pure
              returns (address signer)
          {
              require(
                  encodedSignature.length == ECDSA_SIGNATURE_LENGTH,
                  "GPv2: malformed ecdsa signature"
              );
              bytes32 r;
              bytes32 s;
              uint8 v;
              // NOTE: Use assembly to efficiently decode signature data.
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  // r = uint256(encodedSignature[0:32])
                  r := calldataload(encodedSignature.offset)
                  // s = uint256(encodedSignature[32:64])
                  s := calldataload(add(encodedSignature.offset, 32))
                  // v = uint8(encodedSignature[64])
                  v := shr(248, calldataload(add(encodedSignature.offset, 64)))
              }
              signer = ecrecover(message, v, r, s);
              require(signer != address(0), "GPv2: invalid ecdsa signature");
          }
          /// @dev Decodes signature bytes originating from an EIP-712-encoded
          /// signature.
          ///
          /// EIP-712 signs typed data. The specifications are described in the
          /// related EIP (<https://eips.ethereum.org/EIPS/eip-712>).
          ///
          /// EIP-712 signatures are encoded as standard ECDSA signatures as described
          /// in the corresponding decoding function [`ecdsaRecover`].
          ///
          /// @param orderDigest The EIP-712 signing digest derived from the order
          /// parameters.
          /// @param encodedSignature Calldata pointing to tightly packed signature
          /// bytes.
          /// @return owner The address of the signer.
          function recoverEip712Signer(
              bytes32 orderDigest,
              bytes calldata encodedSignature
          ) internal pure returns (address owner) {
              owner = ecdsaRecover(orderDigest, encodedSignature);
          }
          /// @dev Decodes signature bytes originating from the output of the eth_sign
          /// RPC call.
          ///
          /// The specifications are described in the Ethereum documentation
          /// (<https://eth.wiki/json-rpc/API#eth_sign>).
          ///
          /// eth_sign signatures are encoded as standard ECDSA signatures as
          /// described in the corresponding decoding function
          /// [`ecdsaRecover`].
          ///
          /// @param orderDigest The EIP-712 signing digest derived from the order
          /// parameters.
          /// @param encodedSignature Calldata pointing to tightly packed signature
          /// bytes.
          /// @return owner The address of the signer.
          function recoverEthsignSigner(
              bytes32 orderDigest,
              bytes calldata encodedSignature
          ) internal pure returns (address owner) {
              // The signed message is encoded as:
              // `"\\x19Ethereum Signed Message:\
      " || length || data`, where
              // the length is a constant (32 bytes) and the data is defined as:
              // `orderDigest`.
              bytes32 ethsignDigest =
                  keccak256(
                      abi.encodePacked(
                          "\\x19Ethereum Signed Message:\
      32",
                          orderDigest
                      )
                  );
              owner = ecdsaRecover(ethsignDigest, encodedSignature);
          }
          /// @dev Verifies the input calldata as an EIP-1271 contract signature and
          /// returns the address of the signer.
          ///
          /// The encoded signature tightly packs the following struct:
          ///
          /// ```
          /// struct EncodedEip1271Signature {
          ///     address owner;
          ///     bytes signature;
          /// }
          /// ```
          ///
          /// This function enforces that the encoded data stores enough bytes to
          /// cover the full length of the decoded signature.
          ///
          /// @param encodedSignature The encoded EIP-1271 signature.
          /// @param orderDigest The EIP-712 signing digest derived from the order
          /// parameters.
          /// @return owner The address of the signer.
          function recoverEip1271Signer(
              bytes32 orderDigest,
              bytes calldata encodedSignature
          ) internal view returns (address owner) {
              // NOTE: Use assembly to read the verifier address from the encoded
              // signature bytes.
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  // owner = address(encodedSignature[0:20])
                  owner := shr(96, calldataload(encodedSignature.offset))
              }
              // NOTE: Configure prettier to ignore the following line as it causes
              // a panic in the Solidity plugin.
              // prettier-ignore
              bytes calldata signature = encodedSignature[20:];
              require(
                  EIP1271Verifier(owner).isValidSignature(orderDigest, signature) ==
                      GPv2EIP1271.MAGICVALUE,
                  "GPv2: invalid eip1271 signature"
              );
          }
          /// @dev Verifies the order has been pre-signed. The signature is the
          /// address of the signer of the order.
          ///
          /// @param orderDigest The EIP-712 signing digest derived from the order
          /// parameters.
          /// @param encodedSignature The pre-sign signature reprenting the order UID.
          /// @param validTo The order expiry timestamp.
          /// @return owner The address of the signer.
          function recoverPreSigner(
              bytes32 orderDigest,
              bytes calldata encodedSignature,
              uint32 validTo
          ) internal view returns (address owner) {
              require(encodedSignature.length == 20, "GPv2: malformed presignature");
              // NOTE: Use assembly to read the owner address from the encoded
              // signature bytes.
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  // owner = address(encodedSignature[0:20])
                  owner := shr(96, calldataload(encodedSignature.offset))
              }
              bytes memory orderUid = new bytes(GPv2Order.UID_LENGTH);
              orderUid.packOrderUidParams(orderDigest, owner, validTo);
              require(
                  preSignature[orderUid] == PRE_SIGNED,
                  "GPv2: order not presigned"
              );
          }
      }
      // SPDX-License-Identifier: MIT
      // Vendored from OpenZeppelin contracts with minor modifications:
      // - Modified Solidity version
      // - Formatted code
      // <https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0/contracts/utils/ReentrancyGuard.sol>
      pragma solidity ^0.7.6;
      /**
       * @dev Contract module that helps prevent reentrant calls to a function.
       *
       * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
       * available, which can be applied to functions to make sure there are no nested
       * (reentrant) calls to them.
       *
       * Note that because there is a single `nonReentrant` guard, functions marked as
       * `nonReentrant` may not call one another. This can be worked around by making
       * those functions `private`, and then adding `external` `nonReentrant` entry
       * points to them.
       *
       * TIP: If you would like to learn more about reentrancy and alternative ways
       * to protect against it, check out our blog post
       * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
       */
      abstract contract ReentrancyGuard {
          // Booleans are more expensive than uint256 or any type that takes up a full
          // word because each write operation emits an extra SLOAD to first read the
          // slot's contents, replace the bits taken up by the boolean, and then write
          // back. This is the compiler's defense against contract upgrades and
          // pointer aliasing, and it cannot be disabled.
          // The values being non-zero value makes deployment a bit more expensive,
          // but in exchange the refund on every call to nonReentrant will be lower in
          // amount. Since refunds are capped to a percentage of the total
          // transaction's gas, it is best to keep them low in cases like this one, to
          // increase the likelihood of the full refund coming into effect.
          uint256 private constant _NOT_ENTERED = 1;
          uint256 private constant _ENTERED = 2;
          uint256 private _status;
          constructor() {
              _status = _NOT_ENTERED;
          }
          /**
           * @dev Prevents a contract from calling itself, directly or indirectly.
           * Calling a `nonReentrant` function from another `nonReentrant`
           * function is not supported. It is possible to prevent this from happening
           * by making the `nonReentrant` function external, and make it call a
           * `private` function that does the actual work.
           */
          modifier nonReentrant() {
              // On the first call to nonReentrant, _notEntered will be true
              require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
              // Any calls to nonReentrant after this point will fail
              _status = _ENTERED;
              _;
              // By storing the original value once again, a refund is triggered (see
              // https://eips.ethereum.org/EIPS/eip-2200)
              _status = _NOT_ENTERED;
          }
      }
      // SPDX-License-Identifier: LGPL-3.0-only
      // Vendored from Gnosis utility contracts with minor modifications:
      // - Modified Solidity version
      // - Formatted code
      // - Added linter directives to ignore low level call and assembly warnings
      // <https://github.com/gnosis/util-contracts/blob/v3.1.0-solc-7/contracts/StorageAccessible.sol>
      pragma solidity ^0.7.6;
      /// @title ViewStorageAccessible - Interface on top of StorageAccessible base class to allow simulations from view functions
      interface ViewStorageAccessible {
          /**
           * @dev Same as `simulateDelegatecall` on StorageAccessible. Marked as view so that it can be called from external contracts
           * that want to run simulations from within view functions. Will revert if the invoked simulation attempts to change state.
           */
          function simulateDelegatecall(
              address targetContract,
              bytes memory calldataPayload
          ) external view returns (bytes memory);
          /**
           * @dev Same as `getStorageAt` on StorageAccessible. This method allows reading aribtrary ranges of storage.
           */
          function getStorageAt(uint256 offset, uint256 length)
              external
              view
              returns (bytes memory);
      }
      /// @title StorageAccessible - generic base contract that allows callers to access all internal storage.
      contract StorageAccessible {
          /**
           * @dev Reads `length` bytes of storage in the currents contract
           * @param offset - the offset in the current contract's storage in words to start reading from
           * @param length - the number of words (32 bytes) of data to read
           * @return the bytes that were read.
           */
          function getStorageAt(uint256 offset, uint256 length)
              external
              view
              returns (bytes memory)
          {
              bytes memory result = new bytes(length * 32);
              for (uint256 index = 0; index < length; index++) {
                  // solhint-disable-next-line no-inline-assembly
                  assembly {
                      let word := sload(add(offset, index))
                      mstore(add(add(result, 0x20), mul(index, 0x20)), word)
                  }
              }
              return result;
          }
          /**
           * @dev Performs a delegetecall on a targetContract in the context of self.
           * Internally reverts execution to avoid side effects (making it static). Catches revert and returns encoded result as bytes.
           * @param targetContract Address of the contract containing the code to execute.
           * @param calldataPayload Calldata that should be sent to the target contract (encoded method name and arguments).
           */
          function simulateDelegatecall(
              address targetContract,
              bytes memory calldataPayload
          ) public returns (bytes memory response) {
              bytes memory innerCall =
                  abi.encodeWithSelector(
                      this.simulateDelegatecallInternal.selector,
                      targetContract,
                      calldataPayload
                  );
              // solhint-disable-next-line avoid-low-level-calls
              (, response) = address(this).call(innerCall);
              bool innerSuccess = response[response.length - 1] == 0x01;
              setLength(response, response.length - 1);
              if (innerSuccess) {
                  return response;
              } else {
                  revertWith(response);
              }
          }
          /**
           * @dev Performs a delegetecall on a targetContract in the context of self.
           * Internally reverts execution to avoid side effects (making it static). Returns encoded result as revert message
           * concatenated with the success flag of the inner call as a last byte.
           * @param targetContract Address of the contract containing the code to execute.
           * @param calldataPayload Calldata that should be sent to the target contract (encoded method name and arguments).
           */
          function simulateDelegatecallInternal(
              address targetContract,
              bytes memory calldataPayload
          ) external returns (bytes memory response) {
              bool success;
              // solhint-disable-next-line avoid-low-level-calls
              (success, response) = targetContract.delegatecall(calldataPayload);
              revertWith(abi.encodePacked(response, success));
          }
          function revertWith(bytes memory response) internal pure {
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  revert(add(response, 0x20), mload(response))
              }
          }
          function setLength(bytes memory buffer, uint256 length) internal pure {
              // solhint-disable-next-line no-inline-assembly
              assembly {
                  mstore(buffer, length)
              }
          }
      }