ETH Price: $2,267.54 (+2.28%)

Contract

0xC6e09feb984aCAb2C956c9aF56b9B3729A1Bf3c8
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exit180593732023-09-03 23:54:59369 days ago1693785299IN
0xC6e09feb...29A1Bf3c8
0 ETH0.0010990310.32263557
Claim168793752023-03-21 23:49:23535 days ago1679442563IN
0xC6e09feb...29A1Bf3c8
0 ETH0.0011649314.08394236
Exit156877952022-10-06 8:12:47702 days ago1665043967IN
0xC6e09feb...29A1Bf3c8
0 ETH0.000715675.79171562
Stake155315522022-09-14 6:55:08724 days ago1663138508IN
0xC6e09feb...29A1Bf3c8
0 ETH0.0013173110.76108391
Claim151304492022-07-12 22:04:48787 days ago1657663488IN
0xC6e09feb...29A1Bf3c8
0 ETH0.002079819.69516866
Exit149275312022-06-08 15:45:02822 days ago1654703102IN
0xC6e09feb...29A1Bf3c8
0 ETH0.02040666145.08828297
Claim148182642022-05-21 16:20:14840 days ago1653150014IN
0xC6e09feb...29A1Bf3c8
0 ETH0.0014968916.91412123
Withdraw139277972022-01-02 18:58:33979 days ago1641149913IN
0xC6e09feb...29A1Bf3c8
0 ETH0.01443236136.3486019
Claim139017052021-12-29 17:53:35983 days ago1640800415IN
0xC6e09feb...29A1Bf3c8
0 ETH0.00958314105.82094813
Withdraw137736122021-12-09 22:16:511002 days ago1639088211IN
0xC6e09feb...29A1Bf3c8
0 ETH0.0067042863.32387184
Stake134791632021-10-24 8:39:101049 days ago1635064750IN
0xC6e09feb...29A1Bf3c8
0 ETH0.0057185244.94208781
Exit134572352021-10-20 22:27:101052 days ago1634768830IN
0xC6e09feb...29A1Bf3c8
0 ETH0.0102631683.06892283
Stake134367832021-10-17 17:34:211056 days ago1634492061IN
0xC6e09feb...29A1Bf3c8
0 ETH0.0116097105.39525488
Exit134301582021-10-16 16:36:311057 days ago1634402191IN
0xC6e09feb...29A1Bf3c8
0 ETH0.0111461380.39044681
Exit133537722021-10-04 16:54:421069 days ago1633366482IN
0xC6e09feb...29A1Bf3c8
0 ETH0.01622478131.32159427
Exit132261022021-09-14 20:52:271089 days ago1631652747IN
0xC6e09feb...29A1Bf3c8
0 ETH0.0139265788.97975294
Exit132108812021-09-12 12:13:071091 days ago1631448787IN
0xC6e09feb...29A1Bf3c8
0 ETH0.00562640
Claim132101862021-09-12 9:41:291091 days ago1631439689IN
0xC6e09feb...29A1Bf3c8
0 ETH0.0042345640.1
Exit131899122021-09-09 6:19:051094 days ago1631168345IN
0xC6e09feb...29A1Bf3c8
0 ETH0.01436381102.12452058
Withdraw131729832021-09-06 15:28:461097 days ago1630942126IN
0xC6e09feb...29A1Bf3c8
0 ETH0.01252808113.21135396
Claim131729392021-09-06 15:17:141097 days ago1630941434IN
0xC6e09feb...29A1Bf3c8
0 ETH0.0077063485.09651843
Exit131598242021-09-04 14:48:461099 days ago1630766926IN
0xC6e09feb...29A1Bf3c8
0 ETH0.011613794
Exit131403882021-09-01 14:40:461102 days ago1630507246IN
0xC6e09feb...29A1Bf3c8
0 ETH0.0148688395
Claim131075292021-08-27 12:52:451107 days ago1630068765IN
0xC6e09feb...29A1Bf3c8
0 ETH0.006425172.6
Withdraw131074562021-08-27 12:37:531107 days ago1630067873IN
0xC6e09feb...29A1Bf3c8
0 ETH0.01069317101
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Incentivizer

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : Incentivizer.sol
/*
    Copyright 2021 Empty Set Squad <[email protected]>

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity 0.5.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "../registry/RegistryAccessor.sol";
import "../lib/Decimal.sol";
import "../Interfaces.sol";

/**
 * @title Incentivizer
 * @notice Generic incentivization contract that allows one ERC20 to be staked while earning
 *         either the same ERC20 or a different ERC20 as a reward
 * @dev Reward program can be adjusted or ended at any time through governance as long as there
 *      is sufficient balance. Architecture based off the Synthetix StakingRewards contract:
 *      https://github.com/Synthetixio/synthetix/blob/master/contracts/StakingRewards.sol
 */
contract Incentivizer is RegistryAccessor, ReentrancyGuard {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;
    using Decimal for Decimal.D256;

    /**
     * @notice Emitted when the reward program is updated with a rate `rate` completing `complete`
     */
    event RewardProgramUpdate(uint256 rate, uint256 complete);

    /**
     * @notice Emitted when the owner rescues `amount` of `token`
     */
    event Rescue(address token, uint256 amount);

    /**
     * @notice Emitted on reward accrual when `newReward` reward tokens are dispersed at
     *         timestamp `updated`, updating the rewards per unit to `rewardPerUnit`
     */
    event Settle(uint256 rewardPerUnit, uint256 newReward, uint256 updated);

    /**
     * @notice Emitted on when `account` stakes `amount` of the underlying token
     */
    event Stake(address account, uint256 amount);

    /**
     * @notice Emitted on when `account` withdraws `amount` of the underlying token
     */
    event Withdrawal(address account, uint256 amount);

    /**
     * @notice Emitted on when `account` claims `amount` of the reward token
     */
    event Claim(address account, uint256 amount);

    /**
     * @notice ERC20 token that will be used as underlying for staking
     */
    IERC20 public underlyingToken;

    /**
     * @notice ERC20 token that will be dispersed as rewards
     */
    IERC20 public rewardToken;

    /**
     * @notice Quantity of  rewardToken` dispersed to the entire staking pool per second
     */
    uint256 public rewardRate;

    /**
     * @notice Timestamp the current reward program ends
     */
    uint256 public rewardComplete;

    /**
     * @notice Timestamp that reward accrual was last settled
     */
    uint256 public rewardUpdated;

    /**
     * @notice Mapping of underlying token balance per account
     */
    mapping(address => uint256) public balanceOfUnderlying;

    /**
     * @notice Total underlying token balance staked in this contract
     */
    uint256 public totalUnderlying;

    /**
     * @notice Total outstanding unclaimed rewards that have accrued so far
     */
    uint256 public totalReward;

    /**
     * @notice Mapping of settled reward balance per account
     */
    mapping(address => uint256) internal _reward;

    /**
     * @notice Mapping of last settled rewardPerUnit per account
     */
    mapping(address => Decimal.D256) internal _settled;

    /**
     * @notice Monotonically increasing accumulator to track the reward amount per unit of staked underlying
     */
    Decimal.D256 internal _rewardPerUnit;


    /**
     * @notice Constructs the Incentivizer
     * @param underlying_ Underlying ERC20 token for staking
     * @param reward_ Reward ERC20 token for rewards
     * @notice registry_ Address of the Continuous ESDS contract registry
     */
    constructor(IERC20 underlying_, IERC20 reward_, address registry_) public {
        underlyingToken = underlying_;
        rewardToken = reward_;
        setRegistry(registry_);
    }

    // ADMIN

    /**
     * @notice Updates the rate and completion time for this contract's reward program
     * @dev Owner only - governance hook
     *      Insufficient funds will revert - excess funds will be refunded to the reserve
     * @param rate Reward token amount to disperse to enter staking pool per second
     * @param complete Timestamp the reward program ends
     */
    function updateRewardProgram(uint256 rate, uint256 complete) external onlyOwner {
        require(complete > block.timestamp, "Incentivizer: already ended");

        _settle();

        // Set new reward rate
        (rewardRate, rewardComplete, rewardUpdated) = (rate, complete, block.timestamp);

        // Return rewards in excess of the required amount
        (, uint256 excessRewards) = _verifyBalance();
        rewardToken.safeTransfer(registry.reserve(), excessRewards);

        emit RewardProgramUpdate(rate, complete);
    }

    /**
     * @notice Allows the owner to withdraw stuck ERC20 tokens to the reserve
     * @dev Owner only - governance hook
     *      Non-reentrant
     *      Cannot withdraw the underlying token
     *      Cannot withdraw more of the reward token than is needed for the current reward program
     * @param token ERC20 token to withdraw
     * @param amount Amount to withdraw
     */
    function rescue(address token, uint256 amount) external nonReentrant onlyOwner {
        IERC20(token).safeTransfer(registry.reserve(), amount);

        if (token == address(rewardToken) || token == address(underlyingToken)) {
            _verifyBalance();
        }

        emit Rescue(token, amount);
    }

    /**
     * @notice Verifies the underlying and reward balances of this contract cover all outstanding liabilities
     * @dev Internal only - helper
     *      Reverts if there are any insufficient funds
     * @return (excess underlying balance, excess reward balance), values are equal if underlyingToken == rewardToken
     */
    function _verifyBalance() private view returns (uint256, uint256) {
        uint256 rewardTokenBalance = rewardToken.balanceOf(address(this));
        uint256 underlyingTokenBalance = underlyingToken.balanceOf(address(this));

        uint256 underlyingRequirement = totalUnderlying;
        uint256 rewardRequirement = totalReward.add(totalProvisionedReward());

        return (
            underlyingTokenBalance
                .sub(totalUnderlying, "Incentivizer: insufficient underlying")
                .sub(underlyingToken == rewardToken ? rewardRequirement : 0, "Incentivizer: insufficient rewards"),
            rewardTokenBalance
                .sub(rewardRequirement, "Incentivizer: insufficient rewards")
                .sub(underlyingToken == rewardToken ? underlyingRequirement : 0, "Incentivizer: insufficient underlying")
        );
    }

    // FLYWHEEL

    /**
     * @notice Total rewards that have been provisioned for the current reward program,
     *         but not yet settled or paid out
     * @return Total provisioned rewards
     */
    function totalProvisionedReward() public view returns (uint256) {
        uint256 complete = rewardComplete;
        uint256 updated = rewardUpdated;

        return complete > updated ? complete.sub(updated).mul(rewardRate) : 0;
    }

    /**
     * @notice Returns either the current timestamp or the last applicable timestamp of the reward program
     * @return Most recent reward-applicable timestamp
     */
    function nowOrComplete() public view returns (uint256) {
        uint256 complete = rewardComplete;
        uint256 latest = block.timestamp;

        return latest > complete ? complete : latest;
    }

    /**
     * @notice Monotonically increasing accumulator to track the reward amount per unit of staked underlying
     * @dev Computes the current effective rewardPerUnit value as if there was a settlement now
     * @return Effective rewards per unit
     */
    function rewardPerUnit() public view returns (Decimal.D256 memory) {
        if (totalUnderlying == 0) {
            return _rewardPerUnit;
        } else {
            return _rewardPerUnit
                .add(Decimal.from(nowOrComplete().sub(rewardUpdated).mul(rewardRate)).div(totalUnderlying));
        }
    }

    /**
     * @notice Accrues and updates rewards since last settlement
     * @dev Internal only
     */
    function _settle() internal {
        uint256 nowOrComplete = nowOrComplete();
        Decimal.D256 memory newRewardPerUnit = rewardPerUnit();
        uint256 newReward = newRewardPerUnit.sub(_rewardPerUnit).mul(totalUnderlying).asUint256();
        uint256 newTotalReward = totalReward.add(newReward);

        _rewardPerUnit = newRewardPerUnit;
        totalReward = newTotalReward;
        rewardUpdated = nowOrComplete;

        emit Settle(newRewardPerUnit.value, newReward, nowOrComplete);
    }

    /**
     * @notice Accrues and records rewards for `account` to simplify accounting math
     * @dev Internal only
     * @param account Account to settle rewards for
     */
    function _settleAccount(address account) internal {
        _settle();

        _reward[account] = balanceOfReward(account);
        _settled[account] = _rewardPerUnit;
    }

    // EXTERNAL

    /**
     * @notice Balance of all accrued rewards (including unsettled) for `account`
     * @param account Account to retrieve balance for
     */
    function balanceOfReward(address account) public view returns (uint256) {
        return _reward[account].add(
            rewardPerUnit().sub(_settled[account])   // Since last checkpoint
                .mul(balanceOfUnderlying[account])   // Multiply per unit
                .asUint256()                         // Convert and truncate
        );
    }

    /**
     * @notice Deposit `amount` underlying tokens to start accruing rewards
     * @dev Non-reentrant
     * @param amount Amount of underlying tokens for the caller to deposit
     */
    function stake(uint256 amount) external nonReentrant {
        require(amount != 0, "Incentivizer: zero amount");

        _settleAccount(msg.sender);

        // Increment account balance
        balanceOfUnderlying[msg.sender] = balanceOfUnderlying[msg.sender].add(amount);
        totalUnderlying = totalUnderlying.add(amount);

        // Transfer in token amount
        underlyingToken.safeTransferFrom(msg.sender, address(this), amount);

        emit Stake(msg.sender, amount);
    }

    /**
     * @notice Withdraw `amount` underlying tokens
     * @dev Non-reentrant
     * @param amount Amount of underlying tokens for the caller to withdraw
     */
    function withdraw(uint256 amount) public nonReentrant {
        require(amount != 0, "Incentivizer: zero amount");

        _settleAccount(msg.sender);

        // Decrement account balance
        balanceOfUnderlying[msg.sender] = balanceOfUnderlying[msg.sender].sub(amount, "Incentivizer: insufficient balance");
        totalUnderlying = totalUnderlying.sub(amount, "Incentivizer: insufficient balance");

        // Transfer out token amount
        underlyingToken.safeTransfer(msg.sender, amount);

        emit Withdrawal(msg.sender, amount);
    }

    /**
     * @notice Claim all accrued reward tokens for caller
     * @dev Non-reentrant
     */
    function claim() public nonReentrant {
        _settleAccount(msg.sender);

        uint256 rewardBalance = _reward[msg.sender];
        rewardToken.safeTransfer(msg.sender, rewardBalance);

        _reward[msg.sender] = 0;
        totalReward = totalReward.sub(rewardBalance);

        emit Claim(msg.sender, rewardBalance);
    }

    /**
     * @notice Claim all accrued reward tokens withdraw all underlying tokens for caller
     */
    function exit() external {
        withdraw(balanceOfUnderlying[msg.sender]);
        claim();
    }
}

File 2 of 12 : Interfaces.sol
/*
    Copyright 2020, 2021 Empty Set Squad <[email protected]>

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity 0.5.17;
pragma experimental ABIEncoderV2;

import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./lib/Decimal.sol";

/**
 * @title IManagedToken
 * @notice Generic interface for ERC20 tokens that can be minted and burned by their owner
 * @dev Used by Dollar and Stake in this protocol
 */
interface IManagedToken {

    /**
     * @notice Mints `amount` tokens to the {owner}
     * @param amount Amount of token to mint
     */
    function burn(uint256 amount) external;

    /**
     * @notice Burns `amount` tokens from the {owner}
     * @param amount Amount of token to burn
     */
    function mint(uint256 amount) external;
}

/**
 * @title IGovToken
 * @notice Generic interface for ERC20 tokens that have Compound-governance features
 * @dev Used by Stake and other compatible reserve-held tokens
 */
interface IGovToken {

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) external;
}

/**
 * @title IReserve
 * @notice Interface for the protocol reserve
 */
interface IReserve {
    /**
     * @notice The price that one ESD can currently be sold to the reserve for
     * @dev Returned as a Decimal.D256
     *      Normalizes for decimals (e.g. 1.00 USDC == Decimal.one())
     * @return Current ESD redemption price
     */
    function redeemPrice() external view returns (Decimal.D256 memory);
}

interface IRegistry {
    /**
     * @notice USDC token contract
     */
    function usdc() external view returns (address);

    /**
     * @notice Compound protocol cUSDC pool
     */
    function cUsdc() external view returns (address);

    /**
     * @notice ESD stablecoin contract
     */
    function dollar() external view returns (address);

    /**
     * @notice ESDS governance token contract
     */
    function stake() external view returns (address);

    /**
     * @notice ESD reserve contract
     */
    function reserve() external view returns (address);

    /**
     * @notice ESD governor contract
     */
    function governor() external view returns (address);

    /**
     * @notice ESD timelock contract, owner for the protocol
     */
    function timelock() external view returns (address);

    /**
     * @notice Migration contract to bride v1 assets with current system
     */
    function migrator() external view returns (address);

    /**
     * @notice Registers a new address for USDC
     * @dev Owner only - governance hook
     * @param newValue New address to register
     */
    function setUsdc(address newValue) external;

    /**
     * @notice Registers a new address for cUSDC
     * @dev Owner only - governance hook
     * @param newValue New address to register
     */
    function setCUsdc(address newValue) external;

    /**
     * @notice Registers a new address for ESD
     * @dev Owner only - governance hook
     * @param newValue New address to register
     */
    function setDollar(address newValue) external;

    /**
     * @notice Registers a new address for ESDS
     * @dev Owner only - governance hook
     * @param newValue New address to register
     */
    function setStake(address newValue) external;

    /**
     * @notice Registers a new address for the reserve
     * @dev Owner only - governance hook
     * @param newValue New address to register
     */
    function setReserve(address newValue) external;

    /**
     * @notice Registers a new address for the governor
     * @dev Owner only - governance hook
     * @param newValue New address to register
     */
    function setGovernor(address newValue) external;

    /**
     * @notice Registers a new address for the timelock
     * @dev Owner only - governance hook
     *      Does not automatically update the owner of all owned protocol contracts
     * @param newValue New address to register
     */
    function setTimelock(address newValue) external;

    /**
     * @notice Registers a new address for the v1 migration contract
     * @dev Owner only - governance hook
     * @param newValue New address to register
     */
    function setMigrator(address newValue) external;
}

File 3 of 12 : Decimal.sol
/*
    Copyright 2019 dYdX Trading Inc.
    Copyright 2020, 2021 Empty Set Squad <[email protected]>

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity 0.5.17;
pragma experimental ABIEncoderV2;

import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol";

/**
 * @title Decimal
 * @notice Library that defines a fixed-point number with 18 decimal places.
 *
 * audit-info: Extended from dYdX's Decimal library:
 *             https://github.com/dydxprotocol/solo/blob/master/contracts/protocol/lib/Decimal.sol
 */
library Decimal {
    using SafeMath for uint256;

    // ============ Constants ============

    /**
     * @notice Fixed-point base for Decimal.D256 values
     */
    uint256 constant BASE = 10**18;

    // ============ Structs ============


    /**
     * @notice Main struct to hold Decimal.D256 state
     * @dev Represents the number value / BASE
     */
    struct D256 {
        /**
         * @notice Underlying value of the Decimal.D256
         */
        uint256 value;
    }

    // ============ Static Functions ============

    /**
     * @notice Returns a new Decimal.D256 struct initialized to represent 0.0
     * @return Decimal.D256 representation of 0.0
     */
    function zero()
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: 0 });
    }

    /**
     * @notice Returns a new Decimal.D256 struct initialized to represent 1.0
     * @return Decimal.D256 representation of 1.0
     */
    function one()
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: BASE });
    }

    /**
     * @notice Returns a new Decimal.D256 struct initialized to represent `a`
     * @param a Integer to transform to Decimal.D256 type
     * @return Decimal.D256 representation of integer`a`
     */
    function from(
        uint256 a
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: a.mul(BASE) });
    }

    /**
     * @notice Returns a new Decimal.D256 struct initialized to represent `a` / `b`
     * @param a Numerator of ratio to transform to Decimal.D256 type
     * @param b Denominator of ratio to transform to Decimal.D256 type
     * @return Decimal.D256 representation of ratio `a` / `b`
     */
    function ratio(
        uint256 a,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: getPartial(a, BASE, b) });
    }

    // ============ Self Functions ============

    /**
     * @notice Adds integer `b` to Decimal.D256 `self`
     * @param self Original Decimal.D256 number
     * @param b Integer to add to `self`
     * @return Resulting Decimal.D256
     */
    function add(
        D256 memory self,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.add(b.mul(BASE)) });
    }

    /**
     * @notice Subtracts integer `b` from Decimal.D256 `self`
     * @param self Original Decimal.D256 number
     * @param b Integer to subtract from `self`
     * @return Resulting Decimal.D256
     */
    function sub(
        D256 memory self,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.sub(b.mul(BASE)) });
    }

    /**
     * @notice Subtracts integer `b` from Decimal.D256 `self`
     * @dev Reverts on underflow with reason `reason`
     * @param self Original Decimal.D256 number
     * @param b Integer to subtract from `self`
     * @param reason Revert reason
     * @return Resulting Decimal.D256
     */
    function sub(
        D256 memory self,
        uint256 b,
        string memory reason
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.sub(b.mul(BASE), reason) });
    }

    /**
     * @notice Subtracts integer `b` from Decimal.D256 `self`
     * @param self Original Decimal.D256 number
     * @param b Integer to subtract from `self`
     * @return 0 on underflow, or the Resulting Decimal.D256
     */
    function subOrZero(
        D256 memory self,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        uint256 amount = b.mul(BASE);
        return D256({ value: self.value > amount ? self.value.sub(amount) : 0 });
    }

    /**
     * @notice Multiplies Decimal.D256 `self` by integer `b`
     * @param self Original Decimal.D256 number
     * @param b Integer to multiply `self` by
     * @return Resulting Decimal.D256
     */
    function mul(
        D256 memory self,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.mul(b) });
    }

    /**
     * @notice Divides Decimal.D256 `self` by integer `b`
     * @param self Original Decimal.D256 number
     * @param b Integer to divide `self` by
     * @return Resulting Decimal.D256
     */
    function div(
        D256 memory self,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.div(b) });
    }

    /**
     * @notice Divides Decimal.D256 `self` by integer `b`
     * @dev Reverts on divide-by-zero with reason `reason`
     * @param self Original Decimal.D256 number
     * @param b Integer to divide `self` by
     * @param reason Revert reason
     * @return Resulting Decimal.D256
     */
    function div(
        D256 memory self,
        uint256 b,
        string memory reason
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.div(b, reason) });
    }

    /**
     * @notice Exponentiates Decimal.D256 `self` to the power of integer `b`
     * @dev Not optimized - is only suitable to use with small exponents
     * @param self Original Decimal.D256 number
     * @param b Integer exponent
     * @return Resulting Decimal.D256
     */
    function pow(
        D256 memory self,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        if (b == 0) {
            return from(1);
        }

        D256 memory temp = D256({ value: self.value });
        for (uint256 i = 1; i < b; i++) {
            temp = mul(temp, self);
        }

        return temp;
    }

    /**
     * @notice Adds Decimal.D256 `b` to Decimal.D256 `self`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to add to `self`
     * @return Resulting Decimal.D256
     */
    function add(
        D256 memory self,
        D256 memory b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.add(b.value) });
    }

    /**
     * @notice Subtracts Decimal.D256 `b` from Decimal.D256 `self`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to subtract from `self`
     * @return Resulting Decimal.D256
     */
    function sub(
        D256 memory self,
        D256 memory b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.sub(b.value) });
    }

    /**
     * @notice Subtracts Decimal.D256 `b` from Decimal.D256 `self`
     * @dev Reverts on underflow with reason `reason`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to subtract from `self`
     * @param reason Revert reason
     * @return Resulting Decimal.D256
     */
    function sub(
        D256 memory self,
        D256 memory b,
        string memory reason
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.sub(b.value, reason) });
    }

    /**
     * @notice Subtracts Decimal.D256 `b` from Decimal.D256 `self`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to subtract from `self`
     * @return 0 on underflow, or the Resulting Decimal.D256
     */
    function subOrZero(
        D256 memory self,
        D256 memory b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value > b.value ? self.value.sub(b.value) : 0 });
    }

    /**
     * @notice Multiplies Decimal.D256 `self` by Decimal.D256 `b`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to multiply `self` by
     * @return Resulting Decimal.D256
     */
    function mul(
        D256 memory self,
        D256 memory b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: getPartial(self.value, b.value, BASE) });
    }

    /**
     * @notice Divides Decimal.D256 `self` by Decimal.D256 `b`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to divide `self` by
     * @return Resulting Decimal.D256
     */
    function div(
        D256 memory self,
        D256 memory b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: getPartial(self.value, BASE, b.value) });
    }

    /**
     * @notice Divides Decimal.D256 `self` by Decimal.D256 `b`
     * @dev Reverts on divide-by-zero with reason `reason`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to divide `self` by
     * @param reason Revert reason
     * @return Resulting Decimal.D256
     */
    function div(
        D256 memory self,
        D256 memory b,
        string memory reason
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: getPartial(self.value, BASE, b.value, reason) });
    }

    /**
     * @notice Checks if `b` is equal to `self`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to compare
     * @return Whether `b` is equal to `self`
     */
    function equals(D256 memory self, D256 memory b) internal pure returns (bool) {
        return self.value == b.value;
    }

    /**
     * @notice Checks if `b` is greater than `self`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to compare
     * @return Whether `b` is greater than `self`
     */
    function greaterThan(D256 memory self, D256 memory b) internal pure returns (bool) {
        return compareTo(self, b) == 2;
    }

    /**
     * @notice Checks if `b` is less than `self`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to compare
     * @return Whether `b` is less than `self`
     */
    function lessThan(D256 memory self, D256 memory b) internal pure returns (bool) {
        return compareTo(self, b) == 0;
    }

    /**
     * @notice Checks if `b` is greater than or equal to `self`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to compare
     * @return Whether `b` is greater than or equal to `self`
     */
    function greaterThanOrEqualTo(D256 memory self, D256 memory b) internal pure returns (bool) {
        return compareTo(self, b) > 0;
    }

    /**
     * @notice Checks if `b` is less than or equal to `self`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to compare
     * @return Whether `b` is less than or equal to `self`
     */
    function lessThanOrEqualTo(D256 memory self, D256 memory b) internal pure returns (bool) {
        return compareTo(self, b) < 2;
    }

    /**
     * @notice Checks if `self` is equal to 0
     * @param self Original Decimal.D256 number
     * @return Whether `self` is equal to 0
     */
    function isZero(D256 memory self) internal pure returns (bool) {
        return self.value == 0;
    }

    /**
     * @notice Truncates the decimal part of `self` and returns the integer value as a uint256
     * @param self Original Decimal.D256 number
     * @return Truncated Integer value as a uint256
     */
    function asUint256(D256 memory self) internal pure returns (uint256) {
        return self.value.div(BASE);
    }

    // ============ General Math ============

    /**
     * @notice Determines the minimum of `a` and `b`
     * @param a First Decimal.D256 number to compare
     * @param b Second Decimal.D256 number to compare
     * @return Resulting minimum Decimal.D256
     */
    function min(D256 memory a, D256 memory b) internal pure returns (Decimal.D256 memory) {
        return lessThan(a, b) ? a : b;
    }

    /**
     * @notice Determines the maximum of `a` and `b`
     * @param a First Decimal.D256 number to compare
     * @param b Second Decimal.D256 number to compare
     * @return Resulting maximum Decimal.D256
     */
    function max(D256 memory a, D256 memory b) internal pure returns (Decimal.D256 memory) {
        return greaterThan(a, b) ? a : b;
    }

    // ============ Core Methods ============

    /**
     * @notice Multiplies `target` by ratio `numerator` / `denominator`
     * @dev Internal only - helper
     * @param target Original Integer number
     * @param numerator Integer numerator of ratio
     * @param denominator Integer denominator of ratio
     * @return Resulting Decimal.D256 number
     */
    function getPartial(
        uint256 target,
        uint256 numerator,
        uint256 denominator
    )
    private
    pure
    returns (uint256)
    {
        return target.mul(numerator).div(denominator);
    }

    /**
     * @notice Multiplies `target` by ratio `numerator` / `denominator`
     * @dev Internal only - helper
     *      Reverts on divide-by-zero with reason `reason`
     * @param target Original Integer number
     * @param numerator Integer numerator of ratio
     * @param denominator Integer denominator of ratio
     * @param reason Revert reason
     * @return Resulting Decimal.D256 number
     */
    function getPartial(
        uint256 target,
        uint256 numerator,
        uint256 denominator,
        string memory reason
    )
    private
    pure
    returns (uint256)
    {
        return target.mul(numerator).div(denominator, reason);
    }

    /**
     * @notice Compares Decimal.D256 `a` to Decimal.D256 `b`
     * @dev Internal only - helper
     * @param a First Decimal.D256 number to compare
     * @param b Second Decimal.D256 number to compare
     * @return 0 if a < b, 1 if a == b, 2 if a > b
     */
    function compareTo(
        D256 memory a,
        D256 memory b
    )
    private
    pure
    returns (uint256)
    {
        if (a.value == b.value) {
            return 1;
        }
        return a.value > b.value ? 2 : 0;
    }
}

File 4 of 12 : RegistryAccessor.sol
/*
    Copyright 2021 Empty Set Squad <[email protected]>

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity 0.5.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/ownership/Ownable.sol";
import "../Interfaces.sol";

/**
 * @title RegistryAccessor
 * @notice Grants access to store and retrieve data from the protocol Registry
 * @dev Registry value updatable by owner if timelocks match
 */
contract RegistryAccessor is Ownable {
    /**
     * @notice Emitted when {registry} is updated with `newRegistry`
     */
    event RegistryUpdate(address newRegistry);

    /**
     * @notice Address of the Continuous ESDS contract registry
     */
    IRegistry public registry;

    /**
     * @notice Updates the registry contract
     * @dev Owner only - governance hook
     *      If registry is already set, the new registry's timelock must match the current's
     * @param newRegistry New registry contract
     */
    function setRegistry(address newRegistry) public onlyOwner {
        require(newRegistry != address(0), "RegistryAccessor: zero address");
        require(
            (address(registry) == address(0) && Address.isContract(newRegistry)) ||
                IRegistry(newRegistry).timelock() == registry.timelock(),
            "RegistryAccessor: timelocks must match"
        );

        registry = IRegistry(newRegistry);

        emit RegistryUpdate(newRegistry);
    }
}

File 5 of 12 : Context.sol
pragma solidity ^0.5.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 6 of 12 : SafeMath.sol
pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        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;
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

File 7 of 12 : Ownable.sol
pragma solidity ^0.5.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 8 of 12 : IERC20.sol
pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
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 9 of 12 : SafeERC20.sol
pragma solidity ^0.5.0;

import "./IERC20.sol";
import "../../math/SafeMath.sol";
import "../../utils/Address.sol";

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

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves.

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "SafeERC20: low-level call failed");

        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 10 of 12 : Address.sol
pragma solidity ^0.5.5;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following 
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Converts an `address` into `address payable`. Note that this is
     * simply a type cast: the actual underlying value is not changed.
     *
     * _Available since v2.4.0._
     */
    function toPayable(address account) internal pure returns (address payable) {
        return address(uint160(account));
    }

    /**
     * @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].
     *
     * _Available since v2.4.0._
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-call-value
        (bool success, ) = recipient.call.value(amount)("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}

File 11 of 12 : ReentrancyGuard.sol
pragma solidity ^0.5.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 *
 * _Since v2.5.0:_ this module is now much more gas efficient, given net gas
 * metering changes introduced in the Istanbul hardfork.
 */
contract ReentrancyGuard {
    bool private _notEntered;

    constructor () internal {
        // Storing an initial non-zero value makes deployment a bit more
        // expensive, but in exchange the refund on every call to nonReentrant
        // will be lower in amount. Since refunds are capped to a percetange of
        // the total transaction's gas, it is best to keep them low in cases
        // like this one, to increase the likelihood of the full refund coming
        // into effect.
        _notEntered = true;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_notEntered, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _notEntered = false;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _notEntered = true;
    }
}

File 12 of 12 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"underlying_","type":"address"},{"internalType":"contract IERC20","name":"reward_","type":"address"},{"internalType":"address","name":"registry_","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRegistry","type":"address"}],"name":"RegistryUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Rescue","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"complete","type":"uint256"}],"name":"RewardProgramUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"rewardPerUnit","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newReward","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"updated","type":"uint256"}],"name":"Settle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Stake","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawal","type":"event"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOfReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"claim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"exit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"nowOrComplete","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"registry","outputs":[{"internalType":"contract IRegistry","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescue","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rewardComplete","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardPerUnit","outputs":[{"components":[{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct Decimal.D256","name":"","type":"tuple"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardUpdated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newRegistry","type":"address"}],"name":"setRegistry","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalProvisionedReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"underlyingToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"rate","type":"uint256"},{"internalType":"uint256","name":"complete","type":"uint256"}],"name":"updateRewardProgram","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002210380380620022108339810160408190526200003491620003c4565b6000620000496001600160e01b03620000f316565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001805460ff60a01b1916600160a01b179055600280546001600160a01b038086166001600160a01b0319928316179092556003805492851692909116919091179055620000ea816001600160e01b03620000f716565b50505062000583565b3390565b6200010a6001600160e01b036200031716565b620001325760405162461bcd60e51b815260040162000129906200050b565b60405180910390fd5b6001600160a01b0381166200015b5760405162461bcd60e51b81526004016200012990620004f9565b6001546001600160a01b031615801562000186575062000186816200034660201b620011761760201c565b80620002a05750600160009054906101000a90046001600160a01b03166001600160a01b031663d33219b46040518163ffffffff1660e01b815260040160206040518083038186803b158015620001dc57600080fd5b505afa158015620001f1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250620002179190810190620003a3565b6001600160a01b0316816001600160a01b031663d33219b46040518163ffffffff1660e01b815260040160206040518083038186803b1580156200025a57600080fd5b505afa1580156200026f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250620002959190810190620003a3565b6001600160a01b0316145b620002bf5760405162461bcd60e51b815260040162000129906200051d565b600180546001600160a01b0319166001600160a01b0383161790556040517f6eff2753cf483c93ef153a7361d0bd6b4f51aaa81c4e9fe09884bf833b8662fe906200030c908390620004e9565b60405180910390a150565b600080546001600160a01b0316620003376001600160e01b03620000f316565b6001600160a01b031614905090565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906200037b57508115155b949350505050565b805162000390816200055e565b92915050565b8051620003908162000578565b600060208284031215620003b657600080fd5b60006200037b848462000383565b600080600060608486031215620003da57600080fd5b6000620003e8868662000396565b9350506020620003fb8682870162000396565b92505060406200040e8682870162000383565b9150509250925092565b620004238162000538565b82525050565b600062000438601e836200052f565b7f52656769737472794163636573736f723a207a65726f20616464726573730000815260200192915050565b6000620004736020836200052f565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572815260200192915050565b6000620004ae6026836200052f565b7f52656769737472794163636573736f723a2074696d656c6f636b73206d757374815265040dac2e8c6d60d31b602082015260400192915050565b6020810162000390828462000418565b60208082528101620003908162000429565b60208082528101620003908162000464565b6020808252810162000390816200049f565b90815260200190565b6000620003908262000552565b6000620003908262000538565b6001600160a01b031690565b620005698162000538565b81146200057557600080fd5b50565b620005698162000545565b611c7d80620005936000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80637b103999116100c3578063c70920bc1161007c578063c70920bc14610279578063cbe3883c14610281578063dfe138a614610289578063e9fad8ee1461029e578063f2fde38b146102a6578063f7c618c1146102b957610158565b80637b1039991461020e5780638da5cb5b146102165780638f32d59b1461022b578063a694fc3a14610240578063a91ee0dc14610253578063ba3477b31461026657610158565b806354828a381161011557806354828a38146101d35780636e718e04146101db578063715018a6146101e3578063750142e6146101eb5780637a4e4ecf146101f35780637b0a47ee1461020657610158565b80630e16e9911461015d5780632495a599146101865780632e1a7d4d1461019b5780633af9e669146101b057806344bcdbcd146101c35780634e71d92d146101cb575b600080fd5b61017061016b36600461151b565b6102c1565b60405161017d9190611afe565b60405180910390f35b61018e610350565b60405161017d9190611a11565b6101ae6101a93660046115af565b61035f565b005b6101706101be36600461151b565b6104c3565b6101706104d5565b6101ae610518565b6101706105de565b6101706105f8565b6101ae6105fe565b61017061066c565b6101ae610201366004611557565b610672565b6101706107ea565b61018e6107f0565b61021e6107ff565b60405161017d91906119a4565b61023361080e565b60405161017d9190611a03565b6101ae61024e3660046115af565b610832565b6101ae61026136600461151b565b610923565b6101ae6102743660046115eb565b610b0d565b610170610c53565b610170610c59565b610291610c5f565b60405161017d9190611af0565b6101ae610ce4565b6101ae6102b436600461151b565b610d07565b61018e610d37565b6001600160a01b038116600090815260076020908152604080832054600b835281842082519384019092529054825261034a91610325916103209161031490610308610c5f565b9063ffffffff610d4616565b9063ffffffff610d7816565b610d9f565b6001600160a01b0384166000908152600a60205260409020549063ffffffff610dbc16565b92915050565b6002546001600160a01b031681565b600154600160a01b900460ff166103915760405162461bcd60e51b815260040161038890611ad0565b60405180910390fd5b6001805460ff60a01b19169055806103bb5760405162461bcd60e51b815260040161038890611a70565b6103c433610de8565b6103fe81604051806060016040528060228152602001611c196022913933600090815260076020526040902054919063ffffffff610e2516565b60076000336001600160a01b03166001600160a01b031681526020019081526020016000208190555061045481604051806060016040528060228152602001611c1960229139600854919063ffffffff610e2516565b600855600254610474906001600160a01b0316338363ffffffff610e5116565b7f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b6533826040516104a59291906119b2565b60405180910390a1506001805460ff60a01b1916600160a01b179055565b60076020526000908152604090205481565b600554600654600091908082116104ed576000610510565b60045461051090610504848463ffffffff610eaf16565b9063ffffffff610ef116565b925050505b90565b600154600160a01b900460ff166105415760405162461bcd60e51b815260040161038890611ad0565b6001805460ff60a01b1916905561055733610de8565b336000818152600a60205260409020546003549091610586916001600160a01b0316908363ffffffff610e5116565b336000908152600a60205260408120556009546105a9908263ffffffff610eaf16565b6009556040517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4906104a590339084906119b2565b600554600090428181116105f25780610510565b50919050565b60065481565b61060661080e565b6106225760405162461bcd60e51b815260040161038890611a90565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60095481565b600154600160a01b900460ff1661069b5760405162461bcd60e51b815260040161038890611ad0565b6001805460ff60a01b191690556106b061080e565b6106cc5760405162461bcd60e51b815260040161038890611a90565b6001546040805163669949ef60e11b81529051610761926001600160a01b03169163cd3293de916004808301926020929190829003018186803b15801561071257600080fd5b505afa158015610726573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061074a9190810190611539565b6001600160a01b038416908363ffffffff610e5116565b6003546001600160a01b038381169116148061078a57506002546001600160a01b038381169116145b1561079a57610797610f2b565b50505b7f542fa6bfee3b4746210fbdd1d83f9e49b65adde3639f8d8f165dd18347938af282826040516107cb9291906119f5565b60405180910390a150506001805460ff60a01b1916600160a01b179055565b60045481565b6001546001600160a01b031681565b6000546001600160a01b031690565b600080546001600160a01b0316610823611148565b6001600160a01b031614905090565b600154600160a01b900460ff1661085b5760405162461bcd60e51b815260040161038890611ad0565b6001805460ff60a01b19169055806108855760405162461bcd60e51b815260040161038890611a70565b61088e33610de8565b336000908152600760205260409020546108ae908263ffffffff610dbc16565b336000908152600760205260409020556008546108d1908263ffffffff610dbc16565b6008556002546108f2906001600160a01b031633308463ffffffff61114c16565b7febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a33826040516104a59291906119b2565b61092b61080e565b6109475760405162461bcd60e51b815260040161038890611a90565b6001600160a01b03811661096d5760405162461bcd60e51b815260040161038890611a60565b6001546001600160a01b031615801561098a575061098a81611176565b80610a9b5750600160009054906101000a90046001600160a01b03166001600160a01b031663d33219b46040518163ffffffff1660e01b815260040160206040518083038186803b1580156109de57600080fd5b505afa1580156109f2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610a169190810190611539565b6001600160a01b0316816001600160a01b031663d33219b46040518163ffffffff1660e01b815260040160206040518083038186803b158015610a5857600080fd5b505afa158015610a6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610a909190810190611539565b6001600160a01b0316145b610ab75760405162461bcd60e51b815260040161038890611aa0565b600180546001600160a01b0319166001600160a01b0383161790556040517f6eff2753cf483c93ef153a7361d0bd6b4f51aaa81c4e9fe09884bf833b8662fe90610b029083906119a4565b60405180910390a150565b610b1561080e565b610b315760405162461bcd60e51b815260040161038890611a90565b428111610b505760405162461bcd60e51b815260040161038890611ac0565b610b586111b2565b42600655600581905560048290556000610b70610f2b565b915050610c15600160009054906101000a90046001600160a01b03166001600160a01b031663cd3293de6040518163ffffffff1660e01b815260040160206040518083038186803b158015610bc457600080fd5b505afa158015610bd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610bfc9190810190611539565b6003546001600160a01b0316908363ffffffff610e5116565b7f9ee3ca4525682e6308d90324d150889612c83c607c1692365c344ce2ac3746d98383604051610c46929190611b0c565b60405180910390a1505050565b60085481565b60055481565b610c676114d1565b600854610c8457506040805160208101909152600c548152610515565b610cdd610cc1600854610cb5610cb0600454610504600654610ca46105de565b9063ffffffff610eaf16565b61126e565b9063ffffffff6112a216565b6040805160208101909152600c5481529063ffffffff6112c916565b9050610515565b33600090815260076020526040902054610cfd9061035f565b610d05610518565b565b610d0f61080e565b610d2b5760405162461bcd60e51b815260040161038890611a90565b610d34816112f2565b50565b6003546001600160a01b031681565b610d4e6114d1565b6040805160208101909152825184518291610d6f919063ffffffff610eaf16565b90529392505050565b610d806114d1565b604080516020810190915283518190610d6f908563ffffffff610ef116565b805160009061034a90670de0b6b3a764000063ffffffff61137316565b600082820183811015610de15760405162461bcd60e51b815260040161038890611a40565b9392505050565b610df06111b2565b610df9816102c1565b6001600160a01b039091166000908152600a6020908152604080832093909355600b905220600c549055565b60008184841115610e495760405162461bcd60e51b81526004016103889190611a1f565b505050900390565b604051610eaa90849063a9059cbb60e01b90610e7390869086906024016119f5565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526113b5565b505050565b6000610de183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e25565b600082610f005750600061034a565b82820282848281610f0d57fe5b0414610de15760405162461bcd60e51b815260040161038890611a80565b6003546040516370a0823160e01b8152600091829182916001600160a01b0316906370a0823190610f609030906004016119a4565b60206040518083038186803b158015610f7857600080fd5b505afa158015610f8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610fb091908101906115cd565b6002546040516370a0823160e01b81529192506000916001600160a01b03909116906370a0823190610fe69030906004016119a4565b60206040518083038186803b158015610ffe57600080fd5b505afa158015611012573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061103691908101906115cd565b60085490915060006110586110496104d5565b6009549063ffffffff610dbc16565b6003546002549192506110d3916001600160a01b0390811691161461107e576000611080565b815b604051806060016040528060228152602001611bd2602291396110c6600854604051806060016040528060258152602001611bf46025913988919063ffffffff610e2516565b919063ffffffff610e2516565b60035460025461113c916001600160a01b039182169116146110f65760006110f8565b835b604051806060016040528060258152602001611bf4602591396110c685604051806060016040528060228152602001611bd2602291398a919063ffffffff610e2516565b95509550505050509091565b3390565b6040516111709085906323b872dd60e01b90610e73908790879087906024016119cd565b50505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906111aa57508115155b949350505050565b60006111bc6105de565b90506111c66114d1565b6111ce610c5f565b6008546040805160208101909152600c548152919250600091611200916103209161031490869063ffffffff610d4616565b9050600061121982600954610dbc90919063ffffffff16565b8351600c819055600982905560068690556040519192507f5b9d5e9dd07a521e988b5e8aeb356a989978e8292ff49d0bc881a8f89fca548f91611260919085908890611b1a565b60405180910390a150505050565b6112766114d1565b60408051602081019091528061129a84670de0b6b3a764000063ffffffff610ef116565b905292915050565b6112aa6114d1565b604080516020810190915283518190610d6f908563ffffffff61137316565b6112d16114d1565b6040805160208101909152825184518291610d6f919063ffffffff610dbc16565b6001600160a01b0381166113185760405162461bcd60e51b815260040161038890611a30565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610de183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061149a565b6113c7826001600160a01b0316611176565b6113e35760405162461bcd60e51b815260040161038890611ae0565b60006060836001600160a01b0316836040516113ff9190611998565b6000604051808303816000865af19150503d806000811461143c576040519150601f19603f3d011682016040523d82523d6000602084013e611441565b606091505b5091509150816114635760405162461bcd60e51b815260040161038890611a50565b805115611170578080602001905161147e9190810190611591565b6111705760405162461bcd60e51b815260040161038890611ab0565b600081836114bb5760405162461bcd60e51b81526004016103889190611a1f565b5060008385816114c757fe5b0495945050505050565b6040518060200160405280600081525090565b803561034a81611bab565b805161034a81611bab565b805161034a81611bbf565b803561034a81611bc8565b805161034a81611bc8565b60006020828403121561152d57600080fd5b60006111aa84846114e4565b60006020828403121561154b57600080fd5b60006111aa84846114ef565b6000806040838503121561156a57600080fd5b600061157685856114e4565b925050602061158785828601611505565b9150509250929050565b6000602082840312156115a357600080fd5b60006111aa84846114fa565b6000602082840312156115c157600080fd5b60006111aa8484611505565b6000602082840312156115df57600080fd5b60006111aa8484611510565b600080604083850312156115fe57600080fd5b60006115768585611505565b61161381611b63565b82525050565b61161381611b47565b61161381611b52565b600061163682611b35565b6116408185611b39565b9350611650818560208601611b75565b9290920192915050565b61161381611b6a565b600061166e82611b35565b6116788185611b3e565b9350611688818560208601611b75565b61169181611ba1565b9093019392505050565b60006116a8602683611b3e565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526564647265737360d01b602082015260400192915050565b60006116f0601b83611b3e565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000611729602083611b3e565b7f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815260200192915050565b6000611762601e83611b3e565b7f52656769737472794163636573736f723a207a65726f20616464726573730000815260200192915050565b600061179b601983611b3e565b7f496e63656e746976697a65723a207a65726f20616d6f756e7400000000000000815260200192915050565b60006117d4602183611b3e565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f8152607760f81b602082015260400192915050565b6000611817602083611b3e565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572815260200192915050565b6000611850602683611b3e565b7f52656769737472794163636573736f723a2074696d656c6f636b73206d757374815265040dac2e8c6d60d31b602082015260400192915050565b6000611898602a83611b3e565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e8152691bdd081cdd58d8d9595960b21b602082015260400192915050565b60006118e4601b83611b3e565b7f496e63656e746976697a65723a20616c726561647920656e6465640000000000815260200192915050565b600061191d601f83611b3e565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00815260200192915050565b6000611956601f83611b3e565b7f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400815260200192915050565b8051602083019061117084825b61161381610515565b6000610de1828461162b565b6020810161034a8284611619565b604081016119c0828561160a565b610de1602083018461198f565b606081016119db8286611619565b6119e86020830185611619565b6111aa604083018461198f565b604081016119c08285611619565b6020810161034a8284611622565b6020810161034a828461165a565b60208082528101610de18184611663565b6020808252810161034a8161169b565b6020808252810161034a816116e3565b6020808252810161034a8161171c565b6020808252810161034a81611755565b6020808252810161034a8161178e565b6020808252810161034a816117c7565b6020808252810161034a8161180a565b6020808252810161034a81611843565b6020808252810161034a8161188b565b6020808252810161034a816118d7565b6020808252810161034a81611910565b6020808252810161034a81611949565b6020810161034a8284611982565b6020810161034a828461198f565b604081016119c0828561198f565b60608101611b28828661198f565b6119e8602083018561198f565b5190565b919050565b90815260200190565b600061034a82611b57565b151590565b6001600160a01b031690565b600061034a825b600061034a82611b47565b60005b83811015611b90578181015183820152602001611b78565b838111156111705750506000910152565b601f01601f191690565b611bb481611b47565b8114610d3457600080fd5b611bb481611b52565b611bb48161051556fe496e63656e746976697a65723a20696e73756666696369656e742072657761726473496e63656e746976697a65723a20696e73756666696369656e7420756e6465726c79696e67496e63656e746976697a65723a20696e73756666696369656e742062616c616e6365a365627a7a7231582055b7637eff329220dce20eef31e998413bd90b5656a56407f251077ca0f90bb26c6578706572696d656e74616cf564736f6c63430005110040000000000000000000000000cadd30b39f01cfdfb848174b19bbb5b1b748615900000000000000000000000024ae124c4cc33d6791f8e8b63520ed7107ac8b3e000000000000000000000000c5285ee6d5c9adf4e04f5ccb47d0501ae638c7a9

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c80637b103999116100c3578063c70920bc1161007c578063c70920bc14610279578063cbe3883c14610281578063dfe138a614610289578063e9fad8ee1461029e578063f2fde38b146102a6578063f7c618c1146102b957610158565b80637b1039991461020e5780638da5cb5b146102165780638f32d59b1461022b578063a694fc3a14610240578063a91ee0dc14610253578063ba3477b31461026657610158565b806354828a381161011557806354828a38146101d35780636e718e04146101db578063715018a6146101e3578063750142e6146101eb5780637a4e4ecf146101f35780637b0a47ee1461020657610158565b80630e16e9911461015d5780632495a599146101865780632e1a7d4d1461019b5780633af9e669146101b057806344bcdbcd146101c35780634e71d92d146101cb575b600080fd5b61017061016b36600461151b565b6102c1565b60405161017d9190611afe565b60405180910390f35b61018e610350565b60405161017d9190611a11565b6101ae6101a93660046115af565b61035f565b005b6101706101be36600461151b565b6104c3565b6101706104d5565b6101ae610518565b6101706105de565b6101706105f8565b6101ae6105fe565b61017061066c565b6101ae610201366004611557565b610672565b6101706107ea565b61018e6107f0565b61021e6107ff565b60405161017d91906119a4565b61023361080e565b60405161017d9190611a03565b6101ae61024e3660046115af565b610832565b6101ae61026136600461151b565b610923565b6101ae6102743660046115eb565b610b0d565b610170610c53565b610170610c59565b610291610c5f565b60405161017d9190611af0565b6101ae610ce4565b6101ae6102b436600461151b565b610d07565b61018e610d37565b6001600160a01b038116600090815260076020908152604080832054600b835281842082519384019092529054825261034a91610325916103209161031490610308610c5f565b9063ffffffff610d4616565b9063ffffffff610d7816565b610d9f565b6001600160a01b0384166000908152600a60205260409020549063ffffffff610dbc16565b92915050565b6002546001600160a01b031681565b600154600160a01b900460ff166103915760405162461bcd60e51b815260040161038890611ad0565b60405180910390fd5b6001805460ff60a01b19169055806103bb5760405162461bcd60e51b815260040161038890611a70565b6103c433610de8565b6103fe81604051806060016040528060228152602001611c196022913933600090815260076020526040902054919063ffffffff610e2516565b60076000336001600160a01b03166001600160a01b031681526020019081526020016000208190555061045481604051806060016040528060228152602001611c1960229139600854919063ffffffff610e2516565b600855600254610474906001600160a01b0316338363ffffffff610e5116565b7f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b6533826040516104a59291906119b2565b60405180910390a1506001805460ff60a01b1916600160a01b179055565b60076020526000908152604090205481565b600554600654600091908082116104ed576000610510565b60045461051090610504848463ffffffff610eaf16565b9063ffffffff610ef116565b925050505b90565b600154600160a01b900460ff166105415760405162461bcd60e51b815260040161038890611ad0565b6001805460ff60a01b1916905561055733610de8565b336000818152600a60205260409020546003549091610586916001600160a01b0316908363ffffffff610e5116565b336000908152600a60205260408120556009546105a9908263ffffffff610eaf16565b6009556040517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4906104a590339084906119b2565b600554600090428181116105f25780610510565b50919050565b60065481565b61060661080e565b6106225760405162461bcd60e51b815260040161038890611a90565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60095481565b600154600160a01b900460ff1661069b5760405162461bcd60e51b815260040161038890611ad0565b6001805460ff60a01b191690556106b061080e565b6106cc5760405162461bcd60e51b815260040161038890611a90565b6001546040805163669949ef60e11b81529051610761926001600160a01b03169163cd3293de916004808301926020929190829003018186803b15801561071257600080fd5b505afa158015610726573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061074a9190810190611539565b6001600160a01b038416908363ffffffff610e5116565b6003546001600160a01b038381169116148061078a57506002546001600160a01b038381169116145b1561079a57610797610f2b565b50505b7f542fa6bfee3b4746210fbdd1d83f9e49b65adde3639f8d8f165dd18347938af282826040516107cb9291906119f5565b60405180910390a150506001805460ff60a01b1916600160a01b179055565b60045481565b6001546001600160a01b031681565b6000546001600160a01b031690565b600080546001600160a01b0316610823611148565b6001600160a01b031614905090565b600154600160a01b900460ff1661085b5760405162461bcd60e51b815260040161038890611ad0565b6001805460ff60a01b19169055806108855760405162461bcd60e51b815260040161038890611a70565b61088e33610de8565b336000908152600760205260409020546108ae908263ffffffff610dbc16565b336000908152600760205260409020556008546108d1908263ffffffff610dbc16565b6008556002546108f2906001600160a01b031633308463ffffffff61114c16565b7febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a33826040516104a59291906119b2565b61092b61080e565b6109475760405162461bcd60e51b815260040161038890611a90565b6001600160a01b03811661096d5760405162461bcd60e51b815260040161038890611a60565b6001546001600160a01b031615801561098a575061098a81611176565b80610a9b5750600160009054906101000a90046001600160a01b03166001600160a01b031663d33219b46040518163ffffffff1660e01b815260040160206040518083038186803b1580156109de57600080fd5b505afa1580156109f2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610a169190810190611539565b6001600160a01b0316816001600160a01b031663d33219b46040518163ffffffff1660e01b815260040160206040518083038186803b158015610a5857600080fd5b505afa158015610a6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610a909190810190611539565b6001600160a01b0316145b610ab75760405162461bcd60e51b815260040161038890611aa0565b600180546001600160a01b0319166001600160a01b0383161790556040517f6eff2753cf483c93ef153a7361d0bd6b4f51aaa81c4e9fe09884bf833b8662fe90610b029083906119a4565b60405180910390a150565b610b1561080e565b610b315760405162461bcd60e51b815260040161038890611a90565b428111610b505760405162461bcd60e51b815260040161038890611ac0565b610b586111b2565b42600655600581905560048290556000610b70610f2b565b915050610c15600160009054906101000a90046001600160a01b03166001600160a01b031663cd3293de6040518163ffffffff1660e01b815260040160206040518083038186803b158015610bc457600080fd5b505afa158015610bd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610bfc9190810190611539565b6003546001600160a01b0316908363ffffffff610e5116565b7f9ee3ca4525682e6308d90324d150889612c83c607c1692365c344ce2ac3746d98383604051610c46929190611b0c565b60405180910390a1505050565b60085481565b60055481565b610c676114d1565b600854610c8457506040805160208101909152600c548152610515565b610cdd610cc1600854610cb5610cb0600454610504600654610ca46105de565b9063ffffffff610eaf16565b61126e565b9063ffffffff6112a216565b6040805160208101909152600c5481529063ffffffff6112c916565b9050610515565b33600090815260076020526040902054610cfd9061035f565b610d05610518565b565b610d0f61080e565b610d2b5760405162461bcd60e51b815260040161038890611a90565b610d34816112f2565b50565b6003546001600160a01b031681565b610d4e6114d1565b6040805160208101909152825184518291610d6f919063ffffffff610eaf16565b90529392505050565b610d806114d1565b604080516020810190915283518190610d6f908563ffffffff610ef116565b805160009061034a90670de0b6b3a764000063ffffffff61137316565b600082820183811015610de15760405162461bcd60e51b815260040161038890611a40565b9392505050565b610df06111b2565b610df9816102c1565b6001600160a01b039091166000908152600a6020908152604080832093909355600b905220600c549055565b60008184841115610e495760405162461bcd60e51b81526004016103889190611a1f565b505050900390565b604051610eaa90849063a9059cbb60e01b90610e7390869086906024016119f5565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526113b5565b505050565b6000610de183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e25565b600082610f005750600061034a565b82820282848281610f0d57fe5b0414610de15760405162461bcd60e51b815260040161038890611a80565b6003546040516370a0823160e01b8152600091829182916001600160a01b0316906370a0823190610f609030906004016119a4565b60206040518083038186803b158015610f7857600080fd5b505afa158015610f8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610fb091908101906115cd565b6002546040516370a0823160e01b81529192506000916001600160a01b03909116906370a0823190610fe69030906004016119a4565b60206040518083038186803b158015610ffe57600080fd5b505afa158015611012573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061103691908101906115cd565b60085490915060006110586110496104d5565b6009549063ffffffff610dbc16565b6003546002549192506110d3916001600160a01b0390811691161461107e576000611080565b815b604051806060016040528060228152602001611bd2602291396110c6600854604051806060016040528060258152602001611bf46025913988919063ffffffff610e2516565b919063ffffffff610e2516565b60035460025461113c916001600160a01b039182169116146110f65760006110f8565b835b604051806060016040528060258152602001611bf4602591396110c685604051806060016040528060228152602001611bd2602291398a919063ffffffff610e2516565b95509550505050509091565b3390565b6040516111709085906323b872dd60e01b90610e73908790879087906024016119cd565b50505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906111aa57508115155b949350505050565b60006111bc6105de565b90506111c66114d1565b6111ce610c5f565b6008546040805160208101909152600c548152919250600091611200916103209161031490869063ffffffff610d4616565b9050600061121982600954610dbc90919063ffffffff16565b8351600c819055600982905560068690556040519192507f5b9d5e9dd07a521e988b5e8aeb356a989978e8292ff49d0bc881a8f89fca548f91611260919085908890611b1a565b60405180910390a150505050565b6112766114d1565b60408051602081019091528061129a84670de0b6b3a764000063ffffffff610ef116565b905292915050565b6112aa6114d1565b604080516020810190915283518190610d6f908563ffffffff61137316565b6112d16114d1565b6040805160208101909152825184518291610d6f919063ffffffff610dbc16565b6001600160a01b0381166113185760405162461bcd60e51b815260040161038890611a30565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610de183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061149a565b6113c7826001600160a01b0316611176565b6113e35760405162461bcd60e51b815260040161038890611ae0565b60006060836001600160a01b0316836040516113ff9190611998565b6000604051808303816000865af19150503d806000811461143c576040519150601f19603f3d011682016040523d82523d6000602084013e611441565b606091505b5091509150816114635760405162461bcd60e51b815260040161038890611a50565b805115611170578080602001905161147e9190810190611591565b6111705760405162461bcd60e51b815260040161038890611ab0565b600081836114bb5760405162461bcd60e51b81526004016103889190611a1f565b5060008385816114c757fe5b0495945050505050565b6040518060200160405280600081525090565b803561034a81611bab565b805161034a81611bab565b805161034a81611bbf565b803561034a81611bc8565b805161034a81611bc8565b60006020828403121561152d57600080fd5b60006111aa84846114e4565b60006020828403121561154b57600080fd5b60006111aa84846114ef565b6000806040838503121561156a57600080fd5b600061157685856114e4565b925050602061158785828601611505565b9150509250929050565b6000602082840312156115a357600080fd5b60006111aa84846114fa565b6000602082840312156115c157600080fd5b60006111aa8484611505565b6000602082840312156115df57600080fd5b60006111aa8484611510565b600080604083850312156115fe57600080fd5b60006115768585611505565b61161381611b63565b82525050565b61161381611b47565b61161381611b52565b600061163682611b35565b6116408185611b39565b9350611650818560208601611b75565b9290920192915050565b61161381611b6a565b600061166e82611b35565b6116788185611b3e565b9350611688818560208601611b75565b61169181611ba1565b9093019392505050565b60006116a8602683611b3e565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526564647265737360d01b602082015260400192915050565b60006116f0601b83611b3e565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000611729602083611b3e565b7f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815260200192915050565b6000611762601e83611b3e565b7f52656769737472794163636573736f723a207a65726f20616464726573730000815260200192915050565b600061179b601983611b3e565b7f496e63656e746976697a65723a207a65726f20616d6f756e7400000000000000815260200192915050565b60006117d4602183611b3e565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f8152607760f81b602082015260400192915050565b6000611817602083611b3e565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572815260200192915050565b6000611850602683611b3e565b7f52656769737472794163636573736f723a2074696d656c6f636b73206d757374815265040dac2e8c6d60d31b602082015260400192915050565b6000611898602a83611b3e565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e8152691bdd081cdd58d8d9595960b21b602082015260400192915050565b60006118e4601b83611b3e565b7f496e63656e746976697a65723a20616c726561647920656e6465640000000000815260200192915050565b600061191d601f83611b3e565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00815260200192915050565b6000611956601f83611b3e565b7f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400815260200192915050565b8051602083019061117084825b61161381610515565b6000610de1828461162b565b6020810161034a8284611619565b604081016119c0828561160a565b610de1602083018461198f565b606081016119db8286611619565b6119e86020830185611619565b6111aa604083018461198f565b604081016119c08285611619565b6020810161034a8284611622565b6020810161034a828461165a565b60208082528101610de18184611663565b6020808252810161034a8161169b565b6020808252810161034a816116e3565b6020808252810161034a8161171c565b6020808252810161034a81611755565b6020808252810161034a8161178e565b6020808252810161034a816117c7565b6020808252810161034a8161180a565b6020808252810161034a81611843565b6020808252810161034a8161188b565b6020808252810161034a816118d7565b6020808252810161034a81611910565b6020808252810161034a81611949565b6020810161034a8284611982565b6020810161034a828461198f565b604081016119c0828561198f565b60608101611b28828661198f565b6119e8602083018561198f565b5190565b919050565b90815260200190565b600061034a82611b57565b151590565b6001600160a01b031690565b600061034a825b600061034a82611b47565b60005b83811015611b90578181015183820152602001611b78565b838111156111705750506000910152565b601f01601f191690565b611bb481611b47565b8114610d3457600080fd5b611bb481611b52565b611bb48161051556fe496e63656e746976697a65723a20696e73756666696369656e742072657761726473496e63656e746976697a65723a20696e73756666696369656e7420756e6465726c79696e67496e63656e746976697a65723a20696e73756666696369656e742062616c616e6365a365627a7a7231582055b7637eff329220dce20eef31e998413bd90b5656a56407f251077ca0f90bb26c6578706572696d656e74616cf564736f6c63430005110040

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

000000000000000000000000cadd30b39f01cfdfb848174b19bbb5b1b748615900000000000000000000000024ae124c4cc33d6791f8e8b63520ed7107ac8b3e000000000000000000000000c5285ee6d5c9adf4e04f5ccb47d0501ae638c7a9

-----Decoded View---------------
Arg [0] : underlying_ (address): 0xcAdD30b39F01CfDFb848174b19Bbb5b1B7486159
Arg [1] : reward_ (address): 0x24aE124c4CC33D6791F8E8B63520ed7107ac8b3e
Arg [2] : registry_ (address): 0xC5285EE6D5C9Adf4E04f5CCB47d0501AE638c7A9

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000cadd30b39f01cfdfb848174b19bbb5b1b7486159
Arg [1] : 00000000000000000000000024ae124c4cc33d6791f8e8b63520ed7107ac8b3e
Arg [2] : 000000000000000000000000c5285ee6d5c9adf4e04f5ccb47d0501ae638c7a9


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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