Polygon Sponsored slots available. Book your slot here!
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 34,531 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exit | 70617782 | 17 hrs ago | IN | 0 POL | 0.00714815 | ||||
Get Reward | 70617750 | 17 hrs ago | IN | 0 POL | 0.00513349 | ||||
Get Reward | 70608428 | 22 hrs ago | IN | 0 POL | 0.00285407 | ||||
Get Reward | 70605636 | 24 hrs ago | IN | 0 POL | 0.00310329 | ||||
Get Reward | 70602750 | 26 hrs ago | IN | 0 POL | 0.00297156 | ||||
Get Reward | 70530184 | 2 days ago | IN | 0 POL | 0.00297156 | ||||
Exit | 70506739 | 3 days ago | IN | 0 POL | 0.00439413 | ||||
Get Reward | 70506727 | 3 days ago | IN | 0 POL | 0.00245856 | ||||
Get Reward | 70486908 | 3 days ago | IN | 0 POL | 0.00297156 | ||||
Get Reward | 70467180 | 4 days ago | IN | 0 POL | 0.00291156 | ||||
Stake | 70461429 | 4 days ago | IN | 0 POL | 0.00377025 | ||||
Get Reward | 70454275 | 4 days ago | IN | 0 POL | 0.00291156 | ||||
Get Reward | 70450228 | 4 days ago | IN | 0 POL | 0.00297156 | ||||
Stake | 70427850 | 5 days ago | IN | 0 POL | 0.00419784 | ||||
Exit | 70397720 | 6 days ago | IN | 0 POL | 0.00439413 | ||||
Get Reward | 70397705 | 6 days ago | IN | 0 POL | 0.00245856 | ||||
Get Reward | 70397694 | 6 days ago | IN | 0 POL | 0.00297156 | ||||
Get Reward | 70378921 | 6 days ago | IN | 0 POL | 0.00297156 | ||||
Exit | 70280227 | 9 days ago | IN | 0 POL | 0.00388113 | ||||
Get Reward | 70280213 | 9 days ago | IN | 0 POL | 0.00297156 | ||||
Exit | 70171423 | 11 days ago | IN | 0 POL | 0.00490713 | ||||
Get Reward | 70161767 | 11 days ago | IN | 0 POL | 0.00297156 | ||||
Exit | 70128927 | 12 days ago | IN | 0 POL | 0.00484842 | ||||
Get Reward | 70120014 | 13 days ago | IN | 0 POL | 0.0020488 | ||||
Get Reward | 70076128 | 14 days ago | IN | 0 POL | 0.00297156 |
Loading...
Loading
Contract Name:
StakingRewards
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-10-18 */ /** *Submitted for verification at polygonscan.com on 2021-10-19 */ // Sources flattened with hardhat v2.3.3 https://hardhat.org // File openzeppelin-solidity-2.3.0/contracts/math/[email protected] 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 openzeppelin-solidity-2.3.0/contracts/math/[email protected] 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) { require(b <= a, "SafeMath: subtraction overflow"); 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-solidity/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) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); 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) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } // File openzeppelin-solidity-2.3.0/contracts/token/ERC20/[email protected] 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. * * > 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 openzeppelin-solidity-2.3.0/contracts/token/ERC20/[email protected] pragma solidity ^0.5.0; /** * @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 that 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 openzeppelin-solidity-2.3.0/contracts/utils/[email protected] pragma solidity ^0.5.0; /** * @dev Collection of functions related to the address type, */ library Address { /** * @dev Returns true if `account` is a contract. * * This test is non-exhaustive, and there may be false-negatives: during the * execution of a contract's constructor, its address will be reported as * not containing a contract. * * > It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } } // File openzeppelin-solidity-2.3.0/contracts/token/ERC20/[email protected] pragma solidity ^0.5.0; /** * @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); 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 openzeppelin-solidity-2.3.0/contracts/utils/[email protected] pragma solidity ^0.5.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the `nonReentrant` modifier * available, which can be aplied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. */ contract ReentrancyGuard { /// @dev counter to allow mutex lock with only one SSTORE operation uint256 private _guardCounter; constructor () internal { // The counter starts at one to prevent changing it from zero to a non-zero // value, which is a more expensive operation. _guardCounter = 1; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { _guardCounter += 1; uint256 localCounter = _guardCounter; _; require(localCounter == _guardCounter, "ReentrancyGuard: reentrant call"); } } // File contracts/interfaces/IStakingRewards.sol pragma solidity >=0.4.24; interface IStakingRewards { // Views function lastTimeRewardApplicable() external view returns (uint256); function rewardPerToken() external view returns (uint256); function earned(address account) external view returns (uint256); function getRewardForDuration() external view returns (uint256); function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); // Mutative function stake(uint256 amount) external; function withdraw(uint256 amount) external; function getReward() external; function exit() external; } // File contracts/RewardsDistributionRecipient.sol pragma solidity ^0.5.16; contract RewardsDistributionRecipient { address public rewardsDistribution; function notifyRewardAmount(uint256 reward) external; modifier onlyRewardsDistribution() { require(msg.sender == rewardsDistribution, "Caller is not RewardsDistribution contract"); _; } function setRewardsDistribution(address _rewardsDistribution) external onlyRewardsDistribution { rewardsDistribution = _rewardsDistribution; } } // File contracts/StakingRewards.sol pragma solidity ^0.5.16; // Inheritance contract StakingRewards is IStakingRewards, RewardsDistributionRecipient, ReentrancyGuard { using SafeMath for uint256; using SafeERC20 for IERC20; /* ========== STATE VARIABLES ========== */ IERC20 public rewardsToken; IERC20 public stakingToken; uint256 public periodFinish = 0; uint256 public rewardRate = 0; uint256 public rewardsDuration = 28 days; uint256 public lastUpdateTime; uint256 public rewardPerTokenStored; mapping(address => uint256) public userRewardPerTokenPaid; mapping(address => uint256) public rewards; uint256 private _totalSupply; mapping(address => uint256) private _balances; /* ========== CONSTRUCTOR ========== */ constructor( address _rewardsDistribution, address _rewardsToken, address _stakingToken ) public { rewardsToken = IERC20(_rewardsToken); stakingToken = IERC20(_stakingToken); rewardsDistribution = _rewardsDistribution; } /* ========== VIEWS ========== */ function totalSupply() external view returns (uint256) { return _totalSupply; } function balanceOf(address account) external view returns (uint256) { return _balances[account]; } function lastTimeRewardApplicable() public view returns (uint256) { return Math.min(block.timestamp, periodFinish); } function rewardPerToken() public view returns (uint256) { if (_totalSupply == 0) { return rewardPerTokenStored; } return rewardPerTokenStored.add( lastTimeRewardApplicable().sub(lastUpdateTime).mul(rewardRate).mul(1e18).div(_totalSupply) ); } function earned(address account) public view returns (uint256) { return _balances[account].mul(rewardPerToken().sub(userRewardPerTokenPaid[account])).div(1e18).add(rewards[account]); } function getRewardForDuration() external view returns (uint256) { return rewardRate.mul(rewardsDuration); } /* ========== MUTATIVE FUNCTIONS ========== */ function stakeWithPermit(uint256 amount, uint deadline, uint8 v, bytes32 r, bytes32 s) external nonReentrant updateReward(msg.sender) { require(amount > 0, "Cannot stake 0"); _totalSupply = _totalSupply.add(amount); _balances[msg.sender] = _balances[msg.sender].add(amount); // permit IUniswapV2ERC20(address(stakingToken)).permit(msg.sender, address(this), amount, deadline, v, r, s); stakingToken.safeTransferFrom(msg.sender, address(this), amount); emit Staked(msg.sender, amount); } function stake(uint256 amount) external nonReentrant updateReward(msg.sender) { require(amount > 0, "Cannot stake 0"); _totalSupply = _totalSupply.add(amount); _balances[msg.sender] = _balances[msg.sender].add(amount); stakingToken.safeTransferFrom(msg.sender, address(this), amount); emit Staked(msg.sender, amount); } function withdraw(uint256 amount) public nonReentrant updateReward(msg.sender) { require(amount > 0, "Cannot withdraw 0"); _totalSupply = _totalSupply.sub(amount); _balances[msg.sender] = _balances[msg.sender].sub(amount); stakingToken.safeTransfer(msg.sender, amount); emit Withdrawn(msg.sender, amount); } function getReward() public nonReentrant updateReward(msg.sender) { uint256 reward = rewards[msg.sender]; if (reward > 0) { rewards[msg.sender] = 0; rewardsToken.safeTransfer(msg.sender, reward); emit RewardPaid(msg.sender, reward); } } function exit() external { withdraw(_balances[msg.sender]); getReward(); } /* ========== RESTRICTED FUNCTIONS ========== */ function notifyRewardAmount(uint256 reward) external onlyRewardsDistribution updateReward(address(0)) { if (block.timestamp >= periodFinish) { rewardRate = reward.div(rewardsDuration); } else { uint256 remaining = periodFinish.sub(block.timestamp); uint256 leftover = remaining.mul(rewardRate); rewardRate = reward.add(leftover).div(rewardsDuration); } // Ensure the provided reward amount is not more than the balance in the contract. // This keeps the reward rate in the right range, preventing overflows due to // very high values of rewardRate in the earned and rewardsPerToken functions; // Reward + leftover must be less than 2^256 / 10^18 to avoid overflow. uint balance = rewardsToken.balanceOf(address(this)); require(rewardRate <= balance.div(rewardsDuration), "Provided reward too high"); lastUpdateTime = block.timestamp; periodFinish = block.timestamp.add(rewardsDuration); emit RewardAdded(reward); } /* ========== MODIFIERS ========== */ modifier updateReward(address account) { rewardPerTokenStored = rewardPerToken(); lastUpdateTime = lastTimeRewardApplicable(); if (account != address(0)) { rewards[account] = earned(account); userRewardPerTokenPaid[account] = rewardPerTokenStored; } _; } /* ========== EVENTS ========== */ event RewardAdded(uint256 reward); event Staked(address indexed user, uint256 amount); event Withdrawn(address indexed user, uint256 amount); event RewardPaid(address indexed user, uint256 reward); } interface IUniswapV2ERC20 { function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_rewardsDistribution","type":"address"},{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"address","name":"_stakingToken","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"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":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"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":[{"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":"getReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getRewardForDuration","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":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":true,"inputs":[],"name":"periodFinish","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":[],"name":"rewardPerTokenStored","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":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardsDistribution","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardsDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardsToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_rewardsDistribution","type":"address"}],"name":"setRewardsDistribution","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":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"stakeWithPermit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"stakingToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaid","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"}]
Contract Creation Code
6080604052600060045560006005556224ea0060065534801561002157600080fd5b506040516123b03803806123b08339818101604052606081101561004457600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050506001808190555081600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550826000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505061226c806101446000396000f3fe608060405234801561001057600080fd5b506004361061014c5760003560e01c806372f702f3116100c3578063cd3daf9d1161007c578063cd3daf9d146104d1578063d1af0c7d146104ef578063df136d6514610539578063e9fad8ee14610557578063ebe2b12b14610561578063ecd9ba821461057f5761014c565b806372f702f3146103a75780637b0a47ee146103f157806380faa57d1461040f5780638b8763471461042d578063a694fc3a14610485578063c8f33c91146104b35761014c565b80632e1a7d4d116101155780632e1a7d4d14610281578063386a9525146102af5780633c6b16ab146102cd5780633d18b912146102fb5780633fc6df6e1461030557806370a082311461034f5761014c565b80628cc262146101515780630700037d146101a957806318160ddd14610201578063197621431461021f5780631c1f78eb14610263575b600080fd5b6101936004803603602081101561016757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506105d8565b6040518082815260200191505060405180910390f35b6101eb600480360360208110156101bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506106f6565b6040518082815260200191505060405180910390f35b61020961070e565b6040518082815260200191505060405180910390f35b6102616004803603602081101561023557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610718565b005b61026b610800565b6040518082815260200191505060405180910390f35b6102ad6004803603602081101561029757600080fd5b810190808035906020019092919050505061081e565b005b6102b7610b56565b6040518082815260200191505060405180910390f35b6102f9600480360360208110156102e357600080fd5b8101908080359060200190929190505050610b5c565b005b610303610f39565b005b61030d6111de565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103916004803603602081101561036557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611203565b6040518082815260200191505060405180910390f35b6103af61124c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103f9611272565b6040518082815260200191505060405180910390f35b610417611278565b6040518082815260200191505060405180910390f35b61046f6004803603602081101561044357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061128b565b6040518082815260200191505060405180910390f35b6104b16004803603602081101561049b57600080fd5b81019080803590602001909291905050506112a3565b005b6104bb6115dd565b6040518082815260200191505060405180910390f35b6104d96115e3565b6040518082815260200191505060405180910390f35b6104f7611671565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610541611697565b6040518082815260200191505060405180910390f35b61055f61169d565b005b6105696116ef565b6040518082815260200191505060405180910390f35b6105d6600480360360a081101561059557600080fd5b810190808035906020019092919080359060200190929190803560ff16906020019092919080359060200190929190803590602001909291905050506116f5565b005b60006106ef600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106e1670de0b6b3a76400006106d3610685600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106776115e3565b611b4e90919063ffffffff16565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bd790919063ffffffff16565b611c5d90919063ffffffff16565b611cec90919063ffffffff16565b9050919050565b600a6020528060005260406000206000915090505481565b6000600b54905090565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806121e4602a913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610819600654600554611bd790919063ffffffff16565b905090565b60018060008282540192505081905550600060015490503361083e6115e3565b60088190555061084c611278565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109195761088f816105d8565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000831161098f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f43616e6e6f74207769746864726177203000000000000000000000000000000081525060200191505060405180910390fd5b6109a483600b54611b4e90919063ffffffff16565b600b819055506109fc83600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4e90919063ffffffff16565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610a8c3384600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d749092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5846040518082815260200191505060405180910390a2506001548114610b52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b5050565b60065481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806121e4602a913960400191505060405180910390fd5b6000610c0b6115e3565b600881905550610c19611278565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ce657610c5c816105d8565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6004544210610d0f57610d0460065483611c5d90919063ffffffff16565b600581905550610d71565b6000610d2642600454611b4e90919063ffffffff16565b90506000610d3f60055483611bd790919063ffffffff16565b9050610d68600654610d5a8387611cec90919063ffffffff16565b611c5d90919063ffffffff16565b60058190555050505b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610e1257600080fd5b505afa158015610e26573d6000803e3d6000fd5b505050506040513d6020811015610e3c57600080fd5b81019080805190602001909291905050509050610e6460065482611c5d90919063ffffffff16565b6005541115610edb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f50726f76696465642072657761726420746f6f2068696768000000000000000081525060200191505060405180910390fd5b42600781905550610ef760065442611cec90919063ffffffff16565b6004819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d836040518082815260200191505060405180910390a1505050565b600180600082825401925050819055506000600154905033610f596115e3565b600881905550610f67611278565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461103457610faa816105d8565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811115611162576000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111133382600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d749092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b505060015481146111db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b50565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b600061128642600454611e45565b905090565b60096020528060005260406000206000915090505481565b6001806000828254019250508190555060006001549050336112c36115e3565b6008819055506112d1611278565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461139e57611314816105d8565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60008311611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f43616e6e6f74207374616b65203000000000000000000000000000000000000081525060200191505060405180910390fd5b61142983600b54611cec90919063ffffffff16565b600b8190555061148183600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cec90919063ffffffff16565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611513333085600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e5e909392919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d846040518082815260200191505060405180910390a25060015481146115d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b5050565b60075481565b600080600b5414156115f957600854905061166e565b61166b61165a600b5461164c670de0b6b3a764000061163e600554611630600754611622611278565b611b4e90919063ffffffff16565b611bd790919063ffffffff16565b611bd790919063ffffffff16565b611c5d90919063ffffffff16565b600854611cec90919063ffffffff16565b90505b90565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b6116e5600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461081e565b6116ed610f39565b565b60045481565b6001806000828254019250508190555060006001549050336117156115e3565b600881905550611723611278565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117f057611766816105d8565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60008711611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f43616e6e6f74207374616b65203000000000000000000000000000000000000081525060200191505060405180910390fd5b61187b87600b54611cec90919063ffffffff16565b600b819055506118d387600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cec90919063ffffffff16565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d505accf33308a8a8a8a8a6040518863ffffffff1660e01b8152600401808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018460ff1660ff168152602001838152602001828152602001975050505050505050600060405180830381600087803b158015611a1957600080fd5b505af1158015611a2d573d6000803e3d6000fd5b50505050611a80333089600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e5e909392919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d886040518082815260200191505060405180910390a2506001548114611b46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b505050505050565b600082821115611bc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b600080831415611bea5760009050611c57565b6000828402905082848281611bfb57fe5b0414611c52576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806121c36021913960400191505060405180910390fd5b809150505b92915050565b6000808211611cd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b6000828481611cdf57fe5b0490508091505092915050565b600080828401905083811015611d6a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b611e40838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611f64565b505050565b6000818310611e545781611e56565b825b905092915050565b611f5e848573ffffffffffffffffffffffffffffffffffffffff166323b872dd905060e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611f64565b50505050565b611f838273ffffffffffffffffffffffffffffffffffffffff166121af565b611ff5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b602083106120445780518252602082019150602081019050602083039250612021565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146120a6576040519150601f19603f3d011682016040523d82523d6000602084013e6120ab565b606091505b509150915081612123576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b6000815111156121a95780806020019051602081101561214257600080fd5b81019080805190602001909291905050506121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061220e602a913960400191505060405180910390fd5b5b50505050565b600080823b90506000811191505091905056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616c6c6572206973206e6f742052657761726473446973747269627574696f6e20636f6e74726163745361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a723158202b8cc30ab02d474c2bc60c1b7bd2358c718fca75540914db9942a904b390d6d464736f6c634300051000320000000000000000000000009f8d2dafe9978268ac7c67966b366d6d55e97f07000000000000000000000000c5102fe9359fd9a28f877a67e36b0f050d81a3cc000000000000000000000000971039bf0a49c8d8a675f839739ee7a42511ec91
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014c5760003560e01c806372f702f3116100c3578063cd3daf9d1161007c578063cd3daf9d146104d1578063d1af0c7d146104ef578063df136d6514610539578063e9fad8ee14610557578063ebe2b12b14610561578063ecd9ba821461057f5761014c565b806372f702f3146103a75780637b0a47ee146103f157806380faa57d1461040f5780638b8763471461042d578063a694fc3a14610485578063c8f33c91146104b35761014c565b80632e1a7d4d116101155780632e1a7d4d14610281578063386a9525146102af5780633c6b16ab146102cd5780633d18b912146102fb5780633fc6df6e1461030557806370a082311461034f5761014c565b80628cc262146101515780630700037d146101a957806318160ddd14610201578063197621431461021f5780631c1f78eb14610263575b600080fd5b6101936004803603602081101561016757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506105d8565b6040518082815260200191505060405180910390f35b6101eb600480360360208110156101bf57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506106f6565b6040518082815260200191505060405180910390f35b61020961070e565b6040518082815260200191505060405180910390f35b6102616004803603602081101561023557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610718565b005b61026b610800565b6040518082815260200191505060405180910390f35b6102ad6004803603602081101561029757600080fd5b810190808035906020019092919050505061081e565b005b6102b7610b56565b6040518082815260200191505060405180910390f35b6102f9600480360360208110156102e357600080fd5b8101908080359060200190929190505050610b5c565b005b610303610f39565b005b61030d6111de565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103916004803603602081101561036557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611203565b6040518082815260200191505060405180910390f35b6103af61124c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103f9611272565b6040518082815260200191505060405180910390f35b610417611278565b6040518082815260200191505060405180910390f35b61046f6004803603602081101561044357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061128b565b6040518082815260200191505060405180910390f35b6104b16004803603602081101561049b57600080fd5b81019080803590602001909291905050506112a3565b005b6104bb6115dd565b6040518082815260200191505060405180910390f35b6104d96115e3565b6040518082815260200191505060405180910390f35b6104f7611671565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610541611697565b6040518082815260200191505060405180910390f35b61055f61169d565b005b6105696116ef565b6040518082815260200191505060405180910390f35b6105d6600480360360a081101561059557600080fd5b810190808035906020019092919080359060200190929190803560ff16906020019092919080359060200190929190803590602001909291905050506116f5565b005b60006106ef600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106e1670de0b6b3a76400006106d3610685600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106776115e3565b611b4e90919063ffffffff16565b600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bd790919063ffffffff16565b611c5d90919063ffffffff16565b611cec90919063ffffffff16565b9050919050565b600a6020528060005260406000206000915090505481565b6000600b54905090565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806121e4602a913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610819600654600554611bd790919063ffffffff16565b905090565b60018060008282540192505081905550600060015490503361083e6115e3565b60088190555061084c611278565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109195761088f816105d8565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000831161098f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f43616e6e6f74207769746864726177203000000000000000000000000000000081525060200191505060405180910390fd5b6109a483600b54611b4e90919063ffffffff16565b600b819055506109fc83600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b4e90919063ffffffff16565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610a8c3384600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d749092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5846040518082815260200191505060405180910390a2506001548114610b52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b5050565b60065481565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806121e4602a913960400191505060405180910390fd5b6000610c0b6115e3565b600881905550610c19611278565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ce657610c5c816105d8565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6004544210610d0f57610d0460065483611c5d90919063ffffffff16565b600581905550610d71565b6000610d2642600454611b4e90919063ffffffff16565b90506000610d3f60055483611bd790919063ffffffff16565b9050610d68600654610d5a8387611cec90919063ffffffff16565b611c5d90919063ffffffff16565b60058190555050505b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610e1257600080fd5b505afa158015610e26573d6000803e3d6000fd5b505050506040513d6020811015610e3c57600080fd5b81019080805190602001909291905050509050610e6460065482611c5d90919063ffffffff16565b6005541115610edb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f50726f76696465642072657761726420746f6f2068696768000000000000000081525060200191505060405180910390fd5b42600781905550610ef760065442611cec90919063ffffffff16565b6004819055507fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d836040518082815260200191505060405180910390a1505050565b600180600082825401925050819055506000600154905033610f596115e3565b600881905550610f67611278565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461103457610faa816105d8565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811115611162576000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111133382600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611d749092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486826040518082815260200191505060405180910390a25b505060015481146111db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b50565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60055481565b600061128642600454611e45565b905090565b60096020528060005260406000206000915090505481565b6001806000828254019250508190555060006001549050336112c36115e3565b6008819055506112d1611278565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461139e57611314816105d8565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60008311611414576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f43616e6e6f74207374616b65203000000000000000000000000000000000000081525060200191505060405180910390fd5b61142983600b54611cec90919063ffffffff16565b600b8190555061148183600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cec90919063ffffffff16565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611513333085600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e5e909392919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d846040518082815260200191505060405180910390a25060015481146115d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b5050565b60075481565b600080600b5414156115f957600854905061166e565b61166b61165a600b5461164c670de0b6b3a764000061163e600554611630600754611622611278565b611b4e90919063ffffffff16565b611bd790919063ffffffff16565b611bd790919063ffffffff16565b611c5d90919063ffffffff16565b600854611cec90919063ffffffff16565b90505b90565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b6116e5600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461081e565b6116ed610f39565b565b60045481565b6001806000828254019250508190555060006001549050336117156115e3565b600881905550611723611278565b600781905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117f057611766816105d8565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600854600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b60008711611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f43616e6e6f74207374616b65203000000000000000000000000000000000000081525060200191505060405180910390fd5b61187b87600b54611cec90919063ffffffff16565b600b819055506118d387600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cec90919063ffffffff16565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d505accf33308a8a8a8a8a6040518863ffffffff1660e01b8152600401808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018460ff1660ff168152602001838152602001828152602001975050505050505050600060405180830381600087803b158015611a1957600080fd5b505af1158015611a2d573d6000803e3d6000fd5b50505050611a80333089600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e5e909392919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d886040518082815260200191505060405180910390a2506001548114611b46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b505050505050565b600082821115611bc6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b600080831415611bea5760009050611c57565b6000828402905082848281611bfb57fe5b0414611c52576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806121c36021913960400191505060405180910390fd5b809150505b92915050565b6000808211611cd4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b6000828481611cdf57fe5b0490508091505092915050565b600080828401905083811015611d6a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b611e40838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611f64565b505050565b6000818310611e545781611e56565b825b905092915050565b611f5e848573ffffffffffffffffffffffffffffffffffffffff166323b872dd905060e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611f64565b50505050565b611f838273ffffffffffffffffffffffffffffffffffffffff166121af565b611ff5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b602083106120445780518252602082019150602081019050602083039250612021565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146120a6576040519150601f19603f3d011682016040523d82523d6000602084013e6120ab565b606091505b509150915081612123576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b6000815111156121a95780806020019051602081101561214257600080fd5b81019080805190602001909291905050506121a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061220e602a913960400191505060405180910390fd5b5b50505050565b600080823b90506000811191505091905056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7743616c6c6572206973206e6f742052657761726473446973747269627574696f6e20636f6e74726163745361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a723158202b8cc30ab02d474c2bc60c1b7bd2358c718fca75540914db9942a904b390d6d464736f6c63430005100032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009f8d2dafe9978268ac7c67966b366d6d55e97f07000000000000000000000000c5102fe9359fd9a28f877a67e36b0f050d81a3cc000000000000000000000000971039bf0a49c8d8a675f839739ee7a42511ec91
-----Decoded View---------------
Arg [0] : _rewardsDistribution (address): 0x9f8d2dafE9978268aC7c67966B366d6d55e97f07
Arg [1] : _rewardsToken (address): 0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC
Arg [2] : _stakingToken (address): 0x971039bF0A49c8d8A675f839739eE7a42511eC91
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000009f8d2dafe9978268ac7c67966b366d6d55e97f07
Arg [1] : 000000000000000000000000c5102fe9359fd9a28f877a67e36b0f050d81a3cc
Arg [2] : 000000000000000000000000971039bf0a49c8d8a675f839739ee7a42511ec91
Deployed Bytecode Sourcemap
17139:5669:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17139:5669:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18904:198;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18904:198:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17686:42;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17686:42:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18206:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16878:156;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;16878:156:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;19110:121;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20236:357;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20236:357:0;;;;;;;;;;;;;;;;;:::i;:::-;;17495:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21077:1083;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21077:1083:0;;;;;;;;;;;;;;;;;:::i;:::-;;20601:307;;;:::i;:::-;;16612:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18307:112;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18307:112:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17388:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17459:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18427:131;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17622:57;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;17622:57:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19859:369;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19859:369:0;;;;;;;;;;;;;;;;;:::i;:::-;;17542:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;18566:330;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17355:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17578:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20916:97;;;:::i;:::-;;17421:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19293:558;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;19293:558:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18904:198;18958:7;18985:109;19077:7;:16;19085:7;19077:16;;;;;;;;;;;;;;;;18985:87;19067:4;18985:77;19008:53;19029:22;:31;19052:7;19029:31;;;;;;;;;;;;;;;;19008:16;:14;:16::i;:::-;:20;;:53;;;;:::i;:::-;18985:9;:18;18995:7;18985:18;;;;;;;;;;;;;;;;:22;;:77;;;;:::i;:::-;:81;;:87;;;;:::i;:::-;:91;;:109;;;;:::i;:::-;18978:116;;18904:198;;;:::o;17686:42::-;;;;;;;;;;;;;;;;;:::o;18206:93::-;18252:7;18279:12;;18272:19;;18206:93;:::o;16878:156::-;16784:19;;;;;;;;;;;16770:33;;:10;:33;;;16762:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17006:20;16984:19;;:42;;;;;;;;;;;;;;;;;;16878:156;:::o;19110:121::-;19165:7;19192:31;19207:15;;19192:10;;:14;;:31;;;;:::i;:::-;19185:38;;19110:121;:::o;20236:357::-;15578:1;15561:13;;:18;;;;;;;;;;;15590:20;15613:13;;15590:36;;20303:10;22286:16;:14;:16::i;:::-;22263:20;:39;;;;22330:26;:24;:26::i;:::-;22313:14;:43;;;;22390:1;22371:21;;:7;:21;;;22367:157;;22428:15;22435:7;22428:6;:15::i;:::-;22409:7;:16;22417:7;22409:16;;;;;;;;;;;;;;;:34;;;;22492:20;;22458:22;:31;22481:7;22458:31;;;;;;;;;;;;;;;:54;;;;22367:157;20343:1;20334:6;:10;20326:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20392:24;20409:6;20392:12;;:16;;:24;;;;:::i;:::-;20377:12;:39;;;;20451:33;20477:6;20451:9;:21;20461:10;20451:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;20427:9;:21;20437:10;20427:21;;;;;;;;;;;;;;;:57;;;;20495:45;20521:10;20533:6;20495:12;;;;;;;;;;;:25;;;;:45;;;;;:::i;:::-;20566:10;20556:29;;;20578:6;20556:29;;;;;;;;;;;;;;;;;;15637:1;15673:13;;15657:12;:29;15649:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20236:357;;:::o;17495:40::-;;;;:::o;21077:1083::-;16784:19;;;;;;;;;;;16770:33;;:10;:33;;;16762:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21175:1;22286:16;:14;:16::i;:::-;22263:20;:39;;;;22330:26;:24;:26::i;:::-;22313:14;:43;;;;22390:1;22371:21;;:7;:21;;;22367:157;;22428:15;22435:7;22428:6;:15::i;:::-;22409:7;:16;22417:7;22409:16;;;;;;;;;;;;;;;:34;;;;22492:20;;22458:22;:31;22481:7;22458:31;;;;;;;;;;;;;;;:54;;;;22367:157;21213:12;;21194:15;:31;21190:318;;21255:27;21266:15;;21255:6;:10;;:27;;;;:::i;:::-;21242:10;:40;;;;21190:318;;;21315:17;21335:33;21352:15;21335:12;;:16;;:33;;;;:::i;:::-;21315:53;;21383:16;21402:25;21416:10;;21402:9;:13;;:25;;;;:::i;:::-;21383:44;;21455:41;21480:15;;21455:20;21466:8;21455:6;:10;;:20;;;;:::i;:::-;:24;;:41;;;;:::i;:::-;21442:10;:54;;;;21190:318;;;21868:12;21883;;;;;;;;;;;:22;;;21914:4;21883:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21883:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21883:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21883:37:0;;;;;;;;;;;;;;;;21868:52;;21953:28;21965:15;;21953:7;:11;;:28;;;;:::i;:::-;21939:10;;:42;;21931:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22040:15;22023:14;:32;;;;22081:36;22101:15;;22081;:19;;:36;;;;:::i;:::-;22066:12;:51;;;;22133:19;22145:6;22133:19;;;;;;;;;;;;;;;;;;22534:1;16861;21077:1083;:::o;20601:307::-;15578:1;15561:13;;:18;;;;;;;;;;;15590:20;15613:13;;15590:36;;20655:10;22286:16;:14;:16::i;:::-;22263:20;:39;;;;22330:26;:24;:26::i;:::-;22313:14;:43;;;;22390:1;22371:21;;:7;:21;;;22367:157;;22428:15;22435:7;22428:6;:15::i;:::-;22409:7;:16;22417:7;22409:16;;;;;;;;;;;;;;;:34;;;;22492:20;;22458:22;:31;22481:7;22458:31;;;;;;;;;;;;;;;:54;;;;22367:157;20678:14;20695:7;:19;20703:10;20695:19;;;;;;;;;;;;;;;;20678:36;;20738:1;20729:6;:10;20725:176;;;20778:1;20756:7;:19;20764:10;20756:19;;;;;;;;;;;;;;;:23;;;;20794:45;20820:10;20832:6;20794:12;;;;;;;;;;;:25;;;;:45;;;;;:::i;:::-;20870:10;20859:30;;;20882:6;20859:30;;;;;;;;;;;;;;;;;;20725:176;22534:1;15637;15673:13;;15657:12;:29;15649:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20601:307;:::o;16612:34::-;;;;;;;;;;;;;:::o;18307:112::-;18366:7;18393:9;:18;18403:7;18393:18;;;;;;;;;;;;;;;;18386:25;;18307:112;;;:::o;17388:26::-;;;;;;;;;;;;;:::o;17459:29::-;;;;:::o;18427:131::-;18484:7;18511:39;18520:15;18537:12;;18511:8;:39::i;:::-;18504:46;;18427:131;:::o;17622:57::-;;;;;;;;;;;;;;;;;:::o;19859:369::-;15578:1;15561:13;;:18;;;;;;;;;;;15590:20;15613:13;;15590:36;;19925:10;22286:16;:14;:16::i;:::-;22263:20;:39;;;;22330:26;:24;:26::i;:::-;22313:14;:43;;;;22390:1;22371:21;;:7;:21;;;22367:157;;22428:15;22435:7;22428:6;:15::i;:::-;22409:7;:16;22417:7;22409:16;;;;;;;;;;;;;;;:34;;;;22492:20;;22458:22;:31;22481:7;22458:31;;;;;;;;;;;;;;;:54;;;;22367:157;19965:1;19956:6;:10;19948:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20011:24;20028:6;20011:12;;:16;;:24;;;;:::i;:::-;19996:12;:39;;;;20070:33;20096:6;20070:9;:21;20080:10;20070:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;20046:9;:21;20056:10;20046:21;;;;;;;;;;;;;;;:57;;;;20114:64;20144:10;20164:4;20171:6;20114:12;;;;;;;;;;;:29;;;;:64;;;;;;:::i;:::-;20201:10;20194:26;;;20213:6;20194:26;;;;;;;;;;;;;;;;;;15637:1;15673:13;;15657:12;:29;15649:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19859:369;;:::o;17542:29::-;;;;:::o;18566:330::-;18613:7;18653:1;18637:12;;:17;18633:77;;;18678:20;;18671:27;;;;18633:77;18740:148;18783:90;18860:12;;18783:72;18850:4;18783:62;18834:10;;18783:46;18814:14;;18783:26;:24;:26::i;:::-;:30;;:46;;;;:::i;:::-;:50;;:62;;;;:::i;:::-;:66;;:72;;;;:::i;:::-;:76;;:90;;;;:::i;:::-;18740:20;;:24;;:148;;;;:::i;:::-;18720:168;;18566:330;;:::o;17355:26::-;;;;;;;;;;;;;:::o;17578:35::-;;;;:::o;20916:97::-;20952:31;20961:9;:21;20971:10;20961:21;;;;;;;;;;;;;;;;20952:8;:31::i;:::-;20994:11;:9;:11::i;:::-;20916:97::o;17421:31::-;;;;:::o;19293:558::-;15578:1;15561:13;;:18;;;;;;;;;;;15590:20;15613:13;;15590:36;;19415:10;22286:16;:14;:16::i;:::-;22263:20;:39;;;;22330:26;:24;:26::i;:::-;22313:14;:43;;;;22390:1;22371:21;;:7;:21;;;22367:157;;22428:15;22435:7;22428:6;:15::i;:::-;22409:7;:16;22417:7;22409:16;;;;;;;;;;;;;;;:34;;;;22492:20;;22458:22;:31;22481:7;22458:31;;;;;;;;;;;;;;;:54;;;;22367:157;19455:1;19446:6;:10;19438:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19501:24;19518:6;19501:12;;:16;;:24;;;;:::i;:::-;19486:12;:39;;;;19560:33;19586:6;19560:9;:21;19570:10;19560:21;;;;;;;;;;;;;;;;:25;;:33;;;;:::i;:::-;19536:9;:21;19546:10;19536:21;;;;;;;;;;;;;;;:57;;;;19649:12;;;;;;;;;;;19625:45;;;19671:10;19691:4;19698:6;19706:8;19716:1;19719;19722;19625:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19625:99:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19625:99:0;;;;19737:64;19767:10;19787:4;19794:6;19737:12;;;;;;;;;;;:29;;;;:64;;;;;;:::i;:::-;19824:10;19817:26;;;19836:6;19817:26;;;;;;;;;;;;;;;;;;15637:1;15673:13;;15657:12;:29;15649:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19293:558;;;;;;:::o;2398:184::-;2456:7;2489:1;2484;:6;;2476:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2536:9;2552:1;2548;:5;2536:17;;2573:1;2566:8;;;2398:184;;;;:::o;2833:470::-;2891:7;3140:1;3135;:6;3131:47;;;3165:1;3158:8;;;;3131:47;3190:9;3206:1;3202;:5;3190:17;;3235:1;3230;3226;:5;;;;;;:10;3218:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3294:1;3287:8;;;2833:470;;;;;:::o;3771:333::-;3829:7;3928:1;3924;:5;3916:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3971:9;3987:1;3983;:5;;;;;;3971:17;;4095:1;4088:8;;;3771:333;;;;:::o;1942:181::-;2000:7;2020:9;2036:1;2032;:5;2020:17;;2061:1;2056;:6;;2048:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2114:1;2107:8;;;1942:181;;;;:::o;11029:176::-;11112:85;11131:5;11161;:14;;;:23;;;;11186:2;11190:5;11138:58;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;11138:58:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;11138:58:0;11112:18;:85::i;:::-;11029:176;;;:::o;582:106::-;640:7;671:1;667;:5;:13;;679:1;667:13;;;675:1;667:13;660:20;;582:106;;;;:::o;11213:204::-;11314:95;11333:5;11363;:18;;;:27;;;;11392:4;11398:2;11402:5;11340:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;11340:68:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;11340:68:0;11314:18;:95::i;:::-;11213:204;;;;:::o;13023:1114::-;13627:27;13635:5;13627:25;;;:27::i;:::-;13619:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13764:12;13778:23;13813:5;13805:19;;13825:4;13805:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;13805:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;13763:67:0;;;;13849:7;13841:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13930:1;13910:10;:17;:21;13906:224;;;14052:10;14041:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14041:30:0;;;;;;;;;;;;;;;;14033:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13906:224;13023:1114;;;;:::o;9927:422::-;9987:4;10195:12;10306:7;10294:20;10286:28;;10340:1;10333:4;:8;10326:15;;;9927:422;;;:::o
Swarm Source
bzzr://2b8cc30ab02d474c2bc60c1b7bd2358c718fca75540914db9942a904b390d6d4
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.