ETH Price: $2,426.48 (-1.45%)

Transaction Decoder

Block:
16205268 at Dec-17-2022 03:19:35 PM +UTC
Transaction Fee:
0.00129248687069968 ETH $3.14
Gas Used:
86,521 Gas / 14.93841808 Gwei

Emitted Events:

233 sOlympus.Approval( owner=[Sender] 0x874df42cbd68abcb772730b5ceebf04e1fa5f2ae, spender=[Receiver] OlympusStaking, value=115792089237316195423570985008687907853269984665640564039457584007889669639935 )
234 sOlympus.Transfer( from=[Sender] 0x874df42cbd68abcb772730b5ceebf04e1fa5f2ae, to=[Receiver] OlympusStaking, value=23460000000 )
235 OlympusERC20Token.Transfer( from=[Receiver] OlympusStaking, to=[Sender] 0x874df42cbd68abcb772730b5ceebf04e1fa5f2ae, value=23460000000 )

Account State Difference:

  Address   Before After State Difference Code
0x04906695...6E4Ccd460
0x64aa3364...3D7e7f1D5
0x874DF42c...E1Fa5F2ae
0.008273130891701205 Eth
Nonce: 158
0.006980644021001525 Eth
Nonce: 159
0.00129248687069968
0.025721906346060905 Eth0.025851687846060905 Eth0.0001297815

Execution Trace

OlympusStaking.unstake( _to=0x874DF42cbD68ABCB772730b5cEebF04E1Fa5F2ae, _amount=23460000000, _trigger=False, _rebasing=True ) => ( amount_=23460000000 )
  • sOlympus.transferFrom( from=0x874DF42cbD68ABCB772730b5cEebF04E1Fa5F2ae, to=0xB63cac384247597756545b500253ff8E607a8020, value=23460000000 ) => ( True )
  • OlympusERC20Token.balanceOf( account=0xB63cac384247597756545b500253ff8E607a8020 ) => ( 20079096383145183 )
  • OlympusERC20Token.transfer( recipient=0x874DF42cbD68ABCB772730b5cEebF04E1Fa5F2ae, amount=23460000000 ) => ( True )
    File 1 of 3: OlympusStaking
    // SPDX-License-Identifier: AGPL-3.0-or-later
    
    // File: interfaces/IOlympusAuthority.sol
    
    
    pragma solidity =0.7.5;
    
    interface IOlympusAuthority {
        /* ========== EVENTS ========== */
        
        event GovernorPushed(address indexed from, address indexed to, bool _effectiveImmediately);
        event GuardianPushed(address indexed from, address indexed to, bool _effectiveImmediately);    
        event PolicyPushed(address indexed from, address indexed to, bool _effectiveImmediately);    
        event VaultPushed(address indexed from, address indexed to, bool _effectiveImmediately);    
    
        event GovernorPulled(address indexed from, address indexed to);
        event GuardianPulled(address indexed from, address indexed to);
        event PolicyPulled(address indexed from, address indexed to);
        event VaultPulled(address indexed from, address indexed to);
    
        /* ========== VIEW ========== */
        
        function governor() external view returns (address);
        function guardian() external view returns (address);
        function policy() external view returns (address);
        function vault() external view returns (address);
    }
    // File: types/OlympusAccessControlled.sol
    
    
    pragma solidity >=0.7.5;
    
    
    abstract contract OlympusAccessControlled {
    
        /* ========== EVENTS ========== */
    
        event AuthorityUpdated(IOlympusAuthority indexed authority);
    
        string UNAUTHORIZED = "UNAUTHORIZED"; // save gas
    
        /* ========== STATE VARIABLES ========== */
    
        IOlympusAuthority public authority;
    
    
        /* ========== Constructor ========== */
    
        constructor(IOlympusAuthority _authority) {
            authority = _authority;
            emit AuthorityUpdated(_authority);
        }
        
    
        /* ========== MODIFIERS ========== */
        
        modifier onlyGovernor() {
            require(msg.sender == authority.governor(), UNAUTHORIZED);
            _;
        }
        
        modifier onlyGuardian() {
            require(msg.sender == authority.guardian(), UNAUTHORIZED);
            _;
        }
        
        modifier onlyPolicy() {
            require(msg.sender == authority.policy(), UNAUTHORIZED);
            _;
        }
    
        modifier onlyVault() {
            require(msg.sender == authority.vault(), UNAUTHORIZED);
            _;
        }
        
        /* ========== GOV ONLY ========== */
        
        function setAuthority(IOlympusAuthority _newAuthority) external onlyGovernor {
            authority = _newAuthority;
            emit AuthorityUpdated(_newAuthority);
        }
    }
    
    // File: interfaces/IDistributor.sol
    
    
    pragma solidity >=0.7.5;
    
    interface IDistributor {
        function distribute() external;
    
        function bounty() external view returns (uint256);
    
        function retrieveBounty() external returns (uint256);
    
        function nextRewardAt(uint256 _rate) external view returns (uint256);
    
        function nextRewardFor(address _recipient) external view returns (uint256);
    
        function setBounty(uint256 _bounty) external;
    
        function addRecipient(address _recipient, uint256 _rewardRate) external;
    
        function removeRecipient(uint256 _index) external;
    
        function setAdjustment(
            uint256 _index,
            bool _add,
            uint256 _rate,
            uint256 _target
        ) external;
    }
    
    // File: interfaces/IERC20.sol
    
    
    pragma solidity >=0.7.5;
    
    interface IERC20 {
      /**
       * @dev Returns the amount of tokens in existence.
       */
      function totalSupply() external view returns (uint256);
    
      /**
       * @dev Returns the amount of tokens owned by `account`.
       */
      function balanceOf(address account) external view returns (uint256);
    
      /**
       * @dev Moves `amount` tokens from the caller's account to `recipient`.
       *
       * Returns a boolean value indicating whether the operation succeeded.
       *
       * Emits a {Transfer} event.
       */
      function transfer(address recipient, uint256 amount) external returns (bool);
    
      /**
       * @dev Returns the remaining number of tokens that `spender` will be
       * allowed to spend on behalf of `owner` through {transferFrom}. This is
       * zero by default.
       *
       * This value changes when {approve} or {transferFrom} are called.
       */
      function allowance(address owner, address spender) external view returns (uint256);
    
      /**
       * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
       *
       * Returns a boolean value indicating whether the operation succeeded.
       *
       * IMPORTANT: Beware that changing an allowance with this method brings the risk
       * that someone may use both the old and the new allowance by unfortunate
       * transaction ordering. One possible solution to mitigate this race
       * condition is to first reduce the spender's allowance to 0 and set the
       * desired value afterwards:
       * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
       *
       * Emits an {Approval} event.
       */
      function approve(address spender, uint256 amount) external returns (bool);
    
      /**
       * @dev Moves `amount` tokens from `sender` to `recipient` using the
       * allowance mechanism. `amount` is then deducted from the caller's
       * allowance.
       *
       * Returns a boolean value indicating whether the operation succeeded.
       *
       * Emits a {Transfer} event.
       */
      function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    
      /**
       * @dev Emitted when `value` tokens are moved from one account (`from`) to
       * another (`to`).
       *
       * Note that `value` may be zero.
       */
      event Transfer(address indexed from, address indexed to, uint256 value);
    
      /**
       * @dev Emitted when the allowance of a `spender` for an `owner` is set by
       * a call to {approve}. `value` is the new allowance.
       */
      event Approval(address indexed owner, address indexed spender, uint256 value);
    }
    
    // File: interfaces/IgOHM.sol
    
    
    pragma solidity >=0.7.5;
    
    
    interface IgOHM is IERC20 {
      function mint(address _to, uint256 _amount) external;
    
      function burn(address _from, uint256 _amount) external;
    
      function index() external view returns (uint256);
    
      function balanceFrom(uint256 _amount) external view returns (uint256);
    
      function balanceTo(uint256 _amount) external view returns (uint256);
    
      function migrate( address _staking, address _sOHM ) external;
    }
    
    // File: interfaces/IsOHM.sol
    
    
    pragma solidity >=0.7.5;
    
    
    interface IsOHM is IERC20 {
        function rebase( uint256 ohmProfit_, uint epoch_) external returns (uint256);
    
        function circulatingSupply() external view returns (uint256);
    
        function gonsForBalance( uint amount ) external view returns ( uint );
    
        function balanceForGons( uint gons ) external view returns ( uint );
    
        function index() external view returns ( uint );
    
        function toG(uint amount) external view returns (uint);
    
        function fromG(uint amount) external view returns (uint);
    
         function changeDebt(
            uint256 amount,
            address debtor,
            bool add
        ) external;
    
        function debtBalances(address _address) external view returns (uint256);
    
    }
    
    // File: libraries/SafeERC20.sol
    
    
    pragma solidity >=0.7.5;
    
    
    /// @notice Safe IERC20 and ETH transfer library that safely handles missing return values.
    /// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v3-periphery/blob/main/contracts/libraries/TransferHelper.sol)
    /// Taken from Solmate
    library SafeERC20 {
        function safeTransferFrom(
            IERC20 token,
            address from,
            address to,
            uint256 amount
        ) internal {
            (bool success, bytes memory data) = address(token).call(
                abi.encodeWithSelector(IERC20.transferFrom.selector, from, to, amount)
            );
    
            require(success && (data.length == 0 || abi.decode(data, (bool))), "TRANSFER_FROM_FAILED");
        }
    
        function safeTransfer(
            IERC20 token,
            address to,
            uint256 amount
        ) internal {
            (bool success, bytes memory data) = address(token).call(
                abi.encodeWithSelector(IERC20.transfer.selector, to, amount)
            );
    
            require(success && (data.length == 0 || abi.decode(data, (bool))), "TRANSFER_FAILED");
        }
    
        function safeApprove(
            IERC20 token,
            address to,
            uint256 amount
        ) internal {
            (bool success, bytes memory data) = address(token).call(
                abi.encodeWithSelector(IERC20.approve.selector, to, amount)
            );
    
            require(success && (data.length == 0 || abi.decode(data, (bool))), "APPROVE_FAILED");
        }
    
        function safeTransferETH(address to, uint256 amount) internal {
            (bool success, ) = to.call{value: amount}(new bytes(0));
    
            require(success, "ETH_TRANSFER_FAILED");
        }
    }
    // File: libraries/SafeMath.sol
    
    
    pragma solidity ^0.7.5;
    
    
    // TODO(zx): Replace all instances of SafeMath with OZ implementation
    library SafeMath {
    
        function add(uint256 a, uint256 b) internal pure returns (uint256) {
            uint256 c = a + b;
            require(c >= a, "SafeMath: addition overflow");
    
            return c;
        }
    
        function sub(uint256 a, uint256 b) internal pure returns (uint256) {
            return sub(a, b, "SafeMath: subtraction overflow");
        }
    
        function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
            require(b <= a, errorMessage);
            uint256 c = a - b;
    
            return c;
        }
    
        function mul(uint256 a, uint256 b) internal pure returns (uint256) {
            if (a == 0) {
                return 0;
            }
    
            uint256 c = a * b;
            require(c / a == b, "SafeMath: multiplication overflow");
    
            return c;
        }
    
        function div(uint256 a, uint256 b) internal pure returns (uint256) {
            return div(a, b, "SafeMath: division by zero");
        }
    
        function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
            require(b > 0, errorMessage);
            uint256 c = a / b;
            assert(a == b * c + a % b); // There is no case in which this doesn't hold
    
            return c;
        }
    
        // Only used in the  BondingCalculator.sol
        function sqrrt(uint256 a) internal pure returns (uint c) {
            if (a > 3) {
                c = a;
                uint b = add( div( a, 2), 1 );
                while (b < c) {
                    c = b;
                    b = div( add( div( a, b ), b), 2 );
                }
            } else if (a != 0) {
                c = 1;
            }
        }
    
    }
    // File: Staking.sol
    
    
    pragma solidity ^0.7.5;
    
    
    
    
    
    
    
    
    contract OlympusStaking is OlympusAccessControlled {
        /* ========== DEPENDENCIES ========== */
    
        using SafeMath for uint256;
        using SafeERC20 for IERC20;
        using SafeERC20 for IsOHM;
        using SafeERC20 for IgOHM;
    
        /* ========== EVENTS ========== */
    
        event DistributorSet(address distributor);
        event WarmupSet(uint256 warmup);
    
        /* ========== DATA STRUCTURES ========== */
    
        struct Epoch {
            uint256 length; // in seconds
            uint256 number; // since inception
            uint256 end; // timestamp
            uint256 distribute; // amount
        }
    
        struct Claim {
            uint256 deposit; // if forfeiting
            uint256 gons; // staked balance
            uint256 expiry; // end of warmup period
            bool lock; // prevents malicious delays for claim
        }
    
        /* ========== STATE VARIABLES ========== */
    
        IERC20 public immutable OHM;
        IsOHM public immutable sOHM;
        IgOHM public immutable gOHM;
    
        Epoch public epoch;
    
        IDistributor public distributor;
    
        mapping(address => Claim) public warmupInfo;
        uint256 public warmupPeriod;
        uint256 private gonsInWarmup;
    
        /* ========== CONSTRUCTOR ========== */
    
        constructor(
            address _ohm,
            address _sOHM,
            address _gOHM,
            uint256 _epochLength,
            uint256 _firstEpochNumber,
            uint256 _firstEpochTime,
            address _authority
        ) OlympusAccessControlled(IOlympusAuthority(_authority)) {
            require(_ohm != address(0), "Zero address: OHM");
            OHM = IERC20(_ohm);
            require(_sOHM != address(0), "Zero address: sOHM");
            sOHM = IsOHM(_sOHM);
            require(_gOHM != address(0), "Zero address: gOHM");
            gOHM = IgOHM(_gOHM);
    
            epoch = Epoch({length: _epochLength, number: _firstEpochNumber, end: _firstEpochTime, distribute: 0});
        }
    
        /* ========== MUTATIVE FUNCTIONS ========== */
    
        /**
         * @notice stake OHM to enter warmup
         * @param _to address
         * @param _amount uint
         * @param _claim bool
         * @param _rebasing bool
         * @return uint
         */
        function stake(
            address _to,
            uint256 _amount,
            bool _rebasing,
            bool _claim
        ) external returns (uint256) {
            OHM.safeTransferFrom(msg.sender, address(this), _amount);
            _amount = _amount.add(rebase()); // add bounty if rebase occurred
            if (_claim && warmupPeriod == 0) {
                return _send(_to, _amount, _rebasing);
            } else {
                Claim memory info = warmupInfo[_to];
                if (!info.lock) {
                    require(_to == msg.sender, "External deposits for account are locked");
                }
    
                warmupInfo[_to] = Claim({
                    deposit: info.deposit.add(_amount),
                    gons: info.gons.add(sOHM.gonsForBalance(_amount)),
                    expiry: epoch.number.add(warmupPeriod),
                    lock: info.lock
                });
    
                gonsInWarmup = gonsInWarmup.add(sOHM.gonsForBalance(_amount));
    
                return _amount;
            }
        }
    
        /**
         * @notice retrieve stake from warmup
         * @param _to address
         * @param _rebasing bool
         * @return uint
         */
        function claim(address _to, bool _rebasing) public returns (uint256) {
            Claim memory info = warmupInfo[_to];
    
            if (!info.lock) {
                require(_to == msg.sender, "External claims for account are locked");
            }
    
            if (epoch.number >= info.expiry && info.expiry != 0) {
                delete warmupInfo[_to];
    
                gonsInWarmup = gonsInWarmup.sub(info.gons);
    
                return _send(_to, sOHM.balanceForGons(info.gons), _rebasing);
            }
            return 0;
        }
    
        /**
         * @notice forfeit stake and retrieve OHM
         * @return uint
         */
        function forfeit() external returns (uint256) {
            Claim memory info = warmupInfo[msg.sender];
            delete warmupInfo[msg.sender];
    
            gonsInWarmup = gonsInWarmup.sub(info.gons);
    
            OHM.safeTransfer(msg.sender, info.deposit);
    
            return info.deposit;
        }
    
        /**
         * @notice prevent new deposits or claims from ext. address (protection from malicious activity)
         */
        function toggleLock() external {
            warmupInfo[msg.sender].lock = !warmupInfo[msg.sender].lock;
        }
    
        /**
         * @notice redeem sOHM for OHMs
         * @param _to address
         * @param _amount uint
         * @param _trigger bool
         * @param _rebasing bool
         * @return amount_ uint
         */
        function unstake(
            address _to,
            uint256 _amount,
            bool _trigger,
            bool _rebasing
        ) external returns (uint256 amount_) {
            amount_ = _amount;
            uint256 bounty;
            if (_trigger) {
                bounty = rebase();
            }
            if (_rebasing) {
                sOHM.safeTransferFrom(msg.sender, address(this), _amount);
                amount_ = amount_.add(bounty);
            } else {
                gOHM.burn(msg.sender, _amount); // amount was given in gOHM terms
                amount_ = gOHM.balanceFrom(amount_).add(bounty); // convert amount to OHM terms & add bounty
            }
    
            require(amount_ <= OHM.balanceOf(address(this)), "Insufficient OHM balance in contract");
            OHM.safeTransfer(_to, amount_);
        }
    
        /**
         * @notice convert _amount sOHM into gBalance_ gOHM
         * @param _to address
         * @param _amount uint
         * @return gBalance_ uint
         */
        function wrap(address _to, uint256 _amount) external returns (uint256 gBalance_) {
            sOHM.safeTransferFrom(msg.sender, address(this), _amount);
            gBalance_ = gOHM.balanceTo(_amount);
            gOHM.mint(_to, gBalance_);
        }
    
        /**
         * @notice convert _amount gOHM into sBalance_ sOHM
         * @param _to address
         * @param _amount uint
         * @return sBalance_ uint
         */
        function unwrap(address _to, uint256 _amount) external returns (uint256 sBalance_) {
            gOHM.burn(msg.sender, _amount);
            sBalance_ = gOHM.balanceFrom(_amount);
            sOHM.safeTransfer(_to, sBalance_);
        }
    
        /**
         * @notice trigger rebase if epoch over
         * @return uint256
         */
        function rebase() public returns (uint256) {
            uint256 bounty;
            if (epoch.end <= block.timestamp) {
                sOHM.rebase(epoch.distribute, epoch.number);
    
                epoch.end = epoch.end.add(epoch.length);
                epoch.number++;
    
                if (address(distributor) != address(0)) {
                    distributor.distribute();
                    bounty = distributor.retrieveBounty(); // Will mint ohm for this contract if there exists a bounty
                }
                uint256 balance = OHM.balanceOf(address(this));
                uint256 staked = sOHM.circulatingSupply();
                if (balance <= staked.add(bounty)) {
                    epoch.distribute = 0;
                } else {
                    epoch.distribute = balance.sub(staked).sub(bounty);
                }
            }
            return bounty;
        }
    
        /* ========== INTERNAL FUNCTIONS ========== */
    
        /**
         * @notice send staker their amount as sOHM or gOHM
         * @param _to address
         * @param _amount uint
         * @param _rebasing bool
         */
        function _send(
            address _to,
            uint256 _amount,
            bool _rebasing
        ) internal returns (uint256) {
            if (_rebasing) {
                sOHM.safeTransfer(_to, _amount); // send as sOHM (equal unit as OHM)
                return _amount;
            } else {
                gOHM.mint(_to, gOHM.balanceTo(_amount)); // send as gOHM (convert units from OHM)
                return gOHM.balanceTo(_amount);
            }
        }
    
        /* ========== VIEW FUNCTIONS ========== */
    
        /**
         * @notice returns the sOHM index, which tracks rebase growth
         * @return uint
         */
        function index() public view returns (uint256) {
            return sOHM.index();
        }
    
        /**
         * @notice total supply in warmup
         */
        function supplyInWarmup() public view returns (uint256) {
            return sOHM.balanceForGons(gonsInWarmup);
        }
    
        /**
         * @notice seconds until the next epoch begins
         */
        function secondsToNextEpoch() external view returns (uint256) {
            return epoch.end.sub(block.timestamp);
        }
    
        /* ========== MANAGERIAL FUNCTIONS ========== */
    
        /**
         * @notice sets the contract address for LP staking
         * @param _distributor address
         */
        function setDistributor(address _distributor) external onlyGovernor {
            distributor = IDistributor(_distributor);
            emit DistributorSet(_distributor);
        }
    
        /**
         * @notice set warmup period for new stakers
         * @param _warmupPeriod uint
         */
        function setWarmupLength(uint256 _warmupPeriod) external onlyGovernor {
            warmupPeriod = _warmupPeriod;
            emit WarmupSet(_warmupPeriod);
        }
    }

    File 2 of 3: sOlympus
    // SPDX-License-Identifier: AGPL-3.0-or-later
    // File: interfaces/IStaking.sol
    pragma solidity >=0.7.5;
    interface IStaking {
        function stake(
            address _to,
            uint256 _amount,
            bool _rebasing,
            bool _claim
        ) external returns (uint256);
        function claim(address _recipient, bool _rebasing) external returns (uint256);
        function forfeit() external returns (uint256);
        function toggleLock() external;
        function unstake(
            address _to,
            uint256 _amount,
            bool _trigger,
            bool _rebasing
        ) external returns (uint256);
        function wrap(address _to, uint256 _amount) external returns (uint256 gBalance_);
        function unwrap(address _to, uint256 _amount) external returns (uint256 sBalance_);
        function rebase() external;
        function index() external view returns (uint256);
        function contractBalance() external view returns (uint256);
        function totalStaked() external view returns (uint256);
        function supplyInWarmup() external view returns (uint256);
    }
    // File: cryptography/ECDSA.sol
    pragma solidity ^0.7.5;
    /**
     * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
     *
     * These functions can be used to verify that a message was signed by the holder
     * of the private keys of a given address.
     */
    library ECDSA {
        enum RecoverError {
            NoError,
            InvalidSignature,
            InvalidSignatureLength,
            InvalidSignatureS,
            InvalidSignatureV
        }
        function _throwError(RecoverError error) private pure {
            if (error == RecoverError.NoError) {
                return; // no error: do nothing
            } else if (error == RecoverError.InvalidSignature) {
                revert("ECDSA: invalid signature");
            } else if (error == RecoverError.InvalidSignatureLength) {
                revert("ECDSA: invalid signature length");
            } else if (error == RecoverError.InvalidSignatureS) {
                revert("ECDSA: invalid signature 's' value");
            } else if (error == RecoverError.InvalidSignatureV) {
                revert("ECDSA: invalid signature 'v' value");
            }
        }
        /**
         * @dev Returns the address that signed a hashed message (`hash`) with
         * `signature` or error string. This address can then be used for verification purposes.
         *
         * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
         * this function rejects them by requiring the `s` value to be in the lower
         * half order, and the `v` value to be either 27 or 28.
         *
         * IMPORTANT: `hash` _must_ be the result of a hash operation for the
         * verification to be secure: it is possible to craft signatures that
         * recover to arbitrary addresses for non-hashed data. A safe way to ensure
         * this is by receiving a hash of the original message (which may otherwise
         * be too long), and then calling {toEthSignedMessageHash} on it.
         *
         * Documentation for signature generation:
         * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
         * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
         *
         * _Available since v4.3._
         */
        function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
            // Check the signature length
            // - case 65: r,s,v signature (standard)
            // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
            if (signature.length == 65) {
                bytes32 r;
                bytes32 s;
                uint8 v;
                // ecrecover takes the signature parameters, and the only way to get them
                // currently is to use assembly.
                assembly {
                    r := mload(add(signature, 0x20))
                    s := mload(add(signature, 0x40))
                    v := byte(0, mload(add(signature, 0x60)))
                }
                return tryRecover(hash, v, r, s);
            } else if (signature.length == 64) {
                bytes32 r;
                bytes32 vs;
                // ecrecover takes the signature parameters, and the only way to get them
                // currently is to use assembly.
                assembly {
                    r := mload(add(signature, 0x20))
                    vs := mload(add(signature, 0x40))
                }
                return tryRecover(hash, r, vs);
            } else {
                return (address(0), RecoverError.InvalidSignatureLength);
            }
        }
        /**
         * @dev Returns the address that signed a hashed message (`hash`) with
         * `signature`. This address can then be used for verification purposes.
         *
         * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
         * this function rejects them by requiring the `s` value to be in the lower
         * half order, and the `v` value to be either 27 or 28.
         *
         * IMPORTANT: `hash` _must_ be the result of a hash operation for the
         * verification to be secure: it is possible to craft signatures that
         * recover to arbitrary addresses for non-hashed data. A safe way to ensure
         * this is by receiving a hash of the original message (which may otherwise
         * be too long), and then calling {toEthSignedMessageHash} on it.
         */
        function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
            (address recovered, RecoverError error) = tryRecover(hash, signature);
            _throwError(error);
            return recovered;
        }
        /**
         * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
         *
         * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
         *
         * _Available since v4.3._
         */
        function tryRecover(
            bytes32 hash,
            bytes32 r,
            bytes32 vs
        ) internal pure returns (address, RecoverError) {
            bytes32 s;
            uint8 v;
            assembly {
                s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
                v := add(shr(255, vs), 27)
            }
            return tryRecover(hash, v, r, s);
        }
        /**
         * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
         *
         * _Available since v4.2._
         */
        function recover(
            bytes32 hash,
            bytes32 r,
            bytes32 vs
        ) internal pure returns (address) {
            (address recovered, RecoverError error) = tryRecover(hash, r, vs);
            _throwError(error);
            return recovered;
        }
        /**
         * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
         * `r` and `s` signature fields separately.
         *
         * _Available since v4.3._
         */
        function tryRecover(
            bytes32 hash,
            uint8 v,
            bytes32 r,
            bytes32 s
        ) internal pure returns (address, RecoverError) {
            // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
            // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
            // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
            // signatures from current libraries generate a unique signature with an s-value in the lower half order.
            //
            // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
            // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
            // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
            // these malleable signatures as well.
            if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
                return (address(0), RecoverError.InvalidSignatureS);
            }
            if (v != 27 && v != 28) {
                return (address(0), RecoverError.InvalidSignatureV);
            }
            // If the signature is valid (and not malleable), return the signer address
            address signer = ecrecover(hash, v, r, s);
            if (signer == address(0)) {
                return (address(0), RecoverError.InvalidSignature);
            }
            return (signer, RecoverError.NoError);
        }
        /**
         * @dev Overload of {ECDSA-recover} that receives the `v`,
         * `r` and `s` signature fields separately.
         */
        function recover(
            bytes32 hash,
            uint8 v,
            bytes32 r,
            bytes32 s
        ) internal pure returns (address) {
            (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
            _throwError(error);
            return recovered;
        }
        /**
         * @dev Returns an Ethereum Signed Message, created from a `hash`. This
         * produces hash corresponding to the one signed with the
         * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
         * JSON-RPC method as part of EIP-191.
         *
         * See {recover}.
         */
        function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
            // 32 is the length in bytes of hash,
            // enforced by the type signature above
            return keccak256(abi.encodePacked("\\x19Ethereum Signed Message:\
    32", hash));
        }
        /**
         * @dev Returns an Ethereum Signed Typed Data, created from a
         * `domainSeparator` and a `structHash`. This produces hash corresponding
         * to the one signed with the
         * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
         * JSON-RPC method as part of EIP-712.
         *
         * See {recover}.
         */
        function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
            return keccak256(abi.encodePacked("\\x19\\x01", domainSeparator, structHash));
        }
    }
    // File: cryptography/EIP712.sol
    pragma solidity ^0.7.5;
    /**
     * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
     *
     * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
     * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
     * they need in their contracts using a combination of `abi.encode` and `keccak256`.
     *
     * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
     * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
     * ({_hashTypedDataV4}).
     *
     * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
     * the chain id to protect against replay attacks on an eventual fork of the chain.
     *
     * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
     * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
     *
     * _Available since v3.4._
     */
    abstract contract EIP712 {
        /* solhint-disable var-name-mixedcase */
        // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
        // invalidate the cached domain separator if the chain id changes.
        bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
        uint256 private immutable _CACHED_CHAIN_ID;
        bytes32 private immutable _HASHED_NAME;
        bytes32 private immutable _HASHED_VERSION;
        bytes32 private immutable _TYPE_HASH;
        /* solhint-enable var-name-mixedcase */
        /**
         * @dev Initializes the domain separator and parameter caches.
         *
         * The meaning of `name` and `version` is specified in
         * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
         *
         * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
         * - `version`: the current major version of the signing domain.
         *
         * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
         * contract upgrade].
         */
        constructor(string memory name, string memory version) {
            uint256 chainID;
            assembly {
                chainID := chainid()
            }
            bytes32 hashedName = keccak256(bytes(name));
            bytes32 hashedVersion = keccak256(bytes(version));
            bytes32 typeHash = keccak256(
                "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
            );
            _HASHED_NAME = hashedName;
            _HASHED_VERSION = hashedVersion;
            _CACHED_CHAIN_ID = chainID;
            _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
            _TYPE_HASH = typeHash;
        }
        /**
         * @dev Returns the domain separator for the current chain.
         */
        function _domainSeparatorV4() internal view returns (bytes32) {
            uint256 chainID;
            assembly {
                chainID := chainid()
            }
            if (chainID == _CACHED_CHAIN_ID) {
                return _CACHED_DOMAIN_SEPARATOR;
            } else {
                return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
            }
        }
        function _buildDomainSeparator(
            bytes32 typeHash,
            bytes32 nameHash,
            bytes32 versionHash
        ) private view returns (bytes32) {
            uint256 chainID;
            assembly {
                chainID := chainid()
            }
            return keccak256(abi.encode(typeHash, nameHash, versionHash, chainID, address(this)));
        }
        /**
         * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
         * function returns the hash of the fully encoded EIP712 message for this domain.
         *
         * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
         *
         * ```solidity
         * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
         *     keccak256("Mail(address to,string contents)"),
         *     mailTo,
         *     keccak256(bytes(mailContents))
         * )));
         * address signer = ECDSA.recover(digest, signature);
         * ```
         */
        function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
            return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
        }
    }
    // File: interfaces/IERC20.sol
    pragma solidity >=0.7.5;
    interface IERC20 {
      /**
       * @dev Returns the amount of tokens in existence.
       */
      function totalSupply() external view returns (uint256);
      /**
       * @dev Returns the amount of tokens owned by `account`.
       */
      function balanceOf(address account) external view returns (uint256);
      /**
       * @dev Moves `amount` tokens from the caller's account to `recipient`.
       *
       * Returns a boolean value indicating whether the operation succeeded.
       *
       * Emits a {Transfer} event.
       */
      function transfer(address recipient, uint256 amount) external returns (bool);
      /**
       * @dev Returns the remaining number of tokens that `spender` will be
       * allowed to spend on behalf of `owner` through {transferFrom}. This is
       * zero by default.
       *
       * This value changes when {approve} or {transferFrom} are called.
       */
      function allowance(address owner, address spender) external view returns (uint256);
      /**
       * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
       *
       * Returns a boolean value indicating whether the operation succeeded.
       *
       * IMPORTANT: Beware that changing an allowance with this method brings the risk
       * that someone may use both the old and the new allowance by unfortunate
       * transaction ordering. One possible solution to mitigate this race
       * condition is to first reduce the spender's allowance to 0 and set the
       * desired value afterwards:
       * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
       *
       * Emits an {Approval} event.
       */
      function approve(address spender, uint256 amount) external returns (bool);
      /**
       * @dev Moves `amount` tokens from `sender` to `recipient` using the
       * allowance mechanism. `amount` is then deducted from the caller's
       * allowance.
       *
       * Returns a boolean value indicating whether the operation succeeded.
       *
       * Emits a {Transfer} event.
       */
      function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
      /**
       * @dev Emitted when `value` tokens are moved from one account (`from`) to
       * another (`to`).
       *
       * Note that `value` may be zero.
       */
      event Transfer(address indexed from, address indexed to, uint256 value);
      /**
       * @dev Emitted when the allowance of a `spender` for an `owner` is set by
       * a call to {approve}. `value` is the new allowance.
       */
      event Approval(address indexed owner, address indexed spender, uint256 value);
    }
    // File: interfaces/IsOHM.sol
    pragma solidity >=0.7.5;
    interface IsOHM is IERC20 {
        function rebase( uint256 ohmProfit_, uint epoch_) external returns (uint256);
        function circulatingSupply() external view returns (uint256);
        function gonsForBalance( uint amount ) external view returns ( uint );
        function balanceForGons( uint gons ) external view returns ( uint );
        function index() external view returns ( uint );
        function toG(uint amount) external view returns (uint);
        function fromG(uint amount) external view returns (uint);
         function changeDebt(
            uint256 amount,
            address debtor,
            bool add
        ) external;
        function debtBalances(address _address) external view returns (uint256);
    }
    // File: interfaces/IgOHM.sol
    pragma solidity >=0.7.5;
    interface IgOHM is IERC20 {
      function mint(address _to, uint256 _amount) external;
      function burn(address _from, uint256 _amount) external;
      function index() external view returns (uint256);
      function balanceFrom(uint256 _amount) external view returns (uint256);
      function balanceTo(uint256 _amount) external view returns (uint256);
      function migrate( address _staking, address _sOHM ) external;
    }
    // File: interfaces/IERC20Permit.sol
    pragma solidity >=0.7.5;
    /**
     * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
     * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
     *
     * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
     * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
     * need to send a transaction, and thus is not required to hold Ether at all.
     */
    interface IERC20Permit {
        /**
         * @dev Sets `value` as th xe allowance of `spender` over ``owner``'s tokens,
         * given ``owner``'s signed approval.
         *
         * IMPORTANT: The same issues {IERC20-approve} has related to transaction
         * ordering also apply here.
         *
         * Emits an {Approval} event.
         *
         * Requirements:
         *
         * - `spender` cannot be the zero address.
         * - `deadline` must be a timestamp in the future.
         * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
         * over the EIP712-formatted function arguments.
         * - the signature must use ``owner``'s current nonce (see {nonces}).
         *
         * For more information on the signature format, see the
         * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
         * section].
         */
        function permit(
            address owner,
            address spender,
            uint256 value,
            uint256 deadline,
            uint8 v,
            bytes32 r,
            bytes32 s
        ) external;
        /**
         * @dev Returns the current nonce for `owner`. This value must be
         * included whenever a signature is generated for {permit}.
         *
         * Every successful call to {permit} increases ``owner``'s nonce by one. This
         * prevents a signature from being used multiple times.
         */
        function nonces(address owner) external view returns (uint256);
        /**
         * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
         */
        // solhint-disable-next-line func-name-mixedcase
        function DOMAIN_SEPARATOR() external view returns (bytes32);
    }
    // File: libraries/SafeMath.sol
    pragma solidity ^0.7.5;
    // TODO(zx): Replace all instances of SafeMath with OZ implementation
    library SafeMath {
        function add(uint256 a, uint256 b) internal pure returns (uint256) {
            uint256 c = a + b;
            require(c >= a, "SafeMath: addition overflow");
            return c;
        }
        function sub(uint256 a, uint256 b) internal pure returns (uint256) {
            return sub(a, b, "SafeMath: subtraction overflow");
        }
        function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
            require(b <= a, errorMessage);
            uint256 c = a - b;
            return c;
        }
        function mul(uint256 a, uint256 b) internal pure returns (uint256) {
            if (a == 0) {
                return 0;
            }
            uint256 c = a * b;
            require(c / a == b, "SafeMath: multiplication overflow");
            return c;
        }
        function div(uint256 a, uint256 b) internal pure returns (uint256) {
            return div(a, b, "SafeMath: division by zero");
        }
        function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
            require(b > 0, errorMessage);
            uint256 c = a / b;
            assert(a == b * c + a % b); // There is no case in which this doesn't hold
            return c;
        }
        // Only used in the  BondingCalculator.sol
        function sqrrt(uint256 a) internal pure returns (uint c) {
            if (a > 3) {
                c = a;
                uint b = add( div( a, 2), 1 );
                while (b < c) {
                    c = b;
                    b = div( add( div( a, b ), b), 2 );
                }
            } else if (a != 0) {
                c = 1;
            }
        }
    }
    // File: libraries/Counters.sol
    pragma solidity ^0.7.5;
    library Counters {
        using SafeMath for uint256;
        struct Counter {
            // This variable should never be directly accessed by users of the library: interactions must be restricted to
            // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
            // this feature: see https://github.com/ethereum/solidity/issues/4637
            uint256 _value; // default: 0
        }
        function current(Counter storage counter) internal view returns (uint256) {
            return counter._value;
        }
        function increment(Counter storage counter) internal {
            // The {SafeMath} overflow check can be skipped here, see the comment at the top
            counter._value += 1;
        }
        function decrement(Counter storage counter) internal {
            counter._value = counter._value.sub(1);
        }
    }
    // File: types/ERC20.sol
    pragma solidity >=0.7.5;
    abstract contract ERC20 is IERC20 {
        using SafeMath for uint256;
        // TODO comment actual hash value.
        bytes32 constant private ERC20TOKEN_ERC1820_INTERFACE_ID = keccak256( "ERC20Token" );
        
        mapping (address => uint256) internal _balances;
        mapping (address => mapping (address => uint256)) internal _allowances;
        uint256 internal _totalSupply;
        string internal _name;
        
        string internal _symbol;
        
        uint8 internal immutable _decimals;
        constructor (string memory name_, string memory symbol_, uint8 decimals_) {
            _name = name_;
            _symbol = symbol_;
            _decimals = decimals_;
        }
        function name() public view returns (string memory) {
            return _name;
        }
        function symbol() public view returns (string memory) {
            return _symbol;
        }
        function decimals() public view virtual returns (uint8) {
            return _decimals;
        }
        function totalSupply() public view override returns (uint256) {
            return _totalSupply;
        }
        function balanceOf(address account) public view virtual override returns (uint256) {
            return _balances[account];
        }
        function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
            _transfer(msg.sender, recipient, amount);
            return true;
        }
        function allowance(address owner, address spender) public view virtual override returns (uint256) {
            return _allowances[owner][spender];
        }
        function approve(address spender, uint256 amount) public virtual override returns (bool) {
            _approve(msg.sender, spender, amount);
            return true;
        }
        function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
            _transfer(sender, recipient, amount);
            _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance"));
            return true;
        }
        function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
            _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
            return true;
        }
        function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
            _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
            return true;
        }
        function _transfer(address sender, address recipient, uint256 amount) internal virtual {
            require(sender != address(0), "ERC20: transfer from the zero address");
            require(recipient != address(0), "ERC20: transfer to the zero address");
            _beforeTokenTransfer(sender, recipient, amount);
            _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
            _balances[recipient] = _balances[recipient].add(amount);
            emit Transfer(sender, recipient, amount);
        }
        function _mint(address account, uint256 amount) internal virtual {
            require(account != address(0), "ERC20: mint to the zero address");
            _beforeTokenTransfer(address(0), account, amount);
            _totalSupply = _totalSupply.add(amount);
            _balances[account] = _balances[account].add(amount);
            emit Transfer(address(0), account, amount);
        }
        function _burn(address account, uint256 amount) internal virtual {
            require(account != address(0), "ERC20: burn from the zero address");
            _beforeTokenTransfer(account, address(0), amount);
            _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
            _totalSupply = _totalSupply.sub(amount);
            emit Transfer(account, address(0), amount);
        }
        function _approve(address owner, address spender, uint256 amount) internal virtual {
            require(owner != address(0), "ERC20: approve from the zero address");
            require(spender != address(0), "ERC20: approve to the zero address");
            _allowances[owner][spender] = amount;
            emit Approval(owner, spender, amount);
        }
      function _beforeTokenTransfer( address from_, address to_, uint256 amount_ ) internal virtual { }
    }
    // File: types/ERC20Permit.sol
    pragma solidity >=0.7.5;
    /**
     * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
     * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
     *
     * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
     * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
     * need to send a transaction, and thus is not required to hold Ether at all.
     *
     * _Available since v3.4._
     */
    abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
        using Counters for Counters.Counter;
        mapping(address => Counters.Counter) private _nonces;
        // solhint-disable-next-line var-name-mixedcase
        bytes32 private immutable _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
        /**
         * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
         *
         * It's a good idea to use the same `name` that is defined as the ERC20 token name.
         */
        constructor(string memory name) EIP712(name, "1") {}
        /**
         * @dev See {IERC20Permit-permit}.
         */
        function permit(
            address owner,
            address spender,
            uint256 value,
            uint256 deadline,
            uint8 v,
            bytes32 r,
            bytes32 s
        ) public virtual override {
            require(block.timestamp <= deadline, "ERC20Permit: expired deadline");
            bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));
            bytes32 hash = _hashTypedDataV4(structHash);
            address signer = ECDSA.recover(hash, v, r, s);
            require(signer == owner, "ERC20Permit: invalid signature");
            _approve(owner, spender, value);
        }
        /**
         * @dev See {IERC20Permit-nonces}.
         */
        function nonces(address owner) public view virtual override returns (uint256) {
            return _nonces[owner].current();
        }
        /**
         * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
         */
        // solhint-disable-next-line func-name-mixedcase
        function DOMAIN_SEPARATOR() external view override returns (bytes32) {
            return _domainSeparatorV4();
        }
        /**
         * @dev "Consume a nonce": return the current value and increment.
         *
         * _Available since v4.1._
         */
        function _useNonce(address owner) internal virtual returns (uint256 current) {
            Counters.Counter storage nonce = _nonces[owner];
            current = nonce.current();
            nonce.increment();
        }
    }
    // File: libraries/Address.sol
    pragma solidity ^0.7.5;
    // TODO(zx): replace with OZ implementation.
    library Address {
        /**
         * @dev Returns true if `account` is a contract.
         *
         * [IMPORTANT]
         * ====
         * It is unsafe to assume that an address for which this function returns
         * false is an externally-owned account (EOA) and not a contract.
         *
         * Among others, `isContract` will return false for the following
         * types of addresses:
         *
         *  - an externally-owned account
         *  - a contract in construction
         *  - an address where a contract will be created
         *  - an address where a contract lived, but was destroyed
         * ====
         */
        function isContract(address account) internal view returns (bool) {
            // This method relies in extcodesize, which returns 0 for contracts in
            // construction, since the code is only stored at the end of the
            // constructor execution.
            uint256 size;
            // solhint-disable-next-line no-inline-assembly
            assembly { size := extcodesize(account) }
            return size > 0;
        }
        /**
         * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
         * `recipient`, forwarding all available gas and reverting on errors.
         *
         * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
         * of certain opcodes, possibly making contracts go over the 2300 gas limit
         * imposed by `transfer`, making them unable to receive funds via
         * `transfer`. {sendValue} removes this limitation.
         *
         * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
         *
         * IMPORTANT: because control is transferred to `recipient`, care must be
         * taken to not create reentrancy vulnerabilities. Consider using
         * {ReentrancyGuard} or the
         * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
         */
        function sendValue(address payable recipient, uint256 amount) internal {
            require(address(this).balance >= amount, "Address: insufficient balance");
            // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
            (bool success, ) = recipient.call{ value: amount }("");
            require(success, "Address: unable to send value, recipient may have reverted");
        }
        /**
         * @dev Performs a Solidity function call using a low level `call`. A
         * plain`call` is an unsafe replacement for a function call: use this
         * function instead.
         *
         * If `target` reverts with a revert reason, it is bubbled up by this
         * function (like regular Solidity function calls).
         *
         * Returns the raw returned data. To convert to the expected return value,
         * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
         *
         * Requirements:
         *
         * - `target` must be a contract.
         * - calling `target` with `data` must not revert.
         *
         * _Available since v3.1._
         */
        function functionCall(address target, bytes memory data) internal returns (bytes memory) {
          return functionCall(target, data, "Address: low-level call failed");
        }
        /**
         * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
         * `errorMessage` as a fallback revert reason when `target` reverts.
         *
         * _Available since v3.1._
         */
        function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
            return _functionCallWithValue(target, data, 0, errorMessage);
        }
        /**
         * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
         * but also transferring `value` wei to `target`.
         *
         * Requirements:
         *
         * - the calling contract must have an ETH balance of at least `value`.
         * - the called Solidity function must be `payable`.
         *
         * _Available since v3.1._
         */
        function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
            return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
        }
        /**
         * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
         * with `errorMessage` as a fallback revert reason when `target` reverts.
         *
         * _Available since v3.1._
         */
        // function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        //     require(address(this).balance >= value, "Address: insufficient balance for call");
        //     return _functionCallWithValue(target, data, value, errorMessage);
        // }
        function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
            require(address(this).balance >= value, "Address: insufficient balance for call");
            require(isContract(target), "Address: call to non-contract");
            // solhint-disable-next-line avoid-low-level-calls
            (bool success, bytes memory returndata) = target.call{ value: value }(data);
            return _verifyCallResult(success, returndata, errorMessage);
        }
        function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
            require(isContract(target), "Address: call to non-contract");
            // solhint-disable-next-line avoid-low-level-calls
            (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
            if (success) {
                return returndata;
            } else {
                // Look for revert reason and bubble it up if present
                if (returndata.length > 0) {
                    // The easiest way to bubble the revert reason is using memory via assembly
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        let returndata_size := mload(returndata)
                        revert(add(32, returndata), returndata_size)
                    }
                } else {
                    revert(errorMessage);
                }
            }
        }
      /**
         * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
         * but performing a static call.
         *
         * _Available since v3.3._
         */
        function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
            return functionStaticCall(target, data, "Address: low-level static call failed");
        }
        /**
         * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
         * but performing a static call.
         *
         * _Available since v3.3._
         */
        function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
            require(isContract(target), "Address: static call to non-contract");
            // solhint-disable-next-line avoid-low-level-calls
            (bool success, bytes memory returndata) = target.staticcall(data);
            return _verifyCallResult(success, returndata, errorMessage);
        }
        /**
         * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
         * but performing a delegate call.
         *
         * _Available since v3.3._
         */
        function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
            return functionDelegateCall(target, data, "Address: low-level delegate call failed");
        }
        /**
         * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
         * but performing a delegate call.
         *
         * _Available since v3.3._
         */
        function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
            require(isContract(target), "Address: delegate call to non-contract");
            // solhint-disable-next-line avoid-low-level-calls
            (bool success, bytes memory returndata) = target.delegatecall(data);
            return _verifyCallResult(success, returndata, errorMessage);
        }
        function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
            if (success) {
                return returndata;
            } else {
                // Look for revert reason and bubble it up if present
                if (returndata.length > 0) {
                    // The easiest way to bubble the revert reason is using memory via assembly
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        let returndata_size := mload(returndata)
                        revert(add(32, returndata), returndata_size)
                    }
                } else {
                    revert(errorMessage);
                }
            }
        }
        function addressToString(address _address) internal pure returns(string memory) {
            bytes32 _bytes = bytes32(uint256(_address));
            bytes memory HEX = "0123456789abcdef";
            bytes memory _addr = new bytes(42);
            _addr[0] = '0';
            _addr[1] = 'x';
            for(uint256 i = 0; i < 20; i++) {
                _addr[2+i*2] = HEX[uint8(_bytes[i + 12] >> 4)];
                _addr[3+i*2] = HEX[uint8(_bytes[i + 12] & 0x0f)];
            }
            return string(_addr);
        }
    }
    // File: sOlympusERC20.sol
    pragma solidity ^0.7.5;
    contract sOlympus is IsOHM, ERC20Permit {
        /* ========== DEPENDENCIES ========== */
        using SafeMath for uint256;
        /* ========== EVENTS ========== */
        event LogSupply(uint256 indexed epoch, uint256 totalSupply);
        event LogRebase(uint256 indexed epoch, uint256 rebase, uint256 index);
        event LogStakingContractUpdated(address stakingContract);
        /* ========== MODIFIERS ========== */
        modifier onlyStakingContract() {
            require(msg.sender == stakingContract, "StakingContract:  call is not staking contract");
            _;
        }
        /* ========== DATA STRUCTURES ========== */
        struct Rebase {
            uint256 epoch;
            uint256 rebase; // 18 decimals
            uint256 totalStakedBefore;
            uint256 totalStakedAfter;
            uint256 amountRebased;
            uint256 index;
            uint256 blockNumberOccured;
        }
        /* ========== STATE VARIABLES ========== */
        address internal initializer;
        uint256 internal INDEX; // Index Gons - tracks rebase growth
        address public stakingContract; // balance used to calc rebase
        IgOHM public gOHM; // additional staked supply (governance token)
        Rebase[] public rebases; // past rebase data
        uint256 private constant MAX_UINT256 = type(uint256).max;
        uint256 private constant INITIAL_FRAGMENTS_SUPPLY = 5_000_000 * 10**9;
        // TOTAL_GONS is a multiple of INITIAL_FRAGMENTS_SUPPLY so that _gonsPerFragment is an integer.
        // Use the highest value that fits in a uint256 for max granularity.
        uint256 private constant TOTAL_GONS = MAX_UINT256 - (MAX_UINT256 % INITIAL_FRAGMENTS_SUPPLY);
        // MAX_SUPPLY = maximum integer < (sqrt(4*TOTAL_GONS + 1) - 1) / 2
        uint256 private constant MAX_SUPPLY = ~uint128(0); // (2^128) - 1
        uint256 private _gonsPerFragment;
        mapping(address => uint256) private _gonBalances;
        mapping(address => mapping(address => uint256)) private _allowedValue;
        address public treasury;
        mapping(address => uint256) public override debtBalances;
        /* ========== CONSTRUCTOR ========== */
        constructor() ERC20("Staked OHM", "sOHM", 9) ERC20Permit("Staked OHM") {
            initializer = msg.sender;
            _totalSupply = INITIAL_FRAGMENTS_SUPPLY;
            _gonsPerFragment = TOTAL_GONS.div(_totalSupply);
        }
        /* ========== INITIALIZATION ========== */
        function setIndex(uint256 _index) external {
            require(msg.sender == initializer, "Initializer:  caller is not initializer");
            require(INDEX == 0, "Cannot set INDEX again");
            INDEX = gonsForBalance(_index);
        }
        function setgOHM(address _gOHM) external {
            require(msg.sender == initializer, "Initializer:  caller is not initializer");
            require(address(gOHM) == address(0), "gOHM:  gOHM already set");
            require(_gOHM != address(0), "gOHM:  gOHM is not a valid contract");
            gOHM = IgOHM(_gOHM);
        }
        // do this last
        function initialize(address _stakingContract, address _treasury) external {
            require(msg.sender == initializer, "Initializer:  caller is not initializer");
            require(_stakingContract != address(0), "Staking");
            stakingContract = _stakingContract;
            _gonBalances[stakingContract] = TOTAL_GONS;
            require(_treasury != address(0), "Zero address: Treasury");
            treasury = _treasury;
            emit Transfer(address(0x0), stakingContract, _totalSupply);
            emit LogStakingContractUpdated(stakingContract);
            initializer = address(0);
        }
        /* ========== REBASE ========== */
        /**
            @notice increases rOHM supply to increase staking balances relative to profit_
            @param profit_ uint256
            @return uint256
         */
        function rebase(uint256 profit_, uint256 epoch_) public override onlyStakingContract returns (uint256) {
            uint256 rebaseAmount;
            uint256 circulatingSupply_ = circulatingSupply();
            if (profit_ == 0) {
                emit LogSupply(epoch_, _totalSupply);
                emit LogRebase(epoch_, 0, index());
                return _totalSupply;
            } else if (circulatingSupply_ > 0) {
                rebaseAmount = profit_.mul(_totalSupply).div(circulatingSupply_);
            } else {
                rebaseAmount = profit_;
            }
            _totalSupply = _totalSupply.add(rebaseAmount);
            if (_totalSupply > MAX_SUPPLY) {
                _totalSupply = MAX_SUPPLY;
            }
            _gonsPerFragment = TOTAL_GONS.div(_totalSupply);
            _storeRebase(circulatingSupply_, profit_, epoch_);
            return _totalSupply;
        }
        /**
            @notice emits event with data about rebase
            @param previousCirculating_ uint
            @param profit_ uint
            @param epoch_ uint
         */
        function _storeRebase(
            uint256 previousCirculating_,
            uint256 profit_,
            uint256 epoch_
        ) internal {
            uint256 rebasePercent = profit_.mul(1e18).div(previousCirculating_);
            rebases.push(
                Rebase({
                    epoch: epoch_,
                    rebase: rebasePercent, // 18 decimals
                    totalStakedBefore: previousCirculating_,
                    totalStakedAfter: circulatingSupply(),
                    amountRebased: profit_,
                    index: index(),
                    blockNumberOccured: block.number
                })
            );
            emit LogSupply(epoch_, _totalSupply);
            emit LogRebase(epoch_, rebasePercent, index());
        }
        /* ========== MUTATIVE FUNCTIONS =========== */
        function transfer(address to, uint256 value) public override(IERC20, ERC20) returns (bool) {
            uint256 gonValue = value.mul(_gonsPerFragment);
            _gonBalances[msg.sender] = _gonBalances[msg.sender].sub(gonValue);
            _gonBalances[to] = _gonBalances[to].add(gonValue);
            require(balanceOf(msg.sender) >= debtBalances[msg.sender], "Debt: cannot transfer amount");
            emit Transfer(msg.sender, to, value);
            return true;
        }
        function transferFrom(
            address from,
            address to,
            uint256 value
        ) public override(IERC20, ERC20) returns (bool) {
            _allowedValue[from][msg.sender] = _allowedValue[from][msg.sender].sub(value);
            emit Approval(from, msg.sender, _allowedValue[from][msg.sender]);
            uint256 gonValue = gonsForBalance(value);
            _gonBalances[from] = _gonBalances[from].sub(gonValue);
            _gonBalances[to] = _gonBalances[to].add(gonValue);
            require(balanceOf(from) >= debtBalances[from], "Debt: cannot transfer amount");
            emit Transfer(from, to, value);
            return true;
        }
        function approve(address spender, uint256 value) public override(IERC20, ERC20) returns (bool) {
            _approve(msg.sender, spender, value);
            return true;
        }
        function increaseAllowance(address spender, uint256 addedValue) public override returns (bool) {
            _approve(msg.sender, spender, _allowedValue[msg.sender][spender].add(addedValue));
            return true;
        }
        function decreaseAllowance(address spender, uint256 subtractedValue) public override returns (bool) {
            uint256 oldValue = _allowedValue[msg.sender][spender];
            if (subtractedValue >= oldValue) {
                _approve(msg.sender, spender, 0);
            } else {
                _approve(msg.sender, spender, oldValue.sub(subtractedValue));
            }
            return true;
        }
        // this function is called by the treasury, and informs sOHM of changes to debt.
        // note that addresses with debt balances cannot transfer collateralized sOHM
        // until the debt has been repaid.
        function changeDebt(
            uint256 amount,
            address debtor,
            bool add
        ) external override {
            require(msg.sender == treasury, "Only treasury");
            if (add) {
                debtBalances[debtor] = debtBalances[debtor].add(amount);
            } else {
                debtBalances[debtor] = debtBalances[debtor].sub(amount);
            }
            require(debtBalances[debtor] <= balanceOf(debtor), "sOHM: insufficient balance");
        }
        /* ========== INTERNAL FUNCTIONS ========== */
        function _approve(
            address owner,
            address spender,
            uint256 value
        ) internal virtual override {
            _allowedValue[owner][spender] = value;
            emit Approval(owner, spender, value);
        }
        /* ========== VIEW FUNCTIONS ========== */
        function balanceOf(address who) public view override(IERC20, ERC20) returns (uint256) {
            return _gonBalances[who].div(_gonsPerFragment);
        }
        function gonsForBalance(uint256 amount) public view override returns (uint256) {
            return amount.mul(_gonsPerFragment);
        }
        function balanceForGons(uint256 gons) public view override returns (uint256) {
            return gons.div(_gonsPerFragment);
        }
        // toG converts an sOHM balance to gOHM terms. gOHM is an 18 decimal token. balance given is in 18 decimal format.
        function toG(uint256 amount) external view override returns (uint256) {
            return gOHM.balanceTo(amount);
        }
        // fromG converts a gOHM balance to sOHM terms. sOHM is a 9 decimal token. balance given is in 9 decimal format.
        function fromG(uint256 amount) external view override returns (uint256) {
            return gOHM.balanceFrom(amount);
        }
        // Staking contract holds excess sOHM
        function circulatingSupply() public view override returns (uint256) {
            return
                _totalSupply.sub(balanceOf(stakingContract)).add(gOHM.balanceFrom(IERC20(address(gOHM)).totalSupply())).add(
                    IStaking(stakingContract).supplyInWarmup()
                );
        }
        function index() public view override returns (uint256) {
            return balanceForGons(INDEX);
        }
        function allowance(address owner_, address spender) public view override(IERC20, ERC20) returns (uint256) {
            return _allowedValue[owner_][spender];
        }
    }

    File 3 of 3: OlympusERC20Token
    // SPDX-License-Identifier: AGPL-3.0-or-later
    
    // File: interfaces/IOlympusAuthority.sol
    
    
    pragma solidity =0.7.5;
    
    interface IOlympusAuthority {
        /* ========== EVENTS ========== */
        
        event GovernorPushed(address indexed from, address indexed to, bool _effectiveImmediately);
        event GuardianPushed(address indexed from, address indexed to, bool _effectiveImmediately);    
        event PolicyPushed(address indexed from, address indexed to, bool _effectiveImmediately);    
        event VaultPushed(address indexed from, address indexed to, bool _effectiveImmediately);    
    
        event GovernorPulled(address indexed from, address indexed to);
        event GuardianPulled(address indexed from, address indexed to);
        event PolicyPulled(address indexed from, address indexed to);
        event VaultPulled(address indexed from, address indexed to);
    
        /* ========== VIEW ========== */
        
        function governor() external view returns (address);
        function guardian() external view returns (address);
        function policy() external view returns (address);
        function vault() external view returns (address);
    }
    // File: types/OlympusAccessControlled.sol
    
    
    pragma solidity >=0.7.5;
    
    
    abstract contract OlympusAccessControlled {
    
        /* ========== EVENTS ========== */
    
        event AuthorityUpdated(IOlympusAuthority indexed authority);
    
        string UNAUTHORIZED = "UNAUTHORIZED"; // save gas
    
        /* ========== STATE VARIABLES ========== */
    
        IOlympusAuthority public authority;
    
    
        /* ========== Constructor ========== */
    
        constructor(IOlympusAuthority _authority) {
            authority = _authority;
            emit AuthorityUpdated(_authority);
        }
        
    
        /* ========== MODIFIERS ========== */
        
        modifier onlyGovernor() {
            require(msg.sender == authority.governor(), UNAUTHORIZED);
            _;
        }
        
        modifier onlyGuardian() {
            require(msg.sender == authority.guardian(), UNAUTHORIZED);
            _;
        }
        
        modifier onlyPolicy() {
            require(msg.sender == authority.policy(), UNAUTHORIZED);
            _;
        }
    
        modifier onlyVault() {
            require(msg.sender == authority.vault(), UNAUTHORIZED);
            _;
        }
        
        /* ========== GOV ONLY ========== */
        
        function setAuthority(IOlympusAuthority _newAuthority) external onlyGovernor {
            authority = _newAuthority;
            emit AuthorityUpdated(_newAuthority);
        }
    }
    
    // File: cryptography/ECDSA.sol
    
    
    
    pragma solidity ^0.7.5;
    
    /**
     * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
     *
     * These functions can be used to verify that a message was signed by the holder
     * of the private keys of a given address.
     */
    library ECDSA {
        enum RecoverError {
            NoError,
            InvalidSignature,
            InvalidSignatureLength,
            InvalidSignatureS,
            InvalidSignatureV
        }
    
        function _throwError(RecoverError error) private pure {
            if (error == RecoverError.NoError) {
                return; // no error: do nothing
            } else if (error == RecoverError.InvalidSignature) {
                revert("ECDSA: invalid signature");
            } else if (error == RecoverError.InvalidSignatureLength) {
                revert("ECDSA: invalid signature length");
            } else if (error == RecoverError.InvalidSignatureS) {
                revert("ECDSA: invalid signature 's' value");
            } else if (error == RecoverError.InvalidSignatureV) {
                revert("ECDSA: invalid signature 'v' value");
            }
        }
    
        /**
         * @dev Returns the address that signed a hashed message (`hash`) with
         * `signature` or error string. This address can then be used for verification purposes.
         *
         * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
         * this function rejects them by requiring the `s` value to be in the lower
         * half order, and the `v` value to be either 27 or 28.
         *
         * IMPORTANT: `hash` _must_ be the result of a hash operation for the
         * verification to be secure: it is possible to craft signatures that
         * recover to arbitrary addresses for non-hashed data. A safe way to ensure
         * this is by receiving a hash of the original message (which may otherwise
         * be too long), and then calling {toEthSignedMessageHash} on it.
         *
         * Documentation for signature generation:
         * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
         * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
         *
         * _Available since v4.3._
         */
        function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
            // Check the signature length
            // - case 65: r,s,v signature (standard)
            // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
            if (signature.length == 65) {
                bytes32 r;
                bytes32 s;
                uint8 v;
                // ecrecover takes the signature parameters, and the only way to get them
                // currently is to use assembly.
                assembly {
                    r := mload(add(signature, 0x20))
                    s := mload(add(signature, 0x40))
                    v := byte(0, mload(add(signature, 0x60)))
                }
                return tryRecover(hash, v, r, s);
            } else if (signature.length == 64) {
                bytes32 r;
                bytes32 vs;
                // ecrecover takes the signature parameters, and the only way to get them
                // currently is to use assembly.
                assembly {
                    r := mload(add(signature, 0x20))
                    vs := mload(add(signature, 0x40))
                }
                return tryRecover(hash, r, vs);
            } else {
                return (address(0), RecoverError.InvalidSignatureLength);
            }
        }
    
        /**
         * @dev Returns the address that signed a hashed message (`hash`) with
         * `signature`. This address can then be used for verification purposes.
         *
         * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
         * this function rejects them by requiring the `s` value to be in the lower
         * half order, and the `v` value to be either 27 or 28.
         *
         * IMPORTANT: `hash` _must_ be the result of a hash operation for the
         * verification to be secure: it is possible to craft signatures that
         * recover to arbitrary addresses for non-hashed data. A safe way to ensure
         * this is by receiving a hash of the original message (which may otherwise
         * be too long), and then calling {toEthSignedMessageHash} on it.
         */
        function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
            (address recovered, RecoverError error) = tryRecover(hash, signature);
            _throwError(error);
            return recovered;
        }
    
        /**
         * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
         *
         * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
         *
         * _Available since v4.3._
         */
        function tryRecover(
            bytes32 hash,
            bytes32 r,
            bytes32 vs
        ) internal pure returns (address, RecoverError) {
            bytes32 s;
            uint8 v;
            assembly {
                s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
                v := add(shr(255, vs), 27)
            }
            return tryRecover(hash, v, r, s);
        }
    
        /**
         * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
         *
         * _Available since v4.2._
         */
        function recover(
            bytes32 hash,
            bytes32 r,
            bytes32 vs
        ) internal pure returns (address) {
            (address recovered, RecoverError error) = tryRecover(hash, r, vs);
            _throwError(error);
            return recovered;
        }
    
        /**
         * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
         * `r` and `s` signature fields separately.
         *
         * _Available since v4.3._
         */
        function tryRecover(
            bytes32 hash,
            uint8 v,
            bytes32 r,
            bytes32 s
        ) internal pure returns (address, RecoverError) {
            // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
            // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
            // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
            // signatures from current libraries generate a unique signature with an s-value in the lower half order.
            //
            // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
            // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
            // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
            // these malleable signatures as well.
            if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
                return (address(0), RecoverError.InvalidSignatureS);
            }
            if (v != 27 && v != 28) {
                return (address(0), RecoverError.InvalidSignatureV);
            }
    
            // If the signature is valid (and not malleable), return the signer address
            address signer = ecrecover(hash, v, r, s);
            if (signer == address(0)) {
                return (address(0), RecoverError.InvalidSignature);
            }
    
            return (signer, RecoverError.NoError);
        }
    
        /**
         * @dev Overload of {ECDSA-recover} that receives the `v`,
         * `r` and `s` signature fields separately.
         */
        function recover(
            bytes32 hash,
            uint8 v,
            bytes32 r,
            bytes32 s
        ) internal pure returns (address) {
            (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
            _throwError(error);
            return recovered;
        }
    
        /**
         * @dev Returns an Ethereum Signed Message, created from a `hash`. This
         * produces hash corresponding to the one signed with the
         * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
         * JSON-RPC method as part of EIP-191.
         *
         * See {recover}.
         */
        function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
            // 32 is the length in bytes of hash,
            // enforced by the type signature above
            return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
        }
    
        /**
         * @dev Returns an Ethereum Signed Typed Data, created from a
         * `domainSeparator` and a `structHash`. This produces hash corresponding
         * to the one signed with the
         * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
         * JSON-RPC method as part of EIP-712.
         *
         * See {recover}.
         */
        function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
            return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        }
    }
    // File: cryptography/EIP712.sol
    
    
    
    pragma solidity ^0.7.5;
    
    
    /**
     * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
     *
     * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
     * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
     * they need in their contracts using a combination of `abi.encode` and `keccak256`.
     *
     * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
     * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
     * ({_hashTypedDataV4}).
     *
     * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
     * the chain id to protect against replay attacks on an eventual fork of the chain.
     *
     * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
     * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
     *
     * _Available since v3.4._
     */
    abstract contract EIP712 {
        /* solhint-disable var-name-mixedcase */
        // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
        // invalidate the cached domain separator if the chain id changes.
        bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
        uint256 private immutable _CACHED_CHAIN_ID;
    
        bytes32 private immutable _HASHED_NAME;
        bytes32 private immutable _HASHED_VERSION;
        bytes32 private immutable _TYPE_HASH;
    
        /* solhint-enable var-name-mixedcase */
    
        /**
         * @dev Initializes the domain separator and parameter caches.
         *
         * The meaning of `name` and `version` is specified in
         * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
         *
         * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
         * - `version`: the current major version of the signing domain.
         *
         * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
         * contract upgrade].
         */
        constructor(string memory name, string memory version) {
    
            uint256 chainID;
            assembly {
                chainID := chainid()
            }
    
            bytes32 hashedName = keccak256(bytes(name));
            bytes32 hashedVersion = keccak256(bytes(version));
            bytes32 typeHash = keccak256(
                "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
            );
            _HASHED_NAME = hashedName;
            _HASHED_VERSION = hashedVersion;
            _CACHED_CHAIN_ID = chainID;
            _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
            _TYPE_HASH = typeHash;
        }
    
        /**
         * @dev Returns the domain separator for the current chain.
         */
        function _domainSeparatorV4() internal view returns (bytes32) {
    
            uint256 chainID;
            assembly {
                chainID := chainid()
            }
    
            if (chainID == _CACHED_CHAIN_ID) {
                return _CACHED_DOMAIN_SEPARATOR;
            } else {
                return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
            }
        }
    
        function _buildDomainSeparator(
            bytes32 typeHash,
            bytes32 nameHash,
            bytes32 versionHash
        ) private view returns (bytes32) {
            uint256 chainID;
            assembly {
                chainID := chainid()
            }
    
            return keccak256(abi.encode(typeHash, nameHash, versionHash, chainID, address(this)));
        }
    
        /**
         * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
         * function returns the hash of the fully encoded EIP712 message for this domain.
         *
         * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
         *
         * ```solidity
         * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
         *     keccak256("Mail(address to,string contents)"),
         *     mailTo,
         *     keccak256(bytes(mailContents))
         * )));
         * address signer = ECDSA.recover(digest, signature);
         * ```
         */
        function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
            return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
        }
    }
    // File: interfaces/IERC20Permit.sol
    
    
    pragma solidity >=0.7.5;
    
    /**
     * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
     * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
     *
     * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
     * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
     * need to send a transaction, and thus is not required to hold Ether at all.
     */
    interface IERC20Permit {
        /**
         * @dev Sets `value` as th xe allowance of `spender` over ``owner``'s tokens,
         * given ``owner``'s signed approval.
         *
         * IMPORTANT: The same issues {IERC20-approve} has related to transaction
         * ordering also apply here.
         *
         * Emits an {Approval} event.
         *
         * Requirements:
         *
         * - `spender` cannot be the zero address.
         * - `deadline` must be a timestamp in the future.
         * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
         * over the EIP712-formatted function arguments.
         * - the signature must use ``owner``'s current nonce (see {nonces}).
         *
         * For more information on the signature format, see the
         * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
         * section].
         */
        function permit(
            address owner,
            address spender,
            uint256 value,
            uint256 deadline,
            uint8 v,
            bytes32 r,
            bytes32 s
        ) external;
    
        /**
         * @dev Returns the current nonce for `owner`. This value must be
         * included whenever a signature is generated for {permit}.
         *
         * Every successful call to {permit} increases ``owner``'s nonce by one. This
         * prevents a signature from being used multiple times.
         */
        function nonces(address owner) external view returns (uint256);
    
        /**
         * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
         */
        // solhint-disable-next-line func-name-mixedcase
        function DOMAIN_SEPARATOR() external view returns (bytes32);
    }
    
    // File: interfaces/IERC20.sol
    
    
    pragma solidity >=0.7.5;
    
    interface IERC20 {
      /**
       * @dev Returns the amount of tokens in existence.
       */
      function totalSupply() external view returns (uint256);
    
      /**
       * @dev Returns the amount of tokens owned by `account`.
       */
      function balanceOf(address account) external view returns (uint256);
    
      /**
       * @dev Moves `amount` tokens from the caller's account to `recipient`.
       *
       * Returns a boolean value indicating whether the operation succeeded.
       *
       * Emits a {Transfer} event.
       */
      function transfer(address recipient, uint256 amount) external returns (bool);
    
      /**
       * @dev Returns the remaining number of tokens that `spender` will be
       * allowed to spend on behalf of `owner` through {transferFrom}. This is
       * zero by default.
       *
       * This value changes when {approve} or {transferFrom} are called.
       */
      function allowance(address owner, address spender) external view returns (uint256);
    
      /**
       * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
       *
       * Returns a boolean value indicating whether the operation succeeded.
       *
       * IMPORTANT: Beware that changing an allowance with this method brings the risk
       * that someone may use both the old and the new allowance by unfortunate
       * transaction ordering. One possible solution to mitigate this race
       * condition is to first reduce the spender's allowance to 0 and set the
       * desired value afterwards:
       * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
       *
       * Emits an {Approval} event.
       */
      function approve(address spender, uint256 amount) external returns (bool);
    
      /**
       * @dev Moves `amount` tokens from `sender` to `recipient` using the
       * allowance mechanism. `amount` is then deducted from the caller's
       * allowance.
       *
       * Returns a boolean value indicating whether the operation succeeded.
       *
       * Emits a {Transfer} event.
       */
      function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    
      /**
       * @dev Emitted when `value` tokens are moved from one account (`from`) to
       * another (`to`).
       *
       * Note that `value` may be zero.
       */
      event Transfer(address indexed from, address indexed to, uint256 value);
    
      /**
       * @dev Emitted when the allowance of a `spender` for an `owner` is set by
       * a call to {approve}. `value` is the new allowance.
       */
      event Approval(address indexed owner, address indexed spender, uint256 value);
    }
    
    // File: interfaces/IOHM.sol
    
    
    pragma solidity >=0.7.5;
    
    
    interface IOHM is IERC20 {
      function mint(address account_, uint256 amount_) external;
    
      function burn(uint256 amount) external;
    
      function burnFrom(address account_, uint256 amount_) external;
    }
    
    // File: libraries/SafeMath.sol
    
    
    pragma solidity ^0.7.5;
    
    
    // TODO(zx): Replace all instances of SafeMath with OZ implementation
    library SafeMath {
    
        function add(uint256 a, uint256 b) internal pure returns (uint256) {
            uint256 c = a + b;
            require(c >= a, "SafeMath: addition overflow");
    
            return c;
        }
    
        function sub(uint256 a, uint256 b) internal pure returns (uint256) {
            return sub(a, b, "SafeMath: subtraction overflow");
        }
    
        function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
            require(b <= a, errorMessage);
            uint256 c = a - b;
    
            return c;
        }
    
        function mul(uint256 a, uint256 b) internal pure returns (uint256) {
            if (a == 0) {
                return 0;
            }
    
            uint256 c = a * b;
            require(c / a == b, "SafeMath: multiplication overflow");
    
            return c;
        }
    
        function div(uint256 a, uint256 b) internal pure returns (uint256) {
            return div(a, b, "SafeMath: division by zero");
        }
    
        function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
            require(b > 0, errorMessage);
            uint256 c = a / b;
            assert(a == b * c + a % b); // There is no case in which this doesn't hold
    
            return c;
        }
    
        // Only used in the  BondingCalculator.sol
        function sqrrt(uint256 a) internal pure returns (uint c) {
            if (a > 3) {
                c = a;
                uint b = add( div( a, 2), 1 );
                while (b < c) {
                    c = b;
                    b = div( add( div( a, b ), b), 2 );
                }
            } else if (a != 0) {
                c = 1;
            }
        }
    
    }
    // File: libraries/Counters.sol
    
    
    pragma solidity ^0.7.5;
    
    
    library Counters {
        using SafeMath for uint256;
    
        struct Counter {
            // This variable should never be directly accessed by users of the library: interactions must be restricted to
            // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
            // this feature: see https://github.com/ethereum/solidity/issues/4637
            uint256 _value; // default: 0
        }
    
        function current(Counter storage counter) internal view returns (uint256) {
            return counter._value;
        }
    
        function increment(Counter storage counter) internal {
            // The {SafeMath} overflow check can be skipped here, see the comment at the top
            counter._value += 1;
        }
    
        function decrement(Counter storage counter) internal {
            counter._value = counter._value.sub(1);
        }
    }
    // File: types/ERC20.sol
    
    
    pragma solidity >=0.7.5;
    
    
    
    
    abstract contract ERC20 is IERC20 {
    
        using SafeMath for uint256;
    
        // TODO comment actual hash value.
        bytes32 constant private ERC20TOKEN_ERC1820_INTERFACE_ID = keccak256( "ERC20Token" );
        
        mapping (address => uint256) internal _balances;
    
        mapping (address => mapping (address => uint256)) internal _allowances;
    
        uint256 internal _totalSupply;
    
        string internal _name;
        
        string internal _symbol;
        
        uint8 internal immutable _decimals;
    
        constructor (string memory name_, string memory symbol_, uint8 decimals_) {
            _name = name_;
            _symbol = symbol_;
            _decimals = decimals_;
        }
    
        function name() public view returns (string memory) {
            return _name;
        }
    
        function symbol() public view returns (string memory) {
            return _symbol;
        }
    
        function decimals() public view virtual returns (uint8) {
            return _decimals;
        }
    
        function totalSupply() public view override returns (uint256) {
            return _totalSupply;
        }
    
        function balanceOf(address account) public view virtual override returns (uint256) {
            return _balances[account];
        }
    
        function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
            _transfer(msg.sender, recipient, amount);
            return true;
        }
    
        function allowance(address owner, address spender) public view virtual override returns (uint256) {
            return _allowances[owner][spender];
        }
    
        function approve(address spender, uint256 amount) public virtual override returns (bool) {
            _approve(msg.sender, spender, amount);
            return true;
        }
    
        function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
            _transfer(sender, recipient, amount);
            _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance"));
            return true;
        }
    
        function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
            _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
            return true;
        }
    
        function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
            _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
            return true;
        }
    
        function _transfer(address sender, address recipient, uint256 amount) internal virtual {
            require(sender != address(0), "ERC20: transfer from the zero address");
            require(recipient != address(0), "ERC20: transfer to the zero address");
    
            _beforeTokenTransfer(sender, recipient, amount);
    
            _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
            _balances[recipient] = _balances[recipient].add(amount);
            emit Transfer(sender, recipient, amount);
        }
    
        function _mint(address account, uint256 amount) internal virtual {
            require(account != address(0), "ERC20: mint to the zero address");
            _beforeTokenTransfer(address(0), account, amount);
            _totalSupply = _totalSupply.add(amount);
            _balances[account] = _balances[account].add(amount);
            emit Transfer(address(0), account, amount);
        }
    
        function _burn(address account, uint256 amount) internal virtual {
            require(account != address(0), "ERC20: burn from the zero address");
    
            _beforeTokenTransfer(account, address(0), amount);
    
            _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
            _totalSupply = _totalSupply.sub(amount);
            emit Transfer(account, address(0), amount);
        }
    
        function _approve(address owner, address spender, uint256 amount) internal virtual {
            require(owner != address(0), "ERC20: approve from the zero address");
            require(spender != address(0), "ERC20: approve to the zero address");
    
            _allowances[owner][spender] = amount;
            emit Approval(owner, spender, amount);
        }
    
      function _beforeTokenTransfer( address from_, address to_, uint256 amount_ ) internal virtual { }
    }
    
    // File: types/ERC20Permit.sol
    
    
    pragma solidity >=0.7.5;
    
    
    
    
    
    
    /**
     * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
     * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
     *
     * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
     * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
     * need to send a transaction, and thus is not required to hold Ether at all.
     *
     * _Available since v3.4._
     */
    abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
        using Counters for Counters.Counter;
    
        mapping(address => Counters.Counter) private _nonces;
    
        // solhint-disable-next-line var-name-mixedcase
        bytes32 private immutable _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
    
        /**
         * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
         *
         * It's a good idea to use the same `name` that is defined as the ERC20 token name.
         */
        constructor(string memory name) EIP712(name, "1") {}
    
        /**
         * @dev See {IERC20Permit-permit}.
         */
        function permit(
            address owner,
            address spender,
            uint256 value,
            uint256 deadline,
            uint8 v,
            bytes32 r,
            bytes32 s
        ) public virtual override {
            require(block.timestamp <= deadline, "ERC20Permit: expired deadline");
    
            bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));
    
            bytes32 hash = _hashTypedDataV4(structHash);
    
            address signer = ECDSA.recover(hash, v, r, s);
            require(signer == owner, "ERC20Permit: invalid signature");
    
            _approve(owner, spender, value);
        }
    
        /**
         * @dev See {IERC20Permit-nonces}.
         */
        function nonces(address owner) public view virtual override returns (uint256) {
            return _nonces[owner].current();
        }
    
        /**
         * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
         */
        // solhint-disable-next-line func-name-mixedcase
        function DOMAIN_SEPARATOR() external view override returns (bytes32) {
            return _domainSeparatorV4();
        }
    
        /**
         * @dev "Consume a nonce": return the current value and increment.
         *
         * _Available since v4.1._
         */
        function _useNonce(address owner) internal virtual returns (uint256 current) {
            Counters.Counter storage nonce = _nonces[owner];
            current = nonce.current();
            nonce.increment();
        }
    }
    
    // File: OlympusERC20.sol
    
    
    pragma solidity ^0.7.5;
    
    
    
    
    
    
    
    contract OlympusERC20Token is ERC20Permit, IOHM, OlympusAccessControlled {
        using SafeMath for uint256;
    
        constructor(address _authority) 
        ERC20("Olympus", "OHM", 9) 
        ERC20Permit("Olympus") 
        OlympusAccessControlled(IOlympusAuthority(_authority)) {}
    
        function mint(address account_, uint256 amount_) external override onlyVault {
            _mint(account_, amount_);
        }
    
        function burn(uint256 amount) external override {
            _burn(msg.sender, amount);
        }
    
        function burnFrom(address account_, uint256 amount_) external override {
            _burnFrom(account_, amount_);
        }
    
        function _burnFrom(address account_, uint256 amount_) internal {
            uint256 decreasedAllowance_ = allowance(account_, msg.sender).sub(amount_, "ERC20: burn amount exceeds allowance");
    
            _approve(account_, msg.sender, decreasedAllowance_);
            _burn(account_, amount_);
        }
    }