ETH Price: $2,330.97 (-1.29%)

Transaction Decoder

Block:
11556302 at Dec-30-2020 03:51:48 PM +UTC
Transaction Fee:
0.010598335 ETH $24.70
Gas Used:
192,697 Gas / 55 Gwei

Emitted Events:

228 WETH9.Deposit( dst=[Receiver] PayableProxyForSoloMargin, wad=100000000000000000 )
229 SoloMargin.0x91b01baeee3a24b590d112613814d86801005c7ef9353e7fc1eaeaf33ccf83b0( 0x91b01baeee3a24b590d112613814d86801005c7ef9353e7fc1eaeaf33ccf83b0, 000000000000000000000000a8b39829ce2246f89b31c013b8cde15506fb9a76 )
230 SoloMargin.0xf4626fd1187f91e6761ffb8a6ac3e8d9235a4a92da54e43feb0c57c4a4a322ab( 0xf4626fd1187f91e6761ffb8a6ac3e8d9235a4a92da54e43feb0c57c4a4a322ab, 0x0000000000000000000000000000000000000000000000000000000000000000, 0000000000000000000000000000000000000000000000000e190b463a7ea105, 0000000000000000000000000000000000000000000000000de7f8a056743483, 000000000000000000000000000000000000000000000000000000005feca214 )
231 WETH9.Transfer( src=[Receiver] PayableProxyForSoloMargin, dst=SoloMargin, wad=100000000000000000 )
232 SoloMargin.0x2bad8bc95088af2c247b30fa2b2e6a0886f88625e0945cd3051008e0e270198f( 0x2bad8bc95088af2c247b30fa2b2e6a0886f88625e0945cd3051008e0e270198f, 0x000000000000000000000000114a7da7198ee77c0aeef67edf9d9cc0ccf0686f, acffe216790a33e4f58948dc7df613609e1846e230a6cb0f738d4d307aaf85b8, 0000000000000000000000000000000000000000000000000000000000000000, 0000000000000000000000000000000000000000000000000000000000000001, 000000000000000000000000000000000000000000000000016345785d8a0000, 0000000000000000000000000000000000000000000000000000000000000001, 00000000000000000000000000000000000000000000000001628c0e75f7aba8, 000000000000000000000000a8b39829ce2246f89b31c013b8cde15506fb9a76 )

Account State Difference:

  Address   Before After State Difference Code
0x114A7Da7...0CCF0686F
0.16347014 Eth
Nonce: 1
0.052871805 Eth
Nonce: 2
0.110598335
0x1E0447b1...659614e4e
(dYdX: Solo Margin)
0xa8b39829...506Fb9A76
(dYdX: Payable Proxy For Solo Margin)
0xC02aaA39...83C756Cc2 5,346,977.481274072011013409 Eth5,346,977.581274072011013409 Eth0.1
(BTC.com Pool)
98.922117423255247356 Eth98.932715758255247356 Eth0.010598335

Execution Trace

ETH 0.1 PayableProxyForSoloMargin.operate( accounts=, actions=, sendEthTo=0x114A7Da7198EE77C0AEEf67EDF9d9cC0CCF0686F )
  • ETH 0.1 WETH9.CALL( )
  • SoloMargin.operate( accounts=, actions= )
    • OperationImpl.bd76ecfd( )
      • WethPriceOracle.getPrice( 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 ) => ( [{name:value, type:uint256, order:1, indexed:false, value:732875000000000000000, valueString:732875000000000000000}] )
        • P1MirrorOracleETHUSD.STATICCALL( )
        • DoubleExponentInterestSetter.getInterestRate( 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, borrowWei=5313841607761952208193, supplyWei=79735080301263538377947 ) => ( [{name:value, type:uint256, order:1, indexed:false, value:211325819, valueString:211325819}] )
        • WETH9.transferFrom( src=0xa8b39829cE2246f89B31C013b8Cde15506Fb9A76, dst=0x1E0447b19BB6EcFdAe1e4AE1694b0C3659614e4e, wad=100000000000000000 ) => ( True )
        • WETH9.balanceOf( 0xa8b39829cE2246f89B31C013b8Cde15506Fb9A76 ) => ( 0 )
          File 1 of 7: PayableProxyForSoloMargin
          /*
          
              Copyright 2019 dYdX Trading Inc.
          
              Licensed under the Apache License, Version 2.0 (the "License");
              you may not use this file except in compliance with the License.
              You may obtain a copy of the License at
          
              http://www.apache.org/licenses/LICENSE-2.0
          
              Unless required by applicable law or agreed to in writing, software
              distributed under the License is distributed on an "AS IS" BASIS,
              WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
              See the License for the specific language governing permissions and
              limitations under the License.
          
          */
          
          pragma solidity 0.5.7;
          pragma experimental ABIEncoderV2;
          
          // File: canonical-weth/contracts/WETH9.sol
          
          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() external payable {
                  deposit();
              }
              function deposit() public payable {
                  balanceOf[msg.sender] += msg.value;
                  emit Deposit(msg.sender, msg.value);
              }
              function withdraw(uint wad) public {
                  require(balanceOf[msg.sender] >= wad);
                  balanceOf[msg.sender] -= wad;
                  msg.sender.transfer(wad);
                  emit Withdrawal(msg.sender, wad);
              }
          
              function totalSupply() public view returns (uint) {
                  return address(this).balance;
              }
          
              function approve(address guy, uint wad) public returns (bool) {
                  allowance[msg.sender][guy] = wad;
                  emit 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;
          
                  emit Transfer(src, dst, wad);
          
                  return true;
              }
          }
          
          // File: openzeppelin-solidity/contracts/utils/ReentrancyGuard.sol
          
          /**
           * @title Helps contracts guard against reentrancy attacks.
           * @author Remco Bloemen <remco@2π.com>, Eenae <alexey@mixbytes.io>
           * @dev If you mark a function `nonReentrant`, you should also
           * mark it `external`.
           */
          contract ReentrancyGuard {
              /// @dev counter to allow mutex lock with only one SSTORE operation
              uint256 private _guardCounter;
          
              constructor () internal {
                  // The counter starts at one to prevent changing it from zero to a non-zero
                  // value, which is a more expensive operation.
                  _guardCounter = 1;
              }
          
              /**
               * @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() {
                  _guardCounter += 1;
                  uint256 localCounter = _guardCounter;
                  _;
                  require(localCounter == _guardCounter);
              }
          }
          
          // File: openzeppelin-solidity/contracts/ownership/Ownable.sol
          
          /**
           * @title Ownable
           * @dev The Ownable contract has an owner address, and provides basic authorization control
           * functions, this simplifies the implementation of "user permissions".
           */
          contract Ownable {
              address private _owner;
          
              event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
          
              /**
               * @dev The Ownable constructor sets the original `owner` of the contract to the sender
               * account.
               */
              constructor () internal {
                  _owner = msg.sender;
                  emit OwnershipTransferred(address(0), _owner);
              }
          
              /**
               * @return the address of the owner.
               */
              function owner() public view returns (address) {
                  return _owner;
              }
          
              /**
               * @dev Throws if called by any account other than the owner.
               */
              modifier onlyOwner() {
                  require(isOwner());
                  _;
              }
          
              /**
               * @return true if `msg.sender` is the owner of the contract.
               */
              function isOwner() public view returns (bool) {
                  return msg.sender == _owner;
              }
          
              /**
               * @dev Allows the current owner to relinquish control of the contract.
               * @notice Renouncing to ownership will leave the contract without an owner.
               * It will not be possible to call the functions with the `onlyOwner`
               * modifier anymore.
               */
              function renounceOwnership() public onlyOwner {
                  emit OwnershipTransferred(_owner, address(0));
                  _owner = address(0);
              }
          
              /**
               * @dev Allows the current owner to transfer control of the contract to a newOwner.
               * @param newOwner The address to transfer ownership to.
               */
              function transferOwnership(address newOwner) public onlyOwner {
                  _transferOwnership(newOwner);
              }
          
              /**
               * @dev Transfers control of the contract to a newOwner.
               * @param newOwner The address to transfer ownership to.
               */
              function _transferOwnership(address newOwner) internal {
                  require(newOwner != address(0));
                  emit OwnershipTransferred(_owner, newOwner);
                  _owner = newOwner;
              }
          }
          
          // File: openzeppelin-solidity/contracts/math/SafeMath.sol
          
          /**
           * @title SafeMath
           * @dev Unsigned math operations with safety checks that revert on error
           */
          library SafeMath {
              /**
              * @dev Multiplies two unsigned integers, reverts on overflow.
              */
              function mul(uint256 a, uint256 b) internal pure returns (uint256) {
                  // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
                  // benefit is lost if 'b' is also tested.
                  // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
                  if (a == 0) {
                      return 0;
                  }
          
                  uint256 c = a * b;
                  require(c / a == b);
          
                  return c;
              }
          
              /**
              * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
              */
              function div(uint256 a, uint256 b) internal pure returns (uint256) {
                  // Solidity only automatically asserts when dividing by 0
                  require(b > 0);
                  uint256 c = a / b;
                  // assert(a == b * c + a % b); // There is no case in which this doesn't hold
          
                  return c;
              }
          
              /**
              * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
              */
              function sub(uint256 a, uint256 b) internal pure returns (uint256) {
                  require(b <= a);
                  uint256 c = a - b;
          
                  return c;
              }
          
              /**
              * @dev Adds two unsigned integers, reverts on overflow.
              */
              function add(uint256 a, uint256 b) internal pure returns (uint256) {
                  uint256 c = a + b;
                  require(c >= a);
          
                  return c;
              }
          
              /**
              * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
              * reverts when dividing by zero.
              */
              function mod(uint256 a, uint256 b) internal pure returns (uint256) {
                  require(b != 0);
                  return a % b;
              }
          }
          
          // File: contracts/protocol/lib/Require.sol
          
          /**
           * @title Require
           * @author dYdX
           *
           * Stringifies parameters to pretty-print revert messages. Costs more gas than regular require()
           */
          library Require {
          
              // ============ Constants ============
          
              uint256 constant ASCII_ZERO = 48; // '0'
              uint256 constant ASCII_RELATIVE_ZERO = 87; // 'a' - 10
              uint256 constant ASCII_LOWER_EX = 120; // 'x'
              bytes2 constant COLON = 0x3a20; // ': '
              bytes2 constant COMMA = 0x2c20; // ', '
              bytes2 constant LPAREN = 0x203c; // ' <'
              byte constant RPAREN = 0x3e; // '>'
              uint256 constant FOUR_BIT_MASK = 0xf;
          
              // ============ Library Functions ============
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason)
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  uint256 payloadA
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  uint256 payloadA,
                  uint256 payloadB
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  COMMA,
                                  stringify(payloadB),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  address payloadA
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  address payloadA,
                  uint256 payloadB
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  COMMA,
                                  stringify(payloadB),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  address payloadA,
                  uint256 payloadB,
                  uint256 payloadC
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  COMMA,
                                  stringify(payloadB),
                                  COMMA,
                                  stringify(payloadC),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              // ============ Private Functions ============
          
              function stringify(
                  bytes32 input
              )
                  private
                  pure
                  returns (bytes memory)
              {
                  // put the input bytes into the result
                  bytes memory result = abi.encodePacked(input);
          
                  // determine the length of the input by finding the location of the last non-zero byte
                  for (uint256 i = 32; i > 0; ) {
                      // reverse-for-loops with unsigned integer
                      /* solium-disable-next-line security/no-modify-for-iter-var */
                      i--;
          
                      // find the last non-zero byte in order to determine the length
                      if (result[i] != 0) {
                          uint256 length = i + 1;
          
                          /* solium-disable-next-line security/no-inline-assembly */
                          assembly {
                              mstore(result, length) // r.length = length;
                          }
          
                          return result;
                      }
                  }
          
                  // all bytes are zero
                  return new bytes(0);
              }
          
              function stringify(
                  uint256 input
              )
                  private
                  pure
                  returns (bytes memory)
              {
                  if (input == 0) {
                      return "0";
                  }
          
                  // get the final string length
                  uint256 j = input;
                  uint256 length;
                  while (j != 0) {
                      length++;
                      j /= 10;
                  }
          
                  // allocate the string
                  bytes memory bstr = new bytes(length);
          
                  // populate the string starting with the least-significant character
                  j = input;
                  for (uint256 i = length; i > 0; ) {
                      // reverse-for-loops with unsigned integer
                      /* solium-disable-next-line security/no-modify-for-iter-var */
                      i--;
          
                      // take last decimal digit
                      bstr[i] = byte(uint8(ASCII_ZERO + (j % 10)));
          
                      // remove the last decimal digit
                      j /= 10;
                  }
          
                  return bstr;
              }
          
              function stringify(
                  address input
              )
                  private
                  pure
                  returns (bytes memory)
              {
                  uint256 z = uint256(input);
          
                  // addresses are "0x" followed by 20 bytes of data which take up 2 characters each
                  bytes memory result = new bytes(42);
          
                  // populate the result with "0x"
                  result[0] = byte(uint8(ASCII_ZERO));
                  result[1] = byte(uint8(ASCII_LOWER_EX));
          
                  // for each byte (starting from the lowest byte), populate the result with two characters
                  for (uint256 i = 0; i < 20; i++) {
                      // each byte takes two characters
                      uint256 shift = i * 2;
          
                      // populate the least-significant character
                      result[41 - shift] = char(z & FOUR_BIT_MASK);
                      z = z >> 4;
          
                      // populate the most-significant character
                      result[40 - shift] = char(z & FOUR_BIT_MASK);
                      z = z >> 4;
                  }
          
                  return result;
              }
          
              function char(
                  uint256 input
              )
                  private
                  pure
                  returns (byte)
              {
                  // return ASCII digit (0-9)
                  if (input < 10) {
                      return byte(uint8(input + ASCII_ZERO));
                  }
          
                  // return ASCII letter (a-f)
                  return byte(uint8(input + ASCII_RELATIVE_ZERO));
              }
          }
          
          // File: contracts/protocol/lib/Math.sol
          
          /**
           * @title Math
           * @author dYdX
           *
           * Library for non-standard Math functions
           */
          library Math {
              using SafeMath for uint256;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Math";
          
              // ============ Library Functions ============
          
              /*
               * Return target * (numerator / denominator).
               */
              function getPartial(
                  uint256 target,
                  uint256 numerator,
                  uint256 denominator
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return target.mul(numerator).div(denominator);
              }
          
              /*
               * Return target * (numerator / denominator), but rounded up.
               */
              function getPartialRoundUp(
                  uint256 target,
                  uint256 numerator,
                  uint256 denominator
              )
                  internal
                  pure
                  returns (uint256)
              {
                  if (target == 0 || numerator == 0) {
                      // SafeMath will check for zero denominator
                      return SafeMath.div(0, denominator);
                  }
                  return target.mul(numerator).sub(1).div(denominator).add(1);
              }
          
              function to128(
                  uint256 number
              )
                  internal
                  pure
                  returns (uint128)
              {
                  uint128 result = uint128(number);
                  Require.that(
                      result == number,
                      FILE,
                      "Unsafe cast to uint128"
                  );
                  return result;
              }
          
              function to96(
                  uint256 number
              )
                  internal
                  pure
                  returns (uint96)
              {
                  uint96 result = uint96(number);
                  Require.that(
                      result == number,
                      FILE,
                      "Unsafe cast to uint96"
                  );
                  return result;
              }
          
              function to32(
                  uint256 number
              )
                  internal
                  pure
                  returns (uint32)
              {
                  uint32 result = uint32(number);
                  Require.that(
                      result == number,
                      FILE,
                      "Unsafe cast to uint32"
                  );
                  return result;
              }
          
              function min(
                  uint256 a,
                  uint256 b
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return a < b ? a : b;
              }
          
              function max(
                  uint256 a,
                  uint256 b
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return a > b ? a : b;
              }
          }
          
          // File: contracts/protocol/lib/Types.sol
          
          /**
           * @title Types
           * @author dYdX
           *
           * Library for interacting with the basic structs used in Solo
           */
          library Types {
              using Math for uint256;
          
              // ============ AssetAmount ============
          
              enum AssetDenomination {
                  Wei, // the amount is denominated in wei
                  Par  // the amount is denominated in par
              }
          
              enum AssetReference {
                  Delta, // the amount is given as a delta from the current value
                  Target // the amount is given as an exact number to end up at
              }
          
              struct AssetAmount {
                  bool sign; // true if positive
                  AssetDenomination denomination;
                  AssetReference ref;
                  uint256 value;
              }
          
              // ============ Par (Principal Amount) ============
          
              // Total borrow and supply values for a market
              struct TotalPar {
                  uint128 borrow;
                  uint128 supply;
              }
          
              // Individual principal amount for an account
              struct Par {
                  bool sign; // true if positive
                  uint128 value;
              }
          
              function zeroPar()
                  internal
                  pure
                  returns (Par memory)
              {
                  return Par({
                      sign: false,
                      value: 0
                  });
              }
          
              function sub(
                  Par memory a,
                  Par memory b
              )
                  internal
                  pure
                  returns (Par memory)
              {
                  return add(a, negative(b));
              }
          
              function add(
                  Par memory a,
                  Par memory b
              )
                  internal
                  pure
                  returns (Par memory)
              {
                  Par memory result;
                  if (a.sign == b.sign) {
                      result.sign = a.sign;
                      result.value = SafeMath.add(a.value, b.value).to128();
                  } else {
                      if (a.value >= b.value) {
                          result.sign = a.sign;
                          result.value = SafeMath.sub(a.value, b.value).to128();
                      } else {
                          result.sign = b.sign;
                          result.value = SafeMath.sub(b.value, a.value).to128();
                      }
                  }
                  return result;
              }
          
              function equals(
                  Par memory a,
                  Par memory b
              )
                  internal
                  pure
                  returns (bool)
              {
                  if (a.value == b.value) {
                      if (a.value == 0) {
                          return true;
                      }
                      return a.sign == b.sign;
                  }
                  return false;
              }
          
              function negative(
                  Par memory a
              )
                  internal
                  pure
                  returns (Par memory)
              {
                  return Par({
                      sign: !a.sign,
                      value: a.value
                  });
              }
          
              function isNegative(
                  Par memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return !a.sign && a.value > 0;
              }
          
              function isPositive(
                  Par memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.sign && a.value > 0;
              }
          
              function isZero(
                  Par memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.value == 0;
              }
          
              // ============ Wei (Token Amount) ============
          
              // Individual token amount for an account
              struct Wei {
                  bool sign; // true if positive
                  uint256 value;
              }
          
              function zeroWei()
                  internal
                  pure
                  returns (Wei memory)
              {
                  return Wei({
                      sign: false,
                      value: 0
                  });
              }
          
              function sub(
                  Wei memory a,
                  Wei memory b
              )
                  internal
                  pure
                  returns (Wei memory)
              {
                  return add(a, negative(b));
              }
          
              function add(
                  Wei memory a,
                  Wei memory b
              )
                  internal
                  pure
                  returns (Wei memory)
              {
                  Wei memory result;
                  if (a.sign == b.sign) {
                      result.sign = a.sign;
                      result.value = SafeMath.add(a.value, b.value);
                  } else {
                      if (a.value >= b.value) {
                          result.sign = a.sign;
                          result.value = SafeMath.sub(a.value, b.value);
                      } else {
                          result.sign = b.sign;
                          result.value = SafeMath.sub(b.value, a.value);
                      }
                  }
                  return result;
              }
          
              function equals(
                  Wei memory a,
                  Wei memory b
              )
                  internal
                  pure
                  returns (bool)
              {
                  if (a.value == b.value) {
                      if (a.value == 0) {
                          return true;
                      }
                      return a.sign == b.sign;
                  }
                  return false;
              }
          
              function negative(
                  Wei memory a
              )
                  internal
                  pure
                  returns (Wei memory)
              {
                  return Wei({
                      sign: !a.sign,
                      value: a.value
                  });
              }
          
              function isNegative(
                  Wei memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return !a.sign && a.value > 0;
              }
          
              function isPositive(
                  Wei memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.sign && a.value > 0;
              }
          
              function isZero(
                  Wei memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.value == 0;
              }
          }
          
          // File: contracts/protocol/lib/Account.sol
          
          /**
           * @title Account
           * @author dYdX
           *
           * Library of structs and functions that represent an account
           */
          library Account {
              // ============ Enums ============
          
              /*
               * Most-recently-cached account status.
               *
               * Normal: Can only be liquidated if the account values are violating the global margin-ratio.
               * Liquid: Can be liquidated no matter the account values.
               *         Can be vaporized if there are no more positive account values.
               * Vapor:  Has only negative (or zeroed) account values. Can be vaporized.
               *
               */
              enum Status {
                  Normal,
                  Liquid,
                  Vapor
              }
          
              // ============ Structs ============
          
              // Represents the unique key that specifies an account
              struct Info {
                  address owner;  // The address that owns the account
                  uint256 number; // A nonce that allows a single address to control many accounts
              }
          
              // The complete storage for any account
              struct Storage {
                  mapping (uint256 => Types.Par) balances; // Mapping from marketId to principal
                  Status status;
              }
          
              // ============ Library Functions ============
          
              function equals(
                  Info memory a,
                  Info memory b
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.owner == b.owner && a.number == b.number;
              }
          }
          
          // File: contracts/protocol/lib/Monetary.sol
          
          /**
           * @title Monetary
           * @author dYdX
           *
           * Library for types involving money
           */
          library Monetary {
          
              /*
               * The price of a base-unit of an asset.
               */
              struct Price {
                  uint256 value;
              }
          
              /*
               * Total value of an some amount of an asset. Equal to (price * amount).
               */
              struct Value {
                  uint256 value;
              }
          }
          
          // File: contracts/protocol/lib/Cache.sol
          
          /**
           * @title Cache
           * @author dYdX
           *
           * Library for caching information about markets
           */
          library Cache {
              using Cache for MarketCache;
              using Storage for Storage.State;
          
              // ============ Structs ============
          
              struct MarketInfo {
                  bool isClosing;
                  uint128 borrowPar;
                  Monetary.Price price;
              }
          
              struct MarketCache {
                  MarketInfo[] markets;
              }
          
              // ============ Setter Functions ============
          
              /**
               * Initialize an empty cache for some given number of total markets.
               */
              function create(
                  uint256 numMarkets
              )
                  internal
                  pure
                  returns (MarketCache memory)
              {
                  return MarketCache({
                      markets: new MarketInfo[](numMarkets)
                  });
              }
          
              /**
               * Add market information (price and total borrowed par if the market is closing) to the cache.
               * Return true if the market information did not previously exist in the cache.
               */
              function addMarket(
                  MarketCache memory cache,
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  view
                  returns (bool)
              {
                  if (cache.hasMarket(marketId)) {
                      return false;
                  }
                  cache.markets[marketId].price = state.fetchPrice(marketId);
                  if (state.markets[marketId].isClosing) {
                      cache.markets[marketId].isClosing = true;
                      cache.markets[marketId].borrowPar = state.getTotalPar(marketId).borrow;
                  }
                  return true;
              }
          
              // ============ Getter Functions ============
          
              function getNumMarkets(
                  MarketCache memory cache
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return cache.markets.length;
              }
          
              function hasMarket(
                  MarketCache memory cache,
                  uint256 marketId
              )
                  internal
                  pure
                  returns (bool)
              {
                  return cache.markets[marketId].price.value != 0;
              }
          
              function getIsClosing(
                  MarketCache memory cache,
                  uint256 marketId
              )
                  internal
                  pure
                  returns (bool)
              {
                  return cache.markets[marketId].isClosing;
              }
          
              function getPrice(
                  MarketCache memory cache,
                  uint256 marketId
              )
                  internal
                  pure
                  returns (Monetary.Price memory)
              {
                  return cache.markets[marketId].price;
              }
          
              function getBorrowPar(
                  MarketCache memory cache,
                  uint256 marketId
              )
                  internal
                  pure
                  returns (uint128)
              {
                  return cache.markets[marketId].borrowPar;
              }
          }
          
          // File: contracts/protocol/lib/Decimal.sol
          
          /**
           * @title Decimal
           * @author dYdX
           *
           * Library that defines a fixed-point number with 18 decimal places.
           */
          library Decimal {
              using SafeMath for uint256;
          
              // ============ Constants ============
          
              uint256 constant BASE = 10**18;
          
              // ============ Structs ============
          
              struct D256 {
                  uint256 value;
              }
          
              // ============ Functions ============
          
              function one()
                  internal
                  pure
                  returns (D256 memory)
              {
                  return D256({ value: BASE });
              }
          
              function onePlus(
                  D256 memory d
              )
                  internal
                  pure
                  returns (D256 memory)
              {
                  return D256({ value: d.value.add(BASE) });
              }
          
              function mul(
                  uint256 target,
                  D256 memory d
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return Math.getPartial(target, d.value, BASE);
              }
          
              function div(
                  uint256 target,
                  D256 memory d
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return Math.getPartial(target, BASE, d.value);
              }
          }
          
          // File: contracts/protocol/lib/Time.sol
          
          /**
           * @title Time
           * @author dYdX
           *
           * Library for dealing with time, assuming timestamps fit within 32 bits (valid until year 2106)
           */
          library Time {
          
              // ============ Library Functions ============
          
              function currentTime()
                  internal
                  view
                  returns (uint32)
              {
                  return Math.to32(block.timestamp);
              }
          }
          
          // File: contracts/protocol/lib/Interest.sol
          
          /**
           * @title Interest
           * @author dYdX
           *
           * Library for managing the interest rate and interest indexes of Solo
           */
          library Interest {
              using Math for uint256;
              using SafeMath for uint256;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Interest";
              uint64 constant BASE = 10**18;
          
              // ============ Structs ============
          
              struct Rate {
                  uint256 value;
              }
          
              struct Index {
                  uint96 borrow;
                  uint96 supply;
                  uint32 lastUpdate;
              }
          
              // ============ Library Functions ============
          
              /**
               * Get a new market Index based on the old index and market interest rate.
               * Calculate interest for borrowers by using the formula rate * time. Approximates
               * continuously-compounded interest when called frequently, but is much more
               * gas-efficient to calculate. For suppliers, the interest rate is adjusted by the earningsRate,
               * then prorated the across all suppliers.
               *
               * @param  index         The old index for a market
               * @param  rate          The current interest rate of the market
               * @param  totalPar      The total supply and borrow par values of the market
               * @param  earningsRate  The portion of the interest that is forwarded to the suppliers
               * @return               The updated index for a market
               */
              function calculateNewIndex(
                  Index memory index,
                  Rate memory rate,
                  Types.TotalPar memory totalPar,
                  Decimal.D256 memory earningsRate
              )
                  internal
                  view
                  returns (Index memory)
              {
                  (
                      Types.Wei memory supplyWei,
                      Types.Wei memory borrowWei
                  ) = totalParToWei(totalPar, index);
          
                  // get interest increase for borrowers
                  uint32 currentTime = Time.currentTime();
                  uint256 borrowInterest = rate.value.mul(uint256(currentTime).sub(index.lastUpdate));
          
                  // get interest increase for suppliers
                  uint256 supplyInterest;
                  if (Types.isZero(supplyWei)) {
                      supplyInterest = 0;
                  } else {
                      supplyInterest = Decimal.mul(borrowInterest, earningsRate);
                      if (borrowWei.value < supplyWei.value) {
                          supplyInterest = Math.getPartial(supplyInterest, borrowWei.value, supplyWei.value);
                      }
                  }
                  assert(supplyInterest <= borrowInterest);
          
                  return Index({
                      borrow: Math.getPartial(index.borrow, borrowInterest, BASE).add(index.borrow).to96(),
                      supply: Math.getPartial(index.supply, supplyInterest, BASE).add(index.supply).to96(),
                      lastUpdate: currentTime
                  });
              }
          
              function newIndex()
                  internal
                  view
                  returns (Index memory)
              {
                  return Index({
                      borrow: BASE,
                      supply: BASE,
                      lastUpdate: Time.currentTime()
                  });
              }
          
              /*
               * Convert a principal amount to a token amount given an index.
               */
              function parToWei(
                  Types.Par memory input,
                  Index memory index
              )
                  internal
                  pure
                  returns (Types.Wei memory)
              {
                  uint256 inputValue = uint256(input.value);
                  if (input.sign) {
                      return Types.Wei({
                          sign: true,
                          value: inputValue.getPartial(index.supply, BASE)
                      });
                  } else {
                      return Types.Wei({
                          sign: false,
                          value: inputValue.getPartialRoundUp(index.borrow, BASE)
                      });
                  }
              }
          
              /*
               * Convert a token amount to a principal amount given an index.
               */
              function weiToPar(
                  Types.Wei memory input,
                  Index memory index
              )
                  internal
                  pure
                  returns (Types.Par memory)
              {
                  if (input.sign) {
                      return Types.Par({
                          sign: true,
                          value: input.value.getPartial(BASE, index.supply).to128()
                      });
                  } else {
                      return Types.Par({
                          sign: false,
                          value: input.value.getPartialRoundUp(BASE, index.borrow).to128()
                      });
                  }
              }
          
              /*
               * Convert the total supply and borrow principal amounts of a market to total supply and borrow
               * token amounts.
               */
              function totalParToWei(
                  Types.TotalPar memory totalPar,
                  Index memory index
              )
                  internal
                  pure
                  returns (Types.Wei memory, Types.Wei memory)
              {
                  Types.Par memory supplyPar = Types.Par({
                      sign: true,
                      value: totalPar.supply
                  });
                  Types.Par memory borrowPar = Types.Par({
                      sign: false,
                      value: totalPar.borrow
                  });
                  Types.Wei memory supplyWei = parToWei(supplyPar, index);
                  Types.Wei memory borrowWei = parToWei(borrowPar, index);
                  return (supplyWei, borrowWei);
              }
          }
          
          // File: contracts/protocol/interfaces/IErc20.sol
          
          /**
           * @title IErc20
           * @author dYdX
           *
           * Interface for using ERC20 Tokens. We have to use a special interface to call ERC20 functions so
           * that we don't automatically revert when calling non-compliant tokens that have no return value for
           * transfer(), transferFrom(), or approve().
           */
          interface IErc20 {
              event Transfer(
                  address indexed from,
                  address indexed to,
                  uint256 value
              );
          
              event Approval(
                  address indexed owner,
                  address indexed spender,
                  uint256 value
              );
          
              function totalSupply(
              )
                  external
                  view
                  returns (uint256);
          
              function balanceOf(
                  address who
              )
                  external
                  view
                  returns (uint256);
          
              function allowance(
                  address owner,
                  address spender
              )
                  external
                  view
                  returns (uint256);
          
              function transfer(
                  address to,
                  uint256 value
              )
                  external;
          
              function transferFrom(
                  address from,
                  address to,
                  uint256 value
              )
                  external;
          
              function approve(
                  address spender,
                  uint256 value
              )
                  external;
          
              function name()
                  external
                  view
                  returns (string memory);
          
              function symbol()
                  external
                  view
                  returns (string memory);
          
              function decimals()
                  external
                  view
                  returns (uint8);
          }
          
          // File: contracts/protocol/lib/Token.sol
          
          /**
           * @title Token
           * @author dYdX
           *
           * This library contains basic functions for interacting with ERC20 tokens. Modified to work with
           * tokens that don't adhere strictly to the ERC20 standard (for example tokens that don't return a
           * boolean value on success).
           */
          library Token {
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Token";
          
              // ============ Library Functions ============
          
              function balanceOf(
                  address token,
                  address owner
              )
                  internal
                  view
                  returns (uint256)
              {
                  return IErc20(token).balanceOf(owner);
              }
          
              function allowance(
                  address token,
                  address owner,
                  address spender
              )
                  internal
                  view
                  returns (uint256)
              {
                  return IErc20(token).allowance(owner, spender);
              }
          
              function approve(
                  address token,
                  address spender,
                  uint256 amount
              )
                  internal
              {
                  IErc20(token).approve(spender, amount);
          
                  Require.that(
                      checkSuccess(),
                      FILE,
                      "Approve failed"
                  );
              }
          
              function approveMax(
                  address token,
                  address spender
              )
                  internal
              {
                  approve(
                      token,
                      spender,
                      uint256(-1)
                  );
              }
          
              function transfer(
                  address token,
                  address to,
                  uint256 amount
              )
                  internal
              {
                  if (amount == 0 || to == address(this)) {
                      return;
                  }
          
                  IErc20(token).transfer(to, amount);
          
                  Require.that(
                      checkSuccess(),
                      FILE,
                      "Transfer failed"
                  );
              }
          
              function transferFrom(
                  address token,
                  address from,
                  address to,
                  uint256 amount
              )
                  internal
              {
                  if (amount == 0 || to == from) {
                      return;
                  }
          
                  IErc20(token).transferFrom(from, to, amount);
          
                  Require.that(
                      checkSuccess(),
                      FILE,
                      "TransferFrom failed"
                  );
              }
          
              // ============ Private Functions ============
          
              /**
               * Check the return value of the previous function up to 32 bytes. Return true if the previous
               * function returned 0 bytes or 32 bytes that are not all-zero.
               */
              function checkSuccess(
              )
                  private
                  pure
                  returns (bool)
              {
                  uint256 returnValue = 0;
          
                  /* solium-disable-next-line security/no-inline-assembly */
                  assembly {
                      // check number of bytes returned from last function call
                      switch returndatasize
          
                      // no bytes returned: assume success
                      case 0x0 {
                          returnValue := 1
                      }
          
                      // 32 bytes returned: check if non-zero
                      case 0x20 {
                          // copy 32 bytes into scratch space
                          returndatacopy(0x0, 0x0, 0x20)
          
                          // load those bytes into returnValue
                          returnValue := mload(0x0)
                      }
          
                      // not sure what was returned: don't mark as success
                      default { }
                  }
          
                  return returnValue != 0;
              }
          }
          
          // File: contracts/protocol/interfaces/IInterestSetter.sol
          
          /**
           * @title IInterestSetter
           * @author dYdX
           *
           * Interface that Interest Setters for Solo must implement in order to report interest rates.
           */
          interface IInterestSetter {
          
              // ============ Public Functions ============
          
              /**
               * Get the interest rate of a token given some borrowed and supplied amounts
               *
               * @param  token        The address of the ERC20 token for the market
               * @param  borrowWei    The total borrowed token amount for the market
               * @param  supplyWei    The total supplied token amount for the market
               * @return              The interest rate per second
               */
              function getInterestRate(
                  address token,
                  uint256 borrowWei,
                  uint256 supplyWei
              )
                  external
                  view
                  returns (Interest.Rate memory);
          }
          
          // File: contracts/protocol/interfaces/IPriceOracle.sol
          
          /**
           * @title IPriceOracle
           * @author dYdX
           *
           * Interface that Price Oracles for Solo must implement in order to report prices.
           */
          contract IPriceOracle {
          
              // ============ Constants ============
          
              uint256 public constant ONE_DOLLAR = 10 ** 36;
          
              // ============ Public Functions ============
          
              /**
               * Get the price of a token
               *
               * @param  token  The ERC20 token address of the market
               * @return        The USD price of a base unit of the token, then multiplied by 10^36.
               *                So a USD-stable coin with 18 decimal places would return 10^18.
               *                This is the price of the base unit rather than the price of a "human-readable"
               *                token amount. Every ERC20 may have a different number of decimals.
               */
              function getPrice(
                  address token
              )
                  public
                  view
                  returns (Monetary.Price memory);
          }
          
          // File: contracts/protocol/lib/Storage.sol
          
          /**
           * @title Storage
           * @author dYdX
           *
           * Functions for reading, writing, and verifying state in Solo
           */
          library Storage {
              using Cache for Cache.MarketCache;
              using Storage for Storage.State;
              using Math for uint256;
              using Types for Types.Par;
              using Types for Types.Wei;
              using SafeMath for uint256;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Storage";
          
              // ============ Structs ============
          
              // All information necessary for tracking a market
              struct Market {
                  // Contract address of the associated ERC20 token
                  address token;
          
                  // Total aggregated supply and borrow amount of the entire market
                  Types.TotalPar totalPar;
          
                  // Interest index of the market
                  Interest.Index index;
          
                  // Contract address of the price oracle for this market
                  IPriceOracle priceOracle;
          
                  // Contract address of the interest setter for this market
                  IInterestSetter interestSetter;
          
                  // Multiplier on the marginRatio for this market
                  Decimal.D256 marginPremium;
          
                  // Multiplier on the liquidationSpread for this market
                  Decimal.D256 spreadPremium;
          
                  // Whether additional borrows are allowed for this market
                  bool isClosing;
              }
          
              // The global risk parameters that govern the health and security of the system
              struct RiskParams {
                  // Required ratio of over-collateralization
                  Decimal.D256 marginRatio;
          
                  // Percentage penalty incurred by liquidated accounts
                  Decimal.D256 liquidationSpread;
          
                  // Percentage of the borrower's interest fee that gets passed to the suppliers
                  Decimal.D256 earningsRate;
          
                  // The minimum absolute borrow value of an account
                  // There must be sufficient incentivize to liquidate undercollateralized accounts
                  Monetary.Value minBorrowedValue;
              }
          
              // The maximum RiskParam values that can be set
              struct RiskLimits {
                  uint64 marginRatioMax;
                  uint64 liquidationSpreadMax;
                  uint64 earningsRateMax;
                  uint64 marginPremiumMax;
                  uint64 spreadPremiumMax;
                  uint128 minBorrowedValueMax;
              }
          
              // The entire storage state of Solo
              struct State {
                  // number of markets
                  uint256 numMarkets;
          
                  // marketId => Market
                  mapping (uint256 => Market) markets;
          
                  // owner => account number => Account
                  mapping (address => mapping (uint256 => Account.Storage)) accounts;
          
                  // Addresses that can control other users accounts
                  mapping (address => mapping (address => bool)) operators;
          
                  // Addresses that can control all users accounts
                  mapping (address => bool) globalOperators;
          
                  // mutable risk parameters of the system
                  RiskParams riskParams;
          
                  // immutable risk limits of the system
                  RiskLimits riskLimits;
              }
          
              // ============ Functions ============
          
              function getToken(
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  view
                  returns (address)
              {
                  return state.markets[marketId].token;
              }
          
              function getTotalPar(
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  view
                  returns (Types.TotalPar memory)
              {
                  return state.markets[marketId].totalPar;
              }
          
              function getIndex(
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  view
                  returns (Interest.Index memory)
              {
                  return state.markets[marketId].index;
              }
          
              function getNumExcessTokens(
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  view
                  returns (Types.Wei memory)
              {
                  Interest.Index memory index = state.getIndex(marketId);
                  Types.TotalPar memory totalPar = state.getTotalPar(marketId);
          
                  address token = state.getToken(marketId);
          
                  Types.Wei memory balanceWei = Types.Wei({
                      sign: true,
                      value: Token.balanceOf(token, address(this))
                  });
          
                  (
                      Types.Wei memory supplyWei,
                      Types.Wei memory borrowWei
                  ) = Interest.totalParToWei(totalPar, index);
          
                  // borrowWei is negative, so subtracting it makes the value more positive
                  return balanceWei.sub(borrowWei).sub(supplyWei);
              }
          
              function getStatus(
                  Storage.State storage state,
                  Account.Info memory account
              )
                  internal
                  view
                  returns (Account.Status)
              {
                  return state.accounts[account.owner][account.number].status;
              }
          
              function getPar(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 marketId
              )
                  internal
                  view
                  returns (Types.Par memory)
              {
                  return state.accounts[account.owner][account.number].balances[marketId];
              }
          
              function getWei(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 marketId
              )
                  internal
                  view
                  returns (Types.Wei memory)
              {
                  Types.Par memory par = state.getPar(account, marketId);
          
                  if (par.isZero()) {
                      return Types.zeroWei();
                  }
          
                  Interest.Index memory index = state.getIndex(marketId);
                  return Interest.parToWei(par, index);
              }
          
              function getLiquidationSpreadForPair(
                  Storage.State storage state,
                  uint256 heldMarketId,
                  uint256 owedMarketId
              )
                  internal
                  view
                  returns (Decimal.D256 memory)
              {
                  uint256 result = state.riskParams.liquidationSpread.value;
                  result = Decimal.mul(result, Decimal.onePlus(state.markets[heldMarketId].spreadPremium));
                  result = Decimal.mul(result, Decimal.onePlus(state.markets[owedMarketId].spreadPremium));
                  return Decimal.D256({
                      value: result
                  });
              }
          
              function fetchNewIndex(
                  Storage.State storage state,
                  uint256 marketId,
                  Interest.Index memory index
              )
                  internal
                  view
                  returns (Interest.Index memory)
              {
                  Interest.Rate memory rate = state.fetchInterestRate(marketId, index);
          
                  return Interest.calculateNewIndex(
                      index,
                      rate,
                      state.getTotalPar(marketId),
                      state.riskParams.earningsRate
                  );
              }
          
              function fetchInterestRate(
                  Storage.State storage state,
                  uint256 marketId,
                  Interest.Index memory index
              )
                  internal
                  view
                  returns (Interest.Rate memory)
              {
                  Types.TotalPar memory totalPar = state.getTotalPar(marketId);
                  (
                      Types.Wei memory supplyWei,
                      Types.Wei memory borrowWei
                  ) = Interest.totalParToWei(totalPar, index);
          
                  Interest.Rate memory rate = state.markets[marketId].interestSetter.getInterestRate(
                      state.getToken(marketId),
                      borrowWei.value,
                      supplyWei.value
                  );
          
                  return rate;
              }
          
              function fetchPrice(
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  view
                  returns (Monetary.Price memory)
              {
                  IPriceOracle oracle = IPriceOracle(state.markets[marketId].priceOracle);
                  Monetary.Price memory price = oracle.getPrice(state.getToken(marketId));
                  Require.that(
                      price.value != 0,
                      FILE,
                      "Price cannot be zero",
                      marketId
                  );
                  return price;
              }
          
              function getAccountValues(
                  Storage.State storage state,
                  Account.Info memory account,
                  Cache.MarketCache memory cache,
                  bool adjustForLiquidity
              )
                  internal
                  view
                  returns (Monetary.Value memory, Monetary.Value memory)
              {
                  Monetary.Value memory supplyValue;
                  Monetary.Value memory borrowValue;
          
                  uint256 numMarkets = cache.getNumMarkets();
                  for (uint256 m = 0; m < numMarkets; m++) {
                      if (!cache.hasMarket(m)) {
                          continue;
                      }
          
                      Types.Wei memory userWei = state.getWei(account, m);
          
                      if (userWei.isZero()) {
                          continue;
                      }
          
                      uint256 assetValue = userWei.value.mul(cache.getPrice(m).value);
                      Decimal.D256 memory adjust = Decimal.one();
                      if (adjustForLiquidity) {
                          adjust = Decimal.onePlus(state.markets[m].marginPremium);
                      }
          
                      if (userWei.sign) {
                          supplyValue.value = supplyValue.value.add(Decimal.div(assetValue, adjust));
                      } else {
                          borrowValue.value = borrowValue.value.add(Decimal.mul(assetValue, adjust));
                      }
                  }
          
                  return (supplyValue, borrowValue);
              }
          
              function isCollateralized(
                  Storage.State storage state,
                  Account.Info memory account,
                  Cache.MarketCache memory cache,
                  bool requireMinBorrow
              )
                  internal
                  view
                  returns (bool)
              {
                  // get account values (adjusted for liquidity)
                  (
                      Monetary.Value memory supplyValue,
                      Monetary.Value memory borrowValue
                  ) = state.getAccountValues(account, cache, /* adjustForLiquidity = */ true);
          
                  if (borrowValue.value == 0) {
                      return true;
                  }
          
                  if (requireMinBorrow) {
                      Require.that(
                          borrowValue.value >= state.riskParams.minBorrowedValue.value,
                          FILE,
                          "Borrow value too low",
                          account.owner,
                          account.number,
                          borrowValue.value
                      );
                  }
          
                  uint256 requiredMargin = Decimal.mul(borrowValue.value, state.riskParams.marginRatio);
          
                  return supplyValue.value >= borrowValue.value.add(requiredMargin);
              }
          
              function isGlobalOperator(
                  Storage.State storage state,
                  address operator
              )
                  internal
                  view
                  returns (bool)
              {
                  return state.globalOperators[operator];
              }
          
              function isLocalOperator(
                  Storage.State storage state,
                  address owner,
                  address operator
              )
                  internal
                  view
                  returns (bool)
              {
                  return state.operators[owner][operator];
              }
          
              function requireIsOperator(
                  Storage.State storage state,
                  Account.Info memory account,
                  address operator
              )
                  internal
                  view
              {
                  bool isValidOperator =
                      operator == account.owner
                      || state.isGlobalOperator(operator)
                      || state.isLocalOperator(account.owner, operator);
          
                  Require.that(
                      isValidOperator,
                      FILE,
                      "Unpermissioned operator",
                      operator
                  );
              }
          
              /**
               * Determine and set an account's balance based on the intended balance change. Return the
               * equivalent amount in wei
               */
              function getNewParAndDeltaWei(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 marketId,
                  Types.AssetAmount memory amount
              )
                  internal
                  view
                  returns (Types.Par memory, Types.Wei memory)
              {
                  Types.Par memory oldPar = state.getPar(account, marketId);
          
                  if (amount.value == 0 && amount.ref == Types.AssetReference.Delta) {
                      return (oldPar, Types.zeroWei());
                  }
          
                  Interest.Index memory index = state.getIndex(marketId);
                  Types.Wei memory oldWei = Interest.parToWei(oldPar, index);
                  Types.Par memory newPar;
                  Types.Wei memory deltaWei;
          
                  if (amount.denomination == Types.AssetDenomination.Wei) {
                      deltaWei = Types.Wei({
                          sign: amount.sign,
                          value: amount.value
                      });
                      if (amount.ref == Types.AssetReference.Target) {
                          deltaWei = deltaWei.sub(oldWei);
                      }
                      newPar = Interest.weiToPar(oldWei.add(deltaWei), index);
                  } else { // AssetDenomination.Par
                      newPar = Types.Par({
                          sign: amount.sign,
                          value: amount.value.to128()
                      });
                      if (amount.ref == Types.AssetReference.Delta) {
                          newPar = oldPar.add(newPar);
                      }
                      deltaWei = Interest.parToWei(newPar, index).sub(oldWei);
                  }
          
                  return (newPar, deltaWei);
              }
          
              function getNewParAndDeltaWeiForLiquidation(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 marketId,
                  Types.AssetAmount memory amount
              )
                  internal
                  view
                  returns (Types.Par memory, Types.Wei memory)
              {
                  Types.Par memory oldPar = state.getPar(account, marketId);
          
                  Require.that(
                      !oldPar.isPositive(),
                      FILE,
                      "Owed balance cannot be positive",
                      account.owner,
                      account.number,
                      marketId
                  );
          
                  (
                      Types.Par memory newPar,
                      Types.Wei memory deltaWei
                  ) = state.getNewParAndDeltaWei(
                      account,
                      marketId,
                      amount
                  );
          
                  // if attempting to over-repay the owed asset, bound it by the maximum
                  if (newPar.isPositive()) {
                      newPar = Types.zeroPar();
                      deltaWei = state.getWei(account, marketId).negative();
                  }
          
                  Require.that(
                      !deltaWei.isNegative() && oldPar.value >= newPar.value,
                      FILE,
                      "Owed balance cannot increase",
                      account.owner,
                      account.number,
                      marketId
                  );
          
                  // if not paying back enough wei to repay any par, then bound wei to zero
                  if (oldPar.equals(newPar)) {
                      deltaWei = Types.zeroWei();
                  }
          
                  return (newPar, deltaWei);
              }
          
              function isVaporizable(
                  Storage.State storage state,
                  Account.Info memory account,
                  Cache.MarketCache memory cache
              )
                  internal
                  view
                  returns (bool)
              {
                  bool hasNegative = false;
                  uint256 numMarkets = cache.getNumMarkets();
                  for (uint256 m = 0; m < numMarkets; m++) {
                      if (!cache.hasMarket(m)) {
                          continue;
                      }
                      Types.Par memory par = state.getPar(account, m);
                      if (par.isZero()) {
                          continue;
                      } else if (par.sign) {
                          return false;
                      } else {
                          hasNegative = true;
                      }
                  }
                  return hasNegative;
              }
          
              // =============== Setter Functions ===============
          
              function updateIndex(
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  returns (Interest.Index memory)
              {
                  Interest.Index memory index = state.getIndex(marketId);
                  if (index.lastUpdate == Time.currentTime()) {
                      return index;
                  }
                  return state.markets[marketId].index = state.fetchNewIndex(marketId, index);
              }
          
              function setStatus(
                  Storage.State storage state,
                  Account.Info memory account,
                  Account.Status status
              )
                  internal
              {
                  state.accounts[account.owner][account.number].status = status;
              }
          
              function setPar(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 marketId,
                  Types.Par memory newPar
              )
                  internal
              {
                  Types.Par memory oldPar = state.getPar(account, marketId);
          
                  if (Types.equals(oldPar, newPar)) {
                      return;
                  }
          
                  // updateTotalPar
                  Types.TotalPar memory totalPar = state.getTotalPar(marketId);
          
                  // roll-back oldPar
                  if (oldPar.sign) {
                      totalPar.supply = uint256(totalPar.supply).sub(oldPar.value).to128();
                  } else {
                      totalPar.borrow = uint256(totalPar.borrow).sub(oldPar.value).to128();
                  }
          
                  // roll-forward newPar
                  if (newPar.sign) {
                      totalPar.supply = uint256(totalPar.supply).add(newPar.value).to128();
                  } else {
                      totalPar.borrow = uint256(totalPar.borrow).add(newPar.value).to128();
                  }
          
                  state.markets[marketId].totalPar = totalPar;
                  state.accounts[account.owner][account.number].balances[marketId] = newPar;
              }
          
              /**
               * Determine and set an account's balance based on a change in wei
               */
              function setParFromDeltaWei(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 marketId,
                  Types.Wei memory deltaWei
              )
                  internal
              {
                  if (deltaWei.isZero()) {
                      return;
                  }
                  Interest.Index memory index = state.getIndex(marketId);
                  Types.Wei memory oldWei = state.getWei(account, marketId);
                  Types.Wei memory newWei = oldWei.add(deltaWei);
                  Types.Par memory newPar = Interest.weiToPar(newWei, index);
                  state.setPar(
                      account,
                      marketId,
                      newPar
                  );
              }
          }
          
          // File: contracts/protocol/State.sol
          
          /**
           * @title State
           * @author dYdX
           *
           * Base-level contract that holds the state of Solo
           */
          contract State
          {
              Storage.State g_state;
          }
          
          // File: contracts/protocol/impl/AdminImpl.sol
          
          /**
           * @title AdminImpl
           * @author dYdX
           *
           * Administrative functions to keep the protocol updated
           */
          library AdminImpl {
              using Storage for Storage.State;
              using Token for address;
              using Types for Types.Wei;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "AdminImpl";
          
              // ============ Events ============
          
              event LogWithdrawExcessTokens(
                  address token,
                  uint256 amount
              );
          
              event LogAddMarket(
                  uint256 marketId,
                  address token
              );
          
              event LogSetIsClosing(
                  uint256 marketId,
                  bool isClosing
              );
          
              event LogSetPriceOracle(
                  uint256 marketId,
                  address priceOracle
              );
          
              event LogSetInterestSetter(
                  uint256 marketId,
                  address interestSetter
              );
          
              event LogSetMarginPremium(
                  uint256 marketId,
                  Decimal.D256 marginPremium
              );
          
              event LogSetSpreadPremium(
                  uint256 marketId,
                  Decimal.D256 spreadPremium
              );
          
              event LogSetMarginRatio(
                  Decimal.D256 marginRatio
              );
          
              event LogSetLiquidationSpread(
                  Decimal.D256 liquidationSpread
              );
          
              event LogSetEarningsRate(
                  Decimal.D256 earningsRate
              );
          
              event LogSetMinBorrowedValue(
                  Monetary.Value minBorrowedValue
              );
          
              event LogSetGlobalOperator(
                  address operator,
                  bool approved
              );
          
              // ============ Token Functions ============
          
              function ownerWithdrawExcessTokens(
                  Storage.State storage state,
                  uint256 marketId,
                  address recipient
              )
                  public
                  returns (uint256)
              {
                  _validateMarketId(state, marketId);
                  Types.Wei memory excessWei = state.getNumExcessTokens(marketId);
          
                  Require.that(
                      !excessWei.isNegative(),
                      FILE,
                      "Negative excess"
                  );
          
                  address token = state.getToken(marketId);
          
                  uint256 actualBalance = token.balanceOf(address(this));
                  if (excessWei.value > actualBalance) {
                      excessWei.value = actualBalance;
                  }
          
                  token.transfer(recipient, excessWei.value);
          
                  emit LogWithdrawExcessTokens(token, excessWei.value);
          
                  return excessWei.value;
              }
          
              function ownerWithdrawUnsupportedTokens(
                  Storage.State storage state,
                  address token,
                  address recipient
              )
                  public
                  returns (uint256)
              {
                  _requireNoMarket(state, token);
          
                  uint256 balance = token.balanceOf(address(this));
                  token.transfer(recipient, balance);
          
                  emit LogWithdrawExcessTokens(token, balance);
          
                  return balance;
              }
          
              // ============ Market Functions ============
          
              function ownerAddMarket(
                  Storage.State storage state,
                  address token,
                  IPriceOracle priceOracle,
                  IInterestSetter interestSetter,
                  Decimal.D256 memory marginPremium,
                  Decimal.D256 memory spreadPremium
              )
                  public
              {
                  _requireNoMarket(state, token);
          
                  uint256 marketId = state.numMarkets;
          
                  state.numMarkets++;
                  state.markets[marketId].token = token;
                  state.markets[marketId].index = Interest.newIndex();
          
                  emit LogAddMarket(marketId, token);
          
                  _setPriceOracle(state, marketId, priceOracle);
                  _setInterestSetter(state, marketId, interestSetter);
                  _setMarginPremium(state, marketId, marginPremium);
                  _setSpreadPremium(state, marketId, spreadPremium);
              }
          
              function ownerSetIsClosing(
                  Storage.State storage state,
                  uint256 marketId,
                  bool isClosing
              )
                  public
              {
                  _validateMarketId(state, marketId);
                  state.markets[marketId].isClosing = isClosing;
                  emit LogSetIsClosing(marketId, isClosing);
              }
          
              function ownerSetPriceOracle(
                  Storage.State storage state,
                  uint256 marketId,
                  IPriceOracle priceOracle
              )
                  public
              {
                  _validateMarketId(state, marketId);
                  _setPriceOracle(state, marketId, priceOracle);
              }
          
              function ownerSetInterestSetter(
                  Storage.State storage state,
                  uint256 marketId,
                  IInterestSetter interestSetter
              )
                  public
              {
                  _validateMarketId(state, marketId);
                  _setInterestSetter(state, marketId, interestSetter);
              }
          
              function ownerSetMarginPremium(
                  Storage.State storage state,
                  uint256 marketId,
                  Decimal.D256 memory marginPremium
              )
                  public
              {
                  _validateMarketId(state, marketId);
                  _setMarginPremium(state, marketId, marginPremium);
              }
          
              function ownerSetSpreadPremium(
                  Storage.State storage state,
                  uint256 marketId,
                  Decimal.D256 memory spreadPremium
              )
                  public
              {
                  _validateMarketId(state, marketId);
                  _setSpreadPremium(state, marketId, spreadPremium);
              }
          
              // ============ Risk Functions ============
          
              function ownerSetMarginRatio(
                  Storage.State storage state,
                  Decimal.D256 memory ratio
              )
                  public
              {
                  Require.that(
                      ratio.value <= state.riskLimits.marginRatioMax,
                      FILE,
                      "Ratio too high"
                  );
                  Require.that(
                      ratio.value > state.riskParams.liquidationSpread.value,
                      FILE,
                      "Ratio cannot be <= spread"
                  );
                  state.riskParams.marginRatio = ratio;
                  emit LogSetMarginRatio(ratio);
              }
          
              function ownerSetLiquidationSpread(
                  Storage.State storage state,
                  Decimal.D256 memory spread
              )
                  public
              {
                  Require.that(
                      spread.value <= state.riskLimits.liquidationSpreadMax,
                      FILE,
                      "Spread too high"
                  );
                  Require.that(
                      spread.value < state.riskParams.marginRatio.value,
                      FILE,
                      "Spread cannot be >= ratio"
                  );
                  state.riskParams.liquidationSpread = spread;
                  emit LogSetLiquidationSpread(spread);
              }
          
              function ownerSetEarningsRate(
                  Storage.State storage state,
                  Decimal.D256 memory earningsRate
              )
                  public
              {
                  Require.that(
                      earningsRate.value <= state.riskLimits.earningsRateMax,
                      FILE,
                      "Rate too high"
                  );
                  state.riskParams.earningsRate = earningsRate;
                  emit LogSetEarningsRate(earningsRate);
              }
          
              function ownerSetMinBorrowedValue(
                  Storage.State storage state,
                  Monetary.Value memory minBorrowedValue
              )
                  public
              {
                  Require.that(
                      minBorrowedValue.value <= state.riskLimits.minBorrowedValueMax,
                      FILE,
                      "Value too high"
                  );
                  state.riskParams.minBorrowedValue = minBorrowedValue;
                  emit LogSetMinBorrowedValue(minBorrowedValue);
              }
          
              // ============ Global Operator Functions ============
          
              function ownerSetGlobalOperator(
                  Storage.State storage state,
                  address operator,
                  bool approved
              )
                  public
              {
                  state.globalOperators[operator] = approved;
          
                  emit LogSetGlobalOperator(operator, approved);
              }
          
              // ============ Private Functions ============
          
              function _setPriceOracle(
                  Storage.State storage state,
                  uint256 marketId,
                  IPriceOracle priceOracle
              )
                  private
              {
                  // require oracle can return non-zero price
                  address token = state.markets[marketId].token;
          
                  Require.that(
                      priceOracle.getPrice(token).value != 0,
                      FILE,
                      "Invalid oracle price"
                  );
          
                  state.markets[marketId].priceOracle = priceOracle;
          
                  emit LogSetPriceOracle(marketId, address(priceOracle));
              }
          
              function _setInterestSetter(
                  Storage.State storage state,
                  uint256 marketId,
                  IInterestSetter interestSetter
              )
                  private
              {
                  // ensure interestSetter can return a value without reverting
                  address token = state.markets[marketId].token;
                  interestSetter.getInterestRate(token, 0, 0);
          
                  state.markets[marketId].interestSetter = interestSetter;
          
                  emit LogSetInterestSetter(marketId, address(interestSetter));
              }
          
              function _setMarginPremium(
                  Storage.State storage state,
                  uint256 marketId,
                  Decimal.D256 memory marginPremium
              )
                  private
              {
                  Require.that(
                      marginPremium.value <= state.riskLimits.marginPremiumMax,
                      FILE,
                      "Margin premium too high"
                  );
                  state.markets[marketId].marginPremium = marginPremium;
          
                  emit LogSetMarginPremium(marketId, marginPremium);
              }
          
              function _setSpreadPremium(
                  Storage.State storage state,
                  uint256 marketId,
                  Decimal.D256 memory spreadPremium
              )
                  private
              {
                  Require.that(
                      spreadPremium.value <= state.riskLimits.spreadPremiumMax,
                      FILE,
                      "Spread premium too high"
                  );
                  state.markets[marketId].spreadPremium = spreadPremium;
          
                  emit LogSetSpreadPremium(marketId, spreadPremium);
              }
          
              function _requireNoMarket(
                  Storage.State storage state,
                  address token
              )
                  private
                  view
              {
                  uint256 numMarkets = state.numMarkets;
          
                  bool marketExists = false;
          
                  for (uint256 m = 0; m < numMarkets; m++) {
                      if (state.markets[m].token == token) {
                          marketExists = true;
                          break;
                      }
                  }
          
                  Require.that(
                      !marketExists,
                      FILE,
                      "Market exists"
                  );
              }
          
              function _validateMarketId(
                  Storage.State storage state,
                  uint256 marketId
              )
                  private
                  view
              {
                  Require.that(
                      marketId < state.numMarkets,
                      FILE,
                      "Market OOB",
                      marketId
                  );
              }
          }
          
          // File: contracts/protocol/Admin.sol
          
          /**
           * @title Admin
           * @author dYdX
           *
           * Public functions that allow the privileged owner address to manage Solo
           */
          contract Admin is
              State,
              Ownable,
              ReentrancyGuard
          {
              // ============ Token Functions ============
          
              /**
               * Withdraw an ERC20 token for which there is an associated market. Only excess tokens can be
               * withdrawn. The number of excess tokens is calculated by taking the current number of tokens
               * held in Solo, adding the number of tokens owed to Solo by borrowers, and subtracting the
               * number of tokens owed to suppliers by Solo.
               */
              function ownerWithdrawExcessTokens(
                  uint256 marketId,
                  address recipient
              )
                  public
                  onlyOwner
                  nonReentrant
                  returns (uint256)
              {
                  return AdminImpl.ownerWithdrawExcessTokens(
                      g_state,
                      marketId,
                      recipient
                  );
              }
          
              /**
               * Withdraw an ERC20 token for which there is no associated market.
               */
              function ownerWithdrawUnsupportedTokens(
                  address token,
                  address recipient
              )
                  public
                  onlyOwner
                  nonReentrant
                  returns (uint256)
              {
                  return AdminImpl.ownerWithdrawUnsupportedTokens(
                      g_state,
                      token,
                      recipient
                  );
              }
          
              // ============ Market Functions ============
          
              /**
               * Add a new market to Solo. Must be for a previously-unsupported ERC20 token.
               */
              function ownerAddMarket(
                  address token,
                  IPriceOracle priceOracle,
                  IInterestSetter interestSetter,
                  Decimal.D256 memory marginPremium,
                  Decimal.D256 memory spreadPremium
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerAddMarket(
                      g_state,
                      token,
                      priceOracle,
                      interestSetter,
                      marginPremium,
                      spreadPremium
                  );
              }
          
              /**
               * Set (or unset) the status of a market to "closing". The borrowedValue of a market cannot
               * increase while its status is "closing".
               */
              function ownerSetIsClosing(
                  uint256 marketId,
                  bool isClosing
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetIsClosing(
                      g_state,
                      marketId,
                      isClosing
                  );
              }
          
              /**
               * Set the price oracle for a market.
               */
              function ownerSetPriceOracle(
                  uint256 marketId,
                  IPriceOracle priceOracle
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetPriceOracle(
                      g_state,
                      marketId,
                      priceOracle
                  );
              }
          
              /**
               * Set the interest-setter for a market.
               */
              function ownerSetInterestSetter(
                  uint256 marketId,
                  IInterestSetter interestSetter
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetInterestSetter(
                      g_state,
                      marketId,
                      interestSetter
                  );
              }
          
              /**
               * Set a premium on the minimum margin-ratio for a market. This makes it so that any positions
               * that include this market require a higher collateralization to avoid being liquidated.
               */
              function ownerSetMarginPremium(
                  uint256 marketId,
                  Decimal.D256 memory marginPremium
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetMarginPremium(
                      g_state,
                      marketId,
                      marginPremium
                  );
              }
          
              /**
               * Set a premium on the liquidation spread for a market. This makes it so that any liquidations
               * that include this market have a higher spread than the global default.
               */
              function ownerSetSpreadPremium(
                  uint256 marketId,
                  Decimal.D256 memory spreadPremium
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetSpreadPremium(
                      g_state,
                      marketId,
                      spreadPremium
                  );
              }
          
              // ============ Risk Functions ============
          
              /**
               * Set the global minimum margin-ratio that every position must maintain to prevent being
               * liquidated.
               */
              function ownerSetMarginRatio(
                  Decimal.D256 memory ratio
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetMarginRatio(
                      g_state,
                      ratio
                  );
              }
          
              /**
               * Set the global liquidation spread. This is the spread between oracle prices that incentivizes
               * the liquidation of risky positions.
               */
              function ownerSetLiquidationSpread(
                  Decimal.D256 memory spread
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetLiquidationSpread(
                      g_state,
                      spread
                  );
              }
          
              /**
               * Set the global earnings-rate variable that determines what percentage of the interest paid
               * by borrowers gets passed-on to suppliers.
               */
              function ownerSetEarningsRate(
                  Decimal.D256 memory earningsRate
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetEarningsRate(
                      g_state,
                      earningsRate
                  );
              }
          
              /**
               * Set the global minimum-borrow value which is the minimum value of any new borrow on Solo.
               */
              function ownerSetMinBorrowedValue(
                  Monetary.Value memory minBorrowedValue
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetMinBorrowedValue(
                      g_state,
                      minBorrowedValue
                  );
              }
          
              // ============ Global Operator Functions ============
          
              /**
               * Approve (or disapprove) an address that is permissioned to be an operator for all accounts in
               * Solo. Intended only to approve smart-contracts.
               */
              function ownerSetGlobalOperator(
                  address operator,
                  bool approved
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetGlobalOperator(
                      g_state,
                      operator,
                      approved
                  );
              }
          }
          
          // File: contracts/protocol/Getters.sol
          
          /**
           * @title Getters
           * @author dYdX
           *
           * Public read-only functions that allow transparency into the state of Solo
           */
          contract Getters is
              State
          {
              using Cache for Cache.MarketCache;
              using Storage for Storage.State;
              using Types for Types.Par;
          
              // ============ Constants ============
          
              bytes32 FILE = "Getters";
          
              // ============ Getters for Risk ============
          
              /**
               * Get the global minimum margin-ratio that every position must maintain to prevent being
               * liquidated.
               *
               * @return  The global margin-ratio
               */
              function getMarginRatio()
                  public
                  view
                  returns (Decimal.D256 memory)
              {
                  return g_state.riskParams.marginRatio;
              }
          
              /**
               * Get the global liquidation spread. This is the spread between oracle prices that incentivizes
               * the liquidation of risky positions.
               *
               * @return  The global liquidation spread
               */
              function getLiquidationSpread()
                  public
                  view
                  returns (Decimal.D256 memory)
              {
                  return g_state.riskParams.liquidationSpread;
              }
          
              /**
               * Get the global earnings-rate variable that determines what percentage of the interest paid
               * by borrowers gets passed-on to suppliers.
               *
               * @return  The global earnings rate
               */
              function getEarningsRate()
                  public
                  view
                  returns (Decimal.D256 memory)
              {
                  return g_state.riskParams.earningsRate;
              }
          
              /**
               * Get the global minimum-borrow value which is the minimum value of any new borrow on Solo.
               *
               * @return  The global minimum borrow value
               */
              function getMinBorrowedValue()
                  public
                  view
                  returns (Monetary.Value memory)
              {
                  return g_state.riskParams.minBorrowedValue;
              }
          
              /**
               * Get all risk parameters in a single struct.
               *
               * @return  All global risk parameters
               */
              function getRiskParams()
                  public
                  view
                  returns (Storage.RiskParams memory)
              {
                  return g_state.riskParams;
              }
          
              /**
               * Get all risk parameter limits in a single struct. These are the maximum limits at which the
               * risk parameters can be set by the admin of Solo.
               *
               * @return  All global risk parameter limnits
               */
              function getRiskLimits()
                  public
                  view
                  returns (Storage.RiskLimits memory)
              {
                  return g_state.riskLimits;
              }
          
              // ============ Getters for Markets ============
          
              /**
               * Get the total number of markets.
               *
               * @return  The number of markets
               */
              function getNumMarkets()
                  public
                  view
                  returns (uint256)
              {
                  return g_state.numMarkets;
              }
          
              /**
               * Get the ERC20 token address for a market.
               *
               * @param  marketId  The market to query
               * @return           The token address
               */
              function getMarketTokenAddress(
                  uint256 marketId
              )
                  public
                  view
                  returns (address)
              {
                  _requireValidMarket(marketId);
                  return g_state.getToken(marketId);
              }
          
              /**
               * Get the total principal amounts (borrowed and supplied) for a market.
               *
               * @param  marketId  The market to query
               * @return           The total principal amounts
               */
              function getMarketTotalPar(
                  uint256 marketId
              )
                  public
                  view
                  returns (Types.TotalPar memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.getTotalPar(marketId);
              }
          
              /**
               * Get the most recently cached interest index for a market.
               *
               * @param  marketId  The market to query
               * @return           The most recent index
               */
              function getMarketCachedIndex(
                  uint256 marketId
              )
                  public
                  view
                  returns (Interest.Index memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.getIndex(marketId);
              }
          
              /**
               * Get the interest index for a market if it were to be updated right now.
               *
               * @param  marketId  The market to query
               * @return           The estimated current index
               */
              function getMarketCurrentIndex(
                  uint256 marketId
              )
                  public
                  view
                  returns (Interest.Index memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.fetchNewIndex(marketId, g_state.getIndex(marketId));
              }
          
              /**
               * Get the price oracle address for a market.
               *
               * @param  marketId  The market to query
               * @return           The price oracle address
               */
              function getMarketPriceOracle(
                  uint256 marketId
              )
                  public
                  view
                  returns (IPriceOracle)
              {
                  _requireValidMarket(marketId);
                  return g_state.markets[marketId].priceOracle;
              }
          
              /**
               * Get the interest-setter address for a market.
               *
               * @param  marketId  The market to query
               * @return           The interest-setter address
               */
              function getMarketInterestSetter(
                  uint256 marketId
              )
                  public
                  view
                  returns (IInterestSetter)
              {
                  _requireValidMarket(marketId);
                  return g_state.markets[marketId].interestSetter;
              }
          
              /**
               * Get the margin premium for a market. A margin premium makes it so that any positions that
               * include the market require a higher collateralization to avoid being liquidated.
               *
               * @param  marketId  The market to query
               * @return           The market's margin premium
               */
              function getMarketMarginPremium(
                  uint256 marketId
              )
                  public
                  view
                  returns (Decimal.D256 memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.markets[marketId].marginPremium;
              }
          
              /**
               * Get the spread premium for a market. A spread premium makes it so that any liquidations
               * that include the market have a higher spread than the global default.
               *
               * @param  marketId  The market to query
               * @return           The market's spread premium
               */
              function getMarketSpreadPremium(
                  uint256 marketId
              )
                  public
                  view
                  returns (Decimal.D256 memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.markets[marketId].spreadPremium;
              }
          
              /**
               * Return true if a particular market is in closing mode. Additional borrows cannot be taken
               * from a market that is closing.
               *
               * @param  marketId  The market to query
               * @return           True if the market is closing
               */
              function getMarketIsClosing(
                  uint256 marketId
              )
                  public
                  view
                  returns (bool)
              {
                  _requireValidMarket(marketId);
                  return g_state.markets[marketId].isClosing;
              }
          
              /**
               * Get the price of the token for a market.
               *
               * @param  marketId  The market to query
               * @return           The price of each atomic unit of the token
               */
              function getMarketPrice(
                  uint256 marketId
              )
                  public
                  view
                  returns (Monetary.Price memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.fetchPrice(marketId);
              }
          
              /**
               * Get the current borrower interest rate for a market.
               *
               * @param  marketId  The market to query
               * @return           The current interest rate
               */
              function getMarketInterestRate(
                  uint256 marketId
              )
                  public
                  view
                  returns (Interest.Rate memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.fetchInterestRate(
                      marketId,
                      g_state.getIndex(marketId)
                  );
              }
          
              /**
               * Get the adjusted liquidation spread for some market pair. This is equal to the global
               * liquidation spread multiplied by (1 + spreadPremium) for each of the two markets.
               *
               * @param  heldMarketId  The market for which the account has collateral
               * @param  owedMarketId  The market for which the account has borrowed tokens
               * @return               The adjusted liquidation spread
               */
              function getLiquidationSpreadForPair(
                  uint256 heldMarketId,
                  uint256 owedMarketId
              )
                  public
                  view
                  returns (Decimal.D256 memory)
              {
                  _requireValidMarket(heldMarketId);
                  _requireValidMarket(owedMarketId);
                  return g_state.getLiquidationSpreadForPair(heldMarketId, owedMarketId);
              }
          
              /**
               * Get basic information about a particular market.
               *
               * @param  marketId  The market to query
               * @return           A Storage.Market struct with the current state of the market
               */
              function getMarket(
                  uint256 marketId
              )
                  public
                  view
                  returns (Storage.Market memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.markets[marketId];
              }
          
              /**
               * Get comprehensive information about a particular market.
               *
               * @param  marketId  The market to query
               * @return           A tuple containing the values:
               *                    - A Storage.Market struct with the current state of the market
               *                    - The current estimated interest index
               *                    - The current token price
               *                    - The current market interest rate
               */
              function getMarketWithInfo(
                  uint256 marketId
              )
                  public
                  view
                  returns (
                      Storage.Market memory,
                      Interest.Index memory,
                      Monetary.Price memory,
                      Interest.Rate memory
                  )
              {
                  _requireValidMarket(marketId);
                  return (
                      getMarket(marketId),
                      getMarketCurrentIndex(marketId),
                      getMarketPrice(marketId),
                      getMarketInterestRate(marketId)
                  );
              }
          
              /**
               * Get the number of excess tokens for a market. The number of excess tokens is calculated
               * by taking the current number of tokens held in Solo, adding the number of tokens owed to Solo
               * by borrowers, and subtracting the number of tokens owed to suppliers by Solo.
               *
               * @param  marketId  The market to query
               * @return           The number of excess tokens
               */
              function getNumExcessTokens(
                  uint256 marketId
              )
                  public
                  view
                  returns (Types.Wei memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.getNumExcessTokens(marketId);
              }
          
              // ============ Getters for Accounts ============
          
              /**
               * Get the principal value for a particular account and market.
               *
               * @param  account   The account to query
               * @param  marketId  The market to query
               * @return           The principal value
               */
              function getAccountPar(
                  Account.Info memory account,
                  uint256 marketId
              )
                  public
                  view
                  returns (Types.Par memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.getPar(account, marketId);
              }
          
              /**
               * Get the token balance for a particular account and market.
               *
               * @param  account   The account to query
               * @param  marketId  The market to query
               * @return           The token amount
               */
              function getAccountWei(
                  Account.Info memory account,
                  uint256 marketId
              )
                  public
                  view
                  returns (Types.Wei memory)
              {
                  _requireValidMarket(marketId);
                  return Interest.parToWei(
                      g_state.getPar(account, marketId),
                      g_state.fetchNewIndex(marketId, g_state.getIndex(marketId))
                  );
              }
          
              /**
               * Get the status of an account (Normal, Liquidating, or Vaporizing).
               *
               * @param  account  The account to query
               * @return          The account's status
               */
              function getAccountStatus(
                  Account.Info memory account
              )
                  public
                  view
                  returns (Account.Status)
              {
                  return g_state.getStatus(account);
              }
          
              /**
               * Get the total supplied and total borrowed value of an account.
               *
               * @param  account  The account to query
               * @return          The following values:
               *                   - The supplied value of the account
               *                   - The borrowed value of the account
               */
              function getAccountValues(
                  Account.Info memory account
              )
                  public
                  view
                  returns (Monetary.Value memory, Monetary.Value memory)
              {
                  return getAccountValuesInternal(account, /* adjustForLiquidity = */ false);
              }
          
              /**
               * Get the total supplied and total borrowed values of an account adjusted by the marginPremium
               * of each market. Supplied values are divided by (1 + marginPremium) for each market and
               * borrowed values are multiplied by (1 + marginPremium) for each market. Comparing these
               * adjusted values gives the margin-ratio of the account which will be compared to the global
               * margin-ratio when determining if the account can be liquidated.
               *
               * @param  account  The account to query
               * @return          The following values:
               *                   - The supplied value of the account (adjusted for marginPremium)
               *                   - The borrowed value of the account (adjusted for marginPremium)
               */
              function getAdjustedAccountValues(
                  Account.Info memory account
              )
                  public
                  view
                  returns (Monetary.Value memory, Monetary.Value memory)
              {
                  return getAccountValuesInternal(account, /* adjustForLiquidity = */ true);
              }
          
              /**
               * Get an account's summary for each market.
               *
               * @param  account  The account to query
               * @return          The following values:
               *                   - The ERC20 token address for each market
               *                   - The account's principal value for each market
               *                   - The account's (supplied or borrowed) number of tokens for each market
               */
              function getAccountBalances(
                  Account.Info memory account
              )
                  public
                  view
                  returns (
                      address[] memory,
                      Types.Par[] memory,
                      Types.Wei[] memory
                  )
              {
                  uint256 numMarkets = g_state.numMarkets;
                  address[] memory tokens = new address[](numMarkets);
                  Types.Par[] memory pars = new Types.Par[](numMarkets);
                  Types.Wei[] memory weis = new Types.Wei[](numMarkets);
          
                  for (uint256 m = 0; m < numMarkets; m++) {
                      tokens[m] = getMarketTokenAddress(m);
                      pars[m] = getAccountPar(account, m);
                      weis[m] = getAccountWei(account, m);
                  }
          
                  return (
                      tokens,
                      pars,
                      weis
                  );
              }
          
              // ============ Getters for Permissions ============
          
              /**
               * Return true if a particular address is approved as an operator for an owner's accounts.
               * Approved operators can act on the accounts of the owner as if it were the operator's own.
               *
               * @param  owner     The owner of the accounts
               * @param  operator  The possible operator
               * @return           True if operator is approved for owner's accounts
               */
              function getIsLocalOperator(
                  address owner,
                  address operator
              )
                  public
                  view
                  returns (bool)
              {
                  return g_state.isLocalOperator(owner, operator);
              }
          
              /**
               * Return true if a particular address is approved as a global operator. Such an address can
               * act on any account as if it were the operator's own.
               *
               * @param  operator  The address to query
               * @return           True if operator is a global operator
               */
              function getIsGlobalOperator(
                  address operator
              )
                  public
                  view
                  returns (bool)
              {
                  return g_state.isGlobalOperator(operator);
              }
          
              // ============ Private Helper Functions ============
          
              /**
               * Revert if marketId is invalid.
               */
              function _requireValidMarket(
                  uint256 marketId
              )
                  private
                  view
              {
                  Require.that(
                      marketId < g_state.numMarkets,
                      FILE,
                      "Market OOB"
                  );
              }
          
              /**
               * Private helper for getting the monetary values of an account.
               */
              function getAccountValuesInternal(
                  Account.Info memory account,
                  bool adjustForLiquidity
              )
                  private
                  view
                  returns (Monetary.Value memory, Monetary.Value memory)
              {
                  uint256 numMarkets = g_state.numMarkets;
          
                  // populate cache
                  Cache.MarketCache memory cache = Cache.create(numMarkets);
                  for (uint256 m = 0; m < numMarkets; m++) {
                      if (!g_state.getPar(account, m).isZero()) {
                          cache.addMarket(g_state, m);
                      }
                  }
          
                  return g_state.getAccountValues(account, cache, adjustForLiquidity);
              }
          }
          
          // File: contracts/protocol/interfaces/IAutoTrader.sol
          
          /**
           * @title IAutoTrader
           * @author dYdX
           *
           * Interface that Auto-Traders for Solo must implement in order to approve trades.
           */
          contract IAutoTrader {
          
              // ============ Public Functions ============
          
              /**
               * Allows traders to make trades approved by this smart contract. The active trader's account is
               * the takerAccount and the passive account (for which this contract approves trades
               * on-behalf-of) is the makerAccount.
               *
               * @param  inputMarketId   The market for which the trader specified the original amount
               * @param  outputMarketId  The market for which the trader wants the resulting amount specified
               * @param  makerAccount    The account for which this contract is making trades
               * @param  takerAccount    The account requesting the trade
               * @param  oldInputPar     The old principal amount for the makerAccount for the inputMarketId
               * @param  newInputPar     The new principal amount for the makerAccount for the inputMarketId
               * @param  inputWei        The change in token amount for the makerAccount for the inputMarketId
               * @param  data            Arbitrary data passed in by the trader
               * @return                 The AssetAmount for the makerAccount for the outputMarketId
               */
              function getTradeCost(
                  uint256 inputMarketId,
                  uint256 outputMarketId,
                  Account.Info memory makerAccount,
                  Account.Info memory takerAccount,
                  Types.Par memory oldInputPar,
                  Types.Par memory newInputPar,
                  Types.Wei memory inputWei,
                  bytes memory data
              )
                  public
                  returns (Types.AssetAmount memory);
          }
          
          // File: contracts/protocol/interfaces/ICallee.sol
          
          /**
           * @title ICallee
           * @author dYdX
           *
           * Interface that Callees for Solo must implement in order to ingest data.
           */
          contract ICallee {
          
              // ============ Public Functions ============
          
              /**
               * Allows users to send this contract arbitrary data.
               *
               * @param  sender       The msg.sender to Solo
               * @param  accountInfo  The account from which the data is being sent
               * @param  data         Arbitrary data given by the sender
               */
              function callFunction(
                  address sender,
                  Account.Info memory accountInfo,
                  bytes memory data
              )
                  public;
          }
          
          // File: contracts/protocol/lib/Actions.sol
          
          /**
           * @title Actions
           * @author dYdX
           *
           * Library that defines and parses valid Actions
           */
          library Actions {
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Actions";
          
              // ============ Enums ============
          
              enum ActionType {
                  Deposit,   // supply tokens
                  Withdraw,  // borrow tokens
                  Transfer,  // transfer balance between accounts
                  Buy,       // buy an amount of some token (externally)
                  Sell,      // sell an amount of some token (externally)
                  Trade,     // trade tokens against another account
                  Liquidate, // liquidate an undercollateralized or expiring account
                  Vaporize,  // use excess tokens to zero-out a completely negative account
                  Call       // send arbitrary data to an address
              }
          
              enum AccountLayout {
                  OnePrimary,
                  TwoPrimary,
                  PrimaryAndSecondary
              }
          
              enum MarketLayout {
                  ZeroMarkets,
                  OneMarket,
                  TwoMarkets
              }
          
              // ============ Structs ============
          
              /*
               * Arguments that are passed to Solo in an ordered list as part of a single operation.
               * Each ActionArgs has an actionType which specifies which action struct that this data will be
               * parsed into before being processed.
               */
              struct ActionArgs {
                  ActionType actionType;
                  uint256 accountId;
                  Types.AssetAmount amount;
                  uint256 primaryMarketId;
                  uint256 secondaryMarketId;
                  address otherAddress;
                  uint256 otherAccountId;
                  bytes data;
              }
          
              // ============ Action Types ============
          
              /*
               * Moves tokens from an address to Solo. Can either repay a borrow or provide additional supply.
               */
              struct DepositArgs {
                  Types.AssetAmount amount;
                  Account.Info account;
                  uint256 market;
                  address from;
              }
          
              /*
               * Moves tokens from Solo to another address. Can either borrow tokens or reduce the amount
               * previously supplied.
               */
              struct WithdrawArgs {
                  Types.AssetAmount amount;
                  Account.Info account;
                  uint256 market;
                  address to;
              }
          
              /*
               * Transfers balance between two accounts. The msg.sender must be an operator for both accounts.
               * The amount field applies to accountOne.
               * This action does not require any token movement since the trade is done internally to Solo.
               */
              struct TransferArgs {
                  Types.AssetAmount amount;
                  Account.Info accountOne;
                  Account.Info accountTwo;
                  uint256 market;
              }
          
              /*
               * Acquires a certain amount of tokens by spending other tokens. Sends takerMarket tokens to the
               * specified exchangeWrapper contract and expects makerMarket tokens in return. The amount field
               * applies to the makerMarket.
               */
              struct BuyArgs {
                  Types.AssetAmount amount;
                  Account.Info account;
                  uint256 makerMarket;
                  uint256 takerMarket;
                  address exchangeWrapper;
                  bytes orderData;
              }
          
              /*
               * Spends a certain amount of tokens to acquire other tokens. Sends takerMarket tokens to the
               * specified exchangeWrapper and expects makerMarket tokens in return. The amount field applies
               * to the takerMarket.
               */
              struct SellArgs {
                  Types.AssetAmount amount;
                  Account.Info account;
                  uint256 takerMarket;
                  uint256 makerMarket;
                  address exchangeWrapper;
                  bytes orderData;
              }
          
              /*
               * Trades balances between two accounts using any external contract that implements the
               * AutoTrader interface. The AutoTrader contract must be an operator for the makerAccount (for
               * which it is trading on-behalf-of). The amount field applies to the makerAccount and the
               * inputMarket. This proposed change to the makerAccount is passed to the AutoTrader which will
               * quote a change for the makerAccount in the outputMarket (or will disallow the trade).
               * This action does not require any token movement since the trade is done internally to Solo.
               */
              struct TradeArgs {
                  Types.AssetAmount amount;
                  Account.Info takerAccount;
                  Account.Info makerAccount;
                  uint256 inputMarket;
                  uint256 outputMarket;
                  address autoTrader;
                  bytes tradeData;
              }
          
              /*
               * Each account must maintain a certain margin-ratio (specified globally). If the account falls
               * below this margin-ratio, it can be liquidated by any other account. This allows anyone else
               * (arbitrageurs) to repay any borrowed asset (owedMarket) of the liquidating account in
               * exchange for any collateral asset (heldMarket) of the liquidAccount. The ratio is determined
               * by the price ratio (given by the oracles) plus a spread (specified globally). Liquidating an
               * account also sets a flag on the account that the account is being liquidated. This allows
               * anyone to continue liquidating the account until there are no more borrows being taken by the
               * liquidating account. Liquidators do not have to liquidate the entire account all at once but
               * can liquidate as much as they choose. The liquidating flag allows liquidators to continue
               * liquidating the account even if it becomes collateralized through partial liquidation or
               * price movement.
               */
              struct LiquidateArgs {
                  Types.AssetAmount amount;
                  Account.Info solidAccount;
                  Account.Info liquidAccount;
                  uint256 owedMarket;
                  uint256 heldMarket;
              }
          
              /*
               * Similar to liquidate, but vaporAccounts are accounts that have only negative balances
               * remaining. The arbitrageur pays back the negative asset (owedMarket) of the vaporAccount in
               * exchange for a collateral asset (heldMarket) at a favorable spread. However, since the
               * liquidAccount has no collateral assets, the collateral must come from Solo's excess tokens.
               */
              struct VaporizeArgs {
                  Types.AssetAmount amount;
                  Account.Info solidAccount;
                  Account.Info vaporAccount;
                  uint256 owedMarket;
                  uint256 heldMarket;
              }
          
              /*
               * Passes arbitrary bytes of data to an external contract that implements the Callee interface.
               * Does not change any asset amounts. This function may be useful for setting certain variables
               * on layer-two contracts for certain accounts without having to make a separate Ethereum
               * transaction for doing so. Also, the second-layer contracts can ensure that the call is coming
               * from an operator of the particular account.
               */
              struct CallArgs {
                  Account.Info account;
                  address callee;
                  bytes data;
              }
          
              // ============ Helper Functions ============
          
              function getMarketLayout(
                  ActionType actionType
              )
                  internal
                  pure
                  returns (MarketLayout)
              {
                  if (
                      actionType == Actions.ActionType.Deposit
                      || actionType == Actions.ActionType.Withdraw
                      || actionType == Actions.ActionType.Transfer
                  ) {
                      return MarketLayout.OneMarket;
                  }
                  else if (actionType == Actions.ActionType.Call) {
                      return MarketLayout.ZeroMarkets;
                  }
                  return MarketLayout.TwoMarkets;
              }
          
              function getAccountLayout(
                  ActionType actionType
              )
                  internal
                  pure
                  returns (AccountLayout)
              {
                  if (
                      actionType == Actions.ActionType.Transfer
                      || actionType == Actions.ActionType.Trade
                  ) {
                      return AccountLayout.TwoPrimary;
                  } else if (
                      actionType == Actions.ActionType.Liquidate
                      || actionType == Actions.ActionType.Vaporize
                  ) {
                      return AccountLayout.PrimaryAndSecondary;
                  }
                  return AccountLayout.OnePrimary;
              }
          
              // ============ Parsing Functions ============
          
              function parseDepositArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (DepositArgs memory)
              {
                  assert(args.actionType == ActionType.Deposit);
                  return DepositArgs({
                      amount: args.amount,
                      account: accounts[args.accountId],
                      market: args.primaryMarketId,
                      from: args.otherAddress
                  });
              }
          
              function parseWithdrawArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (WithdrawArgs memory)
              {
                  assert(args.actionType == ActionType.Withdraw);
                  return WithdrawArgs({
                      amount: args.amount,
                      account: accounts[args.accountId],
                      market: args.primaryMarketId,
                      to: args.otherAddress
                  });
              }
          
              function parseTransferArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (TransferArgs memory)
              {
                  assert(args.actionType == ActionType.Transfer);
                  return TransferArgs({
                      amount: args.amount,
                      accountOne: accounts[args.accountId],
                      accountTwo: accounts[args.otherAccountId],
                      market: args.primaryMarketId
                  });
              }
          
              function parseBuyArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (BuyArgs memory)
              {
                  assert(args.actionType == ActionType.Buy);
                  return BuyArgs({
                      amount: args.amount,
                      account: accounts[args.accountId],
                      makerMarket: args.primaryMarketId,
                      takerMarket: args.secondaryMarketId,
                      exchangeWrapper: args.otherAddress,
                      orderData: args.data
                  });
              }
          
              function parseSellArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (SellArgs memory)
              {
                  assert(args.actionType == ActionType.Sell);
                  return SellArgs({
                      amount: args.amount,
                      account: accounts[args.accountId],
                      takerMarket: args.primaryMarketId,
                      makerMarket: args.secondaryMarketId,
                      exchangeWrapper: args.otherAddress,
                      orderData: args.data
                  });
              }
          
              function parseTradeArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (TradeArgs memory)
              {
                  assert(args.actionType == ActionType.Trade);
                  return TradeArgs({
                      amount: args.amount,
                      takerAccount: accounts[args.accountId],
                      makerAccount: accounts[args.otherAccountId],
                      inputMarket: args.primaryMarketId,
                      outputMarket: args.secondaryMarketId,
                      autoTrader: args.otherAddress,
                      tradeData: args.data
                  });
              }
          
              function parseLiquidateArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (LiquidateArgs memory)
              {
                  assert(args.actionType == ActionType.Liquidate);
                  return LiquidateArgs({
                      amount: args.amount,
                      solidAccount: accounts[args.accountId],
                      liquidAccount: accounts[args.otherAccountId],
                      owedMarket: args.primaryMarketId,
                      heldMarket: args.secondaryMarketId
                  });
              }
          
              function parseVaporizeArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (VaporizeArgs memory)
              {
                  assert(args.actionType == ActionType.Vaporize);
                  return VaporizeArgs({
                      amount: args.amount,
                      solidAccount: accounts[args.accountId],
                      vaporAccount: accounts[args.otherAccountId],
                      owedMarket: args.primaryMarketId,
                      heldMarket: args.secondaryMarketId
                  });
              }
          
              function parseCallArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (CallArgs memory)
              {
                  assert(args.actionType == ActionType.Call);
                  return CallArgs({
                      account: accounts[args.accountId],
                      callee: args.otherAddress,
                      data: args.data
                  });
              }
          }
          
          // File: contracts/protocol/lib/Events.sol
          
          /**
           * @title Events
           * @author dYdX
           *
           * Library to parse and emit logs from which the state of all accounts and indexes can be followed
           */
          library Events {
              using Types for Types.Wei;
              using Storage for Storage.State;
          
              // ============ Events ============
          
              event LogIndexUpdate(
                  uint256 indexed market,
                  Interest.Index index
              );
          
              event LogOperation(
                  address sender
              );
          
              event LogDeposit(
                  address indexed accountOwner,
                  uint256 accountNumber,
                  uint256 market,
                  BalanceUpdate update,
                  address from
              );
          
              event LogWithdraw(
                  address indexed accountOwner,
                  uint256 accountNumber,
                  uint256 market,
                  BalanceUpdate update,
                  address to
              );
          
              event LogTransfer(
                  address indexed accountOneOwner,
                  uint256 accountOneNumber,
                  address indexed accountTwoOwner,
                  uint256 accountTwoNumber,
                  uint256 market,
                  BalanceUpdate updateOne,
                  BalanceUpdate updateTwo
              );
          
              event LogBuy(
                  address indexed accountOwner,
                  uint256 accountNumber,
                  uint256 takerMarket,
                  uint256 makerMarket,
                  BalanceUpdate takerUpdate,
                  BalanceUpdate makerUpdate,
                  address exchangeWrapper
              );
          
              event LogSell(
                  address indexed accountOwner,
                  uint256 accountNumber,
                  uint256 takerMarket,
                  uint256 makerMarket,
                  BalanceUpdate takerUpdate,
                  BalanceUpdate makerUpdate,
                  address exchangeWrapper
              );
          
              event LogTrade(
                  address indexed takerAccountOwner,
                  uint256 takerAccountNumber,
                  address indexed makerAccountOwner,
                  uint256 makerAccountNumber,
                  uint256 inputMarket,
                  uint256 outputMarket,
                  BalanceUpdate takerInputUpdate,
                  BalanceUpdate takerOutputUpdate,
                  BalanceUpdate makerInputUpdate,
                  BalanceUpdate makerOutputUpdate,
                  address autoTrader
              );
          
              event LogCall(
                  address indexed accountOwner,
                  uint256 accountNumber,
                  address callee
              );
          
              event LogLiquidate(
                  address indexed solidAccountOwner,
                  uint256 solidAccountNumber,
                  address indexed liquidAccountOwner,
                  uint256 liquidAccountNumber,
                  uint256 heldMarket,
                  uint256 owedMarket,
                  BalanceUpdate solidHeldUpdate,
                  BalanceUpdate solidOwedUpdate,
                  BalanceUpdate liquidHeldUpdate,
                  BalanceUpdate liquidOwedUpdate
              );
          
              event LogVaporize(
                  address indexed solidAccountOwner,
                  uint256 solidAccountNumber,
                  address indexed vaporAccountOwner,
                  uint256 vaporAccountNumber,
                  uint256 heldMarket,
                  uint256 owedMarket,
                  BalanceUpdate solidHeldUpdate,
                  BalanceUpdate solidOwedUpdate,
                  BalanceUpdate vaporOwedUpdate
              );
          
              // ============ Structs ============
          
              struct BalanceUpdate {
                  Types.Wei deltaWei;
                  Types.Par newPar;
              }
          
              // ============ Internal Functions ============
          
              function logIndexUpdate(
                  uint256 marketId,
                  Interest.Index memory index
              )
                  internal
              {
                  emit LogIndexUpdate(
                      marketId,
                      index
                  );
              }
          
              function logOperation()
                  internal
              {
                  emit LogOperation(msg.sender);
              }
          
              function logDeposit(
                  Storage.State storage state,
                  Actions.DepositArgs memory args,
                  Types.Wei memory deltaWei
              )
                  internal
              {
                  emit LogDeposit(
                      args.account.owner,
                      args.account.number,
                      args.market,
                      getBalanceUpdate(
                          state,
                          args.account,
                          args.market,
                          deltaWei
                      ),
                      args.from
                  );
              }
          
              function logWithdraw(
                  Storage.State storage state,
                  Actions.WithdrawArgs memory args,
                  Types.Wei memory deltaWei
              )
                  internal
              {
                  emit LogWithdraw(
                      args.account.owner,
                      args.account.number,
                      args.market,
                      getBalanceUpdate(
                          state,
                          args.account,
                          args.market,
                          deltaWei
                      ),
                      args.to
                  );
              }
          
              function logTransfer(
                  Storage.State storage state,
                  Actions.TransferArgs memory args,
                  Types.Wei memory deltaWei
              )
                  internal
              {
                  emit LogTransfer(
                      args.accountOne.owner,
                      args.accountOne.number,
                      args.accountTwo.owner,
                      args.accountTwo.number,
                      args.market,
                      getBalanceUpdate(
                          state,
                          args.accountOne,
                          args.market,
                          deltaWei
                      ),
                      getBalanceUpdate(
                          state,
                          args.accountTwo,
                          args.market,
                          deltaWei.negative()
                      )
                  );
              }
          
              function logBuy(
                  Storage.State storage state,
                  Actions.BuyArgs memory args,
                  Types.Wei memory takerWei,
                  Types.Wei memory makerWei
              )
                  internal
              {
                  emit LogBuy(
                      args.account.owner,
                      args.account.number,
                      args.takerMarket,
                      args.makerMarket,
                      getBalanceUpdate(
                          state,
                          args.account,
                          args.takerMarket,
                          takerWei
                      ),
                      getBalanceUpdate(
                          state,
                          args.account,
                          args.makerMarket,
                          makerWei
                      ),
                      args.exchangeWrapper
                  );
              }
          
              function logSell(
                  Storage.State storage state,
                  Actions.SellArgs memory args,
                  Types.Wei memory takerWei,
                  Types.Wei memory makerWei
              )
                  internal
              {
                  emit LogSell(
                      args.account.owner,
                      args.account.number,
                      args.takerMarket,
                      args.makerMarket,
                      getBalanceUpdate(
                          state,
                          args.account,
                          args.takerMarket,
                          takerWei
                      ),
                      getBalanceUpdate(
                          state,
                          args.account,
                          args.makerMarket,
                          makerWei
                      ),
                      args.exchangeWrapper
                  );
              }
          
              function logTrade(
                  Storage.State storage state,
                  Actions.TradeArgs memory args,
                  Types.Wei memory inputWei,
                  Types.Wei memory outputWei
              )
                  internal
              {
                  BalanceUpdate[4] memory updates = [
                      getBalanceUpdate(
                          state,
                          args.takerAccount,
                          args.inputMarket,
                          inputWei.negative()
                      ),
                      getBalanceUpdate(
                          state,
                          args.takerAccount,
                          args.outputMarket,
                          outputWei.negative()
                      ),
                      getBalanceUpdate(
                          state,
                          args.makerAccount,
                          args.inputMarket,
                          inputWei
                      ),
                      getBalanceUpdate(
                          state,
                          args.makerAccount,
                          args.outputMarket,
                          outputWei
                      )
                  ];
          
                  emit LogTrade(
                      args.takerAccount.owner,
                      args.takerAccount.number,
                      args.makerAccount.owner,
                      args.makerAccount.number,
                      args.inputMarket,
                      args.outputMarket,
                      updates[0],
                      updates[1],
                      updates[2],
                      updates[3],
                      args.autoTrader
                  );
              }
          
              function logCall(
                  Actions.CallArgs memory args
              )
                  internal
              {
                  emit LogCall(
                      args.account.owner,
                      args.account.number,
                      args.callee
                  );
              }
          
              function logLiquidate(
                  Storage.State storage state,
                  Actions.LiquidateArgs memory args,
                  Types.Wei memory heldWei,
                  Types.Wei memory owedWei
              )
                  internal
              {
                  BalanceUpdate memory solidHeldUpdate = getBalanceUpdate(
                      state,
                      args.solidAccount,
                      args.heldMarket,
                      heldWei.negative()
                  );
                  BalanceUpdate memory solidOwedUpdate = getBalanceUpdate(
                      state,
                      args.solidAccount,
                      args.owedMarket,
                      owedWei.negative()
                  );
                  BalanceUpdate memory liquidHeldUpdate = getBalanceUpdate(
                      state,
                      args.liquidAccount,
                      args.heldMarket,
                      heldWei
                  );
                  BalanceUpdate memory liquidOwedUpdate = getBalanceUpdate(
                      state,
                      args.liquidAccount,
                      args.owedMarket,
                      owedWei
                  );
          
                  emit LogLiquidate(
                      args.solidAccount.owner,
                      args.solidAccount.number,
                      args.liquidAccount.owner,
                      args.liquidAccount.number,
                      args.heldMarket,
                      args.owedMarket,
                      solidHeldUpdate,
                      solidOwedUpdate,
                      liquidHeldUpdate,
                      liquidOwedUpdate
                  );
              }
          
              function logVaporize(
                  Storage.State storage state,
                  Actions.VaporizeArgs memory args,
                  Types.Wei memory heldWei,
                  Types.Wei memory owedWei,
                  Types.Wei memory excessWei
              )
                  internal
              {
                  BalanceUpdate memory solidHeldUpdate = getBalanceUpdate(
                      state,
                      args.solidAccount,
                      args.heldMarket,
                      heldWei.negative()
                  );
                  BalanceUpdate memory solidOwedUpdate = getBalanceUpdate(
                      state,
                      args.solidAccount,
                      args.owedMarket,
                      owedWei.negative()
                  );
                  BalanceUpdate memory vaporOwedUpdate = getBalanceUpdate(
                      state,
                      args.vaporAccount,
                      args.owedMarket,
                      owedWei.add(excessWei)
                  );
          
                  emit LogVaporize(
                      args.solidAccount.owner,
                      args.solidAccount.number,
                      args.vaporAccount.owner,
                      args.vaporAccount.number,
                      args.heldMarket,
                      args.owedMarket,
                      solidHeldUpdate,
                      solidOwedUpdate,
                      vaporOwedUpdate
                  );
              }
          
              // ============ Private Functions ============
          
              function getBalanceUpdate(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 market,
                  Types.Wei memory deltaWei
              )
                  private
                  view
                  returns (BalanceUpdate memory)
              {
                  return BalanceUpdate({
                      deltaWei: deltaWei,
                      newPar: state.getPar(account, market)
                  });
              }
          }
          
          // File: contracts/protocol/interfaces/IExchangeWrapper.sol
          
          /**
           * @title IExchangeWrapper
           * @author dYdX
           *
           * Interface that Exchange Wrappers for Solo must implement in order to trade ERC20 tokens.
           */
          interface IExchangeWrapper {
          
              // ============ Public Functions ============
          
              /**
               * Exchange some amount of takerToken for makerToken.
               *
               * @param  tradeOriginator      Address of the initiator of the trade (however, this value
               *                              cannot always be trusted as it is set at the discretion of the
               *                              msg.sender)
               * @param  receiver             Address to set allowance on once the trade has completed
               * @param  makerToken           Address of makerToken, the token to receive
               * @param  takerToken           Address of takerToken, the token to pay
               * @param  requestedFillAmount  Amount of takerToken being paid
               * @param  orderData            Arbitrary bytes data for any information to pass to the exchange
               * @return                      The amount of makerToken received
               */
              function exchange(
                  address tradeOriginator,
                  address receiver,
                  address makerToken,
                  address takerToken,
                  uint256 requestedFillAmount,
                  bytes calldata orderData
              )
                  external
                  returns (uint256);
          
              /**
               * Get amount of takerToken required to buy a certain amount of makerToken for a given trade.
               * Should match the takerToken amount used in exchangeForAmount. If the order cannot provide
               * exactly desiredMakerToken, then it must return the price to buy the minimum amount greater
               * than desiredMakerToken
               *
               * @param  makerToken         Address of makerToken, the token to receive
               * @param  takerToken         Address of takerToken, the token to pay
               * @param  desiredMakerToken  Amount of makerToken requested
               * @param  orderData          Arbitrary bytes data for any information to pass to the exchange
               * @return                    Amount of takerToken the needed to complete the exchange
               */
              function getExchangeCost(
                  address makerToken,
                  address takerToken,
                  uint256 desiredMakerToken,
                  bytes calldata orderData
              )
                  external
                  view
                  returns (uint256);
          }
          
          // File: contracts/protocol/lib/Exchange.sol
          
          /**
           * @title Exchange
           * @author dYdX
           *
           * Library for transferring tokens and interacting with ExchangeWrappers by using the Wei struct
           */
          library Exchange {
              using Types for Types.Wei;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Exchange";
          
              // ============ Library Functions ============
          
              function transferOut(
                  address token,
                  address to,
                  Types.Wei memory deltaWei
              )
                  internal
              {
                  Require.that(
                      !deltaWei.isPositive(),
                      FILE,
                      "Cannot transferOut positive",
                      deltaWei.value
                  );
          
                  Token.transfer(
                      token,
                      to,
                      deltaWei.value
                  );
              }
          
              function transferIn(
                  address token,
                  address from,
                  Types.Wei memory deltaWei
              )
                  internal
              {
                  Require.that(
                      !deltaWei.isNegative(),
                      FILE,
                      "Cannot transferIn negative",
                      deltaWei.value
                  );
          
                  Token.transferFrom(
                      token,
                      from,
                      address(this),
                      deltaWei.value
                  );
              }
          
              function getCost(
                  address exchangeWrapper,
                  address supplyToken,
                  address borrowToken,
                  Types.Wei memory desiredAmount,
                  bytes memory orderData
              )
                  internal
                  view
                  returns (Types.Wei memory)
              {
                  Require.that(
                      !desiredAmount.isNegative(),
                      FILE,
                      "Cannot getCost negative",
                      desiredAmount.value
                  );
          
                  Types.Wei memory result;
                  result.sign = false;
                  result.value = IExchangeWrapper(exchangeWrapper).getExchangeCost(
                      supplyToken,
                      borrowToken,
                      desiredAmount.value,
                      orderData
                  );
          
                  return result;
              }
          
              function exchange(
                  address exchangeWrapper,
                  address accountOwner,
                  address supplyToken,
                  address borrowToken,
                  Types.Wei memory requestedFillAmount,
                  bytes memory orderData
              )
                  internal
                  returns (Types.Wei memory)
              {
                  Require.that(
                      !requestedFillAmount.isPositive(),
                      FILE,
                      "Cannot exchange positive",
                      requestedFillAmount.value
                  );
          
                  transferOut(borrowToken, exchangeWrapper, requestedFillAmount);
          
                  Types.Wei memory result;
                  result.sign = true;
                  result.value = IExchangeWrapper(exchangeWrapper).exchange(
                      accountOwner,
                      address(this),
                      supplyToken,
                      borrowToken,
                      requestedFillAmount.value,
                      orderData
                  );
          
                  transferIn(supplyToken, exchangeWrapper, result);
          
                  return result;
              }
          }
          
          // File: contracts/protocol/impl/OperationImpl.sol
          
          /**
           * @title OperationImpl
           * @author dYdX
           *
           * Logic for processing actions
           */
          library OperationImpl {
              using Cache for Cache.MarketCache;
              using SafeMath for uint256;
              using Storage for Storage.State;
              using Types for Types.Par;
              using Types for Types.Wei;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "OperationImpl";
          
              // ============ Public Functions ============
          
              function operate(
                  Storage.State storage state,
                  Account.Info[] memory accounts,
                  Actions.ActionArgs[] memory actions
              )
                  public
              {
                  Events.logOperation();
          
                  _verifyInputs(accounts, actions);
          
                  (
                      bool[] memory primaryAccounts,
                      Cache.MarketCache memory cache
                  ) = _runPreprocessing(
                      state,
                      accounts,
                      actions
                  );
          
                  _runActions(
                      state,
                      accounts,
                      actions,
                      cache
                  );
          
                  _verifyFinalState(
                      state,
                      accounts,
                      primaryAccounts,
                      cache
                  );
              }
          
              // ============ Helper Functions ============
          
              function _verifyInputs(
                  Account.Info[] memory accounts,
                  Actions.ActionArgs[] memory actions
              )
                  private
                  pure
              {
                  Require.that(
                      actions.length != 0,
                      FILE,
                      "Cannot have zero actions"
                  );
          
                  Require.that(
                      accounts.length != 0,
                      FILE,
                      "Cannot have zero accounts"
                  );
          
                  for (uint256 a = 0; a < accounts.length; a++) {
                      for (uint256 b = a + 1; b < accounts.length; b++) {
                          Require.that(
                              !Account.equals(accounts[a], accounts[b]),
                              FILE,
                              "Cannot duplicate accounts",
                              a,
                              b
                          );
                      }
                  }
              }
          
              function _runPreprocessing(
                  Storage.State storage state,
                  Account.Info[] memory accounts,
                  Actions.ActionArgs[] memory actions
              )
                  private
                  returns (
                      bool[] memory,
                      Cache.MarketCache memory
                  )
              {
                  uint256 numMarkets = state.numMarkets;
                  bool[] memory primaryAccounts = new bool[](accounts.length);
                  Cache.MarketCache memory cache = Cache.create(numMarkets);
          
                  // keep track of primary accounts and indexes that need updating
                  for (uint256 i = 0; i < actions.length; i++) {
                      Actions.ActionArgs memory arg = actions[i];
                      Actions.ActionType actionType = arg.actionType;
                      Actions.MarketLayout marketLayout = Actions.getMarketLayout(actionType);
                      Actions.AccountLayout accountLayout = Actions.getAccountLayout(actionType);
          
                      // parse out primary accounts
                      if (accountLayout != Actions.AccountLayout.OnePrimary) {
                          Require.that(
                              arg.accountId != arg.otherAccountId,
                              FILE,
                              "Duplicate accounts in action",
                              i
                          );
                          if (accountLayout == Actions.AccountLayout.TwoPrimary) {
                              primaryAccounts[arg.otherAccountId] = true;
                          } else {
                              assert(accountLayout == Actions.AccountLayout.PrimaryAndSecondary);
                              Require.that(
                                  !primaryAccounts[arg.otherAccountId],
                                  FILE,
                                  "Requires non-primary account",
                                  arg.otherAccountId
                              );
                          }
                      }
                      primaryAccounts[arg.accountId] = true;
          
                      // keep track of indexes to update
                      if (marketLayout == Actions.MarketLayout.OneMarket) {
                          _updateMarket(state, cache, arg.primaryMarketId);
                      } else if (marketLayout == Actions.MarketLayout.TwoMarkets) {
                          Require.that(
                              arg.primaryMarketId != arg.secondaryMarketId,
                              FILE,
                              "Duplicate markets in action",
                              i
                          );
                          _updateMarket(state, cache, arg.primaryMarketId);
                          _updateMarket(state, cache, arg.secondaryMarketId);
                      } else {
                          assert(marketLayout == Actions.MarketLayout.ZeroMarkets);
                      }
                  }
          
                  // get any other markets for which an account has a balance
                  for (uint256 m = 0; m < numMarkets; m++) {
                      if (cache.hasMarket(m)) {
                          continue;
                      }
                      for (uint256 a = 0; a < accounts.length; a++) {
                          if (!state.getPar(accounts[a], m).isZero()) {
                              _updateMarket(state, cache, m);
                              break;
                          }
                      }
                  }
          
                  return (primaryAccounts, cache);
              }
          
              function _updateMarket(
                  Storage.State storage state,
                  Cache.MarketCache memory cache,
                  uint256 marketId
              )
                  private
              {
                  bool updated = cache.addMarket(state, marketId);
                  if (updated) {
                      Events.logIndexUpdate(marketId, state.updateIndex(marketId));
                  }
              }
          
              function _runActions(
                  Storage.State storage state,
                  Account.Info[] memory accounts,
                  Actions.ActionArgs[] memory actions,
                  Cache.MarketCache memory cache
              )
                  private
              {
                  for (uint256 i = 0; i < actions.length; i++) {
                      Actions.ActionArgs memory action = actions[i];
                      Actions.ActionType actionType = action.actionType;
          
                      if (actionType == Actions.ActionType.Deposit) {
                          _deposit(state, Actions.parseDepositArgs(accounts, action));
                      }
                      else if (actionType == Actions.ActionType.Withdraw) {
                          _withdraw(state, Actions.parseWithdrawArgs(accounts, action));
                      }
                      else if (actionType == Actions.ActionType.Transfer) {
                          _transfer(state, Actions.parseTransferArgs(accounts, action));
                      }
                      else if (actionType == Actions.ActionType.Buy) {
                          _buy(state, Actions.parseBuyArgs(accounts, action));
                      }
                      else if (actionType == Actions.ActionType.Sell) {
                          _sell(state, Actions.parseSellArgs(accounts, action));
                      }
                      else if (actionType == Actions.ActionType.Trade) {
                          _trade(state, Actions.parseTradeArgs(accounts, action));
                      }
                      else if (actionType == Actions.ActionType.Liquidate) {
                          _liquidate(state, Actions.parseLiquidateArgs(accounts, action), cache);
                      }
                      else if (actionType == Actions.ActionType.Vaporize) {
                          _vaporize(state, Actions.parseVaporizeArgs(accounts, action), cache);
                      }
                      else  {
                          assert(actionType == Actions.ActionType.Call);
                          _call(state, Actions.parseCallArgs(accounts, action));
                      }
                  }
              }
          
              function _verifyFinalState(
                  Storage.State storage state,
                  Account.Info[] memory accounts,
                  bool[] memory primaryAccounts,
                  Cache.MarketCache memory cache
              )
                  private
              {
                  // verify no increase in borrowPar for closing markets
                  uint256 numMarkets = cache.getNumMarkets();
                  for (uint256 m = 0; m < numMarkets; m++) {
                      if (cache.getIsClosing(m)) {
                          Require.that(
                              state.getTotalPar(m).borrow <= cache.getBorrowPar(m),
                              FILE,
                              "Market is closing",
                              m
                          );
                      }
                  }
          
                  // verify account collateralization
                  for (uint256 a = 0; a < accounts.length; a++) {
                      Account.Info memory account = accounts[a];
          
                      // validate minBorrowedValue
                      bool collateralized = state.isCollateralized(account, cache, true);
          
                      // don't check collateralization for non-primary accounts
                      if (!primaryAccounts[a]) {
                          continue;
                      }
          
                      // check collateralization for primary accounts
                      Require.that(
                          collateralized,
                          FILE,
                          "Undercollateralized account",
                          account.owner,
                          account.number
                      );
          
                      // ensure status is normal for primary accounts
                      if (state.getStatus(account) != Account.Status.Normal) {
                          state.setStatus(account, Account.Status.Normal);
                      }
                  }
              }
          
              // ============ Action Functions ============
          
              function _deposit(
                  Storage.State storage state,
                  Actions.DepositArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.account, msg.sender);
          
                  Require.that(
                      args.from == msg.sender || args.from == args.account.owner,
                      FILE,
                      "Invalid deposit source",
                      args.from
                  );
          
                  (
                      Types.Par memory newPar,
                      Types.Wei memory deltaWei
                  ) = state.getNewParAndDeltaWei(
                      args.account,
                      args.market,
                      args.amount
                  );
          
                  state.setPar(
                      args.account,
                      args.market,
                      newPar
                  );
          
                  // requires a positive deltaWei
                  Exchange.transferIn(
                      state.getToken(args.market),
                      args.from,
                      deltaWei
                  );
          
                  Events.logDeposit(
                      state,
                      args,
                      deltaWei
                  );
              }
          
              function _withdraw(
                  Storage.State storage state,
                  Actions.WithdrawArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.account, msg.sender);
          
                  (
                      Types.Par memory newPar,
                      Types.Wei memory deltaWei
                  ) = state.getNewParAndDeltaWei(
                      args.account,
                      args.market,
                      args.amount
                  );
          
                  state.setPar(
                      args.account,
                      args.market,
                      newPar
                  );
          
                  // requires a negative deltaWei
                  Exchange.transferOut(
                      state.getToken(args.market),
                      args.to,
                      deltaWei
                  );
          
                  Events.logWithdraw(
                      state,
                      args,
                      deltaWei
                  );
              }
          
              function _transfer(
                  Storage.State storage state,
                  Actions.TransferArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.accountOne, msg.sender);
                  state.requireIsOperator(args.accountTwo, msg.sender);
          
                  (
                      Types.Par memory newPar,
                      Types.Wei memory deltaWei
                  ) = state.getNewParAndDeltaWei(
                      args.accountOne,
                      args.market,
                      args.amount
                  );
          
                  state.setPar(
                      args.accountOne,
                      args.market,
                      newPar
                  );
          
                  state.setParFromDeltaWei(
                      args.accountTwo,
                      args.market,
                      deltaWei.negative()
                  );
          
                  Events.logTransfer(
                      state,
                      args,
                      deltaWei
                  );
              }
          
              function _buy(
                  Storage.State storage state,
                  Actions.BuyArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.account, msg.sender);
          
                  address takerToken = state.getToken(args.takerMarket);
                  address makerToken = state.getToken(args.makerMarket);
          
                  (
                      Types.Par memory makerPar,
                      Types.Wei memory makerWei
                  ) = state.getNewParAndDeltaWei(
                      args.account,
                      args.makerMarket,
                      args.amount
                  );
          
                  Types.Wei memory takerWei = Exchange.getCost(
                      args.exchangeWrapper,
                      makerToken,
                      takerToken,
                      makerWei,
                      args.orderData
                  );
          
                  Types.Wei memory tokensReceived = Exchange.exchange(
                      args.exchangeWrapper,
                      args.account.owner,
                      makerToken,
                      takerToken,
                      takerWei,
                      args.orderData
                  );
          
                  Require.that(
                      tokensReceived.value >= makerWei.value,
                      FILE,
                      "Buy amount less than promised",
                      tokensReceived.value,
                      makerWei.value
                  );
          
                  state.setPar(
                      args.account,
                      args.makerMarket,
                      makerPar
                  );
          
                  state.setParFromDeltaWei(
                      args.account,
                      args.takerMarket,
                      takerWei
                  );
          
                  Events.logBuy(
                      state,
                      args,
                      takerWei,
                      makerWei
                  );
              }
          
              function _sell(
                  Storage.State storage state,
                  Actions.SellArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.account, msg.sender);
          
                  address takerToken = state.getToken(args.takerMarket);
                  address makerToken = state.getToken(args.makerMarket);
          
                  (
                      Types.Par memory takerPar,
                      Types.Wei memory takerWei
                  ) = state.getNewParAndDeltaWei(
                      args.account,
                      args.takerMarket,
                      args.amount
                  );
          
                  Types.Wei memory makerWei = Exchange.exchange(
                      args.exchangeWrapper,
                      args.account.owner,
                      makerToken,
                      takerToken,
                      takerWei,
                      args.orderData
                  );
          
                  state.setPar(
                      args.account,
                      args.takerMarket,
                      takerPar
                  );
          
                  state.setParFromDeltaWei(
                      args.account,
                      args.makerMarket,
                      makerWei
                  );
          
                  Events.logSell(
                      state,
                      args,
                      takerWei,
                      makerWei
                  );
              }
          
              function _trade(
                  Storage.State storage state,
                  Actions.TradeArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.takerAccount, msg.sender);
                  state.requireIsOperator(args.makerAccount, args.autoTrader);
          
                  Types.Par memory oldInputPar = state.getPar(
                      args.makerAccount,
                      args.inputMarket
                  );
                  (
                      Types.Par memory newInputPar,
                      Types.Wei memory inputWei
                  ) = state.getNewParAndDeltaWei(
                      args.makerAccount,
                      args.inputMarket,
                      args.amount
                  );
          
                  Types.AssetAmount memory outputAmount = IAutoTrader(args.autoTrader).getTradeCost(
                      args.inputMarket,
                      args.outputMarket,
                      args.makerAccount,
                      args.takerAccount,
                      oldInputPar,
                      newInputPar,
                      inputWei,
                      args.tradeData
                  );
          
                  (
                      Types.Par memory newOutputPar,
                      Types.Wei memory outputWei
                  ) = state.getNewParAndDeltaWei(
                      args.makerAccount,
                      args.outputMarket,
                      outputAmount
                  );
          
                  Require.that(
                      outputWei.isZero() || inputWei.isZero() || outputWei.sign != inputWei.sign,
                      FILE,
                      "Trades cannot be one-sided"
                  );
          
                  // set the balance for the maker
                  state.setPar(
                      args.makerAccount,
                      args.inputMarket,
                      newInputPar
                  );
                  state.setPar(
                      args.makerAccount,
                      args.outputMarket,
                      newOutputPar
                  );
          
                  // set the balance for the taker
                  state.setParFromDeltaWei(
                      args.takerAccount,
                      args.inputMarket,
                      inputWei.negative()
                  );
                  state.setParFromDeltaWei(
                      args.takerAccount,
                      args.outputMarket,
                      outputWei.negative()
                  );
          
                  Events.logTrade(
                      state,
                      args,
                      inputWei,
                      outputWei
                  );
              }
          
              function _liquidate(
                  Storage.State storage state,
                  Actions.LiquidateArgs memory args,
                  Cache.MarketCache memory cache
              )
                  private
              {
                  state.requireIsOperator(args.solidAccount, msg.sender);
          
                  // verify liquidatable
                  if (Account.Status.Liquid != state.getStatus(args.liquidAccount)) {
                      Require.that(
                          !state.isCollateralized(args.liquidAccount, cache, /* requireMinBorrow = */ false),
                          FILE,
                          "Unliquidatable account",
                          args.liquidAccount.owner,
                          args.liquidAccount.number
                      );
                      state.setStatus(args.liquidAccount, Account.Status.Liquid);
                  }
          
                  Types.Wei memory maxHeldWei = state.getWei(
                      args.liquidAccount,
                      args.heldMarket
                  );
          
                  Require.that(
                      !maxHeldWei.isNegative(),
                      FILE,
                      "Collateral cannot be negative",
                      args.liquidAccount.owner,
                      args.liquidAccount.number,
                      args.heldMarket
                  );
          
                  (
                      Types.Par memory owedPar,
                      Types.Wei memory owedWei
                  ) = state.getNewParAndDeltaWeiForLiquidation(
                      args.liquidAccount,
                      args.owedMarket,
                      args.amount
                  );
          
                  (
                      Monetary.Price memory heldPrice,
                      Monetary.Price memory owedPrice
                  ) = _getLiquidationPrices(
                      state,
                      cache,
                      args.heldMarket,
                      args.owedMarket
                  );
          
                  Types.Wei memory heldWei = _owedWeiToHeldWei(owedWei, heldPrice, owedPrice);
          
                  // if attempting to over-borrow the held asset, bound it by the maximum
                  if (heldWei.value > maxHeldWei.value) {
                      heldWei = maxHeldWei.negative();
                      owedWei = _heldWeiToOwedWei(heldWei, heldPrice, owedPrice);
          
                      state.setPar(
                          args.liquidAccount,
                          args.heldMarket,
                          Types.zeroPar()
                      );
                      state.setParFromDeltaWei(
                          args.liquidAccount,
                          args.owedMarket,
                          owedWei
                      );
                  } else {
                      state.setPar(
                          args.liquidAccount,
                          args.owedMarket,
                          owedPar
                      );
                      state.setParFromDeltaWei(
                          args.liquidAccount,
                          args.heldMarket,
                          heldWei
                      );
                  }
          
                  // set the balances for the solid account
                  state.setParFromDeltaWei(
                      args.solidAccount,
                      args.owedMarket,
                      owedWei.negative()
                  );
                  state.setParFromDeltaWei(
                      args.solidAccount,
                      args.heldMarket,
                      heldWei.negative()
                  );
          
                  Events.logLiquidate(
                      state,
                      args,
                      heldWei,
                      owedWei
                  );
              }
          
              function _vaporize(
                  Storage.State storage state,
                  Actions.VaporizeArgs memory args,
                  Cache.MarketCache memory cache
              )
                  private
              {
                  state.requireIsOperator(args.solidAccount, msg.sender);
          
                  // verify vaporizable
                  if (Account.Status.Vapor != state.getStatus(args.vaporAccount)) {
                      Require.that(
                          state.isVaporizable(args.vaporAccount, cache),
                          FILE,
                          "Unvaporizable account",
                          args.vaporAccount.owner,
                          args.vaporAccount.number
                      );
                      state.setStatus(args.vaporAccount, Account.Status.Vapor);
                  }
          
                  // First, attempt to refund using the same token
                  (
                      bool fullyRepaid,
                      Types.Wei memory excessWei
                  ) = _vaporizeUsingExcess(state, args);
                  if (fullyRepaid) {
                      Events.logVaporize(
                          state,
                          args,
                          Types.zeroWei(),
                          Types.zeroWei(),
                          excessWei
                      );
                      return;
                  }
          
                  Types.Wei memory maxHeldWei = state.getNumExcessTokens(args.heldMarket);
          
                  Require.that(
                      !maxHeldWei.isNegative(),
                      FILE,
                      "Excess cannot be negative",
                      args.heldMarket
                  );
          
                  (
                      Types.Par memory owedPar,
                      Types.Wei memory owedWei
                  ) = state.getNewParAndDeltaWeiForLiquidation(
                      args.vaporAccount,
                      args.owedMarket,
                      args.amount
                  );
          
                  (
                      Monetary.Price memory heldPrice,
                      Monetary.Price memory owedPrice
                  ) = _getLiquidationPrices(
                      state,
                      cache,
                      args.heldMarket,
                      args.owedMarket
                  );
          
                  Types.Wei memory heldWei = _owedWeiToHeldWei(owedWei, heldPrice, owedPrice);
          
                  // if attempting to over-borrow the held asset, bound it by the maximum
                  if (heldWei.value > maxHeldWei.value) {
                      heldWei = maxHeldWei.negative();
                      owedWei = _heldWeiToOwedWei(heldWei, heldPrice, owedPrice);
          
                      state.setParFromDeltaWei(
                          args.vaporAccount,
                          args.owedMarket,
                          owedWei
                      );
                  } else {
                      state.setPar(
                          args.vaporAccount,
                          args.owedMarket,
                          owedPar
                      );
                  }
          
                  // set the balances for the solid account
                  state.setParFromDeltaWei(
                      args.solidAccount,
                      args.owedMarket,
                      owedWei.negative()
                  );
                  state.setParFromDeltaWei(
                      args.solidAccount,
                      args.heldMarket,
                      heldWei.negative()
                  );
          
                  Events.logVaporize(
                      state,
                      args,
                      heldWei,
                      owedWei,
                      excessWei
                  );
              }
          
              function _call(
                  Storage.State storage state,
                  Actions.CallArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.account, msg.sender);
          
                  ICallee(args.callee).callFunction(
                      msg.sender,
                      args.account,
                      args.data
                  );
          
                  Events.logCall(args);
              }
          
              // ============ Private Functions ============
          
              /**
               * For the purposes of liquidation or vaporization, get the value-equivalent amount of heldWei
               * given owedWei and the (spread-adjusted) prices of each asset.
               */
              function _owedWeiToHeldWei(
                  Types.Wei memory owedWei,
                  Monetary.Price memory heldPrice,
                  Monetary.Price memory owedPrice
              )
                  private
                  pure
                  returns (Types.Wei memory)
              {
                  return Types.Wei({
                      sign: false,
                      value: Math.getPartial(owedWei.value, owedPrice.value, heldPrice.value)
                  });
              }
          
              /**
               * For the purposes of liquidation or vaporization, get the value-equivalent amount of owedWei
               * given heldWei and the (spread-adjusted) prices of each asset.
               */
              function _heldWeiToOwedWei(
                  Types.Wei memory heldWei,
                  Monetary.Price memory heldPrice,
                  Monetary.Price memory owedPrice
              )
                  private
                  pure
                  returns (Types.Wei memory)
              {
                  return Types.Wei({
                      sign: true,
                      value: Math.getPartialRoundUp(heldWei.value, heldPrice.value, owedPrice.value)
                  });
              }
          
              /**
               * Attempt to vaporize an account's balance using the excess tokens in the protocol. Return a
               * bool and a wei value. The boolean is true if and only if the balance was fully vaporized. The
               * Wei value is how many excess tokens were used to partially or fully vaporize the account's
               * negative balance.
               */
              function _vaporizeUsingExcess(
                  Storage.State storage state,
                  Actions.VaporizeArgs memory args
              )
                  internal
                  returns (bool, Types.Wei memory)
              {
                  Types.Wei memory excessWei = state.getNumExcessTokens(args.owedMarket);
          
                  // There are no excess funds, return zero
                  if (!excessWei.isPositive()) {
                      return (false, Types.zeroWei());
                  }
          
                  Types.Wei memory maxRefundWei = state.getWei(args.vaporAccount, args.owedMarket);
                  maxRefundWei.sign = true;
          
                  // The account is fully vaporizable using excess funds
                  if (excessWei.value >= maxRefundWei.value) {
                      state.setPar(
                          args.vaporAccount,
                          args.owedMarket,
                          Types.zeroPar()
                      );
                      return (true, maxRefundWei);
                  }
          
                  // The account is only partially vaporizable using excess funds
                  else {
                      state.setParFromDeltaWei(
                          args.vaporAccount,
                          args.owedMarket,
                          excessWei
                      );
                      return (false, excessWei);
                  }
              }
          
              /**
               * Return the (spread-adjusted) prices of two assets for the purposes of liquidation or
               * vaporization.
               */
              function _getLiquidationPrices(
                  Storage.State storage state,
                  Cache.MarketCache memory cache,
                  uint256 heldMarketId,
                  uint256 owedMarketId
              )
                  internal
                  view
                  returns (
                      Monetary.Price memory,
                      Monetary.Price memory
                  )
              {
                  uint256 originalPrice = cache.getPrice(owedMarketId).value;
                  Decimal.D256 memory spread = state.getLiquidationSpreadForPair(
                      heldMarketId,
                      owedMarketId
                  );
          
                  Monetary.Price memory owedPrice = Monetary.Price({
                      value: originalPrice.add(Decimal.mul(originalPrice, spread))
                  });
          
                  return (cache.getPrice(heldMarketId), owedPrice);
              }
          }
          
          // File: contracts/protocol/Operation.sol
          
          /**
           * @title Operation
           * @author dYdX
           *
           * Primary public function for allowing users and contracts to manage accounts within Solo
           */
          contract Operation is
              State,
              ReentrancyGuard
          {
              // ============ Public Functions ============
          
              /**
               * The main entry-point to Solo that allows users and contracts to manage accounts.
               * Take one or more actions on one or more accounts. The msg.sender must be the owner or
               * operator of all accounts except for those being liquidated, vaporized, or traded with.
               * One call to operate() is considered a singular "operation". Account collateralization is
               * ensured only after the completion of the entire operation.
               *
               * @param  accounts  A list of all accounts that will be used in this operation. Cannot contain
               *                   duplicates. In each action, the relevant account will be referred-to by its
               *                   index in the list.
               * @param  actions   An ordered list of all actions that will be taken in this operation. The
               *                   actions will be processed in order.
               */
              function operate(
                  Account.Info[] memory accounts,
                  Actions.ActionArgs[] memory actions
              )
                  public
                  nonReentrant
              {
                  OperationImpl.operate(
                      g_state,
                      accounts,
                      actions
                  );
              }
          }
          
          // File: contracts/protocol/Permission.sol
          
          /**
           * @title Permission
           * @author dYdX
           *
           * Public function that allows other addresses to manage accounts
           */
          contract Permission is
              State
          {
              // ============ Events ============
          
              event LogOperatorSet(
                  address indexed owner,
                  address operator,
                  bool trusted
              );
          
              // ============ Structs ============
          
              struct OperatorArg {
                  address operator;
                  bool trusted;
              }
          
              // ============ Public Functions ============
          
              /**
               * Approves/disapproves any number of operators. An operator is an external address that has the
               * same permissions to manipulate an account as the owner of the account. Operators are simply
               * addresses and therefore may either be externally-owned Ethereum accounts OR smart contracts.
               *
               * Operators are also able to act as AutoTrader contracts on behalf of the account owner if the
               * operator is a smart contract and implements the IAutoTrader interface.
               *
               * @param  args  A list of OperatorArgs which have an address and a boolean. The boolean value
               *               denotes whether to approve (true) or revoke approval (false) for that address.
               */
              function setOperators(
                  OperatorArg[] memory args
              )
                  public
              {
                  for (uint256 i = 0; i < args.length; i++) {
                      address operator = args[i].operator;
                      bool trusted = args[i].trusted;
                      g_state.operators[msg.sender][operator] = trusted;
                      emit LogOperatorSet(msg.sender, operator, trusted);
                  }
              }
          }
          
          // File: contracts/protocol/SoloMargin.sol
          
          /**
           * @title SoloMargin
           * @author dYdX
           *
           * Main contract that inherits from other contracts
           */
          contract SoloMargin is
              State,
              Admin,
              Getters,
              Operation,
              Permission
          {
              // ============ Constructor ============
          
              constructor(
                  Storage.RiskParams memory riskParams,
                  Storage.RiskLimits memory riskLimits
              )
                  public
              {
                  g_state.riskParams = riskParams;
                  g_state.riskLimits = riskLimits;
              }
          }
          
          // File: contracts/external/helpers/OnlySolo.sol
          
          /**
           * @title OnlySolo
           * @author dYdX
           *
           * Inheritable contract that restricts the calling of certain functions to Solo only
           */
          contract OnlySolo {
          
              // ============ Constants ============
          
              bytes32 constant FILE = "OnlySolo";
          
              // ============ Storage ============
          
              SoloMargin public SOLO_MARGIN;
          
              // ============ Constructor ============
          
              constructor (
                  address soloMargin
              )
                  public
              {
                  SOLO_MARGIN = SoloMargin(soloMargin);
              }
          
              // ============ Modifiers ============
          
              modifier onlySolo(address from) {
                  Require.that(
                      from == address(SOLO_MARGIN),
                      FILE,
                      "Only Solo can call function",
                      from
                  );
                  _;
              }
          }
          
          // File: contracts/external/proxies/PayableProxyForSoloMargin.sol
          
          /**
           * @title PayableProxyForSoloMargin
           * @author dYdX
           *
           * Contract for wrapping/unwrapping ETH before/after interacting with Solo
           */
          contract PayableProxyForSoloMargin is
              OnlySolo,
              ReentrancyGuard
          {
              // ============ Constants ============
          
              bytes32 constant FILE = "PayableProxyForSoloMargin";
          
              // ============ Storage ============
          
              WETH9 public WETH;
          
              // ============ Constructor ============
          
              constructor (
                  address soloMargin,
                  address payable weth
              )
                  public
                  OnlySolo(soloMargin)
              {
                  WETH = WETH9(weth);
                  WETH.approve(soloMargin, uint256(-1));
              }
          
              // ============ Public Functions ============
          
              /**
               * Fallback function. Disallows ether to be sent to this contract without data except when
               * unwrapping WETH.
               */
              function ()
                  external
                  payable
              {
                  require( // coverage-disable-line
                      msg.sender == address(WETH),
                      "Cannot receive ETH"
                  );
              }
          
              function operate(
                  Account.Info[] memory accounts,
                  Actions.ActionArgs[] memory actions,
                  address payable sendEthTo
              )
                  public
                  payable
                  nonReentrant
              {
                  WETH9 weth = WETH;
          
                  // create WETH from ETH
                  if (msg.value != 0) {
                      weth.deposit.value(msg.value)();
                  }
          
                  // validate the input
                  for (uint256 i = 0; i < actions.length; i++) {
                      Actions.ActionArgs memory action = actions[i];
          
                      // Can only operate on accounts owned by msg.sender
                      address owner1 = accounts[action.accountId].owner;
                      Require.that(
                          owner1 == msg.sender,
                          FILE,
                          "Sender must be primary account",
                          owner1
                      );
          
                      // For a transfer both accounts must be owned by msg.sender
                      if (action.actionType == Actions.ActionType.Transfer) {
                          address owner2 = accounts[action.otherAccountId].owner;
                          Require.that(
                              owner2 == msg.sender,
                              FILE,
                              "Sender must be secondary account",
                              owner2
                          );
                      }
                  }
          
                  SOLO_MARGIN.operate(accounts, actions);
          
                  // return all remaining WETH to the sendEthTo as ETH
                  uint256 remainingWeth = weth.balanceOf(address(this));
                  if (remainingWeth != 0) {
                      Require.that(
                          sendEthTo != address(0),
                          FILE,
                          "Must set sendEthTo"
                      );
          
                      weth.withdraw(remainingWeth);
                      sendEthTo.transfer(remainingWeth);
                  }
              }
          }

          File 2 of 7: 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 7: SoloMargin
          /*
          
              Copyright 2019 dYdX Trading Inc.
          
              Licensed under the Apache License, Version 2.0 (the "License");
              you may not use this file except in compliance with the License.
              You may obtain a copy of the License at
          
              http://www.apache.org/licenses/LICENSE-2.0
          
              Unless required by applicable law or agreed to in writing, software
              distributed under the License is distributed on an "AS IS" BASIS,
              WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
              See the License for the specific language governing permissions and
              limitations under the License.
          
          */
          
          pragma solidity 0.5.7;
          pragma experimental ABIEncoderV2;
          
          // File: openzeppelin-solidity/contracts/ownership/Ownable.sol
          
          /**
           * @title Ownable
           * @dev The Ownable contract has an owner address, and provides basic authorization control
           * functions, this simplifies the implementation of "user permissions".
           */
          contract Ownable {
              address private _owner;
          
              event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
          
              /**
               * @dev The Ownable constructor sets the original `owner` of the contract to the sender
               * account.
               */
              constructor () internal {
                  _owner = msg.sender;
                  emit OwnershipTransferred(address(0), _owner);
              }
          
              /**
               * @return the address of the owner.
               */
              function owner() public view returns (address) {
                  return _owner;
              }
          
              /**
               * @dev Throws if called by any account other than the owner.
               */
              modifier onlyOwner() {
                  require(isOwner());
                  _;
              }
          
              /**
               * @return true if `msg.sender` is the owner of the contract.
               */
              function isOwner() public view returns (bool) {
                  return msg.sender == _owner;
              }
          
              /**
               * @dev Allows the current owner to relinquish control of the contract.
               * @notice Renouncing to ownership will leave the contract without an owner.
               * It will not be possible to call the functions with the `onlyOwner`
               * modifier anymore.
               */
              function renounceOwnership() public onlyOwner {
                  emit OwnershipTransferred(_owner, address(0));
                  _owner = address(0);
              }
          
              /**
               * @dev Allows the current owner to transfer control of the contract to a newOwner.
               * @param newOwner The address to transfer ownership to.
               */
              function transferOwnership(address newOwner) public onlyOwner {
                  _transferOwnership(newOwner);
              }
          
              /**
               * @dev Transfers control of the contract to a newOwner.
               * @param newOwner The address to transfer ownership to.
               */
              function _transferOwnership(address newOwner) internal {
                  require(newOwner != address(0));
                  emit OwnershipTransferred(_owner, newOwner);
                  _owner = newOwner;
              }
          }
          
          // File: openzeppelin-solidity/contracts/utils/ReentrancyGuard.sol
          
          /**
           * @title Helps contracts guard against reentrancy attacks.
           * @author Remco Bloemen <remco@2π.com>, Eenae <alexey@mixbytes.io>
           * @dev If you mark a function `nonReentrant`, you should also
           * mark it `external`.
           */
          contract ReentrancyGuard {
              /// @dev counter to allow mutex lock with only one SSTORE operation
              uint256 private _guardCounter;
          
              constructor () internal {
                  // The counter starts at one to prevent changing it from zero to a non-zero
                  // value, which is a more expensive operation.
                  _guardCounter = 1;
              }
          
              /**
               * @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() {
                  _guardCounter += 1;
                  uint256 localCounter = _guardCounter;
                  _;
                  require(localCounter == _guardCounter);
              }
          }
          
          // File: openzeppelin-solidity/contracts/math/SafeMath.sol
          
          /**
           * @title SafeMath
           * @dev Unsigned math operations with safety checks that revert on error
           */
          library SafeMath {
              /**
              * @dev Multiplies two unsigned integers, reverts on overflow.
              */
              function mul(uint256 a, uint256 b) internal pure returns (uint256) {
                  // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
                  // benefit is lost if 'b' is also tested.
                  // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
                  if (a == 0) {
                      return 0;
                  }
          
                  uint256 c = a * b;
                  require(c / a == b);
          
                  return c;
              }
          
              /**
              * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
              */
              function div(uint256 a, uint256 b) internal pure returns (uint256) {
                  // Solidity only automatically asserts when dividing by 0
                  require(b > 0);
                  uint256 c = a / b;
                  // assert(a == b * c + a % b); // There is no case in which this doesn't hold
          
                  return c;
              }
          
              /**
              * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
              */
              function sub(uint256 a, uint256 b) internal pure returns (uint256) {
                  require(b <= a);
                  uint256 c = a - b;
          
                  return c;
              }
          
              /**
              * @dev Adds two unsigned integers, reverts on overflow.
              */
              function add(uint256 a, uint256 b) internal pure returns (uint256) {
                  uint256 c = a + b;
                  require(c >= a);
          
                  return c;
              }
          
              /**
              * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
              * reverts when dividing by zero.
              */
              function mod(uint256 a, uint256 b) internal pure returns (uint256) {
                  require(b != 0);
                  return a % b;
              }
          }
          
          // File: contracts/protocol/lib/Require.sol
          
          /**
           * @title Require
           * @author dYdX
           *
           * Stringifies parameters to pretty-print revert messages. Costs more gas than regular require()
           */
          library Require {
          
              // ============ Constants ============
          
              uint256 constant ASCII_ZERO = 48; // '0'
              uint256 constant ASCII_RELATIVE_ZERO = 87; // 'a' - 10
              uint256 constant ASCII_LOWER_EX = 120; // 'x'
              bytes2 constant COLON = 0x3a20; // ': '
              bytes2 constant COMMA = 0x2c20; // ', '
              bytes2 constant LPAREN = 0x203c; // ' <'
              byte constant RPAREN = 0x3e; // '>'
              uint256 constant FOUR_BIT_MASK = 0xf;
          
              // ============ Library Functions ============
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason)
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  uint256 payloadA
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  uint256 payloadA,
                  uint256 payloadB
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  COMMA,
                                  stringify(payloadB),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  address payloadA
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  address payloadA,
                  uint256 payloadB
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  COMMA,
                                  stringify(payloadB),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  address payloadA,
                  uint256 payloadB,
                  uint256 payloadC
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  COMMA,
                                  stringify(payloadB),
                                  COMMA,
                                  stringify(payloadC),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              // ============ Private Functions ============
          
              function stringify(
                  bytes32 input
              )
                  private
                  pure
                  returns (bytes memory)
              {
                  // put the input bytes into the result
                  bytes memory result = abi.encodePacked(input);
          
                  // determine the length of the input by finding the location of the last non-zero byte
                  for (uint256 i = 32; i > 0; ) {
                      // reverse-for-loops with unsigned integer
                      /* solium-disable-next-line security/no-modify-for-iter-var */
                      i--;
          
                      // find the last non-zero byte in order to determine the length
                      if (result[i] != 0) {
                          uint256 length = i + 1;
          
                          /* solium-disable-next-line security/no-inline-assembly */
                          assembly {
                              mstore(result, length) // r.length = length;
                          }
          
                          return result;
                      }
                  }
          
                  // all bytes are zero
                  return new bytes(0);
              }
          
              function stringify(
                  uint256 input
              )
                  private
                  pure
                  returns (bytes memory)
              {
                  if (input == 0) {
                      return "0";
                  }
          
                  // get the final string length
                  uint256 j = input;
                  uint256 length;
                  while (j != 0) {
                      length++;
                      j /= 10;
                  }
          
                  // allocate the string
                  bytes memory bstr = new bytes(length);
          
                  // populate the string starting with the least-significant character
                  j = input;
                  for (uint256 i = length; i > 0; ) {
                      // reverse-for-loops with unsigned integer
                      /* solium-disable-next-line security/no-modify-for-iter-var */
                      i--;
          
                      // take last decimal digit
                      bstr[i] = byte(uint8(ASCII_ZERO + (j % 10)));
          
                      // remove the last decimal digit
                      j /= 10;
                  }
          
                  return bstr;
              }
          
              function stringify(
                  address input
              )
                  private
                  pure
                  returns (bytes memory)
              {
                  uint256 z = uint256(input);
          
                  // addresses are "0x" followed by 20 bytes of data which take up 2 characters each
                  bytes memory result = new bytes(42);
          
                  // populate the result with "0x"
                  result[0] = byte(uint8(ASCII_ZERO));
                  result[1] = byte(uint8(ASCII_LOWER_EX));
          
                  // for each byte (starting from the lowest byte), populate the result with two characters
                  for (uint256 i = 0; i < 20; i++) {
                      // each byte takes two characters
                      uint256 shift = i * 2;
          
                      // populate the least-significant character
                      result[41 - shift] = char(z & FOUR_BIT_MASK);
                      z = z >> 4;
          
                      // populate the most-significant character
                      result[40 - shift] = char(z & FOUR_BIT_MASK);
                      z = z >> 4;
                  }
          
                  return result;
              }
          
              function char(
                  uint256 input
              )
                  private
                  pure
                  returns (byte)
              {
                  // return ASCII digit (0-9)
                  if (input < 10) {
                      return byte(uint8(input + ASCII_ZERO));
                  }
          
                  // return ASCII letter (a-f)
                  return byte(uint8(input + ASCII_RELATIVE_ZERO));
              }
          }
          
          // File: contracts/protocol/lib/Math.sol
          
          /**
           * @title Math
           * @author dYdX
           *
           * Library for non-standard Math functions
           */
          library Math {
              using SafeMath for uint256;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Math";
          
              // ============ Library Functions ============
          
              /*
               * Return target * (numerator / denominator).
               */
              function getPartial(
                  uint256 target,
                  uint256 numerator,
                  uint256 denominator
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return target.mul(numerator).div(denominator);
              }
          
              /*
               * Return target * (numerator / denominator), but rounded up.
               */
              function getPartialRoundUp(
                  uint256 target,
                  uint256 numerator,
                  uint256 denominator
              )
                  internal
                  pure
                  returns (uint256)
              {
                  if (target == 0 || numerator == 0) {
                      // SafeMath will check for zero denominator
                      return SafeMath.div(0, denominator);
                  }
                  return target.mul(numerator).sub(1).div(denominator).add(1);
              }
          
              function to128(
                  uint256 number
              )
                  internal
                  pure
                  returns (uint128)
              {
                  uint128 result = uint128(number);
                  Require.that(
                      result == number,
                      FILE,
                      "Unsafe cast to uint128"
                  );
                  return result;
              }
          
              function to96(
                  uint256 number
              )
                  internal
                  pure
                  returns (uint96)
              {
                  uint96 result = uint96(number);
                  Require.that(
                      result == number,
                      FILE,
                      "Unsafe cast to uint96"
                  );
                  return result;
              }
          
              function to32(
                  uint256 number
              )
                  internal
                  pure
                  returns (uint32)
              {
                  uint32 result = uint32(number);
                  Require.that(
                      result == number,
                      FILE,
                      "Unsafe cast to uint32"
                  );
                  return result;
              }
          
              function min(
                  uint256 a,
                  uint256 b
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return a < b ? a : b;
              }
          
              function max(
                  uint256 a,
                  uint256 b
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return a > b ? a : b;
              }
          }
          
          // File: contracts/protocol/lib/Types.sol
          
          /**
           * @title Types
           * @author dYdX
           *
           * Library for interacting with the basic structs used in Solo
           */
          library Types {
              using Math for uint256;
          
              // ============ AssetAmount ============
          
              enum AssetDenomination {
                  Wei, // the amount is denominated in wei
                  Par  // the amount is denominated in par
              }
          
              enum AssetReference {
                  Delta, // the amount is given as a delta from the current value
                  Target // the amount is given as an exact number to end up at
              }
          
              struct AssetAmount {
                  bool sign; // true if positive
                  AssetDenomination denomination;
                  AssetReference ref;
                  uint256 value;
              }
          
              // ============ Par (Principal Amount) ============
          
              // Total borrow and supply values for a market
              struct TotalPar {
                  uint128 borrow;
                  uint128 supply;
              }
          
              // Individual principal amount for an account
              struct Par {
                  bool sign; // true if positive
                  uint128 value;
              }
          
              function zeroPar()
                  internal
                  pure
                  returns (Par memory)
              {
                  return Par({
                      sign: false,
                      value: 0
                  });
              }
          
              function sub(
                  Par memory a,
                  Par memory b
              )
                  internal
                  pure
                  returns (Par memory)
              {
                  return add(a, negative(b));
              }
          
              function add(
                  Par memory a,
                  Par memory b
              )
                  internal
                  pure
                  returns (Par memory)
              {
                  Par memory result;
                  if (a.sign == b.sign) {
                      result.sign = a.sign;
                      result.value = SafeMath.add(a.value, b.value).to128();
                  } else {
                      if (a.value >= b.value) {
                          result.sign = a.sign;
                          result.value = SafeMath.sub(a.value, b.value).to128();
                      } else {
                          result.sign = b.sign;
                          result.value = SafeMath.sub(b.value, a.value).to128();
                      }
                  }
                  return result;
              }
          
              function equals(
                  Par memory a,
                  Par memory b
              )
                  internal
                  pure
                  returns (bool)
              {
                  if (a.value == b.value) {
                      if (a.value == 0) {
                          return true;
                      }
                      return a.sign == b.sign;
                  }
                  return false;
              }
          
              function negative(
                  Par memory a
              )
                  internal
                  pure
                  returns (Par memory)
              {
                  return Par({
                      sign: !a.sign,
                      value: a.value
                  });
              }
          
              function isNegative(
                  Par memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return !a.sign && a.value > 0;
              }
          
              function isPositive(
                  Par memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.sign && a.value > 0;
              }
          
              function isZero(
                  Par memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.value == 0;
              }
          
              // ============ Wei (Token Amount) ============
          
              // Individual token amount for an account
              struct Wei {
                  bool sign; // true if positive
                  uint256 value;
              }
          
              function zeroWei()
                  internal
                  pure
                  returns (Wei memory)
              {
                  return Wei({
                      sign: false,
                      value: 0
                  });
              }
          
              function sub(
                  Wei memory a,
                  Wei memory b
              )
                  internal
                  pure
                  returns (Wei memory)
              {
                  return add(a, negative(b));
              }
          
              function add(
                  Wei memory a,
                  Wei memory b
              )
                  internal
                  pure
                  returns (Wei memory)
              {
                  Wei memory result;
                  if (a.sign == b.sign) {
                      result.sign = a.sign;
                      result.value = SafeMath.add(a.value, b.value);
                  } else {
                      if (a.value >= b.value) {
                          result.sign = a.sign;
                          result.value = SafeMath.sub(a.value, b.value);
                      } else {
                          result.sign = b.sign;
                          result.value = SafeMath.sub(b.value, a.value);
                      }
                  }
                  return result;
              }
          
              function equals(
                  Wei memory a,
                  Wei memory b
              )
                  internal
                  pure
                  returns (bool)
              {
                  if (a.value == b.value) {
                      if (a.value == 0) {
                          return true;
                      }
                      return a.sign == b.sign;
                  }
                  return false;
              }
          
              function negative(
                  Wei memory a
              )
                  internal
                  pure
                  returns (Wei memory)
              {
                  return Wei({
                      sign: !a.sign,
                      value: a.value
                  });
              }
          
              function isNegative(
                  Wei memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return !a.sign && a.value > 0;
              }
          
              function isPositive(
                  Wei memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.sign && a.value > 0;
              }
          
              function isZero(
                  Wei memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.value == 0;
              }
          }
          
          // File: contracts/protocol/lib/Account.sol
          
          /**
           * @title Account
           * @author dYdX
           *
           * Library of structs and functions that represent an account
           */
          library Account {
              // ============ Enums ============
          
              /*
               * Most-recently-cached account status.
               *
               * Normal: Can only be liquidated if the account values are violating the global margin-ratio.
               * Liquid: Can be liquidated no matter the account values.
               *         Can be vaporized if there are no more positive account values.
               * Vapor:  Has only negative (or zeroed) account values. Can be vaporized.
               *
               */
              enum Status {
                  Normal,
                  Liquid,
                  Vapor
              }
          
              // ============ Structs ============
          
              // Represents the unique key that specifies an account
              struct Info {
                  address owner;  // The address that owns the account
                  uint256 number; // A nonce that allows a single address to control many accounts
              }
          
              // The complete storage for any account
              struct Storage {
                  mapping (uint256 => Types.Par) balances; // Mapping from marketId to principal
                  Status status;
              }
          
              // ============ Library Functions ============
          
              function equals(
                  Info memory a,
                  Info memory b
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.owner == b.owner && a.number == b.number;
              }
          }
          
          // File: contracts/protocol/lib/Monetary.sol
          
          /**
           * @title Monetary
           * @author dYdX
           *
           * Library for types involving money
           */
          library Monetary {
          
              /*
               * The price of a base-unit of an asset.
               */
              struct Price {
                  uint256 value;
              }
          
              /*
               * Total value of an some amount of an asset. Equal to (price * amount).
               */
              struct Value {
                  uint256 value;
              }
          }
          
          // File: contracts/protocol/lib/Cache.sol
          
          /**
           * @title Cache
           * @author dYdX
           *
           * Library for caching information about markets
           */
          library Cache {
              using Cache for MarketCache;
              using Storage for Storage.State;
          
              // ============ Structs ============
          
              struct MarketInfo {
                  bool isClosing;
                  uint128 borrowPar;
                  Monetary.Price price;
              }
          
              struct MarketCache {
                  MarketInfo[] markets;
              }
          
              // ============ Setter Functions ============
          
              /**
               * Initialize an empty cache for some given number of total markets.
               */
              function create(
                  uint256 numMarkets
              )
                  internal
                  pure
                  returns (MarketCache memory)
              {
                  return MarketCache({
                      markets: new MarketInfo[](numMarkets)
                  });
              }
          
              /**
               * Add market information (price and total borrowed par if the market is closing) to the cache.
               * Return true if the market information did not previously exist in the cache.
               */
              function addMarket(
                  MarketCache memory cache,
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  view
                  returns (bool)
              {
                  if (cache.hasMarket(marketId)) {
                      return false;
                  }
                  cache.markets[marketId].price = state.fetchPrice(marketId);
                  if (state.markets[marketId].isClosing) {
                      cache.markets[marketId].isClosing = true;
                      cache.markets[marketId].borrowPar = state.getTotalPar(marketId).borrow;
                  }
                  return true;
              }
          
              // ============ Getter Functions ============
          
              function getNumMarkets(
                  MarketCache memory cache
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return cache.markets.length;
              }
          
              function hasMarket(
                  MarketCache memory cache,
                  uint256 marketId
              )
                  internal
                  pure
                  returns (bool)
              {
                  return cache.markets[marketId].price.value != 0;
              }
          
              function getIsClosing(
                  MarketCache memory cache,
                  uint256 marketId
              )
                  internal
                  pure
                  returns (bool)
              {
                  return cache.markets[marketId].isClosing;
              }
          
              function getPrice(
                  MarketCache memory cache,
                  uint256 marketId
              )
                  internal
                  pure
                  returns (Monetary.Price memory)
              {
                  return cache.markets[marketId].price;
              }
          
              function getBorrowPar(
                  MarketCache memory cache,
                  uint256 marketId
              )
                  internal
                  pure
                  returns (uint128)
              {
                  return cache.markets[marketId].borrowPar;
              }
          }
          
          // File: contracts/protocol/lib/Decimal.sol
          
          /**
           * @title Decimal
           * @author dYdX
           *
           * Library that defines a fixed-point number with 18 decimal places.
           */
          library Decimal {
              using SafeMath for uint256;
          
              // ============ Constants ============
          
              uint256 constant BASE = 10**18;
          
              // ============ Structs ============
          
              struct D256 {
                  uint256 value;
              }
          
              // ============ Functions ============
          
              function one()
                  internal
                  pure
                  returns (D256 memory)
              {
                  return D256({ value: BASE });
              }
          
              function onePlus(
                  D256 memory d
              )
                  internal
                  pure
                  returns (D256 memory)
              {
                  return D256({ value: d.value.add(BASE) });
              }
          
              function mul(
                  uint256 target,
                  D256 memory d
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return Math.getPartial(target, d.value, BASE);
              }
          
              function div(
                  uint256 target,
                  D256 memory d
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return Math.getPartial(target, BASE, d.value);
              }
          }
          
          // File: contracts/protocol/lib/Time.sol
          
          /**
           * @title Time
           * @author dYdX
           *
           * Library for dealing with time, assuming timestamps fit within 32 bits (valid until year 2106)
           */
          library Time {
          
              // ============ Library Functions ============
          
              function currentTime()
                  internal
                  view
                  returns (uint32)
              {
                  return Math.to32(block.timestamp);
              }
          }
          
          // File: contracts/protocol/lib/Interest.sol
          
          /**
           * @title Interest
           * @author dYdX
           *
           * Library for managing the interest rate and interest indexes of Solo
           */
          library Interest {
              using Math for uint256;
              using SafeMath for uint256;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Interest";
              uint64 constant BASE = 10**18;
          
              // ============ Structs ============
          
              struct Rate {
                  uint256 value;
              }
          
              struct Index {
                  uint96 borrow;
                  uint96 supply;
                  uint32 lastUpdate;
              }
          
              // ============ Library Functions ============
          
              /**
               * Get a new market Index based on the old index and market interest rate.
               * Calculate interest for borrowers by using the formula rate * time. Approximates
               * continuously-compounded interest when called frequently, but is much more
               * gas-efficient to calculate. For suppliers, the interest rate is adjusted by the earningsRate,
               * then prorated the across all suppliers.
               *
               * @param  index         The old index for a market
               * @param  rate          The current interest rate of the market
               * @param  totalPar      The total supply and borrow par values of the market
               * @param  earningsRate  The portion of the interest that is forwarded to the suppliers
               * @return               The updated index for a market
               */
              function calculateNewIndex(
                  Index memory index,
                  Rate memory rate,
                  Types.TotalPar memory totalPar,
                  Decimal.D256 memory earningsRate
              )
                  internal
                  view
                  returns (Index memory)
              {
                  (
                      Types.Wei memory supplyWei,
                      Types.Wei memory borrowWei
                  ) = totalParToWei(totalPar, index);
          
                  // get interest increase for borrowers
                  uint32 currentTime = Time.currentTime();
                  uint256 borrowInterest = rate.value.mul(uint256(currentTime).sub(index.lastUpdate));
          
                  // get interest increase for suppliers
                  uint256 supplyInterest;
                  if (Types.isZero(supplyWei)) {
                      supplyInterest = 0;
                  } else {
                      supplyInterest = Decimal.mul(borrowInterest, earningsRate);
                      if (borrowWei.value < supplyWei.value) {
                          supplyInterest = Math.getPartial(supplyInterest, borrowWei.value, supplyWei.value);
                      }
                  }
                  assert(supplyInterest <= borrowInterest);
          
                  return Index({
                      borrow: Math.getPartial(index.borrow, borrowInterest, BASE).add(index.borrow).to96(),
                      supply: Math.getPartial(index.supply, supplyInterest, BASE).add(index.supply).to96(),
                      lastUpdate: currentTime
                  });
              }
          
              function newIndex()
                  internal
                  view
                  returns (Index memory)
              {
                  return Index({
                      borrow: BASE,
                      supply: BASE,
                      lastUpdate: Time.currentTime()
                  });
              }
          
              /*
               * Convert a principal amount to a token amount given an index.
               */
              function parToWei(
                  Types.Par memory input,
                  Index memory index
              )
                  internal
                  pure
                  returns (Types.Wei memory)
              {
                  uint256 inputValue = uint256(input.value);
                  if (input.sign) {
                      return Types.Wei({
                          sign: true,
                          value: inputValue.getPartial(index.supply, BASE)
                      });
                  } else {
                      return Types.Wei({
                          sign: false,
                          value: inputValue.getPartialRoundUp(index.borrow, BASE)
                      });
                  }
              }
          
              /*
               * Convert a token amount to a principal amount given an index.
               */
              function weiToPar(
                  Types.Wei memory input,
                  Index memory index
              )
                  internal
                  pure
                  returns (Types.Par memory)
              {
                  if (input.sign) {
                      return Types.Par({
                          sign: true,
                          value: input.value.getPartial(BASE, index.supply).to128()
                      });
                  } else {
                      return Types.Par({
                          sign: false,
                          value: input.value.getPartialRoundUp(BASE, index.borrow).to128()
                      });
                  }
              }
          
              /*
               * Convert the total supply and borrow principal amounts of a market to total supply and borrow
               * token amounts.
               */
              function totalParToWei(
                  Types.TotalPar memory totalPar,
                  Index memory index
              )
                  internal
                  pure
                  returns (Types.Wei memory, Types.Wei memory)
              {
                  Types.Par memory supplyPar = Types.Par({
                      sign: true,
                      value: totalPar.supply
                  });
                  Types.Par memory borrowPar = Types.Par({
                      sign: false,
                      value: totalPar.borrow
                  });
                  Types.Wei memory supplyWei = parToWei(supplyPar, index);
                  Types.Wei memory borrowWei = parToWei(borrowPar, index);
                  return (supplyWei, borrowWei);
              }
          }
          
          // File: contracts/protocol/interfaces/IErc20.sol
          
          /**
           * @title IErc20
           * @author dYdX
           *
           * Interface for using ERC20 Tokens. We have to use a special interface to call ERC20 functions so
           * that we don't automatically revert when calling non-compliant tokens that have no return value for
           * transfer(), transferFrom(), or approve().
           */
          interface IErc20 {
              event Transfer(
                  address indexed from,
                  address indexed to,
                  uint256 value
              );
          
              event Approval(
                  address indexed owner,
                  address indexed spender,
                  uint256 value
              );
          
              function totalSupply(
              )
                  external
                  view
                  returns (uint256);
          
              function balanceOf(
                  address who
              )
                  external
                  view
                  returns (uint256);
          
              function allowance(
                  address owner,
                  address spender
              )
                  external
                  view
                  returns (uint256);
          
              function transfer(
                  address to,
                  uint256 value
              )
                  external;
          
              function transferFrom(
                  address from,
                  address to,
                  uint256 value
              )
                  external;
          
              function approve(
                  address spender,
                  uint256 value
              )
                  external;
          
              function name()
                  external
                  view
                  returns (string memory);
          
              function symbol()
                  external
                  view
                  returns (string memory);
          
              function decimals()
                  external
                  view
                  returns (uint8);
          }
          
          // File: contracts/protocol/lib/Token.sol
          
          /**
           * @title Token
           * @author dYdX
           *
           * This library contains basic functions for interacting with ERC20 tokens. Modified to work with
           * tokens that don't adhere strictly to the ERC20 standard (for example tokens that don't return a
           * boolean value on success).
           */
          library Token {
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Token";
          
              // ============ Library Functions ============
          
              function balanceOf(
                  address token,
                  address owner
              )
                  internal
                  view
                  returns (uint256)
              {
                  return IErc20(token).balanceOf(owner);
              }
          
              function allowance(
                  address token,
                  address owner,
                  address spender
              )
                  internal
                  view
                  returns (uint256)
              {
                  return IErc20(token).allowance(owner, spender);
              }
          
              function approve(
                  address token,
                  address spender,
                  uint256 amount
              )
                  internal
              {
                  IErc20(token).approve(spender, amount);
          
                  Require.that(
                      checkSuccess(),
                      FILE,
                      "Approve failed"
                  );
              }
          
              function approveMax(
                  address token,
                  address spender
              )
                  internal
              {
                  approve(
                      token,
                      spender,
                      uint256(-1)
                  );
              }
          
              function transfer(
                  address token,
                  address to,
                  uint256 amount
              )
                  internal
              {
                  if (amount == 0 || to == address(this)) {
                      return;
                  }
          
                  IErc20(token).transfer(to, amount);
          
                  Require.that(
                      checkSuccess(),
                      FILE,
                      "Transfer failed"
                  );
              }
          
              function transferFrom(
                  address token,
                  address from,
                  address to,
                  uint256 amount
              )
                  internal
              {
                  if (amount == 0 || to == from) {
                      return;
                  }
          
                  IErc20(token).transferFrom(from, to, amount);
          
                  Require.that(
                      checkSuccess(),
                      FILE,
                      "TransferFrom failed"
                  );
              }
          
              // ============ Private Functions ============
          
              /**
               * Check the return value of the previous function up to 32 bytes. Return true if the previous
               * function returned 0 bytes or 32 bytes that are not all-zero.
               */
              function checkSuccess(
              )
                  private
                  pure
                  returns (bool)
              {
                  uint256 returnValue = 0;
          
                  /* solium-disable-next-line security/no-inline-assembly */
                  assembly {
                      // check number of bytes returned from last function call
                      switch returndatasize
          
                      // no bytes returned: assume success
                      case 0x0 {
                          returnValue := 1
                      }
          
                      // 32 bytes returned: check if non-zero
                      case 0x20 {
                          // copy 32 bytes into scratch space
                          returndatacopy(0x0, 0x0, 0x20)
          
                          // load those bytes into returnValue
                          returnValue := mload(0x0)
                      }
          
                      // not sure what was returned: don't mark as success
                      default { }
                  }
          
                  return returnValue != 0;
              }
          }
          
          // File: contracts/protocol/interfaces/IInterestSetter.sol
          
          /**
           * @title IInterestSetter
           * @author dYdX
           *
           * Interface that Interest Setters for Solo must implement in order to report interest rates.
           */
          interface IInterestSetter {
          
              // ============ Public Functions ============
          
              /**
               * Get the interest rate of a token given some borrowed and supplied amounts
               *
               * @param  token        The address of the ERC20 token for the market
               * @param  borrowWei    The total borrowed token amount for the market
               * @param  supplyWei    The total supplied token amount for the market
               * @return              The interest rate per second
               */
              function getInterestRate(
                  address token,
                  uint256 borrowWei,
                  uint256 supplyWei
              )
                  external
                  view
                  returns (Interest.Rate memory);
          }
          
          // File: contracts/protocol/interfaces/IPriceOracle.sol
          
          /**
           * @title IPriceOracle
           * @author dYdX
           *
           * Interface that Price Oracles for Solo must implement in order to report prices.
           */
          contract IPriceOracle {
          
              // ============ Constants ============
          
              uint256 public constant ONE_DOLLAR = 10 ** 36;
          
              // ============ Public Functions ============
          
              /**
               * Get the price of a token
               *
               * @param  token  The ERC20 token address of the market
               * @return        The USD price of a base unit of the token, then multiplied by 10^36.
               *                So a USD-stable coin with 18 decimal places would return 10^18.
               *                This is the price of the base unit rather than the price of a "human-readable"
               *                token amount. Every ERC20 may have a different number of decimals.
               */
              function getPrice(
                  address token
              )
                  public
                  view
                  returns (Monetary.Price memory);
          }
          
          // File: contracts/protocol/lib/Storage.sol
          
          /**
           * @title Storage
           * @author dYdX
           *
           * Functions for reading, writing, and verifying state in Solo
           */
          library Storage {
              using Cache for Cache.MarketCache;
              using Storage for Storage.State;
              using Math for uint256;
              using Types for Types.Par;
              using Types for Types.Wei;
              using SafeMath for uint256;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Storage";
          
              // ============ Structs ============
          
              // All information necessary for tracking a market
              struct Market {
                  // Contract address of the associated ERC20 token
                  address token;
          
                  // Total aggregated supply and borrow amount of the entire market
                  Types.TotalPar totalPar;
          
                  // Interest index of the market
                  Interest.Index index;
          
                  // Contract address of the price oracle for this market
                  IPriceOracle priceOracle;
          
                  // Contract address of the interest setter for this market
                  IInterestSetter interestSetter;
          
                  // Multiplier on the marginRatio for this market
                  Decimal.D256 marginPremium;
          
                  // Multiplier on the liquidationSpread for this market
                  Decimal.D256 spreadPremium;
          
                  // Whether additional borrows are allowed for this market
                  bool isClosing;
              }
          
              // The global risk parameters that govern the health and security of the system
              struct RiskParams {
                  // Required ratio of over-collateralization
                  Decimal.D256 marginRatio;
          
                  // Percentage penalty incurred by liquidated accounts
                  Decimal.D256 liquidationSpread;
          
                  // Percentage of the borrower's interest fee that gets passed to the suppliers
                  Decimal.D256 earningsRate;
          
                  // The minimum absolute borrow value of an account
                  // There must be sufficient incentivize to liquidate undercollateralized accounts
                  Monetary.Value minBorrowedValue;
              }
          
              // The maximum RiskParam values that can be set
              struct RiskLimits {
                  uint64 marginRatioMax;
                  uint64 liquidationSpreadMax;
                  uint64 earningsRateMax;
                  uint64 marginPremiumMax;
                  uint64 spreadPremiumMax;
                  uint128 minBorrowedValueMax;
              }
          
              // The entire storage state of Solo
              struct State {
                  // number of markets
                  uint256 numMarkets;
          
                  // marketId => Market
                  mapping (uint256 => Market) markets;
          
                  // owner => account number => Account
                  mapping (address => mapping (uint256 => Account.Storage)) accounts;
          
                  // Addresses that can control other users accounts
                  mapping (address => mapping (address => bool)) operators;
          
                  // Addresses that can control all users accounts
                  mapping (address => bool) globalOperators;
          
                  // mutable risk parameters of the system
                  RiskParams riskParams;
          
                  // immutable risk limits of the system
                  RiskLimits riskLimits;
              }
          
              // ============ Functions ============
          
              function getToken(
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  view
                  returns (address)
              {
                  return state.markets[marketId].token;
              }
          
              function getTotalPar(
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  view
                  returns (Types.TotalPar memory)
              {
                  return state.markets[marketId].totalPar;
              }
          
              function getIndex(
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  view
                  returns (Interest.Index memory)
              {
                  return state.markets[marketId].index;
              }
          
              function getNumExcessTokens(
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  view
                  returns (Types.Wei memory)
              {
                  Interest.Index memory index = state.getIndex(marketId);
                  Types.TotalPar memory totalPar = state.getTotalPar(marketId);
          
                  address token = state.getToken(marketId);
          
                  Types.Wei memory balanceWei = Types.Wei({
                      sign: true,
                      value: Token.balanceOf(token, address(this))
                  });
          
                  (
                      Types.Wei memory supplyWei,
                      Types.Wei memory borrowWei
                  ) = Interest.totalParToWei(totalPar, index);
          
                  // borrowWei is negative, so subtracting it makes the value more positive
                  return balanceWei.sub(borrowWei).sub(supplyWei);
              }
          
              function getStatus(
                  Storage.State storage state,
                  Account.Info memory account
              )
                  internal
                  view
                  returns (Account.Status)
              {
                  return state.accounts[account.owner][account.number].status;
              }
          
              function getPar(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 marketId
              )
                  internal
                  view
                  returns (Types.Par memory)
              {
                  return state.accounts[account.owner][account.number].balances[marketId];
              }
          
              function getWei(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 marketId
              )
                  internal
                  view
                  returns (Types.Wei memory)
              {
                  Types.Par memory par = state.getPar(account, marketId);
          
                  if (par.isZero()) {
                      return Types.zeroWei();
                  }
          
                  Interest.Index memory index = state.getIndex(marketId);
                  return Interest.parToWei(par, index);
              }
          
              function getLiquidationSpreadForPair(
                  Storage.State storage state,
                  uint256 heldMarketId,
                  uint256 owedMarketId
              )
                  internal
                  view
                  returns (Decimal.D256 memory)
              {
                  uint256 result = state.riskParams.liquidationSpread.value;
                  result = Decimal.mul(result, Decimal.onePlus(state.markets[heldMarketId].spreadPremium));
                  result = Decimal.mul(result, Decimal.onePlus(state.markets[owedMarketId].spreadPremium));
                  return Decimal.D256({
                      value: result
                  });
              }
          
              function fetchNewIndex(
                  Storage.State storage state,
                  uint256 marketId,
                  Interest.Index memory index
              )
                  internal
                  view
                  returns (Interest.Index memory)
              {
                  Interest.Rate memory rate = state.fetchInterestRate(marketId, index);
          
                  return Interest.calculateNewIndex(
                      index,
                      rate,
                      state.getTotalPar(marketId),
                      state.riskParams.earningsRate
                  );
              }
          
              function fetchInterestRate(
                  Storage.State storage state,
                  uint256 marketId,
                  Interest.Index memory index
              )
                  internal
                  view
                  returns (Interest.Rate memory)
              {
                  Types.TotalPar memory totalPar = state.getTotalPar(marketId);
                  (
                      Types.Wei memory supplyWei,
                      Types.Wei memory borrowWei
                  ) = Interest.totalParToWei(totalPar, index);
          
                  Interest.Rate memory rate = state.markets[marketId].interestSetter.getInterestRate(
                      state.getToken(marketId),
                      borrowWei.value,
                      supplyWei.value
                  );
          
                  return rate;
              }
          
              function fetchPrice(
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  view
                  returns (Monetary.Price memory)
              {
                  IPriceOracle oracle = IPriceOracle(state.markets[marketId].priceOracle);
                  Monetary.Price memory price = oracle.getPrice(state.getToken(marketId));
                  Require.that(
                      price.value != 0,
                      FILE,
                      "Price cannot be zero",
                      marketId
                  );
                  return price;
              }
          
              function getAccountValues(
                  Storage.State storage state,
                  Account.Info memory account,
                  Cache.MarketCache memory cache,
                  bool adjustForLiquidity
              )
                  internal
                  view
                  returns (Monetary.Value memory, Monetary.Value memory)
              {
                  Monetary.Value memory supplyValue;
                  Monetary.Value memory borrowValue;
          
                  uint256 numMarkets = cache.getNumMarkets();
                  for (uint256 m = 0; m < numMarkets; m++) {
                      if (!cache.hasMarket(m)) {
                          continue;
                      }
          
                      Types.Wei memory userWei = state.getWei(account, m);
          
                      if (userWei.isZero()) {
                          continue;
                      }
          
                      uint256 assetValue = userWei.value.mul(cache.getPrice(m).value);
                      Decimal.D256 memory adjust = Decimal.one();
                      if (adjustForLiquidity) {
                          adjust = Decimal.onePlus(state.markets[m].marginPremium);
                      }
          
                      if (userWei.sign) {
                          supplyValue.value = supplyValue.value.add(Decimal.div(assetValue, adjust));
                      } else {
                          borrowValue.value = borrowValue.value.add(Decimal.mul(assetValue, adjust));
                      }
                  }
          
                  return (supplyValue, borrowValue);
              }
          
              function isCollateralized(
                  Storage.State storage state,
                  Account.Info memory account,
                  Cache.MarketCache memory cache,
                  bool requireMinBorrow
              )
                  internal
                  view
                  returns (bool)
              {
                  // get account values (adjusted for liquidity)
                  (
                      Monetary.Value memory supplyValue,
                      Monetary.Value memory borrowValue
                  ) = state.getAccountValues(account, cache, /* adjustForLiquidity = */ true);
          
                  if (borrowValue.value == 0) {
                      return true;
                  }
          
                  if (requireMinBorrow) {
                      Require.that(
                          borrowValue.value >= state.riskParams.minBorrowedValue.value,
                          FILE,
                          "Borrow value too low",
                          account.owner,
                          account.number,
                          borrowValue.value
                      );
                  }
          
                  uint256 requiredMargin = Decimal.mul(borrowValue.value, state.riskParams.marginRatio);
          
                  return supplyValue.value >= borrowValue.value.add(requiredMargin);
              }
          
              function isGlobalOperator(
                  Storage.State storage state,
                  address operator
              )
                  internal
                  view
                  returns (bool)
              {
                  return state.globalOperators[operator];
              }
          
              function isLocalOperator(
                  Storage.State storage state,
                  address owner,
                  address operator
              )
                  internal
                  view
                  returns (bool)
              {
                  return state.operators[owner][operator];
              }
          
              function requireIsOperator(
                  Storage.State storage state,
                  Account.Info memory account,
                  address operator
              )
                  internal
                  view
              {
                  bool isValidOperator =
                      operator == account.owner
                      || state.isGlobalOperator(operator)
                      || state.isLocalOperator(account.owner, operator);
          
                  Require.that(
                      isValidOperator,
                      FILE,
                      "Unpermissioned operator",
                      operator
                  );
              }
          
              /**
               * Determine and set an account's balance based on the intended balance change. Return the
               * equivalent amount in wei
               */
              function getNewParAndDeltaWei(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 marketId,
                  Types.AssetAmount memory amount
              )
                  internal
                  view
                  returns (Types.Par memory, Types.Wei memory)
              {
                  Types.Par memory oldPar = state.getPar(account, marketId);
          
                  if (amount.value == 0 && amount.ref == Types.AssetReference.Delta) {
                      return (oldPar, Types.zeroWei());
                  }
          
                  Interest.Index memory index = state.getIndex(marketId);
                  Types.Wei memory oldWei = Interest.parToWei(oldPar, index);
                  Types.Par memory newPar;
                  Types.Wei memory deltaWei;
          
                  if (amount.denomination == Types.AssetDenomination.Wei) {
                      deltaWei = Types.Wei({
                          sign: amount.sign,
                          value: amount.value
                      });
                      if (amount.ref == Types.AssetReference.Target) {
                          deltaWei = deltaWei.sub(oldWei);
                      }
                      newPar = Interest.weiToPar(oldWei.add(deltaWei), index);
                  } else { // AssetDenomination.Par
                      newPar = Types.Par({
                          sign: amount.sign,
                          value: amount.value.to128()
                      });
                      if (amount.ref == Types.AssetReference.Delta) {
                          newPar = oldPar.add(newPar);
                      }
                      deltaWei = Interest.parToWei(newPar, index).sub(oldWei);
                  }
          
                  return (newPar, deltaWei);
              }
          
              function getNewParAndDeltaWeiForLiquidation(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 marketId,
                  Types.AssetAmount memory amount
              )
                  internal
                  view
                  returns (Types.Par memory, Types.Wei memory)
              {
                  Types.Par memory oldPar = state.getPar(account, marketId);
          
                  Require.that(
                      !oldPar.isPositive(),
                      FILE,
                      "Owed balance cannot be positive",
                      account.owner,
                      account.number,
                      marketId
                  );
          
                  (
                      Types.Par memory newPar,
                      Types.Wei memory deltaWei
                  ) = state.getNewParAndDeltaWei(
                      account,
                      marketId,
                      amount
                  );
          
                  // if attempting to over-repay the owed asset, bound it by the maximum
                  if (newPar.isPositive()) {
                      newPar = Types.zeroPar();
                      deltaWei = state.getWei(account, marketId).negative();
                  }
          
                  Require.that(
                      !deltaWei.isNegative() && oldPar.value >= newPar.value,
                      FILE,
                      "Owed balance cannot increase",
                      account.owner,
                      account.number,
                      marketId
                  );
          
                  // if not paying back enough wei to repay any par, then bound wei to zero
                  if (oldPar.equals(newPar)) {
                      deltaWei = Types.zeroWei();
                  }
          
                  return (newPar, deltaWei);
              }
          
              function isVaporizable(
                  Storage.State storage state,
                  Account.Info memory account,
                  Cache.MarketCache memory cache
              )
                  internal
                  view
                  returns (bool)
              {
                  bool hasNegative = false;
                  uint256 numMarkets = cache.getNumMarkets();
                  for (uint256 m = 0; m < numMarkets; m++) {
                      if (!cache.hasMarket(m)) {
                          continue;
                      }
                      Types.Par memory par = state.getPar(account, m);
                      if (par.isZero()) {
                          continue;
                      } else if (par.sign) {
                          return false;
                      } else {
                          hasNegative = true;
                      }
                  }
                  return hasNegative;
              }
          
              // =============== Setter Functions ===============
          
              function updateIndex(
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  returns (Interest.Index memory)
              {
                  Interest.Index memory index = state.getIndex(marketId);
                  if (index.lastUpdate == Time.currentTime()) {
                      return index;
                  }
                  return state.markets[marketId].index = state.fetchNewIndex(marketId, index);
              }
          
              function setStatus(
                  Storage.State storage state,
                  Account.Info memory account,
                  Account.Status status
              )
                  internal
              {
                  state.accounts[account.owner][account.number].status = status;
              }
          
              function setPar(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 marketId,
                  Types.Par memory newPar
              )
                  internal
              {
                  Types.Par memory oldPar = state.getPar(account, marketId);
          
                  if (Types.equals(oldPar, newPar)) {
                      return;
                  }
          
                  // updateTotalPar
                  Types.TotalPar memory totalPar = state.getTotalPar(marketId);
          
                  // roll-back oldPar
                  if (oldPar.sign) {
                      totalPar.supply = uint256(totalPar.supply).sub(oldPar.value).to128();
                  } else {
                      totalPar.borrow = uint256(totalPar.borrow).sub(oldPar.value).to128();
                  }
          
                  // roll-forward newPar
                  if (newPar.sign) {
                      totalPar.supply = uint256(totalPar.supply).add(newPar.value).to128();
                  } else {
                      totalPar.borrow = uint256(totalPar.borrow).add(newPar.value).to128();
                  }
          
                  state.markets[marketId].totalPar = totalPar;
                  state.accounts[account.owner][account.number].balances[marketId] = newPar;
              }
          
              /**
               * Determine and set an account's balance based on a change in wei
               */
              function setParFromDeltaWei(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 marketId,
                  Types.Wei memory deltaWei
              )
                  internal
              {
                  if (deltaWei.isZero()) {
                      return;
                  }
                  Interest.Index memory index = state.getIndex(marketId);
                  Types.Wei memory oldWei = state.getWei(account, marketId);
                  Types.Wei memory newWei = oldWei.add(deltaWei);
                  Types.Par memory newPar = Interest.weiToPar(newWei, index);
                  state.setPar(
                      account,
                      marketId,
                      newPar
                  );
              }
          }
          
          // File: contracts/protocol/State.sol
          
          /**
           * @title State
           * @author dYdX
           *
           * Base-level contract that holds the state of Solo
           */
          contract State
          {
              Storage.State g_state;
          }
          
          // File: contracts/protocol/impl/AdminImpl.sol
          
          /**
           * @title AdminImpl
           * @author dYdX
           *
           * Administrative functions to keep the protocol updated
           */
          library AdminImpl {
              using Storage for Storage.State;
              using Token for address;
              using Types for Types.Wei;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "AdminImpl";
          
              // ============ Events ============
          
              event LogWithdrawExcessTokens(
                  address token,
                  uint256 amount
              );
          
              event LogAddMarket(
                  uint256 marketId,
                  address token
              );
          
              event LogSetIsClosing(
                  uint256 marketId,
                  bool isClosing
              );
          
              event LogSetPriceOracle(
                  uint256 marketId,
                  address priceOracle
              );
          
              event LogSetInterestSetter(
                  uint256 marketId,
                  address interestSetter
              );
          
              event LogSetMarginPremium(
                  uint256 marketId,
                  Decimal.D256 marginPremium
              );
          
              event LogSetSpreadPremium(
                  uint256 marketId,
                  Decimal.D256 spreadPremium
              );
          
              event LogSetMarginRatio(
                  Decimal.D256 marginRatio
              );
          
              event LogSetLiquidationSpread(
                  Decimal.D256 liquidationSpread
              );
          
              event LogSetEarningsRate(
                  Decimal.D256 earningsRate
              );
          
              event LogSetMinBorrowedValue(
                  Monetary.Value minBorrowedValue
              );
          
              event LogSetGlobalOperator(
                  address operator,
                  bool approved
              );
          
              // ============ Token Functions ============
          
              function ownerWithdrawExcessTokens(
                  Storage.State storage state,
                  uint256 marketId,
                  address recipient
              )
                  public
                  returns (uint256)
              {
                  _validateMarketId(state, marketId);
                  Types.Wei memory excessWei = state.getNumExcessTokens(marketId);
          
                  Require.that(
                      !excessWei.isNegative(),
                      FILE,
                      "Negative excess"
                  );
          
                  address token = state.getToken(marketId);
          
                  uint256 actualBalance = token.balanceOf(address(this));
                  if (excessWei.value > actualBalance) {
                      excessWei.value = actualBalance;
                  }
          
                  token.transfer(recipient, excessWei.value);
          
                  emit LogWithdrawExcessTokens(token, excessWei.value);
          
                  return excessWei.value;
              }
          
              function ownerWithdrawUnsupportedTokens(
                  Storage.State storage state,
                  address token,
                  address recipient
              )
                  public
                  returns (uint256)
              {
                  _requireNoMarket(state, token);
          
                  uint256 balance = token.balanceOf(address(this));
                  token.transfer(recipient, balance);
          
                  emit LogWithdrawExcessTokens(token, balance);
          
                  return balance;
              }
          
              // ============ Market Functions ============
          
              function ownerAddMarket(
                  Storage.State storage state,
                  address token,
                  IPriceOracle priceOracle,
                  IInterestSetter interestSetter,
                  Decimal.D256 memory marginPremium,
                  Decimal.D256 memory spreadPremium
              )
                  public
              {
                  _requireNoMarket(state, token);
          
                  uint256 marketId = state.numMarkets;
          
                  state.numMarkets++;
                  state.markets[marketId].token = token;
                  state.markets[marketId].index = Interest.newIndex();
          
                  emit LogAddMarket(marketId, token);
          
                  _setPriceOracle(state, marketId, priceOracle);
                  _setInterestSetter(state, marketId, interestSetter);
                  _setMarginPremium(state, marketId, marginPremium);
                  _setSpreadPremium(state, marketId, spreadPremium);
              }
          
              function ownerSetIsClosing(
                  Storage.State storage state,
                  uint256 marketId,
                  bool isClosing
              )
                  public
              {
                  _validateMarketId(state, marketId);
                  state.markets[marketId].isClosing = isClosing;
                  emit LogSetIsClosing(marketId, isClosing);
              }
          
              function ownerSetPriceOracle(
                  Storage.State storage state,
                  uint256 marketId,
                  IPriceOracle priceOracle
              )
                  public
              {
                  _validateMarketId(state, marketId);
                  _setPriceOracle(state, marketId, priceOracle);
              }
          
              function ownerSetInterestSetter(
                  Storage.State storage state,
                  uint256 marketId,
                  IInterestSetter interestSetter
              )
                  public
              {
                  _validateMarketId(state, marketId);
                  _setInterestSetter(state, marketId, interestSetter);
              }
          
              function ownerSetMarginPremium(
                  Storage.State storage state,
                  uint256 marketId,
                  Decimal.D256 memory marginPremium
              )
                  public
              {
                  _validateMarketId(state, marketId);
                  _setMarginPremium(state, marketId, marginPremium);
              }
          
              function ownerSetSpreadPremium(
                  Storage.State storage state,
                  uint256 marketId,
                  Decimal.D256 memory spreadPremium
              )
                  public
              {
                  _validateMarketId(state, marketId);
                  _setSpreadPremium(state, marketId, spreadPremium);
              }
          
              // ============ Risk Functions ============
          
              function ownerSetMarginRatio(
                  Storage.State storage state,
                  Decimal.D256 memory ratio
              )
                  public
              {
                  Require.that(
                      ratio.value <= state.riskLimits.marginRatioMax,
                      FILE,
                      "Ratio too high"
                  );
                  Require.that(
                      ratio.value > state.riskParams.liquidationSpread.value,
                      FILE,
                      "Ratio cannot be <= spread"
                  );
                  state.riskParams.marginRatio = ratio;
                  emit LogSetMarginRatio(ratio);
              }
          
              function ownerSetLiquidationSpread(
                  Storage.State storage state,
                  Decimal.D256 memory spread
              )
                  public
              {
                  Require.that(
                      spread.value <= state.riskLimits.liquidationSpreadMax,
                      FILE,
                      "Spread too high"
                  );
                  Require.that(
                      spread.value < state.riskParams.marginRatio.value,
                      FILE,
                      "Spread cannot be >= ratio"
                  );
                  state.riskParams.liquidationSpread = spread;
                  emit LogSetLiquidationSpread(spread);
              }
          
              function ownerSetEarningsRate(
                  Storage.State storage state,
                  Decimal.D256 memory earningsRate
              )
                  public
              {
                  Require.that(
                      earningsRate.value <= state.riskLimits.earningsRateMax,
                      FILE,
                      "Rate too high"
                  );
                  state.riskParams.earningsRate = earningsRate;
                  emit LogSetEarningsRate(earningsRate);
              }
          
              function ownerSetMinBorrowedValue(
                  Storage.State storage state,
                  Monetary.Value memory minBorrowedValue
              )
                  public
              {
                  Require.that(
                      minBorrowedValue.value <= state.riskLimits.minBorrowedValueMax,
                      FILE,
                      "Value too high"
                  );
                  state.riskParams.minBorrowedValue = minBorrowedValue;
                  emit LogSetMinBorrowedValue(minBorrowedValue);
              }
          
              // ============ Global Operator Functions ============
          
              function ownerSetGlobalOperator(
                  Storage.State storage state,
                  address operator,
                  bool approved
              )
                  public
              {
                  state.globalOperators[operator] = approved;
          
                  emit LogSetGlobalOperator(operator, approved);
              }
          
              // ============ Private Functions ============
          
              function _setPriceOracle(
                  Storage.State storage state,
                  uint256 marketId,
                  IPriceOracle priceOracle
              )
                  private
              {
                  // require oracle can return non-zero price
                  address token = state.markets[marketId].token;
          
                  Require.that(
                      priceOracle.getPrice(token).value != 0,
                      FILE,
                      "Invalid oracle price"
                  );
          
                  state.markets[marketId].priceOracle = priceOracle;
          
                  emit LogSetPriceOracle(marketId, address(priceOracle));
              }
          
              function _setInterestSetter(
                  Storage.State storage state,
                  uint256 marketId,
                  IInterestSetter interestSetter
              )
                  private
              {
                  // ensure interestSetter can return a value without reverting
                  address token = state.markets[marketId].token;
                  interestSetter.getInterestRate(token, 0, 0);
          
                  state.markets[marketId].interestSetter = interestSetter;
          
                  emit LogSetInterestSetter(marketId, address(interestSetter));
              }
          
              function _setMarginPremium(
                  Storage.State storage state,
                  uint256 marketId,
                  Decimal.D256 memory marginPremium
              )
                  private
              {
                  Require.that(
                      marginPremium.value <= state.riskLimits.marginPremiumMax,
                      FILE,
                      "Margin premium too high"
                  );
                  state.markets[marketId].marginPremium = marginPremium;
          
                  emit LogSetMarginPremium(marketId, marginPremium);
              }
          
              function _setSpreadPremium(
                  Storage.State storage state,
                  uint256 marketId,
                  Decimal.D256 memory spreadPremium
              )
                  private
              {
                  Require.that(
                      spreadPremium.value <= state.riskLimits.spreadPremiumMax,
                      FILE,
                      "Spread premium too high"
                  );
                  state.markets[marketId].spreadPremium = spreadPremium;
          
                  emit LogSetSpreadPremium(marketId, spreadPremium);
              }
          
              function _requireNoMarket(
                  Storage.State storage state,
                  address token
              )
                  private
                  view
              {
                  uint256 numMarkets = state.numMarkets;
          
                  bool marketExists = false;
          
                  for (uint256 m = 0; m < numMarkets; m++) {
                      if (state.markets[m].token == token) {
                          marketExists = true;
                          break;
                      }
                  }
          
                  Require.that(
                      !marketExists,
                      FILE,
                      "Market exists"
                  );
              }
          
              function _validateMarketId(
                  Storage.State storage state,
                  uint256 marketId
              )
                  private
                  view
              {
                  Require.that(
                      marketId < state.numMarkets,
                      FILE,
                      "Market OOB",
                      marketId
                  );
              }
          }
          
          // File: contracts/protocol/Admin.sol
          
          /**
           * @title Admin
           * @author dYdX
           *
           * Public functions that allow the privileged owner address to manage Solo
           */
          contract Admin is
              State,
              Ownable,
              ReentrancyGuard
          {
              // ============ Token Functions ============
          
              /**
               * Withdraw an ERC20 token for which there is an associated market. Only excess tokens can be
               * withdrawn. The number of excess tokens is calculated by taking the current number of tokens
               * held in Solo, adding the number of tokens owed to Solo by borrowers, and subtracting the
               * number of tokens owed to suppliers by Solo.
               */
              function ownerWithdrawExcessTokens(
                  uint256 marketId,
                  address recipient
              )
                  public
                  onlyOwner
                  nonReentrant
                  returns (uint256)
              {
                  return AdminImpl.ownerWithdrawExcessTokens(
                      g_state,
                      marketId,
                      recipient
                  );
              }
          
              /**
               * Withdraw an ERC20 token for which there is no associated market.
               */
              function ownerWithdrawUnsupportedTokens(
                  address token,
                  address recipient
              )
                  public
                  onlyOwner
                  nonReentrant
                  returns (uint256)
              {
                  return AdminImpl.ownerWithdrawUnsupportedTokens(
                      g_state,
                      token,
                      recipient
                  );
              }
          
              // ============ Market Functions ============
          
              /**
               * Add a new market to Solo. Must be for a previously-unsupported ERC20 token.
               */
              function ownerAddMarket(
                  address token,
                  IPriceOracle priceOracle,
                  IInterestSetter interestSetter,
                  Decimal.D256 memory marginPremium,
                  Decimal.D256 memory spreadPremium
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerAddMarket(
                      g_state,
                      token,
                      priceOracle,
                      interestSetter,
                      marginPremium,
                      spreadPremium
                  );
              }
          
              /**
               * Set (or unset) the status of a market to "closing". The borrowedValue of a market cannot
               * increase while its status is "closing".
               */
              function ownerSetIsClosing(
                  uint256 marketId,
                  bool isClosing
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetIsClosing(
                      g_state,
                      marketId,
                      isClosing
                  );
              }
          
              /**
               * Set the price oracle for a market.
               */
              function ownerSetPriceOracle(
                  uint256 marketId,
                  IPriceOracle priceOracle
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetPriceOracle(
                      g_state,
                      marketId,
                      priceOracle
                  );
              }
          
              /**
               * Set the interest-setter for a market.
               */
              function ownerSetInterestSetter(
                  uint256 marketId,
                  IInterestSetter interestSetter
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetInterestSetter(
                      g_state,
                      marketId,
                      interestSetter
                  );
              }
          
              /**
               * Set a premium on the minimum margin-ratio for a market. This makes it so that any positions
               * that include this market require a higher collateralization to avoid being liquidated.
               */
              function ownerSetMarginPremium(
                  uint256 marketId,
                  Decimal.D256 memory marginPremium
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetMarginPremium(
                      g_state,
                      marketId,
                      marginPremium
                  );
              }
          
              /**
               * Set a premium on the liquidation spread for a market. This makes it so that any liquidations
               * that include this market have a higher spread than the global default.
               */
              function ownerSetSpreadPremium(
                  uint256 marketId,
                  Decimal.D256 memory spreadPremium
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetSpreadPremium(
                      g_state,
                      marketId,
                      spreadPremium
                  );
              }
          
              // ============ Risk Functions ============
          
              /**
               * Set the global minimum margin-ratio that every position must maintain to prevent being
               * liquidated.
               */
              function ownerSetMarginRatio(
                  Decimal.D256 memory ratio
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetMarginRatio(
                      g_state,
                      ratio
                  );
              }
          
              /**
               * Set the global liquidation spread. This is the spread between oracle prices that incentivizes
               * the liquidation of risky positions.
               */
              function ownerSetLiquidationSpread(
                  Decimal.D256 memory spread
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetLiquidationSpread(
                      g_state,
                      spread
                  );
              }
          
              /**
               * Set the global earnings-rate variable that determines what percentage of the interest paid
               * by borrowers gets passed-on to suppliers.
               */
              function ownerSetEarningsRate(
                  Decimal.D256 memory earningsRate
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetEarningsRate(
                      g_state,
                      earningsRate
                  );
              }
          
              /**
               * Set the global minimum-borrow value which is the minimum value of any new borrow on Solo.
               */
              function ownerSetMinBorrowedValue(
                  Monetary.Value memory minBorrowedValue
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetMinBorrowedValue(
                      g_state,
                      minBorrowedValue
                  );
              }
          
              // ============ Global Operator Functions ============
          
              /**
               * Approve (or disapprove) an address that is permissioned to be an operator for all accounts in
               * Solo. Intended only to approve smart-contracts.
               */
              function ownerSetGlobalOperator(
                  address operator,
                  bool approved
              )
                  public
                  onlyOwner
                  nonReentrant
              {
                  AdminImpl.ownerSetGlobalOperator(
                      g_state,
                      operator,
                      approved
                  );
              }
          }
          
          // File: contracts/protocol/Getters.sol
          
          /**
           * @title Getters
           * @author dYdX
           *
           * Public read-only functions that allow transparency into the state of Solo
           */
          contract Getters is
              State
          {
              using Cache for Cache.MarketCache;
              using Storage for Storage.State;
              using Types for Types.Par;
          
              // ============ Constants ============
          
              bytes32 FILE = "Getters";
          
              // ============ Getters for Risk ============
          
              /**
               * Get the global minimum margin-ratio that every position must maintain to prevent being
               * liquidated.
               *
               * @return  The global margin-ratio
               */
              function getMarginRatio()
                  public
                  view
                  returns (Decimal.D256 memory)
              {
                  return g_state.riskParams.marginRatio;
              }
          
              /**
               * Get the global liquidation spread. This is the spread between oracle prices that incentivizes
               * the liquidation of risky positions.
               *
               * @return  The global liquidation spread
               */
              function getLiquidationSpread()
                  public
                  view
                  returns (Decimal.D256 memory)
              {
                  return g_state.riskParams.liquidationSpread;
              }
          
              /**
               * Get the global earnings-rate variable that determines what percentage of the interest paid
               * by borrowers gets passed-on to suppliers.
               *
               * @return  The global earnings rate
               */
              function getEarningsRate()
                  public
                  view
                  returns (Decimal.D256 memory)
              {
                  return g_state.riskParams.earningsRate;
              }
          
              /**
               * Get the global minimum-borrow value which is the minimum value of any new borrow on Solo.
               *
               * @return  The global minimum borrow value
               */
              function getMinBorrowedValue()
                  public
                  view
                  returns (Monetary.Value memory)
              {
                  return g_state.riskParams.minBorrowedValue;
              }
          
              /**
               * Get all risk parameters in a single struct.
               *
               * @return  All global risk parameters
               */
              function getRiskParams()
                  public
                  view
                  returns (Storage.RiskParams memory)
              {
                  return g_state.riskParams;
              }
          
              /**
               * Get all risk parameter limits in a single struct. These are the maximum limits at which the
               * risk parameters can be set by the admin of Solo.
               *
               * @return  All global risk parameter limnits
               */
              function getRiskLimits()
                  public
                  view
                  returns (Storage.RiskLimits memory)
              {
                  return g_state.riskLimits;
              }
          
              // ============ Getters for Markets ============
          
              /**
               * Get the total number of markets.
               *
               * @return  The number of markets
               */
              function getNumMarkets()
                  public
                  view
                  returns (uint256)
              {
                  return g_state.numMarkets;
              }
          
              /**
               * Get the ERC20 token address for a market.
               *
               * @param  marketId  The market to query
               * @return           The token address
               */
              function getMarketTokenAddress(
                  uint256 marketId
              )
                  public
                  view
                  returns (address)
              {
                  _requireValidMarket(marketId);
                  return g_state.getToken(marketId);
              }
          
              /**
               * Get the total principal amounts (borrowed and supplied) for a market.
               *
               * @param  marketId  The market to query
               * @return           The total principal amounts
               */
              function getMarketTotalPar(
                  uint256 marketId
              )
                  public
                  view
                  returns (Types.TotalPar memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.getTotalPar(marketId);
              }
          
              /**
               * Get the most recently cached interest index for a market.
               *
               * @param  marketId  The market to query
               * @return           The most recent index
               */
              function getMarketCachedIndex(
                  uint256 marketId
              )
                  public
                  view
                  returns (Interest.Index memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.getIndex(marketId);
              }
          
              /**
               * Get the interest index for a market if it were to be updated right now.
               *
               * @param  marketId  The market to query
               * @return           The estimated current index
               */
              function getMarketCurrentIndex(
                  uint256 marketId
              )
                  public
                  view
                  returns (Interest.Index memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.fetchNewIndex(marketId, g_state.getIndex(marketId));
              }
          
              /**
               * Get the price oracle address for a market.
               *
               * @param  marketId  The market to query
               * @return           The price oracle address
               */
              function getMarketPriceOracle(
                  uint256 marketId
              )
                  public
                  view
                  returns (IPriceOracle)
              {
                  _requireValidMarket(marketId);
                  return g_state.markets[marketId].priceOracle;
              }
          
              /**
               * Get the interest-setter address for a market.
               *
               * @param  marketId  The market to query
               * @return           The interest-setter address
               */
              function getMarketInterestSetter(
                  uint256 marketId
              )
                  public
                  view
                  returns (IInterestSetter)
              {
                  _requireValidMarket(marketId);
                  return g_state.markets[marketId].interestSetter;
              }
          
              /**
               * Get the margin premium for a market. A margin premium makes it so that any positions that
               * include the market require a higher collateralization to avoid being liquidated.
               *
               * @param  marketId  The market to query
               * @return           The market's margin premium
               */
              function getMarketMarginPremium(
                  uint256 marketId
              )
                  public
                  view
                  returns (Decimal.D256 memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.markets[marketId].marginPremium;
              }
          
              /**
               * Get the spread premium for a market. A spread premium makes it so that any liquidations
               * that include the market have a higher spread than the global default.
               *
               * @param  marketId  The market to query
               * @return           The market's spread premium
               */
              function getMarketSpreadPremium(
                  uint256 marketId
              )
                  public
                  view
                  returns (Decimal.D256 memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.markets[marketId].spreadPremium;
              }
          
              /**
               * Return true if a particular market is in closing mode. Additional borrows cannot be taken
               * from a market that is closing.
               *
               * @param  marketId  The market to query
               * @return           True if the market is closing
               */
              function getMarketIsClosing(
                  uint256 marketId
              )
                  public
                  view
                  returns (bool)
              {
                  _requireValidMarket(marketId);
                  return g_state.markets[marketId].isClosing;
              }
          
              /**
               * Get the price of the token for a market.
               *
               * @param  marketId  The market to query
               * @return           The price of each atomic unit of the token
               */
              function getMarketPrice(
                  uint256 marketId
              )
                  public
                  view
                  returns (Monetary.Price memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.fetchPrice(marketId);
              }
          
              /**
               * Get the current borrower interest rate for a market.
               *
               * @param  marketId  The market to query
               * @return           The current interest rate
               */
              function getMarketInterestRate(
                  uint256 marketId
              )
                  public
                  view
                  returns (Interest.Rate memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.fetchInterestRate(
                      marketId,
                      g_state.getIndex(marketId)
                  );
              }
          
              /**
               * Get the adjusted liquidation spread for some market pair. This is equal to the global
               * liquidation spread multiplied by (1 + spreadPremium) for each of the two markets.
               *
               * @param  heldMarketId  The market for which the account has collateral
               * @param  owedMarketId  The market for which the account has borrowed tokens
               * @return               The adjusted liquidation spread
               */
              function getLiquidationSpreadForPair(
                  uint256 heldMarketId,
                  uint256 owedMarketId
              )
                  public
                  view
                  returns (Decimal.D256 memory)
              {
                  _requireValidMarket(heldMarketId);
                  _requireValidMarket(owedMarketId);
                  return g_state.getLiquidationSpreadForPair(heldMarketId, owedMarketId);
              }
          
              /**
               * Get basic information about a particular market.
               *
               * @param  marketId  The market to query
               * @return           A Storage.Market struct with the current state of the market
               */
              function getMarket(
                  uint256 marketId
              )
                  public
                  view
                  returns (Storage.Market memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.markets[marketId];
              }
          
              /**
               * Get comprehensive information about a particular market.
               *
               * @param  marketId  The market to query
               * @return           A tuple containing the values:
               *                    - A Storage.Market struct with the current state of the market
               *                    - The current estimated interest index
               *                    - The current token price
               *                    - The current market interest rate
               */
              function getMarketWithInfo(
                  uint256 marketId
              )
                  public
                  view
                  returns (
                      Storage.Market memory,
                      Interest.Index memory,
                      Monetary.Price memory,
                      Interest.Rate memory
                  )
              {
                  _requireValidMarket(marketId);
                  return (
                      getMarket(marketId),
                      getMarketCurrentIndex(marketId),
                      getMarketPrice(marketId),
                      getMarketInterestRate(marketId)
                  );
              }
          
              /**
               * Get the number of excess tokens for a market. The number of excess tokens is calculated
               * by taking the current number of tokens held in Solo, adding the number of tokens owed to Solo
               * by borrowers, and subtracting the number of tokens owed to suppliers by Solo.
               *
               * @param  marketId  The market to query
               * @return           The number of excess tokens
               */
              function getNumExcessTokens(
                  uint256 marketId
              )
                  public
                  view
                  returns (Types.Wei memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.getNumExcessTokens(marketId);
              }
          
              // ============ Getters for Accounts ============
          
              /**
               * Get the principal value for a particular account and market.
               *
               * @param  account   The account to query
               * @param  marketId  The market to query
               * @return           The principal value
               */
              function getAccountPar(
                  Account.Info memory account,
                  uint256 marketId
              )
                  public
                  view
                  returns (Types.Par memory)
              {
                  _requireValidMarket(marketId);
                  return g_state.getPar(account, marketId);
              }
          
              /**
               * Get the token balance for a particular account and market.
               *
               * @param  account   The account to query
               * @param  marketId  The market to query
               * @return           The token amount
               */
              function getAccountWei(
                  Account.Info memory account,
                  uint256 marketId
              )
                  public
                  view
                  returns (Types.Wei memory)
              {
                  _requireValidMarket(marketId);
                  return Interest.parToWei(
                      g_state.getPar(account, marketId),
                      g_state.fetchNewIndex(marketId, g_state.getIndex(marketId))
                  );
              }
          
              /**
               * Get the status of an account (Normal, Liquidating, or Vaporizing).
               *
               * @param  account  The account to query
               * @return          The account's status
               */
              function getAccountStatus(
                  Account.Info memory account
              )
                  public
                  view
                  returns (Account.Status)
              {
                  return g_state.getStatus(account);
              }
          
              /**
               * Get the total supplied and total borrowed value of an account.
               *
               * @param  account  The account to query
               * @return          The following values:
               *                   - The supplied value of the account
               *                   - The borrowed value of the account
               */
              function getAccountValues(
                  Account.Info memory account
              )
                  public
                  view
                  returns (Monetary.Value memory, Monetary.Value memory)
              {
                  return getAccountValuesInternal(account, /* adjustForLiquidity = */ false);
              }
          
              /**
               * Get the total supplied and total borrowed values of an account adjusted by the marginPremium
               * of each market. Supplied values are divided by (1 + marginPremium) for each market and
               * borrowed values are multiplied by (1 + marginPremium) for each market. Comparing these
               * adjusted values gives the margin-ratio of the account which will be compared to the global
               * margin-ratio when determining if the account can be liquidated.
               *
               * @param  account  The account to query
               * @return          The following values:
               *                   - The supplied value of the account (adjusted for marginPremium)
               *                   - The borrowed value of the account (adjusted for marginPremium)
               */
              function getAdjustedAccountValues(
                  Account.Info memory account
              )
                  public
                  view
                  returns (Monetary.Value memory, Monetary.Value memory)
              {
                  return getAccountValuesInternal(account, /* adjustForLiquidity = */ true);
              }
          
              /**
               * Get an account's summary for each market.
               *
               * @param  account  The account to query
               * @return          The following values:
               *                   - The ERC20 token address for each market
               *                   - The account's principal value for each market
               *                   - The account's (supplied or borrowed) number of tokens for each market
               */
              function getAccountBalances(
                  Account.Info memory account
              )
                  public
                  view
                  returns (
                      address[] memory,
                      Types.Par[] memory,
                      Types.Wei[] memory
                  )
              {
                  uint256 numMarkets = g_state.numMarkets;
                  address[] memory tokens = new address[](numMarkets);
                  Types.Par[] memory pars = new Types.Par[](numMarkets);
                  Types.Wei[] memory weis = new Types.Wei[](numMarkets);
          
                  for (uint256 m = 0; m < numMarkets; m++) {
                      tokens[m] = getMarketTokenAddress(m);
                      pars[m] = getAccountPar(account, m);
                      weis[m] = getAccountWei(account, m);
                  }
          
                  return (
                      tokens,
                      pars,
                      weis
                  );
              }
          
              // ============ Getters for Permissions ============
          
              /**
               * Return true if a particular address is approved as an operator for an owner's accounts.
               * Approved operators can act on the accounts of the owner as if it were the operator's own.
               *
               * @param  owner     The owner of the accounts
               * @param  operator  The possible operator
               * @return           True if operator is approved for owner's accounts
               */
              function getIsLocalOperator(
                  address owner,
                  address operator
              )
                  public
                  view
                  returns (bool)
              {
                  return g_state.isLocalOperator(owner, operator);
              }
          
              /**
               * Return true if a particular address is approved as a global operator. Such an address can
               * act on any account as if it were the operator's own.
               *
               * @param  operator  The address to query
               * @return           True if operator is a global operator
               */
              function getIsGlobalOperator(
                  address operator
              )
                  public
                  view
                  returns (bool)
              {
                  return g_state.isGlobalOperator(operator);
              }
          
              // ============ Private Helper Functions ============
          
              /**
               * Revert if marketId is invalid.
               */
              function _requireValidMarket(
                  uint256 marketId
              )
                  private
                  view
              {
                  Require.that(
                      marketId < g_state.numMarkets,
                      FILE,
                      "Market OOB"
                  );
              }
          
              /**
               * Private helper for getting the monetary values of an account.
               */
              function getAccountValuesInternal(
                  Account.Info memory account,
                  bool adjustForLiquidity
              )
                  private
                  view
                  returns (Monetary.Value memory, Monetary.Value memory)
              {
                  uint256 numMarkets = g_state.numMarkets;
          
                  // populate cache
                  Cache.MarketCache memory cache = Cache.create(numMarkets);
                  for (uint256 m = 0; m < numMarkets; m++) {
                      if (!g_state.getPar(account, m).isZero()) {
                          cache.addMarket(g_state, m);
                      }
                  }
          
                  return g_state.getAccountValues(account, cache, adjustForLiquidity);
              }
          }
          
          // File: contracts/protocol/interfaces/IAutoTrader.sol
          
          /**
           * @title IAutoTrader
           * @author dYdX
           *
           * Interface that Auto-Traders for Solo must implement in order to approve trades.
           */
          contract IAutoTrader {
          
              // ============ Public Functions ============
          
              /**
               * Allows traders to make trades approved by this smart contract. The active trader's account is
               * the takerAccount and the passive account (for which this contract approves trades
               * on-behalf-of) is the makerAccount.
               *
               * @param  inputMarketId   The market for which the trader specified the original amount
               * @param  outputMarketId  The market for which the trader wants the resulting amount specified
               * @param  makerAccount    The account for which this contract is making trades
               * @param  takerAccount    The account requesting the trade
               * @param  oldInputPar     The old principal amount for the makerAccount for the inputMarketId
               * @param  newInputPar     The new principal amount for the makerAccount for the inputMarketId
               * @param  inputWei        The change in token amount for the makerAccount for the inputMarketId
               * @param  data            Arbitrary data passed in by the trader
               * @return                 The AssetAmount for the makerAccount for the outputMarketId
               */
              function getTradeCost(
                  uint256 inputMarketId,
                  uint256 outputMarketId,
                  Account.Info memory makerAccount,
                  Account.Info memory takerAccount,
                  Types.Par memory oldInputPar,
                  Types.Par memory newInputPar,
                  Types.Wei memory inputWei,
                  bytes memory data
              )
                  public
                  returns (Types.AssetAmount memory);
          }
          
          // File: contracts/protocol/interfaces/ICallee.sol
          
          /**
           * @title ICallee
           * @author dYdX
           *
           * Interface that Callees for Solo must implement in order to ingest data.
           */
          contract ICallee {
          
              // ============ Public Functions ============
          
              /**
               * Allows users to send this contract arbitrary data.
               *
               * @param  sender       The msg.sender to Solo
               * @param  accountInfo  The account from which the data is being sent
               * @param  data         Arbitrary data given by the sender
               */
              function callFunction(
                  address sender,
                  Account.Info memory accountInfo,
                  bytes memory data
              )
                  public;
          }
          
          // File: contracts/protocol/lib/Actions.sol
          
          /**
           * @title Actions
           * @author dYdX
           *
           * Library that defines and parses valid Actions
           */
          library Actions {
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Actions";
          
              // ============ Enums ============
          
              enum ActionType {
                  Deposit,   // supply tokens
                  Withdraw,  // borrow tokens
                  Transfer,  // transfer balance between accounts
                  Buy,       // buy an amount of some token (externally)
                  Sell,      // sell an amount of some token (externally)
                  Trade,     // trade tokens against another account
                  Liquidate, // liquidate an undercollateralized or expiring account
                  Vaporize,  // use excess tokens to zero-out a completely negative account
                  Call       // send arbitrary data to an address
              }
          
              enum AccountLayout {
                  OnePrimary,
                  TwoPrimary,
                  PrimaryAndSecondary
              }
          
              enum MarketLayout {
                  ZeroMarkets,
                  OneMarket,
                  TwoMarkets
              }
          
              // ============ Structs ============
          
              /*
               * Arguments that are passed to Solo in an ordered list as part of a single operation.
               * Each ActionArgs has an actionType which specifies which action struct that this data will be
               * parsed into before being processed.
               */
              struct ActionArgs {
                  ActionType actionType;
                  uint256 accountId;
                  Types.AssetAmount amount;
                  uint256 primaryMarketId;
                  uint256 secondaryMarketId;
                  address otherAddress;
                  uint256 otherAccountId;
                  bytes data;
              }
          
              // ============ Action Types ============
          
              /*
               * Moves tokens from an address to Solo. Can either repay a borrow or provide additional supply.
               */
              struct DepositArgs {
                  Types.AssetAmount amount;
                  Account.Info account;
                  uint256 market;
                  address from;
              }
          
              /*
               * Moves tokens from Solo to another address. Can either borrow tokens or reduce the amount
               * previously supplied.
               */
              struct WithdrawArgs {
                  Types.AssetAmount amount;
                  Account.Info account;
                  uint256 market;
                  address to;
              }
          
              /*
               * Transfers balance between two accounts. The msg.sender must be an operator for both accounts.
               * The amount field applies to accountOne.
               * This action does not require any token movement since the trade is done internally to Solo.
               */
              struct TransferArgs {
                  Types.AssetAmount amount;
                  Account.Info accountOne;
                  Account.Info accountTwo;
                  uint256 market;
              }
          
              /*
               * Acquires a certain amount of tokens by spending other tokens. Sends takerMarket tokens to the
               * specified exchangeWrapper contract and expects makerMarket tokens in return. The amount field
               * applies to the makerMarket.
               */
              struct BuyArgs {
                  Types.AssetAmount amount;
                  Account.Info account;
                  uint256 makerMarket;
                  uint256 takerMarket;
                  address exchangeWrapper;
                  bytes orderData;
              }
          
              /*
               * Spends a certain amount of tokens to acquire other tokens. Sends takerMarket tokens to the
               * specified exchangeWrapper and expects makerMarket tokens in return. The amount field applies
               * to the takerMarket.
               */
              struct SellArgs {
                  Types.AssetAmount amount;
                  Account.Info account;
                  uint256 takerMarket;
                  uint256 makerMarket;
                  address exchangeWrapper;
                  bytes orderData;
              }
          
              /*
               * Trades balances between two accounts using any external contract that implements the
               * AutoTrader interface. The AutoTrader contract must be an operator for the makerAccount (for
               * which it is trading on-behalf-of). The amount field applies to the makerAccount and the
               * inputMarket. This proposed change to the makerAccount is passed to the AutoTrader which will
               * quote a change for the makerAccount in the outputMarket (or will disallow the trade).
               * This action does not require any token movement since the trade is done internally to Solo.
               */
              struct TradeArgs {
                  Types.AssetAmount amount;
                  Account.Info takerAccount;
                  Account.Info makerAccount;
                  uint256 inputMarket;
                  uint256 outputMarket;
                  address autoTrader;
                  bytes tradeData;
              }
          
              /*
               * Each account must maintain a certain margin-ratio (specified globally). If the account falls
               * below this margin-ratio, it can be liquidated by any other account. This allows anyone else
               * (arbitrageurs) to repay any borrowed asset (owedMarket) of the liquidating account in
               * exchange for any collateral asset (heldMarket) of the liquidAccount. The ratio is determined
               * by the price ratio (given by the oracles) plus a spread (specified globally). Liquidating an
               * account also sets a flag on the account that the account is being liquidated. This allows
               * anyone to continue liquidating the account until there are no more borrows being taken by the
               * liquidating account. Liquidators do not have to liquidate the entire account all at once but
               * can liquidate as much as they choose. The liquidating flag allows liquidators to continue
               * liquidating the account even if it becomes collateralized through partial liquidation or
               * price movement.
               */
              struct LiquidateArgs {
                  Types.AssetAmount amount;
                  Account.Info solidAccount;
                  Account.Info liquidAccount;
                  uint256 owedMarket;
                  uint256 heldMarket;
              }
          
              /*
               * Similar to liquidate, but vaporAccounts are accounts that have only negative balances
               * remaining. The arbitrageur pays back the negative asset (owedMarket) of the vaporAccount in
               * exchange for a collateral asset (heldMarket) at a favorable spread. However, since the
               * liquidAccount has no collateral assets, the collateral must come from Solo's excess tokens.
               */
              struct VaporizeArgs {
                  Types.AssetAmount amount;
                  Account.Info solidAccount;
                  Account.Info vaporAccount;
                  uint256 owedMarket;
                  uint256 heldMarket;
              }
          
              /*
               * Passes arbitrary bytes of data to an external contract that implements the Callee interface.
               * Does not change any asset amounts. This function may be useful for setting certain variables
               * on layer-two contracts for certain accounts without having to make a separate Ethereum
               * transaction for doing so. Also, the second-layer contracts can ensure that the call is coming
               * from an operator of the particular account.
               */
              struct CallArgs {
                  Account.Info account;
                  address callee;
                  bytes data;
              }
          
              // ============ Helper Functions ============
          
              function getMarketLayout(
                  ActionType actionType
              )
                  internal
                  pure
                  returns (MarketLayout)
              {
                  if (
                      actionType == Actions.ActionType.Deposit
                      || actionType == Actions.ActionType.Withdraw
                      || actionType == Actions.ActionType.Transfer
                  ) {
                      return MarketLayout.OneMarket;
                  }
                  else if (actionType == Actions.ActionType.Call) {
                      return MarketLayout.ZeroMarkets;
                  }
                  return MarketLayout.TwoMarkets;
              }
          
              function getAccountLayout(
                  ActionType actionType
              )
                  internal
                  pure
                  returns (AccountLayout)
              {
                  if (
                      actionType == Actions.ActionType.Transfer
                      || actionType == Actions.ActionType.Trade
                  ) {
                      return AccountLayout.TwoPrimary;
                  } else if (
                      actionType == Actions.ActionType.Liquidate
                      || actionType == Actions.ActionType.Vaporize
                  ) {
                      return AccountLayout.PrimaryAndSecondary;
                  }
                  return AccountLayout.OnePrimary;
              }
          
              // ============ Parsing Functions ============
          
              function parseDepositArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (DepositArgs memory)
              {
                  assert(args.actionType == ActionType.Deposit);
                  return DepositArgs({
                      amount: args.amount,
                      account: accounts[args.accountId],
                      market: args.primaryMarketId,
                      from: args.otherAddress
                  });
              }
          
              function parseWithdrawArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (WithdrawArgs memory)
              {
                  assert(args.actionType == ActionType.Withdraw);
                  return WithdrawArgs({
                      amount: args.amount,
                      account: accounts[args.accountId],
                      market: args.primaryMarketId,
                      to: args.otherAddress
                  });
              }
          
              function parseTransferArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (TransferArgs memory)
              {
                  assert(args.actionType == ActionType.Transfer);
                  return TransferArgs({
                      amount: args.amount,
                      accountOne: accounts[args.accountId],
                      accountTwo: accounts[args.otherAccountId],
                      market: args.primaryMarketId
                  });
              }
          
              function parseBuyArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (BuyArgs memory)
              {
                  assert(args.actionType == ActionType.Buy);
                  return BuyArgs({
                      amount: args.amount,
                      account: accounts[args.accountId],
                      makerMarket: args.primaryMarketId,
                      takerMarket: args.secondaryMarketId,
                      exchangeWrapper: args.otherAddress,
                      orderData: args.data
                  });
              }
          
              function parseSellArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (SellArgs memory)
              {
                  assert(args.actionType == ActionType.Sell);
                  return SellArgs({
                      amount: args.amount,
                      account: accounts[args.accountId],
                      takerMarket: args.primaryMarketId,
                      makerMarket: args.secondaryMarketId,
                      exchangeWrapper: args.otherAddress,
                      orderData: args.data
                  });
              }
          
              function parseTradeArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (TradeArgs memory)
              {
                  assert(args.actionType == ActionType.Trade);
                  return TradeArgs({
                      amount: args.amount,
                      takerAccount: accounts[args.accountId],
                      makerAccount: accounts[args.otherAccountId],
                      inputMarket: args.primaryMarketId,
                      outputMarket: args.secondaryMarketId,
                      autoTrader: args.otherAddress,
                      tradeData: args.data
                  });
              }
          
              function parseLiquidateArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (LiquidateArgs memory)
              {
                  assert(args.actionType == ActionType.Liquidate);
                  return LiquidateArgs({
                      amount: args.amount,
                      solidAccount: accounts[args.accountId],
                      liquidAccount: accounts[args.otherAccountId],
                      owedMarket: args.primaryMarketId,
                      heldMarket: args.secondaryMarketId
                  });
              }
          
              function parseVaporizeArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (VaporizeArgs memory)
              {
                  assert(args.actionType == ActionType.Vaporize);
                  return VaporizeArgs({
                      amount: args.amount,
                      solidAccount: accounts[args.accountId],
                      vaporAccount: accounts[args.otherAccountId],
                      owedMarket: args.primaryMarketId,
                      heldMarket: args.secondaryMarketId
                  });
              }
          
              function parseCallArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (CallArgs memory)
              {
                  assert(args.actionType == ActionType.Call);
                  return CallArgs({
                      account: accounts[args.accountId],
                      callee: args.otherAddress,
                      data: args.data
                  });
              }
          }
          
          // File: contracts/protocol/lib/Events.sol
          
          /**
           * @title Events
           * @author dYdX
           *
           * Library to parse and emit logs from which the state of all accounts and indexes can be followed
           */
          library Events {
              using Types for Types.Wei;
              using Storage for Storage.State;
          
              // ============ Events ============
          
              event LogIndexUpdate(
                  uint256 indexed market,
                  Interest.Index index
              );
          
              event LogOperation(
                  address sender
              );
          
              event LogDeposit(
                  address indexed accountOwner,
                  uint256 accountNumber,
                  uint256 market,
                  BalanceUpdate update,
                  address from
              );
          
              event LogWithdraw(
                  address indexed accountOwner,
                  uint256 accountNumber,
                  uint256 market,
                  BalanceUpdate update,
                  address to
              );
          
              event LogTransfer(
                  address indexed accountOneOwner,
                  uint256 accountOneNumber,
                  address indexed accountTwoOwner,
                  uint256 accountTwoNumber,
                  uint256 market,
                  BalanceUpdate updateOne,
                  BalanceUpdate updateTwo
              );
          
              event LogBuy(
                  address indexed accountOwner,
                  uint256 accountNumber,
                  uint256 takerMarket,
                  uint256 makerMarket,
                  BalanceUpdate takerUpdate,
                  BalanceUpdate makerUpdate,
                  address exchangeWrapper
              );
          
              event LogSell(
                  address indexed accountOwner,
                  uint256 accountNumber,
                  uint256 takerMarket,
                  uint256 makerMarket,
                  BalanceUpdate takerUpdate,
                  BalanceUpdate makerUpdate,
                  address exchangeWrapper
              );
          
              event LogTrade(
                  address indexed takerAccountOwner,
                  uint256 takerAccountNumber,
                  address indexed makerAccountOwner,
                  uint256 makerAccountNumber,
                  uint256 inputMarket,
                  uint256 outputMarket,
                  BalanceUpdate takerInputUpdate,
                  BalanceUpdate takerOutputUpdate,
                  BalanceUpdate makerInputUpdate,
                  BalanceUpdate makerOutputUpdate,
                  address autoTrader
              );
          
              event LogCall(
                  address indexed accountOwner,
                  uint256 accountNumber,
                  address callee
              );
          
              event LogLiquidate(
                  address indexed solidAccountOwner,
                  uint256 solidAccountNumber,
                  address indexed liquidAccountOwner,
                  uint256 liquidAccountNumber,
                  uint256 heldMarket,
                  uint256 owedMarket,
                  BalanceUpdate solidHeldUpdate,
                  BalanceUpdate solidOwedUpdate,
                  BalanceUpdate liquidHeldUpdate,
                  BalanceUpdate liquidOwedUpdate
              );
          
              event LogVaporize(
                  address indexed solidAccountOwner,
                  uint256 solidAccountNumber,
                  address indexed vaporAccountOwner,
                  uint256 vaporAccountNumber,
                  uint256 heldMarket,
                  uint256 owedMarket,
                  BalanceUpdate solidHeldUpdate,
                  BalanceUpdate solidOwedUpdate,
                  BalanceUpdate vaporOwedUpdate
              );
          
              // ============ Structs ============
          
              struct BalanceUpdate {
                  Types.Wei deltaWei;
                  Types.Par newPar;
              }
          
              // ============ Internal Functions ============
          
              function logIndexUpdate(
                  uint256 marketId,
                  Interest.Index memory index
              )
                  internal
              {
                  emit LogIndexUpdate(
                      marketId,
                      index
                  );
              }
          
              function logOperation()
                  internal
              {
                  emit LogOperation(msg.sender);
              }
          
              function logDeposit(
                  Storage.State storage state,
                  Actions.DepositArgs memory args,
                  Types.Wei memory deltaWei
              )
                  internal
              {
                  emit LogDeposit(
                      args.account.owner,
                      args.account.number,
                      args.market,
                      getBalanceUpdate(
                          state,
                          args.account,
                          args.market,
                          deltaWei
                      ),
                      args.from
                  );
              }
          
              function logWithdraw(
                  Storage.State storage state,
                  Actions.WithdrawArgs memory args,
                  Types.Wei memory deltaWei
              )
                  internal
              {
                  emit LogWithdraw(
                      args.account.owner,
                      args.account.number,
                      args.market,
                      getBalanceUpdate(
                          state,
                          args.account,
                          args.market,
                          deltaWei
                      ),
                      args.to
                  );
              }
          
              function logTransfer(
                  Storage.State storage state,
                  Actions.TransferArgs memory args,
                  Types.Wei memory deltaWei
              )
                  internal
              {
                  emit LogTransfer(
                      args.accountOne.owner,
                      args.accountOne.number,
                      args.accountTwo.owner,
                      args.accountTwo.number,
                      args.market,
                      getBalanceUpdate(
                          state,
                          args.accountOne,
                          args.market,
                          deltaWei
                      ),
                      getBalanceUpdate(
                          state,
                          args.accountTwo,
                          args.market,
                          deltaWei.negative()
                      )
                  );
              }
          
              function logBuy(
                  Storage.State storage state,
                  Actions.BuyArgs memory args,
                  Types.Wei memory takerWei,
                  Types.Wei memory makerWei
              )
                  internal
              {
                  emit LogBuy(
                      args.account.owner,
                      args.account.number,
                      args.takerMarket,
                      args.makerMarket,
                      getBalanceUpdate(
                          state,
                          args.account,
                          args.takerMarket,
                          takerWei
                      ),
                      getBalanceUpdate(
                          state,
                          args.account,
                          args.makerMarket,
                          makerWei
                      ),
                      args.exchangeWrapper
                  );
              }
          
              function logSell(
                  Storage.State storage state,
                  Actions.SellArgs memory args,
                  Types.Wei memory takerWei,
                  Types.Wei memory makerWei
              )
                  internal
              {
                  emit LogSell(
                      args.account.owner,
                      args.account.number,
                      args.takerMarket,
                      args.makerMarket,
                      getBalanceUpdate(
                          state,
                          args.account,
                          args.takerMarket,
                          takerWei
                      ),
                      getBalanceUpdate(
                          state,
                          args.account,
                          args.makerMarket,
                          makerWei
                      ),
                      args.exchangeWrapper
                  );
              }
          
              function logTrade(
                  Storage.State storage state,
                  Actions.TradeArgs memory args,
                  Types.Wei memory inputWei,
                  Types.Wei memory outputWei
              )
                  internal
              {
                  BalanceUpdate[4] memory updates = [
                      getBalanceUpdate(
                          state,
                          args.takerAccount,
                          args.inputMarket,
                          inputWei.negative()
                      ),
                      getBalanceUpdate(
                          state,
                          args.takerAccount,
                          args.outputMarket,
                          outputWei.negative()
                      ),
                      getBalanceUpdate(
                          state,
                          args.makerAccount,
                          args.inputMarket,
                          inputWei
                      ),
                      getBalanceUpdate(
                          state,
                          args.makerAccount,
                          args.outputMarket,
                          outputWei
                      )
                  ];
          
                  emit LogTrade(
                      args.takerAccount.owner,
                      args.takerAccount.number,
                      args.makerAccount.owner,
                      args.makerAccount.number,
                      args.inputMarket,
                      args.outputMarket,
                      updates[0],
                      updates[1],
                      updates[2],
                      updates[3],
                      args.autoTrader
                  );
              }
          
              function logCall(
                  Actions.CallArgs memory args
              )
                  internal
              {
                  emit LogCall(
                      args.account.owner,
                      args.account.number,
                      args.callee
                  );
              }
          
              function logLiquidate(
                  Storage.State storage state,
                  Actions.LiquidateArgs memory args,
                  Types.Wei memory heldWei,
                  Types.Wei memory owedWei
              )
                  internal
              {
                  BalanceUpdate memory solidHeldUpdate = getBalanceUpdate(
                      state,
                      args.solidAccount,
                      args.heldMarket,
                      heldWei.negative()
                  );
                  BalanceUpdate memory solidOwedUpdate = getBalanceUpdate(
                      state,
                      args.solidAccount,
                      args.owedMarket,
                      owedWei.negative()
                  );
                  BalanceUpdate memory liquidHeldUpdate = getBalanceUpdate(
                      state,
                      args.liquidAccount,
                      args.heldMarket,
                      heldWei
                  );
                  BalanceUpdate memory liquidOwedUpdate = getBalanceUpdate(
                      state,
                      args.liquidAccount,
                      args.owedMarket,
                      owedWei
                  );
          
                  emit LogLiquidate(
                      args.solidAccount.owner,
                      args.solidAccount.number,
                      args.liquidAccount.owner,
                      args.liquidAccount.number,
                      args.heldMarket,
                      args.owedMarket,
                      solidHeldUpdate,
                      solidOwedUpdate,
                      liquidHeldUpdate,
                      liquidOwedUpdate
                  );
              }
          
              function logVaporize(
                  Storage.State storage state,
                  Actions.VaporizeArgs memory args,
                  Types.Wei memory heldWei,
                  Types.Wei memory owedWei,
                  Types.Wei memory excessWei
              )
                  internal
              {
                  BalanceUpdate memory solidHeldUpdate = getBalanceUpdate(
                      state,
                      args.solidAccount,
                      args.heldMarket,
                      heldWei.negative()
                  );
                  BalanceUpdate memory solidOwedUpdate = getBalanceUpdate(
                      state,
                      args.solidAccount,
                      args.owedMarket,
                      owedWei.negative()
                  );
                  BalanceUpdate memory vaporOwedUpdate = getBalanceUpdate(
                      state,
                      args.vaporAccount,
                      args.owedMarket,
                      owedWei.add(excessWei)
                  );
          
                  emit LogVaporize(
                      args.solidAccount.owner,
                      args.solidAccount.number,
                      args.vaporAccount.owner,
                      args.vaporAccount.number,
                      args.heldMarket,
                      args.owedMarket,
                      solidHeldUpdate,
                      solidOwedUpdate,
                      vaporOwedUpdate
                  );
              }
          
              // ============ Private Functions ============
          
              function getBalanceUpdate(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 market,
                  Types.Wei memory deltaWei
              )
                  private
                  view
                  returns (BalanceUpdate memory)
              {
                  return BalanceUpdate({
                      deltaWei: deltaWei,
                      newPar: state.getPar(account, market)
                  });
              }
          }
          
          // File: contracts/protocol/interfaces/IExchangeWrapper.sol
          
          /**
           * @title IExchangeWrapper
           * @author dYdX
           *
           * Interface that Exchange Wrappers for Solo must implement in order to trade ERC20 tokens.
           */
          interface IExchangeWrapper {
          
              // ============ Public Functions ============
          
              /**
               * Exchange some amount of takerToken for makerToken.
               *
               * @param  tradeOriginator      Address of the initiator of the trade (however, this value
               *                              cannot always be trusted as it is set at the discretion of the
               *                              msg.sender)
               * @param  receiver             Address to set allowance on once the trade has completed
               * @param  makerToken           Address of makerToken, the token to receive
               * @param  takerToken           Address of takerToken, the token to pay
               * @param  requestedFillAmount  Amount of takerToken being paid
               * @param  orderData            Arbitrary bytes data for any information to pass to the exchange
               * @return                      The amount of makerToken received
               */
              function exchange(
                  address tradeOriginator,
                  address receiver,
                  address makerToken,
                  address takerToken,
                  uint256 requestedFillAmount,
                  bytes calldata orderData
              )
                  external
                  returns (uint256);
          
              /**
               * Get amount of takerToken required to buy a certain amount of makerToken for a given trade.
               * Should match the takerToken amount used in exchangeForAmount. If the order cannot provide
               * exactly desiredMakerToken, then it must return the price to buy the minimum amount greater
               * than desiredMakerToken
               *
               * @param  makerToken         Address of makerToken, the token to receive
               * @param  takerToken         Address of takerToken, the token to pay
               * @param  desiredMakerToken  Amount of makerToken requested
               * @param  orderData          Arbitrary bytes data for any information to pass to the exchange
               * @return                    Amount of takerToken the needed to complete the exchange
               */
              function getExchangeCost(
                  address makerToken,
                  address takerToken,
                  uint256 desiredMakerToken,
                  bytes calldata orderData
              )
                  external
                  view
                  returns (uint256);
          }
          
          // File: contracts/protocol/lib/Exchange.sol
          
          /**
           * @title Exchange
           * @author dYdX
           *
           * Library for transferring tokens and interacting with ExchangeWrappers by using the Wei struct
           */
          library Exchange {
              using Types for Types.Wei;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Exchange";
          
              // ============ Library Functions ============
          
              function transferOut(
                  address token,
                  address to,
                  Types.Wei memory deltaWei
              )
                  internal
              {
                  Require.that(
                      !deltaWei.isPositive(),
                      FILE,
                      "Cannot transferOut positive",
                      deltaWei.value
                  );
          
                  Token.transfer(
                      token,
                      to,
                      deltaWei.value
                  );
              }
          
              function transferIn(
                  address token,
                  address from,
                  Types.Wei memory deltaWei
              )
                  internal
              {
                  Require.that(
                      !deltaWei.isNegative(),
                      FILE,
                      "Cannot transferIn negative",
                      deltaWei.value
                  );
          
                  Token.transferFrom(
                      token,
                      from,
                      address(this),
                      deltaWei.value
                  );
              }
          
              function getCost(
                  address exchangeWrapper,
                  address supplyToken,
                  address borrowToken,
                  Types.Wei memory desiredAmount,
                  bytes memory orderData
              )
                  internal
                  view
                  returns (Types.Wei memory)
              {
                  Require.that(
                      !desiredAmount.isNegative(),
                      FILE,
                      "Cannot getCost negative",
                      desiredAmount.value
                  );
          
                  Types.Wei memory result;
                  result.sign = false;
                  result.value = IExchangeWrapper(exchangeWrapper).getExchangeCost(
                      supplyToken,
                      borrowToken,
                      desiredAmount.value,
                      orderData
                  );
          
                  return result;
              }
          
              function exchange(
                  address exchangeWrapper,
                  address accountOwner,
                  address supplyToken,
                  address borrowToken,
                  Types.Wei memory requestedFillAmount,
                  bytes memory orderData
              )
                  internal
                  returns (Types.Wei memory)
              {
                  Require.that(
                      !requestedFillAmount.isPositive(),
                      FILE,
                      "Cannot exchange positive",
                      requestedFillAmount.value
                  );
          
                  transferOut(borrowToken, exchangeWrapper, requestedFillAmount);
          
                  Types.Wei memory result;
                  result.sign = true;
                  result.value = IExchangeWrapper(exchangeWrapper).exchange(
                      accountOwner,
                      address(this),
                      supplyToken,
                      borrowToken,
                      requestedFillAmount.value,
                      orderData
                  );
          
                  transferIn(supplyToken, exchangeWrapper, result);
          
                  return result;
              }
          }
          
          // File: contracts/protocol/impl/OperationImpl.sol
          
          /**
           * @title OperationImpl
           * @author dYdX
           *
           * Logic for processing actions
           */
          library OperationImpl {
              using Cache for Cache.MarketCache;
              using SafeMath for uint256;
              using Storage for Storage.State;
              using Types for Types.Par;
              using Types for Types.Wei;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "OperationImpl";
          
              // ============ Public Functions ============
          
              function operate(
                  Storage.State storage state,
                  Account.Info[] memory accounts,
                  Actions.ActionArgs[] memory actions
              )
                  public
              {
                  Events.logOperation();
          
                  _verifyInputs(accounts, actions);
          
                  (
                      bool[] memory primaryAccounts,
                      Cache.MarketCache memory cache
                  ) = _runPreprocessing(
                      state,
                      accounts,
                      actions
                  );
          
                  _runActions(
                      state,
                      accounts,
                      actions,
                      cache
                  );
          
                  _verifyFinalState(
                      state,
                      accounts,
                      primaryAccounts,
                      cache
                  );
              }
          
              // ============ Helper Functions ============
          
              function _verifyInputs(
                  Account.Info[] memory accounts,
                  Actions.ActionArgs[] memory actions
              )
                  private
                  pure
              {
                  Require.that(
                      actions.length != 0,
                      FILE,
                      "Cannot have zero actions"
                  );
          
                  Require.that(
                      accounts.length != 0,
                      FILE,
                      "Cannot have zero accounts"
                  );
          
                  for (uint256 a = 0; a < accounts.length; a++) {
                      for (uint256 b = a + 1; b < accounts.length; b++) {
                          Require.that(
                              !Account.equals(accounts[a], accounts[b]),
                              FILE,
                              "Cannot duplicate accounts",
                              a,
                              b
                          );
                      }
                  }
              }
          
              function _runPreprocessing(
                  Storage.State storage state,
                  Account.Info[] memory accounts,
                  Actions.ActionArgs[] memory actions
              )
                  private
                  returns (
                      bool[] memory,
                      Cache.MarketCache memory
                  )
              {
                  uint256 numMarkets = state.numMarkets;
                  bool[] memory primaryAccounts = new bool[](accounts.length);
                  Cache.MarketCache memory cache = Cache.create(numMarkets);
          
                  // keep track of primary accounts and indexes that need updating
                  for (uint256 i = 0; i < actions.length; i++) {
                      Actions.ActionArgs memory arg = actions[i];
                      Actions.ActionType actionType = arg.actionType;
                      Actions.MarketLayout marketLayout = Actions.getMarketLayout(actionType);
                      Actions.AccountLayout accountLayout = Actions.getAccountLayout(actionType);
          
                      // parse out primary accounts
                      if (accountLayout != Actions.AccountLayout.OnePrimary) {
                          Require.that(
                              arg.accountId != arg.otherAccountId,
                              FILE,
                              "Duplicate accounts in action",
                              i
                          );
                          if (accountLayout == Actions.AccountLayout.TwoPrimary) {
                              primaryAccounts[arg.otherAccountId] = true;
                          } else {
                              assert(accountLayout == Actions.AccountLayout.PrimaryAndSecondary);
                              Require.that(
                                  !primaryAccounts[arg.otherAccountId],
                                  FILE,
                                  "Requires non-primary account",
                                  arg.otherAccountId
                              );
                          }
                      }
                      primaryAccounts[arg.accountId] = true;
          
                      // keep track of indexes to update
                      if (marketLayout == Actions.MarketLayout.OneMarket) {
                          _updateMarket(state, cache, arg.primaryMarketId);
                      } else if (marketLayout == Actions.MarketLayout.TwoMarkets) {
                          Require.that(
                              arg.primaryMarketId != arg.secondaryMarketId,
                              FILE,
                              "Duplicate markets in action",
                              i
                          );
                          _updateMarket(state, cache, arg.primaryMarketId);
                          _updateMarket(state, cache, arg.secondaryMarketId);
                      } else {
                          assert(marketLayout == Actions.MarketLayout.ZeroMarkets);
                      }
                  }
          
                  // get any other markets for which an account has a balance
                  for (uint256 m = 0; m < numMarkets; m++) {
                      if (cache.hasMarket(m)) {
                          continue;
                      }
                      for (uint256 a = 0; a < accounts.length; a++) {
                          if (!state.getPar(accounts[a], m).isZero()) {
                              _updateMarket(state, cache, m);
                              break;
                          }
                      }
                  }
          
                  return (primaryAccounts, cache);
              }
          
              function _updateMarket(
                  Storage.State storage state,
                  Cache.MarketCache memory cache,
                  uint256 marketId
              )
                  private
              {
                  bool updated = cache.addMarket(state, marketId);
                  if (updated) {
                      Events.logIndexUpdate(marketId, state.updateIndex(marketId));
                  }
              }
          
              function _runActions(
                  Storage.State storage state,
                  Account.Info[] memory accounts,
                  Actions.ActionArgs[] memory actions,
                  Cache.MarketCache memory cache
              )
                  private
              {
                  for (uint256 i = 0; i < actions.length; i++) {
                      Actions.ActionArgs memory action = actions[i];
                      Actions.ActionType actionType = action.actionType;
          
                      if (actionType == Actions.ActionType.Deposit) {
                          _deposit(state, Actions.parseDepositArgs(accounts, action));
                      }
                      else if (actionType == Actions.ActionType.Withdraw) {
                          _withdraw(state, Actions.parseWithdrawArgs(accounts, action));
                      }
                      else if (actionType == Actions.ActionType.Transfer) {
                          _transfer(state, Actions.parseTransferArgs(accounts, action));
                      }
                      else if (actionType == Actions.ActionType.Buy) {
                          _buy(state, Actions.parseBuyArgs(accounts, action));
                      }
                      else if (actionType == Actions.ActionType.Sell) {
                          _sell(state, Actions.parseSellArgs(accounts, action));
                      }
                      else if (actionType == Actions.ActionType.Trade) {
                          _trade(state, Actions.parseTradeArgs(accounts, action));
                      }
                      else if (actionType == Actions.ActionType.Liquidate) {
                          _liquidate(state, Actions.parseLiquidateArgs(accounts, action), cache);
                      }
                      else if (actionType == Actions.ActionType.Vaporize) {
                          _vaporize(state, Actions.parseVaporizeArgs(accounts, action), cache);
                      }
                      else  {
                          assert(actionType == Actions.ActionType.Call);
                          _call(state, Actions.parseCallArgs(accounts, action));
                      }
                  }
              }
          
              function _verifyFinalState(
                  Storage.State storage state,
                  Account.Info[] memory accounts,
                  bool[] memory primaryAccounts,
                  Cache.MarketCache memory cache
              )
                  private
              {
                  // verify no increase in borrowPar for closing markets
                  uint256 numMarkets = cache.getNumMarkets();
                  for (uint256 m = 0; m < numMarkets; m++) {
                      if (cache.getIsClosing(m)) {
                          Require.that(
                              state.getTotalPar(m).borrow <= cache.getBorrowPar(m),
                              FILE,
                              "Market is closing",
                              m
                          );
                      }
                  }
          
                  // verify account collateralization
                  for (uint256 a = 0; a < accounts.length; a++) {
                      Account.Info memory account = accounts[a];
          
                      // validate minBorrowedValue
                      bool collateralized = state.isCollateralized(account, cache, true);
          
                      // don't check collateralization for non-primary accounts
                      if (!primaryAccounts[a]) {
                          continue;
                      }
          
                      // check collateralization for primary accounts
                      Require.that(
                          collateralized,
                          FILE,
                          "Undercollateralized account",
                          account.owner,
                          account.number
                      );
          
                      // ensure status is normal for primary accounts
                      if (state.getStatus(account) != Account.Status.Normal) {
                          state.setStatus(account, Account.Status.Normal);
                      }
                  }
              }
          
              // ============ Action Functions ============
          
              function _deposit(
                  Storage.State storage state,
                  Actions.DepositArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.account, msg.sender);
          
                  Require.that(
                      args.from == msg.sender || args.from == args.account.owner,
                      FILE,
                      "Invalid deposit source",
                      args.from
                  );
          
                  (
                      Types.Par memory newPar,
                      Types.Wei memory deltaWei
                  ) = state.getNewParAndDeltaWei(
                      args.account,
                      args.market,
                      args.amount
                  );
          
                  state.setPar(
                      args.account,
                      args.market,
                      newPar
                  );
          
                  // requires a positive deltaWei
                  Exchange.transferIn(
                      state.getToken(args.market),
                      args.from,
                      deltaWei
                  );
          
                  Events.logDeposit(
                      state,
                      args,
                      deltaWei
                  );
              }
          
              function _withdraw(
                  Storage.State storage state,
                  Actions.WithdrawArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.account, msg.sender);
          
                  (
                      Types.Par memory newPar,
                      Types.Wei memory deltaWei
                  ) = state.getNewParAndDeltaWei(
                      args.account,
                      args.market,
                      args.amount
                  );
          
                  state.setPar(
                      args.account,
                      args.market,
                      newPar
                  );
          
                  // requires a negative deltaWei
                  Exchange.transferOut(
                      state.getToken(args.market),
                      args.to,
                      deltaWei
                  );
          
                  Events.logWithdraw(
                      state,
                      args,
                      deltaWei
                  );
              }
          
              function _transfer(
                  Storage.State storage state,
                  Actions.TransferArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.accountOne, msg.sender);
                  state.requireIsOperator(args.accountTwo, msg.sender);
          
                  (
                      Types.Par memory newPar,
                      Types.Wei memory deltaWei
                  ) = state.getNewParAndDeltaWei(
                      args.accountOne,
                      args.market,
                      args.amount
                  );
          
                  state.setPar(
                      args.accountOne,
                      args.market,
                      newPar
                  );
          
                  state.setParFromDeltaWei(
                      args.accountTwo,
                      args.market,
                      deltaWei.negative()
                  );
          
                  Events.logTransfer(
                      state,
                      args,
                      deltaWei
                  );
              }
          
              function _buy(
                  Storage.State storage state,
                  Actions.BuyArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.account, msg.sender);
          
                  address takerToken = state.getToken(args.takerMarket);
                  address makerToken = state.getToken(args.makerMarket);
          
                  (
                      Types.Par memory makerPar,
                      Types.Wei memory makerWei
                  ) = state.getNewParAndDeltaWei(
                      args.account,
                      args.makerMarket,
                      args.amount
                  );
          
                  Types.Wei memory takerWei = Exchange.getCost(
                      args.exchangeWrapper,
                      makerToken,
                      takerToken,
                      makerWei,
                      args.orderData
                  );
          
                  Types.Wei memory tokensReceived = Exchange.exchange(
                      args.exchangeWrapper,
                      args.account.owner,
                      makerToken,
                      takerToken,
                      takerWei,
                      args.orderData
                  );
          
                  Require.that(
                      tokensReceived.value >= makerWei.value,
                      FILE,
                      "Buy amount less than promised",
                      tokensReceived.value,
                      makerWei.value
                  );
          
                  state.setPar(
                      args.account,
                      args.makerMarket,
                      makerPar
                  );
          
                  state.setParFromDeltaWei(
                      args.account,
                      args.takerMarket,
                      takerWei
                  );
          
                  Events.logBuy(
                      state,
                      args,
                      takerWei,
                      makerWei
                  );
              }
          
              function _sell(
                  Storage.State storage state,
                  Actions.SellArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.account, msg.sender);
          
                  address takerToken = state.getToken(args.takerMarket);
                  address makerToken = state.getToken(args.makerMarket);
          
                  (
                      Types.Par memory takerPar,
                      Types.Wei memory takerWei
                  ) = state.getNewParAndDeltaWei(
                      args.account,
                      args.takerMarket,
                      args.amount
                  );
          
                  Types.Wei memory makerWei = Exchange.exchange(
                      args.exchangeWrapper,
                      args.account.owner,
                      makerToken,
                      takerToken,
                      takerWei,
                      args.orderData
                  );
          
                  state.setPar(
                      args.account,
                      args.takerMarket,
                      takerPar
                  );
          
                  state.setParFromDeltaWei(
                      args.account,
                      args.makerMarket,
                      makerWei
                  );
          
                  Events.logSell(
                      state,
                      args,
                      takerWei,
                      makerWei
                  );
              }
          
              function _trade(
                  Storage.State storage state,
                  Actions.TradeArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.takerAccount, msg.sender);
                  state.requireIsOperator(args.makerAccount, args.autoTrader);
          
                  Types.Par memory oldInputPar = state.getPar(
                      args.makerAccount,
                      args.inputMarket
                  );
                  (
                      Types.Par memory newInputPar,
                      Types.Wei memory inputWei
                  ) = state.getNewParAndDeltaWei(
                      args.makerAccount,
                      args.inputMarket,
                      args.amount
                  );
          
                  Types.AssetAmount memory outputAmount = IAutoTrader(args.autoTrader).getTradeCost(
                      args.inputMarket,
                      args.outputMarket,
                      args.makerAccount,
                      args.takerAccount,
                      oldInputPar,
                      newInputPar,
                      inputWei,
                      args.tradeData
                  );
          
                  (
                      Types.Par memory newOutputPar,
                      Types.Wei memory outputWei
                  ) = state.getNewParAndDeltaWei(
                      args.makerAccount,
                      args.outputMarket,
                      outputAmount
                  );
          
                  Require.that(
                      outputWei.isZero() || inputWei.isZero() || outputWei.sign != inputWei.sign,
                      FILE,
                      "Trades cannot be one-sided"
                  );
          
                  // set the balance for the maker
                  state.setPar(
                      args.makerAccount,
                      args.inputMarket,
                      newInputPar
                  );
                  state.setPar(
                      args.makerAccount,
                      args.outputMarket,
                      newOutputPar
                  );
          
                  // set the balance for the taker
                  state.setParFromDeltaWei(
                      args.takerAccount,
                      args.inputMarket,
                      inputWei.negative()
                  );
                  state.setParFromDeltaWei(
                      args.takerAccount,
                      args.outputMarket,
                      outputWei.negative()
                  );
          
                  Events.logTrade(
                      state,
                      args,
                      inputWei,
                      outputWei
                  );
              }
          
              function _liquidate(
                  Storage.State storage state,
                  Actions.LiquidateArgs memory args,
                  Cache.MarketCache memory cache
              )
                  private
              {
                  state.requireIsOperator(args.solidAccount, msg.sender);
          
                  // verify liquidatable
                  if (Account.Status.Liquid != state.getStatus(args.liquidAccount)) {
                      Require.that(
                          !state.isCollateralized(args.liquidAccount, cache, /* requireMinBorrow = */ false),
                          FILE,
                          "Unliquidatable account",
                          args.liquidAccount.owner,
                          args.liquidAccount.number
                      );
                      state.setStatus(args.liquidAccount, Account.Status.Liquid);
                  }
          
                  Types.Wei memory maxHeldWei = state.getWei(
                      args.liquidAccount,
                      args.heldMarket
                  );
          
                  Require.that(
                      !maxHeldWei.isNegative(),
                      FILE,
                      "Collateral cannot be negative",
                      args.liquidAccount.owner,
                      args.liquidAccount.number,
                      args.heldMarket
                  );
          
                  (
                      Types.Par memory owedPar,
                      Types.Wei memory owedWei
                  ) = state.getNewParAndDeltaWeiForLiquidation(
                      args.liquidAccount,
                      args.owedMarket,
                      args.amount
                  );
          
                  (
                      Monetary.Price memory heldPrice,
                      Monetary.Price memory owedPrice
                  ) = _getLiquidationPrices(
                      state,
                      cache,
                      args.heldMarket,
                      args.owedMarket
                  );
          
                  Types.Wei memory heldWei = _owedWeiToHeldWei(owedWei, heldPrice, owedPrice);
          
                  // if attempting to over-borrow the held asset, bound it by the maximum
                  if (heldWei.value > maxHeldWei.value) {
                      heldWei = maxHeldWei.negative();
                      owedWei = _heldWeiToOwedWei(heldWei, heldPrice, owedPrice);
          
                      state.setPar(
                          args.liquidAccount,
                          args.heldMarket,
                          Types.zeroPar()
                      );
                      state.setParFromDeltaWei(
                          args.liquidAccount,
                          args.owedMarket,
                          owedWei
                      );
                  } else {
                      state.setPar(
                          args.liquidAccount,
                          args.owedMarket,
                          owedPar
                      );
                      state.setParFromDeltaWei(
                          args.liquidAccount,
                          args.heldMarket,
                          heldWei
                      );
                  }
          
                  // set the balances for the solid account
                  state.setParFromDeltaWei(
                      args.solidAccount,
                      args.owedMarket,
                      owedWei.negative()
                  );
                  state.setParFromDeltaWei(
                      args.solidAccount,
                      args.heldMarket,
                      heldWei.negative()
                  );
          
                  Events.logLiquidate(
                      state,
                      args,
                      heldWei,
                      owedWei
                  );
              }
          
              function _vaporize(
                  Storage.State storage state,
                  Actions.VaporizeArgs memory args,
                  Cache.MarketCache memory cache
              )
                  private
              {
                  state.requireIsOperator(args.solidAccount, msg.sender);
          
                  // verify vaporizable
                  if (Account.Status.Vapor != state.getStatus(args.vaporAccount)) {
                      Require.that(
                          state.isVaporizable(args.vaporAccount, cache),
                          FILE,
                          "Unvaporizable account",
                          args.vaporAccount.owner,
                          args.vaporAccount.number
                      );
                      state.setStatus(args.vaporAccount, Account.Status.Vapor);
                  }
          
                  // First, attempt to refund using the same token
                  (
                      bool fullyRepaid,
                      Types.Wei memory excessWei
                  ) = _vaporizeUsingExcess(state, args);
                  if (fullyRepaid) {
                      Events.logVaporize(
                          state,
                          args,
                          Types.zeroWei(),
                          Types.zeroWei(),
                          excessWei
                      );
                      return;
                  }
          
                  Types.Wei memory maxHeldWei = state.getNumExcessTokens(args.heldMarket);
          
                  Require.that(
                      !maxHeldWei.isNegative(),
                      FILE,
                      "Excess cannot be negative",
                      args.heldMarket
                  );
          
                  (
                      Types.Par memory owedPar,
                      Types.Wei memory owedWei
                  ) = state.getNewParAndDeltaWeiForLiquidation(
                      args.vaporAccount,
                      args.owedMarket,
                      args.amount
                  );
          
                  (
                      Monetary.Price memory heldPrice,
                      Monetary.Price memory owedPrice
                  ) = _getLiquidationPrices(
                      state,
                      cache,
                      args.heldMarket,
                      args.owedMarket
                  );
          
                  Types.Wei memory heldWei = _owedWeiToHeldWei(owedWei, heldPrice, owedPrice);
          
                  // if attempting to over-borrow the held asset, bound it by the maximum
                  if (heldWei.value > maxHeldWei.value) {
                      heldWei = maxHeldWei.negative();
                      owedWei = _heldWeiToOwedWei(heldWei, heldPrice, owedPrice);
          
                      state.setParFromDeltaWei(
                          args.vaporAccount,
                          args.owedMarket,
                          owedWei
                      );
                  } else {
                      state.setPar(
                          args.vaporAccount,
                          args.owedMarket,
                          owedPar
                      );
                  }
          
                  // set the balances for the solid account
                  state.setParFromDeltaWei(
                      args.solidAccount,
                      args.owedMarket,
                      owedWei.negative()
                  );
                  state.setParFromDeltaWei(
                      args.solidAccount,
                      args.heldMarket,
                      heldWei.negative()
                  );
          
                  Events.logVaporize(
                      state,
                      args,
                      heldWei,
                      owedWei,
                      excessWei
                  );
              }
          
              function _call(
                  Storage.State storage state,
                  Actions.CallArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.account, msg.sender);
          
                  ICallee(args.callee).callFunction(
                      msg.sender,
                      args.account,
                      args.data
                  );
          
                  Events.logCall(args);
              }
          
              // ============ Private Functions ============
          
              /**
               * For the purposes of liquidation or vaporization, get the value-equivalent amount of heldWei
               * given owedWei and the (spread-adjusted) prices of each asset.
               */
              function _owedWeiToHeldWei(
                  Types.Wei memory owedWei,
                  Monetary.Price memory heldPrice,
                  Monetary.Price memory owedPrice
              )
                  private
                  pure
                  returns (Types.Wei memory)
              {
                  return Types.Wei({
                      sign: false,
                      value: Math.getPartial(owedWei.value, owedPrice.value, heldPrice.value)
                  });
              }
          
              /**
               * For the purposes of liquidation or vaporization, get the value-equivalent amount of owedWei
               * given heldWei and the (spread-adjusted) prices of each asset.
               */
              function _heldWeiToOwedWei(
                  Types.Wei memory heldWei,
                  Monetary.Price memory heldPrice,
                  Monetary.Price memory owedPrice
              )
                  private
                  pure
                  returns (Types.Wei memory)
              {
                  return Types.Wei({
                      sign: true,
                      value: Math.getPartialRoundUp(heldWei.value, heldPrice.value, owedPrice.value)
                  });
              }
          
              /**
               * Attempt to vaporize an account's balance using the excess tokens in the protocol. Return a
               * bool and a wei value. The boolean is true if and only if the balance was fully vaporized. The
               * Wei value is how many excess tokens were used to partially or fully vaporize the account's
               * negative balance.
               */
              function _vaporizeUsingExcess(
                  Storage.State storage state,
                  Actions.VaporizeArgs memory args
              )
                  internal
                  returns (bool, Types.Wei memory)
              {
                  Types.Wei memory excessWei = state.getNumExcessTokens(args.owedMarket);
          
                  // There are no excess funds, return zero
                  if (!excessWei.isPositive()) {
                      return (false, Types.zeroWei());
                  }
          
                  Types.Wei memory maxRefundWei = state.getWei(args.vaporAccount, args.owedMarket);
                  maxRefundWei.sign = true;
          
                  // The account is fully vaporizable using excess funds
                  if (excessWei.value >= maxRefundWei.value) {
                      state.setPar(
                          args.vaporAccount,
                          args.owedMarket,
                          Types.zeroPar()
                      );
                      return (true, maxRefundWei);
                  }
          
                  // The account is only partially vaporizable using excess funds
                  else {
                      state.setParFromDeltaWei(
                          args.vaporAccount,
                          args.owedMarket,
                          excessWei
                      );
                      return (false, excessWei);
                  }
              }
          
              /**
               * Return the (spread-adjusted) prices of two assets for the purposes of liquidation or
               * vaporization.
               */
              function _getLiquidationPrices(
                  Storage.State storage state,
                  Cache.MarketCache memory cache,
                  uint256 heldMarketId,
                  uint256 owedMarketId
              )
                  internal
                  view
                  returns (
                      Monetary.Price memory,
                      Monetary.Price memory
                  )
              {
                  uint256 originalPrice = cache.getPrice(owedMarketId).value;
                  Decimal.D256 memory spread = state.getLiquidationSpreadForPair(
                      heldMarketId,
                      owedMarketId
                  );
          
                  Monetary.Price memory owedPrice = Monetary.Price({
                      value: originalPrice.add(Decimal.mul(originalPrice, spread))
                  });
          
                  return (cache.getPrice(heldMarketId), owedPrice);
              }
          }
          
          // File: contracts/protocol/Operation.sol
          
          /**
           * @title Operation
           * @author dYdX
           *
           * Primary public function for allowing users and contracts to manage accounts within Solo
           */
          contract Operation is
              State,
              ReentrancyGuard
          {
              // ============ Public Functions ============
          
              /**
               * The main entry-point to Solo that allows users and contracts to manage accounts.
               * Take one or more actions on one or more accounts. The msg.sender must be the owner or
               * operator of all accounts except for those being liquidated, vaporized, or traded with.
               * One call to operate() is considered a singular "operation". Account collateralization is
               * ensured only after the completion of the entire operation.
               *
               * @param  accounts  A list of all accounts that will be used in this operation. Cannot contain
               *                   duplicates. In each action, the relevant account will be referred-to by its
               *                   index in the list.
               * @param  actions   An ordered list of all actions that will be taken in this operation. The
               *                   actions will be processed in order.
               */
              function operate(
                  Account.Info[] memory accounts,
                  Actions.ActionArgs[] memory actions
              )
                  public
                  nonReentrant
              {
                  OperationImpl.operate(
                      g_state,
                      accounts,
                      actions
                  );
              }
          }
          
          // File: contracts/protocol/Permission.sol
          
          /**
           * @title Permission
           * @author dYdX
           *
           * Public function that allows other addresses to manage accounts
           */
          contract Permission is
              State
          {
              // ============ Events ============
          
              event LogOperatorSet(
                  address indexed owner,
                  address operator,
                  bool trusted
              );
          
              // ============ Structs ============
          
              struct OperatorArg {
                  address operator;
                  bool trusted;
              }
          
              // ============ Public Functions ============
          
              /**
               * Approves/disapproves any number of operators. An operator is an external address that has the
               * same permissions to manipulate an account as the owner of the account. Operators are simply
               * addresses and therefore may either be externally-owned Ethereum accounts OR smart contracts.
               *
               * Operators are also able to act as AutoTrader contracts on behalf of the account owner if the
               * operator is a smart contract and implements the IAutoTrader interface.
               *
               * @param  args  A list of OperatorArgs which have an address and a boolean. The boolean value
               *               denotes whether to approve (true) or revoke approval (false) for that address.
               */
              function setOperators(
                  OperatorArg[] memory args
              )
                  public
              {
                  for (uint256 i = 0; i < args.length; i++) {
                      address operator = args[i].operator;
                      bool trusted = args[i].trusted;
                      g_state.operators[msg.sender][operator] = trusted;
                      emit LogOperatorSet(msg.sender, operator, trusted);
                  }
              }
          }
          
          // File: contracts/protocol/SoloMargin.sol
          
          /**
           * @title SoloMargin
           * @author dYdX
           *
           * Main contract that inherits from other contracts
           */
          contract SoloMargin is
              State,
              Admin,
              Getters,
              Operation,
              Permission
          {
              // ============ Constructor ============
          
              constructor(
                  Storage.RiskParams memory riskParams,
                  Storage.RiskLimits memory riskLimits
              )
                  public
              {
                  g_state.riskParams = riskParams;
                  g_state.riskLimits = riskLimits;
              }
          }

          File 4 of 7: OperationImpl
          /*
          
              Copyright 2019 dYdX Trading Inc.
          
              Licensed under the Apache License, Version 2.0 (the "License");
              you may not use this file except in compliance with the License.
              You may obtain a copy of the License at
          
              http://www.apache.org/licenses/LICENSE-2.0
          
              Unless required by applicable law or agreed to in writing, software
              distributed under the License is distributed on an "AS IS" BASIS,
              WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
              See the License for the specific language governing permissions and
              limitations under the License.
          
          */
          
          pragma solidity 0.5.7;
          pragma experimental ABIEncoderV2;
          
          // File: openzeppelin-solidity/contracts/math/SafeMath.sol
          
          /**
           * @title SafeMath
           * @dev Unsigned math operations with safety checks that revert on error
           */
          library SafeMath {
              /**
              * @dev Multiplies two unsigned integers, reverts on overflow.
              */
              function mul(uint256 a, uint256 b) internal pure returns (uint256) {
                  // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
                  // benefit is lost if 'b' is also tested.
                  // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
                  if (a == 0) {
                      return 0;
                  }
          
                  uint256 c = a * b;
                  require(c / a == b);
          
                  return c;
              }
          
              /**
              * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
              */
              function div(uint256 a, uint256 b) internal pure returns (uint256) {
                  // Solidity only automatically asserts when dividing by 0
                  require(b > 0);
                  uint256 c = a / b;
                  // assert(a == b * c + a % b); // There is no case in which this doesn't hold
          
                  return c;
              }
          
              /**
              * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
              */
              function sub(uint256 a, uint256 b) internal pure returns (uint256) {
                  require(b <= a);
                  uint256 c = a - b;
          
                  return c;
              }
          
              /**
              * @dev Adds two unsigned integers, reverts on overflow.
              */
              function add(uint256 a, uint256 b) internal pure returns (uint256) {
                  uint256 c = a + b;
                  require(c >= a);
          
                  return c;
              }
          
              /**
              * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
              * reverts when dividing by zero.
              */
              function mod(uint256 a, uint256 b) internal pure returns (uint256) {
                  require(b != 0);
                  return a % b;
              }
          }
          
          // File: contracts/protocol/lib/Require.sol
          
          /**
           * @title Require
           * @author dYdX
           *
           * Stringifies parameters to pretty-print revert messages. Costs more gas than regular require()
           */
          library Require {
          
              // ============ Constants ============
          
              uint256 constant ASCII_ZERO = 48; // '0'
              uint256 constant ASCII_RELATIVE_ZERO = 87; // 'a' - 10
              uint256 constant ASCII_LOWER_EX = 120; // 'x'
              bytes2 constant COLON = 0x3a20; // ': '
              bytes2 constant COMMA = 0x2c20; // ', '
              bytes2 constant LPAREN = 0x203c; // ' <'
              byte constant RPAREN = 0x3e; // '>'
              uint256 constant FOUR_BIT_MASK = 0xf;
          
              // ============ Library Functions ============
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason)
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  uint256 payloadA
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  uint256 payloadA,
                  uint256 payloadB
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  COMMA,
                                  stringify(payloadB),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  address payloadA
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  address payloadA,
                  uint256 payloadB
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  COMMA,
                                  stringify(payloadB),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  address payloadA,
                  uint256 payloadB,
                  uint256 payloadC
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  COMMA,
                                  stringify(payloadB),
                                  COMMA,
                                  stringify(payloadC),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              // ============ Private Functions ============
          
              function stringify(
                  bytes32 input
              )
                  private
                  pure
                  returns (bytes memory)
              {
                  // put the input bytes into the result
                  bytes memory result = abi.encodePacked(input);
          
                  // determine the length of the input by finding the location of the last non-zero byte
                  for (uint256 i = 32; i > 0; ) {
                      // reverse-for-loops with unsigned integer
                      /* solium-disable-next-line security/no-modify-for-iter-var */
                      i--;
          
                      // find the last non-zero byte in order to determine the length
                      if (result[i] != 0) {
                          uint256 length = i + 1;
          
                          /* solium-disable-next-line security/no-inline-assembly */
                          assembly {
                              mstore(result, length) // r.length = length;
                          }
          
                          return result;
                      }
                  }
          
                  // all bytes are zero
                  return new bytes(0);
              }
          
              function stringify(
                  uint256 input
              )
                  private
                  pure
                  returns (bytes memory)
              {
                  if (input == 0) {
                      return "0";
                  }
          
                  // get the final string length
                  uint256 j = input;
                  uint256 length;
                  while (j != 0) {
                      length++;
                      j /= 10;
                  }
          
                  // allocate the string
                  bytes memory bstr = new bytes(length);
          
                  // populate the string starting with the least-significant character
                  j = input;
                  for (uint256 i = length; i > 0; ) {
                      // reverse-for-loops with unsigned integer
                      /* solium-disable-next-line security/no-modify-for-iter-var */
                      i--;
          
                      // take last decimal digit
                      bstr[i] = byte(uint8(ASCII_ZERO + (j % 10)));
          
                      // remove the last decimal digit
                      j /= 10;
                  }
          
                  return bstr;
              }
          
              function stringify(
                  address input
              )
                  private
                  pure
                  returns (bytes memory)
              {
                  uint256 z = uint256(input);
          
                  // addresses are "0x" followed by 20 bytes of data which take up 2 characters each
                  bytes memory result = new bytes(42);
          
                  // populate the result with "0x"
                  result[0] = byte(uint8(ASCII_ZERO));
                  result[1] = byte(uint8(ASCII_LOWER_EX));
          
                  // for each byte (starting from the lowest byte), populate the result with two characters
                  for (uint256 i = 0; i < 20; i++) {
                      // each byte takes two characters
                      uint256 shift = i * 2;
          
                      // populate the least-significant character
                      result[41 - shift] = char(z & FOUR_BIT_MASK);
                      z = z >> 4;
          
                      // populate the most-significant character
                      result[40 - shift] = char(z & FOUR_BIT_MASK);
                      z = z >> 4;
                  }
          
                  return result;
              }
          
              function char(
                  uint256 input
              )
                  private
                  pure
                  returns (byte)
              {
                  // return ASCII digit (0-9)
                  if (input < 10) {
                      return byte(uint8(input + ASCII_ZERO));
                  }
          
                  // return ASCII letter (a-f)
                  return byte(uint8(input + ASCII_RELATIVE_ZERO));
              }
          }
          
          // File: contracts/protocol/lib/Math.sol
          
          /**
           * @title Math
           * @author dYdX
           *
           * Library for non-standard Math functions
           */
          library Math {
              using SafeMath for uint256;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Math";
          
              // ============ Library Functions ============
          
              /*
               * Return target * (numerator / denominator).
               */
              function getPartial(
                  uint256 target,
                  uint256 numerator,
                  uint256 denominator
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return target.mul(numerator).div(denominator);
              }
          
              /*
               * Return target * (numerator / denominator), but rounded up.
               */
              function getPartialRoundUp(
                  uint256 target,
                  uint256 numerator,
                  uint256 denominator
              )
                  internal
                  pure
                  returns (uint256)
              {
                  if (target == 0 || numerator == 0) {
                      // SafeMath will check for zero denominator
                      return SafeMath.div(0, denominator);
                  }
                  return target.mul(numerator).sub(1).div(denominator).add(1);
              }
          
              function to128(
                  uint256 number
              )
                  internal
                  pure
                  returns (uint128)
              {
                  uint128 result = uint128(number);
                  Require.that(
                      result == number,
                      FILE,
                      "Unsafe cast to uint128"
                  );
                  return result;
              }
          
              function to96(
                  uint256 number
              )
                  internal
                  pure
                  returns (uint96)
              {
                  uint96 result = uint96(number);
                  Require.that(
                      result == number,
                      FILE,
                      "Unsafe cast to uint96"
                  );
                  return result;
              }
          
              function to32(
                  uint256 number
              )
                  internal
                  pure
                  returns (uint32)
              {
                  uint32 result = uint32(number);
                  Require.that(
                      result == number,
                      FILE,
                      "Unsafe cast to uint32"
                  );
                  return result;
              }
          
              function min(
                  uint256 a,
                  uint256 b
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return a < b ? a : b;
              }
          
              function max(
                  uint256 a,
                  uint256 b
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return a > b ? a : b;
              }
          }
          
          // File: contracts/protocol/lib/Types.sol
          
          /**
           * @title Types
           * @author dYdX
           *
           * Library for interacting with the basic structs used in Solo
           */
          library Types {
              using Math for uint256;
          
              // ============ AssetAmount ============
          
              enum AssetDenomination {
                  Wei, // the amount is denominated in wei
                  Par  // the amount is denominated in par
              }
          
              enum AssetReference {
                  Delta, // the amount is given as a delta from the current value
                  Target // the amount is given as an exact number to end up at
              }
          
              struct AssetAmount {
                  bool sign; // true if positive
                  AssetDenomination denomination;
                  AssetReference ref;
                  uint256 value;
              }
          
              // ============ Par (Principal Amount) ============
          
              // Total borrow and supply values for a market
              struct TotalPar {
                  uint128 borrow;
                  uint128 supply;
              }
          
              // Individual principal amount for an account
              struct Par {
                  bool sign; // true if positive
                  uint128 value;
              }
          
              function zeroPar()
                  internal
                  pure
                  returns (Par memory)
              {
                  return Par({
                      sign: false,
                      value: 0
                  });
              }
          
              function sub(
                  Par memory a,
                  Par memory b
              )
                  internal
                  pure
                  returns (Par memory)
              {
                  return add(a, negative(b));
              }
          
              function add(
                  Par memory a,
                  Par memory b
              )
                  internal
                  pure
                  returns (Par memory)
              {
                  Par memory result;
                  if (a.sign == b.sign) {
                      result.sign = a.sign;
                      result.value = SafeMath.add(a.value, b.value).to128();
                  } else {
                      if (a.value >= b.value) {
                          result.sign = a.sign;
                          result.value = SafeMath.sub(a.value, b.value).to128();
                      } else {
                          result.sign = b.sign;
                          result.value = SafeMath.sub(b.value, a.value).to128();
                      }
                  }
                  return result;
              }
          
              function equals(
                  Par memory a,
                  Par memory b
              )
                  internal
                  pure
                  returns (bool)
              {
                  if (a.value == b.value) {
                      if (a.value == 0) {
                          return true;
                      }
                      return a.sign == b.sign;
                  }
                  return false;
              }
          
              function negative(
                  Par memory a
              )
                  internal
                  pure
                  returns (Par memory)
              {
                  return Par({
                      sign: !a.sign,
                      value: a.value
                  });
              }
          
              function isNegative(
                  Par memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return !a.sign && a.value > 0;
              }
          
              function isPositive(
                  Par memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.sign && a.value > 0;
              }
          
              function isZero(
                  Par memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.value == 0;
              }
          
              // ============ Wei (Token Amount) ============
          
              // Individual token amount for an account
              struct Wei {
                  bool sign; // true if positive
                  uint256 value;
              }
          
              function zeroWei()
                  internal
                  pure
                  returns (Wei memory)
              {
                  return Wei({
                      sign: false,
                      value: 0
                  });
              }
          
              function sub(
                  Wei memory a,
                  Wei memory b
              )
                  internal
                  pure
                  returns (Wei memory)
              {
                  return add(a, negative(b));
              }
          
              function add(
                  Wei memory a,
                  Wei memory b
              )
                  internal
                  pure
                  returns (Wei memory)
              {
                  Wei memory result;
                  if (a.sign == b.sign) {
                      result.sign = a.sign;
                      result.value = SafeMath.add(a.value, b.value);
                  } else {
                      if (a.value >= b.value) {
                          result.sign = a.sign;
                          result.value = SafeMath.sub(a.value, b.value);
                      } else {
                          result.sign = b.sign;
                          result.value = SafeMath.sub(b.value, a.value);
                      }
                  }
                  return result;
              }
          
              function equals(
                  Wei memory a,
                  Wei memory b
              )
                  internal
                  pure
                  returns (bool)
              {
                  if (a.value == b.value) {
                      if (a.value == 0) {
                          return true;
                      }
                      return a.sign == b.sign;
                  }
                  return false;
              }
          
              function negative(
                  Wei memory a
              )
                  internal
                  pure
                  returns (Wei memory)
              {
                  return Wei({
                      sign: !a.sign,
                      value: a.value
                  });
              }
          
              function isNegative(
                  Wei memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return !a.sign && a.value > 0;
              }
          
              function isPositive(
                  Wei memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.sign && a.value > 0;
              }
          
              function isZero(
                  Wei memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.value == 0;
              }
          }
          
          // File: contracts/protocol/lib/Account.sol
          
          /**
           * @title Account
           * @author dYdX
           *
           * Library of structs and functions that represent an account
           */
          library Account {
              // ============ Enums ============
          
              /*
               * Most-recently-cached account status.
               *
               * Normal: Can only be liquidated if the account values are violating the global margin-ratio.
               * Liquid: Can be liquidated no matter the account values.
               *         Can be vaporized if there are no more positive account values.
               * Vapor:  Has only negative (or zeroed) account values. Can be vaporized.
               *
               */
              enum Status {
                  Normal,
                  Liquid,
                  Vapor
              }
          
              // ============ Structs ============
          
              // Represents the unique key that specifies an account
              struct Info {
                  address owner;  // The address that owns the account
                  uint256 number; // A nonce that allows a single address to control many accounts
              }
          
              // The complete storage for any account
              struct Storage {
                  mapping (uint256 => Types.Par) balances; // Mapping from marketId to principal
                  Status status;
              }
          
              // ============ Library Functions ============
          
              function equals(
                  Info memory a,
                  Info memory b
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.owner == b.owner && a.number == b.number;
              }
          }
          
          // File: contracts/protocol/interfaces/IAutoTrader.sol
          
          /**
           * @title IAutoTrader
           * @author dYdX
           *
           * Interface that Auto-Traders for Solo must implement in order to approve trades.
           */
          contract IAutoTrader {
          
              // ============ Public Functions ============
          
              /**
               * Allows traders to make trades approved by this smart contract. The active trader's account is
               * the takerAccount and the passive account (for which this contract approves trades
               * on-behalf-of) is the makerAccount.
               *
               * @param  inputMarketId   The market for which the trader specified the original amount
               * @param  outputMarketId  The market for which the trader wants the resulting amount specified
               * @param  makerAccount    The account for which this contract is making trades
               * @param  takerAccount    The account requesting the trade
               * @param  oldInputPar     The old principal amount for the makerAccount for the inputMarketId
               * @param  newInputPar     The new principal amount for the makerAccount for the inputMarketId
               * @param  inputWei        The change in token amount for the makerAccount for the inputMarketId
               * @param  data            Arbitrary data passed in by the trader
               * @return                 The AssetAmount for the makerAccount for the outputMarketId
               */
              function getTradeCost(
                  uint256 inputMarketId,
                  uint256 outputMarketId,
                  Account.Info memory makerAccount,
                  Account.Info memory takerAccount,
                  Types.Par memory oldInputPar,
                  Types.Par memory newInputPar,
                  Types.Wei memory inputWei,
                  bytes memory data
              )
                  public
                  returns (Types.AssetAmount memory);
          }
          
          // File: contracts/protocol/interfaces/ICallee.sol
          
          /**
           * @title ICallee
           * @author dYdX
           *
           * Interface that Callees for Solo must implement in order to ingest data.
           */
          contract ICallee {
          
              // ============ Public Functions ============
          
              /**
               * Allows users to send this contract arbitrary data.
               *
               * @param  sender       The msg.sender to Solo
               * @param  accountInfo  The account from which the data is being sent
               * @param  data         Arbitrary data given by the sender
               */
              function callFunction(
                  address sender,
                  Account.Info memory accountInfo,
                  bytes memory data
              )
                  public;
          }
          
          // File: contracts/protocol/lib/Actions.sol
          
          /**
           * @title Actions
           * @author dYdX
           *
           * Library that defines and parses valid Actions
           */
          library Actions {
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Actions";
          
              // ============ Enums ============
          
              enum ActionType {
                  Deposit,   // supply tokens
                  Withdraw,  // borrow tokens
                  Transfer,  // transfer balance between accounts
                  Buy,       // buy an amount of some token (externally)
                  Sell,      // sell an amount of some token (externally)
                  Trade,     // trade tokens against another account
                  Liquidate, // liquidate an undercollateralized or expiring account
                  Vaporize,  // use excess tokens to zero-out a completely negative account
                  Call       // send arbitrary data to an address
              }
          
              enum AccountLayout {
                  OnePrimary,
                  TwoPrimary,
                  PrimaryAndSecondary
              }
          
              enum MarketLayout {
                  ZeroMarkets,
                  OneMarket,
                  TwoMarkets
              }
          
              // ============ Structs ============
          
              /*
               * Arguments that are passed to Solo in an ordered list as part of a single operation.
               * Each ActionArgs has an actionType which specifies which action struct that this data will be
               * parsed into before being processed.
               */
              struct ActionArgs {
                  ActionType actionType;
                  uint256 accountId;
                  Types.AssetAmount amount;
                  uint256 primaryMarketId;
                  uint256 secondaryMarketId;
                  address otherAddress;
                  uint256 otherAccountId;
                  bytes data;
              }
          
              // ============ Action Types ============
          
              /*
               * Moves tokens from an address to Solo. Can either repay a borrow or provide additional supply.
               */
              struct DepositArgs {
                  Types.AssetAmount amount;
                  Account.Info account;
                  uint256 market;
                  address from;
              }
          
              /*
               * Moves tokens from Solo to another address. Can either borrow tokens or reduce the amount
               * previously supplied.
               */
              struct WithdrawArgs {
                  Types.AssetAmount amount;
                  Account.Info account;
                  uint256 market;
                  address to;
              }
          
              /*
               * Transfers balance between two accounts. The msg.sender must be an operator for both accounts.
               * The amount field applies to accountOne.
               * This action does not require any token movement since the trade is done internally to Solo.
               */
              struct TransferArgs {
                  Types.AssetAmount amount;
                  Account.Info accountOne;
                  Account.Info accountTwo;
                  uint256 market;
              }
          
              /*
               * Acquires a certain amount of tokens by spending other tokens. Sends takerMarket tokens to the
               * specified exchangeWrapper contract and expects makerMarket tokens in return. The amount field
               * applies to the makerMarket.
               */
              struct BuyArgs {
                  Types.AssetAmount amount;
                  Account.Info account;
                  uint256 makerMarket;
                  uint256 takerMarket;
                  address exchangeWrapper;
                  bytes orderData;
              }
          
              /*
               * Spends a certain amount of tokens to acquire other tokens. Sends takerMarket tokens to the
               * specified exchangeWrapper and expects makerMarket tokens in return. The amount field applies
               * to the takerMarket.
               */
              struct SellArgs {
                  Types.AssetAmount amount;
                  Account.Info account;
                  uint256 takerMarket;
                  uint256 makerMarket;
                  address exchangeWrapper;
                  bytes orderData;
              }
          
              /*
               * Trades balances between two accounts using any external contract that implements the
               * AutoTrader interface. The AutoTrader contract must be an operator for the makerAccount (for
               * which it is trading on-behalf-of). The amount field applies to the makerAccount and the
               * inputMarket. This proposed change to the makerAccount is passed to the AutoTrader which will
               * quote a change for the makerAccount in the outputMarket (or will disallow the trade).
               * This action does not require any token movement since the trade is done internally to Solo.
               */
              struct TradeArgs {
                  Types.AssetAmount amount;
                  Account.Info takerAccount;
                  Account.Info makerAccount;
                  uint256 inputMarket;
                  uint256 outputMarket;
                  address autoTrader;
                  bytes tradeData;
              }
          
              /*
               * Each account must maintain a certain margin-ratio (specified globally). If the account falls
               * below this margin-ratio, it can be liquidated by any other account. This allows anyone else
               * (arbitrageurs) to repay any borrowed asset (owedMarket) of the liquidating account in
               * exchange for any collateral asset (heldMarket) of the liquidAccount. The ratio is determined
               * by the price ratio (given by the oracles) plus a spread (specified globally). Liquidating an
               * account also sets a flag on the account that the account is being liquidated. This allows
               * anyone to continue liquidating the account until there are no more borrows being taken by the
               * liquidating account. Liquidators do not have to liquidate the entire account all at once but
               * can liquidate as much as they choose. The liquidating flag allows liquidators to continue
               * liquidating the account even if it becomes collateralized through partial liquidation or
               * price movement.
               */
              struct LiquidateArgs {
                  Types.AssetAmount amount;
                  Account.Info solidAccount;
                  Account.Info liquidAccount;
                  uint256 owedMarket;
                  uint256 heldMarket;
              }
          
              /*
               * Similar to liquidate, but vaporAccounts are accounts that have only negative balances
               * remaining. The arbitrageur pays back the negative asset (owedMarket) of the vaporAccount in
               * exchange for a collateral asset (heldMarket) at a favorable spread. However, since the
               * liquidAccount has no collateral assets, the collateral must come from Solo's excess tokens.
               */
              struct VaporizeArgs {
                  Types.AssetAmount amount;
                  Account.Info solidAccount;
                  Account.Info vaporAccount;
                  uint256 owedMarket;
                  uint256 heldMarket;
              }
          
              /*
               * Passes arbitrary bytes of data to an external contract that implements the Callee interface.
               * Does not change any asset amounts. This function may be useful for setting certain variables
               * on layer-two contracts for certain accounts without having to make a separate Ethereum
               * transaction for doing so. Also, the second-layer contracts can ensure that the call is coming
               * from an operator of the particular account.
               */
              struct CallArgs {
                  Account.Info account;
                  address callee;
                  bytes data;
              }
          
              // ============ Helper Functions ============
          
              function getMarketLayout(
                  ActionType actionType
              )
                  internal
                  pure
                  returns (MarketLayout)
              {
                  if (
                      actionType == Actions.ActionType.Deposit
                      || actionType == Actions.ActionType.Withdraw
                      || actionType == Actions.ActionType.Transfer
                  ) {
                      return MarketLayout.OneMarket;
                  }
                  else if (actionType == Actions.ActionType.Call) {
                      return MarketLayout.ZeroMarkets;
                  }
                  return MarketLayout.TwoMarkets;
              }
          
              function getAccountLayout(
                  ActionType actionType
              )
                  internal
                  pure
                  returns (AccountLayout)
              {
                  if (
                      actionType == Actions.ActionType.Transfer
                      || actionType == Actions.ActionType.Trade
                  ) {
                      return AccountLayout.TwoPrimary;
                  } else if (
                      actionType == Actions.ActionType.Liquidate
                      || actionType == Actions.ActionType.Vaporize
                  ) {
                      return AccountLayout.PrimaryAndSecondary;
                  }
                  return AccountLayout.OnePrimary;
              }
          
              // ============ Parsing Functions ============
          
              function parseDepositArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (DepositArgs memory)
              {
                  assert(args.actionType == ActionType.Deposit);
                  return DepositArgs({
                      amount: args.amount,
                      account: accounts[args.accountId],
                      market: args.primaryMarketId,
                      from: args.otherAddress
                  });
              }
          
              function parseWithdrawArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (WithdrawArgs memory)
              {
                  assert(args.actionType == ActionType.Withdraw);
                  return WithdrawArgs({
                      amount: args.amount,
                      account: accounts[args.accountId],
                      market: args.primaryMarketId,
                      to: args.otherAddress
                  });
              }
          
              function parseTransferArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (TransferArgs memory)
              {
                  assert(args.actionType == ActionType.Transfer);
                  return TransferArgs({
                      amount: args.amount,
                      accountOne: accounts[args.accountId],
                      accountTwo: accounts[args.otherAccountId],
                      market: args.primaryMarketId
                  });
              }
          
              function parseBuyArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (BuyArgs memory)
              {
                  assert(args.actionType == ActionType.Buy);
                  return BuyArgs({
                      amount: args.amount,
                      account: accounts[args.accountId],
                      makerMarket: args.primaryMarketId,
                      takerMarket: args.secondaryMarketId,
                      exchangeWrapper: args.otherAddress,
                      orderData: args.data
                  });
              }
          
              function parseSellArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (SellArgs memory)
              {
                  assert(args.actionType == ActionType.Sell);
                  return SellArgs({
                      amount: args.amount,
                      account: accounts[args.accountId],
                      takerMarket: args.primaryMarketId,
                      makerMarket: args.secondaryMarketId,
                      exchangeWrapper: args.otherAddress,
                      orderData: args.data
                  });
              }
          
              function parseTradeArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (TradeArgs memory)
              {
                  assert(args.actionType == ActionType.Trade);
                  return TradeArgs({
                      amount: args.amount,
                      takerAccount: accounts[args.accountId],
                      makerAccount: accounts[args.otherAccountId],
                      inputMarket: args.primaryMarketId,
                      outputMarket: args.secondaryMarketId,
                      autoTrader: args.otherAddress,
                      tradeData: args.data
                  });
              }
          
              function parseLiquidateArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (LiquidateArgs memory)
              {
                  assert(args.actionType == ActionType.Liquidate);
                  return LiquidateArgs({
                      amount: args.amount,
                      solidAccount: accounts[args.accountId],
                      liquidAccount: accounts[args.otherAccountId],
                      owedMarket: args.primaryMarketId,
                      heldMarket: args.secondaryMarketId
                  });
              }
          
              function parseVaporizeArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (VaporizeArgs memory)
              {
                  assert(args.actionType == ActionType.Vaporize);
                  return VaporizeArgs({
                      amount: args.amount,
                      solidAccount: accounts[args.accountId],
                      vaporAccount: accounts[args.otherAccountId],
                      owedMarket: args.primaryMarketId,
                      heldMarket: args.secondaryMarketId
                  });
              }
          
              function parseCallArgs(
                  Account.Info[] memory accounts,
                  ActionArgs memory args
              )
                  internal
                  pure
                  returns (CallArgs memory)
              {
                  assert(args.actionType == ActionType.Call);
                  return CallArgs({
                      account: accounts[args.accountId],
                      callee: args.otherAddress,
                      data: args.data
                  });
              }
          }
          
          // File: contracts/protocol/lib/Monetary.sol
          
          /**
           * @title Monetary
           * @author dYdX
           *
           * Library for types involving money
           */
          library Monetary {
          
              /*
               * The price of a base-unit of an asset.
               */
              struct Price {
                  uint256 value;
              }
          
              /*
               * Total value of an some amount of an asset. Equal to (price * amount).
               */
              struct Value {
                  uint256 value;
              }
          }
          
          // File: contracts/protocol/lib/Cache.sol
          
          /**
           * @title Cache
           * @author dYdX
           *
           * Library for caching information about markets
           */
          library Cache {
              using Cache for MarketCache;
              using Storage for Storage.State;
          
              // ============ Structs ============
          
              struct MarketInfo {
                  bool isClosing;
                  uint128 borrowPar;
                  Monetary.Price price;
              }
          
              struct MarketCache {
                  MarketInfo[] markets;
              }
          
              // ============ Setter Functions ============
          
              /**
               * Initialize an empty cache for some given number of total markets.
               */
              function create(
                  uint256 numMarkets
              )
                  internal
                  pure
                  returns (MarketCache memory)
              {
                  return MarketCache({
                      markets: new MarketInfo[](numMarkets)
                  });
              }
          
              /**
               * Add market information (price and total borrowed par if the market is closing) to the cache.
               * Return true if the market information did not previously exist in the cache.
               */
              function addMarket(
                  MarketCache memory cache,
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  view
                  returns (bool)
              {
                  if (cache.hasMarket(marketId)) {
                      return false;
                  }
                  cache.markets[marketId].price = state.fetchPrice(marketId);
                  if (state.markets[marketId].isClosing) {
                      cache.markets[marketId].isClosing = true;
                      cache.markets[marketId].borrowPar = state.getTotalPar(marketId).borrow;
                  }
                  return true;
              }
          
              // ============ Getter Functions ============
          
              function getNumMarkets(
                  MarketCache memory cache
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return cache.markets.length;
              }
          
              function hasMarket(
                  MarketCache memory cache,
                  uint256 marketId
              )
                  internal
                  pure
                  returns (bool)
              {
                  return cache.markets[marketId].price.value != 0;
              }
          
              function getIsClosing(
                  MarketCache memory cache,
                  uint256 marketId
              )
                  internal
                  pure
                  returns (bool)
              {
                  return cache.markets[marketId].isClosing;
              }
          
              function getPrice(
                  MarketCache memory cache,
                  uint256 marketId
              )
                  internal
                  pure
                  returns (Monetary.Price memory)
              {
                  return cache.markets[marketId].price;
              }
          
              function getBorrowPar(
                  MarketCache memory cache,
                  uint256 marketId
              )
                  internal
                  pure
                  returns (uint128)
              {
                  return cache.markets[marketId].borrowPar;
              }
          }
          
          // File: contracts/protocol/lib/Decimal.sol
          
          /**
           * @title Decimal
           * @author dYdX
           *
           * Library that defines a fixed-point number with 18 decimal places.
           */
          library Decimal {
              using SafeMath for uint256;
          
              // ============ Constants ============
          
              uint256 constant BASE = 10**18;
          
              // ============ Structs ============
          
              struct D256 {
                  uint256 value;
              }
          
              // ============ Functions ============
          
              function one()
                  internal
                  pure
                  returns (D256 memory)
              {
                  return D256({ value: BASE });
              }
          
              function onePlus(
                  D256 memory d
              )
                  internal
                  pure
                  returns (D256 memory)
              {
                  return D256({ value: d.value.add(BASE) });
              }
          
              function mul(
                  uint256 target,
                  D256 memory d
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return Math.getPartial(target, d.value, BASE);
              }
          
              function div(
                  uint256 target,
                  D256 memory d
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return Math.getPartial(target, BASE, d.value);
              }
          }
          
          // File: contracts/protocol/lib/Time.sol
          
          /**
           * @title Time
           * @author dYdX
           *
           * Library for dealing with time, assuming timestamps fit within 32 bits (valid until year 2106)
           */
          library Time {
          
              // ============ Library Functions ============
          
              function currentTime()
                  internal
                  view
                  returns (uint32)
              {
                  return Math.to32(block.timestamp);
              }
          }
          
          // File: contracts/protocol/lib/Interest.sol
          
          /**
           * @title Interest
           * @author dYdX
           *
           * Library for managing the interest rate and interest indexes of Solo
           */
          library Interest {
              using Math for uint256;
              using SafeMath for uint256;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Interest";
              uint64 constant BASE = 10**18;
          
              // ============ Structs ============
          
              struct Rate {
                  uint256 value;
              }
          
              struct Index {
                  uint96 borrow;
                  uint96 supply;
                  uint32 lastUpdate;
              }
          
              // ============ Library Functions ============
          
              /**
               * Get a new market Index based on the old index and market interest rate.
               * Calculate interest for borrowers by using the formula rate * time. Approximates
               * continuously-compounded interest when called frequently, but is much more
               * gas-efficient to calculate. For suppliers, the interest rate is adjusted by the earningsRate,
               * then prorated the across all suppliers.
               *
               * @param  index         The old index for a market
               * @param  rate          The current interest rate of the market
               * @param  totalPar      The total supply and borrow par values of the market
               * @param  earningsRate  The portion of the interest that is forwarded to the suppliers
               * @return               The updated index for a market
               */
              function calculateNewIndex(
                  Index memory index,
                  Rate memory rate,
                  Types.TotalPar memory totalPar,
                  Decimal.D256 memory earningsRate
              )
                  internal
                  view
                  returns (Index memory)
              {
                  (
                      Types.Wei memory supplyWei,
                      Types.Wei memory borrowWei
                  ) = totalParToWei(totalPar, index);
          
                  // get interest increase for borrowers
                  uint32 currentTime = Time.currentTime();
                  uint256 borrowInterest = rate.value.mul(uint256(currentTime).sub(index.lastUpdate));
          
                  // get interest increase for suppliers
                  uint256 supplyInterest;
                  if (Types.isZero(supplyWei)) {
                      supplyInterest = 0;
                  } else {
                      supplyInterest = Decimal.mul(borrowInterest, earningsRate);
                      if (borrowWei.value < supplyWei.value) {
                          supplyInterest = Math.getPartial(supplyInterest, borrowWei.value, supplyWei.value);
                      }
                  }
                  assert(supplyInterest <= borrowInterest);
          
                  return Index({
                      borrow: Math.getPartial(index.borrow, borrowInterest, BASE).add(index.borrow).to96(),
                      supply: Math.getPartial(index.supply, supplyInterest, BASE).add(index.supply).to96(),
                      lastUpdate: currentTime
                  });
              }
          
              function newIndex()
                  internal
                  view
                  returns (Index memory)
              {
                  return Index({
                      borrow: BASE,
                      supply: BASE,
                      lastUpdate: Time.currentTime()
                  });
              }
          
              /*
               * Convert a principal amount to a token amount given an index.
               */
              function parToWei(
                  Types.Par memory input,
                  Index memory index
              )
                  internal
                  pure
                  returns (Types.Wei memory)
              {
                  uint256 inputValue = uint256(input.value);
                  if (input.sign) {
                      return Types.Wei({
                          sign: true,
                          value: inputValue.getPartial(index.supply, BASE)
                      });
                  } else {
                      return Types.Wei({
                          sign: false,
                          value: inputValue.getPartialRoundUp(index.borrow, BASE)
                      });
                  }
              }
          
              /*
               * Convert a token amount to a principal amount given an index.
               */
              function weiToPar(
                  Types.Wei memory input,
                  Index memory index
              )
                  internal
                  pure
                  returns (Types.Par memory)
              {
                  if (input.sign) {
                      return Types.Par({
                          sign: true,
                          value: input.value.getPartial(BASE, index.supply).to128()
                      });
                  } else {
                      return Types.Par({
                          sign: false,
                          value: input.value.getPartialRoundUp(BASE, index.borrow).to128()
                      });
                  }
              }
          
              /*
               * Convert the total supply and borrow principal amounts of a market to total supply and borrow
               * token amounts.
               */
              function totalParToWei(
                  Types.TotalPar memory totalPar,
                  Index memory index
              )
                  internal
                  pure
                  returns (Types.Wei memory, Types.Wei memory)
              {
                  Types.Par memory supplyPar = Types.Par({
                      sign: true,
                      value: totalPar.supply
                  });
                  Types.Par memory borrowPar = Types.Par({
                      sign: false,
                      value: totalPar.borrow
                  });
                  Types.Wei memory supplyWei = parToWei(supplyPar, index);
                  Types.Wei memory borrowWei = parToWei(borrowPar, index);
                  return (supplyWei, borrowWei);
              }
          }
          
          // File: contracts/protocol/interfaces/IErc20.sol
          
          /**
           * @title IErc20
           * @author dYdX
           *
           * Interface for using ERC20 Tokens. We have to use a special interface to call ERC20 functions so
           * that we don't automatically revert when calling non-compliant tokens that have no return value for
           * transfer(), transferFrom(), or approve().
           */
          interface IErc20 {
              event Transfer(
                  address indexed from,
                  address indexed to,
                  uint256 value
              );
          
              event Approval(
                  address indexed owner,
                  address indexed spender,
                  uint256 value
              );
          
              function totalSupply(
              )
                  external
                  view
                  returns (uint256);
          
              function balanceOf(
                  address who
              )
                  external
                  view
                  returns (uint256);
          
              function allowance(
                  address owner,
                  address spender
              )
                  external
                  view
                  returns (uint256);
          
              function transfer(
                  address to,
                  uint256 value
              )
                  external;
          
              function transferFrom(
                  address from,
                  address to,
                  uint256 value
              )
                  external;
          
              function approve(
                  address spender,
                  uint256 value
              )
                  external;
          
              function name()
                  external
                  view
                  returns (string memory);
          
              function symbol()
                  external
                  view
                  returns (string memory);
          
              function decimals()
                  external
                  view
                  returns (uint8);
          }
          
          // File: contracts/protocol/lib/Token.sol
          
          /**
           * @title Token
           * @author dYdX
           *
           * This library contains basic functions for interacting with ERC20 tokens. Modified to work with
           * tokens that don't adhere strictly to the ERC20 standard (for example tokens that don't return a
           * boolean value on success).
           */
          library Token {
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Token";
          
              // ============ Library Functions ============
          
              function balanceOf(
                  address token,
                  address owner
              )
                  internal
                  view
                  returns (uint256)
              {
                  return IErc20(token).balanceOf(owner);
              }
          
              function allowance(
                  address token,
                  address owner,
                  address spender
              )
                  internal
                  view
                  returns (uint256)
              {
                  return IErc20(token).allowance(owner, spender);
              }
          
              function approve(
                  address token,
                  address spender,
                  uint256 amount
              )
                  internal
              {
                  IErc20(token).approve(spender, amount);
          
                  Require.that(
                      checkSuccess(),
                      FILE,
                      "Approve failed"
                  );
              }
          
              function approveMax(
                  address token,
                  address spender
              )
                  internal
              {
                  approve(
                      token,
                      spender,
                      uint256(-1)
                  );
              }
          
              function transfer(
                  address token,
                  address to,
                  uint256 amount
              )
                  internal
              {
                  if (amount == 0 || to == address(this)) {
                      return;
                  }
          
                  IErc20(token).transfer(to, amount);
          
                  Require.that(
                      checkSuccess(),
                      FILE,
                      "Transfer failed"
                  );
              }
          
              function transferFrom(
                  address token,
                  address from,
                  address to,
                  uint256 amount
              )
                  internal
              {
                  if (amount == 0 || to == from) {
                      return;
                  }
          
                  IErc20(token).transferFrom(from, to, amount);
          
                  Require.that(
                      checkSuccess(),
                      FILE,
                      "TransferFrom failed"
                  );
              }
          
              // ============ Private Functions ============
          
              /**
               * Check the return value of the previous function up to 32 bytes. Return true if the previous
               * function returned 0 bytes or 32 bytes that are not all-zero.
               */
              function checkSuccess(
              )
                  private
                  pure
                  returns (bool)
              {
                  uint256 returnValue = 0;
          
                  /* solium-disable-next-line security/no-inline-assembly */
                  assembly {
                      // check number of bytes returned from last function call
                      switch returndatasize
          
                      // no bytes returned: assume success
                      case 0x0 {
                          returnValue := 1
                      }
          
                      // 32 bytes returned: check if non-zero
                      case 0x20 {
                          // copy 32 bytes into scratch space
                          returndatacopy(0x0, 0x0, 0x20)
          
                          // load those bytes into returnValue
                          returnValue := mload(0x0)
                      }
          
                      // not sure what was returned: don't mark as success
                      default { }
                  }
          
                  return returnValue != 0;
              }
          }
          
          // File: contracts/protocol/interfaces/IInterestSetter.sol
          
          /**
           * @title IInterestSetter
           * @author dYdX
           *
           * Interface that Interest Setters for Solo must implement in order to report interest rates.
           */
          interface IInterestSetter {
          
              // ============ Public Functions ============
          
              /**
               * Get the interest rate of a token given some borrowed and supplied amounts
               *
               * @param  token        The address of the ERC20 token for the market
               * @param  borrowWei    The total borrowed token amount for the market
               * @param  supplyWei    The total supplied token amount for the market
               * @return              The interest rate per second
               */
              function getInterestRate(
                  address token,
                  uint256 borrowWei,
                  uint256 supplyWei
              )
                  external
                  view
                  returns (Interest.Rate memory);
          }
          
          // File: contracts/protocol/interfaces/IPriceOracle.sol
          
          /**
           * @title IPriceOracle
           * @author dYdX
           *
           * Interface that Price Oracles for Solo must implement in order to report prices.
           */
          contract IPriceOracle {
          
              // ============ Constants ============
          
              uint256 public constant ONE_DOLLAR = 10 ** 36;
          
              // ============ Public Functions ============
          
              /**
               * Get the price of a token
               *
               * @param  token  The ERC20 token address of the market
               * @return        The USD price of a base unit of the token, then multiplied by 10^36.
               *                So a USD-stable coin with 18 decimal places would return 10^18.
               *                This is the price of the base unit rather than the price of a "human-readable"
               *                token amount. Every ERC20 may have a different number of decimals.
               */
              function getPrice(
                  address token
              )
                  public
                  view
                  returns (Monetary.Price memory);
          }
          
          // File: contracts/protocol/lib/Storage.sol
          
          /**
           * @title Storage
           * @author dYdX
           *
           * Functions for reading, writing, and verifying state in Solo
           */
          library Storage {
              using Cache for Cache.MarketCache;
              using Storage for Storage.State;
              using Math for uint256;
              using Types for Types.Par;
              using Types for Types.Wei;
              using SafeMath for uint256;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Storage";
          
              // ============ Structs ============
          
              // All information necessary for tracking a market
              struct Market {
                  // Contract address of the associated ERC20 token
                  address token;
          
                  // Total aggregated supply and borrow amount of the entire market
                  Types.TotalPar totalPar;
          
                  // Interest index of the market
                  Interest.Index index;
          
                  // Contract address of the price oracle for this market
                  IPriceOracle priceOracle;
          
                  // Contract address of the interest setter for this market
                  IInterestSetter interestSetter;
          
                  // Multiplier on the marginRatio for this market
                  Decimal.D256 marginPremium;
          
                  // Multiplier on the liquidationSpread for this market
                  Decimal.D256 spreadPremium;
          
                  // Whether additional borrows are allowed for this market
                  bool isClosing;
              }
          
              // The global risk parameters that govern the health and security of the system
              struct RiskParams {
                  // Required ratio of over-collateralization
                  Decimal.D256 marginRatio;
          
                  // Percentage penalty incurred by liquidated accounts
                  Decimal.D256 liquidationSpread;
          
                  // Percentage of the borrower's interest fee that gets passed to the suppliers
                  Decimal.D256 earningsRate;
          
                  // The minimum absolute borrow value of an account
                  // There must be sufficient incentivize to liquidate undercollateralized accounts
                  Monetary.Value minBorrowedValue;
              }
          
              // The maximum RiskParam values that can be set
              struct RiskLimits {
                  uint64 marginRatioMax;
                  uint64 liquidationSpreadMax;
                  uint64 earningsRateMax;
                  uint64 marginPremiumMax;
                  uint64 spreadPremiumMax;
                  uint128 minBorrowedValueMax;
              }
          
              // The entire storage state of Solo
              struct State {
                  // number of markets
                  uint256 numMarkets;
          
                  // marketId => Market
                  mapping (uint256 => Market) markets;
          
                  // owner => account number => Account
                  mapping (address => mapping (uint256 => Account.Storage)) accounts;
          
                  // Addresses that can control other users accounts
                  mapping (address => mapping (address => bool)) operators;
          
                  // Addresses that can control all users accounts
                  mapping (address => bool) globalOperators;
          
                  // mutable risk parameters of the system
                  RiskParams riskParams;
          
                  // immutable risk limits of the system
                  RiskLimits riskLimits;
              }
          
              // ============ Functions ============
          
              function getToken(
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  view
                  returns (address)
              {
                  return state.markets[marketId].token;
              }
          
              function getTotalPar(
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  view
                  returns (Types.TotalPar memory)
              {
                  return state.markets[marketId].totalPar;
              }
          
              function getIndex(
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  view
                  returns (Interest.Index memory)
              {
                  return state.markets[marketId].index;
              }
          
              function getNumExcessTokens(
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  view
                  returns (Types.Wei memory)
              {
                  Interest.Index memory index = state.getIndex(marketId);
                  Types.TotalPar memory totalPar = state.getTotalPar(marketId);
          
                  address token = state.getToken(marketId);
          
                  Types.Wei memory balanceWei = Types.Wei({
                      sign: true,
                      value: Token.balanceOf(token, address(this))
                  });
          
                  (
                      Types.Wei memory supplyWei,
                      Types.Wei memory borrowWei
                  ) = Interest.totalParToWei(totalPar, index);
          
                  // borrowWei is negative, so subtracting it makes the value more positive
                  return balanceWei.sub(borrowWei).sub(supplyWei);
              }
          
              function getStatus(
                  Storage.State storage state,
                  Account.Info memory account
              )
                  internal
                  view
                  returns (Account.Status)
              {
                  return state.accounts[account.owner][account.number].status;
              }
          
              function getPar(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 marketId
              )
                  internal
                  view
                  returns (Types.Par memory)
              {
                  return state.accounts[account.owner][account.number].balances[marketId];
              }
          
              function getWei(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 marketId
              )
                  internal
                  view
                  returns (Types.Wei memory)
              {
                  Types.Par memory par = state.getPar(account, marketId);
          
                  if (par.isZero()) {
                      return Types.zeroWei();
                  }
          
                  Interest.Index memory index = state.getIndex(marketId);
                  return Interest.parToWei(par, index);
              }
          
              function getLiquidationSpreadForPair(
                  Storage.State storage state,
                  uint256 heldMarketId,
                  uint256 owedMarketId
              )
                  internal
                  view
                  returns (Decimal.D256 memory)
              {
                  uint256 result = state.riskParams.liquidationSpread.value;
                  result = Decimal.mul(result, Decimal.onePlus(state.markets[heldMarketId].spreadPremium));
                  result = Decimal.mul(result, Decimal.onePlus(state.markets[owedMarketId].spreadPremium));
                  return Decimal.D256({
                      value: result
                  });
              }
          
              function fetchNewIndex(
                  Storage.State storage state,
                  uint256 marketId,
                  Interest.Index memory index
              )
                  internal
                  view
                  returns (Interest.Index memory)
              {
                  Interest.Rate memory rate = state.fetchInterestRate(marketId, index);
          
                  return Interest.calculateNewIndex(
                      index,
                      rate,
                      state.getTotalPar(marketId),
                      state.riskParams.earningsRate
                  );
              }
          
              function fetchInterestRate(
                  Storage.State storage state,
                  uint256 marketId,
                  Interest.Index memory index
              )
                  internal
                  view
                  returns (Interest.Rate memory)
              {
                  Types.TotalPar memory totalPar = state.getTotalPar(marketId);
                  (
                      Types.Wei memory supplyWei,
                      Types.Wei memory borrowWei
                  ) = Interest.totalParToWei(totalPar, index);
          
                  Interest.Rate memory rate = state.markets[marketId].interestSetter.getInterestRate(
                      state.getToken(marketId),
                      borrowWei.value,
                      supplyWei.value
                  );
          
                  return rate;
              }
          
              function fetchPrice(
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  view
                  returns (Monetary.Price memory)
              {
                  IPriceOracle oracle = IPriceOracle(state.markets[marketId].priceOracle);
                  Monetary.Price memory price = oracle.getPrice(state.getToken(marketId));
                  Require.that(
                      price.value != 0,
                      FILE,
                      "Price cannot be zero",
                      marketId
                  );
                  return price;
              }
          
              function getAccountValues(
                  Storage.State storage state,
                  Account.Info memory account,
                  Cache.MarketCache memory cache,
                  bool adjustForLiquidity
              )
                  internal
                  view
                  returns (Monetary.Value memory, Monetary.Value memory)
              {
                  Monetary.Value memory supplyValue;
                  Monetary.Value memory borrowValue;
          
                  uint256 numMarkets = cache.getNumMarkets();
                  for (uint256 m = 0; m < numMarkets; m++) {
                      if (!cache.hasMarket(m)) {
                          continue;
                      }
          
                      Types.Wei memory userWei = state.getWei(account, m);
          
                      if (userWei.isZero()) {
                          continue;
                      }
          
                      uint256 assetValue = userWei.value.mul(cache.getPrice(m).value);
                      Decimal.D256 memory adjust = Decimal.one();
                      if (adjustForLiquidity) {
                          adjust = Decimal.onePlus(state.markets[m].marginPremium);
                      }
          
                      if (userWei.sign) {
                          supplyValue.value = supplyValue.value.add(Decimal.div(assetValue, adjust));
                      } else {
                          borrowValue.value = borrowValue.value.add(Decimal.mul(assetValue, adjust));
                      }
                  }
          
                  return (supplyValue, borrowValue);
              }
          
              function isCollateralized(
                  Storage.State storage state,
                  Account.Info memory account,
                  Cache.MarketCache memory cache,
                  bool requireMinBorrow
              )
                  internal
                  view
                  returns (bool)
              {
                  // get account values (adjusted for liquidity)
                  (
                      Monetary.Value memory supplyValue,
                      Monetary.Value memory borrowValue
                  ) = state.getAccountValues(account, cache, /* adjustForLiquidity = */ true);
          
                  if (borrowValue.value == 0) {
                      return true;
                  }
          
                  if (requireMinBorrow) {
                      Require.that(
                          borrowValue.value >= state.riskParams.minBorrowedValue.value,
                          FILE,
                          "Borrow value too low",
                          account.owner,
                          account.number,
                          borrowValue.value
                      );
                  }
          
                  uint256 requiredMargin = Decimal.mul(borrowValue.value, state.riskParams.marginRatio);
          
                  return supplyValue.value >= borrowValue.value.add(requiredMargin);
              }
          
              function isGlobalOperator(
                  Storage.State storage state,
                  address operator
              )
                  internal
                  view
                  returns (bool)
              {
                  return state.globalOperators[operator];
              }
          
              function isLocalOperator(
                  Storage.State storage state,
                  address owner,
                  address operator
              )
                  internal
                  view
                  returns (bool)
              {
                  return state.operators[owner][operator];
              }
          
              function requireIsOperator(
                  Storage.State storage state,
                  Account.Info memory account,
                  address operator
              )
                  internal
                  view
              {
                  bool isValidOperator =
                      operator == account.owner
                      || state.isGlobalOperator(operator)
                      || state.isLocalOperator(account.owner, operator);
          
                  Require.that(
                      isValidOperator,
                      FILE,
                      "Unpermissioned operator",
                      operator
                  );
              }
          
              /**
               * Determine and set an account's balance based on the intended balance change. Return the
               * equivalent amount in wei
               */
              function getNewParAndDeltaWei(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 marketId,
                  Types.AssetAmount memory amount
              )
                  internal
                  view
                  returns (Types.Par memory, Types.Wei memory)
              {
                  Types.Par memory oldPar = state.getPar(account, marketId);
          
                  if (amount.value == 0 && amount.ref == Types.AssetReference.Delta) {
                      return (oldPar, Types.zeroWei());
                  }
          
                  Interest.Index memory index = state.getIndex(marketId);
                  Types.Wei memory oldWei = Interest.parToWei(oldPar, index);
                  Types.Par memory newPar;
                  Types.Wei memory deltaWei;
          
                  if (amount.denomination == Types.AssetDenomination.Wei) {
                      deltaWei = Types.Wei({
                          sign: amount.sign,
                          value: amount.value
                      });
                      if (amount.ref == Types.AssetReference.Target) {
                          deltaWei = deltaWei.sub(oldWei);
                      }
                      newPar = Interest.weiToPar(oldWei.add(deltaWei), index);
                  } else { // AssetDenomination.Par
                      newPar = Types.Par({
                          sign: amount.sign,
                          value: amount.value.to128()
                      });
                      if (amount.ref == Types.AssetReference.Delta) {
                          newPar = oldPar.add(newPar);
                      }
                      deltaWei = Interest.parToWei(newPar, index).sub(oldWei);
                  }
          
                  return (newPar, deltaWei);
              }
          
              function getNewParAndDeltaWeiForLiquidation(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 marketId,
                  Types.AssetAmount memory amount
              )
                  internal
                  view
                  returns (Types.Par memory, Types.Wei memory)
              {
                  Types.Par memory oldPar = state.getPar(account, marketId);
          
                  Require.that(
                      !oldPar.isPositive(),
                      FILE,
                      "Owed balance cannot be positive",
                      account.owner,
                      account.number,
                      marketId
                  );
          
                  (
                      Types.Par memory newPar,
                      Types.Wei memory deltaWei
                  ) = state.getNewParAndDeltaWei(
                      account,
                      marketId,
                      amount
                  );
          
                  // if attempting to over-repay the owed asset, bound it by the maximum
                  if (newPar.isPositive()) {
                      newPar = Types.zeroPar();
                      deltaWei = state.getWei(account, marketId).negative();
                  }
          
                  Require.that(
                      !deltaWei.isNegative() && oldPar.value >= newPar.value,
                      FILE,
                      "Owed balance cannot increase",
                      account.owner,
                      account.number,
                      marketId
                  );
          
                  // if not paying back enough wei to repay any par, then bound wei to zero
                  if (oldPar.equals(newPar)) {
                      deltaWei = Types.zeroWei();
                  }
          
                  return (newPar, deltaWei);
              }
          
              function isVaporizable(
                  Storage.State storage state,
                  Account.Info memory account,
                  Cache.MarketCache memory cache
              )
                  internal
                  view
                  returns (bool)
              {
                  bool hasNegative = false;
                  uint256 numMarkets = cache.getNumMarkets();
                  for (uint256 m = 0; m < numMarkets; m++) {
                      if (!cache.hasMarket(m)) {
                          continue;
                      }
                      Types.Par memory par = state.getPar(account, m);
                      if (par.isZero()) {
                          continue;
                      } else if (par.sign) {
                          return false;
                      } else {
                          hasNegative = true;
                      }
                  }
                  return hasNegative;
              }
          
              // =============== Setter Functions ===============
          
              function updateIndex(
                  Storage.State storage state,
                  uint256 marketId
              )
                  internal
                  returns (Interest.Index memory)
              {
                  Interest.Index memory index = state.getIndex(marketId);
                  if (index.lastUpdate == Time.currentTime()) {
                      return index;
                  }
                  return state.markets[marketId].index = state.fetchNewIndex(marketId, index);
              }
          
              function setStatus(
                  Storage.State storage state,
                  Account.Info memory account,
                  Account.Status status
              )
                  internal
              {
                  state.accounts[account.owner][account.number].status = status;
              }
          
              function setPar(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 marketId,
                  Types.Par memory newPar
              )
                  internal
              {
                  Types.Par memory oldPar = state.getPar(account, marketId);
          
                  if (Types.equals(oldPar, newPar)) {
                      return;
                  }
          
                  // updateTotalPar
                  Types.TotalPar memory totalPar = state.getTotalPar(marketId);
          
                  // roll-back oldPar
                  if (oldPar.sign) {
                      totalPar.supply = uint256(totalPar.supply).sub(oldPar.value).to128();
                  } else {
                      totalPar.borrow = uint256(totalPar.borrow).sub(oldPar.value).to128();
                  }
          
                  // roll-forward newPar
                  if (newPar.sign) {
                      totalPar.supply = uint256(totalPar.supply).add(newPar.value).to128();
                  } else {
                      totalPar.borrow = uint256(totalPar.borrow).add(newPar.value).to128();
                  }
          
                  state.markets[marketId].totalPar = totalPar;
                  state.accounts[account.owner][account.number].balances[marketId] = newPar;
              }
          
              /**
               * Determine and set an account's balance based on a change in wei
               */
              function setParFromDeltaWei(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 marketId,
                  Types.Wei memory deltaWei
              )
                  internal
              {
                  if (deltaWei.isZero()) {
                      return;
                  }
                  Interest.Index memory index = state.getIndex(marketId);
                  Types.Wei memory oldWei = state.getWei(account, marketId);
                  Types.Wei memory newWei = oldWei.add(deltaWei);
                  Types.Par memory newPar = Interest.weiToPar(newWei, index);
                  state.setPar(
                      account,
                      marketId,
                      newPar
                  );
              }
          }
          
          // File: contracts/protocol/lib/Events.sol
          
          /**
           * @title Events
           * @author dYdX
           *
           * Library to parse and emit logs from which the state of all accounts and indexes can be followed
           */
          library Events {
              using Types for Types.Wei;
              using Storage for Storage.State;
          
              // ============ Events ============
          
              event LogIndexUpdate(
                  uint256 indexed market,
                  Interest.Index index
              );
          
              event LogOperation(
                  address sender
              );
          
              event LogDeposit(
                  address indexed accountOwner,
                  uint256 accountNumber,
                  uint256 market,
                  BalanceUpdate update,
                  address from
              );
          
              event LogWithdraw(
                  address indexed accountOwner,
                  uint256 accountNumber,
                  uint256 market,
                  BalanceUpdate update,
                  address to
              );
          
              event LogTransfer(
                  address indexed accountOneOwner,
                  uint256 accountOneNumber,
                  address indexed accountTwoOwner,
                  uint256 accountTwoNumber,
                  uint256 market,
                  BalanceUpdate updateOne,
                  BalanceUpdate updateTwo
              );
          
              event LogBuy(
                  address indexed accountOwner,
                  uint256 accountNumber,
                  uint256 takerMarket,
                  uint256 makerMarket,
                  BalanceUpdate takerUpdate,
                  BalanceUpdate makerUpdate,
                  address exchangeWrapper
              );
          
              event LogSell(
                  address indexed accountOwner,
                  uint256 accountNumber,
                  uint256 takerMarket,
                  uint256 makerMarket,
                  BalanceUpdate takerUpdate,
                  BalanceUpdate makerUpdate,
                  address exchangeWrapper
              );
          
              event LogTrade(
                  address indexed takerAccountOwner,
                  uint256 takerAccountNumber,
                  address indexed makerAccountOwner,
                  uint256 makerAccountNumber,
                  uint256 inputMarket,
                  uint256 outputMarket,
                  BalanceUpdate takerInputUpdate,
                  BalanceUpdate takerOutputUpdate,
                  BalanceUpdate makerInputUpdate,
                  BalanceUpdate makerOutputUpdate,
                  address autoTrader
              );
          
              event LogCall(
                  address indexed accountOwner,
                  uint256 accountNumber,
                  address callee
              );
          
              event LogLiquidate(
                  address indexed solidAccountOwner,
                  uint256 solidAccountNumber,
                  address indexed liquidAccountOwner,
                  uint256 liquidAccountNumber,
                  uint256 heldMarket,
                  uint256 owedMarket,
                  BalanceUpdate solidHeldUpdate,
                  BalanceUpdate solidOwedUpdate,
                  BalanceUpdate liquidHeldUpdate,
                  BalanceUpdate liquidOwedUpdate
              );
          
              event LogVaporize(
                  address indexed solidAccountOwner,
                  uint256 solidAccountNumber,
                  address indexed vaporAccountOwner,
                  uint256 vaporAccountNumber,
                  uint256 heldMarket,
                  uint256 owedMarket,
                  BalanceUpdate solidHeldUpdate,
                  BalanceUpdate solidOwedUpdate,
                  BalanceUpdate vaporOwedUpdate
              );
          
              // ============ Structs ============
          
              struct BalanceUpdate {
                  Types.Wei deltaWei;
                  Types.Par newPar;
              }
          
              // ============ Internal Functions ============
          
              function logIndexUpdate(
                  uint256 marketId,
                  Interest.Index memory index
              )
                  internal
              {
                  emit LogIndexUpdate(
                      marketId,
                      index
                  );
              }
          
              function logOperation()
                  internal
              {
                  emit LogOperation(msg.sender);
              }
          
              function logDeposit(
                  Storage.State storage state,
                  Actions.DepositArgs memory args,
                  Types.Wei memory deltaWei
              )
                  internal
              {
                  emit LogDeposit(
                      args.account.owner,
                      args.account.number,
                      args.market,
                      getBalanceUpdate(
                          state,
                          args.account,
                          args.market,
                          deltaWei
                      ),
                      args.from
                  );
              }
          
              function logWithdraw(
                  Storage.State storage state,
                  Actions.WithdrawArgs memory args,
                  Types.Wei memory deltaWei
              )
                  internal
              {
                  emit LogWithdraw(
                      args.account.owner,
                      args.account.number,
                      args.market,
                      getBalanceUpdate(
                          state,
                          args.account,
                          args.market,
                          deltaWei
                      ),
                      args.to
                  );
              }
          
              function logTransfer(
                  Storage.State storage state,
                  Actions.TransferArgs memory args,
                  Types.Wei memory deltaWei
              )
                  internal
              {
                  emit LogTransfer(
                      args.accountOne.owner,
                      args.accountOne.number,
                      args.accountTwo.owner,
                      args.accountTwo.number,
                      args.market,
                      getBalanceUpdate(
                          state,
                          args.accountOne,
                          args.market,
                          deltaWei
                      ),
                      getBalanceUpdate(
                          state,
                          args.accountTwo,
                          args.market,
                          deltaWei.negative()
                      )
                  );
              }
          
              function logBuy(
                  Storage.State storage state,
                  Actions.BuyArgs memory args,
                  Types.Wei memory takerWei,
                  Types.Wei memory makerWei
              )
                  internal
              {
                  emit LogBuy(
                      args.account.owner,
                      args.account.number,
                      args.takerMarket,
                      args.makerMarket,
                      getBalanceUpdate(
                          state,
                          args.account,
                          args.takerMarket,
                          takerWei
                      ),
                      getBalanceUpdate(
                          state,
                          args.account,
                          args.makerMarket,
                          makerWei
                      ),
                      args.exchangeWrapper
                  );
              }
          
              function logSell(
                  Storage.State storage state,
                  Actions.SellArgs memory args,
                  Types.Wei memory takerWei,
                  Types.Wei memory makerWei
              )
                  internal
              {
                  emit LogSell(
                      args.account.owner,
                      args.account.number,
                      args.takerMarket,
                      args.makerMarket,
                      getBalanceUpdate(
                          state,
                          args.account,
                          args.takerMarket,
                          takerWei
                      ),
                      getBalanceUpdate(
                          state,
                          args.account,
                          args.makerMarket,
                          makerWei
                      ),
                      args.exchangeWrapper
                  );
              }
          
              function logTrade(
                  Storage.State storage state,
                  Actions.TradeArgs memory args,
                  Types.Wei memory inputWei,
                  Types.Wei memory outputWei
              )
                  internal
              {
                  BalanceUpdate[4] memory updates = [
                      getBalanceUpdate(
                          state,
                          args.takerAccount,
                          args.inputMarket,
                          inputWei.negative()
                      ),
                      getBalanceUpdate(
                          state,
                          args.takerAccount,
                          args.outputMarket,
                          outputWei.negative()
                      ),
                      getBalanceUpdate(
                          state,
                          args.makerAccount,
                          args.inputMarket,
                          inputWei
                      ),
                      getBalanceUpdate(
                          state,
                          args.makerAccount,
                          args.outputMarket,
                          outputWei
                      )
                  ];
          
                  emit LogTrade(
                      args.takerAccount.owner,
                      args.takerAccount.number,
                      args.makerAccount.owner,
                      args.makerAccount.number,
                      args.inputMarket,
                      args.outputMarket,
                      updates[0],
                      updates[1],
                      updates[2],
                      updates[3],
                      args.autoTrader
                  );
              }
          
              function logCall(
                  Actions.CallArgs memory args
              )
                  internal
              {
                  emit LogCall(
                      args.account.owner,
                      args.account.number,
                      args.callee
                  );
              }
          
              function logLiquidate(
                  Storage.State storage state,
                  Actions.LiquidateArgs memory args,
                  Types.Wei memory heldWei,
                  Types.Wei memory owedWei
              )
                  internal
              {
                  BalanceUpdate memory solidHeldUpdate = getBalanceUpdate(
                      state,
                      args.solidAccount,
                      args.heldMarket,
                      heldWei.negative()
                  );
                  BalanceUpdate memory solidOwedUpdate = getBalanceUpdate(
                      state,
                      args.solidAccount,
                      args.owedMarket,
                      owedWei.negative()
                  );
                  BalanceUpdate memory liquidHeldUpdate = getBalanceUpdate(
                      state,
                      args.liquidAccount,
                      args.heldMarket,
                      heldWei
                  );
                  BalanceUpdate memory liquidOwedUpdate = getBalanceUpdate(
                      state,
                      args.liquidAccount,
                      args.owedMarket,
                      owedWei
                  );
          
                  emit LogLiquidate(
                      args.solidAccount.owner,
                      args.solidAccount.number,
                      args.liquidAccount.owner,
                      args.liquidAccount.number,
                      args.heldMarket,
                      args.owedMarket,
                      solidHeldUpdate,
                      solidOwedUpdate,
                      liquidHeldUpdate,
                      liquidOwedUpdate
                  );
              }
          
              function logVaporize(
                  Storage.State storage state,
                  Actions.VaporizeArgs memory args,
                  Types.Wei memory heldWei,
                  Types.Wei memory owedWei,
                  Types.Wei memory excessWei
              )
                  internal
              {
                  BalanceUpdate memory solidHeldUpdate = getBalanceUpdate(
                      state,
                      args.solidAccount,
                      args.heldMarket,
                      heldWei.negative()
                  );
                  BalanceUpdate memory solidOwedUpdate = getBalanceUpdate(
                      state,
                      args.solidAccount,
                      args.owedMarket,
                      owedWei.negative()
                  );
                  BalanceUpdate memory vaporOwedUpdate = getBalanceUpdate(
                      state,
                      args.vaporAccount,
                      args.owedMarket,
                      owedWei.add(excessWei)
                  );
          
                  emit LogVaporize(
                      args.solidAccount.owner,
                      args.solidAccount.number,
                      args.vaporAccount.owner,
                      args.vaporAccount.number,
                      args.heldMarket,
                      args.owedMarket,
                      solidHeldUpdate,
                      solidOwedUpdate,
                      vaporOwedUpdate
                  );
              }
          
              // ============ Private Functions ============
          
              function getBalanceUpdate(
                  Storage.State storage state,
                  Account.Info memory account,
                  uint256 market,
                  Types.Wei memory deltaWei
              )
                  private
                  view
                  returns (BalanceUpdate memory)
              {
                  return BalanceUpdate({
                      deltaWei: deltaWei,
                      newPar: state.getPar(account, market)
                  });
              }
          }
          
          // File: contracts/protocol/interfaces/IExchangeWrapper.sol
          
          /**
           * @title IExchangeWrapper
           * @author dYdX
           *
           * Interface that Exchange Wrappers for Solo must implement in order to trade ERC20 tokens.
           */
          interface IExchangeWrapper {
          
              // ============ Public Functions ============
          
              /**
               * Exchange some amount of takerToken for makerToken.
               *
               * @param  tradeOriginator      Address of the initiator of the trade (however, this value
               *                              cannot always be trusted as it is set at the discretion of the
               *                              msg.sender)
               * @param  receiver             Address to set allowance on once the trade has completed
               * @param  makerToken           Address of makerToken, the token to receive
               * @param  takerToken           Address of takerToken, the token to pay
               * @param  requestedFillAmount  Amount of takerToken being paid
               * @param  orderData            Arbitrary bytes data for any information to pass to the exchange
               * @return                      The amount of makerToken received
               */
              function exchange(
                  address tradeOriginator,
                  address receiver,
                  address makerToken,
                  address takerToken,
                  uint256 requestedFillAmount,
                  bytes calldata orderData
              )
                  external
                  returns (uint256);
          
              /**
               * Get amount of takerToken required to buy a certain amount of makerToken for a given trade.
               * Should match the takerToken amount used in exchangeForAmount. If the order cannot provide
               * exactly desiredMakerToken, then it must return the price to buy the minimum amount greater
               * than desiredMakerToken
               *
               * @param  makerToken         Address of makerToken, the token to receive
               * @param  takerToken         Address of takerToken, the token to pay
               * @param  desiredMakerToken  Amount of makerToken requested
               * @param  orderData          Arbitrary bytes data for any information to pass to the exchange
               * @return                    Amount of takerToken the needed to complete the exchange
               */
              function getExchangeCost(
                  address makerToken,
                  address takerToken,
                  uint256 desiredMakerToken,
                  bytes calldata orderData
              )
                  external
                  view
                  returns (uint256);
          }
          
          // File: contracts/protocol/lib/Exchange.sol
          
          /**
           * @title Exchange
           * @author dYdX
           *
           * Library for transferring tokens and interacting with ExchangeWrappers by using the Wei struct
           */
          library Exchange {
              using Types for Types.Wei;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Exchange";
          
              // ============ Library Functions ============
          
              function transferOut(
                  address token,
                  address to,
                  Types.Wei memory deltaWei
              )
                  internal
              {
                  Require.that(
                      !deltaWei.isPositive(),
                      FILE,
                      "Cannot transferOut positive",
                      deltaWei.value
                  );
          
                  Token.transfer(
                      token,
                      to,
                      deltaWei.value
                  );
              }
          
              function transferIn(
                  address token,
                  address from,
                  Types.Wei memory deltaWei
              )
                  internal
              {
                  Require.that(
                      !deltaWei.isNegative(),
                      FILE,
                      "Cannot transferIn negative",
                      deltaWei.value
                  );
          
                  Token.transferFrom(
                      token,
                      from,
                      address(this),
                      deltaWei.value
                  );
              }
          
              function getCost(
                  address exchangeWrapper,
                  address supplyToken,
                  address borrowToken,
                  Types.Wei memory desiredAmount,
                  bytes memory orderData
              )
                  internal
                  view
                  returns (Types.Wei memory)
              {
                  Require.that(
                      !desiredAmount.isNegative(),
                      FILE,
                      "Cannot getCost negative",
                      desiredAmount.value
                  );
          
                  Types.Wei memory result;
                  result.sign = false;
                  result.value = IExchangeWrapper(exchangeWrapper).getExchangeCost(
                      supplyToken,
                      borrowToken,
                      desiredAmount.value,
                      orderData
                  );
          
                  return result;
              }
          
              function exchange(
                  address exchangeWrapper,
                  address accountOwner,
                  address supplyToken,
                  address borrowToken,
                  Types.Wei memory requestedFillAmount,
                  bytes memory orderData
              )
                  internal
                  returns (Types.Wei memory)
              {
                  Require.that(
                      !requestedFillAmount.isPositive(),
                      FILE,
                      "Cannot exchange positive",
                      requestedFillAmount.value
                  );
          
                  transferOut(borrowToken, exchangeWrapper, requestedFillAmount);
          
                  Types.Wei memory result;
                  result.sign = true;
                  result.value = IExchangeWrapper(exchangeWrapper).exchange(
                      accountOwner,
                      address(this),
                      supplyToken,
                      borrowToken,
                      requestedFillAmount.value,
                      orderData
                  );
          
                  transferIn(supplyToken, exchangeWrapper, result);
          
                  return result;
              }
          }
          
          // File: contracts/protocol/impl/OperationImpl.sol
          
          /**
           * @title OperationImpl
           * @author dYdX
           *
           * Logic for processing actions
           */
          library OperationImpl {
              using Cache for Cache.MarketCache;
              using SafeMath for uint256;
              using Storage for Storage.State;
              using Types for Types.Par;
              using Types for Types.Wei;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "OperationImpl";
          
              // ============ Public Functions ============
          
              function operate(
                  Storage.State storage state,
                  Account.Info[] memory accounts,
                  Actions.ActionArgs[] memory actions
              )
                  public
              {
                  Events.logOperation();
          
                  _verifyInputs(accounts, actions);
          
                  (
                      bool[] memory primaryAccounts,
                      Cache.MarketCache memory cache
                  ) = _runPreprocessing(
                      state,
                      accounts,
                      actions
                  );
          
                  _runActions(
                      state,
                      accounts,
                      actions,
                      cache
                  );
          
                  _verifyFinalState(
                      state,
                      accounts,
                      primaryAccounts,
                      cache
                  );
              }
          
              // ============ Helper Functions ============
          
              function _verifyInputs(
                  Account.Info[] memory accounts,
                  Actions.ActionArgs[] memory actions
              )
                  private
                  pure
              {
                  Require.that(
                      actions.length != 0,
                      FILE,
                      "Cannot have zero actions"
                  );
          
                  Require.that(
                      accounts.length != 0,
                      FILE,
                      "Cannot have zero accounts"
                  );
          
                  for (uint256 a = 0; a < accounts.length; a++) {
                      for (uint256 b = a + 1; b < accounts.length; b++) {
                          Require.that(
                              !Account.equals(accounts[a], accounts[b]),
                              FILE,
                              "Cannot duplicate accounts",
                              a,
                              b
                          );
                      }
                  }
              }
          
              function _runPreprocessing(
                  Storage.State storage state,
                  Account.Info[] memory accounts,
                  Actions.ActionArgs[] memory actions
              )
                  private
                  returns (
                      bool[] memory,
                      Cache.MarketCache memory
                  )
              {
                  uint256 numMarkets = state.numMarkets;
                  bool[] memory primaryAccounts = new bool[](accounts.length);
                  Cache.MarketCache memory cache = Cache.create(numMarkets);
          
                  // keep track of primary accounts and indexes that need updating
                  for (uint256 i = 0; i < actions.length; i++) {
                      Actions.ActionArgs memory arg = actions[i];
                      Actions.ActionType actionType = arg.actionType;
                      Actions.MarketLayout marketLayout = Actions.getMarketLayout(actionType);
                      Actions.AccountLayout accountLayout = Actions.getAccountLayout(actionType);
          
                      // parse out primary accounts
                      if (accountLayout != Actions.AccountLayout.OnePrimary) {
                          Require.that(
                              arg.accountId != arg.otherAccountId,
                              FILE,
                              "Duplicate accounts in action",
                              i
                          );
                          if (accountLayout == Actions.AccountLayout.TwoPrimary) {
                              primaryAccounts[arg.otherAccountId] = true;
                          } else {
                              assert(accountLayout == Actions.AccountLayout.PrimaryAndSecondary);
                              Require.that(
                                  !primaryAccounts[arg.otherAccountId],
                                  FILE,
                                  "Requires non-primary account",
                                  arg.otherAccountId
                              );
                          }
                      }
                      primaryAccounts[arg.accountId] = true;
          
                      // keep track of indexes to update
                      if (marketLayout == Actions.MarketLayout.OneMarket) {
                          _updateMarket(state, cache, arg.primaryMarketId);
                      } else if (marketLayout == Actions.MarketLayout.TwoMarkets) {
                          Require.that(
                              arg.primaryMarketId != arg.secondaryMarketId,
                              FILE,
                              "Duplicate markets in action",
                              i
                          );
                          _updateMarket(state, cache, arg.primaryMarketId);
                          _updateMarket(state, cache, arg.secondaryMarketId);
                      } else {
                          assert(marketLayout == Actions.MarketLayout.ZeroMarkets);
                      }
                  }
          
                  // get any other markets for which an account has a balance
                  for (uint256 m = 0; m < numMarkets; m++) {
                      if (cache.hasMarket(m)) {
                          continue;
                      }
                      for (uint256 a = 0; a < accounts.length; a++) {
                          if (!state.getPar(accounts[a], m).isZero()) {
                              _updateMarket(state, cache, m);
                              break;
                          }
                      }
                  }
          
                  return (primaryAccounts, cache);
              }
          
              function _updateMarket(
                  Storage.State storage state,
                  Cache.MarketCache memory cache,
                  uint256 marketId
              )
                  private
              {
                  bool updated = cache.addMarket(state, marketId);
                  if (updated) {
                      Events.logIndexUpdate(marketId, state.updateIndex(marketId));
                  }
              }
          
              function _runActions(
                  Storage.State storage state,
                  Account.Info[] memory accounts,
                  Actions.ActionArgs[] memory actions,
                  Cache.MarketCache memory cache
              )
                  private
              {
                  for (uint256 i = 0; i < actions.length; i++) {
                      Actions.ActionArgs memory action = actions[i];
                      Actions.ActionType actionType = action.actionType;
          
                      if (actionType == Actions.ActionType.Deposit) {
                          _deposit(state, Actions.parseDepositArgs(accounts, action));
                      }
                      else if (actionType == Actions.ActionType.Withdraw) {
                          _withdraw(state, Actions.parseWithdrawArgs(accounts, action));
                      }
                      else if (actionType == Actions.ActionType.Transfer) {
                          _transfer(state, Actions.parseTransferArgs(accounts, action));
                      }
                      else if (actionType == Actions.ActionType.Buy) {
                          _buy(state, Actions.parseBuyArgs(accounts, action));
                      }
                      else if (actionType == Actions.ActionType.Sell) {
                          _sell(state, Actions.parseSellArgs(accounts, action));
                      }
                      else if (actionType == Actions.ActionType.Trade) {
                          _trade(state, Actions.parseTradeArgs(accounts, action));
                      }
                      else if (actionType == Actions.ActionType.Liquidate) {
                          _liquidate(state, Actions.parseLiquidateArgs(accounts, action), cache);
                      }
                      else if (actionType == Actions.ActionType.Vaporize) {
                          _vaporize(state, Actions.parseVaporizeArgs(accounts, action), cache);
                      }
                      else  {
                          assert(actionType == Actions.ActionType.Call);
                          _call(state, Actions.parseCallArgs(accounts, action));
                      }
                  }
              }
          
              function _verifyFinalState(
                  Storage.State storage state,
                  Account.Info[] memory accounts,
                  bool[] memory primaryAccounts,
                  Cache.MarketCache memory cache
              )
                  private
              {
                  // verify no increase in borrowPar for closing markets
                  uint256 numMarkets = cache.getNumMarkets();
                  for (uint256 m = 0; m < numMarkets; m++) {
                      if (cache.getIsClosing(m)) {
                          Require.that(
                              state.getTotalPar(m).borrow <= cache.getBorrowPar(m),
                              FILE,
                              "Market is closing",
                              m
                          );
                      }
                  }
          
                  // verify account collateralization
                  for (uint256 a = 0; a < accounts.length; a++) {
                      Account.Info memory account = accounts[a];
          
                      // validate minBorrowedValue
                      bool collateralized = state.isCollateralized(account, cache, true);
          
                      // don't check collateralization for non-primary accounts
                      if (!primaryAccounts[a]) {
                          continue;
                      }
          
                      // check collateralization for primary accounts
                      Require.that(
                          collateralized,
                          FILE,
                          "Undercollateralized account",
                          account.owner,
                          account.number
                      );
          
                      // ensure status is normal for primary accounts
                      if (state.getStatus(account) != Account.Status.Normal) {
                          state.setStatus(account, Account.Status.Normal);
                      }
                  }
              }
          
              // ============ Action Functions ============
          
              function _deposit(
                  Storage.State storage state,
                  Actions.DepositArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.account, msg.sender);
          
                  Require.that(
                      args.from == msg.sender || args.from == args.account.owner,
                      FILE,
                      "Invalid deposit source",
                      args.from
                  );
          
                  (
                      Types.Par memory newPar,
                      Types.Wei memory deltaWei
                  ) = state.getNewParAndDeltaWei(
                      args.account,
                      args.market,
                      args.amount
                  );
          
                  state.setPar(
                      args.account,
                      args.market,
                      newPar
                  );
          
                  // requires a positive deltaWei
                  Exchange.transferIn(
                      state.getToken(args.market),
                      args.from,
                      deltaWei
                  );
          
                  Events.logDeposit(
                      state,
                      args,
                      deltaWei
                  );
              }
          
              function _withdraw(
                  Storage.State storage state,
                  Actions.WithdrawArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.account, msg.sender);
          
                  (
                      Types.Par memory newPar,
                      Types.Wei memory deltaWei
                  ) = state.getNewParAndDeltaWei(
                      args.account,
                      args.market,
                      args.amount
                  );
          
                  state.setPar(
                      args.account,
                      args.market,
                      newPar
                  );
          
                  // requires a negative deltaWei
                  Exchange.transferOut(
                      state.getToken(args.market),
                      args.to,
                      deltaWei
                  );
          
                  Events.logWithdraw(
                      state,
                      args,
                      deltaWei
                  );
              }
          
              function _transfer(
                  Storage.State storage state,
                  Actions.TransferArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.accountOne, msg.sender);
                  state.requireIsOperator(args.accountTwo, msg.sender);
          
                  (
                      Types.Par memory newPar,
                      Types.Wei memory deltaWei
                  ) = state.getNewParAndDeltaWei(
                      args.accountOne,
                      args.market,
                      args.amount
                  );
          
                  state.setPar(
                      args.accountOne,
                      args.market,
                      newPar
                  );
          
                  state.setParFromDeltaWei(
                      args.accountTwo,
                      args.market,
                      deltaWei.negative()
                  );
          
                  Events.logTransfer(
                      state,
                      args,
                      deltaWei
                  );
              }
          
              function _buy(
                  Storage.State storage state,
                  Actions.BuyArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.account, msg.sender);
          
                  address takerToken = state.getToken(args.takerMarket);
                  address makerToken = state.getToken(args.makerMarket);
          
                  (
                      Types.Par memory makerPar,
                      Types.Wei memory makerWei
                  ) = state.getNewParAndDeltaWei(
                      args.account,
                      args.makerMarket,
                      args.amount
                  );
          
                  Types.Wei memory takerWei = Exchange.getCost(
                      args.exchangeWrapper,
                      makerToken,
                      takerToken,
                      makerWei,
                      args.orderData
                  );
          
                  Types.Wei memory tokensReceived = Exchange.exchange(
                      args.exchangeWrapper,
                      args.account.owner,
                      makerToken,
                      takerToken,
                      takerWei,
                      args.orderData
                  );
          
                  Require.that(
                      tokensReceived.value >= makerWei.value,
                      FILE,
                      "Buy amount less than promised",
                      tokensReceived.value,
                      makerWei.value
                  );
          
                  state.setPar(
                      args.account,
                      args.makerMarket,
                      makerPar
                  );
          
                  state.setParFromDeltaWei(
                      args.account,
                      args.takerMarket,
                      takerWei
                  );
          
                  Events.logBuy(
                      state,
                      args,
                      takerWei,
                      makerWei
                  );
              }
          
              function _sell(
                  Storage.State storage state,
                  Actions.SellArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.account, msg.sender);
          
                  address takerToken = state.getToken(args.takerMarket);
                  address makerToken = state.getToken(args.makerMarket);
          
                  (
                      Types.Par memory takerPar,
                      Types.Wei memory takerWei
                  ) = state.getNewParAndDeltaWei(
                      args.account,
                      args.takerMarket,
                      args.amount
                  );
          
                  Types.Wei memory makerWei = Exchange.exchange(
                      args.exchangeWrapper,
                      args.account.owner,
                      makerToken,
                      takerToken,
                      takerWei,
                      args.orderData
                  );
          
                  state.setPar(
                      args.account,
                      args.takerMarket,
                      takerPar
                  );
          
                  state.setParFromDeltaWei(
                      args.account,
                      args.makerMarket,
                      makerWei
                  );
          
                  Events.logSell(
                      state,
                      args,
                      takerWei,
                      makerWei
                  );
              }
          
              function _trade(
                  Storage.State storage state,
                  Actions.TradeArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.takerAccount, msg.sender);
                  state.requireIsOperator(args.makerAccount, args.autoTrader);
          
                  Types.Par memory oldInputPar = state.getPar(
                      args.makerAccount,
                      args.inputMarket
                  );
                  (
                      Types.Par memory newInputPar,
                      Types.Wei memory inputWei
                  ) = state.getNewParAndDeltaWei(
                      args.makerAccount,
                      args.inputMarket,
                      args.amount
                  );
          
                  Types.AssetAmount memory outputAmount = IAutoTrader(args.autoTrader).getTradeCost(
                      args.inputMarket,
                      args.outputMarket,
                      args.makerAccount,
                      args.takerAccount,
                      oldInputPar,
                      newInputPar,
                      inputWei,
                      args.tradeData
                  );
          
                  (
                      Types.Par memory newOutputPar,
                      Types.Wei memory outputWei
                  ) = state.getNewParAndDeltaWei(
                      args.makerAccount,
                      args.outputMarket,
                      outputAmount
                  );
          
                  Require.that(
                      outputWei.isZero() || inputWei.isZero() || outputWei.sign != inputWei.sign,
                      FILE,
                      "Trades cannot be one-sided"
                  );
          
                  // set the balance for the maker
                  state.setPar(
                      args.makerAccount,
                      args.inputMarket,
                      newInputPar
                  );
                  state.setPar(
                      args.makerAccount,
                      args.outputMarket,
                      newOutputPar
                  );
          
                  // set the balance for the taker
                  state.setParFromDeltaWei(
                      args.takerAccount,
                      args.inputMarket,
                      inputWei.negative()
                  );
                  state.setParFromDeltaWei(
                      args.takerAccount,
                      args.outputMarket,
                      outputWei.negative()
                  );
          
                  Events.logTrade(
                      state,
                      args,
                      inputWei,
                      outputWei
                  );
              }
          
              function _liquidate(
                  Storage.State storage state,
                  Actions.LiquidateArgs memory args,
                  Cache.MarketCache memory cache
              )
                  private
              {
                  state.requireIsOperator(args.solidAccount, msg.sender);
          
                  // verify liquidatable
                  if (Account.Status.Liquid != state.getStatus(args.liquidAccount)) {
                      Require.that(
                          !state.isCollateralized(args.liquidAccount, cache, /* requireMinBorrow = */ false),
                          FILE,
                          "Unliquidatable account",
                          args.liquidAccount.owner,
                          args.liquidAccount.number
                      );
                      state.setStatus(args.liquidAccount, Account.Status.Liquid);
                  }
          
                  Types.Wei memory maxHeldWei = state.getWei(
                      args.liquidAccount,
                      args.heldMarket
                  );
          
                  Require.that(
                      !maxHeldWei.isNegative(),
                      FILE,
                      "Collateral cannot be negative",
                      args.liquidAccount.owner,
                      args.liquidAccount.number,
                      args.heldMarket
                  );
          
                  (
                      Types.Par memory owedPar,
                      Types.Wei memory owedWei
                  ) = state.getNewParAndDeltaWeiForLiquidation(
                      args.liquidAccount,
                      args.owedMarket,
                      args.amount
                  );
          
                  (
                      Monetary.Price memory heldPrice,
                      Monetary.Price memory owedPrice
                  ) = _getLiquidationPrices(
                      state,
                      cache,
                      args.heldMarket,
                      args.owedMarket
                  );
          
                  Types.Wei memory heldWei = _owedWeiToHeldWei(owedWei, heldPrice, owedPrice);
          
                  // if attempting to over-borrow the held asset, bound it by the maximum
                  if (heldWei.value > maxHeldWei.value) {
                      heldWei = maxHeldWei.negative();
                      owedWei = _heldWeiToOwedWei(heldWei, heldPrice, owedPrice);
          
                      state.setPar(
                          args.liquidAccount,
                          args.heldMarket,
                          Types.zeroPar()
                      );
                      state.setParFromDeltaWei(
                          args.liquidAccount,
                          args.owedMarket,
                          owedWei
                      );
                  } else {
                      state.setPar(
                          args.liquidAccount,
                          args.owedMarket,
                          owedPar
                      );
                      state.setParFromDeltaWei(
                          args.liquidAccount,
                          args.heldMarket,
                          heldWei
                      );
                  }
          
                  // set the balances for the solid account
                  state.setParFromDeltaWei(
                      args.solidAccount,
                      args.owedMarket,
                      owedWei.negative()
                  );
                  state.setParFromDeltaWei(
                      args.solidAccount,
                      args.heldMarket,
                      heldWei.negative()
                  );
          
                  Events.logLiquidate(
                      state,
                      args,
                      heldWei,
                      owedWei
                  );
              }
          
              function _vaporize(
                  Storage.State storage state,
                  Actions.VaporizeArgs memory args,
                  Cache.MarketCache memory cache
              )
                  private
              {
                  state.requireIsOperator(args.solidAccount, msg.sender);
          
                  // verify vaporizable
                  if (Account.Status.Vapor != state.getStatus(args.vaporAccount)) {
                      Require.that(
                          state.isVaporizable(args.vaporAccount, cache),
                          FILE,
                          "Unvaporizable account",
                          args.vaporAccount.owner,
                          args.vaporAccount.number
                      );
                      state.setStatus(args.vaporAccount, Account.Status.Vapor);
                  }
          
                  // First, attempt to refund using the same token
                  (
                      bool fullyRepaid,
                      Types.Wei memory excessWei
                  ) = _vaporizeUsingExcess(state, args);
                  if (fullyRepaid) {
                      Events.logVaporize(
                          state,
                          args,
                          Types.zeroWei(),
                          Types.zeroWei(),
                          excessWei
                      );
                      return;
                  }
          
                  Types.Wei memory maxHeldWei = state.getNumExcessTokens(args.heldMarket);
          
                  Require.that(
                      !maxHeldWei.isNegative(),
                      FILE,
                      "Excess cannot be negative",
                      args.heldMarket
                  );
          
                  (
                      Types.Par memory owedPar,
                      Types.Wei memory owedWei
                  ) = state.getNewParAndDeltaWeiForLiquidation(
                      args.vaporAccount,
                      args.owedMarket,
                      args.amount
                  );
          
                  (
                      Monetary.Price memory heldPrice,
                      Monetary.Price memory owedPrice
                  ) = _getLiquidationPrices(
                      state,
                      cache,
                      args.heldMarket,
                      args.owedMarket
                  );
          
                  Types.Wei memory heldWei = _owedWeiToHeldWei(owedWei, heldPrice, owedPrice);
          
                  // if attempting to over-borrow the held asset, bound it by the maximum
                  if (heldWei.value > maxHeldWei.value) {
                      heldWei = maxHeldWei.negative();
                      owedWei = _heldWeiToOwedWei(heldWei, heldPrice, owedPrice);
          
                      state.setParFromDeltaWei(
                          args.vaporAccount,
                          args.owedMarket,
                          owedWei
                      );
                  } else {
                      state.setPar(
                          args.vaporAccount,
                          args.owedMarket,
                          owedPar
                      );
                  }
          
                  // set the balances for the solid account
                  state.setParFromDeltaWei(
                      args.solidAccount,
                      args.owedMarket,
                      owedWei.negative()
                  );
                  state.setParFromDeltaWei(
                      args.solidAccount,
                      args.heldMarket,
                      heldWei.negative()
                  );
          
                  Events.logVaporize(
                      state,
                      args,
                      heldWei,
                      owedWei,
                      excessWei
                  );
              }
          
              function _call(
                  Storage.State storage state,
                  Actions.CallArgs memory args
              )
                  private
              {
                  state.requireIsOperator(args.account, msg.sender);
          
                  ICallee(args.callee).callFunction(
                      msg.sender,
                      args.account,
                      args.data
                  );
          
                  Events.logCall(args);
              }
          
              // ============ Private Functions ============
          
              /**
               * For the purposes of liquidation or vaporization, get the value-equivalent amount of heldWei
               * given owedWei and the (spread-adjusted) prices of each asset.
               */
              function _owedWeiToHeldWei(
                  Types.Wei memory owedWei,
                  Monetary.Price memory heldPrice,
                  Monetary.Price memory owedPrice
              )
                  private
                  pure
                  returns (Types.Wei memory)
              {
                  return Types.Wei({
                      sign: false,
                      value: Math.getPartial(owedWei.value, owedPrice.value, heldPrice.value)
                  });
              }
          
              /**
               * For the purposes of liquidation or vaporization, get the value-equivalent amount of owedWei
               * given heldWei and the (spread-adjusted) prices of each asset.
               */
              function _heldWeiToOwedWei(
                  Types.Wei memory heldWei,
                  Monetary.Price memory heldPrice,
                  Monetary.Price memory owedPrice
              )
                  private
                  pure
                  returns (Types.Wei memory)
              {
                  return Types.Wei({
                      sign: true,
                      value: Math.getPartialRoundUp(heldWei.value, heldPrice.value, owedPrice.value)
                  });
              }
          
              /**
               * Attempt to vaporize an account's balance using the excess tokens in the protocol. Return a
               * bool and a wei value. The boolean is true if and only if the balance was fully vaporized. The
               * Wei value is how many excess tokens were used to partially or fully vaporize the account's
               * negative balance.
               */
              function _vaporizeUsingExcess(
                  Storage.State storage state,
                  Actions.VaporizeArgs memory args
              )
                  internal
                  returns (bool, Types.Wei memory)
              {
                  Types.Wei memory excessWei = state.getNumExcessTokens(args.owedMarket);
          
                  // There are no excess funds, return zero
                  if (!excessWei.isPositive()) {
                      return (false, Types.zeroWei());
                  }
          
                  Types.Wei memory maxRefundWei = state.getWei(args.vaporAccount, args.owedMarket);
                  maxRefundWei.sign = true;
          
                  // The account is fully vaporizable using excess funds
                  if (excessWei.value >= maxRefundWei.value) {
                      state.setPar(
                          args.vaporAccount,
                          args.owedMarket,
                          Types.zeroPar()
                      );
                      return (true, maxRefundWei);
                  }
          
                  // The account is only partially vaporizable using excess funds
                  else {
                      state.setParFromDeltaWei(
                          args.vaporAccount,
                          args.owedMarket,
                          excessWei
                      );
                      return (false, excessWei);
                  }
              }
          
              /**
               * Return the (spread-adjusted) prices of two assets for the purposes of liquidation or
               * vaporization.
               */
              function _getLiquidationPrices(
                  Storage.State storage state,
                  Cache.MarketCache memory cache,
                  uint256 heldMarketId,
                  uint256 owedMarketId
              )
                  internal
                  view
                  returns (
                      Monetary.Price memory,
                      Monetary.Price memory
                  )
              {
                  uint256 originalPrice = cache.getPrice(owedMarketId).value;
                  Decimal.D256 memory spread = state.getLiquidationSpreadForPair(
                      heldMarketId,
                      owedMarketId
                  );
          
                  Monetary.Price memory owedPrice = Monetary.Price({
                      value: originalPrice.add(Decimal.mul(originalPrice, spread))
                  });
          
                  return (cache.getPrice(heldMarketId), owedPrice);
              }
          }

          File 5 of 7: WethPriceOracle
          /*
          
              Copyright 2019 dYdX Trading Inc.
          
              Licensed under the Apache License, Version 2.0 (the "License");
              you may not use this file except in compliance with the License.
              You may obtain a copy of the License at
          
              http://www.apache.org/licenses/LICENSE-2.0
          
              Unless required by applicable law or agreed to in writing, software
              distributed under the License is distributed on an "AS IS" BASIS,
              WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
              See the License for the specific language governing permissions and
              limitations under the License.
          
          */
          
          pragma solidity 0.5.7;
          pragma experimental ABIEncoderV2;
          
          // File: contracts/protocol/lib/Monetary.sol
          
          /**
           * @title Monetary
           * @author dYdX
           *
           * Library for types involving money
           */
          library Monetary {
          
              /*
               * The price of a base-unit of an asset.
               */
              struct Price {
                  uint256 value;
              }
          
              /*
               * Total value of an some amount of an asset. Equal to (price * amount).
               */
              struct Value {
                  uint256 value;
              }
          }
          
          // File: contracts/protocol/interfaces/IPriceOracle.sol
          
          /**
           * @title IPriceOracle
           * @author dYdX
           *
           * Interface that Price Oracles for Solo must implement in order to report prices.
           */
          contract IPriceOracle {
          
              // ============ Constants ============
          
              uint256 public constant ONE_DOLLAR = 10 ** 36;
          
              // ============ Public Functions ============
          
              /**
               * Get the price of a token
               *
               * @param  token  The ERC20 token address of the market
               * @return        The USD price of a base unit of the token, then multiplied by 10^36.
               *                So a USD-stable coin with 18 decimal places would return 10^18.
               *                This is the price of the base unit rather than the price of a "human-readable"
               *                token amount. Every ERC20 may have a different number of decimals.
               */
              function getPrice(
                  address token
              )
                  public
                  view
                  returns (Monetary.Price memory);
          }
          
          // File: contracts/external/interfaces/IMakerOracle.sol
          
          /**
           * @title IMakerOracle
           * @author dYdX
           *
           * Interface for the price oracles run by MakerDao
           */
          interface IMakerOracle {
          
              // Event that is logged when the `note` modifier is used
              event LogNote(
                  bytes4 indexed msgSig,
                  address indexed msgSender,
                  bytes32 indexed arg1,
                  bytes32 indexed arg2,
                  uint256 msgValue,
                  bytes msgData
              ) anonymous;
          
              // returns the current value (ETH/USD * 10**18) as a bytes32
              function peek()
                  external
                  view
                  returns (bytes32, bool);
          
              // requires a fresh price and then returns the current value
              function read()
                  external
                  view
                  returns (bytes32);
          }
          
          // File: contracts/external/oracles/WethPriceOracle.sol
          
          /**
           * @title WethPriceOracle
           * @author dYdX
           *
           * PriceOracle that returns the price of Wei in USD
           */
          contract WethPriceOracle is
              IPriceOracle
          {
              // ============ Storage ============
          
              IMakerOracle public MEDIANIZER;
          
              // ============ Constructor =============
          
              constructor(
                  address medianizer
              )
                  public
              {
                  MEDIANIZER = IMakerOracle(medianizer);
              }
          
              // ============ IPriceOracle Functions =============
          
              function getPrice(
                  address /* token */
              )
                  public
                  view
                  returns (Monetary.Price memory)
              {
                  (bytes32 value, /* bool fresh */) = MEDIANIZER.peek();
                  return Monetary.Price({ value: uint256(value) });
              }
          }

          File 6 of 7: P1MirrorOracleETHUSD
          /*
          
              Copyright 2020 dYdX Trading Inc.
          
              Licensed under the Apache License, Version 2.0 (the "License");
              you may not use this file except in compliance with the License.
              You may obtain a copy of the License at
          
              http://www.apache.org/licenses/LICENSE-2.0
          
              Unless required by applicable law or agreed to in writing, software
              distributed under the License is distributed on an "AS IS" BASIS,
              WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
              See the License for the specific language governing permissions and
              limitations under the License.
          
          */
          
          pragma solidity 0.5.16;
          pragma experimental ABIEncoderV2;
          
          // File: @openzeppelin/contracts/GSN/Context.sol
          
          /*
           * @dev Provides information about the current execution context, including the
           * sender of the transaction and its data. While these are generally available
           * via msg.sender and msg.data, they should not be accessed in such a direct
           * manner, since when dealing with GSN meta-transactions the account sending and
           * paying for execution may not be the actual sender (as far as an application
           * is concerned).
           *
           * This contract is only required for intermediate, library-like contracts.
           */
          contract Context {
              // Empty internal constructor, to prevent people from mistakenly deploying
              // an instance of this contract, which should be used via inheritance.
              constructor () internal { }
              // solhint-disable-previous-line no-empty-blocks
          
              function _msgSender() internal view returns (address payable) {
                  return msg.sender;
              }
          
              function _msgData() internal view returns (bytes memory) {
                  this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
                  return msg.data;
              }
          }
          
          // File: @openzeppelin/contracts/ownership/Ownable.sol
          
          /**
           * @dev Contract module which provides a basic access control mechanism, where
           * there is an account (an owner) that can be granted exclusive access to
           * specific functions.
           *
           * This module is used through inheritance. It will make available the modifier
           * `onlyOwner`, which can be applied to your functions to restrict their use to
           * the owner.
           */
          contract Ownable is Context {
              address private _owner;
          
              event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
          
              /**
               * @dev Initializes the contract setting the deployer as the initial owner.
               */
              constructor () internal {
                  address msgSender = _msgSender();
                  _owner = msgSender;
                  emit OwnershipTransferred(address(0), msgSender);
              }
          
              /**
               * @dev Returns the address of the current owner.
               */
              function owner() public view returns (address) {
                  return _owner;
              }
          
              /**
               * @dev Throws if called by any account other than the owner.
               */
              modifier onlyOwner() {
                  require(isOwner(), "Ownable: caller is not the owner");
                  _;
              }
          
              /**
               * @dev Returns true if the caller is the current owner.
               */
              function isOwner() public view returns (bool) {
                  return _msgSender() == _owner;
              }
          
              /**
               * @dev Leaves the contract without owner. It will not be possible to call
               * `onlyOwner` functions anymore. Can only be called by the current owner.
               *
               * NOTE: Renouncing ownership will leave the contract without an owner,
               * thereby removing any functionality that is only available to the owner.
               */
              function renounceOwnership() public onlyOwner {
                  emit OwnershipTransferred(_owner, address(0));
                  _owner = address(0);
              }
          
              /**
               * @dev Transfers ownership of the contract to a new account (`newOwner`).
               * Can only be called by the current owner.
               */
              function transferOwnership(address newOwner) public onlyOwner {
                  _transferOwnership(newOwner);
              }
          
              /**
               * @dev Transfers ownership of the contract to a new account (`newOwner`).
               */
              function _transferOwnership(address newOwner) internal {
                  require(newOwner != address(0), "Ownable: new owner is the zero address");
                  emit OwnershipTransferred(_owner, newOwner);
                  _owner = newOwner;
              }
          }
          
          // File: contracts/external/maker/I_MakerOracle.sol
          
          /**
           * @title I_MakerOracle
           * @author dYdX
           *
           * Interface for the MakerDAO Oracles V2 smart contrats.
           */
          interface I_MakerOracle {
          
              // ============ Getter Functions ============
          
              /**
               * @notice Returns the current value as a bytes32.
               */
              function peek()
                  external
                  view
                  returns (bytes32, bool);
          
              /**
               * @notice Requires a fresh price and then returns the current value.
               */
              function read()
                  external
                  view
                  returns (bytes32);
          
              /**
               * @notice Returns the number of signers per poke.
               */
              function bar()
                  external
                  view
                  returns (uint256);
          
              /**
               * @notice Returns the timetamp of the last update.
               */
              function age()
                  external
                  view
                  returns (uint32);
          
              /**
               * @notice Returns 1 if the signer is authorized, and 0 otherwise.
               */
              function orcl(
                  address signer
              )
                  external
                  view
                  returns (uint256);
          
              /**
               * @notice Returns 1 if the address is authorized to read the oracle price, and 0 otherwise.
               */
              function bud(
                  address reader
              )
                  external
                  view
                  returns (uint256);
          
              /**
               * @notice A mapping from the first byte of an authorized signer's address to the signer.
               */
              function slot(
                  uint8 signerId
              )
                  external
                  view
                  returns (address);
          
              // ============ State-Changing Functions ============
          
              /**
               * @notice Updates the value of the oracle
               */
              function poke(
                  uint256[] calldata val_,
                  uint256[] calldata age_,
                  uint8[] calldata v,
                  bytes32[] calldata r,
                  bytes32[] calldata s
              )
                  external;
          
              /**
               * @notice Authorize an address to read the oracle price.
               */
              function kiss(
                  address reader
              )
                  external;
          
              /**
               * @notice Unauthorize an address so it can no longer read the oracle price.
               */
              function diss(
                  address reader
              )
                  external;
          
              /**
               * @notice Authorize addresses to read the oracle price.
               */
              function kiss(
                  address[] calldata readers
              )
                  external;
          
              /**
               * @notice Unauthorize addresses so they can no longer read the oracle price.
               */
              function diss(
                  address[] calldata readers
              )
                  external;
          }
          
          // File: contracts/protocol/v1/oracles/P1MirrorOracle.sol
          
          /**
           * @title P1MirrorOracle
           * @author dYdX
           *
           * Oracle which mirrors an underlying oracle.
           */
          contract P1MirrorOracle is
              Ownable,
              I_MakerOracle
          {
              // ============ Events ============
          
              event LogMedianPrice(
                  uint256 val,
                  uint256 age
              );
          
              event LogSetSigner(
                  address signer,
                  bool authorized
              );
          
              event LogSetBar(
                  uint256 bar
              );
          
              event LogSetReader(
                  address reader,
                  bool authorized
              );
          
              // ============ Mutable Storage ============
          
              // The oracle price.
              uint128 internal _VAL_;
          
              // The timestamp of the last oracle update.
              uint32 public _AGE_;
          
              // The number of signers required to update the oracle price.
              uint256 public _BAR_;
          
              // Authorized signers. Value is equal to 0 or 1.
              mapping (address => uint256) public _ORCL_;
          
              // Addresses with permission to get the oracle price. Value is equal to 0 or 1.
              mapping (address => uint256) _READERS_;
          
              // Mapping for at most 256 signers.
              // Each signer is identified by the first byte of their address.
              mapping (uint8 => address) public _SLOT_;
          
              // ============ Immutable Storage ============
          
              // The underlying oracle.
              address public _ORACLE_;
          
              // ============ Constructor ============
          
              constructor(
                  address oracle
              )
                  public
              {
                  _ORACLE_ = oracle;
              }
          
              // ============ Getter Functions ============
          
              /**
               * @notice Returns the current price, and a boolean indicating whether the price is nonzero.
               */
              function peek()
                  external
                  view
                  returns (bytes32, bool)
              {
                  require(
                      _READERS_[msg.sender] == 1,
                      "P1MirrorOracle#peek: Sender not authorized to get price"
                  );
                  uint256 val = _VAL_;
                  return (bytes32(val), val > 0);
              }
          
              /**
               * @notice Requires the price to be nonzero, and returns the current price.
               */
              function read()
                  external
                  view
                  returns (bytes32)
              {
                  require(
                      _READERS_[msg.sender] == 1,
                      "P1MirrorOracle#read: Sender not authorized to get price"
                  );
                  uint256 val = _VAL_;
                  require(
                      val > 0,
                      "P1MirrorOracle#read: Price is zero"
                  );
                  return bytes32(val);
              }
          
              /**
               * @notice Returns the number of signers per poke.
               */
              function bar()
                  external
                  view
                  returns (uint256)
              {
                  return _BAR_;
              }
          
              /**
               * @notice Returns the timetamp of the last update.
               */
              function age()
                  external
                  view
                  returns (uint32)
              {
                  return _AGE_;
              }
          
              /**
               * @notice Returns 1 if the signer is authorized, and 0 otherwise.
               */
              function orcl(
                  address signer
              )
                  external
                  view
                  returns (uint256)
              {
                  return _ORCL_[signer];
              }
          
              /**
               * @notice Returns 1 if the address is authorized to read the oracle price, and 0 otherwise.
               */
              function bud(
                  address reader
              )
                  external
                  view
                  returns (uint256)
              {
                  return _READERS_[reader];
              }
          
              /**
               * @notice A mapping from the first byte of an authorized signer's address to the signer.
               */
              function slot(
                  uint8 signerId
              )
                  external
                  view
                  returns (address)
              {
                  return _SLOT_[signerId];
              }
          
              /**
               * @notice Check whether the list of signers and required number of signers match the underlying
               *  oracle.
               *
               * @return A bitmap of the IDs of signers that need to be added to the mirror.
               * @return A bitmap of the IDs of signers that need to be removed from the mirror.
               * @return False if the required number of signers (“bar”) matches, and true otherwise.
               */
              function checkSynced()
                  external
                  view
                  returns (uint256, uint256, bool)
              {
                  uint256 signersToAdd = 0;
                  uint256 signersToRemove = 0;
                  bool barNeedsUpdate = _BAR_ != I_MakerOracle(_ORACLE_).bar();
          
                  // Note that `i` cannot be a uint8 since it is incremented to 256 at the end of the loop.
                  for (uint256 i = 0; i < 256; i++) {
                      uint8 signerId = uint8(i);
                      uint256 signerBit = uint256(1) << signerId;
                      address ours = _SLOT_[signerId];
                      address theirs = I_MakerOracle(_ORACLE_).slot(signerId);
                      if (ours == address(0)) {
                          if (theirs != address(0)) {
                              signersToAdd = signersToAdd | signerBit;
                          }
                      } else {
                          if (theirs == address(0)) {
                              signersToRemove = signersToRemove | signerBit;
                          } else if (ours != theirs) {
                              signersToAdd = signersToAdd | signerBit;
                              signersToRemove = signersToRemove | signerBit;
                          }
                      }
                  }
          
                  return (signersToAdd, signersToRemove, barNeedsUpdate);
              }
          
              // ============ State-Changing Functions ============
          
              /**
               * @notice Send an array of signed messages to update the oracle value.
               *  Must have exactly `_BAR_` number of messages.
               */
              function poke(
                  uint256[] calldata val_,
                  uint256[] calldata age_,
                  uint8[] calldata v,
                  bytes32[] calldata r,
                  bytes32[] calldata s
              )
                  external
              {
                  require(val_.length == _BAR_, "P1MirrorOracle#poke: Wrong number of messages");
          
                  // Bitmap of signers, used to ensure that each message has a different signer.
                  uint256 bloom = 0;
          
                  // Last message value, used to ensure messages are ordered by value.
                  uint256 last = 0;
          
                  // Require that all messages are newer than the last oracle update.
                  uint256 zzz = _AGE_;
          
                  for (uint256 i = 0; i < val_.length; i++) {
                      uint256 val_i = val_[i];
                      uint256 age_i = age_[i];
          
                      // Verify that the message comes from an authorized signer.
                      address signer = recover(
                          val_i,
                          age_i,
                          v[i],
                          r[i],
                          s[i]
                      );
                      require(_ORCL_[signer] == 1, "P1MirrorOracle#poke: Invalid signer");
          
                      // Verify that the message is newer than the last oracle update.
                      require(age_i > zzz, "P1MirrorOracle#poke: Stale message");
          
                      // Verify that the messages are ordered by value.
                      require(val_i >= last, "P1MirrorOracle#poke: Message out of order");
                      last = val_i;
          
                      // Verify that each message has a different signer.
                      // Each signer is identified by the first byte of their address.
                      uint8 signerId = getSignerId(signer);
                      uint256 signerBit = uint256(1) << signerId;
                      require(bloom & signerBit == 0, "P1MirrorOracle#poke: Duplicate signer");
                      bloom = bloom | signerBit;
                  }
          
                  // Set the oracle value to the median (note that val_.length is always odd).
                  _VAL_ = uint128(val_[val_.length >> 1]);
          
                  // Set the timestamp of the oracle update.
                  _AGE_ = uint32(block.timestamp);
          
                  emit LogMedianPrice(_VAL_, _AGE_);
              }
          
              /**
               * @notice Authorize new signers. The signers must be authorized on the underlying oracle.
               */
              function lift(
                  address[] calldata signers
              )
                  external
              {
                  for (uint256 i = 0; i < signers.length; i++) {
                      address signer = signers[i];
                      require(
                          I_MakerOracle(_ORACLE_).orcl(signer) == 1,
                          "P1MirrorOracle#lift: Signer not authorized on underlying oracle"
                      );
          
                      // orcl and slot must both be empty.
                      // orcl is filled implies slot is filled, therefore slot is empty implies orcl is empty.
                      // Assume that the underlying oracle ensures that the signer cannot be the zero address.
                      uint8 signerId = getSignerId(signer);
                      require(
                          _SLOT_[signerId] == address(0),
                          "P1MirrorOracle#lift: Signer already authorized"
                      );
          
                      _ORCL_[signer] = 1;
                      _SLOT_[signerId] = signer;
          
                      emit LogSetSigner(signer, true);
                  }
              }
          
              /**
               * @notice Unauthorize signers. The signers must NOT be authorized on the underlying oracle.
               */
              function drop(
                  address[] calldata signers
              )
                  external
              {
                  for (uint256 i = 0; i < signers.length; i++) {
                      address signer = signers[i];
                      require(
                          I_MakerOracle(_ORACLE_).orcl(signer) == 0,
                          "P1MirrorOracle#drop: Signer is authorized on underlying oracle"
                      );
          
                      // orcl and slot must both be filled.
                      // orcl is filled implies slot is filled.
                      require(
                          _ORCL_[signer] != 0,
                          "P1MirrorOracle#drop: Signer is already not authorized"
                      );
          
                      uint8 signerId = getSignerId(signer);
                      _ORCL_[signer] = 0;
                      _SLOT_[signerId] = address(0);
          
                      emit LogSetSigner(signer, false);
                  }
              }
          
              /**
               * @notice Sync `_BAR_` (the number of required signers) with the underyling oracle contract.
               */
              function setBar()
                  external
              {
                  uint256 newBar = I_MakerOracle(_ORACLE_).bar();
                  _BAR_ = newBar;
                  emit LogSetBar(newBar);
              }
          
              /**
               * @notice Authorize an address to read the oracle price.
               */
              function kiss(
                  address reader
              )
                  external
                  onlyOwner
              {
                  _kiss(reader);
              }
          
              /**
               * @notice Unauthorize an address so it can no longer read the oracle price.
               */
              function diss(
                  address reader
              )
                  external
                  onlyOwner
              {
                  _diss(reader);
              }
          
              /**
               * @notice Authorize addresses to read the oracle price.
               */
              function kiss(
                  address[] calldata readers
              )
                  external
                  onlyOwner
              {
                  for (uint256 i = 0; i < readers.length; i++) {
                      _kiss(readers[i]);
                  }
              }
          
              /**
               * @notice Unauthorize addresses so they can no longer read the oracle price.
               */
              function diss(
                  address[] calldata readers
              )
                  external
                  onlyOwner
              {
                  for (uint256 i = 0; i < readers.length; i++) {
                      _diss(readers[i]);
                  }
              }
          
              // ============ Internal Functions ============
          
              function wat()
                  internal
                  pure
                  returns (bytes32);
          
              function recover(
                  uint256 val_,
                  uint256 age_,
                  uint8 v,
                  bytes32 r,
                  bytes32 s
              )
                  internal
                  pure
                  returns (address)
              {
                  return ecrecover(
                      keccak256(
                          abi.encodePacked("\x19Ethereum Signed Message:\n32",
                          keccak256(abi.encodePacked(val_, age_, wat())))
                      ),
                      v,
                      r,
                      s
                  );
              }
          
              function getSignerId(
                  address signer
              )
                  internal
                  pure
                  returns (uint8)
              {
                  return uint8(uint256(signer) >> 152);
              }
          
              function _kiss(
                  address reader
              )
                  private
              {
                  _READERS_[reader] = 1;
                  emit LogSetReader(reader, true);
              }
          
              function _diss(
                  address reader
              )
                  private
              {
                  _READERS_[reader] = 0;
                  emit LogSetReader(reader, false);
              }
          }
          
          // File: contracts/protocol/v1/oracles/P1MirrorOracleETHUSD.sol
          
          /**
           * @title P1MirrorOracleETHUSD
           * @author dYdX
           *
           * Oracle which mirrors the ETHUSD oracle.
           */
          contract P1MirrorOracleETHUSD is
              P1MirrorOracle
          {
              bytes32 public constant WAT = "ETHUSD";
          
              constructor(
                  address oracle
              )
                  P1MirrorOracle(oracle)
                  public
              {
              }
          
              function wat()
                  internal
                  pure
                  returns (bytes32)
              {
                  return WAT;
              }
          }

          File 7 of 7: DoubleExponentInterestSetter
          /**
           *Submitted for verification at Etherscan.io on 2019-08-28
          */
          
          /*
          
              Copyright 2019 dYdX Trading Inc.
          
              Licensed under the Apache License, Version 2.0 (the "License");
              you may not use this file except in compliance with the License.
              You may obtain a copy of the License at
          
              http://www.apache.org/licenses/LICENSE-2.0
          
              Unless required by applicable law or agreed to in writing, software
              distributed under the License is distributed on an "AS IS" BASIS,
              WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
              See the License for the specific language governing permissions and
              limitations under the License.
          
          */
          
          pragma solidity 0.5.7;
          pragma experimental ABIEncoderV2;
          
          // File: openzeppelin-solidity/contracts/math/SafeMath.sol
          
          /**
           * @title SafeMath
           * @dev Unsigned math operations with safety checks that revert on error
           */
          library SafeMath {
              /**
              * @dev Multiplies two unsigned integers, reverts on overflow.
              */
              function mul(uint256 a, uint256 b) internal pure returns (uint256) {
                  // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
                  // benefit is lost if 'b' is also tested.
                  // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
                  if (a == 0) {
                      return 0;
                  }
          
                  uint256 c = a * b;
                  require(c / a == b);
          
                  return c;
              }
          
              /**
              * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
              */
              function div(uint256 a, uint256 b) internal pure returns (uint256) {
                  // Solidity only automatically asserts when dividing by 0
                  require(b > 0);
                  uint256 c = a / b;
                  // assert(a == b * c + a % b); // There is no case in which this doesn't hold
          
                  return c;
              }
          
              /**
              * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
              */
              function sub(uint256 a, uint256 b) internal pure returns (uint256) {
                  require(b <= a);
                  uint256 c = a - b;
          
                  return c;
              }
          
              /**
              * @dev Adds two unsigned integers, reverts on overflow.
              */
              function add(uint256 a, uint256 b) internal pure returns (uint256) {
                  uint256 c = a + b;
                  require(c >= a);
          
                  return c;
              }
          
              /**
              * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
              * reverts when dividing by zero.
              */
              function mod(uint256 a, uint256 b) internal pure returns (uint256) {
                  require(b != 0);
                  return a % b;
              }
          }
          
          // File: contracts/protocol/lib/Require.sol
          
          /**
           * @title Require
           * @author dYdX
           *
           * Stringifies parameters to pretty-print revert messages. Costs more gas than regular require()
           */
          library Require {
          
              // ============ Constants ============
          
              uint256 constant ASCII_ZERO = 48; // '0'
              uint256 constant ASCII_RELATIVE_ZERO = 87; // 'a' - 10
              uint256 constant ASCII_LOWER_EX = 120; // 'x'
              bytes2 constant COLON = 0x3a20; // ': '
              bytes2 constant COMMA = 0x2c20; // ', '
              bytes2 constant LPAREN = 0x203c; // ' <'
              byte constant RPAREN = 0x3e; // '>'
              uint256 constant FOUR_BIT_MASK = 0xf;
          
              // ============ Library Functions ============
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason)
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  uint256 payloadA
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  uint256 payloadA,
                  uint256 payloadB
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  COMMA,
                                  stringify(payloadB),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  address payloadA
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  address payloadA,
                  uint256 payloadB
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  COMMA,
                                  stringify(payloadB),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              function that(
                  bool must,
                  bytes32 file,
                  bytes32 reason,
                  address payloadA,
                  uint256 payloadB,
                  uint256 payloadC
              )
                  internal
                  pure
              {
                  if (!must) {
                      revert(
                          string(
                              abi.encodePacked(
                                  stringify(file),
                                  COLON,
                                  stringify(reason),
                                  LPAREN,
                                  stringify(payloadA),
                                  COMMA,
                                  stringify(payloadB),
                                  COMMA,
                                  stringify(payloadC),
                                  RPAREN
                              )
                          )
                      );
                  }
              }
          
              // ============ Private Functions ============
          
              function stringify(
                  bytes32 input
              )
                  private
                  pure
                  returns (bytes memory)
              {
                  // put the input bytes into the result
                  bytes memory result = abi.encodePacked(input);
          
                  // determine the length of the input by finding the location of the last non-zero byte
                  for (uint256 i = 32; i > 0; ) {
                      // reverse-for-loops with unsigned integer
                      /* solium-disable-next-line security/no-modify-for-iter-var */
                      i--;
          
                      // find the last non-zero byte in order to determine the length
                      if (result[i] != 0) {
                          uint256 length = i + 1;
          
                          /* solium-disable-next-line security/no-inline-assembly */
                          assembly {
                              mstore(result, length) // r.length = length;
                          }
          
                          return result;
                      }
                  }
          
                  // all bytes are zero
                  return new bytes(0);
              }
          
              function stringify(
                  uint256 input
              )
                  private
                  pure
                  returns (bytes memory)
              {
                  if (input == 0) {
                      return "0";
                  }
          
                  // get the final string length
                  uint256 j = input;
                  uint256 length;
                  while (j != 0) {
                      length++;
                      j /= 10;
                  }
          
                  // allocate the string
                  bytes memory bstr = new bytes(length);
          
                  // populate the string starting with the least-significant character
                  j = input;
                  for (uint256 i = length; i > 0; ) {
                      // reverse-for-loops with unsigned integer
                      /* solium-disable-next-line security/no-modify-for-iter-var */
                      i--;
          
                      // take last decimal digit
                      bstr[i] = byte(uint8(ASCII_ZERO + (j % 10)));
          
                      // remove the last decimal digit
                      j /= 10;
                  }
          
                  return bstr;
              }
          
              function stringify(
                  address input
              )
                  private
                  pure
                  returns (bytes memory)
              {
                  uint256 z = uint256(input);
          
                  // addresses are "0x" followed by 20 bytes of data which take up 2 characters each
                  bytes memory result = new bytes(42);
          
                  // populate the result with "0x"
                  result[0] = byte(uint8(ASCII_ZERO));
                  result[1] = byte(uint8(ASCII_LOWER_EX));
          
                  // for each byte (starting from the lowest byte), populate the result with two characters
                  for (uint256 i = 0; i < 20; i++) {
                      // each byte takes two characters
                      uint256 shift = i * 2;
          
                      // populate the least-significant character
                      result[41 - shift] = char(z & FOUR_BIT_MASK);
                      z = z >> 4;
          
                      // populate the most-significant character
                      result[40 - shift] = char(z & FOUR_BIT_MASK);
                      z = z >> 4;
                  }
          
                  return result;
              }
          
              function char(
                  uint256 input
              )
                  private
                  pure
                  returns (byte)
              {
                  // return ASCII digit (0-9)
                  if (input < 10) {
                      return byte(uint8(input + ASCII_ZERO));
                  }
          
                  // return ASCII letter (a-f)
                  return byte(uint8(input + ASCII_RELATIVE_ZERO));
              }
          }
          
          // File: contracts/protocol/lib/Math.sol
          
          /**
           * @title Math
           * @author dYdX
           *
           * Library for non-standard Math functions
           */
          library Math {
              using SafeMath for uint256;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Math";
          
              // ============ Library Functions ============
          
              /*
               * Return target * (numerator / denominator).
               */
              function getPartial(
                  uint256 target,
                  uint256 numerator,
                  uint256 denominator
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return target.mul(numerator).div(denominator);
              }
          
              /*
               * Return target * (numerator / denominator), but rounded up.
               */
              function getPartialRoundUp(
                  uint256 target,
                  uint256 numerator,
                  uint256 denominator
              )
                  internal
                  pure
                  returns (uint256)
              {
                  if (target == 0 || numerator == 0) {
                      // SafeMath will check for zero denominator
                      return SafeMath.div(0, denominator);
                  }
                  return target.mul(numerator).sub(1).div(denominator).add(1);
              }
          
              function to128(
                  uint256 number
              )
                  internal
                  pure
                  returns (uint128)
              {
                  uint128 result = uint128(number);
                  Require.that(
                      result == number,
                      FILE,
                      "Unsafe cast to uint128"
                  );
                  return result;
              }
          
              function to96(
                  uint256 number
              )
                  internal
                  pure
                  returns (uint96)
              {
                  uint96 result = uint96(number);
                  Require.that(
                      result == number,
                      FILE,
                      "Unsafe cast to uint96"
                  );
                  return result;
              }
          
              function to32(
                  uint256 number
              )
                  internal
                  pure
                  returns (uint32)
              {
                  uint32 result = uint32(number);
                  Require.that(
                      result == number,
                      FILE,
                      "Unsafe cast to uint32"
                  );
                  return result;
              }
          
              function min(
                  uint256 a,
                  uint256 b
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return a < b ? a : b;
              }
          
              function max(
                  uint256 a,
                  uint256 b
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return a > b ? a : b;
              }
          }
          
          // File: contracts/protocol/lib/Decimal.sol
          
          /**
           * @title Decimal
           * @author dYdX
           *
           * Library that defines a fixed-point number with 18 decimal places.
           */
          library Decimal {
              using SafeMath for uint256;
          
              // ============ Constants ============
          
              uint256 constant BASE = 10**18;
          
              // ============ Structs ============
          
              struct D256 {
                  uint256 value;
              }
          
              // ============ Functions ============
          
              function one()
                  internal
                  pure
                  returns (D256 memory)
              {
                  return D256({ value: BASE });
              }
          
              function onePlus(
                  D256 memory d
              )
                  internal
                  pure
                  returns (D256 memory)
              {
                  return D256({ value: d.value.add(BASE) });
              }
          
              function mul(
                  uint256 target,
                  D256 memory d
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return Math.getPartial(target, d.value, BASE);
              }
          
              function div(
                  uint256 target,
                  D256 memory d
              )
                  internal
                  pure
                  returns (uint256)
              {
                  return Math.getPartial(target, BASE, d.value);
              }
          }
          
          // File: contracts/protocol/lib/Time.sol
          
          /**
           * @title Time
           * @author dYdX
           *
           * Library for dealing with time, assuming timestamps fit within 32 bits (valid until year 2106)
           */
          library Time {
          
              // ============ Library Functions ============
          
              function currentTime()
                  internal
                  view
                  returns (uint32)
              {
                  return Math.to32(block.timestamp);
              }
          }
          
          // File: contracts/protocol/lib/Types.sol
          
          /**
           * @title Types
           * @author dYdX
           *
           * Library for interacting with the basic structs used in Solo
           */
          library Types {
              using Math for uint256;
          
              // ============ AssetAmount ============
          
              enum AssetDenomination {
                  Wei, // the amount is denominated in wei
                  Par  // the amount is denominated in par
              }
          
              enum AssetReference {
                  Delta, // the amount is given as a delta from the current value
                  Target // the amount is given as an exact number to end up at
              }
          
              struct AssetAmount {
                  bool sign; // true if positive
                  AssetDenomination denomination;
                  AssetReference ref;
                  uint256 value;
              }
          
              // ============ Par (Principal Amount) ============
          
              // Total borrow and supply values for a market
              struct TotalPar {
                  uint128 borrow;
                  uint128 supply;
              }
          
              // Individual principal amount for an account
              struct Par {
                  bool sign; // true if positive
                  uint128 value;
              }
          
              function zeroPar()
                  internal
                  pure
                  returns (Par memory)
              {
                  return Par({
                      sign: false,
                      value: 0
                  });
              }
          
              function sub(
                  Par memory a,
                  Par memory b
              )
                  internal
                  pure
                  returns (Par memory)
              {
                  return add(a, negative(b));
              }
          
              function add(
                  Par memory a,
                  Par memory b
              )
                  internal
                  pure
                  returns (Par memory)
              {
                  Par memory result;
                  if (a.sign == b.sign) {
                      result.sign = a.sign;
                      result.value = SafeMath.add(a.value, b.value).to128();
                  } else {
                      if (a.value >= b.value) {
                          result.sign = a.sign;
                          result.value = SafeMath.sub(a.value, b.value).to128();
                      } else {
                          result.sign = b.sign;
                          result.value = SafeMath.sub(b.value, a.value).to128();
                      }
                  }
                  return result;
              }
          
              function equals(
                  Par memory a,
                  Par memory b
              )
                  internal
                  pure
                  returns (bool)
              {
                  if (a.value == b.value) {
                      if (a.value == 0) {
                          return true;
                      }
                      return a.sign == b.sign;
                  }
                  return false;
              }
          
              function negative(
                  Par memory a
              )
                  internal
                  pure
                  returns (Par memory)
              {
                  return Par({
                      sign: !a.sign,
                      value: a.value
                  });
              }
          
              function isNegative(
                  Par memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return !a.sign && a.value > 0;
              }
          
              function isPositive(
                  Par memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.sign && a.value > 0;
              }
          
              function isZero(
                  Par memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.value == 0;
              }
          
              // ============ Wei (Token Amount) ============
          
              // Individual token amount for an account
              struct Wei {
                  bool sign; // true if positive
                  uint256 value;
              }
          
              function zeroWei()
                  internal
                  pure
                  returns (Wei memory)
              {
                  return Wei({
                      sign: false,
                      value: 0
                  });
              }
          
              function sub(
                  Wei memory a,
                  Wei memory b
              )
                  internal
                  pure
                  returns (Wei memory)
              {
                  return add(a, negative(b));
              }
          
              function add(
                  Wei memory a,
                  Wei memory b
              )
                  internal
                  pure
                  returns (Wei memory)
              {
                  Wei memory result;
                  if (a.sign == b.sign) {
                      result.sign = a.sign;
                      result.value = SafeMath.add(a.value, b.value);
                  } else {
                      if (a.value >= b.value) {
                          result.sign = a.sign;
                          result.value = SafeMath.sub(a.value, b.value);
                      } else {
                          result.sign = b.sign;
                          result.value = SafeMath.sub(b.value, a.value);
                      }
                  }
                  return result;
              }
          
              function equals(
                  Wei memory a,
                  Wei memory b
              )
                  internal
                  pure
                  returns (bool)
              {
                  if (a.value == b.value) {
                      if (a.value == 0) {
                          return true;
                      }
                      return a.sign == b.sign;
                  }
                  return false;
              }
          
              function negative(
                  Wei memory a
              )
                  internal
                  pure
                  returns (Wei memory)
              {
                  return Wei({
                      sign: !a.sign,
                      value: a.value
                  });
              }
          
              function isNegative(
                  Wei memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return !a.sign && a.value > 0;
              }
          
              function isPositive(
                  Wei memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.sign && a.value > 0;
              }
          
              function isZero(
                  Wei memory a
              )
                  internal
                  pure
                  returns (bool)
              {
                  return a.value == 0;
              }
          }
          
          // File: contracts/protocol/lib/Interest.sol
          
          /**
           * @title Interest
           * @author dYdX
           *
           * Library for managing the interest rate and interest indexes of Solo
           */
          library Interest {
              using Math for uint256;
              using SafeMath for uint256;
          
              // ============ Constants ============
          
              bytes32 constant FILE = "Interest";
              uint64 constant BASE = 10**18;
          
              // ============ Structs ============
          
              struct Rate {
                  uint256 value;
              }
          
              struct Index {
                  uint96 borrow;
                  uint96 supply;
                  uint32 lastUpdate;
              }
          
              // ============ Library Functions ============
          
              /**
               * Get a new market Index based on the old index and market interest rate.
               * Calculate interest for borrowers by using the formula rate * time. Approximates
               * continuously-compounded interest when called frequently, but is much more
               * gas-efficient to calculate. For suppliers, the interest rate is adjusted by the earningsRate,
               * then prorated the across all suppliers.
               *
               * @param  index         The old index for a market
               * @param  rate          The current interest rate of the market
               * @param  totalPar      The total supply and borrow par values of the market
               * @param  earningsRate  The portion of the interest that is forwarded to the suppliers
               * @return               The updated index for a market
               */
              function calculateNewIndex(
                  Index memory index,
                  Rate memory rate,
                  Types.TotalPar memory totalPar,
                  Decimal.D256 memory earningsRate
              )
                  internal
                  view
                  returns (Index memory)
              {
                  (
                      Types.Wei memory supplyWei,
                      Types.Wei memory borrowWei
                  ) = totalParToWei(totalPar, index);
          
                  // get interest increase for borrowers
                  uint32 currentTime = Time.currentTime();
                  uint256 borrowInterest = rate.value.mul(uint256(currentTime).sub(index.lastUpdate));
          
                  // get interest increase for suppliers
                  uint256 supplyInterest;
                  if (Types.isZero(supplyWei)) {
                      supplyInterest = 0;
                  } else {
                      supplyInterest = Decimal.mul(borrowInterest, earningsRate);
                      if (borrowWei.value < supplyWei.value) {
                          supplyInterest = Math.getPartial(supplyInterest, borrowWei.value, supplyWei.value);
                      }
                  }
                  assert(supplyInterest <= borrowInterest);
          
                  return Index({
                      borrow: Math.getPartial(index.borrow, borrowInterest, BASE).add(index.borrow).to96(),
                      supply: Math.getPartial(index.supply, supplyInterest, BASE).add(index.supply).to96(),
                      lastUpdate: currentTime
                  });
              }
          
              function newIndex()
                  internal
                  view
                  returns (Index memory)
              {
                  return Index({
                      borrow: BASE,
                      supply: BASE,
                      lastUpdate: Time.currentTime()
                  });
              }
          
              /*
               * Convert a principal amount to a token amount given an index.
               */
              function parToWei(
                  Types.Par memory input,
                  Index memory index
              )
                  internal
                  pure
                  returns (Types.Wei memory)
              {
                  uint256 inputValue = uint256(input.value);
                  if (input.sign) {
                      return Types.Wei({
                          sign: true,
                          value: inputValue.getPartial(index.supply, BASE)
                      });
                  } else {
                      return Types.Wei({
                          sign: false,
                          value: inputValue.getPartialRoundUp(index.borrow, BASE)
                      });
                  }
              }
          
              /*
               * Convert a token amount to a principal amount given an index.
               */
              function weiToPar(
                  Types.Wei memory input,
                  Index memory index
              )
                  internal
                  pure
                  returns (Types.Par memory)
              {
                  if (input.sign) {
                      return Types.Par({
                          sign: true,
                          value: input.value.getPartial(BASE, index.supply).to128()
                      });
                  } else {
                      return Types.Par({
                          sign: false,
                          value: input.value.getPartialRoundUp(BASE, index.borrow).to128()
                      });
                  }
              }
          
              /*
               * Convert the total supply and borrow principal amounts of a market to total supply and borrow
               * token amounts.
               */
              function totalParToWei(
                  Types.TotalPar memory totalPar,
                  Index memory index
              )
                  internal
                  pure
                  returns (Types.Wei memory, Types.Wei memory)
              {
                  Types.Par memory supplyPar = Types.Par({
                      sign: true,
                      value: totalPar.supply
                  });
                  Types.Par memory borrowPar = Types.Par({
                      sign: false,
                      value: totalPar.borrow
                  });
                  Types.Wei memory supplyWei = parToWei(supplyPar, index);
                  Types.Wei memory borrowWei = parToWei(borrowPar, index);
                  return (supplyWei, borrowWei);
              }
          }
          
          // File: contracts/protocol/interfaces/IInterestSetter.sol
          
          /**
           * @title IInterestSetter
           * @author dYdX
           *
           * Interface that Interest Setters for Solo must implement in order to report interest rates.
           */
          interface IInterestSetter {
          
              // ============ Public Functions ============
          
              /**
               * Get the interest rate of a token given some borrowed and supplied amounts
               *
               * @param  token        The address of the ERC20 token for the market
               * @param  borrowWei    The total borrowed token amount for the market
               * @param  supplyWei    The total supplied token amount for the market
               * @return              The interest rate per second
               */
              function getInterestRate(
                  address token,
                  uint256 borrowWei,
                  uint256 supplyWei
              )
                  external
                  view
                  returns (Interest.Rate memory);
          }
          
          // File: contracts/external/interestsetters/DoubleExponentInterestSetter.sol
          
          /**
           * @title DoubleExponentInterestSetter
           * @author dYdX
           *
           * Interest setter that sets interest based on a polynomial of the usage percentage of the market.
           * Interest = C_0 + C_1 * U^(2^0) + C_2 * U^(2^1) + C_3 * U^(2^2) ...
           */
          contract DoubleExponentInterestSetter is
              IInterestSetter
          {
              using Math for uint256;
              using SafeMath for uint256;
          
              // ============ Constants ============
          
              uint256 constant PERCENT = 100;
          
              uint256 constant BASE = 10 ** 18;
          
              uint256 constant SECONDS_IN_A_YEAR = 60 * 60 * 24 * 365;
          
              uint256 constant BYTE = 8;
          
              // ============ Structs ============
          
              struct PolyStorage {
                  uint128 maxAPR;
                  uint128 coefficients;
              }
          
              // ============ Storage ============
          
              PolyStorage g_storage;
          
              // ============ Constructor ============
          
              constructor(
                  PolyStorage memory params
              )
                  public
              {
                  // verify that all coefficients add up to 100%
                  uint256 sumOfCoefficients = 0;
                  for (
                      uint256 coefficients = params.coefficients;
                      coefficients != 0;
                      coefficients >>= BYTE
                  ) {
                      sumOfCoefficients += coefficients % 256;
                  }
                  require(
                      sumOfCoefficients == PERCENT,
                      "Coefficients must sum to 100"
                  );
          
                  // store the params
                  g_storage = params;
              }
          
              // ============ Public Functions ============
          
              /**
               * Get the interest rate given some borrowed and supplied amounts. The interest function is a
               * polynomial function of the utilization (borrowWei / supplyWei) of the market.
               *
               *   - If borrowWei > supplyWei then the utilization is considered to be equal to 1.
               *   - If both are zero, then the utilization is considered to be equal to 0.
               *
               * @return The interest rate per second (times 10 ** 18)
               */
              function getInterestRate(
                  address /* token */,
                  uint256 borrowWei,
                  uint256 supplyWei
              )
                  external
                  view
                  returns (Interest.Rate memory)
              {
                  if (borrowWei == 0) {
                      return Interest.Rate({
                          value: 0
                      });
                  }
          
                  PolyStorage memory s = g_storage;
                  uint256 maxAPR = s.maxAPR;
          
                  if (borrowWei >= supplyWei) {
                      return Interest.Rate({
                          value: maxAPR / SECONDS_IN_A_YEAR
                      });
                  }
          
                  // process the first coefficient
                  uint256 coefficients = s.coefficients;
                  uint256 result = uint8(coefficients) * BASE;
                  coefficients >>= BYTE;
          
                  // initialize polynomial as the utilization
                  // no safeDiv since supplyWei must be non-zero at this point
                  uint256 polynomial = BASE.mul(borrowWei) / supplyWei;
          
                  // for each non-zero coefficient...
                  while (true) {
                      // gets the lowest-order byte
                      uint256 coefficient = uint256(uint8(coefficients));
          
                      // if non-zero, add to result
                      if (coefficient != 0) {
                          // no safeAdd since there are at most 16 coefficients
                          // no safeMul since (coefficient < 256 && polynomial <= 10**18)
                          result += coefficient * polynomial;
          
                          // break if this is the last non-zero coefficient
                          if (coefficient == coefficients) {
                              break;
                          }
                      }
          
                      // double the order of the polynomial term
                      // no safeMul since polynomial <= 10^18
                      // no safeDiv since the divisor is a non-zero constant
                      polynomial = polynomial * polynomial / BASE;
          
                      // move to next coefficient
                      coefficients >>= BYTE;
                  }
          
                  // normalize the result
                  // no safeMul since result fits within 72 bits and maxAPR fits within 128 bits
                  // no safeDiv since the divisor is a non-zero constant
                  return Interest.Rate({
                      value: result * maxAPR / (SECONDS_IN_A_YEAR * BASE * PERCENT)
                  });
              }
          
              /**
               * Get the maximum APR that this interestSetter will return. The actual APY may be higher
               * depending on how often the interest is compounded.
               *
               * @return The maximum APR
               */
              function getMaxAPR()
                  external
                  view
                  returns (uint256)
              {
                  return g_storage.maxAPR;
              }
          
              /**
               * Get all of the coefficients of the interest calculation, starting from the coefficient for
               * the first-order utilization variable.
               *
               * @return The coefficients
               */
              function getCoefficients()
                  external
                  view
                  returns (uint256[] memory)
              {
                  // allocate new array with maximum of 16 coefficients
                  uint256[] memory result = new uint256[](16);
          
                  // add the coefficients to the array
                  uint256 numCoefficients = 0;
                  for (
                      uint256 coefficients = g_storage.coefficients;
                      coefficients != 0;
                      coefficients >>= BYTE
                  ) {
                      result[numCoefficients] = coefficients % 256;
                      numCoefficients++;
                  }
          
                  // modify result.length to match numCoefficients
                  /* solium-disable-next-line security/no-inline-assembly */
                  assembly {
                      mstore(result, numCoefficients)
                  }
          
                  return result;
              }
          }