Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 284 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw Locked | 17659904 | 492 days ago | IN | 0 ETH | 0.00253682 | ||||
Get Reward | 17659895 | 492 days ago | IN | 0 ETH | 0.00357355 | ||||
Get Reward | 12782702 | 1224 days ago | IN | 0 ETH | 0.0041547 | ||||
Get Reward | 12762830 | 1227 days ago | IN | 0 ETH | 0.00163399 | ||||
Withdraw Locked | 12762819 | 1227 days ago | IN | 0 ETH | 0.00124758 | ||||
Get Reward | 12742120 | 1230 days ago | IN | 0 ETH | 0.00352329 | ||||
Withdraw Locked | 12742114 | 1230 days ago | IN | 0 ETH | 0.00207614 | ||||
Withdraw Locked | 12711774 | 1235 days ago | IN | 0 ETH | 0.00097113 | ||||
Get Reward | 12706229 | 1236 days ago | IN | 0 ETH | 0.00224673 | ||||
Withdraw Locked | 12706226 | 1236 days ago | IN | 0 ETH | 0.00126087 | ||||
Get Reward | 12626958 | 1248 days ago | IN | 0 ETH | 0.00216157 | ||||
Withdraw Locked | 12626942 | 1248 days ago | IN | 0 ETH | 0.00120343 | ||||
Get Reward | 12574376 | 1256 days ago | IN | 0 ETH | 0.00181967 | ||||
Get Reward | 12574370 | 1256 days ago | IN | 0 ETH | 0.00551472 | ||||
Withdraw | 12551742 | 1260 days ago | IN | 0 ETH | 0.00323702 | ||||
Get Reward | 12551741 | 1260 days ago | IN | 0 ETH | 0.00486347 | ||||
Get Reward | 12543518 | 1261 days ago | IN | 0 ETH | 0.00816996 | ||||
Get Reward | 12543506 | 1261 days ago | IN | 0 ETH | 0.00860885 | ||||
Withdraw Locked | 12543495 | 1261 days ago | IN | 0 ETH | 0.00461455 | ||||
Withdraw Locked | 12543479 | 1261 days ago | IN | 0 ETH | 0.00562333 | ||||
Get Reward | 12534772 | 1263 days ago | IN | 0 ETH | 0.00320213 | ||||
Withdraw Locked | 12534485 | 1263 days ago | IN | 0 ETH | 0.00166161 | ||||
Get Reward | 12529406 | 1263 days ago | IN | 0 ETH | 0.00439135 | ||||
Withdraw Locked | 12529400 | 1263 days ago | IN | 0 ETH | 0.00208792 | ||||
Withdraw Locked | 12526401 | 1264 days ago | IN | 0 ETH | 0.00242782 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
StakingRewardsDual_FXS_WETH_Sushi
Compiler Version
v0.6.11+commit.5ef660b1
Optimization Enabled:
Yes with 100000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "../StakingRewardsDual.sol"; contract StakingRewardsDual_FXS_WETH_Sushi is StakingRewardsDual { constructor( address _owner, address _rewardsToken0, address _rewardsToken1, address _stakingToken, address _frax_address, address _timelock_address, uint256 _pool_weight0, uint256 _pool_weight1 ) StakingRewardsDual(_owner, _rewardsToken0, _rewardsToken1, _stakingToken, _frax_address, _timelock_address, _pool_weight0, _pool_weight1) public {} }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; /* * @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 { } function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; import "../Common/Context.sol"; import "./IERC20.sol"; import "../Math/SafeMath.sol"; import "../Utils/Address.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; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @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. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * 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; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override 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 virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address.approve(address spender, uint256 amount) */ function approve(address spender, uint256 amount) public virtual override 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 virtual override 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 virtual 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 virtual 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 virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @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 virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for `accounts`'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(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 virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @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 virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @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 virtual { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of `from`'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of `from`'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:using-hooks.adoc[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; import "../Common/Context.sol"; import "./IERC20.sol"; import "../Math/SafeMath.sol"; import "../Utils/Address.sol"; // Due to compiling issues, _name, _symbol, and _decimals were removed /** * @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 ERC20Custom is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) internal _balances; mapping (address => mapping (address => uint256)) internal _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override 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 virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address.approve(address spender, uint256 amount) */ function approve(address spender, uint256 amount) public virtual override 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 virtual override 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 virtual 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 virtual 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 virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @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 virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for `accounts`'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(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 virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @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 virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @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 virtual { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of `from`'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of `from`'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:using-hooks.adoc[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; import "../Common/Context.sol"; import "../Math/SafeMath.sol"; /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; 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 IERC20;` 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)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ 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. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "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"); } } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "../Common/Context.sol"; import "../ERC20/ERC20Custom.sol"; import "../ERC20/IERC20.sol"; import "../Frax/Frax.sol"; import "../Math/SafeMath.sol"; import "../Governance/AccessControl.sol"; contract FRAXShares is ERC20Custom, AccessControl { using SafeMath for uint256; /* ========== STATE VARIABLES ========== */ string public symbol; string public name; uint8 public constant decimals = 18; address public FRAXStablecoinAdd; uint256 public constant genesis_supply = 100000000e18; // 100M is printed upon genesis uint256 public FXS_DAO_min; // Minimum FXS required to join DAO groups address public owner_address; address public oracle_address; address public timelock_address; // Governance timelock address FRAXStablecoin private FRAX; bool public trackingVotes = true; // Tracking votes (only change if need to disable votes) // A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint96 votes; } // A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; // The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /* ========== MODIFIERS ========== */ modifier onlyPools() { require(FRAX.frax_pools(msg.sender) == true, "Only frax pools can mint new FRAX"); _; } modifier onlyByOwnerOrGovernance() { require(msg.sender == owner_address || msg.sender == timelock_address, "You are not an owner or the governance timelock"); _; } /* ========== CONSTRUCTOR ========== */ constructor( string memory _name, string memory _symbol, address _oracle_address, address _owner_address, address _timelock_address ) public { name = _name; symbol = _symbol; owner_address = _owner_address; oracle_address = _oracle_address; timelock_address = _timelock_address; _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _mint(owner_address, genesis_supply); // Do a checkpoint for the owner _writeCheckpoint(owner_address, 0, 0, uint96(genesis_supply)); } /* ========== RESTRICTED FUNCTIONS ========== */ function setOracle(address new_oracle) external onlyByOwnerOrGovernance { oracle_address = new_oracle; } function setTimelock(address new_timelock) external onlyByOwnerOrGovernance { timelock_address = new_timelock; } function setFRAXAddress(address frax_contract_address) external onlyByOwnerOrGovernance { FRAX = FRAXStablecoin(frax_contract_address); } function setFXSMinDAO(uint256 min_FXS) external onlyByOwnerOrGovernance { FXS_DAO_min = min_FXS; } function setOwner(address _owner_address) external onlyByOwnerOrGovernance { owner_address = _owner_address; } function mint(address to, uint256 amount) public onlyPools { _mint(to, amount); } // This function is what other frax pools will call to mint new FXS (similar to the FRAX mint) function pool_mint(address m_address, uint256 m_amount) external onlyPools { if(trackingVotes){ uint32 srcRepNum = numCheckpoints[address(this)]; uint96 srcRepOld = srcRepNum > 0 ? checkpoints[address(this)][srcRepNum - 1].votes : 0; uint96 srcRepNew = add96(srcRepOld, uint96(m_amount), "pool_mint new votes overflows"); _writeCheckpoint(address(this), srcRepNum, srcRepOld, srcRepNew); // mint new votes trackVotes(address(this), m_address, uint96(m_amount)); } super._mint(m_address, m_amount); emit FXSMinted(address(this), m_address, m_amount); } // This function is what other frax pools will call to burn FXS function pool_burn_from(address b_address, uint256 b_amount) external onlyPools { if(trackingVotes){ trackVotes(b_address, address(this), uint96(b_amount)); uint32 srcRepNum = numCheckpoints[address(this)]; uint96 srcRepOld = srcRepNum > 0 ? checkpoints[address(this)][srcRepNum - 1].votes : 0; uint96 srcRepNew = sub96(srcRepOld, uint96(b_amount), "pool_burn_from new votes underflows"); _writeCheckpoint(address(this), srcRepNum, srcRepOld, srcRepNew); // burn votes } super._burnFrom(b_address, b_amount); emit FXSBurned(b_address, address(this), b_amount); } function toggleVotes() external onlyByOwnerOrGovernance { trackingVotes = !trackingVotes; } /* ========== OVERRIDDEN PUBLIC FUNCTIONS ========== */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { if(trackingVotes){ // Transfer votes trackVotes(_msgSender(), recipient, uint96(amount)); } _transfer(_msgSender(), recipient, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { if(trackingVotes){ // Transfer votes trackVotes(sender, recipient, uint96(amount)); } _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /* ========== PUBLIC FUNCTIONS ========== */ /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint96) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint blockNumber) public view returns (uint96) { require(blockNumber < block.number, "FXS::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } /* ========== INTERNAL FUNCTIONS ========== */ // From compound's _moveDelegates // Keep track of votes. "Delegates" is a misnomer here function trackVotes(address srcRep, address dstRep, uint96 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { uint32 srcRepNum = numCheckpoints[srcRep]; uint96 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint96 srcRepNew = sub96(srcRepOld, amount, "FXS::_moveVotes: vote amount underflows"); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { uint32 dstRepNum = numCheckpoints[dstRep]; uint96 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint96 dstRepNew = add96(dstRepOld, amount, "FXS::_moveVotes: vote amount overflows"); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint(address voter, uint32 nCheckpoints, uint96 oldVotes, uint96 newVotes) internal { uint32 blockNumber = safe32(block.number, "FXS::_writeCheckpoint: block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[voter][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[voter][nCheckpoints - 1].votes = newVotes; } else { checkpoints[voter][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[voter] = nCheckpoints + 1; } emit VoterVotesChanged(voter, oldVotes, newVotes); } function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function safe96(uint n, string memory errorMessage) internal pure returns (uint96) { require(n < 2**96, errorMessage); return uint96(n); } function add96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) { uint96 c = a + b; require(c >= a, errorMessage); return c; } function sub96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) { require(b <= a, errorMessage); return a - b; } function getChainId() internal pure returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } /* ========== EVENTS ========== */ /// @notice An event thats emitted when a voters account's vote balance changes event VoterVotesChanged(address indexed voter, uint previousBalance, uint newBalance); // Track FXS burned event FXSBurned(address indexed from, address indexed to, uint256 amount); // Track FXS minted event FXSMinted(address indexed from, address indexed to, uint256 amount); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "../Common/Context.sol"; import "../ERC20/IERC20.sol"; import "../ERC20/ERC20Custom.sol"; import "../ERC20/ERC20.sol"; import "../Math/SafeMath.sol"; import "../FXS/FXS.sol"; import "./Pools/FraxPool.sol"; import "../Oracle/UniswapPairOracle.sol"; import "../Oracle/ChainlinkETHUSDPriceConsumer.sol"; import "../Governance/AccessControl.sol"; contract FRAXStablecoin is ERC20Custom, AccessControl { using SafeMath for uint256; /* ========== STATE VARIABLES ========== */ enum PriceChoice { FRAX, FXS } ChainlinkETHUSDPriceConsumer private eth_usd_pricer; uint8 private eth_usd_pricer_decimals; UniswapPairOracle private fraxEthOracle; UniswapPairOracle private fxsEthOracle; string public symbol; string public name; uint8 public constant decimals = 18; address public owner_address; address public creator_address; address public timelock_address; // Governance timelock address address public controller_address; // Controller contract to dynamically adjust system parameters automatically address public fxs_address; address public frax_eth_oracle_address; address public fxs_eth_oracle_address; address public weth_address; address public eth_usd_consumer_address; uint256 public constant genesis_supply = 2000000e18; // 2M FRAX (only for testing, genesis supply will be 5k on Mainnet). This is to help with establishing the Uniswap pools, as they need liquidity // The addresses in this array are added by the oracle and these contracts are able to mint frax address[] public frax_pools_array; // Mapping is also used for faster verification mapping(address => bool) public frax_pools; // Constants for various precisions uint256 private constant PRICE_PRECISION = 1e6; uint256 public global_collateral_ratio; // 6 decimals of precision, e.g. 924102 = 0.924102 uint256 public redemption_fee; // 6 decimals of precision, divide by 1000000 in calculations for fee uint256 public minting_fee; // 6 decimals of precision, divide by 1000000 in calculations for fee uint256 public frax_step; // Amount to change the collateralization ratio by upon refreshCollateralRatio() uint256 public refresh_cooldown; // Seconds to wait before being able to run refreshCollateralRatio() again uint256 public price_target; // The price of FRAX at which the collateral ratio will respond to; this value is only used for the collateral ratio mechanism and not for minting and redeeming which are hardcoded at $1 uint256 public price_band; // The bound above and below the price target at which the refreshCollateralRatio() will not change the collateral ratio address public DEFAULT_ADMIN_ADDRESS; bytes32 public constant COLLATERAL_RATIO_PAUSER = keccak256("COLLATERAL_RATIO_PAUSER"); bool public collateral_ratio_paused = false; /* ========== MODIFIERS ========== */ modifier onlyCollateralRatioPauser() { require(hasRole(COLLATERAL_RATIO_PAUSER, msg.sender)); _; } modifier onlyPools() { require(frax_pools[msg.sender] == true, "Only frax pools can call this function"); _; } modifier onlyByOwnerOrGovernance() { require(msg.sender == owner_address || msg.sender == timelock_address || msg.sender == controller_address, "You are not the owner, controller, or the governance timelock"); _; } modifier onlyByOwnerGovernanceOrPool() { require( msg.sender == owner_address || msg.sender == timelock_address || frax_pools[msg.sender] == true, "You are not the owner, the governance timelock, or a pool"); _; } /* ========== CONSTRUCTOR ========== */ constructor( string memory _name, string memory _symbol, address _creator_address, address _timelock_address ) public { name = _name; symbol = _symbol; creator_address = _creator_address; timelock_address = _timelock_address; _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); DEFAULT_ADMIN_ADDRESS = _msgSender(); owner_address = _creator_address; _mint(creator_address, genesis_supply); grantRole(COLLATERAL_RATIO_PAUSER, creator_address); grantRole(COLLATERAL_RATIO_PAUSER, timelock_address); frax_step = 2500; // 6 decimals of precision, equal to 0.25% global_collateral_ratio = 1000000; // Frax system starts off fully collateralized (6 decimals of precision) refresh_cooldown = 3600; // Refresh cooldown period is set to 1 hour (3600 seconds) at genesis price_target = 1000000; // Collateral ratio will adjust according to the $1 price target at genesis price_band = 5000; // Collateral ratio will not adjust if between $0.995 and $1.005 at genesis } /* ========== VIEWS ========== */ // Choice = 'FRAX' or 'FXS' for now function oracle_price(PriceChoice choice) internal view returns (uint256) { // Get the ETH / USD price first, and cut it down to 1e6 precision uint256 eth_usd_price = uint256(eth_usd_pricer.getLatestPrice()).mul(PRICE_PRECISION).div(uint256(10) ** eth_usd_pricer_decimals); uint256 price_vs_eth; if (choice == PriceChoice.FRAX) { price_vs_eth = uint256(fraxEthOracle.consult(weth_address, PRICE_PRECISION)); // How much FRAX if you put in PRICE_PRECISION WETH } else if (choice == PriceChoice.FXS) { price_vs_eth = uint256(fxsEthOracle.consult(weth_address, PRICE_PRECISION)); // How much FXS if you put in PRICE_PRECISION WETH } else revert("INVALID PRICE CHOICE. Needs to be either 0 (FRAX) or 1 (FXS)"); // Will be in 1e6 format return eth_usd_price.mul(PRICE_PRECISION).div(price_vs_eth); } // Returns X FRAX = 1 USD function frax_price() public view returns (uint256) { return oracle_price(PriceChoice.FRAX); } // Returns X FXS = 1 USD function fxs_price() public view returns (uint256) { return oracle_price(PriceChoice.FXS); } function eth_usd_price() public view returns (uint256) { return uint256(eth_usd_pricer.getLatestPrice()).mul(PRICE_PRECISION).div(uint256(10) ** eth_usd_pricer_decimals); } // This is needed to avoid costly repeat calls to different getter functions // It is cheaper gas-wise to just dump everything and only use some of the info function frax_info() public view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256, uint256) { return ( oracle_price(PriceChoice.FRAX), // frax_price() oracle_price(PriceChoice.FXS), // fxs_price() totalSupply(), // totalSupply() global_collateral_ratio, // global_collateral_ratio() globalCollateralValue(), // globalCollateralValue minting_fee, // minting_fee() redemption_fee, // redemption_fee() uint256(eth_usd_pricer.getLatestPrice()).mul(PRICE_PRECISION).div(uint256(10) ** eth_usd_pricer_decimals) //eth_usd_price ); } // Iterate through all frax pools and calculate all value of collateral in all pools globally function globalCollateralValue() public view returns (uint256) { uint256 total_collateral_value_d18 = 0; for (uint i = 0; i < frax_pools_array.length; i++){ // Exclude null addresses if (frax_pools_array[i] != address(0)){ total_collateral_value_d18 = total_collateral_value_d18.add(FraxPool(frax_pools_array[i]).collatDollarBalance()); } } return total_collateral_value_d18; } /* ========== PUBLIC FUNCTIONS ========== */ // There needs to be a time interval that this can be called. Otherwise it can be called multiple times per expansion. uint256 public last_call_time; // Last time the refreshCollateralRatio function was called function refreshCollateralRatio() public { require(collateral_ratio_paused == false, "Collateral Ratio has been paused"); uint256 frax_price_cur = frax_price(); require(block.timestamp - last_call_time >= refresh_cooldown, "Must wait for the refresh cooldown since last refresh"); // Step increments are 0.25% (upon genesis, changable by setFraxStep()) if (frax_price_cur > price_target.add(price_band)) { //decrease collateral ratio if(global_collateral_ratio <= frax_step){ //if within a step of 0, go to 0 global_collateral_ratio = 0; } else { global_collateral_ratio = global_collateral_ratio.sub(frax_step); } } else if (frax_price_cur < price_target.sub(price_band)) { //increase collateral ratio if(global_collateral_ratio.add(frax_step) >= 1000000){ global_collateral_ratio = 1000000; // cap collateral ratio at 1.000000 } else { global_collateral_ratio = global_collateral_ratio.add(frax_step); } } last_call_time = block.timestamp; // Set the time of the last expansion } /* ========== RESTRICTED FUNCTIONS ========== */ // Used by pools when user redeems function pool_burn_from(address b_address, uint256 b_amount) public onlyPools { super._burnFrom(b_address, b_amount); emit FRAXBurned(b_address, msg.sender, b_amount); } // This function is what other frax pools will call to mint new FRAX function pool_mint(address m_address, uint256 m_amount) public onlyPools { super._mint(m_address, m_amount); emit FRAXMinted(msg.sender, m_address, m_amount); } // Adds collateral addresses supported, such as tether and busd, must be ERC20 function addPool(address pool_address) public onlyByOwnerOrGovernance { require(frax_pools[pool_address] == false, "address already exists"); frax_pools[pool_address] = true; frax_pools_array.push(pool_address); } // Remove a pool function removePool(address pool_address) public onlyByOwnerOrGovernance { require(frax_pools[pool_address] == true, "address doesn't exist already"); // Delete from the mapping delete frax_pools[pool_address]; // 'Delete' from the array by setting the address to 0x0 for (uint i = 0; i < frax_pools_array.length; i++){ if (frax_pools_array[i] == pool_address) { frax_pools_array[i] = address(0); // This will leave a null in the array and keep the indices the same break; } } } function setOwner(address _owner_address) external onlyByOwnerOrGovernance { owner_address = _owner_address; } function setRedemptionFee(uint256 red_fee) public onlyByOwnerOrGovernance { redemption_fee = red_fee; } function setMintingFee(uint256 min_fee) public onlyByOwnerOrGovernance { minting_fee = min_fee; } function setFraxStep(uint256 _new_step) public onlyByOwnerOrGovernance { frax_step = _new_step; } function setPriceTarget (uint256 _new_price_target) public onlyByOwnerOrGovernance { price_target = _new_price_target; } function setRefreshCooldown(uint256 _new_cooldown) public onlyByOwnerOrGovernance { refresh_cooldown = _new_cooldown; } function setFXSAddress(address _fxs_address) public onlyByOwnerOrGovernance { fxs_address = _fxs_address; } function setETHUSDOracle(address _eth_usd_consumer_address) public onlyByOwnerOrGovernance { eth_usd_consumer_address = _eth_usd_consumer_address; eth_usd_pricer = ChainlinkETHUSDPriceConsumer(eth_usd_consumer_address); eth_usd_pricer_decimals = eth_usd_pricer.getDecimals(); } function setTimelock(address new_timelock) external onlyByOwnerOrGovernance { timelock_address = new_timelock; } function setController(address _controller_address) external onlyByOwnerOrGovernance { controller_address = _controller_address; } function setPriceBand(uint256 _price_band) external onlyByOwnerOrGovernance { price_band = _price_band; } // Sets the FRAX_ETH Uniswap oracle address function setFRAXEthOracle(address _frax_oracle_addr, address _weth_address) public onlyByOwnerOrGovernance { frax_eth_oracle_address = _frax_oracle_addr; fraxEthOracle = UniswapPairOracle(_frax_oracle_addr); weth_address = _weth_address; } // Sets the FXS_ETH Uniswap oracle address function setFXSEthOracle(address _fxs_oracle_addr, address _weth_address) public onlyByOwnerOrGovernance { fxs_eth_oracle_address = _fxs_oracle_addr; fxsEthOracle = UniswapPairOracle(_fxs_oracle_addr); weth_address = _weth_address; } function toggleCollateralRatio() public onlyCollateralRatioPauser { collateral_ratio_paused = !collateral_ratio_paused; } /* ========== EVENTS ========== */ // Track FRAX burned event FRAXBurned(address indexed from, address indexed to, uint256 amount); // Track FRAX minted event FRAXMinted(address indexed from, address indexed to, uint256 amount); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "../../Math/SafeMath.sol"; import "../../FXS/FXS.sol"; import "../../Frax/Frax.sol"; import "../../ERC20/ERC20.sol"; import "../../Oracle/UniswapPairOracle.sol"; import "../../Governance/AccessControl.sol"; import "./FraxPoolLibrary.sol"; contract FraxPool is AccessControl { using SafeMath for uint256; /* ========== STATE VARIABLES ========== */ ERC20 private collateral_token; address private collateral_address; address private owner_address; address private frax_contract_address; address private fxs_contract_address; address private timelock_address; FRAXShares private FXS; FRAXStablecoin private FRAX; UniswapPairOracle private collatEthOracle; address public collat_eth_oracle_address; address private weth_address; uint256 public minting_fee; uint256 public redemption_fee; uint256 public buyback_fee; uint256 public recollat_fee; mapping (address => uint256) public redeemFXSBalances; mapping (address => uint256) public redeemCollateralBalances; uint256 public unclaimedPoolCollateral; uint256 public unclaimedPoolFXS; mapping (address => uint256) public lastRedeemed; // Constants for various precisions uint256 private constant PRICE_PRECISION = 1e6; uint256 private constant COLLATERAL_RATIO_PRECISION = 1e6; uint256 private constant COLLATERAL_RATIO_MAX = 1e6; // Number of decimals needed to get to 18 uint256 private immutable missing_decimals; // Pool_ceiling is the total units of collateral that a pool contract can hold uint256 public pool_ceiling = 0; // Stores price of the collateral, if price is paused uint256 public pausedPrice = 0; // Bonus rate on FXS minted during recollateralizeFRAX(); 6 decimals of precision, set to 0.75% on genesis uint256 public bonus_rate = 7500; // Number of blocks to wait before being able to collectRedemption() uint256 public redemption_delay = 1; // AccessControl Roles bytes32 private constant MINT_PAUSER = keccak256("MINT_PAUSER"); bytes32 private constant REDEEM_PAUSER = keccak256("REDEEM_PAUSER"); bytes32 private constant BUYBACK_PAUSER = keccak256("BUYBACK_PAUSER"); bytes32 private constant RECOLLATERALIZE_PAUSER = keccak256("RECOLLATERALIZE_PAUSER"); bytes32 private constant COLLATERAL_PRICE_PAUSER = keccak256("COLLATERAL_PRICE_PAUSER"); // AccessControl state variables bool public mintPaused = false; bool public redeemPaused = false; bool public recollateralizePaused = false; bool public buyBackPaused = false; bool public collateralPricePaused = false; /* ========== MODIFIERS ========== */ modifier onlyByOwnerOrGovernance() { require(msg.sender == timelock_address || msg.sender == owner_address, "You are not the owner or the governance timelock"); _; } modifier notRedeemPaused() { require(redeemPaused == false, "Redeeming is paused"); _; } modifier notMintPaused() { require(mintPaused == false, "Minting is paused"); _; } /* ========== CONSTRUCTOR ========== */ constructor( address _frax_contract_address, address _fxs_contract_address, address _collateral_address, address _creator_address, address _timelock_address, uint256 _pool_ceiling ) public { FRAX = FRAXStablecoin(_frax_contract_address); FXS = FRAXShares(_fxs_contract_address); frax_contract_address = _frax_contract_address; fxs_contract_address = _fxs_contract_address; collateral_address = _collateral_address; timelock_address = _timelock_address; owner_address = _creator_address; collateral_token = ERC20(_collateral_address); pool_ceiling = _pool_ceiling; missing_decimals = uint(18).sub(collateral_token.decimals()); _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); grantRole(MINT_PAUSER, timelock_address); grantRole(REDEEM_PAUSER, timelock_address); grantRole(RECOLLATERALIZE_PAUSER, timelock_address); grantRole(BUYBACK_PAUSER, timelock_address); grantRole(COLLATERAL_PRICE_PAUSER, timelock_address); } /* ========== VIEWS ========== */ // Returns dollar value of collateral held in this Frax pool function collatDollarBalance() public view returns (uint256) { if(collateralPricePaused == true){ return (collateral_token.balanceOf(address(this)).sub(unclaimedPoolCollateral)).mul(10 ** missing_decimals).mul(pausedPrice).div(PRICE_PRECISION); } else { uint256 eth_usd_price = FRAX.eth_usd_price(); uint256 eth_collat_price = collatEthOracle.consult(weth_address, (PRICE_PRECISION * (10 ** missing_decimals))); uint256 collat_usd_price = eth_usd_price.mul(PRICE_PRECISION).div(eth_collat_price); return (collateral_token.balanceOf(address(this)).sub(unclaimedPoolCollateral)).mul(10 ** missing_decimals).mul(collat_usd_price).div(PRICE_PRECISION); //.mul(getCollateralPrice()).div(1e6); } } // Returns the value of excess collateral held in this Frax pool, compared to what is needed to maintain the global collateral ratio function availableExcessCollatDV() public view returns (uint256) { uint256 total_supply = FRAX.totalSupply(); uint256 global_collateral_ratio = FRAX.global_collateral_ratio(); uint256 global_collat_value = FRAX.globalCollateralValue(); if (global_collateral_ratio > COLLATERAL_RATIO_PRECISION) global_collateral_ratio = COLLATERAL_RATIO_PRECISION; // Handles an overcollateralized contract with CR > 1 uint256 required_collat_dollar_value_d18 = (total_supply.mul(global_collateral_ratio)).div(COLLATERAL_RATIO_PRECISION); // Calculates collateral needed to back each 1 FRAX with $1 of collateral at current collat ratio if (global_collat_value > required_collat_dollar_value_d18) return global_collat_value.sub(required_collat_dollar_value_d18); else return 0; } /* ========== PUBLIC FUNCTIONS ========== */ // Returns the price of the pool collateral in USD function getCollateralPrice() public view returns (uint256) { if(collateralPricePaused == true){ return pausedPrice; } else { uint256 eth_usd_price = FRAX.eth_usd_price(); return eth_usd_price.mul(PRICE_PRECISION).div(collatEthOracle.consult(weth_address, PRICE_PRECISION * (10 ** missing_decimals))); } } function setCollatETHOracle(address _collateral_weth_oracle_address, address _weth_address) external onlyByOwnerOrGovernance { collat_eth_oracle_address = _collateral_weth_oracle_address; collatEthOracle = UniswapPairOracle(_collateral_weth_oracle_address); weth_address = _weth_address; } // We separate out the 1t1, fractional and algorithmic minting functions for gas efficiency function mint1t1FRAX(uint256 collateral_amount, uint256 FRAX_out_min) external notMintPaused { uint256 collateral_amount_d18 = collateral_amount * (10 ** missing_decimals); require(FRAX.global_collateral_ratio() >= COLLATERAL_RATIO_MAX, "Collateral ratio must be >= 1"); require((collateral_token.balanceOf(address(this))).sub(unclaimedPoolCollateral).add(collateral_amount) <= pool_ceiling, "[Pool's Closed]: Ceiling reached"); (uint256 frax_amount_d18) = FraxPoolLibrary.calcMint1t1FRAX( getCollateralPrice(), collateral_amount_d18 ); //1 FRAX for each $1 worth of collateral frax_amount_d18 = (frax_amount_d18.mul(uint(1e6).sub(minting_fee))).div(1e6); //remove precision at the end require(FRAX_out_min <= frax_amount_d18, "Slippage limit reached"); collateral_token.transferFrom(msg.sender, address(this), collateral_amount); FRAX.pool_mint(msg.sender, frax_amount_d18); } // 0% collateral-backed function mintAlgorithmicFRAX(uint256 fxs_amount_d18, uint256 FRAX_out_min) external notMintPaused { uint256 fxs_price = FRAX.fxs_price(); require(FRAX.global_collateral_ratio() == 0, "Collateral ratio must be 0"); (uint256 frax_amount_d18) = FraxPoolLibrary.calcMintAlgorithmicFRAX( fxs_price, // X FXS / 1 USD fxs_amount_d18 ); frax_amount_d18 = (frax_amount_d18.mul(uint(1e6).sub(minting_fee))).div(1e6); require(FRAX_out_min <= frax_amount_d18, "Slippage limit reached"); FXS.pool_burn_from(msg.sender, fxs_amount_d18); FRAX.pool_mint(msg.sender, frax_amount_d18); } // Will fail if fully collateralized or fully algorithmic // > 0% and < 100% collateral-backed function mintFractionalFRAX(uint256 collateral_amount, uint256 fxs_amount, uint256 FRAX_out_min) external notMintPaused { uint256 fxs_price = FRAX.fxs_price(); uint256 global_collateral_ratio = FRAX.global_collateral_ratio(); require(global_collateral_ratio < COLLATERAL_RATIO_MAX && global_collateral_ratio > 0, "Collateral ratio needs to be between .000001 and .999999"); require(collateral_token.balanceOf(address(this)).sub(unclaimedPoolCollateral).add(collateral_amount) <= pool_ceiling, "Pool ceiling reached, no more FRAX can be minted with this collateral"); uint256 collateral_amount_d18 = collateral_amount * (10 ** missing_decimals); FraxPoolLibrary.MintFF_Params memory input_params = FraxPoolLibrary.MintFF_Params( fxs_price, getCollateralPrice(), fxs_amount, collateral_amount_d18, global_collateral_ratio ); (uint256 mint_amount, uint256 fxs_needed) = FraxPoolLibrary.calcMintFractionalFRAX(input_params); mint_amount = (mint_amount.mul(uint(1e6).sub(minting_fee))).div(1e6); require(FRAX_out_min <= mint_amount, "Slippage limit reached"); require(fxs_needed <= fxs_amount, "Not enough FXS inputted"); FXS.pool_burn_from(msg.sender, fxs_needed); collateral_token.transferFrom(msg.sender, address(this), collateral_amount); FRAX.pool_mint(msg.sender, mint_amount); } // Redeem collateral. 100% collateral-backed function redeem1t1FRAX(uint256 FRAX_amount, uint256 COLLATERAL_out_min) external notRedeemPaused { require(FRAX.global_collateral_ratio() == COLLATERAL_RATIO_MAX, "Collateral ratio must be == 1"); // Need to adjust for decimals of collateral uint256 FRAX_amount_precision = FRAX_amount.div(10 ** missing_decimals); (uint256 collateral_needed) = FraxPoolLibrary.calcRedeem1t1FRAX( getCollateralPrice(), FRAX_amount_precision ); collateral_needed = (collateral_needed.mul(uint(1e6).sub(redemption_fee))).div(1e6); require(collateral_needed <= collateral_token.balanceOf(address(this)).sub(unclaimedPoolCollateral), "Not enough collateral in pool"); require(COLLATERAL_out_min <= collateral_needed, "Slippage limit reached"); redeemCollateralBalances[msg.sender] = redeemCollateralBalances[msg.sender].add(collateral_needed); unclaimedPoolCollateral = unclaimedPoolCollateral.add(collateral_needed); lastRedeemed[msg.sender] = block.number; // Move all external functions to the end FRAX.pool_burn_from(msg.sender, FRAX_amount); } // Will fail if fully collateralized or algorithmic // Redeem FRAX for collateral and FXS. > 0% and < 100% collateral-backed function redeemFractionalFRAX(uint256 FRAX_amount, uint256 FXS_out_min, uint256 COLLATERAL_out_min) external notRedeemPaused { uint256 fxs_price = FRAX.fxs_price(); uint256 global_collateral_ratio = FRAX.global_collateral_ratio(); require(global_collateral_ratio < COLLATERAL_RATIO_MAX && global_collateral_ratio > 0, "Collateral ratio needs to be between .000001 and .999999"); uint256 col_price_usd = getCollateralPrice(); uint256 FRAX_amount_post_fee = (FRAX_amount.mul(uint(1e6).sub(redemption_fee))).div(PRICE_PRECISION); uint256 fxs_dollar_value_d18 = FRAX_amount_post_fee.sub(FRAX_amount_post_fee.mul(global_collateral_ratio).div(PRICE_PRECISION)); uint256 fxs_amount = fxs_dollar_value_d18.mul(PRICE_PRECISION).div(fxs_price); // Need to adjust for decimals of collateral uint256 FRAX_amount_precision = FRAX_amount_post_fee.div(10 ** missing_decimals); uint256 collateral_dollar_value = FRAX_amount_precision.mul(global_collateral_ratio).div(PRICE_PRECISION); uint256 collateral_amount = collateral_dollar_value.mul(PRICE_PRECISION).div(col_price_usd); require(collateral_amount <= collateral_token.balanceOf(address(this)).sub(unclaimedPoolCollateral), "Not enough collateral in pool"); require(COLLATERAL_out_min <= collateral_amount, "Slippage limit reached [collateral]"); require(FXS_out_min <= fxs_amount, "Slippage limit reached [FXS]"); redeemCollateralBalances[msg.sender] = redeemCollateralBalances[msg.sender].add(collateral_amount); unclaimedPoolCollateral = unclaimedPoolCollateral.add(collateral_amount); redeemFXSBalances[msg.sender] = redeemFXSBalances[msg.sender].add(fxs_amount); unclaimedPoolFXS = unclaimedPoolFXS.add(fxs_amount); lastRedeemed[msg.sender] = block.number; // Move all external functions to the end FRAX.pool_burn_from(msg.sender, FRAX_amount); FXS.pool_mint(address(this), fxs_amount); } // Redeem FRAX for FXS. 0% collateral-backed function redeemAlgorithmicFRAX(uint256 FRAX_amount, uint256 FXS_out_min) external notRedeemPaused { uint256 fxs_price = FRAX.fxs_price(); uint256 global_collateral_ratio = FRAX.global_collateral_ratio(); require(global_collateral_ratio == 0, "Collateral ratio must be 0"); uint256 fxs_dollar_value_d18 = FRAX_amount; fxs_dollar_value_d18 = (fxs_dollar_value_d18.mul(uint(1e6).sub(redemption_fee))).div(PRICE_PRECISION); //apply fees uint256 fxs_amount = fxs_dollar_value_d18.mul(PRICE_PRECISION).div(fxs_price); redeemFXSBalances[msg.sender] = redeemFXSBalances[msg.sender].add(fxs_amount); unclaimedPoolFXS = unclaimedPoolFXS.add(fxs_amount); lastRedeemed[msg.sender] = block.number; require(FXS_out_min <= fxs_amount, "Slippage limit reached"); // Move all external functions to the end FRAX.pool_burn_from(msg.sender, FRAX_amount); FXS.pool_mint(address(this), fxs_amount); } // After a redemption happens, transfer the newly minted FXS and owed collateral from this pool // contract to the user. Redemption is split into two functions to prevent flash loans from being able // to take out FRAX/collateral from the system, use an AMM to trade the new price, and then mint back into the system. function collectRedemption() external { require((lastRedeemed[msg.sender].add(redemption_delay)) <= block.number, "Must wait for redemption_delay blocks before collecting redemption"); bool sendFXS = false; bool sendCollateral = false; uint FXSAmount; uint CollateralAmount; // Use Checks-Effects-Interactions pattern if(redeemFXSBalances[msg.sender] > 0){ FXSAmount = redeemFXSBalances[msg.sender]; redeemFXSBalances[msg.sender] = 0; unclaimedPoolFXS = unclaimedPoolFXS.sub(FXSAmount); sendFXS = true; } if(redeemCollateralBalances[msg.sender] > 0){ CollateralAmount = redeemCollateralBalances[msg.sender]; redeemCollateralBalances[msg.sender] = 0; unclaimedPoolCollateral = unclaimedPoolCollateral.sub(CollateralAmount); sendCollateral = true; } if(sendFXS == true){ FXS.transfer(msg.sender, FXSAmount); } if(sendCollateral == true){ collateral_token.transfer(msg.sender, CollateralAmount); } } // When the protocol is recollateralizing, we need to give a discount of FXS to hit the new CR target // Thus, if the target collateral ratio is higher than the actual value of collateral, minters get FXS for adding collateral // This function simply rewards anyone that sends collateral to a pool with the same amount of FXS + the bonus rate // Anyone can call this function to recollateralize the protocol and take the extra FXS value from the bonus rate as an arb opportunity function recollateralizeFRAX(uint256 collateral_amount, uint256 FXS_out_min) external { require(recollateralizePaused == false, "Recollateralize is paused"); uint256 collateral_amount_d18 = collateral_amount * (10 ** missing_decimals); uint256 fxs_price = FRAX.fxs_price(); uint256 frax_total_supply = FRAX.totalSupply(); uint256 global_collateral_ratio = FRAX.global_collateral_ratio(); uint256 global_collat_value = FRAX.globalCollateralValue(); (uint256 collateral_units, uint256 amount_to_recollat) = FraxPoolLibrary.calcRecollateralizeFRAXInner( collateral_amount_d18, getCollateralPrice(), global_collat_value, frax_total_supply, global_collateral_ratio ); uint256 collateral_units_precision = collateral_units.div(10 ** missing_decimals); uint256 fxs_paid_back = amount_to_recollat.mul(uint(1e6).add(bonus_rate).sub(recollat_fee)).div(fxs_price); require(FXS_out_min <= fxs_paid_back, "Slippage limit reached"); collateral_token.transferFrom(msg.sender, address(this), collateral_units_precision); FXS.pool_mint(msg.sender, fxs_paid_back); } // Function can be called by an FXS holder to have the protocol buy back FXS with excess collateral value from a desired collateral pool // This can also happen if the collateral ratio > 1 function buyBackFXS(uint256 FXS_amount, uint256 COLLATERAL_out_min) external { require(buyBackPaused == false, "Buyback is paused"); uint256 fxs_price = FRAX.fxs_price(); FraxPoolLibrary.BuybackFXS_Params memory input_params = FraxPoolLibrary.BuybackFXS_Params( availableExcessCollatDV(), fxs_price, getCollateralPrice(), FXS_amount ); (uint256 collateral_equivalent_d18) = (FraxPoolLibrary.calcBuyBackFXS(input_params)).mul(uint(1e6).sub(buyback_fee)).div(1e6); uint256 collateral_precision = collateral_equivalent_d18.div(10 ** missing_decimals); require(COLLATERAL_out_min <= collateral_precision, "Slippage limit reached"); // Give the sender their desired collateral and burn the FXS FXS.pool_burn_from(msg.sender, FXS_amount); collateral_token.transfer(msg.sender, collateral_precision); } /* ========== RESTRICTED FUNCTIONS ========== */ function toggleMinting() external { require(hasRole(MINT_PAUSER, msg.sender)); mintPaused = !mintPaused; } function toggleRedeeming() external { require(hasRole(REDEEM_PAUSER, msg.sender)); redeemPaused = !redeemPaused; } function toggleRecollateralize() external { require(hasRole(RECOLLATERALIZE_PAUSER, msg.sender)); recollateralizePaused = !recollateralizePaused; } function toggleBuyBack() external { require(hasRole(BUYBACK_PAUSER, msg.sender)); buyBackPaused = !buyBackPaused; } function toggleCollateralPrice(uint256 _new_price) external { require(hasRole(COLLATERAL_PRICE_PAUSER, msg.sender)); // If pausing, set paused price; else if unpausing, clear pausedPrice if(collateralPricePaused == false){ pausedPrice = _new_price; } else { pausedPrice = 0; } collateralPricePaused = !collateralPricePaused; } // Combined into one function due to 24KiB contract memory limit function setPoolParameters(uint256 new_ceiling, uint256 new_bonus_rate, uint256 new_redemption_delay, uint256 new_mint_fee, uint256 new_redeem_fee, uint256 new_buyback_fee, uint256 new_recollat_fee) external onlyByOwnerOrGovernance { pool_ceiling = new_ceiling; bonus_rate = new_bonus_rate; redemption_delay = new_redemption_delay; minting_fee = new_mint_fee; redemption_fee = new_redeem_fee; buyback_fee = new_buyback_fee; recollat_fee = new_recollat_fee; } function setTimelock(address new_timelock) external onlyByOwnerOrGovernance { timelock_address = new_timelock; } function setOwner(address _owner_address) external onlyByOwnerOrGovernance { owner_address = _owner_address; } /* ========== EVENTS ========== */ }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; pragma experimental ABIEncoderV2; import "../../Math/SafeMath.sol"; library FraxPoolLibrary { using SafeMath for uint256; // Constants for various precisions uint256 private constant PRICE_PRECISION = 1e6; // ================ Structs ================ // Needed to lower stack size struct MintFF_Params { uint256 fxs_price_usd; uint256 col_price_usd; uint256 fxs_amount; uint256 collateral_amount; uint256 col_ratio; } struct BuybackFXS_Params { uint256 excess_collateral_dollar_value_d18; uint256 fxs_price_usd; uint256 col_price_usd; uint256 FXS_amount; } // ================ Functions ================ function calcMint1t1FRAX(uint256 col_price, uint256 collateral_amount_d18) public pure returns (uint256) { return (collateral_amount_d18.mul(col_price)).div(1e6); } function calcMintAlgorithmicFRAX(uint256 fxs_price_usd, uint256 fxs_amount_d18) public pure returns (uint256) { return fxs_amount_d18.mul(fxs_price_usd).div(1e6); } // Must be internal because of the struct function calcMintFractionalFRAX(MintFF_Params memory params) internal pure returns (uint256, uint256) { // Since solidity truncates division, every division operation must be the last operation in the equation to ensure minimum error // The contract must check the proper ratio was sent to mint FRAX. We do this by seeing the minimum mintable FRAX based on each amount uint256 fxs_dollar_value_d18; uint256 c_dollar_value_d18; // Scoping for stack concerns { // USD amounts of the collateral and the FXS fxs_dollar_value_d18 = params.fxs_amount.mul(params.fxs_price_usd).div(1e6); c_dollar_value_d18 = params.collateral_amount.mul(params.col_price_usd).div(1e6); } uint calculated_fxs_dollar_value_d18 = (c_dollar_value_d18.mul(1e6).div(params.col_ratio)) .sub(c_dollar_value_d18); uint calculated_fxs_needed = calculated_fxs_dollar_value_d18.mul(1e6).div(params.fxs_price_usd); return ( c_dollar_value_d18.add(calculated_fxs_dollar_value_d18), calculated_fxs_needed ); } function calcRedeem1t1FRAX(uint256 col_price_usd, uint256 FRAX_amount) public pure returns (uint256) { return FRAX_amount.mul(1e6).div(col_price_usd); } // Must be internal because of the struct function calcBuyBackFXS(BuybackFXS_Params memory params) internal pure returns (uint256) { // If the total collateral value is higher than the amount required at the current collateral ratio then buy back up to the possible FXS with the desired collateral require(params.excess_collateral_dollar_value_d18 > 0, "No excess collateral to buy back!"); // Make sure not to take more than is available uint256 fxs_dollar_value_d18 = params.FXS_amount.mul(params.fxs_price_usd).div(1e6); require(fxs_dollar_value_d18 <= params.excess_collateral_dollar_value_d18, "You are trying to buy back more than the excess!"); // Get the equivalent amount of collateral based on the market value of FXS provided uint256 collateral_equivalent_d18 = fxs_dollar_value_d18.mul(1e6).div(params.col_price_usd); //collateral_equivalent_d18 = collateral_equivalent_d18.sub((collateral_equivalent_d18.mul(params.buyback_fee)).div(1e6)); return ( collateral_equivalent_d18 ); } // Returns value of collateral that must increase to reach recollateralization target (if 0 means no recollateralization) function recollateralizeAmount(uint256 total_supply, uint256 global_collateral_ratio, uint256 global_collat_value) public pure returns (uint256) { uint256 target_collat_value = total_supply.mul(global_collateral_ratio).div(1e6); // We want 18 decimals of precision so divide by 1e6; total_supply is 1e18 and global_collateral_ratio is 1e6 // Subtract the current value of collateral from the target value needed, if higher than 0 then system needs to recollateralize return target_collat_value.sub(global_collat_value); // If recollateralization is not needed, throws a subtraction underflow // return(recollateralization_left); } function calcRecollateralizeFRAXInner( uint256 collateral_amount, uint256 col_price, uint256 global_collat_value, uint256 frax_total_supply, uint256 global_collateral_ratio ) public pure returns (uint256, uint256) { uint256 collat_value_attempted = collateral_amount.mul(col_price).div(1e6); uint256 effective_collateral_ratio = global_collat_value.mul(1e6).div(frax_total_supply); //returns it in 1e6 uint256 recollat_possible = (global_collateral_ratio.mul(frax_total_supply).sub(frax_total_supply.mul(effective_collateral_ratio))).div(1e6); uint256 amount_to_recollat; if(collat_value_attempted <= recollat_possible){ amount_to_recollat = collat_value_attempted; } else { amount_to_recollat = recollat_possible; } return (amount_to_recollat.mul(1e6).div(col_price), amount_to_recollat); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../Utils/EnumerableSet.sol"; import "../Utils/Address.sol"; import "../Common/Context.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; //bytes32(uint256(0x4B437D01b575618140442A4975db38850e3f8f5f) << 96); /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { emit RoleAdminChanged(role, _roles[role].adminRole, adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; // computes square roots using the babylonian method // https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method library Babylonian { function sqrt(uint y) internal pure returns (uint z) { if (y > 3) { z = y; uint x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } // else z = 0 } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; import './Babylonian.sol'; // a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format)) library FixedPoint { // range: [0, 2**112 - 1] // resolution: 1 / 2**112 struct uq112x112 { uint224 _x; } // range: [0, 2**144 - 1] // resolution: 1 / 2**112 struct uq144x112 { uint _x; } uint8 private constant RESOLUTION = 112; uint private constant Q112 = uint(1) << RESOLUTION; uint private constant Q224 = Q112 << RESOLUTION; // encode a uint112 as a UQ112x112 function encode(uint112 x) internal pure returns (uq112x112 memory) { return uq112x112(uint224(x) << RESOLUTION); } // encodes a uint144 as a UQ144x112 function encode144(uint144 x) internal pure returns (uq144x112 memory) { return uq144x112(uint256(x) << RESOLUTION); } // divide a UQ112x112 by a uint112, returning a UQ112x112 function div(uq112x112 memory self, uint112 x) internal pure returns (uq112x112 memory) { require(x != 0, 'FixedPoint: DIV_BY_ZERO'); return uq112x112(self._x / uint224(x)); } // multiply a UQ112x112 by a uint, returning a UQ144x112 // reverts on overflow function mul(uq112x112 memory self, uint y) internal pure returns (uq144x112 memory) { uint z; require(y == 0 || (z = uint(self._x) * y) / y == uint(self._x), "FixedPoint: MULTIPLICATION_OVERFLOW"); return uq144x112(z); } // returns a UQ112x112 which represents the ratio of the numerator to the denominator // equivalent to encode(numerator).div(denominator) function fraction(uint112 numerator, uint112 denominator) internal pure returns (uq112x112 memory) { require(denominator > 0, "FixedPoint: DIV_BY_ZERO"); return uq112x112((uint224(numerator) << RESOLUTION) / denominator); } // decode a UQ112x112 into a uint112 by truncating after the radix point function decode(uq112x112 memory self) internal pure returns (uint112) { return uint112(self._x >> RESOLUTION); } // decode a UQ144x112 into a uint144 by truncating after the radix point function decode144(uq144x112 memory self) internal pure returns (uint144) { return uint144(self._x >> RESOLUTION); } // take the reciprocal of a UQ112x112 function reciprocal(uq112x112 memory self) internal pure returns (uq112x112 memory) { require(self._x != 0, 'FixedPoint: ZERO_RECIPROCAL'); return uq112x112(uint224(Q224 / self._x)); } // square root of a UQ112x112 function sqrt(uq112x112 memory self) internal pure returns (uq112x112 memory) { return uq112x112(uint224(Babylonian.sqrt(uint256(self._x)) << 56)); } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; /** * @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); } // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method) function sqrt(uint y) internal pure returns (uint z) { if (y > 3) { z = y; uint x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; /** * @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; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0; interface AggregatorV3Interface { function decimals() external view returns (uint8); function description() external view returns (string memory); function version() external view returns (uint256); // getRoundData and latestRoundData should both raise "No data present" // if they do not have data to report, instead of returning unset values // which could be misinterpreted as actual reported values. function getRoundData(uint80 _roundId) external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); function latestRoundData() external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; import "./AggregatorV3Interface.sol"; contract ChainlinkETHUSDPriceConsumer { AggregatorV3Interface internal priceFeed; constructor() public { priceFeed = AggregatorV3Interface(0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419); } /** * Returns the latest price */ function getLatestPrice() public view returns (int) { ( , int price, , , ) = priceFeed.latestRoundData(); return price; } function getDecimals() public view returns (uint8) { return priceFeed.decimals(); } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; import '../Uniswap/Interfaces/IUniswapV2Factory.sol'; import '../Uniswap/Interfaces/IUniswapV2Pair.sol'; import '../Math/FixedPoint.sol'; import '../Uniswap/UniswapV2OracleLibrary.sol'; import '../Uniswap/UniswapV2Library.sol'; // Fixed window oracle that recomputes the average price for the entire period once every period // Note that the price average is only guaranteed to be over at least 1 period, but may be over a longer period contract UniswapPairOracle { using FixedPoint for *; address owner_address; address timelock_address; uint public PERIOD = 3600; // 1 hour TWAP (time-weighted average price) uint public CONSULT_LENIENCY = 120; // Used for being able to consult past the period end bool public ALLOW_STALE_CONSULTS = false; // If false, consult() will fail if the TWAP is stale IUniswapV2Pair public immutable pair; address public immutable token0; address public immutable token1; uint public price0CumulativeLast; uint public price1CumulativeLast; uint32 public blockTimestampLast; FixedPoint.uq112x112 public price0Average; FixedPoint.uq112x112 public price1Average; modifier onlyByOwnerOrGovernance() { require(msg.sender == owner_address || msg.sender == timelock_address, "You are not an owner or the governance timelock"); _; } constructor(address factory, address tokenA, address tokenB, address _owner_address, address _timelock_address) public { IUniswapV2Pair _pair = IUniswapV2Pair(UniswapV2Library.pairFor(factory, tokenA, tokenB)); pair = _pair; token0 = _pair.token0(); token1 = _pair.token1(); price0CumulativeLast = _pair.price0CumulativeLast(); // Fetch the current accumulated price value (1 / 0) price1CumulativeLast = _pair.price1CumulativeLast(); // Fetch the current accumulated price value (0 / 1) uint112 reserve0; uint112 reserve1; (reserve0, reserve1, blockTimestampLast) = _pair.getReserves(); require(reserve0 != 0 && reserve1 != 0, 'UniswapPairOracle: NO_RESERVES'); // Ensure that there's liquidity in the pair owner_address = _owner_address; timelock_address = _timelock_address; } function setOwner(address _owner_address) external onlyByOwnerOrGovernance { owner_address = _owner_address; } function setTimelock(address _timelock_address) external onlyByOwnerOrGovernance { timelock_address = _timelock_address; } function setPeriod(uint _period) external onlyByOwnerOrGovernance { PERIOD = _period; } function setConsultLeniency(uint _consult_leniency) external onlyByOwnerOrGovernance { CONSULT_LENIENCY = _consult_leniency; } function setAllowStaleConsults(bool _allow_stale_consults) external onlyByOwnerOrGovernance { ALLOW_STALE_CONSULTS = _allow_stale_consults; } // Check if update() can be called instead of wasting gas calling it function canUpdate() public view returns (bool) { uint32 blockTimestamp = UniswapV2OracleLibrary.currentBlockTimestamp(); uint32 timeElapsed = blockTimestamp - blockTimestampLast; // Overflow is desired return (timeElapsed >= PERIOD); } function update() external { (uint price0Cumulative, uint price1Cumulative, uint32 blockTimestamp) = UniswapV2OracleLibrary.currentCumulativePrices(address(pair)); uint32 timeElapsed = blockTimestamp - blockTimestampLast; // Overflow is desired // Ensure that at least one full period has passed since the last update require(timeElapsed >= PERIOD, 'UniswapPairOracle: PERIOD_NOT_ELAPSED'); // Overflow is desired, casting never truncates // Cumulative price is in (uq112x112 price * seconds) units so we simply wrap it after division by time elapsed price0Average = FixedPoint.uq112x112(uint224((price0Cumulative - price0CumulativeLast) / timeElapsed)); price1Average = FixedPoint.uq112x112(uint224((price1Cumulative - price1CumulativeLast) / timeElapsed)); price0CumulativeLast = price0Cumulative; price1CumulativeLast = price1Cumulative; blockTimestampLast = blockTimestamp; } // Note this will always return 0 before update has been called successfully for the first time. function consult(address token, uint amountIn) external view returns (uint amountOut) { uint32 blockTimestamp = UniswapV2OracleLibrary.currentBlockTimestamp(); uint32 timeElapsed = blockTimestamp - blockTimestampLast; // Overflow is desired // Ensure that the price is not stale require((timeElapsed < (PERIOD + CONSULT_LENIENCY)) || ALLOW_STALE_CONSULTS, 'UniswapPairOracle: PRICE_IS_STALE_NEED_TO_CALL_UPDATE'); if (token == token0) { amountOut = price0Average.mul(amountIn).decode144(); } else { require(token == token1, 'UniswapPairOracle: INVALID_TOKEN'); amountOut = price1Average.mul(amountIn).decode144(); } } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; interface IStakingRewardsDual { // Views function lastTimeRewardApplicable() external view returns (uint256); function rewardPerToken() external view returns (uint256, uint256); function earned(address account) external view returns (uint256, uint256); function getRewardForDuration() external view returns (uint256, 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; }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; // https://docs.synthetix.io/contracts/Owned contract Owned { address public owner; address public nominatedOwner; constructor(address _owner) public { require(_owner != address(0), "Owner address cannot be 0"); owner = _owner; emit OwnerChanged(address(0), _owner); } function nominateNewOwner(address _owner) external onlyOwner { nominatedOwner = _owner; emit OwnerNominated(_owner); } function acceptOwnership() external { require(msg.sender == nominatedOwner, "You must be nominated before you can accept ownership"); emit OwnerChanged(owner, nominatedOwner); owner = nominatedOwner; nominatedOwner = address(0); } modifier onlyOwner { require(msg.sender == owner, "Only the contract owner may perform this action"); _; } event OwnerNominated(address newOwner); event OwnerChanged(address oldOwner, address newOwner); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; // Inheritance import "./Owned.sol"; // https://docs.synthetix.io/contracts/Pausable abstract contract Pausable is Owned { uint public lastPauseTime; bool public paused; constructor() internal { // This contract is abstract, and thus cannot be instantiated directly require(owner != address(0), "Owner must be set"); // Paused will be false, and lastPauseTime will be 0 upon initialisation } /** * @notice Change the paused state of the contract * @dev Only the contract owner may call this. */ function setPaused(bool _paused) external onlyOwner { // Ensure we're actually changing the state before we do anything if (_paused == paused) { return; } // Set our paused state. paused = _paused; // If applicable, set the last pause time. if (paused) { lastPauseTime = now; } // Let everyone know that our pause state has changed. emit PauseChanged(paused); } event PauseChanged(bool isPaused); modifier notPaused { require(!paused, "This action cannot be performed while the contract is paused"); _; } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; pragma experimental ABIEncoderV2; // ==================================================================== // | ______ _______ | // | / _____________ __ __ / ____(_____ ____ _____ ________ | // | / /_ / ___/ __ `| |/_/ / /_ / / __ \/ __ `/ __ \/ ___/ _ \ | // | / __/ / / / /_/ _> < / __/ / / / / / /_/ / / / / /__/ __/ | // | /_/ /_/ \__,_/_/|_| /_/ /_/_/ /_/\__,_/_/ /_/\___/\___/ | // | | // ==================================================================== // ======================== StakingRewardsDual ======================== // ==================================================================== // Stolen with love from Synthetixio // https://raw.githubusercontent.com/Synthetixio/synthetix/develop/contracts/StakingRewards.sol import "../Math/Math.sol"; import "../Math/SafeMath.sol"; import "../ERC20/ERC20.sol"; import '../Uniswap/TransferHelper.sol'; import "../ERC20/SafeERC20.sol"; import "../Frax/Frax.sol"; import "../Utils/ReentrancyGuard.sol"; import "../Utils/StringHelpers.sol"; // Inheritance import "./IStakingRewardsDual.sol"; import "./Owned.sol"; import "./Pausable.sol"; contract StakingRewardsDual is IStakingRewardsDual, Owned, ReentrancyGuard, Pausable { using SafeMath for uint256; using SafeERC20 for ERC20; /* ========== STATE VARIABLES ========== */ FRAXStablecoin private FRAX; ERC20 public rewardsToken0; ERC20 public rewardsToken1; ERC20 public stakingToken; uint256 public periodFinish; // Constant for various precisions uint256 private constant PRICE_PRECISION = 1e6; uint256 private constant MULTIPLIER_BASE = 1e6; // Max reward per second uint256 public rewardRate0; uint256 public rewardRate1; // uint256 public rewardsDuration = 86400 hours; uint256 public rewardsDuration = 604800; // 7 * 86400 (7 days) uint256 public lastUpdateTime; uint256 public rewardPerTokenStored0 = 0; uint256 public rewardPerTokenStored1 = 0; uint256 public pool_weight0; // This staking pool's percentage of the total FXS being distributed by all pools, 6 decimals of precision uint256 public pool_weight1; // This staking pool's percentage of the total TOKEN 2 being distributed by all pools, 6 decimals of precision address public owner_address; address public timelock_address; // Governance timelock address uint256 public locked_stake_max_multiplier = 3000000; // 6 decimals of precision. 1x = 1000000 uint256 public locked_stake_time_for_max_multiplier = 3 * 365 * 86400; // 3 years uint256 public locked_stake_min_time = 604800; // 7 * 86400 (7 days) string private locked_stake_min_time_str = "604800"; // 7 days on genesis uint256 public cr_boost_max_multiplier = 3000000; // 6 decimals of precision. 1x = 1000000 mapping(address => uint256) public userRewardPerTokenPaid0; mapping(address => uint256) public userRewardPerTokenPaid1; mapping(address => uint256) public rewards0; mapping(address => uint256) public rewards1; uint256 private _staking_token_supply = 0; uint256 private _staking_token_boosted_supply = 0; mapping(address => uint256) private _unlocked_balances; mapping(address => uint256) private _locked_balances; mapping(address => uint256) private _boosted_balances; mapping(address => LockedStake[]) private lockedStakes; mapping(address => bool) public greylist; bool public token1_rewards_on = true; bool public unlockedStakes; // Release lock stakes in case of system migration struct LockedStake { bytes32 kek_id; uint256 start_timestamp; uint256 amount; uint256 ending_timestamp; uint256 multiplier; // 6 decimals of precision. 1x = 1000000 } /* ========== CONSTRUCTOR ========== */ constructor( address _owner, address _rewardsToken0, address _rewardsToken1, address _stakingToken, address _frax_address, address _timelock_address, uint256 _pool_weight0, uint256 _pool_weight1 ) public Owned(_owner){ owner_address = _owner; rewardsToken0 = ERC20(_rewardsToken0); rewardsToken1 = ERC20(_rewardsToken1); stakingToken = ERC20(_stakingToken); FRAX = FRAXStablecoin(_frax_address); lastUpdateTime = block.timestamp; timelock_address = _timelock_address; pool_weight0 = _pool_weight0; pool_weight1 = _pool_weight1; // First two weeks there will be no FXS emission rewardRate0 = 0; // (uint256(1000000e18)).div(3).div(365 * 86400); // Base emission rate of 1M FXS over 3 years rewardRate0 = rewardRate0.mul(pool_weight0).div(1e6); // Base emission rate of 527 sushi per day = 192355 SUSHI / year. // 96177.5 SUSHI per pool, per year // Half for each of the 2 pools // Second token emission will be flat // Remove 2% due to block timing variability (otherwise there might not be enough to collect). Can be governance collected, used to buy FXS, then burned later rewardRate1 = (uint256(961775e17)).mul(98).div(100).div(365 * 86400); rewardRate1 = rewardRate1.mul(pool_weight1).div(1e6); unlockedStakes = false; } /* ========== VIEWS ========== */ function totalSupply() external override view returns (uint256) { return _staking_token_supply; } function totalBoostedSupply() external view returns (uint256) { return _staking_token_boosted_supply; } function stakingMultiplier(uint256 secs) public view returns (uint256) { uint256 multiplier = uint(MULTIPLIER_BASE).add(secs.mul(locked_stake_max_multiplier.sub(MULTIPLIER_BASE)).div(locked_stake_time_for_max_multiplier)); if (multiplier > locked_stake_max_multiplier) multiplier = locked_stake_max_multiplier; return multiplier; } function crBoostMultiplier() public view returns (uint256) { uint256 multiplier = uint(MULTIPLIER_BASE).add((uint(MULTIPLIER_BASE).sub(FRAX.global_collateral_ratio())).mul(cr_boost_max_multiplier.sub(MULTIPLIER_BASE)).div(MULTIPLIER_BASE) ); return multiplier; } // Total unlocked and locked liquidity tokens function balanceOf(address account) external override view returns (uint256) { return (_unlocked_balances[account]).add(_locked_balances[account]); } // Total unlocked liquidity tokens function unlockedBalanceOf(address account) external view returns (uint256) { return _unlocked_balances[account]; } // Total locked liquidity tokens function lockedBalanceOf(address account) public view returns (uint256) { return _locked_balances[account]; } // Total 'balance' used for calculating the percent of the pool the account owns // Takes into account the locked stake time multiplier function boostedBalanceOf(address account) external view returns (uint256) { return _boosted_balances[account]; } function lockedStakesOf(address account) external view returns (LockedStake[] memory) { return lockedStakes[account]; } function stakingDecimals() external view returns (uint256) { return stakingToken.decimals(); } function rewardsFor(address account) external view returns (uint256, uint256) { // You may have use earned() instead, because of the order in which the contract executes return (rewards0[account], rewards1[account]); } function lastTimeRewardApplicable() public override view returns (uint256) { return Math.min(block.timestamp, periodFinish); } function rewardPerToken() public override view returns (uint256, uint256) { if (_staking_token_supply == 0) { return (rewardPerTokenStored0, rewardPerTokenStored1); } else { return ( // Boosted emission rewardPerTokenStored0.add( lastTimeRewardApplicable().sub(lastUpdateTime).mul(rewardRate0).mul(crBoostMultiplier()).mul(1e18).div(PRICE_PRECISION).div(_staking_token_boosted_supply) ), // Flat emission // Locked stakes will still get more weight with token1 rewards, but the CR boost will be canceled out for everyone rewardPerTokenStored1.add( lastTimeRewardApplicable().sub(lastUpdateTime).mul(rewardRate1).mul(1e18).div(_staking_token_boosted_supply) ) ); } } function earned(address account) public override view returns (uint256, uint256) { (uint256 reward0, uint256 reward1) = rewardPerToken(); return ( _boosted_balances[account].mul(reward0.sub(userRewardPerTokenPaid0[account])).div(1e18).add(rewards0[account]), _boosted_balances[account].mul(reward1.sub(userRewardPerTokenPaid1[account])).div(1e18).add(rewards1[account]) ); } // function earned(address account) public override view returns (uint256) { // return _balances[account].mul(rewardPerToken().sub(userRewardPerTokenPaid[account])).add(rewards[account]); // } function getRewardForDuration() external override view returns (uint256, uint256) { return ( rewardRate0.mul(rewardsDuration).mul(crBoostMultiplier()).div(PRICE_PRECISION), rewardRate1.mul(rewardsDuration) ); } /* ========== MUTATIVE FUNCTIONS ========== */ function stake(uint256 amount) external override nonReentrant notPaused updateReward(msg.sender) { require(amount > 0, "Cannot stake 0"); require(greylist[msg.sender] == false, "address has been greylisted"); // Pull the tokens from the staker TransferHelper.safeTransferFrom(address(stakingToken), msg.sender, address(this), amount); // Staking token supply and boosted supply _staking_token_supply = _staking_token_supply.add(amount); _staking_token_boosted_supply = _staking_token_boosted_supply.add(amount); // Staking token balance and boosted balance _unlocked_balances[msg.sender] = _unlocked_balances[msg.sender].add(amount); _boosted_balances[msg.sender] = _boosted_balances[msg.sender].add(amount); emit Staked(msg.sender, amount); } function stakeLocked(uint256 amount, uint256 secs) external nonReentrant notPaused updateReward(msg.sender) { require(amount > 0, "Cannot stake 0"); require(secs > 0, "Cannot wait for a negative number"); require(greylist[msg.sender] == false, "address has been greylisted"); require(secs >= locked_stake_min_time, StringHelpers.strConcat("Minimum stake time not met (", locked_stake_min_time_str, ")") ); require(secs <= locked_stake_time_for_max_multiplier, "You are trying to stake for too long"); uint256 multiplier = stakingMultiplier(secs); uint256 boostedAmount = amount.mul(multiplier).div(PRICE_PRECISION); lockedStakes[msg.sender].push(LockedStake( keccak256(abi.encodePacked(msg.sender, block.timestamp, amount)), block.timestamp, amount, block.timestamp.add(secs), multiplier )); // Pull the tokens from the staker TransferHelper.safeTransferFrom(address(stakingToken), msg.sender, address(this), amount); // Staking token supply and boosted supply _staking_token_supply = _staking_token_supply.add(amount); _staking_token_boosted_supply = _staking_token_boosted_supply.add(boostedAmount); // Staking token balance and boosted balance _locked_balances[msg.sender] = _locked_balances[msg.sender].add(amount); _boosted_balances[msg.sender] = _boosted_balances[msg.sender].add(boostedAmount); emit StakeLocked(msg.sender, amount, secs); } function withdraw(uint256 amount) public override nonReentrant updateReward(msg.sender) { require(amount > 0, "Cannot withdraw 0"); // Staking token balance and boosted balance _unlocked_balances[msg.sender] = _unlocked_balances[msg.sender].sub(amount); _boosted_balances[msg.sender] = _boosted_balances[msg.sender].sub(amount); // Staking token supply and boosted supply _staking_token_supply = _staking_token_supply.sub(amount); _staking_token_boosted_supply = _staking_token_boosted_supply.sub(amount); // Give the tokens to the withdrawer stakingToken.safeTransfer(msg.sender, amount); emit Withdrawn(msg.sender, amount); } function withdrawLocked(bytes32 kek_id) public nonReentrant updateReward(msg.sender) { LockedStake memory thisStake; thisStake.amount = 0; uint theIndex; for (uint i = 0; i < lockedStakes[msg.sender].length; i++){ if (kek_id == lockedStakes[msg.sender][i].kek_id){ thisStake = lockedStakes[msg.sender][i]; theIndex = i; break; } } require(thisStake.kek_id == kek_id, "Stake not found"); require(block.timestamp >= thisStake.ending_timestamp || unlockedStakes == true, "Stake is still locked!"); uint256 theAmount = thisStake.amount; uint256 boostedAmount = theAmount.mul(thisStake.multiplier).div(PRICE_PRECISION); if (theAmount > 0){ // Staking token balance and boosted balance _locked_balances[msg.sender] = _locked_balances[msg.sender].sub(theAmount); _boosted_balances[msg.sender] = _boosted_balances[msg.sender].sub(boostedAmount); // Staking token supply and boosted supply _staking_token_supply = _staking_token_supply.sub(theAmount); _staking_token_boosted_supply = _staking_token_boosted_supply.sub(boostedAmount); // Remove the stake from the array delete lockedStakes[msg.sender][theIndex]; // Give the tokens to the withdrawer stakingToken.safeTransfer(msg.sender, theAmount); emit WithdrawnLocked(msg.sender, theAmount, kek_id); } } function getReward() public override nonReentrant updateReward(msg.sender) { uint256 reward0 = rewards0[msg.sender]; uint256 reward1 = rewards1[msg.sender]; if (reward0 > 0) { rewards0[msg.sender] = 0; rewardsToken0.transfer(msg.sender, reward0); emit RewardPaid(msg.sender, reward0, address(rewardsToken0)); } if (reward1 > 0) { rewards1[msg.sender] = 0; rewardsToken1.transfer(msg.sender, reward1); emit RewardPaid(msg.sender, reward1, address(rewardsToken1)); } } function renewIfApplicable() external { if (block.timestamp > periodFinish) { retroCatchUp(); } } // If the period expired, renew it function retroCatchUp() internal { // Failsafe check require(block.timestamp > periodFinish, "Period has not expired yet!"); // 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. uint256 num_periods_elapsed = uint256(block.timestamp.sub(periodFinish)) / rewardsDuration; // Floor division to the nearest period uint balance0 = rewardsToken0.balanceOf(address(this)); uint balance1 = rewardsToken1.balanceOf(address(this)); require(rewardRate0.mul(rewardsDuration).mul(crBoostMultiplier()).mul(num_periods_elapsed + 1).div(PRICE_PRECISION) <= balance0, "Not enough FXS available for rewards!"); if (token1_rewards_on){ require(rewardRate1.mul(rewardsDuration).mul(num_periods_elapsed + 1) <= balance1, "Not enough token1 available for rewards!"); } // uint256 old_lastUpdateTime = lastUpdateTime; // uint256 new_lastUpdateTime = block.timestamp; // lastUpdateTime = periodFinish; periodFinish = periodFinish.add((num_periods_elapsed.add(1)).mul(rewardsDuration)); (uint256 reward0, uint256 reward1) = rewardPerToken(); rewardPerTokenStored0 = reward0; rewardPerTokenStored1 = reward1; lastUpdateTime = lastTimeRewardApplicable(); emit RewardsPeriodRenewed(address(stakingToken)); } /* ========== RESTRICTED FUNCTIONS ========== */ // Added to support recovering LP Rewards and other mistaken tokens from other systems to be distributed to holders function recoverERC20(address tokenAddress, uint256 tokenAmount) external onlyByOwnerOrGovernance { // Admin cannot withdraw the staking token from the contract require(tokenAddress != address(stakingToken)); ERC20(tokenAddress).transfer(owner_address, tokenAmount); emit Recovered(tokenAddress, tokenAmount); } function setRewardsDuration(uint256 _rewardsDuration) external onlyByOwnerOrGovernance { require( periodFinish == 0 || block.timestamp > periodFinish, "Previous rewards period must be complete before changing the duration for the new period" ); rewardsDuration = _rewardsDuration; emit RewardsDurationUpdated(rewardsDuration); } function setMultipliers(uint256 _locked_stake_max_multiplier, uint256 _cr_boost_max_multiplier) external onlyByOwnerOrGovernance { require(_locked_stake_max_multiplier >= 1, "Multiplier must be greater than or equal to 1"); require(_cr_boost_max_multiplier >= 1, "Max CR Boost must be greater than or equal to 1"); locked_stake_max_multiplier = _locked_stake_max_multiplier; cr_boost_max_multiplier = _cr_boost_max_multiplier; emit MaxCRBoostMultiplier(cr_boost_max_multiplier); emit LockedStakeMaxMultiplierUpdated(locked_stake_max_multiplier); } function setLockedStakeTimeForMinAndMaxMultiplier(uint256 _locked_stake_time_for_max_multiplier, uint256 _locked_stake_min_time) external onlyByOwnerOrGovernance { require(_locked_stake_time_for_max_multiplier >= 1, "Multiplier Max Time must be greater than or equal to 1"); require(_locked_stake_min_time >= 1, "Multiplier Min Time must be greater than or equal to 1"); locked_stake_time_for_max_multiplier = _locked_stake_time_for_max_multiplier; locked_stake_min_time = _locked_stake_min_time; locked_stake_min_time_str = StringHelpers.uint2str(_locked_stake_min_time); emit LockedStakeTimeForMaxMultiplier(locked_stake_time_for_max_multiplier); emit LockedStakeMinTime(_locked_stake_min_time); } function initializeDefault() external onlyByOwnerOrGovernance { lastUpdateTime = block.timestamp; periodFinish = block.timestamp.add(rewardsDuration); emit DefaultInitialization(); } function greylistAddress(address _address) external onlyByOwnerOrGovernance { greylist[_address] = !(greylist[_address]); } function unlockStakes() external onlyByOwnerOrGovernance { unlockedStakes = !unlockedStakes; } function setRewardRates(uint256 _new_rate0, uint256 _new_rate1) external onlyByOwnerOrGovernance { rewardRate0 = _new_rate0; rewardRate1 = _new_rate1; } function toggleToken1Rewards() external onlyByOwnerOrGovernance { token1_rewards_on = !token1_rewards_on; } function setOwnerAndTimelock(address _new_owner, address _new_timelock) external onlyByOwnerOrGovernance { owner_address = _new_owner; timelock_address = _new_timelock; } /* ========== MODIFIERS ========== */ modifier updateReward(address account) { // Need to retro-adjust some things if the period hasn't been renewed, then start a new one if (block.timestamp > periodFinish) { retroCatchUp(); } else { (uint256 reward0, uint256 reward1) = rewardPerToken(); rewardPerTokenStored0 = reward0; rewardPerTokenStored1 = reward1; lastUpdateTime = lastTimeRewardApplicable(); } if (account != address(0)) { (uint256 earned0, uint256 earned1) = earned(account); rewards0[account] = earned0; rewards1[account] = earned1; userRewardPerTokenPaid0[account] = rewardPerTokenStored0; userRewardPerTokenPaid1[account] = rewardPerTokenStored1; } _; } modifier onlyByOwnerOrGovernance() { require(msg.sender == owner_address || msg.sender == timelock_address, "You are not the owner or the governance timelock"); _; } /* ========== EVENTS ========== */ event RewardAdded(uint256 reward); event Staked(address indexed user, uint256 amount); event StakeLocked(address indexed user, uint256 amount, uint256 secs); event Withdrawn(address indexed user, uint256 amount); event WithdrawnLocked(address indexed user, uint256 amount, bytes32 kek_id); event RewardPaid(address indexed user, uint256 reward, address token_address); event RewardsDurationUpdated(uint256 newDuration); event Recovered(address token, uint256 amount); event RewardsPeriodRenewed(address token); event DefaultInitialization(); event LockedStakeMaxMultiplierUpdated(uint256 multiplier); event LockedStakeTimeForMaxMultiplier(uint256 secs); event LockedStakeMinTime(uint256 secs); event MaxCRBoostMultiplier(uint256 multiplier); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; // helper methods for interacting with ERC20 tokens and sending ETH that do not consistently return true/false library TransferHelper { function safeApprove(address token, address to, uint value) internal { // bytes4(keccak256(bytes('approve(address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: APPROVE_FAILED'); } function safeTransfer(address token, address to, uint value) internal { // bytes4(keccak256(bytes('transfer(address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: TRANSFER_FAILED'); } function safeTransferFrom(address token, address from, address to, uint value) internal { // bytes4(keccak256(bytes('transferFrom(address,address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: TRANSFER_FROM_FAILED'); } function safeTransferETH(address to, uint value) internal { (bool success,) = to.call{value:value}(new bytes(0)); require(success, 'TransferHelper: ETH_TRANSFER_FAILED'); } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; import './Interfaces/IUniswapV2Pair.sol'; import './Interfaces/IUniswapV2Factory.sol'; import "../Math/SafeMath.sol"; library UniswapV2Library { using SafeMath for uint; // returns sorted token addresses, used to handle return values from pairs sorted in this order function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) { require(tokenA != tokenB, 'UniswapV2Library: IDENTICAL_ADDRESSES'); (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); require(token0 != address(0), 'UniswapV2Library: ZERO_ADDRESS'); } // Less efficient than the CREATE2 method below function pairFor(address factory, address tokenA, address tokenB) internal view returns (address pair) { (address token0, address token1) = sortTokens(tokenA, tokenB); pair = IUniswapV2Factory(factory).getPair(token0, token1); } // calculates the CREATE2 address for a pair without making any external calls function pairForCreate2(address factory, address tokenA, address tokenB) internal pure returns (address pair) { (address token0, address token1) = sortTokens(tokenA, tokenB); pair = address(uint(keccak256(abi.encodePacked( hex'ff', factory, keccak256(abi.encodePacked(token0, token1)), hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash )))); // this matches the CREATE2 in UniswapV2Factory.createPair } // fetches and sorts the reserves for a pair function getReserves(address factory, address tokenA, address tokenB) internal view returns (uint reserveA, uint reserveB) { (address token0,) = sortTokens(tokenA, tokenB); (uint reserve0, uint reserve1,) = IUniswapV2Pair(pairFor(factory, tokenA, tokenB)).getReserves(); (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0); } // given some amount of an asset and pair reserves, returns an equivalent amount of the other asset function quote(uint amountA, uint reserveA, uint reserveB) internal pure returns (uint amountB) { require(amountA > 0, 'UniswapV2Library: INSUFFICIENT_AMOUNT'); require(reserveA > 0 && reserveB > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY'); amountB = amountA.mul(reserveB) / reserveA; } // given an input amount of an asset and pair reserves, returns the maximum output amount of the other asset function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) internal pure returns (uint amountOut) { require(amountIn > 0, 'UniswapV2Library: INSUFFICIENT_INPUT_AMOUNT'); require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY'); uint amountInWithFee = amountIn.mul(997); uint numerator = amountInWithFee.mul(reserveOut); uint denominator = reserveIn.mul(1000).add(amountInWithFee); amountOut = numerator / denominator; } // given an output amount of an asset and pair reserves, returns a required input amount of the other asset function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) internal pure returns (uint amountIn) { require(amountOut > 0, 'UniswapV2Library: INSUFFICIENT_OUTPUT_AMOUNT'); require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY'); uint numerator = reserveIn.mul(amountOut).mul(1000); uint denominator = reserveOut.sub(amountOut).mul(997); amountIn = (numerator / denominator).add(1); } // performs chained getAmountOut calculations on any number of pairs function getAmountsOut(address factory, uint amountIn, address[] memory path) internal view returns (uint[] memory amounts) { require(path.length >= 2, 'UniswapV2Library: INVALID_PATH'); amounts = new uint[](path.length); amounts[0] = amountIn; for (uint i; i < path.length - 1; i++) { (uint reserveIn, uint reserveOut) = getReserves(factory, path[i], path[i + 1]); amounts[i + 1] = getAmountOut(amounts[i], reserveIn, reserveOut); } } // performs chained getAmountIn calculations on any number of pairs function getAmountsIn(address factory, uint amountOut, address[] memory path) internal view returns (uint[] memory amounts) { require(path.length >= 2, 'UniswapV2Library: INVALID_PATH'); amounts = new uint[](path.length); amounts[amounts.length - 1] = amountOut; for (uint i = path.length - 1; i > 0; i--) { (uint reserveIn, uint reserveOut) = getReserves(factory, path[i - 1], path[i]); amounts[i - 1] = getAmountIn(amounts[i], reserveIn, reserveOut); } } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; import '../Uniswap/Interfaces/IUniswapV2Pair.sol'; import '../Math/FixedPoint.sol'; // library with helper methods for oracles that are concerned with computing average prices library UniswapV2OracleLibrary { using FixedPoint for *; // helper function that returns the current block timestamp within the range of uint32, i.e. [0, 2**32 - 1] function currentBlockTimestamp() internal view returns (uint32) { return uint32(block.timestamp % 2 ** 32); } // produces the cumulative price using counterfactuals to save gas and avoid a call to sync. function currentCumulativePrices( address pair ) internal view returns (uint price0Cumulative, uint price1Cumulative, uint32 blockTimestamp) { blockTimestamp = currentBlockTimestamp(); price0Cumulative = IUniswapV2Pair(pair).price0CumulativeLast(); price1Cumulative = IUniswapV2Pair(pair).price1CumulativeLast(); // if time has elapsed since the last update on the pair, mock the accumulated price values (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast) = IUniswapV2Pair(pair).getReserves(); if (blockTimestampLast != blockTimestamp) { // subtraction overflow is desired uint32 timeElapsed = blockTimestamp - blockTimestampLast; // addition overflow is desired // counterfactual price0Cumulative += uint(FixedPoint.fraction(reserve1, reserve0)._x) * timeElapsed; // counterfactual price1Cumulative += uint(FixedPoint.fraction(reserve0, reserve1)._x) * timeElapsed; } } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; /** * @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) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.11; library StringHelpers { function parseAddr(string memory _a) internal pure returns (address _parsedAddress) { bytes memory tmp = bytes(_a); uint160 iaddr = 0; uint160 b1; uint160 b2; for (uint i = 2; i < 2 + 2 * 20; i += 2) { iaddr *= 256; b1 = uint160(uint8(tmp[i])); b2 = uint160(uint8(tmp[i + 1])); if ((b1 >= 97) && (b1 <= 102)) { b1 -= 87; } else if ((b1 >= 65) && (b1 <= 70)) { b1 -= 55; } else if ((b1 >= 48) && (b1 <= 57)) { b1 -= 48; } if ((b2 >= 97) && (b2 <= 102)) { b2 -= 87; } else if ((b2 >= 65) && (b2 <= 70)) { b2 -= 55; } else if ((b2 >= 48) && (b2 <= 57)) { b2 -= 48; } iaddr += (b1 * 16 + b2); } return address(iaddr); } function strCompare(string memory _a, string memory _b) internal pure returns (int _returnCode) { bytes memory a = bytes(_a); bytes memory b = bytes(_b); uint minLength = a.length; if (b.length < minLength) { minLength = b.length; } for (uint i = 0; i < minLength; i ++) { if (a[i] < b[i]) { return -1; } else if (a[i] > b[i]) { return 1; } } if (a.length < b.length) { return -1; } else if (a.length > b.length) { return 1; } else { return 0; } } function indexOf(string memory _haystack, string memory _needle) internal pure returns (int _returnCode) { bytes memory h = bytes(_haystack); bytes memory n = bytes(_needle); if (h.length < 1 || n.length < 1 || (n.length > h.length)) { return -1; } else if (h.length > (2 ** 128 - 1)) { return -1; } else { uint subindex = 0; for (uint i = 0; i < h.length; i++) { if (h[i] == n[0]) { subindex = 1; while(subindex < n.length && (i + subindex) < h.length && h[i + subindex] == n[subindex]) { subindex++; } if (subindex == n.length) { return int(i); } } } return -1; } } function strConcat(string memory _a, string memory _b) internal pure returns (string memory _concatenatedString) { return strConcat(_a, _b, "", "", ""); } function strConcat(string memory _a, string memory _b, string memory _c) internal pure returns (string memory _concatenatedString) { return strConcat(_a, _b, _c, "", ""); } function strConcat(string memory _a, string memory _b, string memory _c, string memory _d) internal pure returns (string memory _concatenatedString) { return strConcat(_a, _b, _c, _d, ""); } function strConcat(string memory _a, string memory _b, string memory _c, string memory _d, string memory _e) internal pure returns (string memory _concatenatedString) { bytes memory _ba = bytes(_a); bytes memory _bb = bytes(_b); bytes memory _bc = bytes(_c); bytes memory _bd = bytes(_d); bytes memory _be = bytes(_e); string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length); bytes memory babcde = bytes(abcde); uint k = 0; uint i = 0; for (i = 0; i < _ba.length; i++) { babcde[k++] = _ba[i]; } for (i = 0; i < _bb.length; i++) { babcde[k++] = _bb[i]; } for (i = 0; i < _bc.length; i++) { babcde[k++] = _bc[i]; } for (i = 0; i < _bd.length; i++) { babcde[k++] = _bd[i]; } for (i = 0; i < _be.length; i++) { babcde[k++] = _be[i]; } return string(babcde); } function safeParseInt(string memory _a) internal pure returns (uint _parsedInt) { return safeParseInt(_a, 0); } function safeParseInt(string memory _a, uint _b) internal pure returns (uint _parsedInt) { bytes memory bresult = bytes(_a); uint mint = 0; bool decimals = false; for (uint i = 0; i < bresult.length; i++) { if ((uint(uint8(bresult[i])) >= 48) && (uint(uint8(bresult[i])) <= 57)) { if (decimals) { if (_b == 0) break; else _b--; } mint *= 10; mint += uint(uint8(bresult[i])) - 48; } else if (uint(uint8(bresult[i])) == 46) { require(!decimals, 'More than one decimal encountered in string!'); decimals = true; } else { revert("Non-numeral character encountered in string!"); } } if (_b > 0) { mint *= 10 ** _b; } return mint; } function parseInt(string memory _a) internal pure returns (uint _parsedInt) { return parseInt(_a, 0); } function parseInt(string memory _a, uint _b) internal pure returns (uint _parsedInt) { bytes memory bresult = bytes(_a); uint mint = 0; bool decimals = false; for (uint i = 0; i < bresult.length; i++) { if ((uint(uint8(bresult[i])) >= 48) && (uint(uint8(bresult[i])) <= 57)) { if (decimals) { if (_b == 0) { break; } else { _b--; } } mint *= 10; mint += uint(uint8(bresult[i])) - 48; } else if (uint(uint8(bresult[i])) == 46) { decimals = true; } } if (_b > 0) { mint *= 10 ** _b; } return mint; } function uint2str(uint _i) internal pure returns (string memory _uintAsString) { if (_i == 0) { return "0"; } uint j = _i; uint len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint k = len - 1; while (_i != 0) { bstr[k--] = byte(uint8(48 + _i % 10)); _i /= 10; } return string(bstr); } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 100000 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_rewardsToken0","type":"address"},{"internalType":"address","name":"_rewardsToken1","type":"address"},{"internalType":"address","name":"_stakingToken","type":"address"},{"internalType":"address","name":"_frax_address","type":"address"},{"internalType":"address","name":"_timelock_address","type":"address"},{"internalType":"uint256","name":"_pool_weight0","type":"uint256"},{"internalType":"uint256","name":"_pool_weight1","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"DefaultInitialization","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"multiplier","type":"uint256"}],"name":"LockedStakeMaxMultiplierUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"secs","type":"uint256"}],"name":"LockedStakeMinTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"secs","type":"uint256"}],"name":"LockedStakeTimeForMaxMultiplier","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"multiplier","type":"uint256"}],"name":"MaxCRBoostMultiplier","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerNominated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isPaused","type":"bool"}],"name":"PauseChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Recovered","type":"event"},{"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"},{"indexed":false,"internalType":"address","name":"token_address","type":"address"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newDuration","type":"uint256"}],"name":"RewardsDurationUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"}],"name":"RewardsPeriodRenewed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"secs","type":"uint256"}],"name":"StakeLocked","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"kek_id","type":"bytes32"}],"name":"WithdrawnLocked","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"boostedBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"crBoostMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cr_boost_max_multiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getRewardForDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"greylist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"greylistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initializeDefault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastPauseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"lockedBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"lockedStakesOf","outputs":[{"components":[{"internalType":"bytes32","name":"kek_id","type":"bytes32"},{"internalType":"uint256","name":"start_timestamp","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"ending_timestamp","type":"uint256"},{"internalType":"uint256","name":"multiplier","type":"uint256"}],"internalType":"struct StakingRewardsDual.LockedStake[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"locked_stake_max_multiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"locked_stake_min_time","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"locked_stake_time_for_max_multiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"nominateNewOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nominatedOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pool_weight0","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pool_weight1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renewIfApplicable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerTokenStored0","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerTokenStored1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate0","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards0","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"rewardsFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsToken0","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsToken1","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_locked_stake_time_for_max_multiplier","type":"uint256"},{"internalType":"uint256","name":"_locked_stake_min_time","type":"uint256"}],"name":"setLockedStakeTimeForMinAndMaxMultiplier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_locked_stake_max_multiplier","type":"uint256"},{"internalType":"uint256","name":"_cr_boost_max_multiplier","type":"uint256"}],"name":"setMultipliers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_new_owner","type":"address"},{"internalType":"address","name":"_new_timelock","type":"address"}],"name":"setOwnerAndTimelock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new_rate0","type":"uint256"},{"internalType":"uint256","name":"_new_rate1","type":"uint256"}],"name":"setRewardRates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardsDuration","type":"uint256"}],"name":"setRewardsDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"secs","type":"uint256"}],"name":"stakeLocked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"secs","type":"uint256"}],"name":"stakingMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingToken","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timelock_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleToken1Rewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token1_rewards_on","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBoostedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlockStakes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unlockedBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlockedStakes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaid0","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaid1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"kek_id","type":"bytes32"}],"name":"withdrawLocked","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
62093a80600b8190556000600d819055600e55622dc6c06013556305a39a8060145560155560c0604052600660808190526503630343830360d41b60a09081526200004e916016919062000369565b50622dc6c06017556000601c819055601d556023805460ff191660011790553480156200007a57600080fd5b5060405162004b0c38038062004b0c8339810160408190526200009d9162000426565b8787878787878787876001600160a01b038116620000d85760405162461bcd60e51b8152600401620000cf906200059c565b60405180910390fd5b600080546001600160a01b0319166001600160a01b0383161781556040517fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c9162000125918490620004c0565b60405180910390a15060016002556000546001600160a01b03166200015e5760405162461bcd60e51b8152600401620000cf9062000571565b601180546001600160a01b03199081166001600160a01b038b8116919091179092556005805482168a841617905560068054821689841617905560078054821688841617905560048054610100600160a81b0319166101008885160217905542600c5560128054909116918516919091179055600f8290556010819055600060098190556200021890620f4240906200020490856200029b602090811b62002c4417901c565b620002e460201b62002c9f1790919060201c565b6009556200024a6301e133806200020460648169145dcaefd7c40bd6000060626200029b602090811b62002c4417901c565b600a8190555062000276620f424062000204601054600a546200029b60201b62002c441790919060201c565b600a5550506023805461ff001916905550620005d39c50505050505050505050505050565b600082620002ac57506000620002de565b82820282848281620002ba57fe5b0414620002db5760405162461bcd60e51b8152600401620000cf9062000530565b90505b92915050565b6000620002db83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200032e60201b60201c565b60008183620003525760405162461bcd60e51b8152600401620000cf9190620004da565b5060008385816200035f57fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003ac57805160ff1916838001178555620003dc565b82800160010185558215620003dc579182015b82811115620003dc578251825591602001919060010190620003bf565b50620003ea929150620003ee565b5090565b6200040b91905b80821115620003ea5760008155600101620003f5565b90565b80516001600160a01b0381168114620002de57600080fd5b600080600080600080600080610100898b03121562000443578384fd5b6200044f8a8a6200040e565b9750620004608a60208b016200040e565b9650620004718a60408b016200040e565b9550620004828a60608b016200040e565b9450620004938a60808b016200040e565b9350620004a48a60a08b016200040e565b60c08a015160e0909a0151989b979a5095989497939692505050565b6001600160a01b0392831681529116602082015260400190565b6000602080835283518082850152825b818110156200050857858101830151858201604001528201620004ea565b818111156200051a5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526011908201527013dddb995c881b5d5cdd081899481cd95d607a1b604082015260600190565b60208082526019908201527f4f776e657220616464726573732063616e6e6f74206265203000000000000000604082015260600190565b61452980620005e36000396000f3fe608060405234801561001057600080fd5b50600436106103c45760003560e01c806380edef8e116101ff578063c11f53441161011a578063dbf0b3fe116100ad578063ebe2b12b1161007c578063ebe2b12b14610701578063ed48f6f714610709578063fe271f5f14610711578063fee2eae614610724576103c4565b8063dbf0b3fe146106e1578063dc6663c7146106e9578063e0c18f70146106f1578063e1ba95d2146106f9576103c4565b8063cc1a378f116100e9578063cc1a378f146106b6578063cd3daf9d146106c9578063ce08bf13146106d1578063d34c0610146106d9576103c4565b8063c11f53441461068b578063c126d1aa14610693578063c69fd222146106a6578063c8f33c91146106ae576103c4565b8063941d9f6511610192578063a694fc3a11610161578063a694fc3a1461064a578063a8d598a41461065d578063af00f4e214610665578063b51f790214610678576103c4565b8063941d9f651461061f5780639477eb1c14610632578063948de6ad1461063a578063a1ec508a14610642576103c4565b80638980f11f116101ce5780638980f11f146105f45780638da5cb5b1461060757806391b4ded91461060f57806393b52be814610617576103c4565b806380edef8e146105c957806380faa57d146105d157806384955c88146105d95780638950b9a6146105ec576103c4565b806337ba04a0116102ef57806359355736116102825780636f50f507116102515780636f50f5071461059357806370a08231146105a657806372f702f3146105b957806379ba5097146105c1576103c4565b8063593557361461055d5780635c975abb1461057057806364350467146105785780636a231b0314610580576103c4565b8063475197f5116102be578063475197f51461051a5780634f232d501461052257806351e3fc171461053557806353a47bb714610548576103c4565b806337ba04a0146104ef578063386a952514610502578063399f54671461050a5780633d18b91214610512576103c4565b806318160ddd116103675780632ca1a895116103365780632ca1a895146104a15780632e1a7d4d146104a95780633184267f146104bc57806331ca208c146104cf576103c4565b806318160ddd1461045e5780631beabcd2146104665780631c1f78eb146104795780631e090f0114610481576103c4565b80631627540c116103a35780631627540c1461041b578063169d27ef1461043057806316c38b3c1461043857806317b18c891461044b576103c4565b80628cc262146103c95780630dda7299146103f3578063144e803414610408575b600080fd5b6103dc6103d73660046139b0565b61072c565b6040516103ea9291906144a7565b60405180910390f35b6103fb610878565b6040516103ea919061447a565b6103fb6104163660046139b0565b61087f565b61042e6104293660046139b0565b610891565b005b61042e610966565b61042e610446366004613a29565b610a20565b61042e610459366004613a91565b610afc565b6103fb61105c565b6103fb6104743660046139b0565b611062565b6103dc61108d565b61049461048f3660046139b0565b6110e1565b6040516103ea9190613bcb565b6103fb611195565b61042e6104b7366004613a61565b61119b565b61042e6104ca3660046139cb565b6113d6565b6104e26104dd3660046139b0565b61149c565b6040516103ea9190613c39565b61042e6104fd366004613a91565b6114b1565b6103fb61152f565b6104e2611535565b61042e611543565b6103fb611898565b6103fb610530366004613a61565b61189e565b61042e610543366004613a61565b6118f9565b610550611cdd565b6040516103ea9190613b2c565b6103fb61056b3660046139b0565b611cf9565b6104e2611d21565b6104e2611d2a565b6103fb61058e3660046139b0565b611d33565b61042e6105a1366004613a91565b611d45565b6103fb6105b43660046139b0565b611ead565b610550611eed565b61042e611f09565b610550611ffe565b6103fb61201a565b6103fb6105e73660046139b0565b61202d565b610550612055565b61042e6106023660046139ff565b612071565b6105506121ea565b6103fb612206565b6103fb61220c565b61042e61062d3660046139b0565b6122ed565b6103fb6123b4565b6103fb6123ba565b6103fb6123c0565b61042e610658366004613a61565b6123c6565b6103fb61265f565b61042e610673366004613a91565b612665565b6103dc6106863660046139b0565b6127de565b6103fb612813565b6103fb6106a13660046139b0565b6128be565b6105506128d0565b6103fb6128ec565b61042e6106c4366004613a61565b6128f2565b6103dc6129e0565b6103fb612a92565b6103fb612a98565b6103fb612a9e565b610550612aa4565b6103fb612ac0565b61042e612ac6565b6103fb612b73565b61042e612b79565b6103fb61071f3660046139b0565b612c1e565b61042e612c30565b60008060008061073a6129e0565b73ffffffffffffffffffffffffffffffffffffffff87166000908152601a60209081526040808320546018909252909120549294509092506107e2916107d690670de0b6b3a7640000906107ca9061079990889063ffffffff612ce116565b73ffffffffffffffffffffffffffffffffffffffff8b1660009081526020805260409020549063ffffffff612c4416565b9063ffffffff612c9f16565b9063ffffffff612d2316565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601b602090815260408083205460199092529091205461086d91906107d690670de0b6b3a7640000906107ca9061083c90889063ffffffff612ce116565b73ffffffffffffffffffffffffffffffffffffffff8c1660009081526020805260409020549063ffffffff612c4416565b935093505050915091565b601d545b90565b60186020526000908152604090205481565b60005473ffffffffffffffffffffffffffffffffffffffff1633146108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613ffc565b60405180910390fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83161790556040517f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce229061095b908390613b2c565b60405180910390a150565b60115473ffffffffffffffffffffffffffffffffffffffff163314806109a3575060125473ffffffffffffffffffffffffffffffffffffffff1633145b6109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b42600c819055600b546109f2919063ffffffff612d2316565b6008556040517fb5cfe3ccd03847076864f081609024cbc2eb98c38da4d8b2cebe9479a9a1ef3790600090a1565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a71576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613ffc565b60045460ff1615158115151415610a8757610af9565b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016821515179081905560ff1615610ac257426003555b6004546040517f8fb6c181ee25a520cf3dd6565006ef91229fcfe5a989566c2a3b8c115570cec59161095b9160ff90911690613c39565b50565b600280541415610b38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290614389565b6002805560045460ff1615610b79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e2906140ed565b33600854421115610b9157610b8c612d62565b610bb9565b600080610b9c6129e0565b600d829055600e8190559092509050610bb361201a565b600c5550505b73ffffffffffffffffffffffffffffffffffffffff811615610c3357600080610be18361072c565b73ffffffffffffffffffffffffffffffffffffffff85166000908152601a6020908152604080832094909455601b815283822092909255600d546018835283822055600e546019909252919091205550505b60008311610c6d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613e40565b60008211610ca7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e2906143c0565b3360009081526022602052604090205460ff1615610cf1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613c95565b601554604080518082018252601c81527f4d696e696d756d207374616b652074696d65206e6f74206d6574202800000000602080830191909152601680548451601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018616150201909316929092049182018490048402810184019095528085529487101594610e149492830182828015610dd45780601f10610da957610100808354040283529160200191610dd4565b820191906000526020600020905b815481529060010190602001808311610db757829003601f168201915b50505050506040518060400160405280600181526020017f290000000000000000000000000000000000000000000000000000000000000081525061307b565b90610e4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e29190613c44565b50601454821115610e89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f9f565b6000610e948361189e565b90506000610eaf620f42406107ca878563ffffffff612c4416565b3360008181526021602052604090819020815160a08101909252929350908190610ede90428a60c08501613ad3565b604051602081830303815290604052805190602001208152602001428152602001878152602001610f188742612d2390919063ffffffff16565b8152602090810185905282546001818101855560009485529382902083516005909202019081559082015192810192909255604081015160028301556060810151600383015560800151600490910155600754610f8d9073ffffffffffffffffffffffffffffffffffffffff163330886130b0565b601c54610fa0908663ffffffff612d2316565b601c55601d54610fb6908263ffffffff612d2316565b601d55336000908152601f6020526040902054610fd9908663ffffffff612d2316565b336000908152601f602090815260408083209390935580522054611003908263ffffffff612d2316565b336000818152602080526040908190209290925590517fa5ae833d0bb1dcd632d98a8b70973e8516812898e19bf27b70071ebc8dc52c019061104890889088906144a7565b60405180910390a250506001600255505050565b601c5490565b73ffffffffffffffffffffffffffffffffffffffff811660009081526020805260409020545b919050565b6000806110c3620f42406107ca6110a261220c565b600b546009546110b79163ffffffff612c4416565b9063ffffffff612c4416565b600b54600a546110d89163ffffffff612c4416565b915091505b9091565b73ffffffffffffffffffffffffffffffffffffffff81166000908152602160209081526040808320805482518185028101850190935280835260609492939192909184015b8282101561118a57838290600052602060002090600502016040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505081526020019060010190611126565b505050509050919050565b60095481565b6002805414156111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290614389565b6002805560085433904211156111f4576111ef612d62565b61121c565b6000806111ff6129e0565b600d829055600e819055909250905061121661201a565b600c5550505b73ffffffffffffffffffffffffffffffffffffffff811615611296576000806112448361072c565b73ffffffffffffffffffffffffffffffffffffffff85166000908152601a6020908152604080832094909455601b815283822092909255600d546018835283822055600e546019909252919091205550505b600082116112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290614059565b336000908152601e60205260409020546112f0908363ffffffff612ce116565b336000908152601e60209081526040808320939093558052205461131a908363ffffffff612ce116565b336000908152602080526040902055601c5461133c908363ffffffff612ce116565b601c55601d54611352908363ffffffff612ce116565b601d5560075461137f9073ffffffffffffffffffffffffffffffffffffffff16338463ffffffff6131dd16565b3373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5836040516113c5919061447a565b60405180910390a250506001600255565b60115473ffffffffffffffffffffffffffffffffffffffff16331480611413575060125473ffffffffffffffffffffffffffffffffffffffff1633145b611449576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b6011805473ffffffffffffffffffffffffffffffffffffffff9384167fffffffffffffffffffffffff00000000000000000000000000000000000000009182161790915560128054929093169116179055565b60226020526000908152604090205460ff1681565b60115473ffffffffffffffffffffffffffffffffffffffff163314806114ee575060125473ffffffffffffffffffffffffffffffffffffffff1633145b611524576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b600991909155600a55565b600b5481565b602354610100900460ff1681565b60028054141561157f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290614389565b60028055600854339042111561159c57611597612d62565b6115c4565b6000806115a76129e0565b600d829055600e81905590925090506115be61201a565b600c5550505b73ffffffffffffffffffffffffffffffffffffffff81161561163e576000806115ec8361072c565b73ffffffffffffffffffffffffffffffffffffffff85166000908152601a6020908152604080832094909455601b815283822092909255600d546018835283822055600e546019909252919091205550505b336000908152601a6020908152604080832054601b90925290912054811561177457336000818152601a60205260408082209190915560055490517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169163a9059cbb916116ca91908690600401613b4d565b602060405180830381600087803b1580156116e457600080fd5b505af11580156116f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061171c9190613a45565b5060055460405133917f8e0d3fa908fd7ee819155b3ce71e292b601bbeb0cd00d7758b9d226a523cb8279161176b91869173ffffffffffffffffffffffffffffffffffffffff90911690614483565b60405180910390a25b801561188e57336000818152601b60205260408082209190915560065490517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169163a9059cbb916117e491908590600401613b4d565b602060405180830381600087803b1580156117fe57600080fd5b505af1158015611812573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118369190613a45565b5060065460405133917f8e0d3fa908fd7ee819155b3ce71e292b601bbeb0cd00d7758b9d226a523cb8279161188591859173ffffffffffffffffffffffffffffffffffffffff90911690614483565b60405180910390a25b5050600160025550565b60105481565b6000806118e26118d26014546107ca6118c5620f4240601354612ce190919063ffffffff16565b879063ffffffff612c4416565b620f42409063ffffffff612d2316565b90506013548111156118f357506013545b92915050565b600280541415611935576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290614389565b6002805560085433904211156119525761194d612d62565b61197a565b60008061195d6129e0565b600d829055600e819055909250905061197461201a565b600c5550505b73ffffffffffffffffffffffffffffffffffffffff8116156119f4576000806119a28361072c565b73ffffffffffffffffffffffffffffffffffffffff85166000908152601a6020908152604080832094909455601b815283822092909255600d546018835283822055600e546019909252919091205550505b6119fc6138c2565b600060408201819052805b33600090815260216020526040902054811015611aca57336000908152602160205260409020805482908110611a3957fe5b906000526020600020906005020160000154851415611ac257336000908152602160205260409020805482908110611a6d57fe5b90600052602060002090600502016040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815250509250809150611aca565b600101611a07565b5081518414611b05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e2906141a7565b816060015142101580611b25575060235460ff6101009091041615156001145b611b5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613e09565b60408201516080830151600090611b8290620f4240906107ca90859063ffffffff612c4416565b90508115611cd057336000908152601f6020526040902054611baa908363ffffffff612ce116565b336000908152601f602090815260408083209390935580522054611bd4908263ffffffff612ce116565b336000908152602080526040902055601c54611bf6908363ffffffff612ce116565b601c55601d54611c0c908263ffffffff612ce116565b601d55336000908152602160205260409020805484908110611c2a57fe5b60009182526020822060059091020181815560018101829055600281018290556003810182905560040155600754611c7f9073ffffffffffffffffffffffffffffffffffffffff16338463ffffffff6131dd16565b3373ffffffffffffffffffffffffffffffffffffffff167f1f70bda8ea2447de035db87c33fe8f03f7514d49c394293e5cffdb4c34352cf68388604051611cc79291906144a7565b60405180910390a25b5050600160025550505050565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff166000908152601f602052604090205490565b60045460ff1681565b60235460ff1681565b601b6020526000908152604090205481565b60115473ffffffffffffffffffffffffffffffffffffffff16331480611d82575060125473ffffffffffffffffffffffffffffffffffffffff1633145b611db8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b6001821015611df3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e29061414a565b6001811015611e2e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290614272565b601382905560178190556040517f687125c69e38f71137de9edade0dac562abc4f76d751bb1330f16c0ffd51fd5890611e6890839061447a565b60405180910390a17fa1676084a9eea08c6f205b60799323b364a1bd8e10aba89f0fbd94cfbf68b5dd601354604051611ea1919061447a565b60405180910390a15050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152601f6020908152604080832054601e9092528220546118f39163ffffffff612d2316565b60075473ffffffffffffffffffffffffffffffffffffffff1681565b60015473ffffffffffffffffffffffffffffffffffffffff163314611f5a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613d4f565b6000546001546040517fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c92611faa9273ffffffffffffffffffffffffffffffffffffffff91821692911690613b73565b60405180910390a160018054600080547fffffffffffffffffffffffff000000000000000000000000000000000000000090811673ffffffffffffffffffffffffffffffffffffffff841617909155169055565b60115473ffffffffffffffffffffffffffffffffffffffff1681565b600061202842600854613283565b905090565b73ffffffffffffffffffffffffffffffffffffffff166000908152601e602052604090205490565b60065473ffffffffffffffffffffffffffffffffffffffff1681565b60115473ffffffffffffffffffffffffffffffffffffffff163314806120ae575060125473ffffffffffffffffffffffffffffffffffffffff1633145b6120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b60075473ffffffffffffffffffffffffffffffffffffffff8381169116141561210c57600080fd5b6011546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481169263a9059cbb9261216692909116908590600401613b4d565b602060405180830381600087803b15801561218057600080fd5b505af1158015612194573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121b89190613a45565b507f8c1256b8896378cd5044f80c202f9772b9d77dc85c8a6eb51967210b09bfaa288282604051611ea1929190613b4d565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b60035481565b6000806122e76118d2620f42406107ca612234620f4240601754612ce190919063ffffffff16565b6110b7600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632eb9771b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561229f57600080fd5b505afa1580156122b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122d79190613a79565b620f42409063ffffffff612ce116565b91505090565b60115473ffffffffffffffffffffffffffffffffffffffff1633148061232a575060125473ffffffffffffffffffffffffffffffffffffffff1633145b612360576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b73ffffffffffffffffffffffffffffffffffffffff16600090815260226020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b60155481565b60135481565b600a5481565b600280541415612402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290614389565b6002805560045460ff1615612443576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e2906140ed565b3360085442111561245b57612456612d62565b612483565b6000806124666129e0565b600d829055600e819055909250905061247d61201a565b600c5550505b73ffffffffffffffffffffffffffffffffffffffff8116156124fd576000806124ab8361072c565b73ffffffffffffffffffffffffffffffffffffffff85166000908152601a6020908152604080832094909455601b815283822092909255600d546018835283822055600e546019909252919091205550505b60008211612537576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613e40565b3360009081526022602052604090205460ff1615612581576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613c95565b6007546125a69073ffffffffffffffffffffffffffffffffffffffff163330856130b0565b601c546125b9908363ffffffff612d2316565b601c55601d546125cf908363ffffffff612d2316565b601d55336000908152601e60205260409020546125f2908363ffffffff612d2316565b336000908152601e60209081526040808320939093558052205461261c908363ffffffff612d2316565b336000818152602080526040908190209290925590517f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d906113c590859061447a565b600e5481565b60115473ffffffffffffffffffffffffffffffffffffffff163314806126a2575060125473ffffffffffffffffffffffffffffffffffffffff1633145b6126d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b6001821015612713576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290614215565b600181101561274e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e29061441d565b6014829055601581905561276181613299565b8051612775916016916020909101906138f4565b507f0e3e3fae480c6f92291358a02bc83f04ee1971d5488596bffda7929d57ab470f6014546040516127a7919061447a565b60405180910390a17f0534d208d75dfdbfacc1204745dd9b3c4c37e8cfc05eb5e8e3ae538aedb0a9fa81604051611ea1919061447a565b73ffffffffffffffffffffffffffffffffffffffff166000908152601a6020908152604080832054601b909252909120549091565b600754604080517f313ce567000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163313ce567916004808301926020929190829003018186803b15801561287e57600080fd5b505afa158015612892573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b69190613ab2565b60ff16905090565b601a6020526000908152604090205481565b60055473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b60115473ffffffffffffffffffffffffffffffffffffffff1633148061292f575060125473ffffffffffffffffffffffffffffffffffffffff1633145b612965576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b6008541580612975575060085442115b6129ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613ccc565b600b8190556040517ffb46ca5a5e06d4540d6387b930a7c978bce0db5f449ec6b3f5d07c6e1d44f2d39061095b90839061447a565b600080601c54600014156129fb575050600d54600e546110dd565b612a51612a42601d546107ca620f42406107ca670de0b6b3a76400006110b7612a2261220c565b6110b76009546110b7600c54612a3661201a565b9063ffffffff612ce116565b600d549063ffffffff612d2316565b612a89612a7a601d546107ca670de0b6b3a76400006110b7600a546110b7600c54612a3661201a565b600e549063ffffffff612d2316565b915091506110dd565b60175481565b600f5481565b600d5481565b60125473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b60115473ffffffffffffffffffffffffffffffffffffffff16331480612b03575060125473ffffffffffffffffffffffffffffffffffffffff1633145b612b39576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b602380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff81166101009182900460ff1615909102179055565b60085481565b60115473ffffffffffffffffffffffffffffffffffffffff16331480612bb6575060125473ffffffffffffffffffffffffffffffffffffffff1633145b612bec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b602380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b60196020526000908152604090205481565b600854421115612c4257612c42612d62565b565b600082612c53575060006118f3565b82820282848281612c6057fe5b0414612c98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290614090565b9392505050565b6000612c9883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506133c3565b6000612c9883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613414565b600082820183811015612c98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613e77565b6008544211612d9d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613eae565b6000600b54612db760085442612ce190919063ffffffff16565b81612dbe57fe5b6005546040517f70a0823100000000000000000000000000000000000000000000000000000000815292909104925060009173ffffffffffffffffffffffffffffffffffffffff909116906370a0823190612e1d903090600401613b2c565b60206040518083038186803b158015612e3557600080fd5b505afa158015612e49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e6d9190613a79565b6006546040517f70a0823100000000000000000000000000000000000000000000000000000000815291925060009173ffffffffffffffffffffffffffffffffffffffff909116906370a0823190612ec9903090600401613b2c565b60206040518083038186803b158015612ee157600080fd5b505afa158015612ef5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f199190613a79565b905081612f35620f42406107ca866001016110b76110a261220c565b1115612f6d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613dac565b60235460ff1615612fcf5780612f97846001016110b7600b54600a54612c4490919063ffffffff16565b1115612fcf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613ee5565b600b54612ffa90612feb906110b786600163ffffffff612d2316565b6008549063ffffffff612d2316565b6008556000806130086129e0565b600d829055600e819055909250905061301f61201a565b600c556007546040517f6f2b3b3aaf1881d69a5d40565500f93ea73df36e7b6a29bf48b21479a9237fe99161306c9173ffffffffffffffffffffffffffffffffffffffff90911690613b2c565b60405180910390a15050505050565b60606130a8848484604051806020016040528060008152506040518060200160405280600081525061345a565b949350505050565b600060608573ffffffffffffffffffffffffffffffffffffffff166323b872dd8686866040516024016130e593929190613b9a565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516131339190613b10565b6000604051808303816000865af19150503d8060008114613170576040519150601f19603f3d011682016040523d82523d6000602084013e613175565b606091505b509150915081801561319f57508051158061319f57508080602001905181019061319f9190613a45565b6131d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e29061432c565b505050505050565b61327e8363a9059cbb60e01b84846040516024016131fc929190613b4d565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526136f7565b505050565b60008183106132925781612c98565b5090919050565b6060816132da575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152611088565b8160005b81156132f257600101600a820491506132de565b60608167ffffffffffffffff8111801561330b57600080fd5b506040519080825280601f01601f191660200182016040528015613336576020820181803683370190505b5090507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b85156133ba57600a860660300160f81b8282806001900393508151811061338057fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8604955061335d565b50949350505050565b600081836133fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e29190613c44565b50600083858161340a57fe5b0495945050505050565b60008184841115613452576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e29190613c44565b505050900390565b805182518451865188516060948a948a948a948a948a948a94919092019092019091010167ffffffffffffffff8111801561349457600080fd5b506040519080825280601f01601f1916602001820160405280156134bf576020820181803683370190505b509050806000805b8851811015613530578881815181106134dc57fe5b602001015160f81c60f81b8383806001019450815181106134f957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506001016134c7565b5060005b875181101561359d5787818151811061354957fe5b602001015160f81c60f81b83838060010194508151811061356657fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600101613534565b5060005b865181101561360a578681815181106135b657fe5b602001015160f81c60f81b8383806001019450815181106135d357fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506001016135a1565b5060005b85518110156136775785818151811061362357fe5b602001015160f81c60f81b83838060010194508151811061364057fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060010161360e565b5060005b84518110156136e45784818151811061369057fe5b602001015160f81c60f81b8383806001019450815181106136ad57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060010161367b565b50909d9c50505050505050505050505050565b6060613759826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166137ad9092919063ffffffff16565b80519091501561327e57808060200190518101906137779190613a45565b61327e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e2906142cf565b60606130a8848460008560606137c2856138bc565b6137f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e2906141de565b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040516138229190613b10565b60006040518083038185875af1925050503d806000811461385f576040519150601f19603f3d011682016040523d82523d6000602084013e613864565b606091505b509150915081156138785791506130a89050565b8051156138885780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e29190613c44565b3b151590565b6040518060a0016040528060008019168152602001600081526020016000815260200160008152602001600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061393557805160ff1916838001178555613962565b82800160010185558215613962579182015b82811115613962578251825591602001919060010190613947565b5061396e929150613972565b5090565b61087c91905b8082111561396e5760008155600101613978565b803573ffffffffffffffffffffffffffffffffffffffff811681146118f357600080fd5b6000602082840312156139c1578081fd5b612c98838361398c565b600080604083850312156139dd578081fd5b6139e7848461398c565b91506139f6846020850161398c565b90509250929050565b60008060408385031215613a11578182fd5b613a1b848461398c565b946020939093013593505050565b600060208284031215613a3a578081fd5b8135612c98816144e5565b600060208284031215613a56578081fd5b8151612c98816144e5565b600060208284031215613a72578081fd5b5035919050565b600060208284031215613a8a578081fd5b5051919050565b60008060408385031215613aa3578182fd5b50508035926020909101359150565b600060208284031215613ac3578081fd5b815160ff81168114612c98578182fd5b60609390931b7fffffffffffffffffffffffffffffffffffffffff0000000000000000000000001683526014830191909152603482015260540190565b60008251613b228184602087016144b5565b9190910192915050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff92831681529116602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff9384168152919092166020820152604081019190915260600190565b602080825282518282018190526000919060409081850190868401855b82811015613c2c5781518051855286810151878601528581015186860152606080820151908601526080908101519085015260a09093019290850190600101613be8565b5091979650505050505050565b901515815260200190565b6000602082528251806020840152613c638160408501602087016144b5565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b6020808252601b908201527f6164647265737320686173206265656e20677265796c69737465640000000000604082015260600190565b60208082526058908201527f50726576696f7573207265776172647320706572696f64206d7573742062652060408201527f636f6d706c657465206265666f7265206368616e67696e67207468652064757260608201527f6174696f6e20666f7220746865206e657720706572696f640000000000000000608082015260a00190565b60208082526035908201527f596f75206d757374206265206e6f6d696e61746564206265666f726520796f7560408201527f2063616e20616363657074206f776e6572736869700000000000000000000000606082015260800190565b60208082526025908201527f4e6f7420656e6f7567682046585320617661696c61626c6520666f722072657760408201527f6172647321000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526016908201527f5374616b65206973207374696c6c206c6f636b65642100000000000000000000604082015260600190565b6020808252600e908201527f43616e6e6f74207374616b652030000000000000000000000000000000000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601b908201527f506572696f6420686173206e6f74206578706972656420796574210000000000604082015260600190565b60208082526028908201527f4e6f7420656e6f75676820746f6b656e3120617661696c61626c6520666f722060408201527f7265776172647321000000000000000000000000000000000000000000000000606082015260800190565b60208082526030908201527f596f7520617265206e6f7420746865206f776e6572206f722074686520676f7660408201527f65726e616e63652074696d656c6f636b00000000000000000000000000000000606082015260800190565b60208082526024908201527f596f752061726520747279696e6720746f207374616b6520666f7220746f6f2060408201527f6c6f6e6700000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602f908201527f4f6e6c792074686520636f6e7472616374206f776e6572206d6179207065726660408201527f6f726d207468697320616374696f6e0000000000000000000000000000000000606082015260800190565b60208082526011908201527f43616e6e6f742077697468647261772030000000000000000000000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252603c908201527f5468697320616374696f6e2063616e6e6f7420626520706572666f726d65642060408201527f7768696c652074686520636f6e74726163742069732070617573656400000000606082015260800190565b6020808252602d908201527f4d756c7469706c696572206d7573742062652067726561746572207468616e2060408201527f6f7220657175616c20746f203100000000000000000000000000000000000000606082015260800190565b6020808252600f908201527f5374616b65206e6f7420666f756e640000000000000000000000000000000000604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526036908201527f4d756c7469706c696572204d61782054696d65206d757374206265206772656160408201527f746572207468616e206f7220657175616c20746f203100000000000000000000606082015260800190565b6020808252602f908201527f4d617820435220426f6f7374206d75737420626520677265617465722074686160408201527f6e206f7220657175616c20746f20310000000000000000000000000000000000606082015260800190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60408201527f6f74207375636365656400000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f5472616e7366657248656c7065723a205452414e534645525f46524f4d5f464160408201527f494c454400000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526021908201527f43616e6e6f74207761697420666f722061206e65676174697665206e756d626560408201527f7200000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526036908201527f4d756c7469706c696572204d696e2054696d65206d757374206265206772656160408201527f746572207468616e206f7220657175616c20746f203100000000000000000000606082015260800190565b90815260200190565b91825273ffffffffffffffffffffffffffffffffffffffff16602082015260400190565b918252602082015260400190565b60005b838110156144d05781810151838201526020016144b8565b838111156144df576000848401525b50505050565b8015158114610af957600080fdfea26469706673582212202ef191200ffbd3cddad0624c7a79e7485fabbc2d033e3f95381b94bfa687079064736f6c634300060b0033000000000000000000000000ff5b4bcbf765fe363269114e1c765229a29edefd0000000000000000000000003432b6a60d23ca0dfca7761b7ab56459d9c964d00000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe200000000000000000000000061eb53ee427ab4e007d78a9134aacb3101a2dc23000000000000000000000000853d955acef822db058eb8505911ed77f175b99e0000000000000000000000008412ebf45bac1b340bbe8f318b928c466c4e39ca00000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103c45760003560e01c806380edef8e116101ff578063c11f53441161011a578063dbf0b3fe116100ad578063ebe2b12b1161007c578063ebe2b12b14610701578063ed48f6f714610709578063fe271f5f14610711578063fee2eae614610724576103c4565b8063dbf0b3fe146106e1578063dc6663c7146106e9578063e0c18f70146106f1578063e1ba95d2146106f9576103c4565b8063cc1a378f116100e9578063cc1a378f146106b6578063cd3daf9d146106c9578063ce08bf13146106d1578063d34c0610146106d9576103c4565b8063c11f53441461068b578063c126d1aa14610693578063c69fd222146106a6578063c8f33c91146106ae576103c4565b8063941d9f6511610192578063a694fc3a11610161578063a694fc3a1461064a578063a8d598a41461065d578063af00f4e214610665578063b51f790214610678576103c4565b8063941d9f651461061f5780639477eb1c14610632578063948de6ad1461063a578063a1ec508a14610642576103c4565b80638980f11f116101ce5780638980f11f146105f45780638da5cb5b1461060757806391b4ded91461060f57806393b52be814610617576103c4565b806380edef8e146105c957806380faa57d146105d157806384955c88146105d95780638950b9a6146105ec576103c4565b806337ba04a0116102ef57806359355736116102825780636f50f507116102515780636f50f5071461059357806370a08231146105a657806372f702f3146105b957806379ba5097146105c1576103c4565b8063593557361461055d5780635c975abb1461057057806364350467146105785780636a231b0314610580576103c4565b8063475197f5116102be578063475197f51461051a5780634f232d501461052257806351e3fc171461053557806353a47bb714610548576103c4565b806337ba04a0146104ef578063386a952514610502578063399f54671461050a5780633d18b91214610512576103c4565b806318160ddd116103675780632ca1a895116103365780632ca1a895146104a15780632e1a7d4d146104a95780633184267f146104bc57806331ca208c146104cf576103c4565b806318160ddd1461045e5780631beabcd2146104665780631c1f78eb146104795780631e090f0114610481576103c4565b80631627540c116103a35780631627540c1461041b578063169d27ef1461043057806316c38b3c1461043857806317b18c891461044b576103c4565b80628cc262146103c95780630dda7299146103f3578063144e803414610408575b600080fd5b6103dc6103d73660046139b0565b61072c565b6040516103ea9291906144a7565b60405180910390f35b6103fb610878565b6040516103ea919061447a565b6103fb6104163660046139b0565b61087f565b61042e6104293660046139b0565b610891565b005b61042e610966565b61042e610446366004613a29565b610a20565b61042e610459366004613a91565b610afc565b6103fb61105c565b6103fb6104743660046139b0565b611062565b6103dc61108d565b61049461048f3660046139b0565b6110e1565b6040516103ea9190613bcb565b6103fb611195565b61042e6104b7366004613a61565b61119b565b61042e6104ca3660046139cb565b6113d6565b6104e26104dd3660046139b0565b61149c565b6040516103ea9190613c39565b61042e6104fd366004613a91565b6114b1565b6103fb61152f565b6104e2611535565b61042e611543565b6103fb611898565b6103fb610530366004613a61565b61189e565b61042e610543366004613a61565b6118f9565b610550611cdd565b6040516103ea9190613b2c565b6103fb61056b3660046139b0565b611cf9565b6104e2611d21565b6104e2611d2a565b6103fb61058e3660046139b0565b611d33565b61042e6105a1366004613a91565b611d45565b6103fb6105b43660046139b0565b611ead565b610550611eed565b61042e611f09565b610550611ffe565b6103fb61201a565b6103fb6105e73660046139b0565b61202d565b610550612055565b61042e6106023660046139ff565b612071565b6105506121ea565b6103fb612206565b6103fb61220c565b61042e61062d3660046139b0565b6122ed565b6103fb6123b4565b6103fb6123ba565b6103fb6123c0565b61042e610658366004613a61565b6123c6565b6103fb61265f565b61042e610673366004613a91565b612665565b6103dc6106863660046139b0565b6127de565b6103fb612813565b6103fb6106a13660046139b0565b6128be565b6105506128d0565b6103fb6128ec565b61042e6106c4366004613a61565b6128f2565b6103dc6129e0565b6103fb612a92565b6103fb612a98565b6103fb612a9e565b610550612aa4565b6103fb612ac0565b61042e612ac6565b6103fb612b73565b61042e612b79565b6103fb61071f3660046139b0565b612c1e565b61042e612c30565b60008060008061073a6129e0565b73ffffffffffffffffffffffffffffffffffffffff87166000908152601a60209081526040808320546018909252909120549294509092506107e2916107d690670de0b6b3a7640000906107ca9061079990889063ffffffff612ce116565b73ffffffffffffffffffffffffffffffffffffffff8b1660009081526020805260409020549063ffffffff612c4416565b9063ffffffff612c9f16565b9063ffffffff612d2316565b73ffffffffffffffffffffffffffffffffffffffff86166000908152601b602090815260408083205460199092529091205461086d91906107d690670de0b6b3a7640000906107ca9061083c90889063ffffffff612ce116565b73ffffffffffffffffffffffffffffffffffffffff8c1660009081526020805260409020549063ffffffff612c4416565b935093505050915091565b601d545b90565b60186020526000908152604090205481565b60005473ffffffffffffffffffffffffffffffffffffffff1633146108eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613ffc565b60405180910390fd5b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83161790556040517f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce229061095b908390613b2c565b60405180910390a150565b60115473ffffffffffffffffffffffffffffffffffffffff163314806109a3575060125473ffffffffffffffffffffffffffffffffffffffff1633145b6109d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b42600c819055600b546109f2919063ffffffff612d2316565b6008556040517fb5cfe3ccd03847076864f081609024cbc2eb98c38da4d8b2cebe9479a9a1ef3790600090a1565b60005473ffffffffffffffffffffffffffffffffffffffff163314610a71576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613ffc565b60045460ff1615158115151415610a8757610af9565b600480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016821515179081905560ff1615610ac257426003555b6004546040517f8fb6c181ee25a520cf3dd6565006ef91229fcfe5a989566c2a3b8c115570cec59161095b9160ff90911690613c39565b50565b600280541415610b38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290614389565b6002805560045460ff1615610b79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e2906140ed565b33600854421115610b9157610b8c612d62565b610bb9565b600080610b9c6129e0565b600d829055600e8190559092509050610bb361201a565b600c5550505b73ffffffffffffffffffffffffffffffffffffffff811615610c3357600080610be18361072c565b73ffffffffffffffffffffffffffffffffffffffff85166000908152601a6020908152604080832094909455601b815283822092909255600d546018835283822055600e546019909252919091205550505b60008311610c6d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613e40565b60008211610ca7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e2906143c0565b3360009081526022602052604090205460ff1615610cf1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613c95565b601554604080518082018252601c81527f4d696e696d756d207374616b652074696d65206e6f74206d6574202800000000602080830191909152601680548451601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61010060018616150201909316929092049182018490048402810184019095528085529487101594610e149492830182828015610dd45780601f10610da957610100808354040283529160200191610dd4565b820191906000526020600020905b815481529060010190602001808311610db757829003601f168201915b50505050506040518060400160405280600181526020017f290000000000000000000000000000000000000000000000000000000000000081525061307b565b90610e4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e29190613c44565b50601454821115610e89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f9f565b6000610e948361189e565b90506000610eaf620f42406107ca878563ffffffff612c4416565b3360008181526021602052604090819020815160a08101909252929350908190610ede90428a60c08501613ad3565b604051602081830303815290604052805190602001208152602001428152602001878152602001610f188742612d2390919063ffffffff16565b8152602090810185905282546001818101855560009485529382902083516005909202019081559082015192810192909255604081015160028301556060810151600383015560800151600490910155600754610f8d9073ffffffffffffffffffffffffffffffffffffffff163330886130b0565b601c54610fa0908663ffffffff612d2316565b601c55601d54610fb6908263ffffffff612d2316565b601d55336000908152601f6020526040902054610fd9908663ffffffff612d2316565b336000908152601f602090815260408083209390935580522054611003908263ffffffff612d2316565b336000818152602080526040908190209290925590517fa5ae833d0bb1dcd632d98a8b70973e8516812898e19bf27b70071ebc8dc52c019061104890889088906144a7565b60405180910390a250506001600255505050565b601c5490565b73ffffffffffffffffffffffffffffffffffffffff811660009081526020805260409020545b919050565b6000806110c3620f42406107ca6110a261220c565b600b546009546110b79163ffffffff612c4416565b9063ffffffff612c4416565b600b54600a546110d89163ffffffff612c4416565b915091505b9091565b73ffffffffffffffffffffffffffffffffffffffff81166000908152602160209081526040808320805482518185028101850190935280835260609492939192909184015b8282101561118a57838290600052602060002090600502016040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152505081526020019060010190611126565b505050509050919050565b60095481565b6002805414156111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290614389565b6002805560085433904211156111f4576111ef612d62565b61121c565b6000806111ff6129e0565b600d829055600e819055909250905061121661201a565b600c5550505b73ffffffffffffffffffffffffffffffffffffffff811615611296576000806112448361072c565b73ffffffffffffffffffffffffffffffffffffffff85166000908152601a6020908152604080832094909455601b815283822092909255600d546018835283822055600e546019909252919091205550505b600082116112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290614059565b336000908152601e60205260409020546112f0908363ffffffff612ce116565b336000908152601e60209081526040808320939093558052205461131a908363ffffffff612ce116565b336000908152602080526040902055601c5461133c908363ffffffff612ce116565b601c55601d54611352908363ffffffff612ce116565b601d5560075461137f9073ffffffffffffffffffffffffffffffffffffffff16338463ffffffff6131dd16565b3373ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5836040516113c5919061447a565b60405180910390a250506001600255565b60115473ffffffffffffffffffffffffffffffffffffffff16331480611413575060125473ffffffffffffffffffffffffffffffffffffffff1633145b611449576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b6011805473ffffffffffffffffffffffffffffffffffffffff9384167fffffffffffffffffffffffff00000000000000000000000000000000000000009182161790915560128054929093169116179055565b60226020526000908152604090205460ff1681565b60115473ffffffffffffffffffffffffffffffffffffffff163314806114ee575060125473ffffffffffffffffffffffffffffffffffffffff1633145b611524576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b600991909155600a55565b600b5481565b602354610100900460ff1681565b60028054141561157f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290614389565b60028055600854339042111561159c57611597612d62565b6115c4565b6000806115a76129e0565b600d829055600e81905590925090506115be61201a565b600c5550505b73ffffffffffffffffffffffffffffffffffffffff81161561163e576000806115ec8361072c565b73ffffffffffffffffffffffffffffffffffffffff85166000908152601a6020908152604080832094909455601b815283822092909255600d546018835283822055600e546019909252919091205550505b336000908152601a6020908152604080832054601b90925290912054811561177457336000818152601a60205260408082209190915560055490517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169163a9059cbb916116ca91908690600401613b4d565b602060405180830381600087803b1580156116e457600080fd5b505af11580156116f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061171c9190613a45565b5060055460405133917f8e0d3fa908fd7ee819155b3ce71e292b601bbeb0cd00d7758b9d226a523cb8279161176b91869173ffffffffffffffffffffffffffffffffffffffff90911690614483565b60405180910390a25b801561188e57336000818152601b60205260408082209190915560065490517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169163a9059cbb916117e491908590600401613b4d565b602060405180830381600087803b1580156117fe57600080fd5b505af1158015611812573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118369190613a45565b5060065460405133917f8e0d3fa908fd7ee819155b3ce71e292b601bbeb0cd00d7758b9d226a523cb8279161188591859173ffffffffffffffffffffffffffffffffffffffff90911690614483565b60405180910390a25b5050600160025550565b60105481565b6000806118e26118d26014546107ca6118c5620f4240601354612ce190919063ffffffff16565b879063ffffffff612c4416565b620f42409063ffffffff612d2316565b90506013548111156118f357506013545b92915050565b600280541415611935576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290614389565b6002805560085433904211156119525761194d612d62565b61197a565b60008061195d6129e0565b600d829055600e819055909250905061197461201a565b600c5550505b73ffffffffffffffffffffffffffffffffffffffff8116156119f4576000806119a28361072c565b73ffffffffffffffffffffffffffffffffffffffff85166000908152601a6020908152604080832094909455601b815283822092909255600d546018835283822055600e546019909252919091205550505b6119fc6138c2565b600060408201819052805b33600090815260216020526040902054811015611aca57336000908152602160205260409020805482908110611a3957fe5b906000526020600020906005020160000154851415611ac257336000908152602160205260409020805482908110611a6d57fe5b90600052602060002090600502016040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815250509250809150611aca565b600101611a07565b5081518414611b05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e2906141a7565b816060015142101580611b25575060235460ff6101009091041615156001145b611b5b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613e09565b60408201516080830151600090611b8290620f4240906107ca90859063ffffffff612c4416565b90508115611cd057336000908152601f6020526040902054611baa908363ffffffff612ce116565b336000908152601f602090815260408083209390935580522054611bd4908263ffffffff612ce116565b336000908152602080526040902055601c54611bf6908363ffffffff612ce116565b601c55601d54611c0c908263ffffffff612ce116565b601d55336000908152602160205260409020805484908110611c2a57fe5b60009182526020822060059091020181815560018101829055600281018290556003810182905560040155600754611c7f9073ffffffffffffffffffffffffffffffffffffffff16338463ffffffff6131dd16565b3373ffffffffffffffffffffffffffffffffffffffff167f1f70bda8ea2447de035db87c33fe8f03f7514d49c394293e5cffdb4c34352cf68388604051611cc79291906144a7565b60405180910390a25b5050600160025550505050565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b73ffffffffffffffffffffffffffffffffffffffff166000908152601f602052604090205490565b60045460ff1681565b60235460ff1681565b601b6020526000908152604090205481565b60115473ffffffffffffffffffffffffffffffffffffffff16331480611d82575060125473ffffffffffffffffffffffffffffffffffffffff1633145b611db8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b6001821015611df3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e29061414a565b6001811015611e2e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290614272565b601382905560178190556040517f687125c69e38f71137de9edade0dac562abc4f76d751bb1330f16c0ffd51fd5890611e6890839061447a565b60405180910390a17fa1676084a9eea08c6f205b60799323b364a1bd8e10aba89f0fbd94cfbf68b5dd601354604051611ea1919061447a565b60405180910390a15050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152601f6020908152604080832054601e9092528220546118f39163ffffffff612d2316565b60075473ffffffffffffffffffffffffffffffffffffffff1681565b60015473ffffffffffffffffffffffffffffffffffffffff163314611f5a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613d4f565b6000546001546040517fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c92611faa9273ffffffffffffffffffffffffffffffffffffffff91821692911690613b73565b60405180910390a160018054600080547fffffffffffffffffffffffff000000000000000000000000000000000000000090811673ffffffffffffffffffffffffffffffffffffffff841617909155169055565b60115473ffffffffffffffffffffffffffffffffffffffff1681565b600061202842600854613283565b905090565b73ffffffffffffffffffffffffffffffffffffffff166000908152601e602052604090205490565b60065473ffffffffffffffffffffffffffffffffffffffff1681565b60115473ffffffffffffffffffffffffffffffffffffffff163314806120ae575060125473ffffffffffffffffffffffffffffffffffffffff1633145b6120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b60075473ffffffffffffffffffffffffffffffffffffffff8381169116141561210c57600080fd5b6011546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481169263a9059cbb9261216692909116908590600401613b4d565b602060405180830381600087803b15801561218057600080fd5b505af1158015612194573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121b89190613a45565b507f8c1256b8896378cd5044f80c202f9772b9d77dc85c8a6eb51967210b09bfaa288282604051611ea1929190613b4d565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b60035481565b6000806122e76118d2620f42406107ca612234620f4240601754612ce190919063ffffffff16565b6110b7600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632eb9771b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561229f57600080fd5b505afa1580156122b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122d79190613a79565b620f42409063ffffffff612ce116565b91505090565b60115473ffffffffffffffffffffffffffffffffffffffff1633148061232a575060125473ffffffffffffffffffffffffffffffffffffffff1633145b612360576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b73ffffffffffffffffffffffffffffffffffffffff16600090815260226020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b60155481565b60135481565b600a5481565b600280541415612402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290614389565b6002805560045460ff1615612443576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e2906140ed565b3360085442111561245b57612456612d62565b612483565b6000806124666129e0565b600d829055600e819055909250905061247d61201a565b600c5550505b73ffffffffffffffffffffffffffffffffffffffff8116156124fd576000806124ab8361072c565b73ffffffffffffffffffffffffffffffffffffffff85166000908152601a6020908152604080832094909455601b815283822092909255600d546018835283822055600e546019909252919091205550505b60008211612537576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613e40565b3360009081526022602052604090205460ff1615612581576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613c95565b6007546125a69073ffffffffffffffffffffffffffffffffffffffff163330856130b0565b601c546125b9908363ffffffff612d2316565b601c55601d546125cf908363ffffffff612d2316565b601d55336000908152601e60205260409020546125f2908363ffffffff612d2316565b336000908152601e60209081526040808320939093558052205461261c908363ffffffff612d2316565b336000818152602080526040908190209290925590517f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d906113c590859061447a565b600e5481565b60115473ffffffffffffffffffffffffffffffffffffffff163314806126a2575060125473ffffffffffffffffffffffffffffffffffffffff1633145b6126d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b6001821015612713576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290614215565b600181101561274e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e29061441d565b6014829055601581905561276181613299565b8051612775916016916020909101906138f4565b507f0e3e3fae480c6f92291358a02bc83f04ee1971d5488596bffda7929d57ab470f6014546040516127a7919061447a565b60405180910390a17f0534d208d75dfdbfacc1204745dd9b3c4c37e8cfc05eb5e8e3ae538aedb0a9fa81604051611ea1919061447a565b73ffffffffffffffffffffffffffffffffffffffff166000908152601a6020908152604080832054601b909252909120549091565b600754604080517f313ce567000000000000000000000000000000000000000000000000000000008152905160009273ffffffffffffffffffffffffffffffffffffffff169163313ce567916004808301926020929190829003018186803b15801561287e57600080fd5b505afa158015612892573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b69190613ab2565b60ff16905090565b601a6020526000908152604090205481565b60055473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b60115473ffffffffffffffffffffffffffffffffffffffff1633148061292f575060125473ffffffffffffffffffffffffffffffffffffffff1633145b612965576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b6008541580612975575060085442115b6129ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613ccc565b600b8190556040517ffb46ca5a5e06d4540d6387b930a7c978bce0db5f449ec6b3f5d07c6e1d44f2d39061095b90839061447a565b600080601c54600014156129fb575050600d54600e546110dd565b612a51612a42601d546107ca620f42406107ca670de0b6b3a76400006110b7612a2261220c565b6110b76009546110b7600c54612a3661201a565b9063ffffffff612ce116565b600d549063ffffffff612d2316565b612a89612a7a601d546107ca670de0b6b3a76400006110b7600a546110b7600c54612a3661201a565b600e549063ffffffff612d2316565b915091506110dd565b60175481565b600f5481565b600d5481565b60125473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b60115473ffffffffffffffffffffffffffffffffffffffff16331480612b03575060125473ffffffffffffffffffffffffffffffffffffffff1633145b612b39576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b602380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff81166101009182900460ff1615909102179055565b60085481565b60115473ffffffffffffffffffffffffffffffffffffffff16331480612bb6575060125473ffffffffffffffffffffffffffffffffffffffff1633145b612bec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613f42565b602380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00811660ff90911615179055565b60196020526000908152604090205481565b600854421115612c4257612c42612d62565b565b600082612c53575060006118f3565b82820282848281612c6057fe5b0414612c98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290614090565b9392505050565b6000612c9883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506133c3565b6000612c9883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613414565b600082820183811015612c98576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613e77565b6008544211612d9d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613eae565b6000600b54612db760085442612ce190919063ffffffff16565b81612dbe57fe5b6005546040517f70a0823100000000000000000000000000000000000000000000000000000000815292909104925060009173ffffffffffffffffffffffffffffffffffffffff909116906370a0823190612e1d903090600401613b2c565b60206040518083038186803b158015612e3557600080fd5b505afa158015612e49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e6d9190613a79565b6006546040517f70a0823100000000000000000000000000000000000000000000000000000000815291925060009173ffffffffffffffffffffffffffffffffffffffff909116906370a0823190612ec9903090600401613b2c565b60206040518083038186803b158015612ee157600080fd5b505afa158015612ef5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f199190613a79565b905081612f35620f42406107ca866001016110b76110a261220c565b1115612f6d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613dac565b60235460ff1615612fcf5780612f97846001016110b7600b54600a54612c4490919063ffffffff16565b1115612fcf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e290613ee5565b600b54612ffa90612feb906110b786600163ffffffff612d2316565b6008549063ffffffff612d2316565b6008556000806130086129e0565b600d829055600e819055909250905061301f61201a565b600c556007546040517f6f2b3b3aaf1881d69a5d40565500f93ea73df36e7b6a29bf48b21479a9237fe99161306c9173ffffffffffffffffffffffffffffffffffffffff90911690613b2c565b60405180910390a15050505050565b60606130a8848484604051806020016040528060008152506040518060200160405280600081525061345a565b949350505050565b600060608573ffffffffffffffffffffffffffffffffffffffff166323b872dd8686866040516024016130e593929190613b9a565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516131339190613b10565b6000604051808303816000865af19150503d8060008114613170576040519150601f19603f3d011682016040523d82523d6000602084013e613175565b606091505b509150915081801561319f57508051158061319f57508080602001905181019061319f9190613a45565b6131d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e29061432c565b505050505050565b61327e8363a9059cbb60e01b84846040516024016131fc929190613b4d565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526136f7565b505050565b60008183106132925781612c98565b5090919050565b6060816132da575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152611088565b8160005b81156132f257600101600a820491506132de565b60608167ffffffffffffffff8111801561330b57600080fd5b506040519080825280601f01601f191660200182016040528015613336576020820181803683370190505b5090507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82015b85156133ba57600a860660300160f81b8282806001900393508151811061338057fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8604955061335d565b50949350505050565b600081836133fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e29190613c44565b50600083858161340a57fe5b0495945050505050565b60008184841115613452576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e29190613c44565b505050900390565b805182518451865188516060948a948a948a948a948a948a94919092019092019091010167ffffffffffffffff8111801561349457600080fd5b506040519080825280601f01601f1916602001820160405280156134bf576020820181803683370190505b509050806000805b8851811015613530578881815181106134dc57fe5b602001015160f81c60f81b8383806001019450815181106134f957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506001016134c7565b5060005b875181101561359d5787818151811061354957fe5b602001015160f81c60f81b83838060010194508151811061356657fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600101613534565b5060005b865181101561360a578681815181106135b657fe5b602001015160f81c60f81b8383806001019450815181106135d357fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506001016135a1565b5060005b85518110156136775785818151811061362357fe5b602001015160f81c60f81b83838060010194508151811061364057fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060010161360e565b5060005b84518110156136e45784818151811061369057fe5b602001015160f81c60f81b8383806001019450815181106136ad57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060010161367b565b50909d9c50505050505050505050505050565b6060613759826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166137ad9092919063ffffffff16565b80519091501561327e57808060200190518101906137779190613a45565b61327e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e2906142cf565b60606130a8848460008560606137c2856138bc565b6137f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e2906141de565b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040516138229190613b10565b60006040518083038185875af1925050503d806000811461385f576040519150601f19603f3d011682016040523d82523d6000602084013e613864565b606091505b509150915081156138785791506130a89050565b8051156138885780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e29190613c44565b3b151590565b6040518060a0016040528060008019168152602001600081526020016000815260200160008152602001600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061393557805160ff1916838001178555613962565b82800160010185558215613962579182015b82811115613962578251825591602001919060010190613947565b5061396e929150613972565b5090565b61087c91905b8082111561396e5760008155600101613978565b803573ffffffffffffffffffffffffffffffffffffffff811681146118f357600080fd5b6000602082840312156139c1578081fd5b612c98838361398c565b600080604083850312156139dd578081fd5b6139e7848461398c565b91506139f6846020850161398c565b90509250929050565b60008060408385031215613a11578182fd5b613a1b848461398c565b946020939093013593505050565b600060208284031215613a3a578081fd5b8135612c98816144e5565b600060208284031215613a56578081fd5b8151612c98816144e5565b600060208284031215613a72578081fd5b5035919050565b600060208284031215613a8a578081fd5b5051919050565b60008060408385031215613aa3578182fd5b50508035926020909101359150565b600060208284031215613ac3578081fd5b815160ff81168114612c98578182fd5b60609390931b7fffffffffffffffffffffffffffffffffffffffff0000000000000000000000001683526014830191909152603482015260540190565b60008251613b228184602087016144b5565b9190910192915050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff92831681529116602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff9384168152919092166020820152604081019190915260600190565b602080825282518282018190526000919060409081850190868401855b82811015613c2c5781518051855286810151878601528581015186860152606080820151908601526080908101519085015260a09093019290850190600101613be8565b5091979650505050505050565b901515815260200190565b6000602082528251806020840152613c638160408501602087016144b5565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b6020808252601b908201527f6164647265737320686173206265656e20677265796c69737465640000000000604082015260600190565b60208082526058908201527f50726576696f7573207265776172647320706572696f64206d7573742062652060408201527f636f6d706c657465206265666f7265206368616e67696e67207468652064757260608201527f6174696f6e20666f7220746865206e657720706572696f640000000000000000608082015260a00190565b60208082526035908201527f596f75206d757374206265206e6f6d696e61746564206265666f726520796f7560408201527f2063616e20616363657074206f776e6572736869700000000000000000000000606082015260800190565b60208082526025908201527f4e6f7420656e6f7567682046585320617661696c61626c6520666f722072657760408201527f6172647321000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526016908201527f5374616b65206973207374696c6c206c6f636b65642100000000000000000000604082015260600190565b6020808252600e908201527f43616e6e6f74207374616b652030000000000000000000000000000000000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601b908201527f506572696f6420686173206e6f74206578706972656420796574210000000000604082015260600190565b60208082526028908201527f4e6f7420656e6f75676820746f6b656e3120617661696c61626c6520666f722060408201527f7265776172647321000000000000000000000000000000000000000000000000606082015260800190565b60208082526030908201527f596f7520617265206e6f7420746865206f776e6572206f722074686520676f7660408201527f65726e616e63652074696d656c6f636b00000000000000000000000000000000606082015260800190565b60208082526024908201527f596f752061726520747279696e6720746f207374616b6520666f7220746f6f2060408201527f6c6f6e6700000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602f908201527f4f6e6c792074686520636f6e7472616374206f776e6572206d6179207065726660408201527f6f726d207468697320616374696f6e0000000000000000000000000000000000606082015260800190565b60208082526011908201527f43616e6e6f742077697468647261772030000000000000000000000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252603c908201527f5468697320616374696f6e2063616e6e6f7420626520706572666f726d65642060408201527f7768696c652074686520636f6e74726163742069732070617573656400000000606082015260800190565b6020808252602d908201527f4d756c7469706c696572206d7573742062652067726561746572207468616e2060408201527f6f7220657175616c20746f203100000000000000000000000000000000000000606082015260800190565b6020808252600f908201527f5374616b65206e6f7420666f756e640000000000000000000000000000000000604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526036908201527f4d756c7469706c696572204d61782054696d65206d757374206265206772656160408201527f746572207468616e206f7220657175616c20746f203100000000000000000000606082015260800190565b6020808252602f908201527f4d617820435220426f6f7374206d75737420626520677265617465722074686160408201527f6e206f7220657175616c20746f20310000000000000000000000000000000000606082015260800190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60408201527f6f74207375636365656400000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f5472616e7366657248656c7065723a205452414e534645525f46524f4d5f464160408201527f494c454400000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526021908201527f43616e6e6f74207761697420666f722061206e65676174697665206e756d626560408201527f7200000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526036908201527f4d756c7469706c696572204d696e2054696d65206d757374206265206772656160408201527f746572207468616e206f7220657175616c20746f203100000000000000000000606082015260800190565b90815260200190565b91825273ffffffffffffffffffffffffffffffffffffffff16602082015260400190565b918252602082015260400190565b60005b838110156144d05781810151838201526020016144b8565b838111156144df576000848401525b50505050565b8015158114610af957600080fdfea26469706673582212202ef191200ffbd3cddad0624c7a79e7485fabbc2d033e3f95381b94bfa687079064736f6c634300060b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ff5b4bcbf765fe363269114e1c765229a29edefd0000000000000000000000003432b6a60d23ca0dfca7761b7ab56459d9c964d00000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe200000000000000000000000061eb53ee427ab4e007d78a9134aacb3101a2dc23000000000000000000000000853d955acef822db058eb8505911ed77f175b99e0000000000000000000000008412ebf45bac1b340bbe8f318b928c466c4e39ca00000000000000000000000000000000000000000000000000000000000f424000000000000000000000000000000000000000000000000000000000000f4240
-----Decoded View---------------
Arg [0] : _owner (address): 0xfF5B4BCbf765FE363269114e1c765229a29eDeFD
Arg [1] : _rewardsToken0 (address): 0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0
Arg [2] : _rewardsToken1 (address): 0x6B3595068778DD592e39A122f4f5a5cF09C90fE2
Arg [3] : _stakingToken (address): 0x61eB53ee427aB4E007d78A9134AaCb3101A2DC23
Arg [4] : _frax_address (address): 0x853d955aCEf822Db058eb8505911ED77F175b99e
Arg [5] : _timelock_address (address): 0x8412ebf45bAC1B340BbE8F318b928C466c4E39CA
Arg [6] : _pool_weight0 (uint256): 1000000
Arg [7] : _pool_weight1 (uint256): 1000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000ff5b4bcbf765fe363269114e1c765229a29edefd
Arg [1] : 0000000000000000000000003432b6a60d23ca0dfca7761b7ab56459d9c964d0
Arg [2] : 0000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe2
Arg [3] : 00000000000000000000000061eb53ee427ab4e007d78a9134aacb3101a2dc23
Arg [4] : 000000000000000000000000853d955acef822db058eb8505911ed77f175b99e
Arg [5] : 0000000000000000000000008412ebf45bac1b340bbe8f318b928c466c4e39ca
Arg [6] : 00000000000000000000000000000000000000000000000000000000000f4240
Arg [7] : 00000000000000000000000000000000000000000000000000000000000f4240
Loading...
Loading
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.