ETH Price: $2,048.25 (-1.87%)

Contract

0xF7E7e3F2DE47aE1014bAB9FAFf679DFd8d3fB32F
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Revoke Role192351352024-02-15 18:31:35766 days ago1708021895IN
0xF7E7e3F2...d8d3fB32F
0 ETH0.0018302467.57897728
Grant Role192351342024-02-15 18:31:23766 days ago1708021883IN
0xF7E7e3F2...d8d3fB32F
0 ETH0.0034993268.57925215
Set Rebalance De...192351332024-02-15 18:31:11766 days ago1708021871IN
0xF7E7e3F2...d8d3fB32F
0 ETH0.0048655267.21263655
Set Rebalance Do...192351322024-02-15 18:30:59766 days ago1708021859IN
0xF7E7e3F2...d8d3fB32F
0 ETH0.0020771968.69945687
Set Rebalance Up...192351312024-02-15 18:30:47766 days ago1708021847IN
0xF7E7e3F2...d8d3fB32F
0 ETH0.0020553767.92605446
Set Cooldown Blo...192351302024-02-15 18:30:35766 days ago1708021835IN
0xF7E7e3F2...d8d3fB32F
0 ETH0.0018799368.58066867
Set Rebalance Do...192351292024-02-15 18:30:23766 days ago1708021823IN
0xF7E7e3F2...d8d3fB32F
0 ETH0.0032778969.19764451
Set Rebalance Up...192351282024-02-15 18:30:11766 days ago1708021811IN
0xF7E7e3F2...d8d3fB32F
0 ETH0.0031846467.16384628

Advanced mode:
Parent Transaction Hash Method Block
From
To
View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
xETH_AMO

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 999 runs

Other Settings:
paris EvmVersion
// SPDX-License-Identifier: MIT

pragma solidity 0.8.19;
import "@openzeppelin-contracts/token/ERC20/IERC20.sol";
import "@openzeppelin-contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin-contracts/access/AccessControl.sol";
import "./interfaces/ICurvePool.sol";
import {IXETH} from "./interfaces/IXETH.sol";
import {CVXStaker} from "./CVXStaker.sol";

contract xETH_AMO is AccessControl {
    using SafeERC20 for IERC20;

    /// @notice Thrown when the xETH-stETH LP balance of the AMO is too low for the rebalancing operation.
    error LpBalanceTooLow();

    /// @notice Thrown when either the stETH or xETH balance in the pool is zero, which would prevent rebalancing.
    error ZeroBalancePool();

    /// @notice Thrown when a zero address is provided as an input, which is not allowed.
    error ZeroAddressProvided();

    /// @notice Thrown when a function is called with a zero value, which is not allowed.
    error ZeroValueProvided();

    /// @notice Thrown when the setSlippage values are invalid
    error InvalidSetSlippage();

    /// @notice Thrown when a rebalance attempt is made before the cooldown period has finished.
    error CooldownNotFinished();

    /// @notice Thrown when a rebalance attempt is made, but the current pool ratios do not require rebalancing.
    error RebalanceNotRequired();

    /// @notice Thrown when a rebalanceUp operation is not allowed based on the current pool ratios.
    error RebalanceUpNotAllowed();

    /// @notice Thrown when a rebalanceDown operation is not allowed based on the current pool ratios.
    error RebalanceDownNotAllowed();

    /// @notice Thrown when the requested rebalanceUp operation exceeds the allowed rebalanceUpCap.
    error RebalanceUpCapExceeded();

    /// @notice Thrown when the requested rebalanceDown operation exceeds the allowed rebalanceDownCap.
    error RebalanceDownCapExceeded();

    /// @notice Emitted when a rebalanceUp operation is performed.
    /// @param quote The chosen quote for rebalancing.
    /// @param xETHamountReceived The actual amount of xETH received after burning LP tokens.
    event RebalanceUpFinished(
        RebalanceUpQuote quote,
        uint256 xETHamountReceived
    );

    /// @notice Emitted when a rebalanceDown operation is performed.
    /// @param quote The chosen quote for rebalancing.
    /// @param lpAmountReceived The actual amount of xETH-stETH LP tokens received after minting xETH.
    event RebalanceDownFinished(
        RebalanceDownQuote quote,
        uint256 lpAmountReceived
    );

    /// @notice Emitted when the defender address is updated.
    /// @param oldDefender The previous defender address.
    /// @param newDefender The new defender address.
    event DefenderUpdated(address oldDefender, address newDefender);

    /// @notice Emitted when the upSlippage and downSlippage parameters are updated
    /// @param oldUpSlippage The old slippage value for rebalanceUp.
    /// @param newUpSlippage The new slippage value for rebalanceUp.
    /// @param oldDownSlippage The old slippage value for rebalanceDown.
    /// @param newDownSlippage The new slippage value for rebalanceDown.
    event SlippageUpdated(
      uint256 oldUpSlippage,
      uint256 newUpSlippage,
      uint256 oldDownSlippage,
      uint256 newDownSlippage
    );

    /// @notice Emitted when the rebalanceUpCap is updated.
    /// @param oldRebalanceUpCap The previous rebalanceUpCap value.
    /// @param newRebalanceUpCap The new rebalanceUpCap value.
    event RebalanceUpCapUpdated(
        uint256 oldRebalanceUpCap,
        uint256 newRebalanceUpCap
    );

    /// @notice Emitted when the rebalanceDownCap is updated.
    /// @param oldRebalanceDownCap The previous rebalanceDownCap value.
    /// @param newRebalanceDownCap The new rebalanceDownCap value.
    event RebalanceDownCapUpdated(
        uint256 oldRebalanceDownCap,
        uint256 newRebalanceDownCap
    );

    /// @notice Emitted when the cooldownBlocks is updated.
    /// @param oldCooldownBlocks The previous cooldownBlocks value.
    /// @param newCooldownBlocks The new cooldownBlocks value.
    event CooldownBlocksUpdated(
        uint256 oldCooldownBlocks,
        uint256 newCooldownBlocks
    );

    /// @notice Emitted when the CVXStaker address is updated.
    /// @param oldCVXStaker The previous CVXStaker address.
    /// @param newCVXStaker The new CVXStaker address.
    event CVXStakerUpdated(address oldCVXStaker, address newCVXStaker);

    /// @notice Emitted when the rebalance up threshold is set.
    /// @param oldThreshold The old rebalance up threshold.
    /// @param newThreshold The new rebalance up threshold.
    event SetRebalanceUpThreshold(uint256 oldThreshold, uint256 newThreshold);

    /// @notice Emitted when the rebalance down threshold is set.
    /// @param oldThreshold The old rebalance down threshold.
    /// @param newThreshold The new rebalance down threshold.
    event SetRebalanceDownThreshold(uint256 oldThreshold, uint256 newThreshold);

    event RecoveredToken(address token, address to, uint256 amount);

    /// @dev REBALANCE_DEFENDER_ROLE is the role that allows the defender to call rebalance()
    bytes32 public constant REBALANCE_DEFENDER_ROLE =
        keccak256("REBALANCE_DEFENDER_ROLE");

    /// @dev BASE_UNIT is the base unit used for calculations (1E18)
    uint256 public constant BASE_UNIT = 1E18;

    /// @dev xETHIndex is the index of xETH in the Curve pool
    uint256 public immutable xETHIndex;

    /// @dev stETHIndex is the index of stETH in the Curve pool
    uint256 public immutable stETHIndex;

    /// @dev xETH is the xETH token contract
    IXETH public immutable xETH;

    /// @dev stETH is the stETH token contract
    IERC20 public immutable stETH;

    /// @dev curvePool is the Curve pool contract
    ICurvePool public immutable curvePool;

    /// @dev upSlippage is the maximum slippage allowed when rebalancing up
    /// @notice 1E14 = 1 BPS
    uint256 public upSlippage;
    
    /// @dev downSlippage is the maximum slippage allowed when rebalancing down 
    /// @notice 1E14 = 1 BPS
    uint256 public downSlippage = 100 * 1E14;

    /// @dev rebalanceUpCap is the maximum amount of xETH-stETH LP that can be burnt in a single rebalance
    uint256 public rebalanceUpCap;

    /// @dev rebalanceDownCap is the maximum amount of xETH that can be minted in a single rebalance
    uint256 public rebalanceDownCap;

    /// @dev lastRebalanceBlock is the block number of the last rebalance
    uint256 public lastRebalanceBlock;

    /// @dev cooldownBlocks is the number of blocks that must pass between rebalances
    uint256 public cooldownBlocks = 1800; /// (6 * 60 * 60) / 12

    /// @dev REBALANCE_UP_THRESHOLD is the upper threshold for the xETH-stETH LP ratio
    /// @notice if the ratio is above this value, rebalanceUp() will be called
    uint256 public REBALANCE_UP_THRESHOLD = 0.75E18;

    /// @dev REBALANCE_DOWN_THRESHOLD is the lower threshold for the xETH-stETH LP ratio
    /// @notice if the ratio is below this value, rebalanceDown() will be called
    uint256 public REBALANCE_DOWN_THRESHOLD = 0.68E18;

    /// @dev defender is the whitelisted bot that can call rebalance()
    address public defender;

    /// @dev cvxStaker is the CVX staking contract
    CVXStaker public cvxStaker;

    /// @dev afterCooldownPeriod is a modifier that checks if the cooldown period has passed
    modifier afterCooldownPeriod() {
        if (lastRebalanceBlock + cooldownBlocks >= block.number)
            revert CooldownNotFinished();
        _;
        lastRebalanceBlock = block.number;
    }

    constructor(
        address _xETH,
        address _stETH,
        address _curvePool,
        address _cvxStaker,
        uint256 _xETHIndex
    ) {
        if (
            _xETH == address(0) ||
            _stETH == address(0) ||
            _curvePool == address(0) ||
            _cvxStaker == address(0)
        ) {
            revert ZeroAddressProvided();
        }

        xETH = IXETH(_xETH);
        stETH = IERC20(_stETH);
        curvePool = ICurvePool(_curvePool);
        cvxStaker = CVXStaker(_cvxStaker);

        xETHIndex = _xETHIndex;
        stETHIndex = 1 - xETHIndex;

        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
    }

    /// @dev preRebalanceCheck checks if a rebalance is even allowed based on pool ratios
    function preRebalanceCheck() internal view returns (bool isRebalanceUp) {
        uint256 stETHBal = curvePool.balances(stETHIndex);
        uint256 xETHBal = curvePool.balances(xETHIndex);

        /// @notice if either token balance is 0, the pool shall not be rebalanced
        if (stETHBal == 0 || xETHBal == 0) revert ZeroBalancePool();

        uint256 xEthPct = (xETHBal * BASE_UNIT) / (stETHBal + xETHBal);

        /// @notice if the ratio is above the upper threshold, rebalanceUp() will be called
        if (xEthPct > REBALANCE_UP_THRESHOLD) {
            isRebalanceUp = true;
        }
        /// @notice if the ratio is below the lower threshold, rebalanceDown() will be called
        /// @notice possible gas optimization here.
        else if (xEthPct < REBALANCE_DOWN_THRESHOLD) {
            isRebalanceUp = false;
        }
        /// @notice if the ratio is within the thresholds, the pool shall not be rebalanced
        else {
            revert RebalanceNotRequired();
        }
    }

    struct RebalanceUpQuote {
        uint256 lpBurn;
        uint256 min_xETHReceived;
    }

    /**
     * @dev Executes a rebalance up operation, which burns xETH-stETH LP to receive xETH.
     * @param quote The quote for the rebalance operation provided by the rebalance defender.
     * @return xETHReceived The amount of xETH received from the rebalance operation.
     * @notice Only the rebalance defender can call this function.
     * @notice The rebalance operation can only be performed after the cooldown period has elapsed.
     */
    function rebalanceUp(
        RebalanceUpQuote calldata quote
    )
        external
        onlyRole(REBALANCE_DEFENDER_ROLE)
        afterCooldownPeriod
        returns (uint256 xETHReceived)
    {
        if (quote.lpBurn == 0) revert ZeroValueProvided();

        bool isRebalanceUp = preRebalanceCheck();
        if (!isRebalanceUp) revert RebalanceUpNotAllowed();

        if (quote.lpBurn > rebalanceUpCap) revert RebalanceUpCapExceeded();

        uint256 min_xETHReceived = bestRebalanceUpQuote(quote);

        CVXStaker cachedCvxStaker = cvxStaker;

        uint256 amoLpBal = cachedCvxStaker.getTotalBalance();

        // if (amoLpBal == 0 || quote.lpBurn > amoLpBal) revert LpBalanceTooLow();
        if (quote.lpBurn > amoLpBal) revert LpBalanceTooLow();

        cachedCvxStaker.withdrawAndUnwrap(quote.lpBurn, false, address(this));

        xETHReceived = curvePool.remove_liquidity_one_coin(
            quote.lpBurn,
            int128(int(xETHIndex)),
            min_xETHReceived
        );

        xETH.burnShares(xETHReceived);

        emit RebalanceUpFinished(quote, xETHReceived);
    }

    struct RebalanceDownQuote {
        uint256 xETHAmount;
        uint256 minLpReceived;
    }

    /**
     * @dev Executes a rebalance down operation, which mints xETH and deposits into the Curve pool.
     * @param quote The quote for the rebalance operation provided by the rebalance defender.
     * @return lpAmountOut The amount of LP tokens received from the rebalance operation.
     * @notice Only the rebalance defender can call this function.
     * @notice The rebalance operation can only be performed after the cooldown period has elapsed.
     */
    function rebalanceDown(
        RebalanceDownQuote calldata quote
    )
        external
        onlyRole(REBALANCE_DEFENDER_ROLE)
        afterCooldownPeriod
        returns (uint256 lpAmountOut)
    {
        if (quote.xETHAmount == 0) revert ZeroValueProvided();

        bool isRebalanceUp = preRebalanceCheck();
        if (isRebalanceUp) revert RebalanceDownNotAllowed();

        if (quote.xETHAmount > rebalanceDownCap)
            revert RebalanceDownCapExceeded();

        uint256 minLpReceived = bestRebalanceDownQuote(quote);

        xETH.mintShares(quote.xETHAmount);

        uint256[2] memory amounts;
        amounts[xETHIndex] = quote.xETHAmount;

        IERC20(address(xETH)).approve(address(curvePool), quote.xETHAmount);

        lpAmountOut = curvePool.add_liquidity(amounts, minLpReceived);

        CVXStaker cachedCvxStaker = cvxStaker;

        IERC20(address(curvePool)).safeTransfer(
            address(cachedCvxStaker),
            lpAmountOut
        );
        cachedCvxStaker.depositAndStake(lpAmountOut);

        emit RebalanceDownFinished(quote, lpAmountOut);
    }

    /// @dev applySlippage applies the amount of slippage given 
    function applySlippage(uint256 amount, uint256 slippage) pure internal returns (uint256) {
        return slippage == 0 ? amount : (amount * (BASE_UNIT - slippage)) / BASE_UNIT;
    }

    /**
     * @dev Finds the best quote for rebalancing upwards.
     * @param defenderQuote The quote provided by the rebalance defender.
     * @return The best quote for rebalancing upwards.
     * @notice This function is internal and cannot be called outside of the contract.
     * @notice the defenderQuote should ideally be better than the contractQuote
     * @notice if its not, the contractQuote gets executed as a safeguard, reducing the risk of a large sandwich
     */
    function bestRebalanceUpQuote(
        RebalanceUpQuote calldata defenderQuote
    ) internal view returns (uint256) {
        // RebalanceUpQuote memory bestQuote;
        uint256 vp = curvePool.get_virtual_price();

        /// @dev first lets fill the bestQuote with the contractQuote
        // bestQuote.lpBurn = defenderQuote.lpBurn;
        uint256 min_xETHReceived = applySlippage(
            (vp * defenderQuote.lpBurn) / BASE_UNIT,
            upSlippage
        );

        if (defenderQuote.min_xETHReceived > min_xETHReceived)
            // bestQuote.min_xETHReceived = defenderQuote.min_xETHReceived 
            return defenderQuote.min_xETHReceived;

        return min_xETHReceived;
    }

    /**
     * @dev Finds the best quote for rebalancing downwards.
     * @param defenderQuote The quote provided by the rebalance defender.
     * @return The best quote for rebalancing downwards.
     * @notice the defenderQuote should ideally be better than the contractQuote
     * @notice if its not, the contractQuote gets executed as a safeguard, reducing the risk of a large sandwich
     */
    function bestRebalanceDownQuote(
        RebalanceDownQuote calldata defenderQuote
    ) internal view returns (uint256) {
        // RebalanceDownQuote memory bestQuote;
        uint256 vp = curvePool.get_virtual_price();

        /// @dev first lets fill the bestQuote with the contractQuote
        // bestQuote.xETHAmount = defenderQuote.xETHAmount;
        uint256 minLpReceived = applySlippage(
            (BASE_UNIT * defenderQuote.xETHAmount) / vp,
            downSlippage
        );

        if (defenderQuote.minLpReceived > minLpReceived)
            // bestQuote.minLpReceived = defenderQuote.minLpReceived;
            return defenderQuote.minLpReceived;

        return minLpReceived;
    }

    /**
     * @dev Sets the address of the rebalance defender.
     * @param newDefender The new rebalance defender address to be set.
     * @notice Only callable by a user with the DEFAULT_ADMIN_ROLE
     * @notice The new rebalance defender address cannot be set to the zero address.
     * @notice If a previous defender was set, their `REBALANCE_DEFENDER_ROLE` is revoked and transferred to the new defender.
     * @notice Emits a `DefenderUpdated` event.
     */
    function setRebalanceDefender(
        address newDefender
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (newDefender == address(0)) revert ZeroAddressProvided();

        address cachedDefender = defender;

        if (cachedDefender != address(0)) {
            _revokeRole(REBALANCE_DEFENDER_ROLE, cachedDefender);
        }

        emit DefenderUpdated(cachedDefender, newDefender);

        defender = newDefender;
        _grantRole(REBALANCE_DEFENDER_ROLE, newDefender);
    }

    /**
     * @dev Sets the slippage in basis points for trading.
     * @param newUpSlippage The new maximum slippage in basis points for upward price movement to be set.
     * @param newDownSlippage The new maximum slippage in basis points for downward price movement to be set.
     * @notice 1 BPS = 1E14
     * @notice Only callable by a user with the DEFAULT_ADMIN_ROLE
     * @notice The new maximum slippage must be between 0.06% and 15% (in basis points).
     * @notice Emits a `SlippageUpdated` event.
     */
    function setSlippage(
      uint256 newUpSlippage,
      uint256 newDownSlippage
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (newUpSlippage >= BASE_UNIT || newDownSlippage >= BASE_UNIT)
          revert InvalidSetSlippage();


        emit SlippageUpdated(upSlippage, newUpSlippage, downSlippage, newDownSlippage);

        upSlippage = newUpSlippage;
        downSlippage = newDownSlippage;
    }

    /**
     * @dev Sets the maximum burning cap (rebalanceUp) in a single transaction.
     * @param newRebalanceUpCap The new rebalance up cap to be set.
     * @notice Only callable by a user with the DEFAULT_ADMIN_ROLE
     * @notice The new rebalance up cap cannot be set to zero.
     * @notice Emits a `RebalanceUpCapUpdated` event.
     */
    function setRebalanceUpCap(
        uint256 newRebalanceUpCap
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (newRebalanceUpCap == 0) revert ZeroValueProvided();

        emit RebalanceUpCapUpdated(rebalanceUpCap, newRebalanceUpCap);

        rebalanceUpCap = newRebalanceUpCap;
    }

    /**
     * @dev Sets the maximum minting cap (rebalanceDown) in a single transaction.
     * @param newRebalanceDownCap The new rebalance down cap to be set.
     * @notice Only callable by a user with the DEFAULT_ADMIN_ROLE
     * @notice The new rebalance down cap cannot be set to zero.
     * @notice Emits a `RebalanceDownCapUpdated` event.
     */
    function setRebalanceDownCap(
        uint256 newRebalanceDownCap
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (newRebalanceDownCap == 0) revert ZeroValueProvided();

        emit RebalanceDownCapUpdated(rebalanceDownCap, newRebalanceDownCap);

        rebalanceDownCap = newRebalanceDownCap;
    }

    /**
     * @dev Sets the number of blocks for the unstake cooldown period
     * @param newCooldownBlocks The new number of blocks for the unstake cooldown period
     * @notice Only callable by a user with the DEFAULT_ADMIN_ROLE
     * @notice Emits a CooldownBlocksUpdated event with the old and new cooldown block values
     */
    function setCooldownBlocks(
        uint256 newCooldownBlocks
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (newCooldownBlocks == 0) revert ZeroValueProvided();

        emit CooldownBlocksUpdated(cooldownBlocks, newCooldownBlocks);

        cooldownBlocks = newCooldownBlocks;
    }

    /**
     * @dev Sets the CVX staking contract address
     * @param _cvxStaker The address of the CVX staking contract
     * @notice Only callable by a user with the DEFAULT_ADMIN_ROLE
     * @notice The new CVX staker contract address cannot be set to the zero address.
     * @notice Emits a `CVXStakerUpdated` event.
     */
    function setCvxStaker(
        address _cvxStaker
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        if (_cvxStaker == address(0)) revert ZeroAddressProvided();

        emit CVXStakerUpdated(address(cvxStaker), _cvxStaker);

        cvxStaker = CVXStaker(_cvxStaker);
    }

    /**
     * @dev Sets the threshold for triggering a `rebalanceUp` operation.
     * @param newRebalanceUpThreshold The new threshold to be set.
     * @notice Emits a `SetRebalanceUpThreshold` event with the old and new thresholds.
     * @notice Requires the caller to have the `DEFAULT_ADMIN_ROLE`.
     */
    function setRebalanceUpThreshold(
        uint256 newRebalanceUpThreshold
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        emit SetRebalanceUpThreshold(
            REBALANCE_UP_THRESHOLD,
            newRebalanceUpThreshold
        );

        REBALANCE_UP_THRESHOLD = newRebalanceUpThreshold;
    }

    /**
     * @dev Sets the threshold for triggering a `rebalanceDown` operation.
     * @param newRebalanceDownThreshold The new threshold to be set.
     * @notice Emits a `SetRebalanceDownThreshold` event with the old and new thresholds.
     * @notice Requires the caller to have the `DEFAULT_ADMIN_ROLE`.
     */
    function setRebalanceDownThreshold(
        uint256 newRebalanceDownThreshold
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        emit SetRebalanceDownThreshold(
            REBALANCE_DOWN_THRESHOLD,
            newRebalanceDownThreshold
        );

        REBALANCE_DOWN_THRESHOLD = newRebalanceDownThreshold;
    }

    /**
     * @dev Adds liquidity to the Curve pool using both xETH and stETH and stakes the resulting LP tokens in the CVX staking contract
     * @param stETHAmount The amount of stETH to be deposited
     * @param xETHAmount The amount of xETH to be deposited
     * @param minLpOut The minimum amount of LP tokens to receive from the Curve pool
     * @notice Transfers stETH and xETH from the caller to this contract, adds liquidity to the Curve pool, and stakes the resulting LP tokens in the CVX staking contract.
     * @notice Only callable by a user with the DEFAULT_ADMIN_ROLE
     * @return lpOut The amount of LP tokens received from the Curve pool
     */
    function addLiquidity(
        uint256 stETHAmount,
        uint256 xETHAmount,
        uint256 minLpOut
    ) external onlyRole(DEFAULT_ADMIN_ROLE) returns (uint256 lpOut) {
        stETH.safeTransferFrom(msg.sender, address(this), stETHAmount);
        xETH.mintShares(xETHAmount);

        uint256[2] memory amounts;

        amounts[xETHIndex] = xETHAmount;
        amounts[stETHIndex] = stETHAmount;

        IERC20(address(xETH)).approve(address(curvePool), xETHAmount);
        stETH.approve(address(curvePool), stETHAmount);

        lpOut = curvePool.add_liquidity(amounts, minLpOut);

        /// @notice no need for safeApprove, direct transfer + deposit
        IERC20(address(curvePool)).safeTransfer(address(cvxStaker), lpOut);
        cvxStaker.depositAndStake(lpOut);
    }

    /**
     * @notice Adds liquidity only with stETH and stakes the resulting LP tokens in the cvxCRV staking contract.
     * @param stETHAmount The amount of stETH to add as liquidity.
     * @param minLpOut The minimum expected amount of LP tokens to receive.
     * @return lpOut The actual amount of LP tokens received.
     */
    function addLiquidityOnlyStETH(
        uint256 stETHAmount,
        uint256 minLpOut
    ) external onlyRole(DEFAULT_ADMIN_ROLE) returns (uint256 lpOut) {
        stETH.safeTransferFrom(msg.sender, address(this), stETHAmount);

        uint256[2] memory amounts;

        amounts[stETHIndex] = stETHAmount;

        stETH.approve(address(curvePool), stETHAmount);

        lpOut = curvePool.add_liquidity(amounts, minLpOut);

        /// @notice no need for safeApprove, direct transfer + deposit
        IERC20(address(curvePool)).safeTransfer(address(cvxStaker), lpOut);
        cvxStaker.depositAndStake(lpOut);
    }

    /**
     * @dev Removes liquidity from the Curve pool using both xETH and stETH and transfers the resulting tokens to the caller
     * @param lpAmount The amount of LP tokens to be burned
     * @param minStETHOut The minimum amount of stETH to receive from the Curve pool
     * @param minXETHOut The minimum amount of xETH to receive from the Curve pool
     * @notice Checks if the AMO owns enough LP tokens, withdraws and unwraps them, and removes liquidity from the Curve pool.
     *      The resulting xETH and stETH are then transferred to the caller.
     * @notice Only callable by a user with the DEFAULT_ADMIN_ROLE
     * @return outputs An array containing the resulting amounts of xETH and stETH received from the Curve pool
     */
    function removeLiquidity(
        uint256 lpAmount,
        uint256 minStETHOut,
        uint256 minXETHOut
    )
        external
        onlyRole(DEFAULT_ADMIN_ROLE)
        returns (uint256[2] memory outputs)
    {
        /// @dev check if AMO owns enough LP
        uint256 amoBalance = cvxStaker.getTotalBalance();

        if (lpAmount > amoBalance) {
            revert LpBalanceTooLow();
        }

        cvxStaker.withdrawAndUnwrap(lpAmount, false, address(this));

        uint256[2] memory minAmounts;

        minAmounts[xETHIndex] = minXETHOut;
        minAmounts[stETHIndex] = minStETHOut;

        outputs = curvePool.remove_liquidity(lpAmount, minAmounts);

        xETH.burnShares(outputs[xETHIndex]);
        stETH.safeTransfer(msg.sender, outputs[stETHIndex]);
    }

    /**
     * @dev Removes liquidity from the Curve pool using only stETH and transfers the resulting stETH to the caller
     * @param lpAmount The amount of LP tokens to be burned
     * @param minStETHOut The minimum amount of stETH to receive from the Curve pool
     * @notice Checks if the AMO owns enough LP tokens, withdraws and unwraps them, and removes liquidity from the Curve pool.
     *      The resulting stETH is then transferred to the caller.
     * @notice Only callable by a user with the DEFAULT_ADMIN_ROLE
     */
    function removeLiquidityOnlyStETH(
        uint256 lpAmount,
        uint256 minStETHOut
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        /// @dev check if AMO owns enough LP
        uint256 amoBalance = cvxStaker.getTotalBalance();

        if (lpAmount > amoBalance) {
            revert LpBalanceTooLow();
        }

        cvxStaker.withdrawAndUnwrap(lpAmount, false, address(this));

        uint256[2] memory minAmounts;

        minAmounts[stETHIndex] = minStETHOut;

        uint256 output = curvePool.remove_liquidity_one_coin(
            lpAmount,
            int128(int(stETHIndex)),
            minStETHOut
        );

        stETH.safeTransfer(msg.sender, output);
    }

    /**
     * @notice Recover any token from AMO
     * @param token Token to recover
     * @param to Recipient address
     * @param amount Amount to recover
     */
    function recoverToken(
        address token,
        address to,
        uint256 amount
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        IERC20(token).safeTransfer(to, amount);

        emit RecoveredToken(token, to, amount);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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.9.3) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/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;

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    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));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    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");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    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");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation 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).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // 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 cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```solidity
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```solidity
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules}
 * to enforce additional security measures for this role.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(account),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

interface ICurvePool {
    // function get_balances() external view returns (uint256[] memory);

    function balances(uint256 i) external view returns (uint256);

    function remove_liquidity_one_coin(
        uint256 burn_amount,
        int128 coin_idx,
        uint256 min_received
    ) external returns (uint256);

    function remove_liquidity(
        uint256 burn_amount,
        uint256[2] memory amounts
    ) external returns (uint256[2] memory);

    function add_liquidity(
        uint256[2] memory amounts,
        uint256 min_mint_amount
    ) external returns (uint256);

    function calc_token_amount(
        uint256[2] memory _amounts,
        bool _is_deposit
    ) external view returns (uint256);

    function exchange(
        int128 i,
        int128 j,
        uint256 dx,
        uint256 min_dy
    ) external returns (uint256);

    function get_virtual_price() external view returns (uint256);
}

// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

import "@openzeppelin-contracts/token/ERC20/IERC20.sol";

interface IXETH is IERC20 {
    function burnShares(uint256 amount) external;

    function mintShares(uint256 amount) external;
}

// SPDX-License-Identifier: MIT

pragma solidity 0.8.19;
import "@openzeppelin-contracts/token/ERC20/IERC20.sol";
import "@openzeppelin-contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin-contracts/access/Ownable.sol";
import "./interfaces/ICurvePool.sol";
import "./interfaces/ICVXBooster.sol";
import "./interfaces/IBaseRewardPool.sol";

contract CVXStaker is Ownable {
    using SafeERC20 for IERC20;

    address public operator;
    // @notice CLP tokens for curve pool
    IERC20 public immutable clpToken;
    CvxPoolInfo public cvxPoolInfo;
    // @notice Cvx booster
    ICVXBooster public immutable booster;

    address public rewardsRecipient;
    address[] public rewardTokens;

    struct CvxPoolInfo {
        address token;
        address rewards;
        uint32 pId;
    }

    struct Position {
        uint256 staked;
        uint256 earned;
    }

    error NotOperator();
    error NotOperatorOrOwner();

    event SetCvxPoolInfo(uint32 indexed pId, address token, address rewards);
    event SetOperator(address operator);
    event RecoveredToken(address token, address to, uint256 amount);
    event SetRewardsRecipient(address recipient);
    event SetRewardTokens(address[] newTokens);

    constructor(
        address _operator,
        IERC20 _clpToken,
        ICVXBooster _booster,
        address[] memory _rewardTokens
    ) {
        operator = _operator;
        clpToken = _clpToken;
        booster = _booster;
        rewardTokens = _rewardTokens;
    }

    /**
     * @dev Sets the CVX pool information.
     * @param _pId The pool ID of the CVX pool.
     * @param _token The address of the CLP token.
     * @param _rewards The address of the CVX reward pool.
     * Only the contract owner can call this function.
     */
    function setCvxPoolInfo(
        uint32 _pId,
        address _token,
        address _rewards
    ) external onlyOwner {
        cvxPoolInfo.pId = _pId;
        cvxPoolInfo.token = _token;
        cvxPoolInfo.rewards = _rewards;

        emit SetCvxPoolInfo(_pId, _token, _rewards);
    }

    /**
     * @notice Set operator
     * @param _operator New operator
     */
    function setOperator(address _operator) external onlyOwner {
        operator = _operator;

        emit SetOperator(_operator);
    }

    /**
     * @dev Sets the address of the rewards recipient.
     * @param _recipeint The address of the rewards recipient.
     * Only the contract owner can call this function.
     */
    function setRewardsRecipient(address _recipeint) external onlyOwner {
        rewardsRecipient = _recipeint;

        emit SetRewardsRecipient(_recipeint);
    }

    function setRewardTokens(address[] calldata newTokens) external onlyOwner {
      rewardTokens = newTokens;

      emit SetRewardTokens(newTokens);
    }

    /**
     * @notice Recover any token from cvxStaker 
     * @param token Token to recover
     * @param to Recipient address
     * @param amount Amount to recover
     */
    function recoverToken(
        address token,
        address to,
        uint256 amount
    ) external onlyOwner {
        IERC20(token).safeTransfer(to, amount);

        emit RecoveredToken(token, to, amount);
    }

    /**
     * @dev Checks whether the CVX pool is currently shutdown.
     * @return A boolean indicating whether the CVX pool is currently shutdown.
     */
    function isCvxShutdown() public view returns (bool) {
        // It's not necessary to check that the booster itself is shutdown, as that can only
        // be shutdown once all the pools are shutdown - see Cvx BoosterOwner.shutdownSystem()
        return booster.poolInfo(cvxPoolInfo.pId).shutdown;
    }

    /**
     * @dev Deposits a specified amount of CLP tokens into the booster and stakes them in the reward pool.
     * @param amount The amount of CLP tokens to deposit and stake.
     * Only the operator can call this function.
     */
    function depositAndStake(uint256 amount) external onlyOperator {
        // Only deposit if the aura pool is open. Otherwise leave the CLP Token in this contract.
        if (!isCvxShutdown()) {
            clpToken.safeIncreaseAllowance(address(booster), amount);
            booster.deposit(cvxPoolInfo.pId, amount, true);
        }
    }

    /**
     * @dev Withdraws a specified amount of staked tokens from the reward pool and unwraps them to the original tokens.
     * @param amount The amount of tokens to withdraw and unwrap.
     * @param claim A boolean indicating whether to claim rewards before withdrawing.
     * @param to The address to receive the unwrapped tokens.
     * If set to 0x0, the tokens will remain in the contract.
     * Only the contract owner or operator can call this function.
     */
    function withdrawAndUnwrap(
        uint256 amount,
        bool claim,
        address to
    ) external onlyOperatorOrOwner {
        // Optimistically use CLP balance in this contract, and then try and unstake any remaining
        uint256 clpBalance = clpToken.balanceOf(address(this));
        uint256 toUnstake = (amount < clpBalance) ? 0 : amount - clpBalance;
        if (toUnstake > 0) {
            IBaseRewardPool(cvxPoolInfo.rewards).withdrawAndUnwrap(
                toUnstake,
                claim
            );
        }

        if (to != address(0)) {
            // unwrapped amount is 1 to 1
            clpToken.safeTransfer(to, amount);
        }
    }

    /**
     * @dev Withdraws all staked tokens from the reward pool and unwraps them to the original tokens.
     * @param claim A boolean indicating whether to claim rewards before withdrawing.
     * @param sendToOwner A boolean indicating whether to send the unwrapped tokens to the owner.
     * If false, the tokens will remain in the contract.
     * Only the contract owner can call this function.
     */
    function withdrawAllAndUnwrap(
        bool claim,
        bool sendToOwner
    ) external onlyOwner {
        IBaseRewardPool(cvxPoolInfo.rewards).withdrawAllAndUnwrap(claim);
        if (sendToOwner) {
            uint256 totalBalance = clpToken.balanceOf(address(this));
            /// @dev msg.sender is the owner, due to onlyOwner modifier
            clpToken.safeTransfer(msg.sender, totalBalance);
        }
    }

    /**
     * @dev Claims the rewards and transfers them to the rewards recipient, if specified.
     * @param claimExtras A boolean indicating whether to claim extra rewards.
     */
    function getReward(bool claimExtras) external {
        IBaseRewardPool(cvxPoolInfo.rewards).getReward(
            address(this),
            claimExtras
        );
    }

    error OutOfBounds(uint8 check);

    function transferReward(uint256 initialIndex, uint256 lastIndex) external {
      if (initialIndex >= lastIndex) {
        revert OutOfBounds(0);
      }
      if (lastIndex > rewardTokens.length) {
        revert OutOfBounds(1);
      }


      if (rewardsRecipient != address(0)) {
        for (uint i = initialIndex; i < lastIndex; ) {
            uint256 balance = IERC20(rewardTokens[i]).balanceOf(
                address(this)
            );
            if (balance != 0) {
              IERC20(rewardTokens[i]).safeTransfer(rewardsRecipient, balance);
            }
            unchecked {++i;}
        }
      }
    }


    /**
     * @dev Returns the current staked balance of the contract.
     * @return balance The current staked balance.
     */
    function stakedBalance() public view returns (uint256 balance) {
        balance = IBaseRewardPool(cvxPoolInfo.rewards).balanceOf(address(this));
    }

    function getTotalBalance() public view returns(uint256 balance) {
      unchecked {
        balance = stakedBalance() + clpToken.balanceOf(address(this));
      }
    }

    /**
     * @dev Returns the amount of earned rewards by the contract.
     * @return earnedRewards The amount of earned rewards.
     */
    function earned() public view returns (uint256 earnedRewards) {
        earnedRewards = IBaseRewardPool(cvxPoolInfo.rewards).earned(
            address(this)
        );
    }

    /**
     * @notice show staked position and earned rewards
     */
    function showPositions() external view returns (Position memory position) {
        position.staked = stakedBalance();
        position.earned = earned();
    }

    /// @dev Modifier to restrict function execution to only the contract operator.
    /// @notice Throws a custom exception `NotOperator` if the caller is not the operator.
    modifier onlyOperator() {
        if (msg.sender != operator) {
            revert NotOperator();
        }
        _;
    }

    /// @dev Modifier to restrict function execution to only the contract operator or owner.
    /// @notice Throws a custom exception `NotOperatorOrOwner` if the caller is neither the operator nor the owner.
    modifier onlyOperatorOrOwner() {
        if (msg.sender != operator && msg.sender != owner()) {
            revert NotOperatorOrOwner();
        }
        _;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/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 (last updated v4.9.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
     *
     * 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 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

// 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) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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 Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

interface ICVXBooster {
    struct PoolInfo {
        address lptoken;
        address token;
        address gauge;
        address crvRewards;
        address stash;
        bool shutdown;
    }

    function poolInfo(uint256 _pid) external view returns (PoolInfo memory);

    function depositAll(uint256 _pid, bool _stake) external returns (bool);

    function withdrawAll(uint256 _pid) external returns (bool);

    function deposit(
        uint256 _pid,
        uint256 _amount,
        bool _stake
    ) external returns (bool);

    function withdraw(uint256 _pid, uint256 _amount) external returns (bool);
}

// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

interface IBaseRewardPool {
    function withdrawAndUnwrap(
        uint256 amount,
        bool claim
    ) external returns (bool);

    function withdrawAll(bool claim) external;

    function withdrawAllAndUnwrap(bool claim) external;

    function withdraw(uint256 amount, bool claim) external;

    function stakeFor(address _for, uint256 _amount) external returns (bool);

    function stakeAll() external returns (bool);

    function stake(uint256 _amount) external returns (bool);

    function earned(address account) external view returns (uint256);

    function getReward(
        address _account,
        bool _claimExtras
    ) external returns (bool);

    function getReward() external returns (bool);

    function balanceOf(address account) external view returns (uint256);

    function rewardToken() external view returns (address);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "remappings": [
    "@openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/",
    "solmate/=lib/solmate/src/",
    "ds-test/=lib/solmate/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "openzeppelin/=lib/openzeppelin-contracts/contracts/",
    "weird-erc20/=lib/solmate/lib/weird-erc20/src/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 999
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_xETH","type":"address"},{"internalType":"address","name":"_stETH","type":"address"},{"internalType":"address","name":"_curvePool","type":"address"},{"internalType":"address","name":"_cvxStaker","type":"address"},{"internalType":"uint256","name":"_xETHIndex","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"CooldownNotFinished","type":"error"},{"inputs":[],"name":"InvalidSetSlippage","type":"error"},{"inputs":[],"name":"LpBalanceTooLow","type":"error"},{"inputs":[],"name":"RebalanceDownCapExceeded","type":"error"},{"inputs":[],"name":"RebalanceDownNotAllowed","type":"error"},{"inputs":[],"name":"RebalanceNotRequired","type":"error"},{"inputs":[],"name":"RebalanceUpCapExceeded","type":"error"},{"inputs":[],"name":"RebalanceUpNotAllowed","type":"error"},{"inputs":[],"name":"ZeroAddressProvided","type":"error"},{"inputs":[],"name":"ZeroBalancePool","type":"error"},{"inputs":[],"name":"ZeroValueProvided","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldCVXStaker","type":"address"},{"indexed":false,"internalType":"address","name":"newCVXStaker","type":"address"}],"name":"CVXStakerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldCooldownBlocks","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newCooldownBlocks","type":"uint256"}],"name":"CooldownBlocksUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldDefender","type":"address"},{"indexed":false,"internalType":"address","name":"newDefender","type":"address"}],"name":"DefenderUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldRebalanceDownCap","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRebalanceDownCap","type":"uint256"}],"name":"RebalanceDownCapUpdated","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint256","name":"xETHAmount","type":"uint256"},{"internalType":"uint256","name":"minLpReceived","type":"uint256"}],"indexed":false,"internalType":"struct xETH_AMO.RebalanceDownQuote","name":"quote","type":"tuple"},{"indexed":false,"internalType":"uint256","name":"lpAmountReceived","type":"uint256"}],"name":"RebalanceDownFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldRebalanceUpCap","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRebalanceUpCap","type":"uint256"}],"name":"RebalanceUpCapUpdated","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"uint256","name":"lpBurn","type":"uint256"},{"internalType":"uint256","name":"min_xETHReceived","type":"uint256"}],"indexed":false,"internalType":"struct xETH_AMO.RebalanceUpQuote","name":"quote","type":"tuple"},{"indexed":false,"internalType":"uint256","name":"xETHamountReceived","type":"uint256"}],"name":"RebalanceUpFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RecoveredToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldThreshold","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"SetRebalanceDownThreshold","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldThreshold","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"SetRebalanceUpThreshold","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldUpSlippage","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newUpSlippage","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldDownSlippage","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newDownSlippage","type":"uint256"}],"name":"SlippageUpdated","type":"event"},{"inputs":[],"name":"BASE_UNIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REBALANCE_DEFENDER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REBALANCE_DOWN_THRESHOLD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REBALANCE_UP_THRESHOLD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"stETHAmount","type":"uint256"},{"internalType":"uint256","name":"xETHAmount","type":"uint256"},{"internalType":"uint256","name":"minLpOut","type":"uint256"}],"name":"addLiquidity","outputs":[{"internalType":"uint256","name":"lpOut","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"stETHAmount","type":"uint256"},{"internalType":"uint256","name":"minLpOut","type":"uint256"}],"name":"addLiquidityOnlyStETH","outputs":[{"internalType":"uint256","name":"lpOut","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldownBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"curvePool","outputs":[{"internalType":"contract ICurvePool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cvxStaker","outputs":[{"internalType":"contract CVXStaker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defender","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"downSlippage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRebalanceBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"xETHAmount","type":"uint256"},{"internalType":"uint256","name":"minLpReceived","type":"uint256"}],"internalType":"struct xETH_AMO.RebalanceDownQuote","name":"quote","type":"tuple"}],"name":"rebalanceDown","outputs":[{"internalType":"uint256","name":"lpAmountOut","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rebalanceDownCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"lpBurn","type":"uint256"},{"internalType":"uint256","name":"min_xETHReceived","type":"uint256"}],"internalType":"struct xETH_AMO.RebalanceUpQuote","name":"quote","type":"tuple"}],"name":"rebalanceUp","outputs":[{"internalType":"uint256","name":"xETHReceived","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rebalanceUpCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lpAmount","type":"uint256"},{"internalType":"uint256","name":"minStETHOut","type":"uint256"},{"internalType":"uint256","name":"minXETHOut","type":"uint256"}],"name":"removeLiquidity","outputs":[{"internalType":"uint256[2]","name":"outputs","type":"uint256[2]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lpAmount","type":"uint256"},{"internalType":"uint256","name":"minStETHOut","type":"uint256"}],"name":"removeLiquidityOnlyStETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCooldownBlocks","type":"uint256"}],"name":"setCooldownBlocks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_cvxStaker","type":"address"}],"name":"setCvxStaker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDefender","type":"address"}],"name":"setRebalanceDefender","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRebalanceDownCap","type":"uint256"}],"name":"setRebalanceDownCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRebalanceDownThreshold","type":"uint256"}],"name":"setRebalanceDownThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRebalanceUpCap","type":"uint256"}],"name":"setRebalanceUpCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRebalanceUpThreshold","type":"uint256"}],"name":"setRebalanceUpThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newUpSlippage","type":"uint256"},{"internalType":"uint256","name":"newDownSlippage","type":"uint256"}],"name":"setSlippage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stETH","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stETHIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"upSlippage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"xETH","outputs":[{"internalType":"contract IXETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"xETHIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

610120604052662386f26fc10000600255610708600655670a688906bd8b000060075567096fd865af4400006008553480156200003b57600080fd5b50604051620032fa380380620032fa8339810160408190526200005e91620001f1565b6001600160a01b03851615806200007c57506001600160a01b038416155b806200008f57506001600160a01b038316155b80620000a257506001600160a01b038216155b15620000c157604051638474420160e01b815260040160405180910390fd5b6001600160a01b0385811660c05284811660e05283811661010052600a80546001600160a01b03191691841691909117905560808190526200010581600162000258565b60a0526200011560003362000120565b50505050506200027a565b6200012c8282620001a9565b620001a5576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620001643390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff165b92915050565b80516001600160a01b0381168114620001ec57600080fd5b919050565b600080600080600060a086880312156200020a57600080fd5b6200021586620001d4565b94506200022560208701620001d4565b93506200023560408701620001d4565b92506200024560608701620001d4565b9150608086015190509295509295909350565b81810381811115620001ce57634e487b7160e01b600052601160045260246000fd5b60805160a05160c05160e05161010051612f15620003e560003960008181610354015281816109f301528181610d2301528181610dd701528181610e8b01528181610f19015281816111a7015281816112f2015281816113a601528181611434015281816116c701528181611d6c01528181611e2001528181611eb2015281816120760152818161212401528181612260015261249801526000818161058601528181610bf201528181610e060152818161122b0152818161127301528181611321015261183d01526000818161060301528181610a9c01528181610c3001528181610d520152818161174401528181611cb00152611d9b01526000818161041d01528181610cd80152818161112a01528181611174015281816112a701528181611663015281816117ff01526120430152600081816105c0015281816109c301528181610ca00152818161162b0152818161177401528181611d2101526120f00152612f156000f3fe608060405234801561001057600080fd5b50600436106102ad5760003560e01c80637517f9b81161017b578063a7229fd9116100d8578063c7e225991161008c578063df7969f711610071578063df7969f7146105f5578063ea67cabc146105fe578063f364f61a1461062557600080fd5b8063c7e22599146105bb578063d547741f146105e257600080fd5b8063bc9ef3e0116100bd578063bc9ef3e01461056e578063c1fe3e4814610581578063c7480c15146105a857600080fd5b8063a7229fd914610552578063b99d50211461056557600080fd5b80638e85c0121161012f578063965f813c11610114578063965f813c146105245780639d35900214610537578063a217fddf1461054a57600080fd5b80638e85c012146104da57806391d14854146104ed57600080fd5b80637f4c91c5116101605780637f4c91c5146104945780638173b6f8146104a7578063857620e1146104ba57600080fd5b80637517f9b8146104785780637b5640f61461048157600080fd5b80632f2ff15d11610229578063422f1043116101dd5780635b262b24116101c25780635b262b241461043f57806361b75fb4146104525780636f39da031461046557600080fd5b8063422f10431461040557806350bb2efb1461041857600080fd5b806336568abe1161020e57806336568abe146103e0578063384f0f02146103f35780633faaaedf146103fc57600080fd5b80632f2ff15d146103ba5780633254ffec146103cd57600080fd5b806314626dc611610280578063218751b211610265578063218751b21461034f578063248a9ca31461038e57806325d8dff2146103b157600080fd5b806314626dc6146103155780631b184f9d1461032857600080fd5b806301ffc9a7146102b25780630baa9ed6146102da5780630e962f00146102f15780630edb8f1414610300575b600080fd5b6102c56102c0366004612a93565b61062e565b60405190151581526020015b60405180910390f35b6102e360065481565b6040519081526020016102d1565b6102e3670de0b6b3a764000081565b61031361030e366004612abd565b610697565b005b610313610323366004612abd565b610705565b6102e37fce0092ff0cd340616a294994459cc804e62fb1c8340c3be39ac1b7d3f6b23aa681565b6103767f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102d1565b6102e361039c366004612abd565b60009081526020819052604090206001015490565b6102e360035481565b6103136103c8366004612af2565b610773565b6102e36103db366004612b36565b61079d565b6103136103ee366004612af2565b610b48565b6102e360075481565b6102e360025481565b6102e3610413366004612b52565b610bd9565b6102e37f000000000000000000000000000000000000000000000000000000000000000081565b61031361044d366004612abd565b610fa9565b610313610460366004612b7e565b611017565b6102e3610473366004612b7e565b61125a565b6102e360055481565b61031361048f366004612abd565b6114c3565b600954610376906001600160a01b031681565b600a54610376906001600160a01b031681565b6104cd6104c8366004612b52565b611510565b6040516102d19190612bc3565b6103136104e8366004612abd565b61186e565b6102c56104fb366004612af2565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b610313610532366004612bd1565b6118bb565b610313610545366004612bd1565b611964565b6102e3600081565b610313610560366004612bec565b611a67565b6102e360015481565b61031361057c366004612b7e565b611ad7565b6103767f000000000000000000000000000000000000000000000000000000000000000081565b6102e36105b6366004612b36565b611b8f565b6102e37f000000000000000000000000000000000000000000000000000000000000000081565b6103136105f0366004612af2565b611f64565b6102e360045481565b6103767f000000000000000000000000000000000000000000000000000000000000000081565b6102e360085481565b60006001600160e01b031982167f7965db0b00000000000000000000000000000000000000000000000000000000148061069157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60006106a281611f89565b816000036106c35760405163ad3e811360e01b815260040160405180910390fd5b60035460408051918252602082018490527f12ddc1ff3f69815846a462538f47abfb36bf7ef940e92e2e583ec367a5a2c912910160405180910390a150600355565b600061071081611f89565b816000036107315760405163ad3e811360e01b815260040160405180910390fd5b60065460408051918252602082018490527f7a90d974a042412816f99c7ae56a1b4a755495513468f4f062f51db220ddcff8910160405180910390a150600655565b60008281526020819052604090206001015461078e81611f89565b6107988383611f96565b505050565b60007fce0092ff0cd340616a294994459cc804e62fb1c8340c3be39ac1b7d3f6b23aa66107c981611f89565b436006546005546107da9190612c3e565b106107f75760405162ea2d0d60e51b815260040160405180910390fd5b82356000036108195760405163ad3e811360e01b815260040160405180910390fd5b6000610823612034565b90508061085c576040517f0a1e5d5d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60035484351115610899576040517f80a7abad00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006108a48561225b565b90506000600a60009054906101000a90046001600160a01b031690506000816001600160a01b03166312b583496040518163ffffffff1660e01b8152600401602060405180830381865afa158015610900573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109249190612c51565b905086358110156109485760405163286a2c0f60e01b815260040160405180910390fd5b604051631dc8976d60e11b815287356004820152600060248201523060448201526001600160a01b03831690633b912eda90606401600060405180830381600087803b15801561099757600080fd5b505af11580156109ab573d6000803e3d6000fd5b5050604051630d2680e960e11b8152893560048201527f0000000000000000000000000000000000000000000000000000000000000000600f0b6024820152604481018690527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169250631a4d01d291506064016020604051808303816000875af1158015610a46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6a9190612c51565b6040517f853c637d000000000000000000000000000000000000000000000000000000008152600481018290529096507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063853c637d90602401600060405180830381600087803b158015610ae857600080fd5b505af1158015610afc573d6000803e3d6000fd5b505050507fdd44e2fa9bcb7980f06c44c119d2cf11c42439d7251d684d6a2fce2c22f9d9758787604051610b31929190612c6a565b60405180910390a150504360055550919392505050565b6001600160a01b0381163314610bcb5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084015b60405180910390fd5b610bd5828261232c565b5050565b600080610be581611f89565b610c1a6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163330886123ab565b60405163b1aa90a160e01b8152600481018590527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063b1aa90a190602401600060405180830381600087803b158015610c7c57600080fd5b505af1158015610c90573d6000803e3d6000fd5b50505050610c9c612a75565b84817f000000000000000000000000000000000000000000000000000000000000000060028110610ccf57610ccf612c8a565b602002015285817f000000000000000000000000000000000000000000000000000000000000000060028110610d0757610d07612c8a565b602002015260405163095ea7b360e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152602482018790527f0000000000000000000000000000000000000000000000000000000000000000169063095ea7b3906044016020604051808303816000875af1158015610d9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbf9190612ca0565b5060405163095ea7b360e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152602482018890527f0000000000000000000000000000000000000000000000000000000000000000169063095ea7b3906044016020604051808303816000875af1158015610e4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e739190612ca0565b50604051630b4c7e4d60e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690630b4c7e4d90610ec29084908890600401612cc2565b6020604051808303816000875af1158015610ee1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f059190612c51565b600a54909350610f42906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811691168561244a565b600a546040516359fe853960e01b8152600481018590526001600160a01b03909116906359fe853990602401600060405180830381600087803b158015610f8857600080fd5b505af1158015610f9c573d6000803e3d6000fd5b5050505050509392505050565b6000610fb481611f89565b81600003610fd55760405163ad3e811360e01b815260040160405180910390fd5b60045460408051918252602082018490527f0f721e7a192f426b300df14cde217174e95d0e58473c7ba46a7db7f42b98e06d910160405180910390a150600455565b600061102281611f89565b600a54604080516312b5834960e01b815290516000926001600160a01b0316916312b583499160048083019260209291908290030181865afa15801561106c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110909190612c51565b9050808411156110b35760405163286a2c0f60e01b815260040160405180910390fd5b600a54604051631dc8976d60e11b815260048101869052600060248201523060448201526001600160a01b0390911690633b912eda90606401600060405180830381600087803b15801561110657600080fd5b505af115801561111a573d6000803e3d6000fd5b50505050611126612a75565b83817f00000000000000000000000000000000000000000000000000000000000000006002811061115957611159612c8a565b6020020152604051630d2680e960e11b8152600481018690527f0000000000000000000000000000000000000000000000000000000000000000600f0b6024820152604481018590526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690631a4d01d2906064016020604051808303816000875af11580156111f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121c9190612c51565b90506112526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016338361244a565b505050505050565b60008061126681611f89565b61129b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163330876123ab565b6112a3612a75565b84817f0000000000000000000000000000000000000000000000000000000000000000600281106112d6576112d6612c8a565b602002015260405163095ea7b360e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152602482018790527f0000000000000000000000000000000000000000000000000000000000000000169063095ea7b3906044016020604051808303816000875af115801561136a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138e9190612ca0565b50604051630b4c7e4d60e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690630b4c7e4d906113dd9084908890600401612cc2565b6020604051808303816000875af11580156113fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114209190612c51565b600a5490935061145d906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811691168561244a565b600a546040516359fe853960e01b8152600481018590526001600160a01b03909116906359fe853990602401600060405180830381600087803b1580156114a357600080fd5b505af11580156114b7573d6000803e3d6000fd5b50505050505092915050565b60006114ce81611f89565b60075460408051918252602082018490527ff1ff039548c606d5cbca9af1ac1ec3a3f50e61b04dd6ed26f943b768d3b11a97910160405180910390a150600755565b611518612a75565b600061152381611f89565b600a54604080516312b5834960e01b815290516000926001600160a01b0316916312b583499160048083019260209291908290030181865afa15801561156d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115919190612c51565b9050808611156115b45760405163286a2c0f60e01b815260040160405180910390fd5b600a54604051631dc8976d60e11b815260048101889052600060248201523060448201526001600160a01b0390911690633b912eda90606401600060405180830381600087803b15801561160757600080fd5b505af115801561161b573d6000803e3d6000fd5b50505050611627612a75565b84817f00000000000000000000000000000000000000000000000000000000000000006002811061165a5761165a612c8a565b602002015285817f00000000000000000000000000000000000000000000000000000000000000006002811061169257611692612c8a565b60200201526040517f5b36389c0000000000000000000000000000000000000000000000000000000081526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690635b36389c906116fe908a908590600401612cd0565b60408051808303816000875af115801561171c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117409190612cfa565b93507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663853c637d857f0000000000000000000000000000000000000000000000000000000000000000600281106117a3576117a3612c8a565b60200201516040518263ffffffff1660e01b81526004016117c691815260200190565b600060405180830381600087803b1580156117e057600080fd5b505af11580156117f4573d6000803e3d6000fd5b5050505061186433857f00000000000000000000000000000000000000000000000000000000000000006002811061182e5761182e612c8a565b60200201516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016919061244a565b5050509392505050565b600061187981611f89565b60085460408051918252602082018490527fd7b32672153e1bad603087075a6bb425d193f4ea7279403e9ba731b11719babc910160405180910390a150600855565b60006118c681611f89565b6001600160a01b0382166118ed57604051638474420160e01b815260040160405180910390fd5b600a54604080516001600160a01b03928316815291841660208301527fb5f5df1402f86e2a305430d302ebf4e31d1c01994e4de4f5d0a0223590afa99a910160405180910390a150600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600061196f81611f89565b6001600160a01b03821661199657604051638474420160e01b815260040160405180910390fd5b6009546001600160a01b031680156119d2576119d27fce0092ff0cd340616a294994459cc804e62fb1c8340c3be39ac1b7d3f6b23aa68261232c565b604080516001600160a01b038084168252851660208201527f928042a29e3b554113fbd7e636232502b19a82f9396b29e23dd354a7678960b3910160405180910390a16009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385161790556107987fce0092ff0cd340616a294994459cc804e62fb1c8340c3be39ac1b7d3f6b23aa684611f96565b6000611a7281611f89565b611a866001600160a01b038516848461244a565b604080516001600160a01b038087168252851660208201529081018390527f76fb5f9555be8170fef33d7b413bcbe740a6a96cd162b1234b602329b0c84e329060600160405180910390a150505050565b6000611ae281611f89565b670de0b6b3a764000083101580611b015750670de0b6b3a76400008210155b15611b38576040517f950339e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001546002546040805192835260208301869052820152606081018390527f98f42c2328cab23eb829ab706c4e49d328495effe939021d93a6771120bbe6e99060800160405180910390a150600191909155600255565b60007fce0092ff0cd340616a294994459cc804e62fb1c8340c3be39ac1b7d3f6b23aa6611bbb81611f89565b43600654600554611bcc9190612c3e565b10611be95760405162ea2d0d60e51b815260040160405180910390fd5b8235600003611c0b5760405163ad3e811360e01b815260040160405180910390fd5b6000611c15612034565b90508015611c4f576040517fb704a3f200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60045484351115611c8c576040517f69dfd96000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c9785612493565b60405163b1aa90a160e01b8152863560048201529091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063b1aa90a190602401600060405180830381600087803b158015611cfc57600080fd5b505af1158015611d10573d6000803e3d6000fd5b50505050611d1c612a75565b8535817f000000000000000000000000000000000000000000000000000000000000000060028110611d5057611d50612c8a565b602002015260405163095ea7b360e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166004830152873560248301527f0000000000000000000000000000000000000000000000000000000000000000169063095ea7b3906044016020604051808303816000875af1158015611de4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e089190612ca0565b50604051630b4c7e4d60e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690630b4c7e4d90611e579084908690600401612cc2565b6020604051808303816000875af1158015611e76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9a9190612c51565b600a549095506001600160a01b0390811690611ed9907f000000000000000000000000000000000000000000000000000000000000000016828861244a565b6040516359fe853960e01b8152600481018790526001600160a01b038216906359fe853990602401600060405180830381600087803b158015611f1b57600080fd5b505af1158015611f2f573d6000803e3d6000fd5b505050507f124d4b0df6a38bce8711b2c90474241c912e0ade09c83aae3d0ec61460c439cc8787604051610b31929190612c6a565b600082815260208190526040902060010154611f7f81611f89565b610798838361232c565b611f938133612545565b50565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16610bd5576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055611ff03390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b604051634903b0d160e01b81527f0000000000000000000000000000000000000000000000000000000000000000600482015260009081906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690634903b0d190602401602060405180830381865afa1580156120bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120e19190612c51565b604051634903b0d160e01b81527f000000000000000000000000000000000000000000000000000000000000000060048201529091506000906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690634903b0d190602401602060405180830381865afa15801561216b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061218f9190612c51565b905081158061219c575080155b156121d3576040517ff3ca27f100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006121df8284612c3e565b6121f1670de0b6b3a764000084612d88565b6121fb9190612d9f565b90506007548111156122105760019350612255565b6008548110156122235760009350612255565b6040517f6693124d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505090565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663bb7b8b806040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122e09190612c51565b9050600061230d670de0b6b3a76400006122fb863585612d88565b6123059190612d9f565b6001546125b8565b90508084602001351115612325575050506020013590565b9392505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1615610bd5576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6040516001600160a01b03808516602483015283166044820152606481018290526124449085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b0319909316929092179091526125f3565b50505050565b6040516001600160a01b0383166024820152604481018290526107989084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064016123f8565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663bb7b8b806040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125189190612c51565b9050600061230d826125338635670de0b6b3a7640000612d88565b61253d9190612d9f565b6002546125b8565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16610bd557612576816126db565b6125818360206126ed565b604051602001612592929190612de5565b60408051601f198184030181529082905262461bcd60e51b8252610bc291600401612e66565b600081156125ec57670de0b6b3a76400006125d38382612e99565b6125dd9085612d88565b6125e79190612d9f565b612325565b5090919050565b6000612648826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166128ce9092919063ffffffff16565b90508051600014806126695750808060200190518101906126699190612ca0565b6107985760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610bc2565b60606106916001600160a01b03831660145b606060006126fc836002612d88565b612707906002612c3e565b67ffffffffffffffff81111561271f5761271f612ce4565b6040519080825280601f01601f191660200182016040528015612749576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061278057612780612c8a565b60200101906001600160f81b031916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106127cb576127cb612c8a565b60200101906001600160f81b031916908160001a90535060006127ef846002612d88565b6127fa906001612c3e565b90505b600181111561287f577f303132333435363738396162636465660000000000000000000000000000000085600f166010811061283b5761283b612c8a565b1a60f81b82828151811061285157612851612c8a565b60200101906001600160f81b031916908160001a90535060049490941c9361287881612eac565b90506127fd565b5083156123255760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610bc2565b60606128dd84846000856128e5565b949350505050565b60608247101561295d5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610bc2565b600080866001600160a01b031685876040516129799190612ec3565b60006040518083038185875af1925050503d80600081146129b6576040519150601f19603f3d011682016040523d82523d6000602084013e6129bb565b606091505b50915091506129cc878383876129d7565b979650505050505050565b60608315612a46578251600003612a3f576001600160a01b0385163b612a3f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bc2565b50816128dd565b6128dd8383815115612a5b5781518083602001fd5b8060405162461bcd60e51b8152600401610bc29190612e66565b60405180604001604052806002906020820280368337509192915050565b600060208284031215612aa557600080fd5b81356001600160e01b03198116811461232557600080fd5b600060208284031215612acf57600080fd5b5035919050565b80356001600160a01b0381168114612aed57600080fd5b919050565b60008060408385031215612b0557600080fd5b82359150612b1560208401612ad6565b90509250929050565b600060408284031215612b3057600080fd5b50919050565b600060408284031215612b4857600080fd5b6123258383612b1e565b600080600060608486031215612b6757600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612b9157600080fd5b50508035926020909101359150565b8060005b6002811015612444578151845260209384019390910190600101612ba4565b604081016106918284612ba0565b600060208284031215612be357600080fd5b61232582612ad6565b600080600060608486031215612c0157600080fd5b612c0a84612ad6565b9250612c1860208501612ad6565b9150604084013590509250925092565b634e487b7160e01b600052601160045260246000fd5b8082018082111561069157610691612c28565b600060208284031215612c6357600080fd5b5051919050565b8235815260208084013590820152606081015b8260408301529392505050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612cb257600080fd5b8151801515811461232557600080fd5b60608101612c7d8285612ba0565b828152606081016123256020830184612ba0565b634e487b7160e01b600052604160045260246000fd5b600060408284031215612d0c57600080fd5b82601f830112612d1b57600080fd5b6040516040810181811067ffffffffffffffff82111715612d4c57634e487b7160e01b600052604160045260246000fd5b8060405250806040840185811115612d6357600080fd5b845b81811015612d7d578051835260209283019201612d65565b509195945050505050565b808202811582820484141761069157610691612c28565b600082612dbc57634e487b7160e01b600052601260045260246000fd5b500490565b60005b83811015612ddc578181015183820152602001612dc4565b50506000910152565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612e1d816017850160208801612dc1565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351612e5a816028840160208801612dc1565b01602801949350505050565b6020815260008251806020840152612e85816040850160208701612dc1565b601f01601f19169190910160400192915050565b8181038181111561069157610691612c28565b600081612ebb57612ebb612c28565b506000190190565b60008251612ed5818460208701612dc1565b919091019291505056fea26469706673582212207eb0c93a56d3dd8273d82d9ccff2133c9845b196c07c5ffc7ac13c56dd74676f64736f6c634300081300330000000000000000000000002b01d4fdb87eb7f2399e5d68631d8a939a32378600000000000000000000000004c154b66cb340f3ae24111cc767e0184ed00cc60000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f94000000000000000000000000c7a761ac7a7e54dc3a3875e83c4bdfd4246e5ab60000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102ad5760003560e01c80637517f9b81161017b578063a7229fd9116100d8578063c7e225991161008c578063df7969f711610071578063df7969f7146105f5578063ea67cabc146105fe578063f364f61a1461062557600080fd5b8063c7e22599146105bb578063d547741f146105e257600080fd5b8063bc9ef3e0116100bd578063bc9ef3e01461056e578063c1fe3e4814610581578063c7480c15146105a857600080fd5b8063a7229fd914610552578063b99d50211461056557600080fd5b80638e85c0121161012f578063965f813c11610114578063965f813c146105245780639d35900214610537578063a217fddf1461054a57600080fd5b80638e85c012146104da57806391d14854146104ed57600080fd5b80637f4c91c5116101605780637f4c91c5146104945780638173b6f8146104a7578063857620e1146104ba57600080fd5b80637517f9b8146104785780637b5640f61461048157600080fd5b80632f2ff15d11610229578063422f1043116101dd5780635b262b24116101c25780635b262b241461043f57806361b75fb4146104525780636f39da031461046557600080fd5b8063422f10431461040557806350bb2efb1461041857600080fd5b806336568abe1161020e57806336568abe146103e0578063384f0f02146103f35780633faaaedf146103fc57600080fd5b80632f2ff15d146103ba5780633254ffec146103cd57600080fd5b806314626dc611610280578063218751b211610265578063218751b21461034f578063248a9ca31461038e57806325d8dff2146103b157600080fd5b806314626dc6146103155780631b184f9d1461032857600080fd5b806301ffc9a7146102b25780630baa9ed6146102da5780630e962f00146102f15780630edb8f1414610300575b600080fd5b6102c56102c0366004612a93565b61062e565b60405190151581526020015b60405180910390f35b6102e360065481565b6040519081526020016102d1565b6102e3670de0b6b3a764000081565b61031361030e366004612abd565b610697565b005b610313610323366004612abd565b610705565b6102e37fce0092ff0cd340616a294994459cc804e62fb1c8340c3be39ac1b7d3f6b23aa681565b6103767f0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f9481565b6040516001600160a01b0390911681526020016102d1565b6102e361039c366004612abd565b60009081526020819052604090206001015490565b6102e360035481565b6103136103c8366004612af2565b610773565b6102e36103db366004612b36565b61079d565b6103136103ee366004612af2565b610b48565b6102e360075481565b6102e360025481565b6102e3610413366004612b52565b610bd9565b6102e37f000000000000000000000000000000000000000000000000000000000000000181565b61031361044d366004612abd565b610fa9565b610313610460366004612b7e565b611017565b6102e3610473366004612b7e565b61125a565b6102e360055481565b61031361048f366004612abd565b6114c3565b600954610376906001600160a01b031681565b600a54610376906001600160a01b031681565b6104cd6104c8366004612b52565b611510565b6040516102d19190612bc3565b6103136104e8366004612abd565b61186e565b6102c56104fb366004612af2565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b610313610532366004612bd1565b6118bb565b610313610545366004612bd1565b611964565b6102e3600081565b610313610560366004612bec565b611a67565b6102e360015481565b61031361057c366004612b7e565b611ad7565b6103767f00000000000000000000000004c154b66cb340f3ae24111cc767e0184ed00cc681565b6102e36105b6366004612b36565b611b8f565b6102e37f000000000000000000000000000000000000000000000000000000000000000081565b6103136105f0366004612af2565b611f64565b6102e360045481565b6103767f0000000000000000000000002b01d4fdb87eb7f2399e5d68631d8a939a32378681565b6102e360085481565b60006001600160e01b031982167f7965db0b00000000000000000000000000000000000000000000000000000000148061069157507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60006106a281611f89565b816000036106c35760405163ad3e811360e01b815260040160405180910390fd5b60035460408051918252602082018490527f12ddc1ff3f69815846a462538f47abfb36bf7ef940e92e2e583ec367a5a2c912910160405180910390a150600355565b600061071081611f89565b816000036107315760405163ad3e811360e01b815260040160405180910390fd5b60065460408051918252602082018490527f7a90d974a042412816f99c7ae56a1b4a755495513468f4f062f51db220ddcff8910160405180910390a150600655565b60008281526020819052604090206001015461078e81611f89565b6107988383611f96565b505050565b60007fce0092ff0cd340616a294994459cc804e62fb1c8340c3be39ac1b7d3f6b23aa66107c981611f89565b436006546005546107da9190612c3e565b106107f75760405162ea2d0d60e51b815260040160405180910390fd5b82356000036108195760405163ad3e811360e01b815260040160405180910390fd5b6000610823612034565b90508061085c576040517f0a1e5d5d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60035484351115610899576040517f80a7abad00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006108a48561225b565b90506000600a60009054906101000a90046001600160a01b031690506000816001600160a01b03166312b583496040518163ffffffff1660e01b8152600401602060405180830381865afa158015610900573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109249190612c51565b905086358110156109485760405163286a2c0f60e01b815260040160405180910390fd5b604051631dc8976d60e11b815287356004820152600060248201523060448201526001600160a01b03831690633b912eda90606401600060405180830381600087803b15801561099757600080fd5b505af11580156109ab573d6000803e3d6000fd5b5050604051630d2680e960e11b8152893560048201527f0000000000000000000000000000000000000000000000000000000000000000600f0b6024820152604481018690527f0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f946001600160a01b03169250631a4d01d291506064016020604051808303816000875af1158015610a46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6a9190612c51565b6040517f853c637d000000000000000000000000000000000000000000000000000000008152600481018290529096507f0000000000000000000000002b01d4fdb87eb7f2399e5d68631d8a939a3237866001600160a01b03169063853c637d90602401600060405180830381600087803b158015610ae857600080fd5b505af1158015610afc573d6000803e3d6000fd5b505050507fdd44e2fa9bcb7980f06c44c119d2cf11c42439d7251d684d6a2fce2c22f9d9758787604051610b31929190612c6a565b60405180910390a150504360055550919392505050565b6001600160a01b0381163314610bcb5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084015b60405180910390fd5b610bd5828261232c565b5050565b600080610be581611f89565b610c1a6001600160a01b037f00000000000000000000000004c154b66cb340f3ae24111cc767e0184ed00cc6163330886123ab565b60405163b1aa90a160e01b8152600481018590527f0000000000000000000000002b01d4fdb87eb7f2399e5d68631d8a939a3237866001600160a01b03169063b1aa90a190602401600060405180830381600087803b158015610c7c57600080fd5b505af1158015610c90573d6000803e3d6000fd5b50505050610c9c612a75565b84817f000000000000000000000000000000000000000000000000000000000000000060028110610ccf57610ccf612c8a565b602002015285817f000000000000000000000000000000000000000000000000000000000000000160028110610d0757610d07612c8a565b602002015260405163095ea7b360e01b81526001600160a01b037f0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f9481166004830152602482018790527f0000000000000000000000002b01d4fdb87eb7f2399e5d68631d8a939a323786169063095ea7b3906044016020604051808303816000875af1158015610d9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbf9190612ca0565b5060405163095ea7b360e01b81526001600160a01b037f0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f9481166004830152602482018890527f00000000000000000000000004c154b66cb340f3ae24111cc767e0184ed00cc6169063095ea7b3906044016020604051808303816000875af1158015610e4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e739190612ca0565b50604051630b4c7e4d60e01b81526001600160a01b037f0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f941690630b4c7e4d90610ec29084908890600401612cc2565b6020604051808303816000875af1158015610ee1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f059190612c51565b600a54909350610f42906001600160a01b037f0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f94811691168561244a565b600a546040516359fe853960e01b8152600481018590526001600160a01b03909116906359fe853990602401600060405180830381600087803b158015610f8857600080fd5b505af1158015610f9c573d6000803e3d6000fd5b5050505050509392505050565b6000610fb481611f89565b81600003610fd55760405163ad3e811360e01b815260040160405180910390fd5b60045460408051918252602082018490527f0f721e7a192f426b300df14cde217174e95d0e58473c7ba46a7db7f42b98e06d910160405180910390a150600455565b600061102281611f89565b600a54604080516312b5834960e01b815290516000926001600160a01b0316916312b583499160048083019260209291908290030181865afa15801561106c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110909190612c51565b9050808411156110b35760405163286a2c0f60e01b815260040160405180910390fd5b600a54604051631dc8976d60e11b815260048101869052600060248201523060448201526001600160a01b0390911690633b912eda90606401600060405180830381600087803b15801561110657600080fd5b505af115801561111a573d6000803e3d6000fd5b50505050611126612a75565b83817f00000000000000000000000000000000000000000000000000000000000000016002811061115957611159612c8a565b6020020152604051630d2680e960e11b8152600481018690527f0000000000000000000000000000000000000000000000000000000000000001600f0b6024820152604481018590526000907f0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f946001600160a01b031690631a4d01d2906064016020604051808303816000875af11580156111f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061121c9190612c51565b90506112526001600160a01b037f00000000000000000000000004c154b66cb340f3ae24111cc767e0184ed00cc616338361244a565b505050505050565b60008061126681611f89565b61129b6001600160a01b037f00000000000000000000000004c154b66cb340f3ae24111cc767e0184ed00cc6163330876123ab565b6112a3612a75565b84817f0000000000000000000000000000000000000000000000000000000000000001600281106112d6576112d6612c8a565b602002015260405163095ea7b360e01b81526001600160a01b037f0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f9481166004830152602482018790527f00000000000000000000000004c154b66cb340f3ae24111cc767e0184ed00cc6169063095ea7b3906044016020604051808303816000875af115801561136a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061138e9190612ca0565b50604051630b4c7e4d60e01b81526001600160a01b037f0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f941690630b4c7e4d906113dd9084908890600401612cc2565b6020604051808303816000875af11580156113fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114209190612c51565b600a5490935061145d906001600160a01b037f0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f94811691168561244a565b600a546040516359fe853960e01b8152600481018590526001600160a01b03909116906359fe853990602401600060405180830381600087803b1580156114a357600080fd5b505af11580156114b7573d6000803e3d6000fd5b50505050505092915050565b60006114ce81611f89565b60075460408051918252602082018490527ff1ff039548c606d5cbca9af1ac1ec3a3f50e61b04dd6ed26f943b768d3b11a97910160405180910390a150600755565b611518612a75565b600061152381611f89565b600a54604080516312b5834960e01b815290516000926001600160a01b0316916312b583499160048083019260209291908290030181865afa15801561156d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115919190612c51565b9050808611156115b45760405163286a2c0f60e01b815260040160405180910390fd5b600a54604051631dc8976d60e11b815260048101889052600060248201523060448201526001600160a01b0390911690633b912eda90606401600060405180830381600087803b15801561160757600080fd5b505af115801561161b573d6000803e3d6000fd5b50505050611627612a75565b84817f00000000000000000000000000000000000000000000000000000000000000006002811061165a5761165a612c8a565b602002015285817f00000000000000000000000000000000000000000000000000000000000000016002811061169257611692612c8a565b60200201526040517f5b36389c0000000000000000000000000000000000000000000000000000000081526001600160a01b037f0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f941690635b36389c906116fe908a908590600401612cd0565b60408051808303816000875af115801561171c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117409190612cfa565b93507f0000000000000000000000002b01d4fdb87eb7f2399e5d68631d8a939a3237866001600160a01b031663853c637d857f0000000000000000000000000000000000000000000000000000000000000000600281106117a3576117a3612c8a565b60200201516040518263ffffffff1660e01b81526004016117c691815260200190565b600060405180830381600087803b1580156117e057600080fd5b505af11580156117f4573d6000803e3d6000fd5b5050505061186433857f00000000000000000000000000000000000000000000000000000000000000016002811061182e5761182e612c8a565b60200201516001600160a01b037f00000000000000000000000004c154b66cb340f3ae24111cc767e0184ed00cc616919061244a565b5050509392505050565b600061187981611f89565b60085460408051918252602082018490527fd7b32672153e1bad603087075a6bb425d193f4ea7279403e9ba731b11719babc910160405180910390a150600855565b60006118c681611f89565b6001600160a01b0382166118ed57604051638474420160e01b815260040160405180910390fd5b600a54604080516001600160a01b03928316815291841660208301527fb5f5df1402f86e2a305430d302ebf4e31d1c01994e4de4f5d0a0223590afa99a910160405180910390a150600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600061196f81611f89565b6001600160a01b03821661199657604051638474420160e01b815260040160405180910390fd5b6009546001600160a01b031680156119d2576119d27fce0092ff0cd340616a294994459cc804e62fb1c8340c3be39ac1b7d3f6b23aa68261232c565b604080516001600160a01b038084168252851660208201527f928042a29e3b554113fbd7e636232502b19a82f9396b29e23dd354a7678960b3910160405180910390a16009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0385161790556107987fce0092ff0cd340616a294994459cc804e62fb1c8340c3be39ac1b7d3f6b23aa684611f96565b6000611a7281611f89565b611a866001600160a01b038516848461244a565b604080516001600160a01b038087168252851660208201529081018390527f76fb5f9555be8170fef33d7b413bcbe740a6a96cd162b1234b602329b0c84e329060600160405180910390a150505050565b6000611ae281611f89565b670de0b6b3a764000083101580611b015750670de0b6b3a76400008210155b15611b38576040517f950339e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001546002546040805192835260208301869052820152606081018390527f98f42c2328cab23eb829ab706c4e49d328495effe939021d93a6771120bbe6e99060800160405180910390a150600191909155600255565b60007fce0092ff0cd340616a294994459cc804e62fb1c8340c3be39ac1b7d3f6b23aa6611bbb81611f89565b43600654600554611bcc9190612c3e565b10611be95760405162ea2d0d60e51b815260040160405180910390fd5b8235600003611c0b5760405163ad3e811360e01b815260040160405180910390fd5b6000611c15612034565b90508015611c4f576040517fb704a3f200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60045484351115611c8c576040517f69dfd96000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c9785612493565b60405163b1aa90a160e01b8152863560048201529091507f0000000000000000000000002b01d4fdb87eb7f2399e5d68631d8a939a3237866001600160a01b03169063b1aa90a190602401600060405180830381600087803b158015611cfc57600080fd5b505af1158015611d10573d6000803e3d6000fd5b50505050611d1c612a75565b8535817f000000000000000000000000000000000000000000000000000000000000000060028110611d5057611d50612c8a565b602002015260405163095ea7b360e01b81526001600160a01b037f0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f9481166004830152873560248301527f0000000000000000000000002b01d4fdb87eb7f2399e5d68631d8a939a323786169063095ea7b3906044016020604051808303816000875af1158015611de4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e089190612ca0565b50604051630b4c7e4d60e01b81526001600160a01b037f0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f941690630b4c7e4d90611e579084908690600401612cc2565b6020604051808303816000875af1158015611e76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9a9190612c51565b600a549095506001600160a01b0390811690611ed9907f0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f9416828861244a565b6040516359fe853960e01b8152600481018790526001600160a01b038216906359fe853990602401600060405180830381600087803b158015611f1b57600080fd5b505af1158015611f2f573d6000803e3d6000fd5b505050507f124d4b0df6a38bce8711b2c90474241c912e0ade09c83aae3d0ec61460c439cc8787604051610b31929190612c6a565b600082815260208190526040902060010154611f7f81611f89565b610798838361232c565b611f938133612545565b50565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16610bd5576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055611ff03390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b604051634903b0d160e01b81527f0000000000000000000000000000000000000000000000000000000000000001600482015260009081906001600160a01b037f0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f941690634903b0d190602401602060405180830381865afa1580156120bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120e19190612c51565b604051634903b0d160e01b81527f000000000000000000000000000000000000000000000000000000000000000060048201529091506000906001600160a01b037f0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f941690634903b0d190602401602060405180830381865afa15801561216b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061218f9190612c51565b905081158061219c575080155b156121d3576040517ff3ca27f100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006121df8284612c3e565b6121f1670de0b6b3a764000084612d88565b6121fb9190612d9f565b90506007548111156122105760019350612255565b6008548110156122235760009350612255565b6040517f6693124d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505090565b6000807f0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f946001600160a01b031663bb7b8b806040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122e09190612c51565b9050600061230d670de0b6b3a76400006122fb863585612d88565b6123059190612d9f565b6001546125b8565b90508084602001351115612325575050506020013590565b9392505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1615610bd5576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6040516001600160a01b03808516602483015283166044820152606481018290526124449085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b0319909316929092179091526125f3565b50505050565b6040516001600160a01b0383166024820152604481018290526107989084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064016123f8565b6000807f0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f946001600160a01b031663bb7b8b806040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125189190612c51565b9050600061230d826125338635670de0b6b3a7640000612d88565b61253d9190612d9f565b6002546125b8565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16610bd557612576816126db565b6125818360206126ed565b604051602001612592929190612de5565b60408051601f198184030181529082905262461bcd60e51b8252610bc291600401612e66565b600081156125ec57670de0b6b3a76400006125d38382612e99565b6125dd9085612d88565b6125e79190612d9f565b612325565b5090919050565b6000612648826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166128ce9092919063ffffffff16565b90508051600014806126695750808060200190518101906126699190612ca0565b6107985760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610bc2565b60606106916001600160a01b03831660145b606060006126fc836002612d88565b612707906002612c3e565b67ffffffffffffffff81111561271f5761271f612ce4565b6040519080825280601f01601f191660200182016040528015612749576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061278057612780612c8a565b60200101906001600160f81b031916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106127cb576127cb612c8a565b60200101906001600160f81b031916908160001a90535060006127ef846002612d88565b6127fa906001612c3e565b90505b600181111561287f577f303132333435363738396162636465660000000000000000000000000000000085600f166010811061283b5761283b612c8a565b1a60f81b82828151811061285157612851612c8a565b60200101906001600160f81b031916908160001a90535060049490941c9361287881612eac565b90506127fd565b5083156123255760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610bc2565b60606128dd84846000856128e5565b949350505050565b60608247101561295d5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610bc2565b600080866001600160a01b031685876040516129799190612ec3565b60006040518083038185875af1925050503d80600081146129b6576040519150601f19603f3d011682016040523d82523d6000602084013e6129bb565b606091505b50915091506129cc878383876129d7565b979650505050505050565b60608315612a46578251600003612a3f576001600160a01b0385163b612a3f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bc2565b50816128dd565b6128dd8383815115612a5b5781518083602001fd5b8060405162461bcd60e51b8152600401610bc29190612e66565b60405180604001604052806002906020820280368337509192915050565b600060208284031215612aa557600080fd5b81356001600160e01b03198116811461232557600080fd5b600060208284031215612acf57600080fd5b5035919050565b80356001600160a01b0381168114612aed57600080fd5b919050565b60008060408385031215612b0557600080fd5b82359150612b1560208401612ad6565b90509250929050565b600060408284031215612b3057600080fd5b50919050565b600060408284031215612b4857600080fd5b6123258383612b1e565b600080600060608486031215612b6757600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612b9157600080fd5b50508035926020909101359150565b8060005b6002811015612444578151845260209384019390910190600101612ba4565b604081016106918284612ba0565b600060208284031215612be357600080fd5b61232582612ad6565b600080600060608486031215612c0157600080fd5b612c0a84612ad6565b9250612c1860208501612ad6565b9150604084013590509250925092565b634e487b7160e01b600052601160045260246000fd5b8082018082111561069157610691612c28565b600060208284031215612c6357600080fd5b5051919050565b8235815260208084013590820152606081015b8260408301529392505050565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612cb257600080fd5b8151801515811461232557600080fd5b60608101612c7d8285612ba0565b828152606081016123256020830184612ba0565b634e487b7160e01b600052604160045260246000fd5b600060408284031215612d0c57600080fd5b82601f830112612d1b57600080fd5b6040516040810181811067ffffffffffffffff82111715612d4c57634e487b7160e01b600052604160045260246000fd5b8060405250806040840185811115612d6357600080fd5b845b81811015612d7d578051835260209283019201612d65565b509195945050505050565b808202811582820484141761069157610691612c28565b600082612dbc57634e487b7160e01b600052601260045260246000fd5b500490565b60005b83811015612ddc578181015183820152602001612dc4565b50506000910152565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612e1d816017850160208801612dc1565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351612e5a816028840160208801612dc1565b01602801949350505050565b6020815260008251806020840152612e85816040850160208701612dc1565b601f01601f19169190910160400192915050565b8181038181111561069157610691612c28565b600081612ebb57612ebb612c28565b506000190190565b60008251612ed5818460208701612dc1565b919091019291505056fea26469706673582212207eb0c93a56d3dd8273d82d9ccff2133c9845b196c07c5ffc7ac13c56dd74676f64736f6c63430008130033

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

0000000000000000000000002b01d4fdb87eb7f2399e5d68631d8a939a32378600000000000000000000000004c154b66cb340f3ae24111cc767e0184ed00cc60000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f94000000000000000000000000c7a761ac7a7e54dc3a3875e83c4bdfd4246e5ab60000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _xETH (address): 0x2b01d4FdB87eb7F2399E5D68631d8A939a323786
Arg [1] : _stETH (address): 0x04C154b66CB340F3Ae24111CC767e0184Ed00Cc6
Arg [2] : _curvePool (address): 0x3C91EAeac42DfaEad5F356167c52837e443b9f94
Arg [3] : _cvxStaker (address): 0xc7A761aC7A7E54Dc3A3875E83c4bDFd4246E5ab6
Arg [4] : _xETHIndex (uint256): 0

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000002b01d4fdb87eb7f2399e5d68631d8a939a323786
Arg [1] : 00000000000000000000000004c154b66cb340f3ae24111cc767e0184ed00cc6
Arg [2] : 0000000000000000000000003c91eaeac42dfaead5f356167c52837e443b9f94
Arg [3] : 000000000000000000000000c7a761ac7a7e54dc3a3875e83c4bdfd4246e5ab6
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000


Block Uncle Number Difficulty Gas Used Reward
View All Uncles
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.