ETH Price: $3,404.25 (+2.17%)

Token

pfUNI-V2 (pfUNI-V2)
 

Overview

Max Total Supply

9.600704196089827353 pfUNI-V2

Holders

4

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PotPool

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : PotPool.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.5.16;

import "./inheritance/Controllable.sol";
import "./interface/IController.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20Detailed.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/math/Math.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/GSN/Context.sol";
import "@openzeppelin/contracts/ownership/Ownable.sol";

contract IRewardDistributionRecipient is Ownable {

    mapping (address => bool) public rewardDistribution;

    constructor(address[] memory _rewardDistributions) public {
        // NotifyHelper
        rewardDistribution[0xE20c31e3d08027F5AfACe84A3A46B7b3B165053c] = true;

        // FeeRewardForwarderV5
        rewardDistribution[0x153C544f72329c1ba521DDf5086cf2fA98C86676] = true;

        for(uint256 i = 0; i < _rewardDistributions.length; i++) {
          rewardDistribution[_rewardDistributions[i]] = true;
        }
    }

    function notifyTargetRewardAmount(address rewardToken, uint256 reward) external;
    function notifyRewardAmount(uint256 reward) external;

    modifier onlyRewardDistribution() {
        require(rewardDistribution[_msgSender()], "Caller is not reward distribution");
        _;
    }

    function setRewardDistribution(address[] calldata _newRewardDistribution, bool _flag)
        external
        onlyOwner
    {
        for(uint256 i = 0; i < _newRewardDistribution.length; i++){
          rewardDistribution[_newRewardDistribution[i]] = _flag;
        }
    }
}

contract PotPool is IRewardDistributionRecipient, Controllable, ERC20, ERC20Detailed {

    using Address for address;
    using SafeERC20 for IERC20;
    using SafeMath for uint256;

    address public lpToken;
    uint256 public duration; // making it not a constant is less gas efficient, but portable

    mapping(address => uint256) public stakedBalanceOf;

    mapping (address => bool) smartContractStakers;
    address[] public rewardTokens;
    mapping(address => uint256) public periodFinishForToken;
    mapping(address => uint256) public rewardRateForToken;
    mapping(address => uint256) public lastUpdateTimeForToken;
    mapping(address => uint256) public rewardPerTokenStoredForToken;
    mapping(address => mapping(address => uint256)) public userRewardPerTokenPaidForToken;
    mapping(address => mapping(address => uint256)) public rewardsForToken;

    event RewardAdded(address rewardToken, uint256 reward);
    event Staked(address indexed user, uint256 amount);
    event Withdrawn(address indexed user, uint256 amount);
    event RewardPaid(address indexed user, address rewardToken, uint256 reward);
    event RewardDenied(address indexed user, address rewardToken, uint256 reward);
    event SmartContractRecorded(address indexed smartContractAddress, address indexed smartContractInitiator);

    modifier updateRewards(address account) {
      for(uint256 i = 0; i < rewardTokens.length; i++ ){
        address rt = rewardTokens[i];
        rewardPerTokenStoredForToken[rt] = rewardPerToken(rt);
        lastUpdateTimeForToken[rt] = lastTimeRewardApplicable(rt);
        if (account != address(0)) {
            rewardsForToken[rt][account] = earned(rt, account);
            userRewardPerTokenPaidForToken[rt][account] = rewardPerTokenStoredForToken[rt];
        }
      }
      _;
    }

    modifier updateReward(address account, address rt){
      rewardPerTokenStoredForToken[rt] = rewardPerToken(rt);
      lastUpdateTimeForToken[rt] = lastTimeRewardApplicable(rt);
      if (account != address(0)) {
          rewardsForToken[rt][account] = earned(rt, account);
          userRewardPerTokenPaidForToken[rt][account] = rewardPerTokenStoredForToken[rt];
      }
      _;
    }

    /** View functions to respect old interface */
    function rewardToken() public view returns(address) {
      return rewardTokens[0];
    }

    function rewardPerToken() public view returns(uint256) {
      return rewardPerToken(rewardTokens[0]);
    }

    function periodFinish() public view returns(uint256) {
      return periodFinishForToken[rewardTokens[0]];
    }

    function rewardRate() public view returns(uint256) {
      return rewardRateForToken[rewardTokens[0]];
    }

    function lastUpdateTime() public view returns(uint256) {
      return lastUpdateTimeForToken[rewardTokens[0]];
    }

    function rewardPerTokenStored() public view returns(uint256) {
      return rewardPerTokenStoredForToken[rewardTokens[0]];
    }

    function userRewardPerTokenPaid(address user) public view returns(uint256) {
      return userRewardPerTokenPaidForToken[rewardTokens[0]][user];
    }

    function rewards(address user) public view returns(uint256) {
      return rewardsForToken[rewardTokens[0]][user];
    }

    // [Hardwork] setting the reward, lpToken, duration, and rewardDistribution for each pool
    constructor(
        address[] memory _rewardTokens,
        address _lpToken,
        uint256 _duration,
        address[] memory _rewardDistribution,
        address _storage,
        string memory _name,
        string memory _symbol,
        uint8 _decimals
      ) public
      ERC20Detailed(_name, _symbol, _decimals)
      IRewardDistributionRecipient(_rewardDistribution)
      Controllable(_storage) // only used for referencing the grey list
    {
        require(_decimals == ERC20Detailed(_lpToken).decimals(), "decimals has to be aligned with the lpToken");
        require(_rewardTokens.length != 0, "should initialize with at least 1 rewardToken");
        rewardTokens = _rewardTokens;
        lpToken = _lpToken;
        duration = _duration;
    }

    function lastTimeRewardApplicable(uint256 i) public view returns (uint256) {
        return lastTimeRewardApplicable(rewardTokens[i]);
    }

    function lastTimeRewardApplicable(address rt) public view returns (uint256) {
        return Math.min(block.timestamp, periodFinishForToken[rt]);
    }

    function lastTimeRewardApplicable() public view returns (uint256) {
        return lastTimeRewardApplicable(rewardTokens[0]);
    }

    function rewardPerToken(uint256 i) public view returns (uint256) {
        return rewardPerToken(rewardTokens[i]);
    }

    function rewardPerToken(address rt) public view returns (uint256) {
        if (totalSupply() == 0) {
            return rewardPerTokenStoredForToken[rt];
        }
        return
            rewardPerTokenStoredForToken[rt].add(
                lastTimeRewardApplicable(rt)
                    .sub(lastUpdateTimeForToken[rt])
                    .mul(rewardRateForToken[rt])
                    .mul(1e18)
                    .div(totalSupply())
            );
    }

    function earned(uint256 i, address account) public view returns (uint256) {
        return earned(rewardTokens[i], account);
    }

    function earned(address account) public view returns (uint256) {
        return earned(rewardTokens[0], account);
    }

    function earned(address rt, address account) public view returns (uint256) {
        return
            stakedBalanceOf[account]
                .mul(rewardPerToken(rt).sub(userRewardPerTokenPaidForToken[rt][account]))
                .div(1e18)
                .add(rewardsForToken[rt][account]);
    }

    function stake(uint256 amount) public updateRewards(msg.sender) {
        require(amount > 0, "Cannot stake 0");
        recordSmartContract();
        super._mint(msg.sender, amount); // ERC20 is used as a staking receipt
        stakedBalanceOf[msg.sender] = stakedBalanceOf[msg.sender].add(amount);
        IERC20(lpToken).safeTransferFrom(msg.sender, address(this), amount);
        emit Staked(msg.sender, amount);
    }

    function withdraw(uint256 amount) public updateRewards(msg.sender) {
        require(amount > 0, "Cannot withdraw 0");
        super._burn(msg.sender, amount);
        stakedBalanceOf[msg.sender] = stakedBalanceOf[msg.sender].sub(amount);
        IERC20(lpToken).safeTransfer(msg.sender, amount);
        emit Withdrawn(msg.sender, amount);
    }

    function exit() external {
        withdraw(Math.min(stakedBalanceOf[msg.sender], balanceOf(msg.sender)));
        getAllRewards();
    }

    /// A push mechanism for accounts that have not claimed their rewards for a long time.
    /// The implementation is semantically analogous to getReward(), but uses a push pattern
    /// instead of pull pattern.
    function pushAllRewards(address recipient) public updateRewards(recipient) onlyGovernance {
      bool rewardPayout = (!smartContractStakers[recipient] || !IController(controller()).greyList(recipient));
      for(uint256 i = 0 ; i < rewardTokens.length; i++ ){
        uint256 reward = earned(rewardTokens[i], recipient);
        if (reward > 0) {
            rewardsForToken[rewardTokens[i]][recipient] = 0;
            // If it is a normal user and not smart contract,
            // then the requirement will pass
            // If it is a smart contract, then
            // make sure that it is not on our greyList.
            if (rewardPayout) {
                IERC20(rewardTokens[i]).safeTransfer(recipient, reward);
                emit RewardPaid(recipient, rewardTokens[i], reward);
            } else {
                emit RewardDenied(recipient, rewardTokens[i], reward);
            }
        }
      }
    }

    function getAllRewards() public updateRewards(msg.sender) {
      recordSmartContract();
      bool rewardPayout = (!smartContractStakers[msg.sender] || !IController(controller()).greyList(msg.sender));
      for(uint256 i = 0 ; i < rewardTokens.length; i++ ){
        _getRewardAction(rewardTokens[i], rewardPayout);
      }
    }

    function getReward(address rt) public updateReward(msg.sender, rt) {
      recordSmartContract();
      _getRewardAction(
        rt,
        // don't payout if it is a grey listed smart contract
        (!smartContractStakers[msg.sender] || !IController(controller()).greyList(msg.sender))
      );
    }

    function getReward() public {
      getReward(rewardTokens[0]);
    }

    function _getRewardAction(address rt, bool rewardPayout) internal {
      uint256 reward = earned(rt, msg.sender);
      if (reward > 0 && IERC20(rt).balanceOf(address(this)) >= reward ) {
          rewardsForToken[rt][msg.sender] = 0;
          // If it is a normal user and not smart contract,
          // then the requirement will pass
          // If it is a smart contract, then
          // make sure that it is not on our greyList.
          if (rewardPayout) {
              IERC20(rt).safeTransfer(msg.sender, reward);
              emit RewardPaid(msg.sender, rt, reward);
          } else {
              emit RewardDenied(msg.sender, rt, reward);
          }
      }
    }

    function addRewardToken(address rt) public onlyGovernance {
      require(getRewardTokenIndex(rt) == uint256(-1), "Reward token already exists");
      rewardTokens.push(rt);
    }

    function removeRewardToken(address rt) public onlyGovernance {
      uint256 i = getRewardTokenIndex(rt);
      require(i != uint256(-1), "Reward token does not exists");
      require(periodFinishForToken[rewardTokens[i]] < block.timestamp, "Can only remove when the reward period has passed");
      require(rewardTokens.length > 1, "Cannot remove the last reward token");
      uint256 lastIndex = rewardTokens.length - 1;

      // swap
      rewardTokens[i] = rewardTokens[lastIndex];

      // delete last element
      rewardTokens.length--;
    }

    // If the return value is MAX_UINT256, it means that
    // the specified reward token is not in the list
    function getRewardTokenIndex(address rt) public view returns(uint256) {
      for(uint i = 0 ; i < rewardTokens.length ; i++){
        if(rewardTokens[i] == rt)
          return i;
      }
      return uint256(-1);
    }

    function notifyTargetRewardAmount(address _rewardToken, uint256 reward)
        public
        onlyRewardDistribution
        updateRewards(address(0))
    {
        // overflow fix according to https://sips.synthetix.io/sips/sip-77
        require(reward < uint(-1) / 1e18, "the notified reward cannot invoke multiplication overflow");

        uint256 i = getRewardTokenIndex(_rewardToken);
        require(i != uint256(-1), "rewardTokenIndex not found");

        if (block.timestamp >= periodFinishForToken[_rewardToken]) {
            rewardRateForToken[_rewardToken] = reward.div(duration);
        } else {
            uint256 remaining = periodFinishForToken[_rewardToken].sub(block.timestamp);
            uint256 leftover = remaining.mul(rewardRateForToken[_rewardToken]);
            rewardRateForToken[_rewardToken] = reward.add(leftover).div(duration);
        }
        lastUpdateTimeForToken[_rewardToken] = block.timestamp;
        periodFinishForToken[_rewardToken] = block.timestamp.add(duration);
        emit RewardAdded(_rewardToken, reward);
    }

    function notifyRewardAmount(uint256 reward)
        external
        onlyRewardDistribution
        updateRewards(address(0))
    {
      notifyTargetRewardAmount(rewardTokens[0], reward);
    }

    function rewardTokensLength() public view returns(uint256){
      return rewardTokens.length;
    }

    // Harvest Smart Contract recording
    function recordSmartContract() internal {
      if( tx.origin != msg.sender ) {
        smartContractStakers[msg.sender] = true;
        emit SmartContractRecorded(msg.sender, tx.origin);
      }
    }

}

File 2 of 14 : Controllable.sol
pragma solidity 0.5.16;

import "./Governable.sol";

contract Controllable is Governable {

  constructor(address _storage) Governable(_storage) public {
  }

  modifier onlyController() {
    require(store.isController(msg.sender), "Not a controller");
    _;
  }

  modifier onlyControllerOrGovernance(){
    require((store.isController(msg.sender) || store.isGovernance(msg.sender)),
      "The caller must be controller or governance");
    _;
  }

  function controller() public view returns (address) {
    return store.controller();
  }
}

File 3 of 14 : IController.sol
pragma solidity 0.5.16;

interface IController {
    // [Grey list]
    // An EOA can safely interact with the system no matter what.
    // If you're using Metamask, you're using an EOA.
    // Only smart contracts may be affected by this grey list.
    //
    // This contract will not be able to ban any EOA from the system
    // even if an EOA is being added to the greyList, he/she will still be able
    // to interact with the whole system as if nothing happened.
    // Only smart contracts will be affected by being added to the greyList.
    // This grey list is only used in Vault.sol, see the code there for reference
    function greyList(address _target) external view returns(bool);

    function addVaultAndStrategy(address _vault, address _strategy) external;
    function doHardWork(address _vault) external;
    function hasVault(address _vault) external returns(bool);

    function salvage(address _token, uint256 amount) external;
    function salvageStrategy(address _strategy, address _token, uint256 amount) external;

    function notifyFee(address _underlying, uint256 fee) external;
    function profitSharingNumerator() external view returns (uint256);
    function profitSharingDenominator() external view returns (uint256);

    function feeRewardForwarder() external view returns(address);
    function setFeeRewardForwarder(address _value) external;
}

File 4 of 14 : 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 5 of 14 : ERC20.sol
pragma solidity ^0.5.0;

import "../../GSN/Context.sol";
import "./IERC20.sol";
import "../../math/SafeMath.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20Mintable}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}

File 6 of 14 : ERC20Detailed.sol
pragma solidity ^0.5.0;

import "./IERC20.sol";

/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

File 7 of 14 : 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 8 of 14 : 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 9 of 14 : Math.sol
pragma solidity ^0.5.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}

File 10 of 14 : 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 14 : 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 12 of 14 : 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 13 of 14 : Governable.sol
pragma solidity 0.5.16;

import "./Storage.sol";

contract Governable {

  Storage public store;

  constructor(address _store) public {
    require(_store != address(0), "new storage shouldn't be empty");
    store = Storage(_store);
  }

  modifier onlyGovernance() {
    require(store.isGovernance(msg.sender), "Not governance");
    _;
  }

  function setStorage(address _store) public onlyGovernance {
    require(_store != address(0), "new storage shouldn't be empty");
    store = Storage(_store);
  }

  function governance() public view returns (address) {
    return store.governance();
  }
}

File 14 of 14 : Storage.sol
pragma solidity 0.5.16;

contract Storage {

  address public governance;
  address public controller;

  constructor() public {
    governance = msg.sender;
  }

  modifier onlyGovernance() {
    require(isGovernance(msg.sender), "Not governance");
    _;
  }

  function setGovernance(address _governance) public onlyGovernance {
    require(_governance != address(0), "new governance shouldn't be empty");
    governance = _governance;
  }

  function setController(address _controller) public onlyGovernance {
    require(_controller != address(0), "new controller shouldn't be empty");
    controller = _controller;
  }

  function isGovernance(address account) public view returns (bool) {
    return account == governance;
  }

  function isController(address account) public view returns (bool) {
    return account == controller;
  }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_rewardTokens","type":"address[]"},{"internalType":"address","name":"_lpToken","type":"address"},{"internalType":"uint256","name":"_duration","type":"uint256"},{"internalType":"address[]","name":"_rewardDistribution","type":"address[]"},{"internalType":"address","name":"_storage","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":"rewardToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"address","name":"rewardToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardDenied","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"address","name":"rewardToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"smartContractAddress","type":"address"},{"indexed":true,"internalType":"address","name":"smartContractInitiator","type":"address"}],"name":"SmartContractRecorded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"rt","type":"address"}],"name":"addRewardToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"rt","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"i","type":"uint256"},{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"exit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getAllRewards","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"rt","type":"address"}],"name":"getReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"rt","type":"address"}],"name":"getRewardTokenIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"rt","type":"address"}],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"i","type":"uint256"}],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastUpdateTimeForToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lpToken","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"notifyRewardAmount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_rewardToken","type":"address"},{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"notifyTargetRewardAmount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"periodFinishForToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"pushAllRewards","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"rt","type":"address"}],"name":"removeRewardToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewardDistribution","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"i","type":"uint256"}],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"rt","type":"address"}],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardPerTokenStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewardPerTokenStoredForToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"rewardRateForToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardToken","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardTokens","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardTokensLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"rewardsForToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"_newRewardDistribution","type":"address[]"},{"internalType":"bool","name":"_flag","type":"bool"}],"name":"setRewardDistribution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_store","type":"address"}],"name":"setStorage","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":[{"internalType":"address","name":"","type":"address"}],"name":"stakedBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"store","outputs":[{"internalType":"contract Storage","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaidForToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620040163803806200401683398181016040526101008110156200003857600080fd5b81019080805160405193929190846401000000008211156200005957600080fd5b9083019060208201858111156200006f57600080fd5b82518660208202830111640100000000821117156200008d57600080fd5b82525081516020918201928201910280838360005b83811015620000bc578181015183820152602001620000a2565b505050509190910160408181526020840151908401516060909401805191969495929493509084640100000000821115620000f657600080fd5b9083019060208201858111156200010c57600080fd5b82518660208202830111640100000000821117156200012a57600080fd5b82525081516020918201928201910280838360005b83811015620001595781810151838201526020016200013f565b5050505090500160405260200180519060200190929190805160405193929190846401000000008211156200018d57600080fd5b908301906020820185811115620001a357600080fd5b8251640100000000811182820188101715620001be57600080fd5b82525081516020918201929091019080838360005b83811015620001ed578181015183820152602001620001d3565b50505050905090810190601f1680156200021b5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200023f57600080fd5b9083019060208201858111156200025557600080fd5b82516401000000008111828201881017156200027057600080fd5b82525081516020918201929091019080838360005b838110156200029f57818101518382015260200162000285565b50505050905090810190601f168015620002cd5780820380516001836020036101000a031916815260200191505b5060405260200151915083905082828680896000620002f46001600160e01b036200061216565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600160208190527f0a5538fb64e6b51dfc1e9da68140895daed76d1367ca3b1bc9cef9f00c2d5579805460ff19908116831790915573153c544f72329c1ba521ddf5086cf2fa98c8667660009081527fe1feaa86b848576d938a3520a1a32285cc186273f5a6ccc948ddbae73f96c342805490921690921790555b815181101562000410576001806000848481518110620003d557fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055600101620003b9565b50506001600160a01b0381166200046e576040805162461bcd60e51b815260206004820152601e60248201527f6e65772073746f726167652073686f756c646e277420626520656d7074790000604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055508251620004a490600690602086019062000617565b508151620004ba90600790602085019062000617565b5080600860006101000a81548160ff021916908360ff160217905550505050866001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156200051357600080fd5b505afa15801562000528573d6000803e3d6000fd5b505050506040513d60208110156200053f57600080fd5b505160ff828116911614620005865760405162461bcd60e51b815260040180806020018281038252602b81526020018062003feb602b913960400191505060405180910390fd5b8751620005c55760405162461bcd60e51b815260040180806020018281038252602d81526020018062003fbe602d913960400191505060405180910390fd5b8751620005da90600c9060208b01906200069c565b5050600880546001600160a01b0390971661010002610100600160a81b03199097169690961790955550505060095550620007469050565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200065a57805160ff19168380011785556200068a565b828001600101855582156200068a579182015b828111156200068a5782518255916020019190600101906200066d565b506200069892915062000702565b5090565b828054828255906000526020600020908101928215620006f4579160200282015b82811115620006f457825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620006bd565b50620006989291506200071f565b6200061491905b8082111562000698576000815560010162000709565b6200061491905b80821115620006985780546001600160a01b031916815560010162000726565b61386880620007566000396000f3fe608060405234801561001057600080fd5b50600436106103a35760003560e01c806380faa57d116101e9578063c393bd2f1161010f578063e9fad8ee116100ad578063f2fde38b1161007c578063f2fde38b14610abb578063f77c479114610ae1578063f7c618c114610ae9578063fce42aee14610af1576103a3565b8063e9fad8ee14610a68578063ebe2b12b14610a70578063eeca156214610a78578063f122977714610a95576103a3565b8063cf039f49116100e9578063cf039f49146109d8578063dd62ed3e14610a06578063df136d6514610a34578063e39c08fc14610a3c576103a3565b8063c393bd2f1461099a578063c8f33c91146109c8578063cd3daf9d146109d0576103a3565b80639600e1ed11610187578063a694fc3a11610156578063a694fc3a14610923578063a9059cbb14610940578063bf199e621461096c578063c00007b014610974576103a3565b80639600e1ed146108a3578063975057e7146108c9578063a31ff86b146108d1578063a457c2d7146108f7576103a3565b80638da5cb5b116101c35780638da5cb5b146108655780638f32d59b1461086d5780639137c1a71461087557806395d89b411461089b576103a3565b806380faa57d1461081a578063874c120b146108225780638b8763471461083f576103a3565b806332797e2f116102ce5780635aa6e6751161026c57806370a082311161023b57806370a08231146107c7578063715018a6146107ed5780637b0a47ee146107f55780637bb7bed1146107fd576103a3565b80635aa6e675146107495780635fcbd2851461076d578063638634ee146107755780637092a0631461079b576103a3565b80633d18b912116102a85780633d18b912146106ed5780633d509c97146106f55780633fee85e61461071b57806345b35f5614610741576103a3565b806332797e2f1461063257806339509351146106a45780633c6b16ab146106d0576103a3565b80631676539111610346578063211dc32d11610315578063211dc32d1461059357806323b872dd146105c15780632e1a7d4d146105f7578063313ce56714610614576103a3565b8063167653911461051757806316e23e0e1461053d57806318160ddd146105635780631c03e6cc1461056b576103a3565b806306fdde031161038257806306fdde03146104405780630700037d146104bd578063095ea7b3146104e35780630fb5a6b41461050f576103a3565b80628cc262146103a8578063010ef87a146103e057806303c698d21461041a575b600080fd5b6103ce600480360360208110156103be57600080fd5b50356001600160a01b0316610b17565b60408051918252519081900360200190f35b610406600480360360208110156103f657600080fd5b50356001600160a01b0316610b4d565b604080519115158252519081900360200190f35b6103ce6004803603602081101561043057600080fd5b50356001600160a01b0316610b62565b610448610bbb565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561048257818101518382015260200161046a565b50505050905090810190601f1680156104af5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103ce600480360360208110156104d357600080fd5b50356001600160a01b0316610c52565b610406600480360360408110156104f957600080fd5b506001600160a01b038135169060200135610ca2565b6103ce610cc0565b6103ce6004803603602081101561052d57600080fd5b50356001600160a01b0316610cc6565b6103ce6004803603602081101561055357600080fd5b50356001600160a01b0316610cd8565b6103ce610cea565b6105916004803603602081101561058157600080fd5b50356001600160a01b0316610cf0565b005b6103ce600480360360408110156105a957600080fd5b506001600160a01b0381358116916020013516610e59565b610406600480360360608110156105d757600080fd5b506001600160a01b03813581169160208101359091169060400135610f0a565b6105916004803603602081101561060d57600080fd5b5035610f97565b61061c61115c565b6040805160ff9092168252519081900360200190f35b6105916004803603604081101561064857600080fd5b81019060208101813564010000000081111561066357600080fd5b82018360208201111561067557600080fd5b8035906020019184602083028401116401000000008311171561069757600080fd5b9193509150351515611165565b610406600480360360408110156106ba57600080fd5b506001600160a01b038135169060200135611219565b610591600480360360208110156106e657600080fd5b503561126d565b6105916113e3565b6105916004803603602081101561070b57600080fd5b50356001600160a01b0316611410565b6103ce6004803603602081101561073157600080fd5b50356001600160a01b0316611658565b61059161166a565b610751611840565b604080516001600160a01b039092168252519081900360200190f35b6107516118b6565b6103ce6004803603602081101561078b57600080fd5b50356001600160a01b03166118ca565b610591600480360360408110156107b157600080fd5b506001600160a01b0381351690602001356118ee565b6103ce600480360360208110156107dd57600080fd5b50356001600160a01b0316611c5b565b610591611c76565b6103ce611d19565b6107516004803603602081101561081357600080fd5b5035611d57565b6103ce611d7e565b6103ce6004803603602081101561083857600080fd5b5035611db0565b6103ce6004803603602081101561085557600080fd5b50356001600160a01b0316611ddc565b610751611df0565b610406611dff565b6105916004803603602081101561088b57600080fd5b50356001600160a01b0316611e23565b610448611f59565b6103ce600480360360208110156108b957600080fd5b50356001600160a01b0316611fba565b610751611fcc565b610591600480360360208110156108e757600080fd5b50356001600160a01b0316611fdb565b6104066004803603604081101561090d57600080fd5b506001600160a01b0381351690602001356123c7565b6105916004803603602081101561093957600080fd5b5035612435565b6104066004803603604081101561095657600080fd5b506001600160a01b038135169060200135612600565b6103ce612614565b6105916004803603602081101561098a57600080fd5b50356001600160a01b031661261a565b6103ce600480360360408110156109b057600080fd5b506001600160a01b0381358116916020013516612778565b6103ce612795565b6103ce6127a9565b6103ce600480360360408110156109ee57600080fd5b506001600160a01b03813581169160200135166127bc565b6103ce60048036036040811015610a1c57600080fd5b506001600160a01b03813581169160200135166127d9565b6103ce612804565b6103ce60048036036040811015610a5257600080fd5b50803590602001356001600160a01b0316612818565b61059161282a565b6103ce61285e565b6103ce60048036036020811015610a8e57600080fd5b5035612872565b6103ce60048036036020811015610aab57600080fd5b50356001600160a01b0316612884565b61059160048036036020811015610ad157600080fd5b50356001600160a01b0316612933565b610751612998565b6107516129dd565b6103ce60048036036020811015610b0757600080fd5b50356001600160a01b0316612a07565b6000610b45600c600081548110610b2a57fe5b6000918252602090912001546001600160a01b031683610e59565b90505b919050565b60016020526000908152604090205460ff1681565b6000805b600c54811015610bb157826001600160a01b0316600c8281548110610b8757fe5b6000918252602090912001546001600160a01b03161415610ba9579050610b48565b600101610b66565b5060001992915050565b60068054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c475780601f10610c1c57610100808354040283529160200191610c47565b820191906000526020600020905b815481529060010190602001808311610c2a57829003601f168201915b505050505090505b90565b600060126000600c600081548110610c6657fe5b60009182526020808320909101546001600160a01b03908116845283820194909452604092830182209386168252929092529020549050919050565b6000610cb6610caf612a19565b8484612a1d565b5060015b92915050565b60095481565b600a6020526000908152604090205481565b600e6020526000908152604090205481565b60055490565b600254604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b158015610d3b57600080fd5b505afa158015610d4f573d6000803e3d6000fd5b505050506040513d6020811015610d6557600080fd5b5051610da9576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b600019610db582610b62565b14610e07576040805162461bcd60e51b815260206004820152601b60248201527f52657761726420746f6b656e20616c7265616479206578697374730000000000604482015290519081900360640190fd5b600c80546001810182556000919091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038083166000818152601260209081526040808320948616808452948252808320549383526011825280832094835293905291822054610f039190610ef790670de0b6b3a764000090610eeb90610ec690610eba8a612884565b9063ffffffff612b0916565b6001600160a01b0388166000908152600a60205260409020549063ffffffff612b4b16565b9063ffffffff612ba416565b9063ffffffff612be616565b9392505050565b6000610f17848484612c40565b610f8d84610f23612a19565b610f8885604051806060016040528060288152602001613732602891396001600160a01b038a16600090815260046020526040812090610f61612a19565b6001600160a01b03168152602081019190915260400160002054919063ffffffff612d9e16565b612a1d565b5060019392505050565b3360005b600c54811015611078576000600c8281548110610fb457fe5b6000918252602090912001546001600160a01b03169050610fd481612884565b6001600160a01b038216600090815260106020526040902055610ff6816118ca565b6001600160a01b038083166000908152600f602052604090209190915583161561106f576110248184610e59565b6001600160a01b038083166000818152601260209081526040808320948916808452948252808320959095559181526010825283812054601183528482209382529290915291909120555b50600101610f9b565b50600082116110c2576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b6110cc3383612e35565b336000908152600a60205260409020546110ec908363ffffffff612b0916565b336000818152600a6020526040902091909155600854611122916101009091046001600160a01b0316908463ffffffff612f3116565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b60085460ff1690565b61116d611dff565b6111be576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60005b828110156112135781600160008686858181106111da57fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff19169115159190911790556001016111c1565b50505050565b6000610cb6611226612a19565b84610f888560046000611237612a19565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff612be616565b60016000611279612a19565b6001600160a01b0316815260208101919091526040016000205460ff166112d15760405162461bcd60e51b815260040180806020018281038252602181526020018061375a6021913960400191505060405180910390fd5b6000805b600c548110156113b2576000600c82815481106112ee57fe5b6000918252602090912001546001600160a01b0316905061130e81612884565b6001600160a01b038216600090815260106020526040902055611330816118ca565b6001600160a01b038083166000908152600f60205260409020919091558316156113a95761135e8184610e59565b6001600160a01b038083166000818152601260209081526040808320948916808452948252808320959095559181526010825283812054601183528482209382529290915291909120555b506001016112d5565b506113df600c6000815481106113c457fe5b6000918252602090912001546001600160a01b0316836118ee565b5050565b61140e600c6000815481106113f457fe5b6000918252602090912001546001600160a01b031661261a565b565b600254604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561145b57600080fd5b505afa15801561146f573d6000803e3d6000fd5b505050506040513d602081101561148557600080fd5b50516114c9576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b60006114d482610b62565b905060001981141561152d576040805162461bcd60e51b815260206004820152601c60248201527f52657761726420746f6b656e20646f6573206e6f742065786973747300000000604482015290519081900360640190fd5b42600d6000600c848154811061153f57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054106115a05760405162461bcd60e51b81526004018080602001828103825260318152602001806136a76031913960400191505060405180910390fd5b600c546001106115e15760405162461bcd60e51b81526004018080602001828103825260238152602001806136166023913960400191505060405180910390fd5b600c805460001981019190829081106115f657fe5b600091825260209091200154600c80546001600160a01b03909216918490811061161c57fe5b600091825260209091200180546001600160a01b0319166001600160a01b0392909216919091179055600c805490611213906000198301613593565b600d6020526000908152604090205481565b3360005b600c5481101561174b576000600c828154811061168757fe5b6000918252602090912001546001600160a01b031690506116a781612884565b6001600160a01b0382166000908152601060205260409020556116c9816118ca565b6001600160a01b038083166000908152600f6020526040902091909155831615611742576116f78184610e59565b6001600160a01b038083166000818152601260209081526040808320948916808452948252808320959095559181526010825283812054601183528482209382529290915291909120555b5060010161166e565b50611754612f83565b336000908152600b602052604081205460ff1615806117f95750611776612998565b6001600160a01b03166330e412ad336040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156117cb57600080fd5b505afa1580156117df573d6000803e3d6000fd5b505050506040513d60208110156117f557600080fd5b5051155b905060005b600c5481101561183b57611833600c828154811061181857fe5b6000918252602090912001546001600160a01b031683612fce565b6001016117fe565b505050565b60025460408051635aa6e67560e01b815290516000926001600160a01b031691635aa6e675916004808301926020929190829003018186803b15801561188557600080fd5b505afa158015611899573d6000803e3d6000fd5b505050506040513d60208110156118af57600080fd5b5051905090565b60085461010090046001600160a01b031681565b6001600160a01b0381166000908152600d6020526040812054610b45904290613138565b600160006118fa612a19565b6001600160a01b0316815260208101919091526040016000205460ff166119525760405162461bcd60e51b815260040180806020018281038252602181526020018061375a6021913960400191505060405180910390fd5b6000805b600c54811015611a33576000600c828154811061196f57fe5b6000918252602090912001546001600160a01b0316905061198f81612884565b6001600160a01b0382166000908152601060205260409020556119b1816118ca565b6001600160a01b038083166000908152600f6020526040902091909155831615611a2a576119df8184610e59565b6001600160a01b038083166000818152601260209081526040808320948916808452948252808320959095559181526010825283812054601183528482209382529290915291909120555b50600101611956565b507812725dd1d243aba0e75fe645cc4873f9e65afe688c928e1f218210611a8b5760405162461bcd60e51b81526004018080602001828103825260398152602001806136d86039913960400191505060405180910390fd5b6000611a9684610b62565b9050600019811415611aef576040805162461bcd60e51b815260206004820152601a60248201527f726577617264546f6b656e496e646578206e6f7420666f756e64000000000000604482015290519081900360640190fd5b6001600160a01b0384166000908152600d60205260409020544210611b4057600954611b2290849063ffffffff612ba416565b6001600160a01b0385166000908152600e6020526040902055611bcd565b6001600160a01b0384166000908152600d6020526040812054611b69904263ffffffff612b0916565b6001600160a01b0386166000908152600e602052604081205491925090611b9790839063ffffffff612b4b16565b600954909150611bb190610eeb878463ffffffff612be616565b6001600160a01b0387166000908152600e602052604090205550505b6001600160a01b0384166000908152600f602052604090204290819055600954611bfd919063ffffffff612be616565b6001600160a01b0385166000818152600d602090815260409182902093909355805191825291810185905281517fac24935fd910bc682b5ccb1a07b718cadf8cf2f6d1404c4f3ddc3662dae40e29929181900390910190a150505050565b6001600160a01b031660009081526003602052604090205490565b611c7e611dff565b611ccf576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000600e6000600c600081548110611d2d57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054905090565b600c8181548110611d6457fe5b6000918252602090912001546001600160a01b0316905081565b6000611dab600c600081548110611d9157fe5b6000918252602090912001546001600160a01b03166118ca565b905090565b6000610b45600c8381548110611dc257fe5b6000918252602090912001546001600160a01b0316612884565b600060116000600c600081548110610c6657fe5b6000546001600160a01b031690565b600080546001600160a01b0316611e14612a19565b6001600160a01b031614905090565b600254604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b158015611e6e57600080fd5b505afa158015611e82573d6000803e3d6000fd5b505050506040513d6020811015611e9857600080fd5b5051611edc576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b038116611f37576040805162461bcd60e51b815260206004820152601e60248201527f6e65772073746f726167652073686f756c646e277420626520656d7074790000604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60078054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c475780601f10610c1c57610100808354040283529160200191610c47565b600f6020526000908152604090205481565b6002546001600160a01b031681565b8060005b600c548110156120bc576000600c8281548110611ff857fe5b6000918252602090912001546001600160a01b0316905061201881612884565b6001600160a01b03821660009081526010602052604090205561203a816118ca565b6001600160a01b038083166000908152600f60205260409020919091558316156120b3576120688184610e59565b6001600160a01b038083166000818152601260209081526040808320948916808452948252808320959095559181526010825283812054601183528482209382529290915291909120555b50600101611fdf565b50600254604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561210857600080fd5b505afa15801561211c573d6000803e3d6000fd5b505050506040513d602081101561213257600080fd5b5051612176576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b0382166000908152600b602052604081205460ff16158061222457506121a1612998565b6001600160a01b03166330e412ad846040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156121f657600080fd5b505afa15801561220a573d6000803e3d6000fd5b505050506040513d602081101561222057600080fd5b5051155b905060005b600c54811015611213576000612260600c838154811061224557fe5b6000918252602090912001546001600160a01b031686610e59565b905080156123be57600060126000600c858154811061227b57fe5b60009182526020808320909101546001600160a01b0390811684528382019490945260409283018220938a168252929092529020558215612356576122ea8582600c85815481106122c857fe5b6000918252602090912001546001600160a01b0316919063ffffffff612f3116565b846001600160a01b03167f540798df468d7b23d11f156fdb954cb19ad414d150722a7b6d55ba369dea792e600c848154811061232257fe5b60009182526020918290200154604080516001600160a01b03909216825291810185905281519081900390910190a26123be565b846001600160a01b03167f93d33fb9d90ae73b02f30b2f936d92ef70eeecb5ca01758197b4238941763d23600c848154811061238e57fe5b60009182526020918290200154604080516001600160a01b03909216825291810185905281519081900390910190a25b50600101612229565b6000610cb66123d4612a19565b84610f888560405180606001604052806025815260200161380f60259139600460006123fe612a19565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff612d9e16565b3360005b600c54811015612516576000600c828154811061245257fe5b6000918252602090912001546001600160a01b0316905061247281612884565b6001600160a01b038216600090815260106020526040902055612494816118ca565b6001600160a01b038083166000908152600f602052604090209190915583161561250d576124c28184610e59565b6001600160a01b038083166000818152601260209081526040808320948916808452948252808320959095559181526010825283812054601183528482209382529290915291909120555b50600101612439565b506000821161255d576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b612565612f83565b61256f338361314e565b336000908152600a602052604090205461258f908363ffffffff612be616565b336000818152600a60205260409020919091556008546125c6916101009091046001600160a01b031690308563ffffffff61324016565b60408051838152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a25050565b6000610cb661260d612a19565b8484612c40565b600c5490565b338161262581612884565b6001600160a01b038216600090815260106020526040902055612647816118ca565b6001600160a01b038083166000908152600f60205260409020919091558216156126c0576126758183610e59565b6001600160a01b038083166000818152601260209081526040808320948816808452948252808320959095559181526010825283812054601183528482209382529290915291909120555b6126c8612f83565b336000908152600b602052604090205461183b90849060ff16158061277357506126f0612998565b6001600160a01b03166330e412ad336040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561274557600080fd5b505afa158015612759573d6000803e3d6000fd5b505050506040513d602081101561276f57600080fd5b5051155b612fce565b601160209081526000928352604080842090915290825290205481565b6000600f6000600c600081548110611d2d57fe5b6000611dab600c600081548110611dc257fe5b601260209081526000928352604080842090915290825290205481565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b600060106000600c600081548110611d2d57fe5b6000610f03600c8481548110610b2a57fe5b336000818152600a602052604090205461285691612851919061284c90611c5b565b613138565b610f97565b61140e61166a565b6000600d6000600c600081548110611d2d57fe5b6000610b45600c8381548110611d9157fe5b600061288e610cea565b6128b157506001600160a01b038116600090815260106020526040902054610b48565b610b4561290e6128bf610cea565b6001600160a01b0385166000908152600e6020908152604080832054600f90925290912054610eeb91670de0b6b3a76400009161290291908290610eba8b6118ca565b9063ffffffff612b4b16565b6001600160a01b0384166000908152601060205260409020549063ffffffff612be616565b61293b611dff565b61298c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6129958161329a565b50565b6002546040805163f77c479160e01b815290516000926001600160a01b03169163f77c4791916004808301926020929190829003018186803b15801561188557600080fd5b6000600c6000815481106129ed57fe5b6000918252602090912001546001600160a01b0316905090565b60106020526000908152604090205481565b3390565b6001600160a01b038316612a625760405162461bcd60e51b81526004018080602001828103825260248152602001806137c16024913960400191505060405180910390fd5b6001600160a01b038216612aa75760405162461bcd60e51b815260040180806020018281038252602281526020018061365f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000610f0383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612d9e565b600082612b5a57506000610cba565b82820282848281612b6757fe5b0414610f035760405162461bcd60e51b81526004018080602001828103825260218152602001806137116021913960400191505060405180910390fd5b6000610f0383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061333a565b600082820183811015610f03576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038316612c855760405162461bcd60e51b815260040180806020018281038252602581526020018061379c6025913960400191505060405180910390fd5b6001600160a01b038216612cca5760405162461bcd60e51b81526004018080602001828103825260238152602001806135d16023913960400191505060405180910390fd5b612d0d81604051806060016040528060268152602001613681602691396001600160a01b038616600090815260036020526040902054919063ffffffff612d9e16565b6001600160a01b038085166000908152600360205260408082209390935590841681522054612d42908263ffffffff612be616565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115612e2d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612df2578181015183820152602001612dda565b50505050905090810190601f168015612e1f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216612e7a5760405162461bcd60e51b815260040180806020018281038252602181526020018061377b6021913960400191505060405180910390fd5b612ebd816040518060600160405280602281526020016135f4602291396001600160a01b038516600090815260036020526040902054919063ffffffff612d9e16565b6001600160a01b038316600090815260036020526040902055600554612ee9908263ffffffff612b0916565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261183b90849061339f565b32331461140e57336000818152600b6020526040808220805460ff19166001179055513292917f70da7b97c021a1e9d5c080587a8ecf9eae97ef5f9bc39e1ac9bfc054104e9e0691a3565b6000612fda8333610e59565b905060008111801561305f5750604080516370a0823160e01b8152306004820152905182916001600160a01b038616916370a0823191602480820192602092909190829003018186803b15801561303057600080fd5b505afa158015613044573d6000803e3d6000fd5b505050506040513d602081101561305a57600080fd5b505110155b1561183b576001600160a01b038316600090815260126020908152604080832033845290915281205581156130f0576130a86001600160a01b038416338363ffffffff612f3116565b604080516001600160a01b038516815260208101839052815133927f540798df468d7b23d11f156fdb954cb19ad414d150722a7b6d55ba369dea792e928290030190a261183b565b604080516001600160a01b038516815260208101839052815133927f93d33fb9d90ae73b02f30b2f936d92ef70eeecb5ca01758197b4238941763d23928290030190a2505050565b60008183106131475781610f03565b5090919050565b6001600160a01b0382166131a9576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6005546131bc908263ffffffff612be616565b6005556001600160a01b0382166000908152600360205260409020546131e8908263ffffffff612be616565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261121390859061339f565b6001600160a01b0381166132df5760405162461bcd60e51b81526004018080602001828103825260268152602001806136396026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600081836133895760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612df2578181015183820152602001612dda565b50600083858161339557fe5b0495945050505050565b6133b1826001600160a01b0316613557565b613402576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106134405780518252601f199092019160209182019101613421565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146134a2576040519150601f19603f3d011682016040523d82523d6000602084013e6134a7565b606091505b5091509150816134fe576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156112135780806020019051602081101561351a57600080fd5b50516112135760405162461bcd60e51b815260040180806020018281038252602a8152602001806137e5602a913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061358b57508115155b949350505050565b81548183558181111561183b5760008381526020902061183b918101908301610c4f91905b808211156135cc57600081556001016135b8565b509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636543616e6e6f742072656d6f766520746865206c6173742072657761726420746f6b656e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636543616e206f6e6c792072656d6f7665207768656e207468652072657761726420706572696f642068617320706173736564746865206e6f746966696564207265776172642063616e6e6f7420696e766f6b65206d756c7469706c69636174696f6e206f766572666c6f77536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636543616c6c6572206973206e6f742072657761726420646973747269627574696f6e45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820672037a3596213615538376ce3eace6e05fb4fae69c53a0fb7157233eb7951dc64736f6c6343000510003273686f756c6420696e697469616c697a652077697468206174206c65617374203120726577617264546f6b656e646563696d616c732068617320746f20626520616c69676e6564207769746820746865206c70546f6b656e00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000ca19915439c12b16c0a8c119ec05fa801365a150000000000000000000000000000000000000000000000000000000000093a800000000000000000000000000000000000000000000000000000000000000140000000000000000000000000c95cbe4ca30055c787cb784be99d6a8494d0d197000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000010000000000000000000000001571ed0bed4d987fe2b498ddbae7dfa19519f6510000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f00dd244228f51547f0563e60bca65a30fbf5f7f00000000000000000000000000000000000000000000000000000000000000087066554e492d563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000087066554e492d5632000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103a35760003560e01c806380faa57d116101e9578063c393bd2f1161010f578063e9fad8ee116100ad578063f2fde38b1161007c578063f2fde38b14610abb578063f77c479114610ae1578063f7c618c114610ae9578063fce42aee14610af1576103a3565b8063e9fad8ee14610a68578063ebe2b12b14610a70578063eeca156214610a78578063f122977714610a95576103a3565b8063cf039f49116100e9578063cf039f49146109d8578063dd62ed3e14610a06578063df136d6514610a34578063e39c08fc14610a3c576103a3565b8063c393bd2f1461099a578063c8f33c91146109c8578063cd3daf9d146109d0576103a3565b80639600e1ed11610187578063a694fc3a11610156578063a694fc3a14610923578063a9059cbb14610940578063bf199e621461096c578063c00007b014610974576103a3565b80639600e1ed146108a3578063975057e7146108c9578063a31ff86b146108d1578063a457c2d7146108f7576103a3565b80638da5cb5b116101c35780638da5cb5b146108655780638f32d59b1461086d5780639137c1a71461087557806395d89b411461089b576103a3565b806380faa57d1461081a578063874c120b146108225780638b8763471461083f576103a3565b806332797e2f116102ce5780635aa6e6751161026c57806370a082311161023b57806370a08231146107c7578063715018a6146107ed5780637b0a47ee146107f55780637bb7bed1146107fd576103a3565b80635aa6e675146107495780635fcbd2851461076d578063638634ee146107755780637092a0631461079b576103a3565b80633d18b912116102a85780633d18b912146106ed5780633d509c97146106f55780633fee85e61461071b57806345b35f5614610741576103a3565b806332797e2f1461063257806339509351146106a45780633c6b16ab146106d0576103a3565b80631676539111610346578063211dc32d11610315578063211dc32d1461059357806323b872dd146105c15780632e1a7d4d146105f7578063313ce56714610614576103a3565b8063167653911461051757806316e23e0e1461053d57806318160ddd146105635780631c03e6cc1461056b576103a3565b806306fdde031161038257806306fdde03146104405780630700037d146104bd578063095ea7b3146104e35780630fb5a6b41461050f576103a3565b80628cc262146103a8578063010ef87a146103e057806303c698d21461041a575b600080fd5b6103ce600480360360208110156103be57600080fd5b50356001600160a01b0316610b17565b60408051918252519081900360200190f35b610406600480360360208110156103f657600080fd5b50356001600160a01b0316610b4d565b604080519115158252519081900360200190f35b6103ce6004803603602081101561043057600080fd5b50356001600160a01b0316610b62565b610448610bbb565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561048257818101518382015260200161046a565b50505050905090810190601f1680156104af5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103ce600480360360208110156104d357600080fd5b50356001600160a01b0316610c52565b610406600480360360408110156104f957600080fd5b506001600160a01b038135169060200135610ca2565b6103ce610cc0565b6103ce6004803603602081101561052d57600080fd5b50356001600160a01b0316610cc6565b6103ce6004803603602081101561055357600080fd5b50356001600160a01b0316610cd8565b6103ce610cea565b6105916004803603602081101561058157600080fd5b50356001600160a01b0316610cf0565b005b6103ce600480360360408110156105a957600080fd5b506001600160a01b0381358116916020013516610e59565b610406600480360360608110156105d757600080fd5b506001600160a01b03813581169160208101359091169060400135610f0a565b6105916004803603602081101561060d57600080fd5b5035610f97565b61061c61115c565b6040805160ff9092168252519081900360200190f35b6105916004803603604081101561064857600080fd5b81019060208101813564010000000081111561066357600080fd5b82018360208201111561067557600080fd5b8035906020019184602083028401116401000000008311171561069757600080fd5b9193509150351515611165565b610406600480360360408110156106ba57600080fd5b506001600160a01b038135169060200135611219565b610591600480360360208110156106e657600080fd5b503561126d565b6105916113e3565b6105916004803603602081101561070b57600080fd5b50356001600160a01b0316611410565b6103ce6004803603602081101561073157600080fd5b50356001600160a01b0316611658565b61059161166a565b610751611840565b604080516001600160a01b039092168252519081900360200190f35b6107516118b6565b6103ce6004803603602081101561078b57600080fd5b50356001600160a01b03166118ca565b610591600480360360408110156107b157600080fd5b506001600160a01b0381351690602001356118ee565b6103ce600480360360208110156107dd57600080fd5b50356001600160a01b0316611c5b565b610591611c76565b6103ce611d19565b6107516004803603602081101561081357600080fd5b5035611d57565b6103ce611d7e565b6103ce6004803603602081101561083857600080fd5b5035611db0565b6103ce6004803603602081101561085557600080fd5b50356001600160a01b0316611ddc565b610751611df0565b610406611dff565b6105916004803603602081101561088b57600080fd5b50356001600160a01b0316611e23565b610448611f59565b6103ce600480360360208110156108b957600080fd5b50356001600160a01b0316611fba565b610751611fcc565b610591600480360360208110156108e757600080fd5b50356001600160a01b0316611fdb565b6104066004803603604081101561090d57600080fd5b506001600160a01b0381351690602001356123c7565b6105916004803603602081101561093957600080fd5b5035612435565b6104066004803603604081101561095657600080fd5b506001600160a01b038135169060200135612600565b6103ce612614565b6105916004803603602081101561098a57600080fd5b50356001600160a01b031661261a565b6103ce600480360360408110156109b057600080fd5b506001600160a01b0381358116916020013516612778565b6103ce612795565b6103ce6127a9565b6103ce600480360360408110156109ee57600080fd5b506001600160a01b03813581169160200135166127bc565b6103ce60048036036040811015610a1c57600080fd5b506001600160a01b03813581169160200135166127d9565b6103ce612804565b6103ce60048036036040811015610a5257600080fd5b50803590602001356001600160a01b0316612818565b61059161282a565b6103ce61285e565b6103ce60048036036020811015610a8e57600080fd5b5035612872565b6103ce60048036036020811015610aab57600080fd5b50356001600160a01b0316612884565b61059160048036036020811015610ad157600080fd5b50356001600160a01b0316612933565b610751612998565b6107516129dd565b6103ce60048036036020811015610b0757600080fd5b50356001600160a01b0316612a07565b6000610b45600c600081548110610b2a57fe5b6000918252602090912001546001600160a01b031683610e59565b90505b919050565b60016020526000908152604090205460ff1681565b6000805b600c54811015610bb157826001600160a01b0316600c8281548110610b8757fe5b6000918252602090912001546001600160a01b03161415610ba9579050610b48565b600101610b66565b5060001992915050565b60068054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c475780601f10610c1c57610100808354040283529160200191610c47565b820191906000526020600020905b815481529060010190602001808311610c2a57829003601f168201915b505050505090505b90565b600060126000600c600081548110610c6657fe5b60009182526020808320909101546001600160a01b03908116845283820194909452604092830182209386168252929092529020549050919050565b6000610cb6610caf612a19565b8484612a1d565b5060015b92915050565b60095481565b600a6020526000908152604090205481565b600e6020526000908152604090205481565b60055490565b600254604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b158015610d3b57600080fd5b505afa158015610d4f573d6000803e3d6000fd5b505050506040513d6020811015610d6557600080fd5b5051610da9576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b600019610db582610b62565b14610e07576040805162461bcd60e51b815260206004820152601b60248201527f52657761726420746f6b656e20616c7265616479206578697374730000000000604482015290519081900360640190fd5b600c80546001810182556000919091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038083166000818152601260209081526040808320948616808452948252808320549383526011825280832094835293905291822054610f039190610ef790670de0b6b3a764000090610eeb90610ec690610eba8a612884565b9063ffffffff612b0916565b6001600160a01b0388166000908152600a60205260409020549063ffffffff612b4b16565b9063ffffffff612ba416565b9063ffffffff612be616565b9392505050565b6000610f17848484612c40565b610f8d84610f23612a19565b610f8885604051806060016040528060288152602001613732602891396001600160a01b038a16600090815260046020526040812090610f61612a19565b6001600160a01b03168152602081019190915260400160002054919063ffffffff612d9e16565b612a1d565b5060019392505050565b3360005b600c54811015611078576000600c8281548110610fb457fe5b6000918252602090912001546001600160a01b03169050610fd481612884565b6001600160a01b038216600090815260106020526040902055610ff6816118ca565b6001600160a01b038083166000908152600f602052604090209190915583161561106f576110248184610e59565b6001600160a01b038083166000818152601260209081526040808320948916808452948252808320959095559181526010825283812054601183528482209382529290915291909120555b50600101610f9b565b50600082116110c2576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b6110cc3383612e35565b336000908152600a60205260409020546110ec908363ffffffff612b0916565b336000818152600a6020526040902091909155600854611122916101009091046001600160a01b0316908463ffffffff612f3116565b60408051838152905133917f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5919081900360200190a25050565b60085460ff1690565b61116d611dff565b6111be576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60005b828110156112135781600160008686858181106111da57fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff19169115159190911790556001016111c1565b50505050565b6000610cb6611226612a19565b84610f888560046000611237612a19565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff612be616565b60016000611279612a19565b6001600160a01b0316815260208101919091526040016000205460ff166112d15760405162461bcd60e51b815260040180806020018281038252602181526020018061375a6021913960400191505060405180910390fd5b6000805b600c548110156113b2576000600c82815481106112ee57fe5b6000918252602090912001546001600160a01b0316905061130e81612884565b6001600160a01b038216600090815260106020526040902055611330816118ca565b6001600160a01b038083166000908152600f60205260409020919091558316156113a95761135e8184610e59565b6001600160a01b038083166000818152601260209081526040808320948916808452948252808320959095559181526010825283812054601183528482209382529290915291909120555b506001016112d5565b506113df600c6000815481106113c457fe5b6000918252602090912001546001600160a01b0316836118ee565b5050565b61140e600c6000815481106113f457fe5b6000918252602090912001546001600160a01b031661261a565b565b600254604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561145b57600080fd5b505afa15801561146f573d6000803e3d6000fd5b505050506040513d602081101561148557600080fd5b50516114c9576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b60006114d482610b62565b905060001981141561152d576040805162461bcd60e51b815260206004820152601c60248201527f52657761726420746f6b656e20646f6573206e6f742065786973747300000000604482015290519081900360640190fd5b42600d6000600c848154811061153f57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054106115a05760405162461bcd60e51b81526004018080602001828103825260318152602001806136a76031913960400191505060405180910390fd5b600c546001106115e15760405162461bcd60e51b81526004018080602001828103825260238152602001806136166023913960400191505060405180910390fd5b600c805460001981019190829081106115f657fe5b600091825260209091200154600c80546001600160a01b03909216918490811061161c57fe5b600091825260209091200180546001600160a01b0319166001600160a01b0392909216919091179055600c805490611213906000198301613593565b600d6020526000908152604090205481565b3360005b600c5481101561174b576000600c828154811061168757fe5b6000918252602090912001546001600160a01b031690506116a781612884565b6001600160a01b0382166000908152601060205260409020556116c9816118ca565b6001600160a01b038083166000908152600f6020526040902091909155831615611742576116f78184610e59565b6001600160a01b038083166000818152601260209081526040808320948916808452948252808320959095559181526010825283812054601183528482209382529290915291909120555b5060010161166e565b50611754612f83565b336000908152600b602052604081205460ff1615806117f95750611776612998565b6001600160a01b03166330e412ad336040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156117cb57600080fd5b505afa1580156117df573d6000803e3d6000fd5b505050506040513d60208110156117f557600080fd5b5051155b905060005b600c5481101561183b57611833600c828154811061181857fe5b6000918252602090912001546001600160a01b031683612fce565b6001016117fe565b505050565b60025460408051635aa6e67560e01b815290516000926001600160a01b031691635aa6e675916004808301926020929190829003018186803b15801561188557600080fd5b505afa158015611899573d6000803e3d6000fd5b505050506040513d60208110156118af57600080fd5b5051905090565b60085461010090046001600160a01b031681565b6001600160a01b0381166000908152600d6020526040812054610b45904290613138565b600160006118fa612a19565b6001600160a01b0316815260208101919091526040016000205460ff166119525760405162461bcd60e51b815260040180806020018281038252602181526020018061375a6021913960400191505060405180910390fd5b6000805b600c54811015611a33576000600c828154811061196f57fe5b6000918252602090912001546001600160a01b0316905061198f81612884565b6001600160a01b0382166000908152601060205260409020556119b1816118ca565b6001600160a01b038083166000908152600f6020526040902091909155831615611a2a576119df8184610e59565b6001600160a01b038083166000818152601260209081526040808320948916808452948252808320959095559181526010825283812054601183528482209382529290915291909120555b50600101611956565b507812725dd1d243aba0e75fe645cc4873f9e65afe688c928e1f218210611a8b5760405162461bcd60e51b81526004018080602001828103825260398152602001806136d86039913960400191505060405180910390fd5b6000611a9684610b62565b9050600019811415611aef576040805162461bcd60e51b815260206004820152601a60248201527f726577617264546f6b656e496e646578206e6f7420666f756e64000000000000604482015290519081900360640190fd5b6001600160a01b0384166000908152600d60205260409020544210611b4057600954611b2290849063ffffffff612ba416565b6001600160a01b0385166000908152600e6020526040902055611bcd565b6001600160a01b0384166000908152600d6020526040812054611b69904263ffffffff612b0916565b6001600160a01b0386166000908152600e602052604081205491925090611b9790839063ffffffff612b4b16565b600954909150611bb190610eeb878463ffffffff612be616565b6001600160a01b0387166000908152600e602052604090205550505b6001600160a01b0384166000908152600f602052604090204290819055600954611bfd919063ffffffff612be616565b6001600160a01b0385166000818152600d602090815260409182902093909355805191825291810185905281517fac24935fd910bc682b5ccb1a07b718cadf8cf2f6d1404c4f3ddc3662dae40e29929181900390910190a150505050565b6001600160a01b031660009081526003602052604090205490565b611c7e611dff565b611ccf576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000600e6000600c600081548110611d2d57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054905090565b600c8181548110611d6457fe5b6000918252602090912001546001600160a01b0316905081565b6000611dab600c600081548110611d9157fe5b6000918252602090912001546001600160a01b03166118ca565b905090565b6000610b45600c8381548110611dc257fe5b6000918252602090912001546001600160a01b0316612884565b600060116000600c600081548110610c6657fe5b6000546001600160a01b031690565b600080546001600160a01b0316611e14612a19565b6001600160a01b031614905090565b600254604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b158015611e6e57600080fd5b505afa158015611e82573d6000803e3d6000fd5b505050506040513d6020811015611e9857600080fd5b5051611edc576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b038116611f37576040805162461bcd60e51b815260206004820152601e60248201527f6e65772073746f726167652073686f756c646e277420626520656d7074790000604482015290519081900360640190fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60078054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c475780601f10610c1c57610100808354040283529160200191610c47565b600f6020526000908152604090205481565b6002546001600160a01b031681565b8060005b600c548110156120bc576000600c8281548110611ff857fe5b6000918252602090912001546001600160a01b0316905061201881612884565b6001600160a01b03821660009081526010602052604090205561203a816118ca565b6001600160a01b038083166000908152600f60205260409020919091558316156120b3576120688184610e59565b6001600160a01b038083166000818152601260209081526040808320948916808452948252808320959095559181526010825283812054601183528482209382529290915291909120555b50600101611fdf565b50600254604080516337b87c3960e21b815233600482015290516001600160a01b039092169163dee1f0e491602480820192602092909190829003018186803b15801561210857600080fd5b505afa15801561211c573d6000803e3d6000fd5b505050506040513d602081101561213257600080fd5b5051612176576040805162461bcd60e51b815260206004820152600e60248201526d4e6f7420676f7665726e616e636560901b604482015290519081900360640190fd5b6001600160a01b0382166000908152600b602052604081205460ff16158061222457506121a1612998565b6001600160a01b03166330e412ad846040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156121f657600080fd5b505afa15801561220a573d6000803e3d6000fd5b505050506040513d602081101561222057600080fd5b5051155b905060005b600c54811015611213576000612260600c838154811061224557fe5b6000918252602090912001546001600160a01b031686610e59565b905080156123be57600060126000600c858154811061227b57fe5b60009182526020808320909101546001600160a01b0390811684528382019490945260409283018220938a168252929092529020558215612356576122ea8582600c85815481106122c857fe5b6000918252602090912001546001600160a01b0316919063ffffffff612f3116565b846001600160a01b03167f540798df468d7b23d11f156fdb954cb19ad414d150722a7b6d55ba369dea792e600c848154811061232257fe5b60009182526020918290200154604080516001600160a01b03909216825291810185905281519081900390910190a26123be565b846001600160a01b03167f93d33fb9d90ae73b02f30b2f936d92ef70eeecb5ca01758197b4238941763d23600c848154811061238e57fe5b60009182526020918290200154604080516001600160a01b03909216825291810185905281519081900390910190a25b50600101612229565b6000610cb66123d4612a19565b84610f888560405180606001604052806025815260200161380f60259139600460006123fe612a19565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff612d9e16565b3360005b600c54811015612516576000600c828154811061245257fe5b6000918252602090912001546001600160a01b0316905061247281612884565b6001600160a01b038216600090815260106020526040902055612494816118ca565b6001600160a01b038083166000908152600f602052604090209190915583161561250d576124c28184610e59565b6001600160a01b038083166000818152601260209081526040808320948916808452948252808320959095559181526010825283812054601183528482209382529290915291909120555b50600101612439565b506000821161255d576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b612565612f83565b61256f338361314e565b336000908152600a602052604090205461258f908363ffffffff612be616565b336000818152600a60205260409020919091556008546125c6916101009091046001600160a01b031690308563ffffffff61324016565b60408051838152905133917f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d919081900360200190a25050565b6000610cb661260d612a19565b8484612c40565b600c5490565b338161262581612884565b6001600160a01b038216600090815260106020526040902055612647816118ca565b6001600160a01b038083166000908152600f60205260409020919091558216156126c0576126758183610e59565b6001600160a01b038083166000818152601260209081526040808320948816808452948252808320959095559181526010825283812054601183528482209382529290915291909120555b6126c8612f83565b336000908152600b602052604090205461183b90849060ff16158061277357506126f0612998565b6001600160a01b03166330e412ad336040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b15801561274557600080fd5b505afa158015612759573d6000803e3d6000fd5b505050506040513d602081101561276f57600080fd5b5051155b612fce565b601160209081526000928352604080842090915290825290205481565b6000600f6000600c600081548110611d2d57fe5b6000611dab600c600081548110611dc257fe5b601260209081526000928352604080842090915290825290205481565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b600060106000600c600081548110611d2d57fe5b6000610f03600c8481548110610b2a57fe5b336000818152600a602052604090205461285691612851919061284c90611c5b565b613138565b610f97565b61140e61166a565b6000600d6000600c600081548110611d2d57fe5b6000610b45600c8381548110611d9157fe5b600061288e610cea565b6128b157506001600160a01b038116600090815260106020526040902054610b48565b610b4561290e6128bf610cea565b6001600160a01b0385166000908152600e6020908152604080832054600f90925290912054610eeb91670de0b6b3a76400009161290291908290610eba8b6118ca565b9063ffffffff612b4b16565b6001600160a01b0384166000908152601060205260409020549063ffffffff612be616565b61293b611dff565b61298c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6129958161329a565b50565b6002546040805163f77c479160e01b815290516000926001600160a01b03169163f77c4791916004808301926020929190829003018186803b15801561188557600080fd5b6000600c6000815481106129ed57fe5b6000918252602090912001546001600160a01b0316905090565b60106020526000908152604090205481565b3390565b6001600160a01b038316612a625760405162461bcd60e51b81526004018080602001828103825260248152602001806137c16024913960400191505060405180910390fd5b6001600160a01b038216612aa75760405162461bcd60e51b815260040180806020018281038252602281526020018061365f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260046020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000610f0383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612d9e565b600082612b5a57506000610cba565b82820282848281612b6757fe5b0414610f035760405162461bcd60e51b81526004018080602001828103825260218152602001806137116021913960400191505060405180910390fd5b6000610f0383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061333a565b600082820183811015610f03576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038316612c855760405162461bcd60e51b815260040180806020018281038252602581526020018061379c6025913960400191505060405180910390fd5b6001600160a01b038216612cca5760405162461bcd60e51b81526004018080602001828103825260238152602001806135d16023913960400191505060405180910390fd5b612d0d81604051806060016040528060268152602001613681602691396001600160a01b038616600090815260036020526040902054919063ffffffff612d9e16565b6001600160a01b038085166000908152600360205260408082209390935590841681522054612d42908263ffffffff612be616565b6001600160a01b0380841660008181526003602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115612e2d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612df2578181015183820152602001612dda565b50505050905090810190601f168015612e1f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216612e7a5760405162461bcd60e51b815260040180806020018281038252602181526020018061377b6021913960400191505060405180910390fd5b612ebd816040518060600160405280602281526020016135f4602291396001600160a01b038516600090815260036020526040902054919063ffffffff612d9e16565b6001600160a01b038316600090815260036020526040902055600554612ee9908263ffffffff612b0916565b6005556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261183b90849061339f565b32331461140e57336000818152600b6020526040808220805460ff19166001179055513292917f70da7b97c021a1e9d5c080587a8ecf9eae97ef5f9bc39e1ac9bfc054104e9e0691a3565b6000612fda8333610e59565b905060008111801561305f5750604080516370a0823160e01b8152306004820152905182916001600160a01b038616916370a0823191602480820192602092909190829003018186803b15801561303057600080fd5b505afa158015613044573d6000803e3d6000fd5b505050506040513d602081101561305a57600080fd5b505110155b1561183b576001600160a01b038316600090815260126020908152604080832033845290915281205581156130f0576130a86001600160a01b038416338363ffffffff612f3116565b604080516001600160a01b038516815260208101839052815133927f540798df468d7b23d11f156fdb954cb19ad414d150722a7b6d55ba369dea792e928290030190a261183b565b604080516001600160a01b038516815260208101839052815133927f93d33fb9d90ae73b02f30b2f936d92ef70eeecb5ca01758197b4238941763d23928290030190a2505050565b60008183106131475781610f03565b5090919050565b6001600160a01b0382166131a9576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6005546131bc908263ffffffff612be616565b6005556001600160a01b0382166000908152600360205260409020546131e8908263ffffffff612be616565b6001600160a01b03831660008181526003602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261121390859061339f565b6001600160a01b0381166132df5760405162461bcd60e51b81526004018080602001828103825260268152602001806136396026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600081836133895760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612df2578181015183820152602001612dda565b50600083858161339557fe5b0495945050505050565b6133b1826001600160a01b0316613557565b613402576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106134405780518252601f199092019160209182019101613421565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146134a2576040519150601f19603f3d011682016040523d82523d6000602084013e6134a7565b606091505b5091509150816134fe576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156112135780806020019051602081101561351a57600080fd5b50516112135760405162461bcd60e51b815260040180806020018281038252602a8152602001806137e5602a913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061358b57508115155b949350505050565b81548183558181111561183b5760008381526020902061183b918101908301610c4f91905b808211156135cc57600081556001016135b8565b509056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636543616e6e6f742072656d6f766520746865206c6173742072657761726420746f6b656e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636543616e206f6e6c792072656d6f7665207768656e207468652072657761726420706572696f642068617320706173736564746865206e6f746966696564207265776172642063616e6e6f7420696e766f6b65206d756c7469706c69636174696f6e206f766572666c6f77536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636543616c6c6572206973206e6f742072657761726420646973747269627574696f6e45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820672037a3596213615538376ce3eace6e05fb4fae69c53a0fb7157233eb7951dc64736f6c63430005100032

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

00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000ca19915439c12b16c0a8c119ec05fa801365a150000000000000000000000000000000000000000000000000000000000093a800000000000000000000000000000000000000000000000000000000000000140000000000000000000000000c95cbe4ca30055c787cb784be99d6a8494d0d197000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000010000000000000000000000001571ed0bed4d987fe2b498ddbae7dfa19519f6510000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f00dd244228f51547f0563e60bca65a30fbf5f7f00000000000000000000000000000000000000000000000000000000000000087066554e492d563200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000087066554e492d5632000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _rewardTokens (address[]): 0x1571eD0bed4D987fe2b498DdBaE7DFA19519F651
Arg [1] : _lpToken (address): 0x0cA19915439C12B16C0A8C119eC05fA801365a15
Arg [2] : _duration (uint256): 604800
Arg [3] : _rewardDistribution (address[]): 0xf00dD244228F51547f0563e60bCa65a30FBF5f7f
Arg [4] : _storage (address): 0xc95CbE4ca30055c787CB784BE99D6a8494d0d197
Arg [5] : _name (string): pfUNI-V2
Arg [6] : _symbol (string): pfUNI-V2
Arg [7] : _decimals (uint8): 18

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000ca19915439c12b16c0a8c119ec05fa801365a15
Arg [2] : 0000000000000000000000000000000000000000000000000000000000093a80
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 000000000000000000000000c95cbe4ca30055c787cb784be99d6a8494d0d197
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [9] : 0000000000000000000000001571ed0bed4d987fe2b498ddbae7dfa19519f651
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [11] : 000000000000000000000000f00dd244228f51547f0563e60bca65a30fbf5f7f
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [13] : 7066554e492d5632000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [15] : 7066554e492d5632000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.