Source Code
Latest 25 from a total of 82 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Panic | 120064251 | 576 days ago | IN | 0 ETH | 0.000003263121 | ||||
| Harvest | 120052165 | 576 days ago | IN | 0 ETH | 0.000034664001 | ||||
| Harvest | 120007152 | 577 days ago | IN | 0 ETH | 0.000079786616 | ||||
| Harvest | 119962152 | 578 days ago | IN | 0 ETH | 0.000068024254 | ||||
| Harvest | 119917160 | 579 days ago | IN | 0 ETH | 0.000069816738 | ||||
| Harvest | 119252956 | 595 days ago | IN | 0 ETH | 0.000074976228 | ||||
| Harvest | 119207961 | 596 days ago | IN | 0 ETH | 0.000075832603 | ||||
| Harvest | 119162929 | 597 days ago | IN | 0 ETH | 0.000070314726 | ||||
| Harvest | 119117926 | 598 days ago | IN | 0 ETH | 0.000080786784 | ||||
| Harvest | 119029745 | 600 days ago | IN | 0 ETH | 0.000008716333 | ||||
| Harvest | 118984742 | 601 days ago | IN | 0 ETH | 0.000022340522 | ||||
| Harvest | 118939738 | 602 days ago | IN | 0 ETH | 0.000079730341 | ||||
| Harvest | 118878544 | 603 days ago | IN | 0 ETH | 0.000079663092 | ||||
| Harvest | 118801141 | 605 days ago | IN | 0 ETH | 0.00006989853 | ||||
| Harvest | 118720123 | 607 days ago | IN | 0 ETH | 0.001214695269 | ||||
| Harvest | 118666133 | 608 days ago | IN | 0 ETH | 0.000085568185 | ||||
| Harvest | 118534739 | 611 days ago | IN | 0 ETH | 0.000076110606 | ||||
| Harvest | 118417717 | 614 days ago | IN | 0 ETH | 0.000009424448 | ||||
| Harvest | 118331336 | 616 days ago | IN | 0 ETH | 0.000076427328 | ||||
| Harvest | 118286321 | 617 days ago | IN | 0 ETH | 0.00006860545 | ||||
| Harvest | 118241325 | 618 days ago | IN | 0 ETH | 0.000082201259 | ||||
| Harvest | 117917333 | 625 days ago | IN | 0 ETH | 0.000038765172 | ||||
| Harvest | 117872333 | 627 days ago | IN | 0 ETH | 0.000009575831 | ||||
| Harvest | 117829120 | 628 days ago | IN | 0 ETH | 0.000007520592 | ||||
| Harvest | 117766147 | 629 days ago | IN | 0 ETH | 0.000007681221 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Cross-Chain Transactions
Loading...
Loading
Contract Name:
StrategySonne
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin-4/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin-4/contracts/token/ERC20/utils/SafeERC20.sol";
import "../../interfaces/common/IComptroller.sol";
import "../../interfaces/common/IVToken.sol";
import "../../interfaces/common/ISolidlyRouter.sol";
import "../Common/StratFeeManagerInitializable.sol";
contract StrategySonne is StratFeeManagerInitializable {
using SafeERC20 for IERC20;
// Tokens used
address public native;
address public output;
address public want;
address public iToken;
address[] public rewards;
// Third party contracts
address public comptroller;
address[] public markets;
// Routes
ISolidlyRouter.Route[] public outputToNativeRoute;
ISolidlyRouter.Route[] public outputToWantRoute;
mapping(address => ISolidlyRouter.Route[]) public rewardToOutputRoutes;
bool public harvestOnDeposit;
uint256 public lastHarvest;
uint256 public balanceOfPool;
event StratHarvest(address indexed harvester, uint256 wantHarvested, uint256 tvl);
event Deposit(uint256 tvl);
event Withdraw(uint256 tvl);
event ChargedFees(uint256 callFees, uint256 beefyFees, uint256 strategistFees);
function initialize(
address _market,
ISolidlyRouter.Route[] calldata _outputToNativeRoute,
ISolidlyRouter.Route[] calldata _outputToWantRoute,
CommonAddresses calldata _commonAddresses
) external initializer {
__StratFeeManager_init(_commonAddresses);
iToken = _market;
markets.push(_market);
comptroller = IVToken(_market).comptroller();
want = IVToken(_market).underlying();
for (uint i; i < _outputToNativeRoute.length;) {
outputToNativeRoute.push(_outputToNativeRoute[i]);
unchecked { ++i; }
}
for (uint i; i < _outputToWantRoute.length;) {
outputToWantRoute.push(_outputToWantRoute[i]);
unchecked { ++i; }
}
output = outputToNativeRoute[0].from;
native = outputToNativeRoute[outputToNativeRoute.length -1].to;
_giveAllowances();
IComptroller(comptroller).enterMarkets(markets);
}
// puts the funds to work
function deposit() public whenNotPaused {
uint256 wantBal = balanceOfWant();
if (wantBal > 0) {
IVToken(iToken).mint(wantBal);
_updateBalance();
emit Deposit(balanceOf());
}
}
function withdraw(uint256 _amount) external {
require(msg.sender == vault, "!vault");
uint256 wantBal = balanceOfWant();
if (wantBal < _amount) {
uint err = IVToken(iToken).redeemUnderlying(_amount - wantBal);
require(err == 0, "Error while trying to redeem");
_updateBalance();
wantBal = IERC20(want).balanceOf(address(this));
}
if (wantBal > _amount) {
wantBal = _amount;
}
if (tx.origin != owner() && !paused()) {
uint256 withdrawalFeeAmount = wantBal * withdrawalFee / WITHDRAWAL_MAX;
wantBal = wantBal - withdrawalFeeAmount;
}
IERC20(want).safeTransfer(vault, wantBal);
emit Withdraw(balanceOf());
}
function beforeDeposit() external override {
if (harvestOnDeposit) {
require(msg.sender == vault, "!vault");
_harvest(tx.origin);
}
_updateBalance();
}
function harvest() external virtual {
_harvest(tx.origin);
}
function harvest(address callFeeRecipient) external virtual {
_harvest(callFeeRecipient);
}
function managerHarvest() external onlyManager {
_harvest(tx.origin);
}
// compounds earnings and charges performance fee
function _harvest(address callFeeRecipient) internal whenNotPaused {
uint256 beforeBal = balanceOfWant();
IComptroller(comptroller).claimComp(address(this), markets);
_swapExtraRewards();
uint256 outputBal = IERC20(output).balanceOf(address(this));
if (outputBal > 0) {
chargeFees(callFeeRecipient);
_swapRewards();
uint256 wantHarvested = balanceOfWant() - beforeBal;
deposit();
lastHarvest = block.timestamp;
emit StratHarvest(msg.sender, wantHarvested, balanceOf());
}
}
// performance fees
function chargeFees(address callFeeRecipient) internal {
IFeeConfig.FeeCategory memory fees = getFees();
uint256 toNative = IERC20(output).balanceOf(address(this)) * fees.total / DIVISOR;
ISolidlyRouter(unirouter).swapExactTokensForTokens(toNative, 0, outputToNativeRoute, address(this), block.timestamp);
uint256 nativeBal = IERC20(native).balanceOf(address(this));
uint256 callFeeAmount = nativeBal * fees.call / DIVISOR;
IERC20(native).safeTransfer(callFeeRecipient, callFeeAmount);
uint256 beefyFeeAmount = nativeBal * fees.beefy / DIVISOR;
IERC20(native).safeTransfer(beefyFeeRecipient, beefyFeeAmount);
uint256 strategistFeeAmount = nativeBal * fees.strategist / DIVISOR;
IERC20(native).safeTransfer(strategist, strategistFeeAmount);
emit ChargedFees(callFeeAmount, beefyFeeAmount, strategistFeeAmount);
}
function _swapExtraRewards() internal {
for (uint i; i < rewards.length; ++i) {
address reward = rewards[i];
uint256 rewardBal = IERC20(reward).balanceOf(address(this));
ISolidlyRouter(unirouter).swapExactTokensForTokens(rewardBal, 0, rewardToOutputRoutes[reward], address(this), block.timestamp);
}
}
function _swapRewards() internal {
uint256 outputBal = IERC20(output).balanceOf(address(this));
ISolidlyRouter(unirouter).swapExactTokensForTokens(outputBal, 0, outputToWantRoute, address(this), block.timestamp);
}
function _updateBalance() internal {
balanceOfPool = IVToken(iToken).balanceOfUnderlying(address(this));
}
// calculate the total underlaying 'want' held by the strat.
function balanceOf() public view returns (uint256) {
return balanceOfWant() + balanceOfPool;
}
// it calculates how much 'want' this contract holds.
function balanceOfWant() public view returns (uint256) {
return IERC20(want).balanceOf(address(this));
}
// returns rewards unharvested
function rewardsAvailable() public returns (uint256) {
IComptroller(comptroller).claimComp(address(this), markets);
return IERC20(output).balanceOf(address(this));
}
// native reward amount for calling harvest
function callReward() public returns (uint256) {
IFeeConfig.FeeCategory memory fees = getFees();
uint256 outputBal = rewardsAvailable();
uint256 nativeOut;
if (outputBal > 0) {
(nativeOut,) = ISolidlyRouter(unirouter).getAmountOut(outputBal, output, native);
}
return nativeOut * fees.total / DIVISOR * fees.call / DIVISOR;
}
function setHarvestOnDeposit(bool _harvestOnDeposit) external onlyManager {
harvestOnDeposit = _harvestOnDeposit;
if (harvestOnDeposit) {
super.setWithdrawalFee(0);
} else {
super.setWithdrawalFee(10);
}
}
// called as part of strat migration. Sends all the available funds back to the vault.
function retireStrat() external {
require(msg.sender == vault, "!vault");
uint err = IVToken(iToken).redeem(IERC20(iToken).balanceOf(address(this)));
require(err == 0, "Error while trying to redeem");
_updateBalance();
uint256 wantBal = IERC20(want).balanceOf(address(this));
IERC20(want).transfer(vault, wantBal);
}
// pauses deposits and withdraws all funds from third party systems.
function panic() public onlyManager {
uint err = IVToken(iToken).redeem(IERC20(iToken).balanceOf(address(this)));
require(err == 0, "Error while trying to redeem");
_updateBalance();
pause();
}
function pause() public onlyManager {
_pause();
_removeAllowances();
}
function unpause() external onlyManager {
_unpause();
_giveAllowances();
deposit();
}
function _giveAllowances() internal {
IERC20(want).safeApprove(iToken, type(uint256).max);
IERC20(output).safeApprove(unirouter, type(uint256).max);
for (uint i; i < rewards.length; ++i) {
IERC20(rewards[i]).safeApprove(unirouter, type(uint256).max);
}
}
function _removeAllowances() internal {
IERC20(want).safeApprove(iToken, 0);
IERC20(output).safeApprove(unirouter, 0);
for (uint i; i < rewards.length; ++i) {
IERC20(rewards[i]).safeApprove(unirouter, 0);
}
}
function setRewards(ISolidlyRouter.Route[] calldata _rewardToOutputRoute) external onlyOwner {
address _reward = _rewardToOutputRoute[0].from;
address _output = _rewardToOutputRoute[_rewardToOutputRoute.length - 1].to;
require(_reward != want, "reward==want");
require(_reward != iToken, "reward==iToken");
require(_output != output, "reward==output");
rewards.push(_reward);
for (uint i; i < _rewardToOutputRoute.length; ++i) {
rewardToOutputRoutes[_reward].push(_rewardToOutputRoute[i]);
}
IERC20(_reward).safeApprove(unirouter, type(uint256).max);
}
function resetRewards() external onlyManager {
for (uint i; i < rewards.length; ++i) {
address reward = rewards[i];
IERC20(reward).safeApprove(unirouter, 0);
delete rewardToOutputRoutes[reward];
}
delete rewards;
}
function _solidlyToRoute(ISolidlyRouter.Route[] memory _route) internal pure returns (address[] memory) {
address[] memory route = new address[](_route.length + 1);
route[0] = _route[0].from;
for (uint i; i < _route.length; ++i) {
route[i + 1] = _route[i].to;
}
return route;
}
function outputToNative() external view returns (address[] memory) {
ISolidlyRouter.Route[] memory _route = outputToNativeRoute;
return _solidlyToRoute(_route);
}
function outputToWant() external view returns (address[] memory) {
ISolidlyRouter.Route[] memory _route = outputToWantRoute;
return _solidlyToRoute(_route);
}
function rewardToOutput(uint _id) external view returns (address[] memory) {
address reward = rewards[_id];
ISolidlyRouter.Route[] memory _route = rewardToOutputRoutes[reward];
return _solidlyToRoute(_route);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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 {ERC20PresetMinterPauser}.
*
* 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 Contracts guidelines: functions revert
* instead 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, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override 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 this function is
* overridden;
*
* 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 virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, 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}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, 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}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
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) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + 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) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This 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:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
}
_balances[to] += amount;
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, 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:
*
* - `account` 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 += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This 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 Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @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 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:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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);
/**
* @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 `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, 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 `from` to `to` 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 from,
address to,
uint256 amount
) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.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 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'
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) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @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
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @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
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 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");
(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");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with 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.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal onlyInitializing {
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal onlyInitializing {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
import "../../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```solidity
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
*
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts.
*
* Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
* constructor.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* A reinitializer may be used after the original initialization step. This is essential to configure modules that
* are added through upgrades and that require initialization.
*
* When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
* cannot be nested. If one is invoked in the context of another, execution will revert.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*
* WARNING: setting the version to 255 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*
* Emits an {Initialized} event the first time it is successfully executed.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized != type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint8) {
return _initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _initializing;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract PausableUpgradeable is Initializable, ContextUpgradeable {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
function __Pausable_init() internal onlyInitializing {
__Pausable_init_unchained();
}
function __Pausable_init_unchained() internal onlyInitializing {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @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
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 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://consensys.net/diligence/blog/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.8.0/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");
(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 functionCallWithValue(target, data, 0, "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");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// 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
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";
/**
* @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 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.
*/
abstract contract ContextUpgradeable is Initializable {
function __Context_init() internal onlyInitializing {
}
function __Context_init_unchained() internal onlyInitializing {
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IComptroller {
function claimComp(address holder, address[] calldata _iTokens) external;
function claimComp(address holder) external;
function compAccrued(address holder) view external returns (uint256 comp);
function enterMarkets(address[] memory _iTokens) external;
function pendingComptrollerImplementation() view external returns (address implementation);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IFeeConfig {
struct FeeCategory {
uint256 total;
uint256 beefy;
uint256 call;
uint256 strategist;
string label;
bool active;
}
struct AllFees {
FeeCategory performance;
uint256 deposit;
uint256 withdraw;
}
function getFees(address strategy) external view returns (FeeCategory memory);
function stratFeeId(address strategy) external view returns (uint256);
function setStratFeeId(uint256 feeId) external;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.9.0;
pragma experimental ABIEncoderV2;
interface ISolidlyRouter {
// Routes
struct Routes {
address from;
address to;
bool stable;
}
struct Route {
address from;
address to;
bool stable;
address factory;
}
function addLiquidity(
address tokenA,
address tokenB,
bool stable,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
bool stable,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
function removeLiquidity(
address tokenA,
address tokenB,
bool stable,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
bool stable,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokensSimple(
uint amountIn,
uint amountOutMin,
address tokenFrom,
address tokenTo,
bool stable,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
Routes[] memory route,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
Route[] memory route,
address to,
uint deadline
) external returns (uint[] memory amounts);
function getAmountOut(uint amountIn, address tokenIn, address tokenOut) external view returns (uint amount, bool stable);
function getAmountsOut(uint amountIn, Routes[] memory routes) external view returns (uint[] memory amounts);
function getAmountsOut(uint amountIn, Route[] memory routes) external view returns (uint[] memory amounts);
function quoteAddLiquidity(
address tokenA,
address tokenB,
bool stable,
uint amountADesired,
uint amountBDesired
) external view returns (uint amountA, uint amountB, uint liquidity);
function quoteAddLiquidity(
address tokenA,
address tokenB,
bool stable,
address _factory,
uint amountADesired,
uint amountBDesired
) external view returns (uint amountA, uint amountB, uint liquidity);
function defaultFactory() external view returns (address);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin-4/contracts/token/ERC20/ERC20.sol";
interface IVToken is IERC20 {
function underlying() external returns (address);
function mint(uint mintAmount) external returns (uint);
function redeem(uint redeemTokens) external returns (uint);
function redeemUnderlying(uint redeemAmount) external returns (uint);
function borrow(uint borrowAmount) external returns (uint);
function repayBorrow(uint repayAmount) external returns (uint);
function balanceOfUnderlying(address owner) external returns (uint);
function borrowBalanceCurrent(address account) external returns (uint);
function comptroller() external returns (address);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol";
import "../../interfaces/common/IFeeConfig.sol";
contract StratFeeManagerInitializable is OwnableUpgradeable, PausableUpgradeable {
struct CommonAddresses {
address vault;
address unirouter;
address keeper;
address strategist;
address beefyFeeRecipient;
address beefyFeeConfig;
}
// common addresses for the strategy
address public vault;
address public unirouter;
address public keeper;
address public strategist;
address public beefyFeeRecipient;
IFeeConfig public beefyFeeConfig;
uint256 constant DIVISOR = 1 ether;
uint256 constant public WITHDRAWAL_FEE_CAP = 50;
uint256 constant public WITHDRAWAL_MAX = 10000;
uint256 internal withdrawalFee;
event SetStratFeeId(uint256 feeId);
event SetWithdrawalFee(uint256 withdrawalFee);
event SetVault(address vault);
event SetUnirouter(address unirouter);
event SetKeeper(address keeper);
event SetStrategist(address strategist);
event SetBeefyFeeRecipient(address beefyFeeRecipient);
event SetBeefyFeeConfig(address beefyFeeConfig);
function __StratFeeManager_init(CommonAddresses calldata _commonAddresses) internal onlyInitializing {
__Ownable_init();
__Pausable_init();
vault = _commonAddresses.vault;
unirouter = _commonAddresses.unirouter;
keeper = _commonAddresses.keeper;
strategist = _commonAddresses.strategist;
beefyFeeRecipient = _commonAddresses.beefyFeeRecipient;
beefyFeeConfig = IFeeConfig(_commonAddresses.beefyFeeConfig);
withdrawalFee = 10;
}
// checks that caller is either owner or keeper.
modifier onlyManager() {
_checkManager();
_;
}
function _checkManager() internal view {
require(msg.sender == owner() || msg.sender == keeper, "!manager");
}
// fetch fees from config contract
function getFees() internal view returns (IFeeConfig.FeeCategory memory) {
return beefyFeeConfig.getFees(address(this));
}
// fetch fees from config contract and dynamic deposit/withdraw fees
function getAllFees() external view returns (IFeeConfig.AllFees memory) {
return IFeeConfig.AllFees(getFees(), depositFee(), withdrawFee());
}
function getStratFeeId() external view returns (uint256) {
return beefyFeeConfig.stratFeeId(address(this));
}
function setStratFeeId(uint256 _feeId) external onlyManager {
beefyFeeConfig.setStratFeeId(_feeId);
emit SetStratFeeId(_feeId);
}
// adjust withdrawal fee
function setWithdrawalFee(uint256 _fee) public onlyManager {
require(_fee <= WITHDRAWAL_FEE_CAP, "!cap");
withdrawalFee = _fee;
emit SetWithdrawalFee(_fee);
}
// set new vault (only for strategy upgrades)
function setVault(address _vault) external onlyOwner {
vault = _vault;
emit SetVault(_vault);
}
// set new unirouter
function setUnirouter(address _unirouter) external onlyOwner {
unirouter = _unirouter;
emit SetUnirouter(_unirouter);
}
// set new keeper to manage strat
function setKeeper(address _keeper) external onlyManager {
keeper = _keeper;
emit SetKeeper(_keeper);
}
// set new strategist address to receive strat fees
function setStrategist(address _strategist) external {
require(msg.sender == strategist, "!strategist");
strategist = _strategist;
emit SetStrategist(_strategist);
}
// set new beefy fee address to receive beefy fees
function setBeefyFeeRecipient(address _beefyFeeRecipient) external onlyOwner {
beefyFeeRecipient = _beefyFeeRecipient;
emit SetBeefyFeeRecipient(_beefyFeeRecipient);
}
// set new fee config address to fetch fees
function setBeefyFeeConfig(address _beefyFeeConfig) external onlyOwner {
beefyFeeConfig = IFeeConfig(_beefyFeeConfig);
emit SetBeefyFeeConfig(_beefyFeeConfig);
}
function depositFee() public virtual view returns (uint256) {
return 0;
}
function withdrawFee() public virtual view returns (uint256) {
return paused() ? 0 : withdrawalFee;
}
function beforeDeposit() external virtual {}
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"callFees","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"beefyFees","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"strategistFees","type":"uint256"}],"name":"ChargedFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"beefyFeeConfig","type":"address"}],"name":"SetBeefyFeeConfig","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"beefyFeeRecipient","type":"address"}],"name":"SetBeefyFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"keeper","type":"address"}],"name":"SetKeeper","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feeId","type":"uint256"}],"name":"SetStratFeeId","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"strategist","type":"address"}],"name":"SetStrategist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"unirouter","type":"address"}],"name":"SetUnirouter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"vault","type":"address"}],"name":"SetVault","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"withdrawalFee","type":"uint256"}],"name":"SetWithdrawalFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"harvester","type":"address"},{"indexed":false,"internalType":"uint256","name":"wantHarvested","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"StratHarvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tvl","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"WITHDRAWAL_FEE_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WITHDRAWAL_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceOfWant","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFeeConfig","outputs":[{"internalType":"contract IFeeConfig","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beefyFeeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beforeDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"callReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"comptroller","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllFees","outputs":[{"components":[{"components":[{"internalType":"uint256","name":"total","type":"uint256"},{"internalType":"uint256","name":"beefy","type":"uint256"},{"internalType":"uint256","name":"call","type":"uint256"},{"internalType":"uint256","name":"strategist","type":"uint256"},{"internalType":"string","name":"label","type":"string"},{"internalType":"bool","name":"active","type":"bool"}],"internalType":"struct IFeeConfig.FeeCategory","name":"performance","type":"tuple"},{"internalType":"uint256","name":"deposit","type":"uint256"},{"internalType":"uint256","name":"withdraw","type":"uint256"}],"internalType":"struct IFeeConfig.AllFees","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStratFeeId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"callFeeRecipient","type":"address"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvestOnDeposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"iToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_market","type":"address"},{"components":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"stable","type":"bool"},{"internalType":"address","name":"factory","type":"address"}],"internalType":"struct ISolidlyRouter.Route[]","name":"_outputToNativeRoute","type":"tuple[]"},{"components":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"stable","type":"bool"},{"internalType":"address","name":"factory","type":"address"}],"internalType":"struct ISolidlyRouter.Route[]","name":"_outputToWantRoute","type":"tuple[]"},{"components":[{"internalType":"address","name":"vault","type":"address"},{"internalType":"address","name":"unirouter","type":"address"},{"internalType":"address","name":"keeper","type":"address"},{"internalType":"address","name":"strategist","type":"address"},{"internalType":"address","name":"beefyFeeRecipient","type":"address"},{"internalType":"address","name":"beefyFeeConfig","type":"address"}],"internalType":"struct StratFeeManagerInitializable.CommonAddresses","name":"_commonAddresses","type":"tuple"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"keeper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastHarvest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"managerHarvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"markets","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"native","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"output","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputToNative","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToNativeRoute","outputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"stable","type":"bool"},{"internalType":"address","name":"factory","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"outputToWant","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"outputToWantRoute","outputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"stable","type":"bool"},{"internalType":"address","name":"factory","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"panic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retireStrat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"rewardToOutput","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardToOutputRoutes","outputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"stable","type":"bool"},{"internalType":"address","name":"factory","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewards","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_beefyFeeConfig","type":"address"}],"name":"setBeefyFeeConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_beefyFeeRecipient","type":"address"}],"name":"setBeefyFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_harvestOnDeposit","type":"bool"}],"name":"setHarvestOnDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_keeper","type":"address"}],"name":"setKeeper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"stable","type":"bool"},{"internalType":"address","name":"factory","type":"address"}],"internalType":"struct ISolidlyRouter.Route[]","name":"_rewardToOutputRoute","type":"tuple[]"}],"name":"setRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeId","type":"uint256"}],"name":"setStratFeeId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_strategist","type":"address"}],"name":"setStrategist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_unirouter","type":"address"}],"name":"setUnirouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setWithdrawalFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strategist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unirouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"want","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b50613a28806100206000396000f3fe608060405234801561001057600080fd5b506004361061038e5760003560e01c80638cfc0250116101de578063c7b9d5301161010f578063e7a7250a116100ad578063f2fde38b1161007c578063f2fde38b14610710578063f301af4214610723578063fb61778714610736578063fbfa77cf1461073e57600080fd5b8063e7a7250a146106e4578063e941fa78146106ec578063f1a392da146106f4578063f20eaeb8146106fd57600080fd5b8063d801d946116100e9578063d801d946146106ae578063d92f3d73146106b6578063dd93d6b3146106c9578063dfbdc437146106dc57600080fd5b8063c7b9d5301461068b578063cc7cb29b1461069e578063d0e30db0146106a657600080fd5b8063aced16611161017c578063b1fff06e11610156578063b1fff06e14610615578063b20feaaf1461065b578063be12a97814610670578063c1a3d44c1461068357600080fd5b8063aced1661146105e7578063ad29f5da146105fa578063b1283e771461060257600080fd5b806391079d7b116101b857806391079d7b146105a657806397fd323d146105b9578063a68833e5146105c1578063ac1e5025146105d457600080fd5b80638cfc02501461057a5780638da5cb5b146105825780638e1454591461059357600080fd5b80634641257d116102c35780635fe3b56711610261578063722713f711610230578063722713f71461054a578063748747e6146105525780638456cb59146105655780638912cb8b1461056d57600080fd5b80635fe3b5671461051557806367a52793146105285780636817031b1461052f578063715018a61461054257600080fd5b806352ba39f41161029d57806352ba39f4146104da57806354518b1a146104ed578063573fef0a146104f65780635c975abb146104fe57600080fd5b80634641257d146104b75780634700d305146104bf5780634746fb55146104c757600080fd5b80631f1fcd51116103305780632e1a7d4d1161030a5780632e1a7d4d146104765780633e55f932146104895780633f4ba83a1461049c578063408cfe24146104a457600080fd5b80631f1fcd511461043d5780631fe4a68614610450578063257ae0de1461046357600080fd5b8063115880861161036c57806311588086146103ce57806311b0b42d146103ea57806313e120b11461041557806315ed63421461042a57600080fd5b80630e5c011e146103935780630e8fbb5a146103a8578063106fdbd0146103bb575b600080fd5b6103a66103a1366004613145565b610751565b005b6103a66103b6366004613170565b61075d565b6103a66103c9366004613145565b610792565b6103d760aa5481565b6040519081526020015b60405180910390f35b609e546103fd906001600160a01b031681565b6040516001600160a01b0390911681526020016103e1565b61041d6107ef565b6040516103e1919061318d565b61041d6104383660046131da565b610896565b60a0546103fd906001600160a01b031681565b609a546103fd906001600160a01b031681565b6098546103fd906001600160a01b031681565b6103a66104843660046131da565b610971565b6103a66104973660046131da565b610b85565b6103a6610c1c565b60a1546103fd906001600160a01b031681565b6103a6610c3e565b6103a6610c47565b609c546103fd906001600160a01b031681565b6103a66104e836600461323f565b610d55565b6103d761271081565b6103a6610f8f565b60655460ff165b60405190151581526020016103e1565b60a3546103fd906001600160a01b031681565b60006103d7565b6103a661053d366004613145565b610fd5565b6103a661102b565b6103d761103d565b6103a6610560366004613145565b611059565b6103a66110af565b60a8546105059060ff1681565b6103d76110c7565b6033546001600160a01b03166103fd565b609b546103fd906001600160a01b031681565b6103a66105b4366004613281565b611135565b6103d7611566565b6103a66105cf366004613145565b611659565b6103a66105e23660046131da565b6116af565b6099546103fd906001600160a01b031681565b6103a6611726565b6103fd6106103660046131da565b6117b9565b61062861062336600461331f565b6117e3565b604080516001600160a01b03958616815293851660208501529115159183019190915290911660608201526080016103e1565b61066361183e565b6040516103e1919061339b565b61062861067e3660046131da565b611874565b6103d76118c1565b6103a6610699366004613145565b6118f2565b61041d611988565b6103a6611a19565b6103a6611ae2565b6103a66106c4366004613145565b611aea565b6106286106d73660046131da565b611b40565b6103d7603281565b6103d7611b50565b6103d7611be5565b6103d760a95481565b609f546103fd906001600160a01b031681565b6103a661071e366004613145565b611c04565b6103fd6107313660046131da565b611c7a565b6103a6611c8a565b6097546103fd906001600160a01b031681565b61075a81611e9f565b50565b610765612010565b60a8805460ff191682151590811790915560ff16156107885761075a60006116af565b61075a600a6116af565b61079a61206a565b609c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f91e28ce4210d103c13c5174847e463b836900f8dc63e9d9b42a4255169d19529906020015b60405180910390a150565b6060600060a5805480602002602001604051908101604052809291908181526020016000905b82821015610881576000848152602090819020604080516080810182526003860290920180546001600160a01b03908116845260018083015480831686880152600160a01b900460ff161515938501939093526002909101541660608301529083529092019101610815565b505050509050610890816120c4565b91505090565b6060600060a283815481106108ad576108ad613418565b60009182526020808320909101546001600160a01b031680835260a78252604080842080548251818602810186019093528083529295509092909190849084015b8282101561095a576000848152602090819020604080516080810182526003860290920180546001600160a01b03908116845260018083015480831686880152600160a01b900460ff1615159385019390935260029091015416606083015290835290920191016108ee565b505050509050610969816120c4565b949350505050565b6097546001600160a01b031633146109a45760405162461bcd60e51b815260040161099b9061342e565b60405180910390fd5b60006109ae6118c1565b905081811015610acf5760a1546000906001600160a01b031663852a12e36109d68486613464565b6040518263ffffffff1660e01b81526004016109f491815260200190565b6020604051808303816000875af1158015610a13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a37919061347d565b90508015610a575760405162461bcd60e51b815260040161099b90613496565b610a5f6121e3565b60a0546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610aa7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acb919061347d565b9150505b81811115610ada5750805b6033546001600160a01b03163214801590610af8575060655460ff16155b15610b2a576000612710609d5483610b1091906134cd565b610b1a91906134e4565b9050610b268183613464565b9150505b60975460a054610b47916001600160a01b03918216911683612256565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d610b7061103d565b60405190815260200160405180910390a15050565b610b8d612010565b609c54604051631f2afc9960e11b8152600481018390526001600160a01b0390911690633e55f93290602401600060405180830381600087803b158015610bd357600080fd5b505af1158015610be7573d6000803e3d6000fd5b505050507f9163810ee1e29168d4ce900e48a333fb8fbd3fd070d2bef67f6d4db0846a469f816040516107e491815260200190565b610c24612010565b610c2c6122b9565b610c3461230b565b610c3c611a19565b565b610c3c32611e9f565b610c4f612010565b60a1546040516370a0823160e01b81523060048201526000916001600160a01b03169063db006a759082906370a0823190602401602060405180830381865afa158015610ca0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc4919061347d565b6040518263ffffffff1660e01b8152600401610ce291815260200190565b6020604051808303816000875af1158015610d01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d25919061347d565b90508015610d455760405162461bcd60e51b815260040161099b90613496565b610d4d6121e3565b61075a6110af565b610d5d61206a565b600082826000818110610d7257610d72613418565b610d889260206080909202019081019150613145565b905060008383610d99600182613464565b818110610da857610da8613418565b9050608002016020016020810190610dc09190613145565b60a0549091506001600160a01b0390811690831603610e105760405162461bcd60e51b815260206004820152600c60248201526b1c995dd85c990f4f5dd85b9d60a21b604482015260640161099b565b60a1546001600160a01b0390811690831603610e5f5760405162461bcd60e51b815260206004820152600e60248201526d3932bbb0b9321e9eb4aa37b5b2b760911b604482015260640161099b565b609f546001600160a01b0390811690821603610eae5760405162461bcd60e51b815260206004820152600e60248201526d1c995dd85c990f4f5bdd5d1c1d5d60921b604482015260640161099b565b60a2805460018101825560009182527faaf4f58de99300cfadc4585755f376d5fa747d5bc561d5bd9d710de1f91bf42d0180546001600160a01b0319166001600160a01b0385161790555b83811015610f6c576001600160a01b038316600090815260a760205260409020858583818110610f2b57610f2b613418565b835460018101855560009485526020909420608090910292909201926003029091019050610f598282613526565b505080610f659061359a565b9050610ef9565b50609854610f89906001600160a01b0384811691166000196123ab565b50505050565b60a85460ff1615610fcd576097546001600160a01b03163314610fc45760405162461bcd60e51b815260040161099b9061342e565b610fcd32611e9f565b610c3c6121e3565b610fdd61206a565b609780546001600160a01b0319166001600160a01b0383169081179091556040519081527fd459c7242e23d490831b5676a611c4342d899d28f342d89ae80793e56a930f30906020016107e4565b61103361206a565b610c3c60006124c0565b600060aa5461104a6118c1565b61105491906135b3565b905090565b611061612010565b609980546001600160a01b0319166001600160a01b0383169081179091556040519081527fefb5cfa1a8690c124332ab93324539c5c9c4be03f28aeb8be86f2d8a0c9fb99b906020016107e4565b6110b7612010565b6110bf612512565b610c3c61254f565b609c54604051636788231160e11b81523060048201526000916001600160a01b03169063cf104622906024015b602060405180830381865afa158015611111573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611054919061347d565b600054610100900460ff16158080156111555750600054600160ff909116105b8061116f5750303b15801561116f575060005460ff166001145b6111d25760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840161099b565b6000805460ff1916600117905580156111f5576000805461ff0019166101001790555b6111fe826125d0565b60a180546001600160a01b0389166001600160a01b0319918216811790925560a4805460018101825560009182527fe434dc35da084cf8d7e8186688ea2dacb53db7003d427af3abf351bd9d0a4e8d018054909216831790915560408051635fe3b56760e01b81529051635fe3b567926004808401936020939290839003909101908290875af1158015611296573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ba91906135c6565b60a360006101000a8154816001600160a01b0302191690836001600160a01b03160217905550866001600160a01b0316636f307dc36040518163ffffffff1660e01b81526004016020604051808303816000875af1158015611320573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134491906135c6565b60a080546001600160a01b0319166001600160a01b039290921691909117905560005b858110156113bb5760a587878381811061138357611383613418565b8354600181018555600094855260209094206080909102929092019260030290910190506113b18282613526565b5050600101611367565b5060005b838110156114135760a68585838181106113db576113db613418565b8354600181018555600094855260209094206080909102929092019260030290910190506114098282613526565b50506001016113bf565b5060a560008154811061142857611428613418565b6000918252602090912060039091020154609f80546001600160a01b0319166001600160a01b0390921691909117905560a5805461146890600190613464565b8154811061147857611478613418565b6000918252602090912060016003909202010154609e80546001600160a01b0319166001600160a01b039092169190911790556114b361230b565b60a354604051631853304760e31b81526001600160a01b039091169063c2998238906114e49060a49060040161362c565b600060405180830381600087803b1580156114fe57600080fd5b505af1158015611512573d6000803e3d6000fd5b50505050801561155d576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498906020015b60405180910390a15b50505050505050565b60008061157161272c565b9050600061157d611b50565b90506000811561160c57609854609f54609e54604051635e1e632560e01b8152600481018690526001600160a01b0392831660248201529082166044820152911690635e1e6325906064016040805180830381865afa1580156115e4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611608919061364f565b5090505b670de0b6b3a76400008360400151670de0b6b3a764000085600001518461163391906134cd565b61163d91906134e4565b61164791906134cd565b61165191906134e4565b935050505090565b61166161206a565b609b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f8041329bf7057543a2c2ff4e4071d1d488a31f82ed44e169b5cd2f04f5e3ac85906020016107e4565b6116b7612010565b60328111156116f15760405162461bcd60e51b815260040161099b906020808252600490820152630216361760e41b604082015260600190565b609d8190556040518181527f3aa4413905e8f015896ec5880bdde24088ccb19b578f9fcf6800354d5320d4af906020016107e4565b61172e612010565b60005b60a2548110156117ac57600060a2828154811061175057611750613418565b60009182526020822001546098546001600160a01b03918216935061177a928492909116906123ab565b6001600160a01b038116600090815260a76020526040812061179b91613040565b506117a58161359a565b9050611731565b50610c3c60a26000613061565b60a481815481106117c957600080fd5b6000918252602090912001546001600160a01b0316905081565b60a760205281600052604060002081815481106117ff57600080fd5b60009182526020909120600390910201805460018201546002909201546001600160a01b0391821694508183169350600160a01b90920460ff16911684565b61184661307f565b604051806060016040528061185961272c565b81526020016000815260200161186d611be5565b9052919050565b60a5818154811061188457600080fd5b60009182526020909120600390910201805460018201546002909201546001600160a01b03918216935081831692600160a01b900460ff16911684565b60a0546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a08231906024016110f4565b609a546001600160a01b0316331461193a5760405162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015260640161099b565b609a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f46d58e3fa07bf19b1d27240f0e286b27e9f7c1b0d88933333fe833b60eec5412906020016107e4565b6060600060a68054806020026020016040519081016040528092919081815260200160009082821015610881576000848152602090819020604080516080810182526003860290920180546001600160a01b03908116845260018083015480831686880152600160a01b900460ff161515938501939093526002909101541660608301529083529092019101610815565b611a216127d7565b6000611a2b6118c1565b9050801561075a5760a15460405163140e25ad60e31b8152600481018390526001600160a01b039091169063a0712d68906024016020604051808303816000875af1158015611a7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aa2919061347d565b50611aab6121e3565b7f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e38426611ad461103d565b6040519081526020016107e4565b610c3e612010565b611af261206a565b609880546001600160a01b0319166001600160a01b0383169081179091556040519081527f5ca6e64c4522e68e154aa9372f2c5969cd37d9640e59f66953dc472f54ee86fa906020016107e4565b60a6818154811061188457600080fd5b60a35460405162e1ed9760e51b81526000916001600160a01b031690631c3db2e090611b8390309060a49060040161367f565b600060405180830381600087803b158015611b9d57600080fd5b505af1158015611bb1573d6000803e3d6000fd5b5050609f546040516370a0823160e01b81523060048201526001600160a01b0390911692506370a0823191506024016110f4565b6000611bf360655460ff1690565b611bfe5750609d5490565b50600090565b611c0c61206a565b6001600160a01b038116611c715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161099b565b61075a816124c0565b60a281815481106117c957600080fd5b6097546001600160a01b03163314611cb45760405162461bcd60e51b815260040161099b9061342e565b60a1546040516370a0823160e01b81523060048201526000916001600160a01b03169063db006a759082906370a0823190602401602060405180830381865afa158015611d05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d29919061347d565b6040518263ffffffff1660e01b8152600401611d4791815260200190565b6020604051808303816000875af1158015611d66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d8a919061347d565b90508015611daa5760405162461bcd60e51b815260040161099b90613496565b611db26121e3565b60a0546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015611dfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e1f919061347d565b60a05460975460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929350169063a9059cbb906044016020604051808303816000875af1158015611e76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9a91906136a3565b505050565b611ea76127d7565b6000611eb16118c1565b60a35460405162e1ed9760e51b81529192506001600160a01b031690631c3db2e090611ee490309060a49060040161367f565b600060405180830381600087803b158015611efe57600080fd5b505af1158015611f12573d6000803e3d6000fd5b50505050611f1e61281d565b609f546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015611f67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f8b919061347d565b90508015611e9a57611f9c8361295a565b611fa4612bee565b600082611faf6118c1565b611fb99190613464565b9050611fc3611a19565b4260a955337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f9241082611ff261103d565b6040805192835260208301919091520160405180910390a250505050565b6033546001600160a01b031633148061203357506099546001600160a01b031633145b610c3c5760405162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015260640161099b565b6033546001600160a01b03163314610c3c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161099b565b60606000825160016120d691906135b3565b67ffffffffffffffff8111156120ee576120ee6136c0565b604051908082528060200260200182016040528015612117578160200160208202803683370190505b5090508260008151811061212d5761212d613418565b6020026020010151600001518160008151811061214c5761214c613418565b60200260200101906001600160a01b031690816001600160a01b03168152505060005b83518110156121dc5783818151811061218a5761218a613418565b602002602001015160200151828260016121a491906135b3565b815181106121b4576121b4613418565b6001600160a01b03909216602092830291909101909101526121d58161359a565b905061216f565b5092915050565b60a154604051633af9e66960e01b81523060048201526001600160a01b0390911690633af9e669906024016020604051808303816000875af115801561222d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612251919061347d565b60aa55565b6040516001600160a01b038316602482015260448101829052611e9a90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612ce1565b6122c1612db3565b6065805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60a15460a05461232a916001600160a01b0391821691166000196123ab565b609854609f54612349916001600160a01b0391821691166000196123ab565b60005b60a25481101561075a5760985460a2805461239b926001600160a01b031691600019918590811061237f5761237f613418565b6000918252602090912001546001600160a01b031691906123ab565b6123a48161359a565b905061234c565b8015806124255750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa1580156123ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612423919061347d565b155b6124905760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606482015260840161099b565b6040516001600160a01b038316602482015260448101829052611e9a90849063095ea7b360e01b90606401612282565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61251a6127d7565b6065805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122ee3390565b60a15460a05461256d916001600160a01b03918216911660006123ab565b609854609f5461258b916001600160a01b03918216911660006123ab565b60005b60a25481101561075a5760985460a280546125c0926001600160a01b0316916000918590811061237f5761237f613418565b6125c98161359a565b905061258e565b600054610100900460ff166125f75760405162461bcd60e51b815260040161099b906136d6565b6125ff612dfc565b612607612e2b565b6126146020820182613145565b609780546001600160a01b0319166001600160a01b03929092169190911790556126446040820160208301613145565b609880546001600160a01b0319166001600160a01b03929092169190911790556126746060820160408301613145565b609980546001600160a01b0319166001600160a01b03929092169190911790556126a46080820160608301613145565b609a80546001600160a01b0319166001600160a01b03929092169190911790556126d460a0820160808301613145565b609b80546001600160a01b0319166001600160a01b039290921691909117905561270460c0820160a08301613145565b609c80546001600160a01b0319166001600160a01b039290921691909117905550600a609d55565b6127676040518060c0016040528060008152602001600081526020016000815260200160008152602001606081526020016000151581525090565b609c54604051639af608c960e01b81523060048201526001600160a01b0390911690639af608c990602401600060405180830381865afa1580156127af573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611054919081019061377b565b60655460ff1615610c3c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161099b565b60005b60a25481101561075a57600060a2828154811061283f5761283f613418565b60009182526020822001546040516370a0823160e01b81523060048201526001600160a01b03909116925082906370a0823190602401602060405180830381865afa158015612892573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b6919061347d565b6098546001600160a01b03848116600090815260a76020526040808220905163cac88ea960e01b8152949550919092169263cac88ea9926128ff92869230904290600401613871565b6000604051808303816000875af115801561291e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612946919081019061391d565b505050806129539061359a565b9050612820565b600061296461272c565b8051609f546040516370a0823160e01b8152306004820152929350600092670de0b6b3a764000092916001600160a01b0316906370a0823190602401602060405180830381865afa1580156129bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129e1919061347d565b6129eb91906134cd565b6129f591906134e4565b60985460405163cac88ea960e01b81529192506001600160a01b03169063cac88ea990612a3090849060009060a59030904290600401613871565b6000604051808303816000875af1158015612a4f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612a77919081019061391d565b50609e546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612ac1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ae5919061347d565b90506000670de0b6b3a7640000846040015183612b0291906134cd565b612b0c91906134e4565b609e54909150612b26906001600160a01b03168683612256565b6000670de0b6b3a7640000856020015184612b4191906134cd565b612b4b91906134e4565b609b54609e54919250612b6b916001600160a01b03908116911683612256565b6000670de0b6b3a7640000866060015185612b8691906134cd565b612b9091906134e4565b609a54609e54919250612bb0916001600160a01b03908116911683612256565b60408051848152602081018490529081018290527fd255b592c7f268a73e534da5219a60ff911b4cf6daae21c7d20527dd657bd99a90606001611554565b609f546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612c37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c5b919061347d565b60985460405163cac88ea960e01b81529192506001600160a01b03169063cac88ea990612c9690849060009060a69030904290600401613871565b6000604051808303816000875af1158015612cb5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612cdd919081019061391d565b5050565b6000612d36826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612e5a9092919063ffffffff16565b805190915015611e9a5780806020019051810190612d5491906136a3565b611e9a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161099b565b60655460ff16610c3c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161099b565b600054610100900460ff16612e235760405162461bcd60e51b815260040161099b906136d6565b610c3c612e73565b600054610100900460ff16612e525760405162461bcd60e51b815260040161099b906136d6565b610c3c612ea3565b6060612e698484600085612ed6565b90505b9392505050565b600054610100900460ff16612e9a5760405162461bcd60e51b815260040161099b906136d6565b610c3c336124c0565b600054610100900460ff16612eca5760405162461bcd60e51b815260040161099b906136d6565b6065805460ff19169055565b606082471015612f375760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161099b565b6001600160a01b0385163b612f8e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161099b565b600080866001600160a01b03168587604051612faa91906139c3565b60006040518083038185875af1925050503d8060008114612fe7576040519150601f19603f3d011682016040523d82523d6000602084013e612fec565b606091505b5091509150612ffc828286613007565b979650505050505050565b60608315613016575081612e6c565b8251156130265782518084602001fd5b8160405162461bcd60e51b815260040161099b91906139df565b508054600082556003029060005260206000209081019061075a91906130d9565b508054600082559060005260206000209081019061075a919061311b565b60405180606001604052806130c56040518060c0016040528060008152602001600081526020016000815260200160008152602001606081526020016000151581525090565b815260200160008152602001600081525090565b5b808211156131175780546001600160a01b031990811682556001820180546001600160a81b031916905560028201805490911690556003016130da565b5090565b5b80821115613117576000815560010161311c565b6001600160a01b038116811461075a57600080fd5b60006020828403121561315757600080fd5b8135612e6c81613130565b801515811461075a57600080fd5b60006020828403121561318257600080fd5b8135612e6c81613162565b6020808252825182820181905260009190848201906040850190845b818110156131ce5783516001600160a01b0316835292840192918401916001016131a9565b50909695505050505050565b6000602082840312156131ec57600080fd5b5035919050565b60008083601f84011261320557600080fd5b50813567ffffffffffffffff81111561321d57600080fd5b6020830191508360208260071b850101111561323857600080fd5b9250929050565b6000806020838503121561325257600080fd5b823567ffffffffffffffff81111561326957600080fd5b613275858286016131f3565b90969095509350505050565b60008060008060008086880361012081121561329c57600080fd5b87356132a781613130565b9650602088013567ffffffffffffffff808211156132c457600080fd5b6132d08b838c016131f3565b909850965060408a01359150808211156132e957600080fd5b506132f68a828b016131f3565b90955093505060c0605f198201121561330e57600080fd5b506060870190509295509295509295565b6000806040838503121561333257600080fd5b823561333d81613130565b946020939093013593505050565b60005b8381101561336657818101518382015260200161334e565b50506000910152565b6000815180845261338781602086016020860161334b565b601f01601f19169290920160200192915050565b60208152600082516060602084015280516080840152602081015160a0840152604081015160c0840152606081015160e0840152608081015160c06101008501526133ea61014085018261336f565b905060a082015115156101208501526020850151604085015260408501516060850152809250505092915050565b634e487b7160e01b600052603260045260246000fd5b602080825260069082015265085d985d5b1d60d21b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b818103818111156134775761347761344e565b92915050565b60006020828403121561348f57600080fd5b5051919050565b6020808252601c908201527f4572726f72207768696c6520747279696e6720746f2072656465656d00000000604082015260600190565b80820281158282048414176134775761347761344e565b60008261350157634e487b7160e01b600052601260045260246000fd5b500490565b80546001600160a01b0319166001600160a01b0392909216919091179055565b813561353181613130565b61353b8183613506565b5060018101602083013561354e81613130565b6135588183613506565b50604083013561356781613162565b815460ff60a01b191690151560a01b60ff60a01b16179055606082013561358d81613130565b611e9a8160028401613506565b6000600182016135ac576135ac61344e565b5060010190565b808201808211156134775761347761344e565b6000602082840312156135d857600080fd5b8151612e6c81613130565b6000815480845260208085019450836000528060002060005b838110156136215781546001600160a01b0316875295820195600191820191016135fc565b509495945050505050565b602081526000612e6c60208301846135e3565b805161364a81613162565b919050565b6000806040838503121561366257600080fd5b82519150602083015161367481613162565b809150509250929050565b6001600160a01b0383168152604060208201819052600090612e69908301846135e3565b6000602082840312156136b557600080fd5b8151612e6c81613162565b634e487b7160e01b600052604160045260246000fd5b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60405160c0810167ffffffffffffffff81118282101715613744576137446136c0565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715613773576137736136c0565b604052919050565b6000602080838503121561378e57600080fd5b825167ffffffffffffffff808211156137a657600080fd5b9084019060c082870312156137ba57600080fd5b6137c2613721565b82518152838301518482015260408301516040820152606083015160608201526080830151828111156137f457600080fd5b8301601f8101881361380557600080fd5b805183811115613817576138176136c0565b613829601f8201601f1916870161374a565b9350808452888682840101111561383f57600080fd5b61384e8187860188850161334b565b505081608082015261386260a0840161363f565b60a08201529695505050505050565b600060a0808301888452602088818601526040838187015282895480855260c0880191508a60005283600020945060005b818110156138f05785546001600160a01b03908116845260018781015480831688870152891c60ff1615158686015260028801549091166060850152600390960195608090930192016138a2565b50506001600160a01b0389166060880152945061390d9350505050565b8260808301529695505050505050565b6000602080838503121561393057600080fd5b825167ffffffffffffffff8082111561394857600080fd5b818501915085601f83011261395c57600080fd5b81518181111561396e5761396e6136c0565b8060051b915061397f84830161374a565b818152918301840191848101908884111561399957600080fd5b938501935b838510156139b75784518252938501939085019061399e565b98975050505050505050565b600082516139d581846020870161334b565b9190910192915050565b602081526000612e6c602083018461336f56fea2646970667358221220392cdb0701a77aae18dde0e51b683d4a2849e34bf8cf5eb134133504460b0dab64736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061038e5760003560e01c80638cfc0250116101de578063c7b9d5301161010f578063e7a7250a116100ad578063f2fde38b1161007c578063f2fde38b14610710578063f301af4214610723578063fb61778714610736578063fbfa77cf1461073e57600080fd5b8063e7a7250a146106e4578063e941fa78146106ec578063f1a392da146106f4578063f20eaeb8146106fd57600080fd5b8063d801d946116100e9578063d801d946146106ae578063d92f3d73146106b6578063dd93d6b3146106c9578063dfbdc437146106dc57600080fd5b8063c7b9d5301461068b578063cc7cb29b1461069e578063d0e30db0146106a657600080fd5b8063aced16611161017c578063b1fff06e11610156578063b1fff06e14610615578063b20feaaf1461065b578063be12a97814610670578063c1a3d44c1461068357600080fd5b8063aced1661146105e7578063ad29f5da146105fa578063b1283e771461060257600080fd5b806391079d7b116101b857806391079d7b146105a657806397fd323d146105b9578063a68833e5146105c1578063ac1e5025146105d457600080fd5b80638cfc02501461057a5780638da5cb5b146105825780638e1454591461059357600080fd5b80634641257d116102c35780635fe3b56711610261578063722713f711610230578063722713f71461054a578063748747e6146105525780638456cb59146105655780638912cb8b1461056d57600080fd5b80635fe3b5671461051557806367a52793146105285780636817031b1461052f578063715018a61461054257600080fd5b806352ba39f41161029d57806352ba39f4146104da57806354518b1a146104ed578063573fef0a146104f65780635c975abb146104fe57600080fd5b80634641257d146104b75780634700d305146104bf5780634746fb55146104c757600080fd5b80631f1fcd51116103305780632e1a7d4d1161030a5780632e1a7d4d146104765780633e55f932146104895780633f4ba83a1461049c578063408cfe24146104a457600080fd5b80631f1fcd511461043d5780631fe4a68614610450578063257ae0de1461046357600080fd5b8063115880861161036c57806311588086146103ce57806311b0b42d146103ea57806313e120b11461041557806315ed63421461042a57600080fd5b80630e5c011e146103935780630e8fbb5a146103a8578063106fdbd0146103bb575b600080fd5b6103a66103a1366004613145565b610751565b005b6103a66103b6366004613170565b61075d565b6103a66103c9366004613145565b610792565b6103d760aa5481565b6040519081526020015b60405180910390f35b609e546103fd906001600160a01b031681565b6040516001600160a01b0390911681526020016103e1565b61041d6107ef565b6040516103e1919061318d565b61041d6104383660046131da565b610896565b60a0546103fd906001600160a01b031681565b609a546103fd906001600160a01b031681565b6098546103fd906001600160a01b031681565b6103a66104843660046131da565b610971565b6103a66104973660046131da565b610b85565b6103a6610c1c565b60a1546103fd906001600160a01b031681565b6103a6610c3e565b6103a6610c47565b609c546103fd906001600160a01b031681565b6103a66104e836600461323f565b610d55565b6103d761271081565b6103a6610f8f565b60655460ff165b60405190151581526020016103e1565b60a3546103fd906001600160a01b031681565b60006103d7565b6103a661053d366004613145565b610fd5565b6103a661102b565b6103d761103d565b6103a6610560366004613145565b611059565b6103a66110af565b60a8546105059060ff1681565b6103d76110c7565b6033546001600160a01b03166103fd565b609b546103fd906001600160a01b031681565b6103a66105b4366004613281565b611135565b6103d7611566565b6103a66105cf366004613145565b611659565b6103a66105e23660046131da565b6116af565b6099546103fd906001600160a01b031681565b6103a6611726565b6103fd6106103660046131da565b6117b9565b61062861062336600461331f565b6117e3565b604080516001600160a01b03958616815293851660208501529115159183019190915290911660608201526080016103e1565b61066361183e565b6040516103e1919061339b565b61062861067e3660046131da565b611874565b6103d76118c1565b6103a6610699366004613145565b6118f2565b61041d611988565b6103a6611a19565b6103a6611ae2565b6103a66106c4366004613145565b611aea565b6106286106d73660046131da565b611b40565b6103d7603281565b6103d7611b50565b6103d7611be5565b6103d760a95481565b609f546103fd906001600160a01b031681565b6103a661071e366004613145565b611c04565b6103fd6107313660046131da565b611c7a565b6103a6611c8a565b6097546103fd906001600160a01b031681565b61075a81611e9f565b50565b610765612010565b60a8805460ff191682151590811790915560ff16156107885761075a60006116af565b61075a600a6116af565b61079a61206a565b609c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f91e28ce4210d103c13c5174847e463b836900f8dc63e9d9b42a4255169d19529906020015b60405180910390a150565b6060600060a5805480602002602001604051908101604052809291908181526020016000905b82821015610881576000848152602090819020604080516080810182526003860290920180546001600160a01b03908116845260018083015480831686880152600160a01b900460ff161515938501939093526002909101541660608301529083529092019101610815565b505050509050610890816120c4565b91505090565b6060600060a283815481106108ad576108ad613418565b60009182526020808320909101546001600160a01b031680835260a78252604080842080548251818602810186019093528083529295509092909190849084015b8282101561095a576000848152602090819020604080516080810182526003860290920180546001600160a01b03908116845260018083015480831686880152600160a01b900460ff1615159385019390935260029091015416606083015290835290920191016108ee565b505050509050610969816120c4565b949350505050565b6097546001600160a01b031633146109a45760405162461bcd60e51b815260040161099b9061342e565b60405180910390fd5b60006109ae6118c1565b905081811015610acf5760a1546000906001600160a01b031663852a12e36109d68486613464565b6040518263ffffffff1660e01b81526004016109f491815260200190565b6020604051808303816000875af1158015610a13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a37919061347d565b90508015610a575760405162461bcd60e51b815260040161099b90613496565b610a5f6121e3565b60a0546040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610aa7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acb919061347d565b9150505b81811115610ada5750805b6033546001600160a01b03163214801590610af8575060655460ff16155b15610b2a576000612710609d5483610b1091906134cd565b610b1a91906134e4565b9050610b268183613464565b9150505b60975460a054610b47916001600160a01b03918216911683612256565b7f5b6b431d4476a211bb7d41c20d1aab9ae2321deee0d20be3d9fc9b1093fa6e3d610b7061103d565b60405190815260200160405180910390a15050565b610b8d612010565b609c54604051631f2afc9960e11b8152600481018390526001600160a01b0390911690633e55f93290602401600060405180830381600087803b158015610bd357600080fd5b505af1158015610be7573d6000803e3d6000fd5b505050507f9163810ee1e29168d4ce900e48a333fb8fbd3fd070d2bef67f6d4db0846a469f816040516107e491815260200190565b610c24612010565b610c2c6122b9565b610c3461230b565b610c3c611a19565b565b610c3c32611e9f565b610c4f612010565b60a1546040516370a0823160e01b81523060048201526000916001600160a01b03169063db006a759082906370a0823190602401602060405180830381865afa158015610ca0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc4919061347d565b6040518263ffffffff1660e01b8152600401610ce291815260200190565b6020604051808303816000875af1158015610d01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d25919061347d565b90508015610d455760405162461bcd60e51b815260040161099b90613496565b610d4d6121e3565b61075a6110af565b610d5d61206a565b600082826000818110610d7257610d72613418565b610d889260206080909202019081019150613145565b905060008383610d99600182613464565b818110610da857610da8613418565b9050608002016020016020810190610dc09190613145565b60a0549091506001600160a01b0390811690831603610e105760405162461bcd60e51b815260206004820152600c60248201526b1c995dd85c990f4f5dd85b9d60a21b604482015260640161099b565b60a1546001600160a01b0390811690831603610e5f5760405162461bcd60e51b815260206004820152600e60248201526d3932bbb0b9321e9eb4aa37b5b2b760911b604482015260640161099b565b609f546001600160a01b0390811690821603610eae5760405162461bcd60e51b815260206004820152600e60248201526d1c995dd85c990f4f5bdd5d1c1d5d60921b604482015260640161099b565b60a2805460018101825560009182527faaf4f58de99300cfadc4585755f376d5fa747d5bc561d5bd9d710de1f91bf42d0180546001600160a01b0319166001600160a01b0385161790555b83811015610f6c576001600160a01b038316600090815260a760205260409020858583818110610f2b57610f2b613418565b835460018101855560009485526020909420608090910292909201926003029091019050610f598282613526565b505080610f659061359a565b9050610ef9565b50609854610f89906001600160a01b0384811691166000196123ab565b50505050565b60a85460ff1615610fcd576097546001600160a01b03163314610fc45760405162461bcd60e51b815260040161099b9061342e565b610fcd32611e9f565b610c3c6121e3565b610fdd61206a565b609780546001600160a01b0319166001600160a01b0383169081179091556040519081527fd459c7242e23d490831b5676a611c4342d899d28f342d89ae80793e56a930f30906020016107e4565b61103361206a565b610c3c60006124c0565b600060aa5461104a6118c1565b61105491906135b3565b905090565b611061612010565b609980546001600160a01b0319166001600160a01b0383169081179091556040519081527fefb5cfa1a8690c124332ab93324539c5c9c4be03f28aeb8be86f2d8a0c9fb99b906020016107e4565b6110b7612010565b6110bf612512565b610c3c61254f565b609c54604051636788231160e11b81523060048201526000916001600160a01b03169063cf104622906024015b602060405180830381865afa158015611111573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611054919061347d565b600054610100900460ff16158080156111555750600054600160ff909116105b8061116f5750303b15801561116f575060005460ff166001145b6111d25760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840161099b565b6000805460ff1916600117905580156111f5576000805461ff0019166101001790555b6111fe826125d0565b60a180546001600160a01b0389166001600160a01b0319918216811790925560a4805460018101825560009182527fe434dc35da084cf8d7e8186688ea2dacb53db7003d427af3abf351bd9d0a4e8d018054909216831790915560408051635fe3b56760e01b81529051635fe3b567926004808401936020939290839003909101908290875af1158015611296573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ba91906135c6565b60a360006101000a8154816001600160a01b0302191690836001600160a01b03160217905550866001600160a01b0316636f307dc36040518163ffffffff1660e01b81526004016020604051808303816000875af1158015611320573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134491906135c6565b60a080546001600160a01b0319166001600160a01b039290921691909117905560005b858110156113bb5760a587878381811061138357611383613418565b8354600181018555600094855260209094206080909102929092019260030290910190506113b18282613526565b5050600101611367565b5060005b838110156114135760a68585838181106113db576113db613418565b8354600181018555600094855260209094206080909102929092019260030290910190506114098282613526565b50506001016113bf565b5060a560008154811061142857611428613418565b6000918252602090912060039091020154609f80546001600160a01b0319166001600160a01b0390921691909117905560a5805461146890600190613464565b8154811061147857611478613418565b6000918252602090912060016003909202010154609e80546001600160a01b0319166001600160a01b039092169190911790556114b361230b565b60a354604051631853304760e31b81526001600160a01b039091169063c2998238906114e49060a49060040161362c565b600060405180830381600087803b1580156114fe57600080fd5b505af1158015611512573d6000803e3d6000fd5b50505050801561155d576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498906020015b60405180910390a15b50505050505050565b60008061157161272c565b9050600061157d611b50565b90506000811561160c57609854609f54609e54604051635e1e632560e01b8152600481018690526001600160a01b0392831660248201529082166044820152911690635e1e6325906064016040805180830381865afa1580156115e4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611608919061364f565b5090505b670de0b6b3a76400008360400151670de0b6b3a764000085600001518461163391906134cd565b61163d91906134e4565b61164791906134cd565b61165191906134e4565b935050505090565b61166161206a565b609b80546001600160a01b0319166001600160a01b0383169081179091556040519081527f8041329bf7057543a2c2ff4e4071d1d488a31f82ed44e169b5cd2f04f5e3ac85906020016107e4565b6116b7612010565b60328111156116f15760405162461bcd60e51b815260040161099b906020808252600490820152630216361760e41b604082015260600190565b609d8190556040518181527f3aa4413905e8f015896ec5880bdde24088ccb19b578f9fcf6800354d5320d4af906020016107e4565b61172e612010565b60005b60a2548110156117ac57600060a2828154811061175057611750613418565b60009182526020822001546098546001600160a01b03918216935061177a928492909116906123ab565b6001600160a01b038116600090815260a76020526040812061179b91613040565b506117a58161359a565b9050611731565b50610c3c60a26000613061565b60a481815481106117c957600080fd5b6000918252602090912001546001600160a01b0316905081565b60a760205281600052604060002081815481106117ff57600080fd5b60009182526020909120600390910201805460018201546002909201546001600160a01b0391821694508183169350600160a01b90920460ff16911684565b61184661307f565b604051806060016040528061185961272c565b81526020016000815260200161186d611be5565b9052919050565b60a5818154811061188457600080fd5b60009182526020909120600390910201805460018201546002909201546001600160a01b03918216935081831692600160a01b900460ff16911684565b60a0546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a08231906024016110f4565b609a546001600160a01b0316331461193a5760405162461bcd60e51b815260206004820152600b60248201526a085cdd1c985d1959da5cdd60aa1b604482015260640161099b565b609a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f46d58e3fa07bf19b1d27240f0e286b27e9f7c1b0d88933333fe833b60eec5412906020016107e4565b6060600060a68054806020026020016040519081016040528092919081815260200160009082821015610881576000848152602090819020604080516080810182526003860290920180546001600160a01b03908116845260018083015480831686880152600160a01b900460ff161515938501939093526002909101541660608301529083529092019101610815565b611a216127d7565b6000611a2b6118c1565b9050801561075a5760a15460405163140e25ad60e31b8152600481018390526001600160a01b039091169063a0712d68906024016020604051808303816000875af1158015611a7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aa2919061347d565b50611aab6121e3565b7f4d6ce1e535dbade1c23defba91e23b8f791ce5edc0cc320257a2b364e4e38426611ad461103d565b6040519081526020016107e4565b610c3e612010565b611af261206a565b609880546001600160a01b0319166001600160a01b0383169081179091556040519081527f5ca6e64c4522e68e154aa9372f2c5969cd37d9640e59f66953dc472f54ee86fa906020016107e4565b60a6818154811061188457600080fd5b60a35460405162e1ed9760e51b81526000916001600160a01b031690631c3db2e090611b8390309060a49060040161367f565b600060405180830381600087803b158015611b9d57600080fd5b505af1158015611bb1573d6000803e3d6000fd5b5050609f546040516370a0823160e01b81523060048201526001600160a01b0390911692506370a0823191506024016110f4565b6000611bf360655460ff1690565b611bfe5750609d5490565b50600090565b611c0c61206a565b6001600160a01b038116611c715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161099b565b61075a816124c0565b60a281815481106117c957600080fd5b6097546001600160a01b03163314611cb45760405162461bcd60e51b815260040161099b9061342e565b60a1546040516370a0823160e01b81523060048201526000916001600160a01b03169063db006a759082906370a0823190602401602060405180830381865afa158015611d05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d29919061347d565b6040518263ffffffff1660e01b8152600401611d4791815260200190565b6020604051808303816000875af1158015611d66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d8a919061347d565b90508015611daa5760405162461bcd60e51b815260040161099b90613496565b611db26121e3565b60a0546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015611dfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e1f919061347d565b60a05460975460405163a9059cbb60e01b81526001600160a01b03918216600482015260248101849052929350169063a9059cbb906044016020604051808303816000875af1158015611e76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9a91906136a3565b505050565b611ea76127d7565b6000611eb16118c1565b60a35460405162e1ed9760e51b81529192506001600160a01b031690631c3db2e090611ee490309060a49060040161367f565b600060405180830381600087803b158015611efe57600080fd5b505af1158015611f12573d6000803e3d6000fd5b50505050611f1e61281d565b609f546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015611f67573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f8b919061347d565b90508015611e9a57611f9c8361295a565b611fa4612bee565b600082611faf6118c1565b611fb99190613464565b9050611fc3611a19565b4260a955337f9bc239f1724cacfb88cb1d66a2dc437467699b68a8c90d7b63110cf4b6f9241082611ff261103d565b6040805192835260208301919091520160405180910390a250505050565b6033546001600160a01b031633148061203357506099546001600160a01b031633145b610c3c5760405162461bcd60e51b815260206004820152600860248201526710b6b0b730b3b2b960c11b604482015260640161099b565b6033546001600160a01b03163314610c3c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161099b565b60606000825160016120d691906135b3565b67ffffffffffffffff8111156120ee576120ee6136c0565b604051908082528060200260200182016040528015612117578160200160208202803683370190505b5090508260008151811061212d5761212d613418565b6020026020010151600001518160008151811061214c5761214c613418565b60200260200101906001600160a01b031690816001600160a01b03168152505060005b83518110156121dc5783818151811061218a5761218a613418565b602002602001015160200151828260016121a491906135b3565b815181106121b4576121b4613418565b6001600160a01b03909216602092830291909101909101526121d58161359a565b905061216f565b5092915050565b60a154604051633af9e66960e01b81523060048201526001600160a01b0390911690633af9e669906024016020604051808303816000875af115801561222d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612251919061347d565b60aa55565b6040516001600160a01b038316602482015260448101829052611e9a90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612ce1565b6122c1612db3565b6065805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60a15460a05461232a916001600160a01b0391821691166000196123ab565b609854609f54612349916001600160a01b0391821691166000196123ab565b60005b60a25481101561075a5760985460a2805461239b926001600160a01b031691600019918590811061237f5761237f613418565b6000918252602090912001546001600160a01b031691906123ab565b6123a48161359a565b905061234c565b8015806124255750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa1580156123ff573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612423919061347d565b155b6124905760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b606482015260840161099b565b6040516001600160a01b038316602482015260448101829052611e9a90849063095ea7b360e01b90606401612282565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61251a6127d7565b6065805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122ee3390565b60a15460a05461256d916001600160a01b03918216911660006123ab565b609854609f5461258b916001600160a01b03918216911660006123ab565b60005b60a25481101561075a5760985460a280546125c0926001600160a01b0316916000918590811061237f5761237f613418565b6125c98161359a565b905061258e565b600054610100900460ff166125f75760405162461bcd60e51b815260040161099b906136d6565b6125ff612dfc565b612607612e2b565b6126146020820182613145565b609780546001600160a01b0319166001600160a01b03929092169190911790556126446040820160208301613145565b609880546001600160a01b0319166001600160a01b03929092169190911790556126746060820160408301613145565b609980546001600160a01b0319166001600160a01b03929092169190911790556126a46080820160608301613145565b609a80546001600160a01b0319166001600160a01b03929092169190911790556126d460a0820160808301613145565b609b80546001600160a01b0319166001600160a01b039290921691909117905561270460c0820160a08301613145565b609c80546001600160a01b0319166001600160a01b039290921691909117905550600a609d55565b6127676040518060c0016040528060008152602001600081526020016000815260200160008152602001606081526020016000151581525090565b609c54604051639af608c960e01b81523060048201526001600160a01b0390911690639af608c990602401600060405180830381865afa1580156127af573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611054919081019061377b565b60655460ff1615610c3c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161099b565b60005b60a25481101561075a57600060a2828154811061283f5761283f613418565b60009182526020822001546040516370a0823160e01b81523060048201526001600160a01b03909116925082906370a0823190602401602060405180830381865afa158015612892573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b6919061347d565b6098546001600160a01b03848116600090815260a76020526040808220905163cac88ea960e01b8152949550919092169263cac88ea9926128ff92869230904290600401613871565b6000604051808303816000875af115801561291e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612946919081019061391d565b505050806129539061359a565b9050612820565b600061296461272c565b8051609f546040516370a0823160e01b8152306004820152929350600092670de0b6b3a764000092916001600160a01b0316906370a0823190602401602060405180830381865afa1580156129bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129e1919061347d565b6129eb91906134cd565b6129f591906134e4565b60985460405163cac88ea960e01b81529192506001600160a01b03169063cac88ea990612a3090849060009060a59030904290600401613871565b6000604051808303816000875af1158015612a4f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612a77919081019061391d565b50609e546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612ac1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ae5919061347d565b90506000670de0b6b3a7640000846040015183612b0291906134cd565b612b0c91906134e4565b609e54909150612b26906001600160a01b03168683612256565b6000670de0b6b3a7640000856020015184612b4191906134cd565b612b4b91906134e4565b609b54609e54919250612b6b916001600160a01b03908116911683612256565b6000670de0b6b3a7640000866060015185612b8691906134cd565b612b9091906134e4565b609a54609e54919250612bb0916001600160a01b03908116911683612256565b60408051848152602081018490529081018290527fd255b592c7f268a73e534da5219a60ff911b4cf6daae21c7d20527dd657bd99a90606001611554565b609f546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015612c37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c5b919061347d565b60985460405163cac88ea960e01b81529192506001600160a01b03169063cac88ea990612c9690849060009060a69030904290600401613871565b6000604051808303816000875af1158015612cb5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052612cdd919081019061391d565b5050565b6000612d36826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612e5a9092919063ffffffff16565b805190915015611e9a5780806020019051810190612d5491906136a3565b611e9a5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161099b565b60655460ff16610c3c5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161099b565b600054610100900460ff16612e235760405162461bcd60e51b815260040161099b906136d6565b610c3c612e73565b600054610100900460ff16612e525760405162461bcd60e51b815260040161099b906136d6565b610c3c612ea3565b6060612e698484600085612ed6565b90505b9392505050565b600054610100900460ff16612e9a5760405162461bcd60e51b815260040161099b906136d6565b610c3c336124c0565b600054610100900460ff16612eca5760405162461bcd60e51b815260040161099b906136d6565b6065805460ff19169055565b606082471015612f375760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161099b565b6001600160a01b0385163b612f8e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161099b565b600080866001600160a01b03168587604051612faa91906139c3565b60006040518083038185875af1925050503d8060008114612fe7576040519150601f19603f3d011682016040523d82523d6000602084013e612fec565b606091505b5091509150612ffc828286613007565b979650505050505050565b60608315613016575081612e6c565b8251156130265782518084602001fd5b8160405162461bcd60e51b815260040161099b91906139df565b508054600082556003029060005260206000209081019061075a91906130d9565b508054600082559060005260206000209081019061075a919061311b565b60405180606001604052806130c56040518060c0016040528060008152602001600081526020016000815260200160008152602001606081526020016000151581525090565b815260200160008152602001600081525090565b5b808211156131175780546001600160a01b031990811682556001820180546001600160a81b031916905560028201805490911690556003016130da565b5090565b5b80821115613117576000815560010161311c565b6001600160a01b038116811461075a57600080fd5b60006020828403121561315757600080fd5b8135612e6c81613130565b801515811461075a57600080fd5b60006020828403121561318257600080fd5b8135612e6c81613162565b6020808252825182820181905260009190848201906040850190845b818110156131ce5783516001600160a01b0316835292840192918401916001016131a9565b50909695505050505050565b6000602082840312156131ec57600080fd5b5035919050565b60008083601f84011261320557600080fd5b50813567ffffffffffffffff81111561321d57600080fd5b6020830191508360208260071b850101111561323857600080fd5b9250929050565b6000806020838503121561325257600080fd5b823567ffffffffffffffff81111561326957600080fd5b613275858286016131f3565b90969095509350505050565b60008060008060008086880361012081121561329c57600080fd5b87356132a781613130565b9650602088013567ffffffffffffffff808211156132c457600080fd5b6132d08b838c016131f3565b909850965060408a01359150808211156132e957600080fd5b506132f68a828b016131f3565b90955093505060c0605f198201121561330e57600080fd5b506060870190509295509295509295565b6000806040838503121561333257600080fd5b823561333d81613130565b946020939093013593505050565b60005b8381101561336657818101518382015260200161334e565b50506000910152565b6000815180845261338781602086016020860161334b565b601f01601f19169290920160200192915050565b60208152600082516060602084015280516080840152602081015160a0840152604081015160c0840152606081015160e0840152608081015160c06101008501526133ea61014085018261336f565b905060a082015115156101208501526020850151604085015260408501516060850152809250505092915050565b634e487b7160e01b600052603260045260246000fd5b602080825260069082015265085d985d5b1d60d21b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b818103818111156134775761347761344e565b92915050565b60006020828403121561348f57600080fd5b5051919050565b6020808252601c908201527f4572726f72207768696c6520747279696e6720746f2072656465656d00000000604082015260600190565b80820281158282048414176134775761347761344e565b60008261350157634e487b7160e01b600052601260045260246000fd5b500490565b80546001600160a01b0319166001600160a01b0392909216919091179055565b813561353181613130565b61353b8183613506565b5060018101602083013561354e81613130565b6135588183613506565b50604083013561356781613162565b815460ff60a01b191690151560a01b60ff60a01b16179055606082013561358d81613130565b611e9a8160028401613506565b6000600182016135ac576135ac61344e565b5060010190565b808201808211156134775761347761344e565b6000602082840312156135d857600080fd5b8151612e6c81613130565b6000815480845260208085019450836000528060002060005b838110156136215781546001600160a01b0316875295820195600191820191016135fc565b509495945050505050565b602081526000612e6c60208301846135e3565b805161364a81613162565b919050565b6000806040838503121561366257600080fd5b82519150602083015161367481613162565b809150509250929050565b6001600160a01b0383168152604060208201819052600090612e69908301846135e3565b6000602082840312156136b557600080fd5b8151612e6c81613162565b634e487b7160e01b600052604160045260246000fd5b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60405160c0810167ffffffffffffffff81118282101715613744576137446136c0565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715613773576137736136c0565b604052919050565b6000602080838503121561378e57600080fd5b825167ffffffffffffffff808211156137a657600080fd5b9084019060c082870312156137ba57600080fd5b6137c2613721565b82518152838301518482015260408301516040820152606083015160608201526080830151828111156137f457600080fd5b8301601f8101881361380557600080fd5b805183811115613817576138176136c0565b613829601f8201601f1916870161374a565b9350808452888682840101111561383f57600080fd5b61384e8187860188850161334b565b505081608082015261386260a0840161363f565b60a08201529695505050505050565b600060a0808301888452602088818601526040838187015282895480855260c0880191508a60005283600020945060005b818110156138f05785546001600160a01b03908116845260018781015480831688870152891c60ff1615158686015260028801549091166060850152600390960195608090930192016138a2565b50506001600160a01b0389166060880152945061390d9350505050565b8260808301529695505050505050565b6000602080838503121561393057600080fd5b825167ffffffffffffffff8082111561394857600080fd5b818501915085601f83011261395c57600080fd5b81518181111561396e5761396e6136c0565b8060051b915061397f84830161374a565b818152918301840191848101908884111561399957600080fd5b938501935b838510156139b75784518252938501939085019061399e565b98975050505050505050565b600082516139d581846020870161334b565b9190910192915050565b602081526000612e6c602083018461336f56fea2646970667358221220392cdb0701a77aae18dde0e51b683d4a2849e34bf8cf5eb134133504460b0dab64736f6c63430008130033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| OP | 100.00% | $1 | 9,695.466 | $9,705.16 |
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.