ETH Price: $3,302.65 (-3.18%)
Gas: 20 Gwei

Contract

0xc10d2E42dE16719523aAA9277d1b9290aA6c3Ad5
 
Transaction Hash
Method
Block
From
To
Value
Approve190777112024-01-24 16:32:47160 days ago1706113967IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0003657915.0155986
Approve165258102023-01-31 9:07:47519 days ago1675156067IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0003584714.7152172
Approve159683502022-11-14 12:43:47597 days ago1668429827IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0004196217.22528223
Withdraw149261352022-06-08 10:13:50756 days ago1654683230IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0067592952.7048788
Withdraw144610042022-03-26 9:22:40830 days ago1648286560IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0024529322.06910876
Transfer143463532022-03-08 13:03:19848 days ago1646744599IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0009028130.11194682
Withdraw142658202022-02-24 1:19:10860 days ago1645665550IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.007858870.70581526
Approve140814802022-01-26 13:17:36889 days ago1643203056IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0040114786
Approve139397482022-01-04 15:21:58911 days ago1641309718IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0036461378.16781232
Approve138670122021-12-24 9:11:36922 days ago1640337096IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0024931853.45030133
Approve138452892021-12-21 0:11:31925 days ago1640045491IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0028224460.50903581
Approve138089862021-12-15 9:47:30931 days ago1639561650IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.001865840
Approve137768722021-12-10 10:33:44936 days ago1639132424IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0025166453.95310792
Approve137576722021-12-07 9:07:45939 days ago1638868065IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0040177786.13511096
Approve137519682021-12-06 11:15:42940 days ago1638789342IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0028570361.25066659
Approve137519682021-12-06 11:15:42940 days ago1638789342IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0028570361.25066659
Approve137519682021-12-06 11:15:42940 days ago1638789342IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0028570361.25066659
Approve137519682021-12-06 11:15:42940 days ago1638789342IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0028570361.25066659
Approve137519682021-12-06 11:15:42940 days ago1638789342IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0028570361.25066659
Approve137478712021-12-05 19:35:43940 days ago1638732943IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0043882294.07704988
Approve137287992021-12-02 18:05:31943 days ago1638468331IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.00547406118.17680247
Approve137267472021-12-02 10:10:41944 days ago1638439841IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0041980590
Approve137212472021-12-01 13:06:49945 days ago1638364009IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0039119683.86673824
Approve137212452021-12-01 13:06:42945 days ago1638364002IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0044312795
Approve137212412021-12-01 13:05:52945 days ago1638363952IN
0xc10d2E42...0aA6c3Ad5
0 ETH0.0044795396.03456915
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
132752702021-09-22 11:21:101015 days ago1632309670  Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Vault

Compiler Version
v0.7.5+commit.eb77ed08

Optimization Enabled:
Yes with 50 runs

Other Settings:
default evmVersion
File 1 of 28 : Vault.sol
pragma solidity >=0.7.5;
pragma abicoder v2;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@openzeppelin/contracts/math/Math.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import "@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3MintCallback.sol";
import "@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol";
import "@uniswap/v3-periphery/contracts/interfaces/ISwapRouter.sol";
import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol";
import "@uniswap/v3-core/contracts/libraries/TickMath.sol";
import "@uniswap/v3-periphery/contracts/libraries/LiquidityAmounts.sol";
import "@uniswap/v3-periphery/contracts/libraries/PositionKey.sol";

import "./interfaces/IERC20Metadata.sol";
import "./interfaces/IVault.sol";
import "./interfaces/IFactory.sol";

import "./libraries/LongMath.sol";

contract Vault is
    IVault,
    IUniswapV3MintCallback,
    IUniswapV3SwapCallback,
    ERC20,
    ReentrancyGuard
{
    using SafeMath for uint256;
    using LongMath for uint256;
    using SafeERC20 for IERC20Metadata;
    // using VaultMath for IVault;

    IFactory public override factory;
    ISwapRouter public swapRouter =
        ISwapRouter(0xE592427A0AEce92De3Edee1F18E0157C05861564);

    IUniswapV3Pool public immutable override pool;
    IERC20Metadata public immutable override token0;
    IERC20Metadata public immutable override token1;

    bool public pauseStrategy;
    bool public pauseUser;

    uint256 public protocolFee;
    uint256 public strategyFee;
    uint256 public maxTotalSupply;

    uint256 public accruedProtocolFees0;
    uint256 public accruedStrategyFees0;
    uint256 public accruedProtocolFees1;
    uint256 public accruedStrategyFees1;

    int24 public immutable override tickSpacing;
    int24 public override baseLower;
    int24 public override baseUpper;
    int24 public override limitLower;
    int24 public override limitUpper;

    /**
     * @dev Needs to be called by the Factory contract
     * @param _pool Underlying Uniswap V3 pool
     * @param _protocolFee Protocol fee expressed as multiple of 1e-6
     * @param _strategyFee Protocol fee expressed as multiple of 1e-6
     * @param _maxTotalSupply Cap on total supply
     */
    constructor(
        address _pool,
        uint256 _protocolFee,
        uint256 _strategyFee,
        uint256 _maxTotalSupply
    ) ERC20("Aastra Vault", "AASTRA-ETHPUT") {
        factory = IFactory(msg.sender);
        pool = IUniswapV3Pool(_pool);
        token0 = IERC20Metadata(IUniswapV3Pool(_pool).token0());
        token1 = IERC20Metadata(IUniswapV3Pool(_pool).token1());
        tickSpacing = IUniswapV3Pool(_pool).tickSpacing();

        protocolFee = _protocolFee;
        strategyFee = _strategyFee;

        if (_maxTotalSupply > 0) maxTotalSupply = _maxTotalSupply;
        else maxTotalSupply = type(uint256).max;
    }

    /// @notice Fetches the governance address from factory.
    function governance() public view returns (address) {
        return factory.governance();
    }

    /// @notice Fetches the vault manager from factory
    function strategy() public view override returns (address) {
        return factory.vaultManager(address(this));
    }

    /// @notice Fetches the current router address from factory.
    function router() public view override returns (address) {
        return factory.router();
    }

    /// @inheritdoc IVault
    function deposit(
        uint256 amount0Desired,
        uint256 amount1Desired,
        uint256 amount0Min,
        uint256 amount1Min,
        address to
    )
        external
        override
        nonReentrant
        onlyUser
        returns (
            uint256 shares,
            uint256 amount0,
            uint256 amount1
        )
    {
        require(
            amount0Desired > 0 || amount1Desired > 0,
            "amount0Desired or amount1Desired"
        );
        require(to != address(0) && to != address(this), "to");

        // Poke positions so vault's current holdings are up-to-date
        poke(baseLower, baseUpper);
        poke(limitLower, limitUpper);

        // Calculate amounts proportional to vault's holdings
        (shares, amount0, amount1) = _calcSharesAndAmounts(
            amount0Desired,
            amount1Desired
        );

        require(shares > 0, "shares");
        require(amount0 >= amount0Min, "amount0Min");
        require(amount1 >= amount1Min, "amount1Min");

        // Pull in tokens from sender
        if (amount0 > 0)
            token0.safeTransferFrom(msg.sender, address(this), amount0);
        if (amount1 > 0)
            token1.safeTransferFrom(msg.sender, address(this), amount1);

        (uint256 baseAmount0, uint256 baseAmount1) = getPositionAmounts(
            baseLower,
            baseUpper
        );
        (uint256 limitAmount0, uint256 limitAmount1) = getPositionAmounts(
            limitLower,
            limitUpper
        );
        {
            (uint256 totalAmount0, uint256 totalAmount1) = getTotalAmounts();
            
            uint256 baseMintAmount0; 
            uint256 baseMintAmount1 ;
            uint256 limitMintAmount0;
            uint256 limitMintAmount1 ;
            
            if (totalAmount0>0){
                baseMintAmount0 = amount0.mul(baseAmount0).div(
                    totalAmount0
                );
                limitMintAmount0 = amount0.mul(limitAmount0).div(
                    totalAmount0
                );
            }
            if (totalAmount1>0){
                baseMintAmount1 = amount1.mul(baseAmount1).div(
                    totalAmount1
                );
                limitMintAmount1 = amount1.mul(limitAmount1).div(
                    totalAmount1
                );
            }
            // Mint tokens
            if (baseMintAmount0 > 0 || baseMintAmount1 > 0) {
                uint128 baseLiquidity = _liquidityForAmounts(
                    baseLower,
                    baseUpper,
                    baseMintAmount0,
                    baseMintAmount1
                );
                mintLiquidity(baseLower, baseUpper, baseLiquidity);
            }

            if (limitMintAmount0 > 0 || limitMintAmount1 > 0) {
                uint128 limitLiquidity = _liquidityForAmounts(
                    limitLower,
                    limitUpper,
                    limitMintAmount0,
                    limitMintAmount1
                );
                mintLiquidity(limitLower, limitUpper, limitLiquidity);
            }
        }
        // Mint shares to recipient
        _mint(to, shares);
        emit Deposit(msg.sender, to, shares, amount0, amount1);
        require(totalSupply() <= maxTotalSupply, "maxTotalSupply");
    }

    /// @inheritdoc IVault
    function withdraw(
        uint256 shares,
        uint256 amount0Min,
        uint256 amount1Min,
        address to
    )
        external
        override
        nonReentrant
        onlyUser
        returns (uint256 amount0, uint256 amount1)
    {
        require(shares > 0, "shares");
        require(to != address(0) && to != address(this), "to");
        uint256 totalSupply = totalSupply();

        // Burn shares
        _burn(msg.sender, shares);

        // Calculate token amounts proportional to unused balances
        uint256 unusedAmount0 = getBalance0().mul(shares).div(totalSupply);
        uint256 unusedAmount1 = getBalance1().mul(shares).div(totalSupply);

        // Withdraw proportion of liquidity from Uniswap pool
        (uint256 baseAmount0, uint256 baseAmount1) = burnLiquidityShare(
            baseLower,
            baseUpper,
            shares,
            totalSupply
        );

        (uint256 limitAmount0, uint256 limitAmount1) = burnLiquidityShare(
            limitLower,
            limitUpper,
            shares,
            totalSupply
        );

        // Sum up total amounts owed to recipient
        amount0 = unusedAmount0.add(baseAmount0).add(limitAmount0);
        amount1 = unusedAmount1.add(baseAmount1).add(limitAmount1);
        require(amount0 >= amount0Min, "amount0Min");
        require(amount1 >= amount1Min, "amount1Min");
        // Push tokens to recipient
        if (amount0 > 0) token0.safeTransfer(to, amount0);
        if (amount1 > 0) token1.safeTransfer(to, amount1);

        emit Withdraw(msg.sender, to, shares, amount0, amount1);
    }

    /// @inheritdoc IVault
    function poke(int24 tickLower, int24 tickUpper) public override {
        (uint128 liquidity, , , , ) = position(tickLower, tickUpper);
        if (liquidity > 0) {
            pool.burn(tickLower, tickUpper, 0);
        }
    }

    /// @dev Withdraws share of liquidity in a limit from Uniswap pool.
    function burnLiquidityShare(
        int24 tickLower,
        int24 tickUpper,
        uint256 shares,
        uint256 totalSupply
    ) internal returns (uint256 amount0, uint256 amount1) {
        (uint128 totalLiquidity, , , , ) = position(tickLower, tickUpper);
        uint256 liquidity = uint256(totalLiquidity).mul(shares).div(
            totalSupply
        );

        if (liquidity > 0) {
            (
                uint256 burned0,
                uint256 burned1,
                uint256 fees0,
                uint256 fees1
            ) = _burnAndCollect(tickLower, tickUpper, _toUint128(liquidity));

            // Add share of fees
            amount0 = burned0.add(fees0.mul(shares).div(totalSupply));
            amount1 = burned1.add(fees1.mul(shares).div(totalSupply));
        }
    }

    /// @notice Internal method to swap between token0 and token1 for vault funds
    function performOptimalSwap(
        uint256 actualAmount0,
        uint256 actualAmount1,
        uint256 amount0,
        uint256 amount1
    ) internal returns (uint256 token0AfterSwap, uint256 token1AfterSwap) {

        bool isToken0Excess;
        uint256 amountIn;
        uint256 amountOut;

        if (actualAmount1==0 || actualAmount0 == 0) {
            isToken0Excess = actualAmount0==0;
            amountIn = isToken0Excess? amount0: amount1;
        }
        else {
        // Round off the factors to 18 decimal places.
        uint256 factor = 10 **
            (uint256(18).sub(token1.decimals()).add(token0.decimals()));
        uint256 ratio = actualAmount1.mulDiv(factor, actualAmount0);
        (uint160 sqrtPriceX96, , , , , , ) = pool.slot0();
        uint256 price = uint256(sqrtPriceX96).mul(uint256(sqrtPriceX96)).mul(
            factor
        ) >> (96 * 2);

        uint256 token0Converted = ratio.mulDiv(amount0, factor);
        isToken0Excess = amount1 < token0Converted;

        uint256 excessAmount = isToken0Excess ? token0Converted.sub(amount1).mulDiv(factor, ratio) : amount1.sub(token0Converted);
        amountIn = isToken0Excess
            ? excessAmount.mulDiv(ratio, price.add(ratio))
            : excessAmount.mulDiv(price, price.add(ratio));
        }
        if (amountIn > 0) {
            amountOut = swapTokensFromPool(isToken0Excess, amountIn);
        }

        token0AfterSwap = isToken0Excess
            ? amount0.sub(amountIn)
            : amount0.add(amountOut);

        token1AfterSwap = isToken0Excess
            ? amount1.add(amountOut)
            : amount1.sub(amountIn);

        
    }

    /// @inheritdoc IVault
    function mintOptimalLiquidity(
        int24 _lowerTick,
        int24 _upperTick,
        uint256 amount0,
        uint256 amount1,
        bool swapEnabled
    ) public override onlyRouter {

        (uint256 actualAmount0, uint256 actualAmount1) = _amountsForLiquidity(
            _lowerTick,
            _upperTick,
            _liquidityForAmounts(_lowerTick, _upperTick,10**token0.decimals(),10**token1.decimals())
        );


        if (swapEnabled) {
            (uint256 token0AfterSwap, uint256 token1AfterSwap) = performOptimalSwap(
                actualAmount0,
                actualAmount1,
                amount0,
                amount1
            );

            mintLiquidity(
                _lowerTick,
                _upperTick,
                _liquidityForAmounts(
                    _lowerTick,
                    _upperTick,
                    token0AfterSwap,
                    token1AfterSwap
                )
            );


        } else {
            mintLiquidity(
                _lowerTick,
                _upperTick,
                _liquidityForAmounts(
                    _lowerTick,
                    _upperTick,
                    amount0,
                    amount1
                )
            );
        }

    }

    /// @dev Deposits liquidity in a range on the Uniswap pool.
    function mintLiquidity(
        int24 tickLower,
        int24 tickUpper,
        uint128 liquidity
    ) internal {
        checkRange(tickLower, tickUpper);
        if (liquidity > 0) {
            pool.mint(address(this), tickLower, tickUpper, liquidity, "");
        }
    }

    /// @inheritdoc IVault
    function compoundFee() public override onlyRouter {

        collectFeeAndReinvest(baseLower, baseUpper);

        collectFeeAndReinvest(limitLower, limitUpper);
    }

    /// @dev Updates fee owed to vault, collects the fee and mints more liquidity into the same position
    /// @param tickLower Lower bound of the tick range
    /// @param tickUpper Upper bound of the tick range
    function collectFeeAndReinvest(int24 tickLower, int24 tickUpper) internal {
        poke(tickLower, tickUpper);

        (uint256 collect0, uint256 collect1) = pool.collect(
            address(this),
            tickLower,
            tickUpper,
            type(uint128).max,
            type(uint128).max
        );

        if (collect0 > 0 && collect1 > 0) {
            (uint256 fee0, uint256 fee1) = calculateFee(collect0, collect1);

            uint128 liquidity = _liquidityForAmounts(
                tickLower,
                tickUpper,
                fee0,
                fee1
            );
            mintLiquidity(tickLower, tickUpper, liquidity);
        }
    }

    /// @inheritdoc IVault
    function burnAndCollect(
        int24 tickLower,
        int24 tickUpper,
        uint128 liquidity
    )
        public
        override
        onlyRouter
        returns (
            uint256 burned0,
            uint256 burned1,
            uint256 feesToVault0,
            uint256 feesToVault1
        )
    {
        return _burnAndCollect(tickLower, tickUpper, liquidity);
    }

    /// @dev Withdraws liquidity from a range and collects all fees in the
    /// process.
    function _burnAndCollect(
        int24 tickLower,
        int24 tickUpper,
        uint128 liquidity
    )
        internal
        returns (
            uint256 burned0,
            uint256 burned1,
            uint256 feesToVault0,
            uint256 feesToVault1
        )
    {
        checkRange(tickLower, tickUpper);
        
        poke(tickLower, tickUpper);
        // Collect all earned fees
        (uint256 collectedFee0, uint256 collectedFee1) = pool.collect(
            address(this),
            tickLower,
            tickUpper,
            type(uint128).max,
            type(uint128).max
        );

        calculateFee(collectedFee0, collectedFee1);


        if (liquidity > 0) {
            (burned0, burned1) = pool.burn(tickLower, tickUpper, liquidity);
        

            // Collect all owed tokens including earned fees
            (uint256 collect0, uint256 collect1) = pool.collect(
                address(this),
                tickLower,
                tickUpper,
                type(uint128).max,
                type(uint128).max
            );
        }

        // feesToVault0 = collect0.sub(burned0);
        // feesToVault1 = collect1.sub(burned1);
        // calculateFee(feesToVault0, feesToVault1);
    }

    /// @dev Calculates fees owed to protocol and strategy from total fee earned
    function calculateFee(uint256 feesToVault0, uint256 feesToVault1)
        internal
        returns (uint256, uint256)
    {
        uint256 feesToProtocol0;
        uint256 feesToProtocol1;
        uint256 feesToStrategy0;
        uint256 feesToStrategy1;

        {
            // Update accrued protocol fees
            if (protocolFee > 0) {
                feesToProtocol0 = feesToVault0.mul(protocolFee).div(1e6);
                feesToProtocol1 = feesToVault1.mul(protocolFee).div(1e6);
                accruedProtocolFees0 = accruedProtocolFees0.add(
                    feesToProtocol0
                );
                accruedProtocolFees1 = accruedProtocolFees1.add(
                    feesToProtocol1
                );
            }

            if (strategyFee > 0) {
                feesToStrategy0 = feesToVault0.mul(strategyFee).div(1e6);
                feesToStrategy1 = feesToVault1.mul(strategyFee).div(1e6);
                accruedStrategyFees0 = accruedStrategyFees0.add(
                    feesToStrategy0
                );
                accruedStrategyFees1 = accruedStrategyFees1.add(
                    feesToStrategy1
                );
            }

            if (protocolFee > 0) {
                feesToVault0 = feesToVault0.sub(feesToProtocol0);
                feesToVault1 = feesToVault1.sub(feesToProtocol1);
            }
            if (strategyFee > 0) {
                feesToVault0 = feesToVault0.sub(feesToStrategy0);
                feesToVault1 = feesToVault1.sub(feesToStrategy1);
            }
        }

        emit CollectFees(
            feesToVault0,
            feesToVault1,
            feesToStrategy0,
            feesToStrategy1
        );

        return (feesToVault0, feesToVault1);
    }

   /// @inheritdoc IVault
    function swapTokensFromPool(bool direction, uint256 amountInToSwap)
        public
        override
        nonReentrant
        onlyRouter
        returns (uint256 amountOut)
    {
        address tokenInAddress = direction ? address(token0) : address(token1);
        address tokenOutAddress = direction ? address(token1) : address(token0);

        if (direction) {
            token0.approve(address(swapRouter), amountInToSwap);
        } else {
            token1.approve(address(swapRouter), amountInToSwap);
        }

        ISwapRouter.ExactInputSingleParams memory swapParams = ISwapRouter
            .ExactInputSingleParams({
                tokenIn: tokenInAddress,
                tokenOut: tokenOutAddress,
                fee: pool.fee(),
                recipient: address(this),
                deadline: block.timestamp + 10,
                amountIn: amountInToSwap,
                amountOutMinimum: 1,
                sqrtPriceLimitX96: 0
            });
        amountOut = swapRouter.exactInputSingle(swapParams);
    }

    /// @inheritdoc IVault
    function collectProtocol(
        uint256 amount0,
        uint256 amount1,
        address to
    ) external override onlyGovernance {
        accruedProtocolFees0 = accruedProtocolFees0.sub(amount0);
        accruedProtocolFees1 = accruedProtocolFees1.sub(amount1);
        if (amount0 > 0) token0.safeTransfer(to, amount0);
        if (amount1 > 0) token1.safeTransfer(to, amount1);
    }

    /// @inheritdoc IVault
    function collectStrategy(
        uint256 amount0,
        uint256 amount1,
        address to
    ) external override onlyStrategy {
        accruedStrategyFees0 = accruedStrategyFees0.sub(amount0);
        accruedStrategyFees1 = accruedStrategyFees1.sub(amount1);
        if (amount0 > 0) token0.safeTransfer(to, amount0);
        if (amount1 > 0) token1.safeTransfer(to, amount1);
    }

    /// @inheritdoc IVault
    function setBaseTicks(int24 _baseLower, int24 _baseUpper)
        public
        override
        onlyRouter
    {
        (baseLower, baseUpper) = (_baseLower, _baseUpper);
    }

    /// @inheritdoc IVault
    function setLimitTicks(int24 _limitLower, int24 _limitUpper)
        public
        override
        onlyRouter
    {
        (limitLower, limitUpper) = (_limitLower, _limitUpper);
    }

    /// @inheritdoc IVault
    function setMaxTotalSupply(uint256 _maxTotalSupply)
        external
        override
        onlyGovernance
    {
        maxTotalSupply = _maxTotalSupply;
    }

    /// @inheritdoc IVault
    function emergencyBurnAndCollect(address to)
        external
        override
        onlyGovernance
    {

        if (baseLower < baseUpper) {
            (uint128 liquidityBase, , , , ) = position(baseLower, baseUpper);
            if (liquidityBase > 0) {
                pool.burn(baseLower, baseUpper, liquidityBase);
            }
            pool.collect(
                to,
                baseLower,
                baseUpper,
                type(uint128).max,
                type(uint128).max
            );
        }

        if (limitLower < limitUpper) {
            (uint128 liquidityLimit, , , , ) = position(limitLower, limitUpper);
            if (liquidityLimit > 0) {
                pool.burn(limitLower, limitUpper, liquidityLimit);
            }

            pool.collect(
                to,
                limitLower,
                limitUpper,
                type(uint128).max,
                type(uint128).max
            );
        }

        uint256 token0Balance = getBalance0();
        uint256 token1Balance = getBalance1();
        if (token0Balance > 0) token0.safeTransfer(to, getBalance0());
        if (token1Balance > 0) token1.safeTransfer(to, getBalance1());
    }

    /// @dev Calculates the largest possible `amount0` and `amount1` such that
    /// they're in the same proportion as total amounts, but not greater than
    /// `amount0Desired` and `amount1Desired` respectively.
    function _calcSharesAndAmounts(
        uint256 amount0Desired,
        uint256 amount1Desired
    )
        internal
        view
        returns (
            uint256 shares,
            uint256 amount0,
            uint256 amount1
        )
    {
        uint256 totalSupply = totalSupply();
        (uint256 total0, uint256 total1) = getTotalAmounts();

        // If total supply > 0, vault can't be empty
        assert(totalSupply == 0 || total0 > 0 || total1 > 0);

        if (totalSupply == 0) {
            // For first deposit, just use the amounts desired
            amount0 = amount0Desired;
            amount1 = amount1Desired;
            shares = Math.max(amount0, amount1);
        } else if (total0 == 0) {
            amount1 = amount1Desired;
            shares = amount1.mul(totalSupply).div(total1);
        } else if (total1 == 0) {
            amount0 = amount0Desired;
            shares = amount0.mul(totalSupply).div(total0);
        } else {
            uint256 cross = Math.min(
                amount0Desired.mul(total1),
                amount1Desired.mul(total0)
            );
            require(cross > 0, "cross");

            // Round up amounts
            amount0 = cross.sub(1).div(total1).add(1);
            amount1 = cross.sub(1).div(total0).add(1);
            shares = cross.mul(totalSupply).div(total0).div(total1);
        }
    }

    /// @inheritdoc IVault
    function getTotalAmounts()
        public
        view
        override
        returns (uint256 total0, uint256 total1)
    {
        (uint256 baseAmount0, uint256 baseAmount1) = getPositionAmounts(
            baseLower,
            baseUpper
        );
        (uint256 limitAmount0, uint256 limitAmount1) = getPositionAmounts(
            limitLower,
            limitUpper
        );
        total0 = getBalance0().add(baseAmount0).add(limitAmount0);
        total1 = getBalance1().add(baseAmount1).add(limitAmount1);
    }

    /// @inheritdoc IVault
    function getPositionAmounts(int24 tickLower, int24 tickUpper)
        public
        view
        override
        returns (uint256 amount0, uint256 amount1)
    {
        (
            uint128 liquidity,
            ,
            ,
            uint128 tokensOwed0,
            uint128 tokensOwed1
        ) = position(tickLower, tickUpper);
        (amount0, amount1) = _amountsForLiquidity(
            tickLower,
            tickUpper,
            liquidity
        );

        // Subtract protocol fees
        uint256 oneMinusFee = uint256(1e6).sub(protocolFee).sub(strategyFee);
        amount0 = amount0.add(uint256(tokensOwed0).mul(oneMinusFee).div(1e6));
        amount1 = amount1.add(uint256(tokensOwed1).mul(oneMinusFee).div(1e6));
    }

    /**
     * @notice Balance of token0 in vault not used in any position.
     * @return balance0 Balance of token0 in vault not used in any position
     */
    function getBalance0() public view override returns (uint256) {
        return
            token0.balanceOf(address(this)).sub(accruedProtocolFees0).sub(
                accruedStrategyFees0
            );
    }

    /**
     * @notice Balance of token1 in vault not used in any position.
     * @return balance1 Balance of token1 in vault not used in any position
     */
    function getBalance1() public view override returns (uint256) {
        return
            token1.balanceOf(address(this)).sub(accruedProtocolFees1).sub(
                accruedStrategyFees1
            );
    }


    /// @inheritdoc IVault
    function freezeStrategy(bool value) external override onlyGovernance {
        pauseStrategy = value;
    }

    /// @inheritdoc IVault
    function freezeUser(bool value) external override onlyGovernance {
        pauseUser = value;
    }

    /// @dev Casts uint256 to uint128 with overflow check.
    function _toUint128(uint256 x) internal pure returns (uint128) {
        assert(x <= type(uint128).max);
        return uint128(x);
    }

    modifier onlyGovernance() {
        require(msg.sender == governance(), "tx sender should be governance");
        _;
    }

    modifier onlyStrategy() {
        require(
            msg.sender == strategy() || msg.sender == router(),
            "tx sender should be either the strategy manager or router"
        );
        require(!pauseStrategy, "operations paused for strategy manager");
        _;
    }

    modifier onlyRouter() {
        require(msg.sender == router(), "tx sender should be router");
        require(!pauseStrategy, "operations paused for strategy manager");
        _;
    }

    modifier onlyUser() {
        require(!pauseUser, "operations paused for vault users");
        _;
    }

    /// @inheritdoc IVault
    function position(int24 tickLower, int24 tickUpper)
        public
        view
        override
        returns (
            uint128,
            uint256,
            uint256,
            uint128,
            uint128
        )
    {
        bytes32 positionKey = PositionKey.compute(
            address(this),
            tickLower,
            tickUpper
        );

        return pool.positions(positionKey);
    }

    /// @dev Wrapper around `LiquidityAmounts.getLiquidityForAmounts()`.
    function _liquidityForAmounts(
        int24 tickLower,
        int24 tickUpper,
        uint256 amount0,
        uint256 amount1
    ) internal view returns (uint128) {
        (uint160 sqrtRatioX96, , , , , , ) = pool.slot0();
        return
            LiquidityAmounts.getLiquidityForAmounts(
                sqrtRatioX96,
                TickMath.getSqrtRatioAtTick(tickLower),
                TickMath.getSqrtRatioAtTick(tickUpper),
                amount0,
                amount1
            );
    }

    /// @dev Wrapper around `LiquidityAmounts.getAmountsForLiquidity()`.
    function _amountsForLiquidity(
        int24 tickLower,
        int24 tickUpper,
        uint128 liquidity
    ) internal view returns (uint256, uint256) {
        (uint160 sqrtRatioX96, , , , , , ) = pool.slot0();
        return
            LiquidityAmounts.getAmountsForLiquidity(
                sqrtRatioX96,
                TickMath.getSqrtRatioAtTick(tickLower),
                TickMath.getSqrtRatioAtTick(tickUpper),
                liquidity
            );
    }

    /// @dev validates tickRanges to be valid for V3 pool.
    function checkRange(int24 tickLower, int24 tickUpper) internal view {
        int24 _tickSpacing = tickSpacing;
        require(tickLower < tickUpper, "tickLower < tickUpper");
        require(tickLower >= TickMath.MIN_TICK, "tickLower too low");
        require(tickUpper <= TickMath.MAX_TICK, "tickUpper too high");
        require(tickLower % _tickSpacing == 0, "tickLower % tickSpacing");
        require(tickUpper % _tickSpacing == 0, "tickUpper % tickSpacing");
    }

    /// @dev Callback for Uniswap V3 pool.
    function uniswapV3MintCallback(
        uint256 amount0,
        uint256 amount1,
        bytes calldata data
    ) external override {
        require(msg.sender == address(pool));
        if (amount0 > 0) token0.safeTransfer(msg.sender, amount0);
        if (amount1 > 0) token1.safeTransfer(msg.sender, amount1);
    }

    /// @dev Callback for Uniswap V3 pool.
    function uniswapV3SwapCallback(
        int256 amount0Delta,
        int256 amount1Delta,
        bytes calldata data
    ) public override {
        require(msg.sender == address(pool));

        if (amount0Delta > 0)
            token0.safeTransfer(msg.sender, uint256(amount0Delta));
        if (amount1Delta > 0)
            token1.safeTransfer(msg.sender, uint256(amount1Delta));
    }
}

File 2 of 28 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

        _beforeTokenTransfer(address(0), account, amount);

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

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

        _beforeTokenTransfer(account, address(0), amount);

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

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

File 3 of 28 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 4 of 28 : SafeERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "./IERC20.sol";
import "../../math/SafeMath.sol";
import "../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 5 of 28 : Math.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

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

File 6 of 28 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

File 7 of 28 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor () internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 8 of 28 : IUniswapV3MintCallback.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Callback for IUniswapV3PoolActions#mint
/// @notice Any contract that calls IUniswapV3PoolActions#mint must implement this interface
interface IUniswapV3MintCallback {
    /// @notice Called to `msg.sender` after minting liquidity to a position from IUniswapV3Pool#mint.
    /// @dev In the implementation you must pay the pool tokens owed for the minted liquidity.
    /// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory.
    /// @param amount0Owed The amount of token0 due to the pool for the minted liquidity
    /// @param amount1Owed The amount of token1 due to the pool for the minted liquidity
    /// @param data Any data passed through by the caller via the IUniswapV3PoolActions#mint call
    function uniswapV3MintCallback(
        uint256 amount0Owed,
        uint256 amount1Owed,
        bytes calldata data
    ) external;
}

File 9 of 28 : IUniswapV3SwapCallback.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Callback for IUniswapV3PoolActions#swap
/// @notice Any contract that calls IUniswapV3PoolActions#swap must implement this interface
interface IUniswapV3SwapCallback {
    /// @notice Called to `msg.sender` after executing a swap via IUniswapV3Pool#swap.
    /// @dev In the implementation you must pay the pool tokens owed for the swap.
    /// The caller of this method must be checked to be a UniswapV3Pool deployed by the canonical UniswapV3Factory.
    /// amount0Delta and amount1Delta can both be 0 if no tokens were swapped.
    /// @param amount0Delta The amount of token0 that was sent (negative) or must be received (positive) by the pool by
    /// the end of the swap. If positive, the callback must send that amount of token0 to the pool.
    /// @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by
    /// the end of the swap. If positive, the callback must send that amount of token1 to the pool.
    /// @param data Any data passed through by the caller via the IUniswapV3PoolActions#swap call
    function uniswapV3SwapCallback(
        int256 amount0Delta,
        int256 amount1Delta,
        bytes calldata data
    ) external;
}

File 10 of 28 : ISwapRouter.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.7.5;
pragma abicoder v2;

import '@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol';

/// @title Router token swapping functionality
/// @notice Functions for swapping tokens via Uniswap V3
interface ISwapRouter is IUniswapV3SwapCallback {
    struct ExactInputSingleParams {
        address tokenIn;
        address tokenOut;
        uint24 fee;
        address recipient;
        uint256 deadline;
        uint256 amountIn;
        uint256 amountOutMinimum;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Swaps `amountIn` of one token for as much as possible of another token
    /// @param params The parameters necessary for the swap, encoded as `ExactInputSingleParams` in calldata
    /// @return amountOut The amount of the received token
    function exactInputSingle(ExactInputSingleParams calldata params) external payable returns (uint256 amountOut);

    struct ExactInputParams {
        bytes path;
        address recipient;
        uint256 deadline;
        uint256 amountIn;
        uint256 amountOutMinimum;
    }

    /// @notice Swaps `amountIn` of one token for as much as possible of another along the specified path
    /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactInputParams` in calldata
    /// @return amountOut The amount of the received token
    function exactInput(ExactInputParams calldata params) external payable returns (uint256 amountOut);

    struct ExactOutputSingleParams {
        address tokenIn;
        address tokenOut;
        uint24 fee;
        address recipient;
        uint256 deadline;
        uint256 amountOut;
        uint256 amountInMaximum;
        uint160 sqrtPriceLimitX96;
    }

    /// @notice Swaps as little as possible of one token for `amountOut` of another token
    /// @param params The parameters necessary for the swap, encoded as `ExactOutputSingleParams` in calldata
    /// @return amountIn The amount of the input token
    function exactOutputSingle(ExactOutputSingleParams calldata params) external payable returns (uint256 amountIn);

    struct ExactOutputParams {
        bytes path;
        address recipient;
        uint256 deadline;
        uint256 amountOut;
        uint256 amountInMaximum;
    }

    /// @notice Swaps as little as possible of one token for `amountOut` of another along the specified path (reversed)
    /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactOutputParams` in calldata
    /// @return amountIn The amount of the input token
    function exactOutput(ExactOutputParams calldata params) external payable returns (uint256 amountIn);
}

File 11 of 28 : IUniswapV3Pool.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

import './pool/IUniswapV3PoolImmutables.sol';
import './pool/IUniswapV3PoolState.sol';
import './pool/IUniswapV3PoolDerivedState.sol';
import './pool/IUniswapV3PoolActions.sol';
import './pool/IUniswapV3PoolOwnerActions.sol';
import './pool/IUniswapV3PoolEvents.sol';

/// @title The interface for a Uniswap V3 Pool
/// @notice A Uniswap pool facilitates swapping and automated market making between any two assets that strictly conform
/// to the ERC20 specification
/// @dev The pool interface is broken up into many smaller pieces
interface IUniswapV3Pool is
    IUniswapV3PoolImmutables,
    IUniswapV3PoolState,
    IUniswapV3PoolDerivedState,
    IUniswapV3PoolActions,
    IUniswapV3PoolOwnerActions,
    IUniswapV3PoolEvents
{

}

File 12 of 28 : TickMath.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Math library for computing sqrt prices from ticks and vice versa
/// @notice Computes sqrt price for ticks of size 1.0001, i.e. sqrt(1.0001^tick) as fixed point Q64.96 numbers. Supports
/// prices between 2**-128 and 2**128
library TickMath {
    /// @dev The minimum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**-128
    int24 internal constant MIN_TICK = -887272;
    /// @dev The maximum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**128
    int24 internal constant MAX_TICK = -MIN_TICK;

    /// @dev The minimum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MIN_TICK)
    uint160 internal constant MIN_SQRT_RATIO = 4295128739;
    /// @dev The maximum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MAX_TICK)
    uint160 internal constant MAX_SQRT_RATIO = 1461446703485210103287273052203988822378723970342;

    /// @notice Calculates sqrt(1.0001^tick) * 2^96
    /// @dev Throws if |tick| > max tick
    /// @param tick The input tick for the above formula
    /// @return sqrtPriceX96 A Fixed point Q64.96 number representing the sqrt of the ratio of the two assets (token1/token0)
    /// at the given tick
    function getSqrtRatioAtTick(int24 tick) internal pure returns (uint160 sqrtPriceX96) {
        uint256 absTick = tick < 0 ? uint256(-int256(tick)) : uint256(int256(tick));
        require(absTick <= uint256(MAX_TICK), 'T');

        uint256 ratio = absTick & 0x1 != 0 ? 0xfffcb933bd6fad37aa2d162d1a594001 : 0x100000000000000000000000000000000;
        if (absTick & 0x2 != 0) ratio = (ratio * 0xfff97272373d413259a46990580e213a) >> 128;
        if (absTick & 0x4 != 0) ratio = (ratio * 0xfff2e50f5f656932ef12357cf3c7fdcc) >> 128;
        if (absTick & 0x8 != 0) ratio = (ratio * 0xffe5caca7e10e4e61c3624eaa0941cd0) >> 128;
        if (absTick & 0x10 != 0) ratio = (ratio * 0xffcb9843d60f6159c9db58835c926644) >> 128;
        if (absTick & 0x20 != 0) ratio = (ratio * 0xff973b41fa98c081472e6896dfb254c0) >> 128;
        if (absTick & 0x40 != 0) ratio = (ratio * 0xff2ea16466c96a3843ec78b326b52861) >> 128;
        if (absTick & 0x80 != 0) ratio = (ratio * 0xfe5dee046a99a2a811c461f1969c3053) >> 128;
        if (absTick & 0x100 != 0) ratio = (ratio * 0xfcbe86c7900a88aedcffc83b479aa3a4) >> 128;
        if (absTick & 0x200 != 0) ratio = (ratio * 0xf987a7253ac413176f2b074cf7815e54) >> 128;
        if (absTick & 0x400 != 0) ratio = (ratio * 0xf3392b0822b70005940c7a398e4b70f3) >> 128;
        if (absTick & 0x800 != 0) ratio = (ratio * 0xe7159475a2c29b7443b29c7fa6e889d9) >> 128;
        if (absTick & 0x1000 != 0) ratio = (ratio * 0xd097f3bdfd2022b8845ad8f792aa5825) >> 128;
        if (absTick & 0x2000 != 0) ratio = (ratio * 0xa9f746462d870fdf8a65dc1f90e061e5) >> 128;
        if (absTick & 0x4000 != 0) ratio = (ratio * 0x70d869a156d2a1b890bb3df62baf32f7) >> 128;
        if (absTick & 0x8000 != 0) ratio = (ratio * 0x31be135f97d08fd981231505542fcfa6) >> 128;
        if (absTick & 0x10000 != 0) ratio = (ratio * 0x9aa508b5b7a84e1c677de54f3e99bc9) >> 128;
        if (absTick & 0x20000 != 0) ratio = (ratio * 0x5d6af8dedb81196699c329225ee604) >> 128;
        if (absTick & 0x40000 != 0) ratio = (ratio * 0x2216e584f5fa1ea926041bedfe98) >> 128;
        if (absTick & 0x80000 != 0) ratio = (ratio * 0x48a170391f7dc42444e8fa2) >> 128;

        if (tick > 0) ratio = type(uint256).max / ratio;

        // this divides by 1<<32 rounding up to go from a Q128.128 to a Q128.96.
        // we then downcast because we know the result always fits within 160 bits due to our tick input constraint
        // we round up in the division so getTickAtSqrtRatio of the output price is always consistent
        sqrtPriceX96 = uint160((ratio >> 32) + (ratio % (1 << 32) == 0 ? 0 : 1));
    }

    /// @notice Calculates the greatest tick value such that getRatioAtTick(tick) <= ratio
    /// @dev Throws in case sqrtPriceX96 < MIN_SQRT_RATIO, as MIN_SQRT_RATIO is the lowest value getRatioAtTick may
    /// ever return.
    /// @param sqrtPriceX96 The sqrt ratio for which to compute the tick as a Q64.96
    /// @return tick The greatest tick for which the ratio is less than or equal to the input ratio
    function getTickAtSqrtRatio(uint160 sqrtPriceX96) internal pure returns (int24 tick) {
        // second inequality must be < because the price can never reach the price at the max tick
        require(sqrtPriceX96 >= MIN_SQRT_RATIO && sqrtPriceX96 < MAX_SQRT_RATIO, 'R');
        uint256 ratio = uint256(sqrtPriceX96) << 32;

        uint256 r = ratio;
        uint256 msb = 0;

        assembly {
            let f := shl(7, gt(r, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(6, gt(r, 0xFFFFFFFFFFFFFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(5, gt(r, 0xFFFFFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(4, gt(r, 0xFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(3, gt(r, 0xFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(2, gt(r, 0xF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(1, gt(r, 0x3))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := gt(r, 0x1)
            msb := or(msb, f)
        }

        if (msb >= 128) r = ratio >> (msb - 127);
        else r = ratio << (127 - msb);

        int256 log_2 = (int256(msb) - 128) << 64;

        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(63, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(62, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(61, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(60, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(59, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(58, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(57, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(56, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(55, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(54, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(53, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(52, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(51, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(50, f))
        }

        int256 log_sqrt10001 = log_2 * 255738958999603826347141; // 128.128 number

        int24 tickLow = int24((log_sqrt10001 - 3402992956809132418596140100660247210) >> 128);
        int24 tickHi = int24((log_sqrt10001 + 291339464771989622907027621153398088495) >> 128);

        tick = tickLow == tickHi ? tickLow : getSqrtRatioAtTick(tickHi) <= sqrtPriceX96 ? tickHi : tickLow;
    }
}

File 13 of 28 : LiquidityAmounts.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

import '@uniswap/v3-core/contracts/libraries/FullMath.sol';
import '@uniswap/v3-core/contracts/libraries/FixedPoint96.sol';

/// @title Liquidity amount functions
/// @notice Provides functions for computing liquidity amounts from token amounts and prices
library LiquidityAmounts {
    /// @notice Downcasts uint256 to uint128
    /// @param x The uint258 to be downcasted
    /// @return y The passed value, downcasted to uint128
    function toUint128(uint256 x) private pure returns (uint128 y) {
        require((y = uint128(x)) == x);
    }

    /// @notice Computes the amount of liquidity received for a given amount of token0 and price range
    /// @dev Calculates amount0 * (sqrt(upper) * sqrt(lower)) / (sqrt(upper) - sqrt(lower))
    /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary
    /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary
    /// @param amount0 The amount0 being sent in
    /// @return liquidity The amount of returned liquidity
    function getLiquidityForAmount0(
        uint160 sqrtRatioAX96,
        uint160 sqrtRatioBX96,
        uint256 amount0
    ) internal pure returns (uint128 liquidity) {
        if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96);
        uint256 intermediate = FullMath.mulDiv(sqrtRatioAX96, sqrtRatioBX96, FixedPoint96.Q96);
        return toUint128(FullMath.mulDiv(amount0, intermediate, sqrtRatioBX96 - sqrtRatioAX96));
    }

    /// @notice Computes the amount of liquidity received for a given amount of token1 and price range
    /// @dev Calculates amount1 / (sqrt(upper) - sqrt(lower)).
    /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary
    /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary
    /// @param amount1 The amount1 being sent in
    /// @return liquidity The amount of returned liquidity
    function getLiquidityForAmount1(
        uint160 sqrtRatioAX96,
        uint160 sqrtRatioBX96,
        uint256 amount1
    ) internal pure returns (uint128 liquidity) {
        if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96);
        return toUint128(FullMath.mulDiv(amount1, FixedPoint96.Q96, sqrtRatioBX96 - sqrtRatioAX96));
    }

    /// @notice Computes the maximum amount of liquidity received for a given amount of token0, token1, the current
    /// pool prices and the prices at the tick boundaries
    /// @param sqrtRatioX96 A sqrt price representing the current pool prices
    /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary
    /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary
    /// @param amount0 The amount of token0 being sent in
    /// @param amount1 The amount of token1 being sent in
    /// @return liquidity The maximum amount of liquidity received
    function getLiquidityForAmounts(
        uint160 sqrtRatioX96,
        uint160 sqrtRatioAX96,
        uint160 sqrtRatioBX96,
        uint256 amount0,
        uint256 amount1
    ) internal pure returns (uint128 liquidity) {
        if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96);

        if (sqrtRatioX96 <= sqrtRatioAX96) {
            liquidity = getLiquidityForAmount0(sqrtRatioAX96, sqrtRatioBX96, amount0);
        } else if (sqrtRatioX96 < sqrtRatioBX96) {
            uint128 liquidity0 = getLiquidityForAmount0(sqrtRatioX96, sqrtRatioBX96, amount0);
            uint128 liquidity1 = getLiquidityForAmount1(sqrtRatioAX96, sqrtRatioX96, amount1);

            liquidity = liquidity0 < liquidity1 ? liquidity0 : liquidity1;
        } else {
            liquidity = getLiquidityForAmount1(sqrtRatioAX96, sqrtRatioBX96, amount1);
        }
    }

    /// @notice Computes the amount of token0 for a given amount of liquidity and a price range
    /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary
    /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary
    /// @param liquidity The liquidity being valued
    /// @return amount0 The amount of token0
    function getAmount0ForLiquidity(
        uint160 sqrtRatioAX96,
        uint160 sqrtRatioBX96,
        uint128 liquidity
    ) internal pure returns (uint256 amount0) {
        if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96);

        return
            FullMath.mulDiv(
                uint256(liquidity) << FixedPoint96.RESOLUTION,
                sqrtRatioBX96 - sqrtRatioAX96,
                sqrtRatioBX96
            ) / sqrtRatioAX96;
    }

    /// @notice Computes the amount of token1 for a given amount of liquidity and a price range
    /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary
    /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary
    /// @param liquidity The liquidity being valued
    /// @return amount1 The amount of token1
    function getAmount1ForLiquidity(
        uint160 sqrtRatioAX96,
        uint160 sqrtRatioBX96,
        uint128 liquidity
    ) internal pure returns (uint256 amount1) {
        if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96);

        return FullMath.mulDiv(liquidity, sqrtRatioBX96 - sqrtRatioAX96, FixedPoint96.Q96);
    }

    /// @notice Computes the token0 and token1 value for a given amount of liquidity, the current
    /// pool prices and the prices at the tick boundaries
    /// @param sqrtRatioX96 A sqrt price representing the current pool prices
    /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary
    /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary
    /// @param liquidity The liquidity being valued
    /// @return amount0 The amount of token0
    /// @return amount1 The amount of token1
    function getAmountsForLiquidity(
        uint160 sqrtRatioX96,
        uint160 sqrtRatioAX96,
        uint160 sqrtRatioBX96,
        uint128 liquidity
    ) internal pure returns (uint256 amount0, uint256 amount1) {
        if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96);

        if (sqrtRatioX96 <= sqrtRatioAX96) {
            amount0 = getAmount0ForLiquidity(sqrtRatioAX96, sqrtRatioBX96, liquidity);
        } else if (sqrtRatioX96 < sqrtRatioBX96) {
            amount0 = getAmount0ForLiquidity(sqrtRatioX96, sqrtRatioBX96, liquidity);
            amount1 = getAmount1ForLiquidity(sqrtRatioAX96, sqrtRatioX96, liquidity);
        } else {
            amount1 = getAmount1ForLiquidity(sqrtRatioAX96, sqrtRatioBX96, liquidity);
        }
    }
}

File 14 of 28 : PositionKey.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

library PositionKey {
    /// @dev Returns the key of the position in the core library
    function compute(
        address owner,
        int24 tickLower,
        int24 tickUpper
    ) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(owner, tickLower, tickUpper));
    }
}

File 15 of 28 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.7.5;

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

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 16 of 28 : IVault.sol
pragma solidity >=0.7.5;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol";
import "../interfaces/IFactory.sol";
import "../interfaces/IERC20Metadata.sol";

/// @title Aastra Vault
/// @author 0xKal1
/// @notice Aastra Vault is a Uniswap V3 liquidity management vault enabling you to automate yield generation on your idle funds
/// @dev Provides an interface to the Aastra Vault
interface IVault is IERC20 {

    /// @notice Emitted when a deposit made to a vault
    /// @param sender The sender of the deposit transaction
    /// @param to The recipient of LP tokens
    /// @param shares Amount of LP tokens paid to recipient
    /// @param amount0 Amount of token0 deposited
    /// @param amount1 Amount of token1 deposited
    event Deposit(
        address indexed sender,
        address indexed to,
        uint256 shares,
        uint256 amount0,
        uint256 amount1
    );

    /// @notice Emitted when a withdraw made to a vault
    /// @param sender The sender of the withdraw transaction
    /// @param to The recipient of withdrawn amounts
    /// @param shares Amount of LP tokens paid back to vault
    /// @param amount0 Amount of token0 withdrawn
    /// @param amount1 Amount of token1 withdrawn
    event Withdraw(
        address indexed sender,
        address indexed to,
        uint256 shares,
        uint256 amount0,
        uint256 amount1
    );

    /// @notice Emitted when fees collected from uniswap
    /// @param feesToVault0 Amount of token0 earned as fee by protocol
    /// @param feesToVault1 Amount of token1 earned as fee by protocol
    /// @param feesToStrategy0 Amount of token0 earned as fee by strategy manager
    /// @param feesToStrategy1 Amount of token1 earned as fee by strategy manager
    event CollectFees(
        uint256 feesToVault0,
        uint256 feesToVault1,
        uint256 feesToStrategy0,
        uint256 feesToStrategy1
    );

    /// @notice Retrieve first token of Uniswap V3 pool
    /// @return IERC20Metadata token address
    function token0() external view returns (IERC20Metadata);

    /// @notice Retrieve second token of Uniswap V3 pool
    /// @return IERC20Metadata token address
    function token1() external view returns (IERC20Metadata);

    /// @notice Retrieve usable amount of token0 available in the vault
    /// @return amount0 Amount of token0
    function getBalance0() external view returns (uint256);

    /// @notice Retrieve usable amount of token1 available in the vault
    /// @return amount1 Amount of token0
    function getBalance1() external view returns (uint256);

    /// @notice Retrieve tickSpacing of Pool used in the vault
    /// @return tickSpacing tickSpacing of the Uniswap V3 pool
    function tickSpacing() external view returns (int24);

    /// @notice Retrieve lower tick of base position of Pool used in the vault
    /// @return baseLower of the Uniswap V3 pool
    function baseLower() external view returns (int24);

    /// @notice Retrieve upper tick of base position of Pool used in the vault
    /// @return baseUpper of the Uniswap V3 pool
    function baseUpper() external view returns (int24);

    /// @notice Retrieve lower tick of limit position of Pool used in the vault
    /// @return limitLower of the Uniswap V3 pool
    function limitLower() external view returns (int24);

    /// @notice Retrieve upper tick of limit position of Pool used in the vault
    /// @return limitUpper of the Uniswap V3 pool
    function limitUpper() external view returns (int24);

    /// @notice Retrieve address of Uni V3 Pool used in the vault
    /// @return IUniswapV3Pool address of Uniswap V3 Pool
    function pool() external view returns (IUniswapV3Pool);

    /// @notice Retrieve address of Factory used to create the vault
    /// @return IFactory address of Aastra factory contract
    function factory() external view returns (IFactory);

    /// @notice Retrieve address of current router in Aastra
    /// @return router address of Aastra router contract
    function router() external view returns (address);

    /// @notice Retrieve address of strategy manager used to manage the vault
    /// @return manager address of vault manager
    function strategy() external view returns (address);

    /**
     * @notice Calculates the vault's total holdings of token0 and token1 - in
     * other words, how much of each token the vault would hold if it withdrew
     * all its liquidity from Uniswap.
     * @return total0 Total token0 holdings of the vault
     * @return total1 Total token1 holdings of the vault
     */
    function getTotalAmounts() external view returns (uint256, uint256);

    /// @dev Wrapper around `IUniswapV3Pool.positions()`.
    /// @notice Provides the current data on a position in the vault according to lower and upper tick
    /// @param tickLower Lower tick of the vault's position
    /// @param tickUpper Upper tick of the vault's position
    function position(int24 tickLower, int24 tickUpper)
        external
        view
        returns (
            uint128,
            uint256,
            uint256,
            uint128,
            uint128
        );

    /**
     * @notice Amounts of token0 and token1 held in vault's position. Includes owed fees but excludes the proportion of fees that will be paid to the protocol. Doesn't include fees accrued since last poke.
     * @param tickLower Lower tick of the vault's position
     * @param tickUpper Upper tick of the vault's position
     * @return amount0 Amount of token0 held in the vault's position
     * @return amount1 Amount of token1 held in the vault's position
     */
    function getPositionAmounts(int24 tickLower, int24 tickUpper)
        external
        view
        returns (uint256 amount0, uint256 amount1);

    /// ------------- Router Functions ------------- ///

    /// @notice Updates due amount in uniswap owed for a tick range
    /// @dev Do zero-burns to poke a position on Uniswap so earned fees are updated. Should be called if total amounts needs to include up-to-date fees.
    /// @param tickLower Lower bound of the tick range
    /// @param tickUpper Upper bound of the tick range
    function poke(int24 tickLower, int24 tickUpper) external;

    /// @notice Used to update the new base position ticks of the vault
    /// @param _baseLower The new lower tick of the vault
    /// @param _baseUpper The new upper tick of the vault
    function setBaseTicks(int24 _baseLower, int24 _baseUpper) external;

    /// @notice Used to update the new limit position ticks of the vault
    /// @param _limitLower The new lower tick of the vault
    /// @param _limitUpper The new upper tick of the vault
    function setLimitTicks(int24 _limitLower, int24 _limitUpper) external;

    /// @notice Withdraws all liquidity from a range and collects all the fees in the process
    /// @param tickLower Lower bound of the tick range
    /// @param tickUpper Upper bound of the tick range
    /// @param liquidity Liquidity to be withdrawn from the range
    /// @return burned0 Amount of token0 that was burned
    /// @return burned1 Amount of token1 that was burned
    /// @return feesToVault0 Amount of token0 fees vault earned
    /// @return feesToVault1 Amount of token1 fees vault earned
    function burnAndCollect(
        int24 tickLower,
        int24 tickUpper,
        uint128 liquidity
    )
        external
        returns (
            uint256 burned0,
            uint256 burned1,
            uint256 feesToVault0,
            uint256 feesToVault1
        );

    /// @notice This method will optimally use all the funds provided in argument to mint the maximum possible liquidity
    /// @param _lowerTick Lower bound of the tick range
    /// @param _upperTick Upper bound of the tick range
    /// @param amount0 Amount of token0 to be used for minting liquidity
    /// @param amount1 Amount of token1 to be used for minting liquidity
    function mintOptimalLiquidity(
        int24 _lowerTick,
        int24 _upperTick,
        uint256 amount0,
        uint256 amount1,
        bool swapEnabled
    ) external;

    /// @notice Swaps tokens from the pool
    /// @param direction The direction of the swap, true for token0 to token1, false for reverse
    /// @param amountInToSwap Desired amount of token0 or token1 wished to swap
    /// @return amountOut Amount of token0 or token1 received from the swap
    function swapTokensFromPool(bool direction, uint256 amountInToSwap)
        external
        returns (uint256 amountOut);

    /// @notice Collects liquidity fee earned from both positions of vault and reinvests them back into the same position
    function compoundFee() external;

    /// @notice Used to collect accumulated strategy fees.
    /// @param amount0 Amount of token0 to collect
    /// @param amount1 Amount of token1 to collect
    /// @param to Address to send collected fees to
    function collectStrategy(
        uint256 amount0,
        uint256 amount1,
        address to
    ) external;

    /// ------------- GOV Functions ------------- ///

    /**
     * @notice Emergency method to freeze actions performed by a strategy
     * @param value To be set to true in case of active freeze
     */
    function freezeStrategy(bool value) external;

    /**
     * @notice Emergency method to freeze actions performed by a vault user
     * @param value To be set to true in case of active freeze
     */
    function freezeUser(bool value) external;

    /// @notice Used to collect accumulated protocol fees.
    /// @param amount0 Amount of token0 to collect
    /// @param amount1 Amount of token1 to collect
    /// @param to Address to send collected fees to
    function collectProtocol(
        uint256 amount0,
        uint256 amount1,
        address to
    ) external;

    /**
     * @notice Used to change deposit cap for a guarded launch or to ensure
     * vault doesn't grow too large relative to the pool. Cap is on total
     * supply rather than amounts of token0 and token1 as those amounts
     * fluctuate naturally over time.
     * @param _maxTotalSupply The new max total cap of the vault
     */
    function setMaxTotalSupply(uint256 _maxTotalSupply) external;

    /**
     * @notice Removes liquidity in case of emergency.
     * @param to Address to withdraw funds to
     */
    function emergencyBurnAndCollect(address to) external;

    /// ------------- User Functions ------------- ///

    /**
     * @notice Deposits tokens in proportion to the vault's current holdings.
     * @param amount0Desired Max amount of token0 to deposit
     * @param amount1Desired Max amount of token1 to deposit
     * @param amount0Min Revert if resulting `amount0` is less than this
     * @param amount1Min Revert if resulting `amount1` is less than this
     * @param to Recipient of shares
     * @return shares Number of shares minted
     * @return amount0 Amount of token0 deposited
     * @return amount1 Amount of token1 deposited
     */
    function deposit(
        uint256 amount0Desired,
        uint256 amount1Desired,
        uint256 amount0Min,
        uint256 amount1Min,
        address to
    )
        external
        returns (
            uint256 shares,
            uint256 amount0,
            uint256 amount1
        );

    /**
     * @notice Withdraws tokens in proportion to the vault's holdings.
     * @param shares Shares burned by sender
     * @param amount0Min Revert if resulting `amount0` is smaller than this
     * @param amount1Min Revert if resulting `amount1` is smaller than this
     * @param to Recipient of tokens
     * @return amount0 Amount of token0 sent to recipient
     * @return amount1 Amount of token1 sent to recipient
     */
    function withdraw(
        uint256 shares,
        uint256 amount0Min,
        uint256 amount1Min,
        address to
    ) external returns (uint256 amount0, uint256 amount1);
}

File 17 of 28 : IFactory.sol
pragma solidity >=0.7.5;

/// @title Aastra Vault Factory
/// @author 0xKal1
/// @notice Aastra Vault Factory deploys and manages Aastra Vaults. 
/// @dev Provides an interface to the Aastra Vault Factory
interface IFactory {

    /// @notice Emitted when new vault created by factory
    /// @param strategyManager Address of strategyManager allocated to the vault
    /// @param uniswapPool Address of uniswap pool tied to the vault
    /// @param vaultAddress Address of the newly created vault
    event VaultCreation(
        address indexed strategyManager,
        address indexed uniswapPool,
        address indexed vaultAddress
    );

    /// @notice Emitted when governance of protocol gets changes
    /// @param oldGovernance Address of old governance 
    /// @param newGovernance Address of new governance 
    event GovernanceChange(
        address indexed oldGovernance,
        address indexed newGovernance
    );

    /// @notice Returns manager address of a given vault address
    /// @param _vault Address of Aastra vault
    /// @return _manager Address of vault manager
    function vaultManager(address _vault)
        external
        view
        returns (address _manager);

    /// @notice Returns vault address of a given manager address
    /// @param _manager Address of vault manager
    /// @return _vault Address of Aastra vault
    function managerVault(address _manager)
        external
        view
        returns (address _vault);

    /// @notice Creates a new Aastra vault
    /// @param _uniswapPool Address of Uniswap V3 Pool
    /// @param _strategyManager Address of strategy manager managing the vault
    /// @param _protocolFee Fee charged by strategy manager for the new vault
    /// @param _strategyFee Fee charged by protocol for the new vault
    /// @param _maxCappedLimit Max limit of TVL of the vault
    function createVault(
        address _uniswapPool,
        address _strategyManager,
        uint256 _protocolFee,
        uint256 _strategyFee,
        uint256 _maxCappedLimit
    ) external;

    /// @notice Sets a new manager for an existing vault
    /// @param _newManager Address of the new manager for the vault
    /// @param _vault Address of the Aastra vault
    function updateManager(address _newManager, address _vault) external;

    /// @notice Returns the address of Router contract
    /// @return _router Address of Router contract
    function router() external view returns (address _router);

    /// @notice Returns the address of protocol governance
    /// @return _governance Address of protocol governance
    function governance() external view returns (address _governance);


    /// @notice Returns the address of pending protocol governance
    /// @return _pendingGovernance Address of pending protocol governance
    function pendingGovernance()
        external
        view
        returns (address _pendingGovernance);

    /// @notice Allows to upgrade the router contract to a new one
    /// @param _router Address of the new router contract
    function setRouter(address _router) external;

    /// @notice Allows to set a new governance address
    /// @param _governance Address of the new protocol governance
    function setGovernance(address _governance) external;

    /// @notice Function to be called by new governance method to accept the role
    function acceptGovernance() external;
}

File 18 of 28 : LongMath.sol
pragma solidity >=0.7.5;

library LongMath {    
    
    /// @notice Calculates floor(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
    /// @param a The multiplicand
    /// @param b The multiplier
    /// @param denominator The divisor
    /// @return result The 256-bit result
    /// @dev Credit to Remco Bloemen under MIT license https://xn--2-umb.com/21/muldiv
    function mulDiv(
        uint256 a,
        uint256 b,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        // 512-bit multiply [prod1 prod0] = a * b
        // Compute the product mod 2**256 and mod 2**256 - 1
        // then 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(a, b, not(0))
            prod0 := mul(a, b)
            prod1 := sub(sub(mm, prod0), lt(mm, prod0))
        }

        // Handle non-overflow cases, 256 by 256 division
        if (prod1 == 0) {
            require(denominator > 0);
            assembly {
                result := div(prod0, denominator)
            }
            return result;
        }

        // Make sure the result is less than 2**256.
        // Also prevents denominator == 0
        require(denominator > prod1);

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

        // Make division exact by subtracting the remainder from [prod1 prod0]
        // Compute remainder using mulmod
        uint256 remainder;
        assembly {
            remainder := mulmod(a, b, denominator)
        }
        // Subtract 256 bit number from 512 bit number
        assembly {
            prod1 := sub(prod1, gt(remainder, prod0))
            prod0 := sub(prod0, remainder)
        }

        // Factor powers of two out of denominator
        // Compute largest power of two divisor of denominator.
        // Always >= 1.
        uint256 twos = -denominator & denominator;
        // Divide denominator by power of two
        assembly {
            denominator := div(denominator, twos)
        }

        // Divide [prod1 prod0] by the factors of two
        assembly {
            prod0 := div(prod0, twos)
        }
        // Shift in bits from prod1 into prod0. For this we need
        // to flip `twos` such that it is 2**256 / twos.
        // If twos is zero, then it becomes one
        assembly {
            twos := add(div(sub(0, twos), twos), 1)
        }
        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
        // correct for four bits. That is, denominator * inv = 1 mod 2**4
        uint256 inv = (3 * denominator) ^ 2;
        // Now use 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.
        inv *= 2 - denominator * inv; // inverse mod 2**8
        inv *= 2 - denominator * inv; // inverse mod 2**16
        inv *= 2 - denominator * inv; // inverse mod 2**32
        inv *= 2 - denominator * inv; // inverse mod 2**64
        inv *= 2 - denominator * inv; // inverse mod 2**128
        inv *= 2 - denominator * inv; // 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 precoditions 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 * inv;
        return result;
    }
}

File 19 of 28 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 20 of 28 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 21 of 28 : IUniswapV3PoolImmutables.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Pool state that never changes
/// @notice These parameters are fixed for a pool forever, i.e., the methods will always return the same values
interface IUniswapV3PoolImmutables {
    /// @notice The contract that deployed the pool, which must adhere to the IUniswapV3Factory interface
    /// @return The contract address
    function factory() external view returns (address);

    /// @notice The first of the two tokens of the pool, sorted by address
    /// @return The token contract address
    function token0() external view returns (address);

    /// @notice The second of the two tokens of the pool, sorted by address
    /// @return The token contract address
    function token1() external view returns (address);

    /// @notice The pool's fee in hundredths of a bip, i.e. 1e-6
    /// @return The fee
    function fee() external view returns (uint24);

    /// @notice The pool tick spacing
    /// @dev Ticks can only be used at multiples of this value, minimum of 1 and always positive
    /// e.g.: a tickSpacing of 3 means ticks can be initialized every 3rd tick, i.e., ..., -6, -3, 0, 3, 6, ...
    /// This value is an int24 to avoid casting even though it is always positive.
    /// @return The tick spacing
    function tickSpacing() external view returns (int24);

    /// @notice The maximum amount of position liquidity that can use any tick in the range
    /// @dev This parameter is enforced per tick to prevent liquidity from overflowing a uint128 at any point, and
    /// also prevents out-of-range liquidity from being used to prevent adding in-range liquidity to a pool
    /// @return The max amount of liquidity per tick
    function maxLiquidityPerTick() external view returns (uint128);
}

File 22 of 28 : IUniswapV3PoolState.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Pool state that can change
/// @notice These methods compose the pool's state, and can change with any frequency including multiple times
/// per transaction
interface IUniswapV3PoolState {
    /// @notice The 0th storage slot in the pool stores many values, and is exposed as a single method to save gas
    /// when accessed externally.
    /// @return sqrtPriceX96 The current price of the pool as a sqrt(token1/token0) Q64.96 value
    /// tick The current tick of the pool, i.e. according to the last tick transition that was run.
    /// This value may not always be equal to SqrtTickMath.getTickAtSqrtRatio(sqrtPriceX96) if the price is on a tick
    /// boundary.
    /// observationIndex The index of the last oracle observation that was written,
    /// observationCardinality The current maximum number of observations stored in the pool,
    /// observationCardinalityNext The next maximum number of observations, to be updated when the observation.
    /// feeProtocol The protocol fee for both tokens of the pool.
    /// Encoded as two 4 bit values, where the protocol fee of token1 is shifted 4 bits and the protocol fee of token0
    /// is the lower 4 bits. Used as the denominator of a fraction of the swap fee, e.g. 4 means 1/4th of the swap fee.
    /// unlocked Whether the pool is currently locked to reentrancy
    function slot0()
        external
        view
        returns (
            uint160 sqrtPriceX96,
            int24 tick,
            uint16 observationIndex,
            uint16 observationCardinality,
            uint16 observationCardinalityNext,
            uint8 feeProtocol,
            bool unlocked
        );

    /// @notice The fee growth as a Q128.128 fees of token0 collected per unit of liquidity for the entire life of the pool
    /// @dev This value can overflow the uint256
    function feeGrowthGlobal0X128() external view returns (uint256);

    /// @notice The fee growth as a Q128.128 fees of token1 collected per unit of liquidity for the entire life of the pool
    /// @dev This value can overflow the uint256
    function feeGrowthGlobal1X128() external view returns (uint256);

    /// @notice The amounts of token0 and token1 that are owed to the protocol
    /// @dev Protocol fees will never exceed uint128 max in either token
    function protocolFees() external view returns (uint128 token0, uint128 token1);

    /// @notice The currently in range liquidity available to the pool
    /// @dev This value has no relationship to the total liquidity across all ticks
    function liquidity() external view returns (uint128);

    /// @notice Look up information about a specific tick in the pool
    /// @param tick The tick to look up
    /// @return liquidityGross the total amount of position liquidity that uses the pool either as tick lower or
    /// tick upper,
    /// liquidityNet how much liquidity changes when the pool price crosses the tick,
    /// feeGrowthOutside0X128 the fee growth on the other side of the tick from the current tick in token0,
    /// feeGrowthOutside1X128 the fee growth on the other side of the tick from the current tick in token1,
    /// tickCumulativeOutside the cumulative tick value on the other side of the tick from the current tick
    /// secondsPerLiquidityOutsideX128 the seconds spent per liquidity on the other side of the tick from the current tick,
    /// secondsOutside the seconds spent on the other side of the tick from the current tick,
    /// initialized Set to true if the tick is initialized, i.e. liquidityGross is greater than 0, otherwise equal to false.
    /// Outside values can only be used if the tick is initialized, i.e. if liquidityGross is greater than 0.
    /// In addition, these values are only relative and must be used only in comparison to previous snapshots for
    /// a specific position.
    function ticks(int24 tick)
        external
        view
        returns (
            uint128 liquidityGross,
            int128 liquidityNet,
            uint256 feeGrowthOutside0X128,
            uint256 feeGrowthOutside1X128,
            int56 tickCumulativeOutside,
            uint160 secondsPerLiquidityOutsideX128,
            uint32 secondsOutside,
            bool initialized
        );

    /// @notice Returns 256 packed tick initialized boolean values. See TickBitmap for more information
    function tickBitmap(int16 wordPosition) external view returns (uint256);

    /// @notice Returns the information about a position by the position's key
    /// @param key The position's key is a hash of a preimage composed by the owner, tickLower and tickUpper
    /// @return _liquidity The amount of liquidity in the position,
    /// Returns feeGrowthInside0LastX128 fee growth of token0 inside the tick range as of the last mint/burn/poke,
    /// Returns feeGrowthInside1LastX128 fee growth of token1 inside the tick range as of the last mint/burn/poke,
    /// Returns tokensOwed0 the computed amount of token0 owed to the position as of the last mint/burn/poke,
    /// Returns tokensOwed1 the computed amount of token1 owed to the position as of the last mint/burn/poke
    function positions(bytes32 key)
        external
        view
        returns (
            uint128 _liquidity,
            uint256 feeGrowthInside0LastX128,
            uint256 feeGrowthInside1LastX128,
            uint128 tokensOwed0,
            uint128 tokensOwed1
        );

    /// @notice Returns data about a specific observation index
    /// @param index The element of the observations array to fetch
    /// @dev You most likely want to use #observe() instead of this method to get an observation as of some amount of time
    /// ago, rather than at a specific index in the array.
    /// @return blockTimestamp The timestamp of the observation,
    /// Returns tickCumulative the tick multiplied by seconds elapsed for the life of the pool as of the observation timestamp,
    /// Returns secondsPerLiquidityCumulativeX128 the seconds per in range liquidity for the life of the pool as of the observation timestamp,
    /// Returns initialized whether the observation has been initialized and the values are safe to use
    function observations(uint256 index)
        external
        view
        returns (
            uint32 blockTimestamp,
            int56 tickCumulative,
            uint160 secondsPerLiquidityCumulativeX128,
            bool initialized
        );
}

File 23 of 28 : IUniswapV3PoolDerivedState.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Pool state that is not stored
/// @notice Contains view functions to provide information about the pool that is computed rather than stored on the
/// blockchain. The functions here may have variable gas costs.
interface IUniswapV3PoolDerivedState {
    /// @notice Returns the cumulative tick and liquidity as of each timestamp `secondsAgo` from the current block timestamp
    /// @dev To get a time weighted average tick or liquidity-in-range, you must call this with two values, one representing
    /// the beginning of the period and another for the end of the period. E.g., to get the last hour time-weighted average tick,
    /// you must call it with secondsAgos = [3600, 0].
    /// @dev The time weighted average tick represents the geometric time weighted average price of the pool, in
    /// log base sqrt(1.0001) of token1 / token0. The TickMath library can be used to go from a tick value to a ratio.
    /// @param secondsAgos From how long ago each cumulative tick and liquidity value should be returned
    /// @return tickCumulatives Cumulative tick values as of each `secondsAgos` from the current block timestamp
    /// @return secondsPerLiquidityCumulativeX128s Cumulative seconds per liquidity-in-range value as of each `secondsAgos` from the current block
    /// timestamp
    function observe(uint32[] calldata secondsAgos)
        external
        view
        returns (int56[] memory tickCumulatives, uint160[] memory secondsPerLiquidityCumulativeX128s);

    /// @notice Returns a snapshot of the tick cumulative, seconds per liquidity and seconds inside a tick range
    /// @dev Snapshots must only be compared to other snapshots, taken over a period for which a position existed.
    /// I.e., snapshots cannot be compared if a position is not held for the entire period between when the first
    /// snapshot is taken and the second snapshot is taken.
    /// @param tickLower The lower tick of the range
    /// @param tickUpper The upper tick of the range
    /// @return tickCumulativeInside The snapshot of the tick accumulator for the range
    /// @return secondsPerLiquidityInsideX128 The snapshot of seconds per liquidity for the range
    /// @return secondsInside The snapshot of seconds per liquidity for the range
    function snapshotCumulativesInside(int24 tickLower, int24 tickUpper)
        external
        view
        returns (
            int56 tickCumulativeInside,
            uint160 secondsPerLiquidityInsideX128,
            uint32 secondsInside
        );
}

File 24 of 28 : IUniswapV3PoolActions.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Permissionless pool actions
/// @notice Contains pool methods that can be called by anyone
interface IUniswapV3PoolActions {
    /// @notice Sets the initial price for the pool
    /// @dev Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value
    /// @param sqrtPriceX96 the initial sqrt price of the pool as a Q64.96
    function initialize(uint160 sqrtPriceX96) external;

    /// @notice Adds liquidity for the given recipient/tickLower/tickUpper position
    /// @dev The caller of this method receives a callback in the form of IUniswapV3MintCallback#uniswapV3MintCallback
    /// in which they must pay any token0 or token1 owed for the liquidity. The amount of token0/token1 due depends
    /// on tickLower, tickUpper, the amount of liquidity, and the current price.
    /// @param recipient The address for which the liquidity will be created
    /// @param tickLower The lower tick of the position in which to add liquidity
    /// @param tickUpper The upper tick of the position in which to add liquidity
    /// @param amount The amount of liquidity to mint
    /// @param data Any data that should be passed through to the callback
    /// @return amount0 The amount of token0 that was paid to mint the given amount of liquidity. Matches the value in the callback
    /// @return amount1 The amount of token1 that was paid to mint the given amount of liquidity. Matches the value in the callback
    function mint(
        address recipient,
        int24 tickLower,
        int24 tickUpper,
        uint128 amount,
        bytes calldata data
    ) external returns (uint256 amount0, uint256 amount1);

    /// @notice Collects tokens owed to a position
    /// @dev Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity.
    /// Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or
    /// amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the
    /// actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity.
    /// @param recipient The address which should receive the fees collected
    /// @param tickLower The lower tick of the position for which to collect fees
    /// @param tickUpper The upper tick of the position for which to collect fees
    /// @param amount0Requested How much token0 should be withdrawn from the fees owed
    /// @param amount1Requested How much token1 should be withdrawn from the fees owed
    /// @return amount0 The amount of fees collected in token0
    /// @return amount1 The amount of fees collected in token1
    function collect(
        address recipient,
        int24 tickLower,
        int24 tickUpper,
        uint128 amount0Requested,
        uint128 amount1Requested
    ) external returns (uint128 amount0, uint128 amount1);

    /// @notice Burn liquidity from the sender and account tokens owed for the liquidity to the position
    /// @dev Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0
    /// @dev Fees must be collected separately via a call to #collect
    /// @param tickLower The lower tick of the position for which to burn liquidity
    /// @param tickUpper The upper tick of the position for which to burn liquidity
    /// @param amount How much liquidity to burn
    /// @return amount0 The amount of token0 sent to the recipient
    /// @return amount1 The amount of token1 sent to the recipient
    function burn(
        int24 tickLower,
        int24 tickUpper,
        uint128 amount
    ) external returns (uint256 amount0, uint256 amount1);

    /// @notice Swap token0 for token1, or token1 for token0
    /// @dev The caller of this method receives a callback in the form of IUniswapV3SwapCallback#uniswapV3SwapCallback
    /// @param recipient The address to receive the output of the swap
    /// @param zeroForOne The direction of the swap, true for token0 to token1, false for token1 to token0
    /// @param amountSpecified The amount of the swap, which implicitly configures the swap as exact input (positive), or exact output (negative)
    /// @param sqrtPriceLimitX96 The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this
    /// value after the swap. If one for zero, the price cannot be greater than this value after the swap
    /// @param data Any data to be passed through to the callback
    /// @return amount0 The delta of the balance of token0 of the pool, exact when negative, minimum when positive
    /// @return amount1 The delta of the balance of token1 of the pool, exact when negative, minimum when positive
    function swap(
        address recipient,
        bool zeroForOne,
        int256 amountSpecified,
        uint160 sqrtPriceLimitX96,
        bytes calldata data
    ) external returns (int256 amount0, int256 amount1);

    /// @notice Receive token0 and/or token1 and pay it back, plus a fee, in the callback
    /// @dev The caller of this method receives a callback in the form of IUniswapV3FlashCallback#uniswapV3FlashCallback
    /// @dev Can be used to donate underlying tokens pro-rata to currently in-range liquidity providers by calling
    /// with 0 amount{0,1} and sending the donation amount(s) from the callback
    /// @param recipient The address which will receive the token0 and token1 amounts
    /// @param amount0 The amount of token0 to send
    /// @param amount1 The amount of token1 to send
    /// @param data Any data to be passed through to the callback
    function flash(
        address recipient,
        uint256 amount0,
        uint256 amount1,
        bytes calldata data
    ) external;

    /// @notice Increase the maximum number of price and liquidity observations that this pool will store
    /// @dev This method is no-op if the pool already has an observationCardinalityNext greater than or equal to
    /// the input observationCardinalityNext.
    /// @param observationCardinalityNext The desired minimum number of observations for the pool to store
    function increaseObservationCardinalityNext(uint16 observationCardinalityNext) external;
}

File 25 of 28 : IUniswapV3PoolOwnerActions.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Permissioned pool actions
/// @notice Contains pool methods that may only be called by the factory owner
interface IUniswapV3PoolOwnerActions {
    /// @notice Set the denominator of the protocol's % share of the fees
    /// @param feeProtocol0 new protocol fee for token0 of the pool
    /// @param feeProtocol1 new protocol fee for token1 of the pool
    function setFeeProtocol(uint8 feeProtocol0, uint8 feeProtocol1) external;

    /// @notice Collect the protocol fee accrued to the pool
    /// @param recipient The address to which collected protocol fees should be sent
    /// @param amount0Requested The maximum amount of token0 to send, can be 0 to collect fees in only token1
    /// @param amount1Requested The maximum amount of token1 to send, can be 0 to collect fees in only token0
    /// @return amount0 The protocol fee collected in token0
    /// @return amount1 The protocol fee collected in token1
    function collectProtocol(
        address recipient,
        uint128 amount0Requested,
        uint128 amount1Requested
    ) external returns (uint128 amount0, uint128 amount1);
}

File 26 of 28 : IUniswapV3PoolEvents.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Events emitted by a pool
/// @notice Contains all events emitted by the pool
interface IUniswapV3PoolEvents {
    /// @notice Emitted exactly once by a pool when #initialize is first called on the pool
    /// @dev Mint/Burn/Swap cannot be emitted by the pool before Initialize
    /// @param sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96
    /// @param tick The initial tick of the pool, i.e. log base 1.0001 of the starting price of the pool
    event Initialize(uint160 sqrtPriceX96, int24 tick);

    /// @notice Emitted when liquidity is minted for a given position
    /// @param sender The address that minted the liquidity
    /// @param owner The owner of the position and recipient of any minted liquidity
    /// @param tickLower The lower tick of the position
    /// @param tickUpper The upper tick of the position
    /// @param amount The amount of liquidity minted to the position range
    /// @param amount0 How much token0 was required for the minted liquidity
    /// @param amount1 How much token1 was required for the minted liquidity
    event Mint(
        address sender,
        address indexed owner,
        int24 indexed tickLower,
        int24 indexed tickUpper,
        uint128 amount,
        uint256 amount0,
        uint256 amount1
    );

    /// @notice Emitted when fees are collected by the owner of a position
    /// @dev Collect events may be emitted with zero amount0 and amount1 when the caller chooses not to collect fees
    /// @param owner The owner of the position for which fees are collected
    /// @param tickLower The lower tick of the position
    /// @param tickUpper The upper tick of the position
    /// @param amount0 The amount of token0 fees collected
    /// @param amount1 The amount of token1 fees collected
    event Collect(
        address indexed owner,
        address recipient,
        int24 indexed tickLower,
        int24 indexed tickUpper,
        uint128 amount0,
        uint128 amount1
    );

    /// @notice Emitted when a position's liquidity is removed
    /// @dev Does not withdraw any fees earned by the liquidity position, which must be withdrawn via #collect
    /// @param owner The owner of the position for which liquidity is removed
    /// @param tickLower The lower tick of the position
    /// @param tickUpper The upper tick of the position
    /// @param amount The amount of liquidity to remove
    /// @param amount0 The amount of token0 withdrawn
    /// @param amount1 The amount of token1 withdrawn
    event Burn(
        address indexed owner,
        int24 indexed tickLower,
        int24 indexed tickUpper,
        uint128 amount,
        uint256 amount0,
        uint256 amount1
    );

    /// @notice Emitted by the pool for any swaps between token0 and token1
    /// @param sender The address that initiated the swap call, and that received the callback
    /// @param recipient The address that received the output of the swap
    /// @param amount0 The delta of the token0 balance of the pool
    /// @param amount1 The delta of the token1 balance of the pool
    /// @param sqrtPriceX96 The sqrt(price) of the pool after the swap, as a Q64.96
    /// @param liquidity The liquidity of the pool after the swap
    /// @param tick The log base 1.0001 of price of the pool after the swap
    event Swap(
        address indexed sender,
        address indexed recipient,
        int256 amount0,
        int256 amount1,
        uint160 sqrtPriceX96,
        uint128 liquidity,
        int24 tick
    );

    /// @notice Emitted by the pool for any flashes of token0/token1
    /// @param sender The address that initiated the swap call, and that received the callback
    /// @param recipient The address that received the tokens from flash
    /// @param amount0 The amount of token0 that was flashed
    /// @param amount1 The amount of token1 that was flashed
    /// @param paid0 The amount of token0 paid for the flash, which can exceed the amount0 plus the fee
    /// @param paid1 The amount of token1 paid for the flash, which can exceed the amount1 plus the fee
    event Flash(
        address indexed sender,
        address indexed recipient,
        uint256 amount0,
        uint256 amount1,
        uint256 paid0,
        uint256 paid1
    );

    /// @notice Emitted by the pool for increases to the number of observations that can be stored
    /// @dev observationCardinalityNext is not the observation cardinality until an observation is written at the index
    /// just before a mint/swap/burn.
    /// @param observationCardinalityNextOld The previous value of the next observation cardinality
    /// @param observationCardinalityNextNew The updated value of the next observation cardinality
    event IncreaseObservationCardinalityNext(
        uint16 observationCardinalityNextOld,
        uint16 observationCardinalityNextNew
    );

    /// @notice Emitted when the protocol fee is changed by the pool
    /// @param feeProtocol0Old The previous value of the token0 protocol fee
    /// @param feeProtocol1Old The previous value of the token1 protocol fee
    /// @param feeProtocol0New The updated value of the token0 protocol fee
    /// @param feeProtocol1New The updated value of the token1 protocol fee
    event SetFeeProtocol(uint8 feeProtocol0Old, uint8 feeProtocol1Old, uint8 feeProtocol0New, uint8 feeProtocol1New);

    /// @notice Emitted when the collected protocol fees are withdrawn by the factory owner
    /// @param sender The address that collects the protocol fees
    /// @param recipient The address that receives the collected protocol fees
    /// @param amount0 The amount of token0 protocol fees that is withdrawn
    /// @param amount0 The amount of token1 protocol fees that is withdrawn
    event CollectProtocol(address indexed sender, address indexed recipient, uint128 amount0, uint128 amount1);
}

File 27 of 28 : FullMath.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.0;

/// @title Contains 512-bit math functions
/// @notice Facilitates multiplication and division that can have overflow of an intermediate value without any loss of precision
/// @dev Handles "phantom overflow" i.e., allows multiplication and division where an intermediate value overflows 256 bits
library FullMath {
    /// @notice Calculates floor(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
    /// @param a The multiplicand
    /// @param b The multiplier
    /// @param denominator The divisor
    /// @return result The 256-bit result
    /// @dev Credit to Remco Bloemen under MIT license https://xn--2-umb.com/21/muldiv
    function mulDiv(
        uint256 a,
        uint256 b,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        // 512-bit multiply [prod1 prod0] = a * b
        // Compute the product mod 2**256 and mod 2**256 - 1
        // then 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(a, b, not(0))
            prod0 := mul(a, b)
            prod1 := sub(sub(mm, prod0), lt(mm, prod0))
        }

        // Handle non-overflow cases, 256 by 256 division
        if (prod1 == 0) {
            require(denominator > 0);
            assembly {
                result := div(prod0, denominator)
            }
            return result;
        }

        // Make sure the result is less than 2**256.
        // Also prevents denominator == 0
        require(denominator > prod1);

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

        // Make division exact by subtracting the remainder from [prod1 prod0]
        // Compute remainder using mulmod
        uint256 remainder;
        assembly {
            remainder := mulmod(a, b, denominator)
        }
        // Subtract 256 bit number from 512 bit number
        assembly {
            prod1 := sub(prod1, gt(remainder, prod0))
            prod0 := sub(prod0, remainder)
        }

        // Factor powers of two out of denominator
        // Compute largest power of two divisor of denominator.
        // Always >= 1.
        uint256 twos = -denominator & denominator;
        // Divide denominator by power of two
        assembly {
            denominator := div(denominator, twos)
        }

        // Divide [prod1 prod0] by the factors of two
        assembly {
            prod0 := div(prod0, twos)
        }
        // Shift in bits from prod1 into prod0. For this we need
        // to flip `twos` such that it is 2**256 / twos.
        // If twos is zero, then it becomes one
        assembly {
            twos := add(div(sub(0, twos), twos), 1)
        }
        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
        // correct for four bits. That is, denominator * inv = 1 mod 2**4
        uint256 inv = (3 * denominator) ^ 2;
        // Now use 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.
        inv *= 2 - denominator * inv; // inverse mod 2**8
        inv *= 2 - denominator * inv; // inverse mod 2**16
        inv *= 2 - denominator * inv; // inverse mod 2**32
        inv *= 2 - denominator * inv; // inverse mod 2**64
        inv *= 2 - denominator * inv; // inverse mod 2**128
        inv *= 2 - denominator * inv; // 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 precoditions 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 * inv;
        return result;
    }

    /// @notice Calculates ceil(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
    /// @param a The multiplicand
    /// @param b The multiplier
    /// @param denominator The divisor
    /// @return result The 256-bit result
    function mulDivRoundingUp(
        uint256 a,
        uint256 b,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        result = mulDiv(a, b, denominator);
        if (mulmod(a, b, denominator) > 0) {
            require(result < type(uint256).max);
            result++;
        }
    }
}

File 28 of 28 : FixedPoint96.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.4.0;

/// @title FixedPoint96
/// @notice A library for handling binary fixed point numbers, see https://en.wikipedia.org/wiki/Q_(number_format)
/// @dev Used in SqrtPriceMath.sol
library FixedPoint96 {
    uint8 internal constant RESOLUTION = 96;
    uint256 internal constant Q96 = 0x1000000000000000000000000;
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_pool","type":"address"},{"internalType":"uint256","name":"_protocolFee","type":"uint256"},{"internalType":"uint256","name":"_strategyFee","type":"uint256"},{"internalType":"uint256","name":"_maxTotalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feesToVault0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feesToVault1","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feesToStrategy0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feesToStrategy1","type":"uint256"}],"name":"CollectFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"accruedProtocolFees0","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accruedProtocolFees1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accruedStrategyFees0","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accruedStrategyFees1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseLower","outputs":[{"internalType":"int24","name":"","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUpper","outputs":[{"internalType":"int24","name":"","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint128","name":"liquidity","type":"uint128"}],"name":"burnAndCollect","outputs":[{"internalType":"uint256","name":"burned0","type":"uint256"},{"internalType":"uint256","name":"burned1","type":"uint256"},{"internalType":"uint256","name":"feesToVault0","type":"uint256"},{"internalType":"uint256","name":"feesToVault1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"collectProtocol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"collectStrategy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"compoundFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0Desired","type":"uint256"},{"internalType":"uint256","name":"amount1Desired","type":"uint256"},{"internalType":"uint256","name":"amount0Min","type":"uint256"},{"internalType":"uint256","name":"amount1Min","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"emergencyBurnAndCollect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"contract IFactory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"freezeStrategy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"freezeUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBalance0","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"}],"name":"getPositionAmounts","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalAmounts","outputs":[{"internalType":"uint256","name":"total0","type":"uint256"},{"internalType":"uint256","name":"total1","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitLower","outputs":[{"internalType":"int24","name":"","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitUpper","outputs":[{"internalType":"int24","name":"","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int24","name":"_lowerTick","type":"int24"},{"internalType":"int24","name":"_upperTick","type":"int24"},{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"},{"internalType":"bool","name":"swapEnabled","type":"bool"}],"name":"mintOptimalLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseStrategy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"}],"name":"poke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pool","outputs":[{"internalType":"contract IUniswapV3Pool","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"}],"name":"position","outputs":[{"internalType":"uint128","name":"","type":"uint128"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint128","name":"","type":"uint128"},{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int24","name":"_baseLower","type":"int24"},{"internalType":"int24","name":"_baseUpper","type":"int24"}],"name":"setBaseTicks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int24","name":"_limitLower","type":"int24"},{"internalType":"int24","name":"_limitUpper","type":"int24"}],"name":"setLimitTicks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTotalSupply","type":"uint256"}],"name":"setMaxTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strategy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"strategyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapRouter","outputs":[{"internalType":"contract ISwapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"direction","type":"bool"},{"internalType":"uint256","name":"amountInToSwap","type":"uint256"}],"name":"swapTokensFromPool","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tickSpacing","outputs":[{"internalType":"int24","name":"","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token0","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"uniswapV3MintCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int256","name":"amount0Delta","type":"int256"},{"internalType":"int256","name":"amount1Delta","type":"int256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"uniswapV3SwapCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"amount0Min","type":"uint256"},{"internalType":"uint256","name":"amount1Min","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}]

610100604052600880546001600160a01b03191673e592427a0aece92de3edee1f18e0157c058615641790553480156200003857600080fd5b5060405162005617380380620056178339810160408190526200005b91620003c8565b604080518082018252600c81526b10585cdd1c984815985d5b1d60a21b60208083019182528351808501909452600d84526c105054d514904b515512141555609a1b908401528151919291620000b491600391620002db565b508051620000ca906004906020840190620002db565b50506005805460ff19166012179055506001600655600780546001600160a01b031916331790556001600160601b0319606085901b1660805260408051630dfe168160e01b815290516001600160a01b03861691630dfe1681916004808301926020929190829003018186803b1580156200014457600080fd5b505afa15801562000159573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017f9190620003a4565b6001600160a01b031660a0816001600160a01b031660601b81525050836001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b158015620001d557600080fd5b505afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002109190620003a4565b6001600160a01b031660c0816001600160a01b031660601b81525050836001600160a01b031663d0c93a7c6040518163ffffffff1660e01b815260040160206040518083038186803b1580156200026657600080fd5b505afa1580156200027b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a1919062000407565b600290810b900b60e81b60e0526009839055600a8290558015620002ca57600b819055620002d1565b600019600b555b505050506200042a565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200031357600085556200035e565b82601f106200032e57805160ff19168380011785556200035e565b828001600101855582156200035e579182015b828111156200035e57825182559160200191906001019062000341565b506200036c92915062000370565b5090565b5b808211156200036c576000815560010162000371565b80516001600160a01b03811681146200039f57600080fd5b919050565b600060208284031215620003b6578081fd5b620003c18262000387565b9392505050565b60008060008060808587031215620003de578283fd5b620003e98562000387565b60208601516040870151606090970151919890975090945092505050565b60006020828403121562000419578081fd5b81518060020b8114620003c1578182fd5b60805160601c60a05160601c60c05160601c60e05160e81c6150d46200054360003980611f9b5280613e1f5250806106c25280610be0528061126c528061132e52806116ff5280611b885280611bff5280611cee5280611fbf52806122dc52806123ec52806125b452806131a552508061068852806108455280610ba55280611229528061150a52806116685280611bae5280611bd95280611c41528061209952806122a252806123b25280612577528061310e52508061087f52806108d55280610ebb5280610f6f528061108e52806111495280611db152806123755280612537528061261652806128565280612db35280612ea15280613019528061325752806135af52806136a1528061374c52506150d46000f3fe608060405234801561001057600080fd5b50600436106102ad5760003560e01c806394cf2d7c11610173578063c4a7761e116100d4578063c4a7761e14610547578063d0c93a7c1461054f578063d21220a714610557578063d2f5ee4b1461055f578063d331bef714610572578063d348799714610585578063d5195d7914610598578063d8c143f7146105bb578063dd62ed3e146105c3578063eae989a2146105d6578063f887ea40146105de578063fa082743146105e6578063fa461e33146105ee578063fd7fd49114610601576102ad565b806394cf2d7c1461049257806395d89b41146104a5578063a00fa77f146104ad578063a457c2d7146104b5578063a8c62e76146104c8578063a9059cbb146104d0578063a91ef6eb146104e3578063acdb94ec14610504578063ae7fb76b1461050c578063b0e21e8a14610514578063c0c3132c1461051c578063c31c9c0714610524578063c3e895dc1461052c578063c45a01551461053f576102ad565b8063365d0ed71161021d578063365d0ed7146103b05780633869c916146103d257806339509351146103e55780633f3e4c11146103f857806341aec5381461040b57806351e87af7146104135780635542c87f1461041b5780635aa6e6751461042e578063629d94051461043657806364d549301461043e5780636b8d1d49146104515780636d5130d41461046457806370a0823114610477578063888a91341461048a576102ad565b80630430c130146102b257806306fdde03146102c7578063095ea7b3146102e55780630a6c3bb2146103055780630dfe16811461030d5780630f35bcac14610322578063149644781461033757806316f0115b1461034c57806318160ddd1461035457806320ca5d321461035c57806323b872dd146103805780632ab4d05214610393578063313ce5671461039b575b600080fd5b6102c56102c0366004614838565b610614565b005b6102cf6106ee565b6040516102dc91906149f1565b60405180910390f35b6102f86102f336600461450d565b610784565b6040516102dc91906149a9565b6102c56107a2565b610315610843565b6040516102dc91906148fd565b61032a610867565b6040516102dc91906149bd565b61033f610877565b6040516102dc91906149b4565b61031561087d565b61033f6108a1565b61036f61036a36600461458d565b6108a7565b6040516102dc959493929190614de0565b6102f861038e3660046144cd565b61096e565b61033f6109f6565b6103a36109fc565b6040516102dc9190614e51565b6103c36103be3660046148a5565b610a05565b6040516102dc93929190614e20565b6102c56103e036600461445d565b610e17565b6102f86103f336600461450d565b611293565b6102c56104063660046147e5565b6112e1565b61033f61131e565b61032a6113d3565b6102c561042936600461458d565b6113e3565b61031561147d565b61033f6114fa565b6102c561044c36600461458d565b611554565b6102c561045f366004614604565b6115f7565b6102c5610472366004614538565b6117f2565b61033f61048536600461445d565b611848565b61032a611867565b6102c56104a0366004614538565b611877565b6102cf6118cd565b61033f61192e565b6102f86104c336600461450d565b611934565b61031561199c565b6102f86104de36600461450d565b6119e5565b6104f66104f136600461458d565b6119f9565b6040516102dc929190614e12565b61033f611a9f565b61033f611aa5565b61033f611aab565b6102f8611ab1565b610315611ac1565b61033f61053a366004614570565b611ad0565b610315611f04565b6104f6611f13565b61032a611f99565b610315611fbd565b6102c561056d366004614838565b611fe1565b6104f6610580366004614865565b6120c0565b6102c5610593366004614662565b61236a565b6105ab6105a63660046145ba565b612419565b6040516102dc9493929190614e36565b6102f861249d565b61033f6105d1366004614495565b6124ad565b61033f6124d8565b6103156124de565b61032a612523565b6102c56105fc366004614662565b61252c565b6102c561060f36600461458d565b6125db565b61061c61147d565b6001600160a01b0316336001600160a01b0316146106555760405162461bcd60e51b815260040161064c90614be9565b60405180910390fd5b600c5461066290846126a8565b600c55600e5461067290836126a8565b600e5582156106af576106af6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168285612705565b81156106e9576106e96001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168284612705565b505050565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561077a5780601f1061074f5761010080835404028352916020019161077a565b820191906000526020600020905b81548152906001019060200180831161075d57829003601f168201915b5050505050905090565b6000610798610791612757565b848461275b565b5060015b92915050565b6107aa6124de565b6001600160a01b0316336001600160a01b0316146107da5760405162461bcd60e51b815260040161064c90614c20565b600854600160a01b900460ff16156108045760405162461bcd60e51b815260040161064c90614ba3565b60105461081f90600281810b9163010000009004900b612847565b60105461084190600160301b8104600290810b91600160481b9004900b612847565b565b7f000000000000000000000000000000000000000000000000000000000000000081565b601054600160481b900460020b81565b600f5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b60025490565b6000806000806000806108bb308989612957565b60405163514ea4bf60e01b81529091506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063514ea4bf9061090a9084906004016149b4565b60a06040518083038186803b15801561092257600080fd5b505afa158015610936573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095a91906146e1565b939c929b5090995097509095509350505050565b600061097b8484846129a8565b6109eb84610987612757565b6109e685604051806060016040528060288152602001614f9e602891396001600160a01b038a166000908152600160205260408120906109c5612757565b6001600160a01b031681526020810191909152604001600020549190612af1565b61275b565b5060015b9392505050565b600b5481565b60055460ff1690565b600080600060026006541415610a50576040805162461bcd60e51b815260206004820152601f6024820152600080516020614ecd833981519152604482015290519081900360640190fd5b6002600655600854600160a81b900460ff1615610a7f5760405162461bcd60e51b815260040161064c90614d36565b6000881180610a8e5750600087115b610aaa5760405162461bcd60e51b815260040161064c90614b6e565b6001600160a01b03841615801590610acb57506001600160a01b0384163014155b610ae75760405162461bcd60e51b815260040161064c90614a68565b601054610b0290600281810b9163010000009004900b6125db565b601054610b2490600160301b8104600290810b91600160481b9004900b6125db565b610b2e8888612b88565b9194509250905082610b525760405162461bcd60e51b815260040161064c90614c54565b85821015610b725760405162461bcd60e51b815260040161064c90614a44565b84811015610b925760405162461bcd60e51b815260040161064c90614c93565b8115610bcd57610bcd6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333085612c97565b8015610c0857610c086001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333084612c97565b6010546000908190610c2890600281810b9163010000009004900b6119f9565b60105491935091506000908190610c5490600160301b8104600290810b91600160481b9004900b6119f9565b91509150600080610c63611f13565b909250905060008080808515610c9a57610c8786610c818e8d612cf1565b90612d4a565b9350610c9786610c818e8b612cf1565b91505b8415610cc157610cae85610c818d8c612cf1565b9250610cbe85610c818d8a612cf1565b90505b6000841180610cd05750600083115b15610d1657601054600090610cf590600281810b9163010000009004900b8787612dae565b601054909150610d1490600281810b9163010000009004900b83612e71565b505b6000821180610d255750600081115b15610d7957601054600090610d5190600160301b8104600290810b91600160481b9004900b8585612dae565b601054909150610d7790600160301b8104600290810b91600160481b9004900b83612e71565b505b505050505050610d898888612edc565b876001600160a01b0316336001600160a01b03167f4e2ca0515ed1aef1395f66b5303bb5d6f1bf9d61a353fa53f73f8ac9973fa9f6898989604051610dd093929190614e20565b60405180910390a3600b54610de36108a1565b1115610e015760405162461bcd60e51b815260040161064c90614d0e565b5050600160065550929891975095509350505050565b610e1f61147d565b6001600160a01b0316336001600160a01b031614610e4f5760405162461bcd60e51b815260040161064c90614be9565b60105463010000008104600290810b810b91810b900b121561101457601054600090610e8990600281810b9163010000009004900b6108a7565b5050505090506000816001600160801b03161115610f555760105460405163a34123a760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163a34123a791610f0191600281810b926301000000909204900b9086906004016149cb565b6040805180830381600087803b158015610f1a57600080fd5b505af1158015610f2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f529190614815565b50505b6010546040516309e3d67b60e31b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001691634f1eb3d891610fbf918691600282810b9263010000009004900b906001600160801b03908190600401614953565b6040805180830381600087803b158015610fd857600080fd5b505af1158015610fec573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101091906146b3565b5050505b601054600160481b8104600290810b810b600160301b909204810b900b12156111f55760105460009061105c90600160301b8104600290810b91600160481b9004900b6108a7565b5050505090506000816001600160801b0316111561112f5760105460405163a34123a760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163a34123a7916110db91600160301b8104600290810b92600160481b909204900b9086906004016149cb565b6040805180830381600087803b1580156110f457600080fd5b505af1158015611108573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112c9190614815565b50505b6010546040516309e3d67b60e31b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001691634f1eb3d8916111a0918691600160301b8204600290810b92600160481b9004900b906001600160801b03908190600401614953565b6040805180830381600087803b1580156111b957600080fd5b505af11580156111cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f191906146b3565b5050505b60006111ff6114fa565b9050600061120b61131e565b90508115611250576112508361121f6114fa565b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169190612705565b80156106e9576106e98361126261131e565b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169190612705565b60006107986112a0612757565b846109e685600160006112b1612757565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612fba565b6112e961147d565b6001600160a01b0316336001600160a01b0316146113195760405162461bcd60e51b815260040161064c90614be9565b600b55565b60006113ce600f546113c8600e547f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161137891906148fd565b60206040518083038186803b15801561139057600080fd5b505afa1580156113a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c891906147fd565b906126a8565b905090565b601054600160301b900460020b81565b6113eb6124de565b6001600160a01b0316336001600160a01b03161461141b5760405162461bcd60e51b815260040161064c90614c20565b600854600160a01b900460ff16156114455760405162461bcd60e51b815260040161064c90614ba3565b60108054600293840b62ffffff90811662ffffff199490950b1663010000000265ffffff000000199091161791909116919091179055565b60075460408051635aa6e67560e01b815290516000926001600160a01b031691635aa6e675916004808301926020929190829003018186803b1580156114c257600080fd5b505afa1580156114d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ce9190614479565b60006113ce600d546113c8600c547f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161137891906148fd565b61155c6124de565b6001600160a01b0316336001600160a01b03161461158c5760405162461bcd60e51b815260040161064c90614c20565b600854600160a01b900460ff16156115b65760405162461bcd60e51b815260040161064c90614ba3565b60108054600293840b62ffffff908116600160301b0262ffffff60301b199490950b16600160481b0262ffffff60481b199091161791909116919091179055565b6115ff6124de565b6001600160a01b0316336001600160a01b03161461162f5760405162461bcd60e51b815260040161064c90614c20565b600854600160a01b900460ff16156116595760405162461bcd60e51b815260040161064c90614ba3565b60008061179e87876117998a8a7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156116bf57600080fd5b505afa1580156116d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116f791906148e3565b60ff16600a0a7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561175657600080fd5b505afa15801561176a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061178e91906148e3565b60ff16600a0a612dae565b613012565b9150915082156117d8576000806117b7848489896130d9565b915091506117d189896117cc8c8c8787612dae565b612e71565b50506117e9565b6117e987876117cc8a8a8a8a612dae565b50505050505050565b6117fa61147d565b6001600160a01b0316336001600160a01b03161461182a5760405162461bcd60e51b815260040161064c90614be9565b60088054911515600160a01b0260ff60a01b19909216919091179055565b6001600160a01b0381166000908152602081905260409020545b919050565b6010546301000000900460020b81565b61187f61147d565b6001600160a01b0316336001600160a01b0316146118af5760405162461bcd60e51b815260040161064c90614be9565b60088054911515600160a81b0260ff60a81b19909216919091179055565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561077a5780601f1061074f5761010080835404028352916020019161077a565b600e5481565b6000610798611941612757565b846109e68560405180606001604052806025815260200161507a602591396001600061196b612757565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612af1565b60075460405163316fa70960e21b81526000916001600160a01b03169063c5be9c24906119cd9030906004016148fd565b60206040518083038186803b1580156114c257600080fd5b60006107986119f2612757565b84846129a8565b6000806000806000611a0b87876108a7565b9450945050509250611a1e878785613012565b80955081965050506000611a46600a546113c8600954620f42406126a890919063ffffffff16565b9050611a6c611a65620f4240610c816001600160801b03871685612cf1565b8790612fba565b9550611a92611a8b620f4240610c816001600160801b03861685612cf1565b8690612fba565b9450505050509250929050565b600a5481565b600d5481565b60095481565b600854600160a81b900460ff1681565b6008546001600160a01b031681565b600060026006541415611b18576040805162461bcd60e51b815260206004820152601f6024820152600080516020614ecd833981519152604482015290519081900360640190fd5b6002600655611b256124de565b6001600160a01b0316336001600160a01b031614611b555760405162461bcd60e51b815260040161064c90614c20565b600854600160a01b900460ff1615611b7f5760405162461bcd60e51b815260040161064c90614ba3565b600083611bac577f0000000000000000000000000000000000000000000000000000000000000000611bce565b7f00000000000000000000000000000000000000000000000000000000000000005b9050600084611bfd577f0000000000000000000000000000000000000000000000000000000000000000611c1f565b7f00000000000000000000000000000000000000000000000000000000000000005b90508415611cd45760085460405163095ea7b360e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263095ea7b392611c7c9291909116908890600401614990565b602060405180830381600087803b158015611c9657600080fd5b505af1158015611caa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cce9190614554565b50611d7d565b60085460405163095ea7b360e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263095ea7b392611d299291909116908890600401614990565b602060405180830381600087803b158015611d4357600080fd5b505af1158015611d57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d7b9190614554565b505b611d856143b6565b604051806101000160405280846001600160a01b03168152602001836001600160a01b031681526020017f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ddca3f436040518163ffffffff1660e01b815260040160206040518083038186803b158015611e0857600080fd5b505afa158015611e1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e4091906147c2565b62ffffff168152306020820152600a42016040808301919091526060820188905260016080830152600060a090920191909152600854905163414bf38960e01b81529192506001600160a01b03169063414bf38990611ea3908490600401614d77565b602060405180830381600087803b158015611ebd57600080fd5b505af1158015611ed1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef591906147fd565b60016006559695505050505050565b6007546001600160a01b031681565b601054600090819081908190611f3790600281810b9163010000009004900b6119f9565b60105491935091506000908190611f6390600160301b8104600290810b91600160481b9004900b6119f9565b91509150611f7d82611f7786611f776114fa565b90612fba565b9550611f8f81611f7785611f7761131e565b9450505050509091565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b611fe961199c565b6001600160a01b0316336001600160a01b03161480612020575061200b6124de565b6001600160a01b0316336001600160a01b0316145b61203c5760405162461bcd60e51b815260040161064c90614b15565b600854600160a01b900460ff16156120665760405162461bcd60e51b815260040161064c90614ba3565b600d5461207390846126a8565b600d55600f5461208390836126a8565b600f5582156106af576106af6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168285612705565b60008060026006541415612109576040805162461bcd60e51b815260206004820152601f6024820152600080516020614ecd833981519152604482015290519081900360640190fd5b6002600655600854600160a81b900460ff16156121385760405162461bcd60e51b815260040161064c90614d36565b600086116121585760405162461bcd60e51b815260040161064c90614c54565b6001600160a01b0383161580159061217957506001600160a01b0383163014155b6121955760405162461bcd60e51b815260040161064c90614a68565b600061219f6108a1565b90506121ab3388613400565b60006121c382610c818a6121bd6114fa565b90612cf1565b905060006121d783610c818b6121bd61131e565b60105490915060009081906121fc90600281810b9163010000009004900b8d886134ea565b6010549193509150600090819061222a90600160301b8104600290810b91600160481b9004900b8f8a6134ea565b909250905061223d82611f778887612fba565b985061224d81611f778786612fba565b97508b89101561226f5760405162461bcd60e51b815260040161064c90614a44565b8a88101561228f5760405162461bcd60e51b815260040161064c90614c93565b88156122c9576122c96001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168b8b612705565b8715612303576123036001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168b8a612705565b896001600160a01b0316336001600160a01b03167febff2602b3f468259e1e99f613fed6691f3a6526effe6ef3e768ba7ae7a36c4f8f8c8c60405161234a93929190614e20565b60405180910390a350505050505050600160068190555094509492505050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461239f57600080fd5b83156123d9576123d96001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163386612705565b8215612413576124136001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163385612705565b50505050565b6000806000806124276124de565b6001600160a01b0316336001600160a01b0316146124575760405162461bcd60e51b815260040161064c90614c20565b600854600160a01b900460ff16156124815760405162461bcd60e51b815260040161064c90614ba3565b61248c878787613590565b935093509350935093509350935093565b600854600160a01b900460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600c5481565b600754604080516303e21fa960e61b815290516000926001600160a01b03169163f887ea40916004808301926020929190829003018186803b1580156114c257600080fd5b60105460020b81565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461256157600080fd5b600084131561259e5761259e6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163386612705565b6000831315612413576124136001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163385612705565b60006125e783836108a7565b5050505090506000816001600160801b031611156106e95760405163a34123a760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063a34123a79061265090869086906000906004016149cb565b6040805180830381600087803b15801561266957600080fd5b505af115801561267d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126a19190614815565b5050505050565b6000828211156126ff576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526106e99084906137f1565b3390565b6001600160a01b0383166127a05760405162461bcd60e51b815260040180806020018281038252602481526020018061502c6024913960400191505060405180910390fd5b6001600160a01b0382166127e55760405162461bcd60e51b8152600401808060200182810382526022815260200180614f0f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b61285182826125db565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634f1eb3d83086866001600160801b03806040518663ffffffff1660e01b81526004016128af959493929190614953565b6040805180830381600087803b1580156128c857600080fd5b505af11580156128dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061290091906146b3565b6001600160801b031691506001600160801b031691506000821180156129265750600081115b156124135760008061293884846138a2565b91509150600061294a87878585612dae565b90506117e9878783612e71565b6040805160609490941b6001600160601b031916602080860191909152600293840b60e890811b60348701529290930b90911b60378401528051808403601a018152603a9093019052815191012090565b6001600160a01b0383166129ed5760405162461bcd60e51b81526004018080602001828103825260258152602001806150076025913960400191505060405180910390fd5b6001600160a01b038216612a325760405162461bcd60e51b8152600401808060200182810382526023815260200180614eaa6023913960400191505060405180910390fd5b612a3d8383836106e9565b612a7a81604051806060016040528060268152602001614f31602691396001600160a01b0386166000908152602081905260409020549190612af1565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612aa99082612fba565b6001600160a01b03808416600081815260208181526040918290209490945580518581529051919392871692600080516020614fc683398151915292918290030190a3505050565b60008184841115612b805760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612b45578181015183820152602001612b2d565b50505050905090810190601f168015612b725780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600080612b966108a1565b9050600080612ba3611f13565b915091508260001480612bb65750600082115b80612bc15750600081115b612bc757fe5b82612be357879450869350612bdc8585613a0b565b9550612c8d565b81612bf957869350612bdc81610c818686612cf1565b80612c0f57879450612bdc82610c818786612cf1565b6000612c2d612c1e8a84612cf1565b612c288a86612cf1565b613a22565b905060008111612c4f5760405162461bcd60e51b815260040161064c90614c74565b612c626001611f7784610c8185846126a8565b9550612c776001611f7785610c8185846126a8565b9450612c8982610c8185818589612cf1565b9650505b5050509250925092565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526124139085906137f1565b600082612d005750600061079c565b82820282848281612d0d57fe5b04146109ef5760405162461bcd60e51b8152600401808060200182810382526021815260200180614f7d6021913960400191505060405180910390fd5b6000808211612d9d576040805162461bcd60e51b815260206004820152601a602482015279536166654d6174683a206469766973696f6e206279207a65726f60301b604482015290519081900360640190fd5b818381612da657fe5b049392505050565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015612e0a57600080fd5b505afa158015612e1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e429190614734565b5050505050509050612e6781612e5788613a31565b612e6088613a31565b8787613d59565b9695505050505050565b612e7b8383613e1d565b6001600160801b038116156106e957604051633c8a7d8d60e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690633c8a7d8d90612650903090879087908790600401614911565b6001600160a01b038216612f37576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612f43600083836106e9565b600254612f509082612fba565b6002556001600160a01b038216600090815260208190526040902054612f769082612fba565b6001600160a01b038316600081815260208181526040808320949094558351858152935192939192600080516020614fc68339815191529281900390910190a35050565b6000828201838110156109ef576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fd5b60008060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561307057600080fd5b505afa158015613084573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130a89190614734565b50505050505090506130cc816130bd88613a31565b6130c688613a31565b87613f13565b9250925050935093915050565b6000808080808715806130ea575088155b156131075788159250826130fe5785613100565b865b91506133a1565b600061323f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561316557600080fd5b505afa158015613179573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061319d91906148e3565b60ff16611f777f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156131fc57600080fd5b505afa158015613210573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061323491906148e3565b60129060ff166126a8565b600a0a905060006132518a838d613faf565b905060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156132ae57600080fd5b505afa1580156132c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132e69190614734565b5050505050509050600060c061331b856121bd856001600160a01b0316866001600160a01b0316612cf190919063ffffffff16565b901c9050600061332c848d87613faf565b9050808b109750600088613349576133448c836126a8565b613368565b61336886866133618f866126a890919063ffffffff16565b9190613faf565b90508861338a576133858361337d8188612fba565b839190613faf565b613398565b6133988561337d8582612fba565b97505050505050505b81156133b4576133b18383611ad0565b90505b826133c8576133c38782612fba565b6133d2565b6133d287836126a8565b9450826133e8576133e386836126a8565b6133f2565b6133f28682612fba565b935050505094509492505050565b6001600160a01b0382166134455760405162461bcd60e51b8152600401808060200182810382526021815260200180614fe66021913960400191505060405180910390fd5b613451826000836106e9565b61348e81604051806060016040528060228152602001614eed602291396001600160a01b0385166000908152602081905260409020549190612af1565b6001600160a01b0383166000908152602081905260409020556002546134b490826126a8565b6002556040805182815290516000916001600160a01b03851691600080516020614fc68339815191529181900360200190a35050565b60008060006134f987876108a7565b505050509050600061352185610c8188856001600160801b0316612cf190919063ffffffff16565b90508015613585576000806000806135428c8c61353d8861405e565b613590565b9296509094509250905061356461355d8a610c81858e612cf1565b8590612fba565b975061357e6135778a610c81848e612cf1565b8490612fba565b9650505050505b505094509492505050565b6000806000806135a08787613e1d565b6135aa87876125db565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634f1eb3d8308b8b6001600160801b03806040518663ffffffff1660e01b8152600401613608959493929190614953565b6040805180830381600087803b15801561362157600080fd5b505af1158015613635573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061365991906146b3565b6001600160801b031691506001600160801b0316915061367982826138a2565b50506001600160801b038716156137e65760405163a34123a760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063a34123a7906136da908c908c908c906004016149cb565b6040805180830381600087803b1580156136f357600080fd5b505af1158015613707573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061372b9190614815565b6040516309e3d67b60e31b8152919750955060009081906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690634f1eb3d8906137909030908f908f906001600160801b03908190600401614953565b6040805180830381600087803b1580156137a957600080fd5b505af11580156137bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137e191906146b3565b505050505b505093509350935093565b6060613846826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166140759092919063ffffffff16565b8051909150156106e95780806020019051602081101561386557600080fd5b50516106e95760405162461bcd60e51b815260040180806020018281038252602a815260200180615050602a913960400191505060405180910390fd5b60008060008060008060006009541115613914576138d2620f4240610c816009548b612cf190919063ffffffff16565b93506138f0620f4240610c816009548a612cf190919063ffffffff16565b600c549093506139009085612fba565b600c55600e546139109084612fba565b600e555b600a541561397a57613938620f4240610c81600a548b612cf190919063ffffffff16565b9150613956620f4240610c81600a548a612cf190919063ffffffff16565b600d549091506139669083612fba565b600d55600f546139769082612fba565b600f555b6009541561399b5761398c88856126a8565b975061399887846126a8565b96505b600a54156139bc576139ad88836126a8565b97506139b987826126a8565b96505b7f1ac56d7e866e3f5ea9aa92aa11758ead39a0a5f013f3fefb0f47cb9d008edd27888884846040516139f19493929190614e36565b60405180910390a1878795509550505050505b9250929050565b600081831015613a1b57816109ef565b5090919050565b6000818310613a1b57816109ef565b60008060008360020b12613a48578260020b613a50565b8260020b6000035b9050620d89e8811115613a8e576040805162461bcd60e51b81526020600482015260016024820152601560fa1b604482015290519081900360640190fd5b600060018216613aa257600160801b613ab4565b6ffffcb933bd6fad37aa2d162d1a5940015b6001600160881b031690506002821615613ade576ffff97272373d413259a46990580e213a0260801c5b6004821615613afd576ffff2e50f5f656932ef12357cf3c7fdcc0260801c5b6008821615613b1c576fffe5caca7e10e4e61c3624eaa0941cd00260801c5b6010821615613b3b576fffcb9843d60f6159c9db58835c9266440260801c5b6020821615613b5a576fff973b41fa98c081472e6896dfb254c00260801c5b6040821615613b79576fff2ea16466c96a3843ec78b326b528610260801c5b6080821615613b98576ffe5dee046a99a2a811c461f1969c30530260801c5b610100821615613bb8576ffcbe86c7900a88aedcffc83b479aa3a40260801c5b610200821615613bd8576ff987a7253ac413176f2b074cf7815e540260801c5b610400821615613bf8576ff3392b0822b70005940c7a398e4b70f30260801c5b610800821615613c18576fe7159475a2c29b7443b29c7fa6e889d90260801c5b611000821615613c38576fd097f3bdfd2022b8845ad8f792aa58250260801c5b612000821615613c58576fa9f746462d870fdf8a65dc1f90e061e50260801c5b614000821615613c78576f70d869a156d2a1b890bb3df62baf32f70260801c5b618000821615613c98576f31be135f97d08fd981231505542fcfa60260801c5b62010000821615613cb9576f09aa508b5b7a84e1c677de54f3e99bc90260801c5b62020000821615613cd9576e5d6af8dedb81196699c329225ee6040260801c5b62040000821615613cf8576d2216e584f5fa1ea926041bedfe980260801c5b62080000821615613d15576b048a170391f7dc42444e8fa20260801c5b60008460020b1315613d30578060001981613d2c57fe5b0490505b640100000000810615613d44576001613d47565b60005b60ff16602082901c0192505050919050565b6000836001600160a01b0316856001600160a01b03161115613d79579293925b846001600160a01b0316866001600160a01b031611613da457613d9d85858561408c565b9050613e14565b836001600160a01b0316866001600160a01b03161015613e06576000613dcb87868661408c565b90506000613dda8789866140ef565b9050806001600160801b0316826001600160801b031610613dfb5780613dfd565b815b92505050613e14565b613e118585846140ef565b90505b95945050505050565b7f0000000000000000000000000000000000000000000000000000000000000000600282810b9084900b12613e645760405162461bcd60e51b815260040161064c90614a84565b620d89e719600284900b1215613e8c5760405162461bcd60e51b815260040161064c90614cb7565b620d89e8600283900b1315613eb35760405162461bcd60e51b815260040161064c90614ce2565b8060020b8360020b81613ec257fe5b0760020b15613ee35760405162461bcd60e51b815260040161064c90614ab3565b8060020b8260020b81613ef257fe5b0760020b156106e95760405162461bcd60e51b815260040161064c90614ae4565b600080836001600160a01b0316856001600160a01b03161115613f34579293925b846001600160a01b0316866001600160a01b031611613f5f57613f5885858561412c565b9150613fa6565b836001600160a01b0316866001600160a01b03161015613f9857613f8486858561412c565b9150613f91858785614195565b9050613fa6565b613fa3858585614195565b90505b94509492505050565b6000808060001985870986860292508281109083900303905080613fe55760008411613fda57600080fd5b5082900490506109ef565b808411613ff157600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b60006001600160801b0382111561407157fe5b5090565b606061408484846000856141d8565b949350505050565b6000826001600160a01b0316846001600160a01b031611156140ac579192915b60006140cf856001600160a01b0316856001600160a01b0316600160601b613faf565b9050613e146140ea84838888036001600160a01b0316613faf565b614334565b6000826001600160a01b0316846001600160a01b0316111561410f579192915b6140846140ea83600160601b8787036001600160a01b0316613faf565b6000826001600160a01b0316846001600160a01b0316111561414c579192915b836001600160a01b0316614185606060ff16846001600160801b0316901b8686036001600160a01b0316866001600160a01b0316613faf565b8161418c57fe5b04949350505050565b6000826001600160a01b0316846001600160a01b031611156141b5579192915b614084826001600160801b03168585036001600160a01b0316600160601b613faf565b6060824710156142195760405162461bcd60e51b8152600401808060200182810382526026815260200180614f576026913960400191505060405180910390fd5b6142228561434a565b614273576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106142b25780518252601f199092019160209182019101614293565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614314576040519150601f19603f3d011682016040523d82523d6000602084013e614319565b606091505b5091509150614329828286614350565b979650505050505050565b806001600160801b038116811461186257600080fd5b3b151590565b6060831561435f5750816109ef565b82511561436f5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315612b45578181015183820152602001612b2d565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081019190915290565b60008083601f84011261440b578182fd5b50813567ffffffffffffffff811115614422578182fd5b602083019150836020828501011115613a0457600080fd5b805161ffff8116811461186257600080fd5b805160ff8116811461186257600080fd5b60006020828403121561446e578081fd5b81356109ef81614e5f565b60006020828403121561448a578081fd5b81516109ef81614e5f565b600080604083850312156144a7578081fd5b82356144b281614e5f565b915060208301356144c281614e5f565b809150509250929050565b6000806000606084860312156144e1578081fd5b83356144ec81614e5f565b925060208401356144fc81614e5f565b929592945050506040919091013590565b6000806040838503121561451f578182fd5b823561452a81614e5f565b946020939093013593505050565b600060208284031215614549578081fd5b81356109ef81614e77565b600060208284031215614565578081fd5b81516109ef81614e77565b60008060408385031215614582578182fd5b823561452a81614e77565b6000806040838503121561459f578182fd5b82356145aa81614e85565b915060208301356144c281614e85565b6000806000606084860312156145ce578283fd5b83356145d981614e85565b925060208401356145e981614e85565b915060408401356145f981614e94565b809150509250925092565b600080600080600060a0868803121561461b578283fd5b853561462681614e85565b9450602086013561463681614e85565b93506040860135925060608601359150608086013561465481614e77565b809150509295509295909350565b60008060008060608587031215614677578182fd5b8435935060208501359250604085013567ffffffffffffffff81111561469b578283fd5b6146a7878288016143fa565b95989497509550505050565b600080604083850312156146c5578182fd5b82516146d081614e94565b60208401519092506144c281614e94565b600080600080600060a086880312156146f8578283fd5b855161470381614e94565b809550506020860151935060408601519250606086015161472381614e94565b608087015190925061465481614e94565b600080600080600080600060e0888a03121561474e578485fd5b875161475981614e5f565b602089015190975061476a81614e85565b95506147786040890161443a565b94506147866060890161443a565b93506147946080890161443a565b92506147a260a0890161444c565b915060c08801516147b281614e77565b8091505092959891949750929550565b6000602082840312156147d3578081fd5b815162ffffff811681146109ef578182fd5b6000602082840312156147f6578081fd5b5035919050565b60006020828403121561480e578081fd5b5051919050565b60008060408385031215614827578182fd5b505080516020909101519092909150565b60008060006060848603121561484c578081fd5b833592506020840135915060408401356145f981614e5f565b6000806000806080858703121561487a578182fd5b843593506020850135925060408501359150606085013561489a81614e5f565b939692955090935050565b600080600080600060a086880312156148bc578283fd5b85359450602086013593506040860135925060608601359150608086013561465481614e5f565b6000602082840312156148f4578081fd5b6109ef8261444c565b6001600160a01b0391909116815260200190565b6001600160a01b03949094168452600292830b6020850152910b60408301526001600160801b0316606082015260a06080820181905260009082015260c00190565b6001600160a01b03959095168552600293840b60208601529190920b60408401526001600160801b03918216606084015216608082015260a00190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b90815260200190565b60029190910b815260200190565b600293840b81529190920b60208201526001600160801b03909116604082015260600190565b6000602080835283518082850152825b81811015614a1d57858101830151858201604001528201614a01565b81811115614a2e5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252600a908201526930b6b7bab73a1826b4b760b11b604082015260600190565b602080825260029082015261746f60f01b604082015260600190565b6020808252601590820152743a34b1b5a637bbb2b9101e103a34b1b5aab83832b960591b604082015260600190565b6020808252601790820152767469636b4c6f7765722025207469636b53706163696e6760481b604082015260600190565b6020808252601790820152767469636b55707065722025207469636b53706163696e6760481b604082015260600190565b60208082526039908201527f74782073656e6465722073686f756c64206265206569746865722074686520736040820152783a3930ba32b3bc9036b0b730b3b2b91037b9103937baba32b960391b606082015260800190565b6020808252818101527f616d6f756e743044657369726564206f7220616d6f756e743144657369726564604082015260600190565b60208082526026908201527f6f7065726174696f6e732070617573656420666f72207374726174656779206d60408201526530b730b3b2b960d11b606082015260800190565b6020808252601e908201527f74782073656e6465722073686f756c6420626520676f7665726e616e63650000604082015260600190565b6020808252601a90820152793a3c1039b2b73232b91039b437bab632103132903937baba32b960311b604082015260600190565b60208082526006908201526573686172657360d01b604082015260600190565b60208082526005908201526463726f737360d81b604082015260600190565b6020808252600a908201526930b6b7bab73a18a6b4b760b11b604082015260600190565b6020808252601190820152707469636b4c6f77657220746f6f206c6f7760781b604082015260600190565b6020808252601290820152710e8d2c6d6aae0e0cae440e8dede40d0d2ced60731b604082015260600190565b6020808252600e908201526d6d6178546f74616c537570706c7960901b604082015260600190565b60208082526021908201527f6f7065726174696f6e732070617573656420666f72207661756c7420757365726040820152607360f81b606082015260800190565b81516001600160a01b03908116825260208084015182169083015260408084015162ffffff16908301526060808401518216908301526080808401519083015260a0838101519083015260c0808401519083015260e09283015116918101919091526101000190565b6001600160801b0395861681526020810194909452604084019290925283166060830152909116608082015260a00190565b918252602082015260400190565b9283526020830191909152604082015260600190565b93845260208401929092526040830152606082015260800190565b60ff91909116815260200190565b6001600160a01b0381168114614e7457600080fd5b50565b8015158114614e7457600080fd5b8060020b8114614e7457600080fd5b6001600160801b0381168114614e7457600080fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735265656e7472616e637947756172643a207265656e7472616e742063616c6c0045524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ce79dbdb53c0add496bc9beb75ce547a8ee447dd0a8450d3276cd17bd191772464736f6c634300070500330000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d8000000000000000000000000000000000000000000000000000000000000c3500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000174876e800

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102ad5760003560e01c806394cf2d7c11610173578063c4a7761e116100d4578063c4a7761e14610547578063d0c93a7c1461054f578063d21220a714610557578063d2f5ee4b1461055f578063d331bef714610572578063d348799714610585578063d5195d7914610598578063d8c143f7146105bb578063dd62ed3e146105c3578063eae989a2146105d6578063f887ea40146105de578063fa082743146105e6578063fa461e33146105ee578063fd7fd49114610601576102ad565b806394cf2d7c1461049257806395d89b41146104a5578063a00fa77f146104ad578063a457c2d7146104b5578063a8c62e76146104c8578063a9059cbb146104d0578063a91ef6eb146104e3578063acdb94ec14610504578063ae7fb76b1461050c578063b0e21e8a14610514578063c0c3132c1461051c578063c31c9c0714610524578063c3e895dc1461052c578063c45a01551461053f576102ad565b8063365d0ed71161021d578063365d0ed7146103b05780633869c916146103d257806339509351146103e55780633f3e4c11146103f857806341aec5381461040b57806351e87af7146104135780635542c87f1461041b5780635aa6e6751461042e578063629d94051461043657806364d549301461043e5780636b8d1d49146104515780636d5130d41461046457806370a0823114610477578063888a91341461048a576102ad565b80630430c130146102b257806306fdde03146102c7578063095ea7b3146102e55780630a6c3bb2146103055780630dfe16811461030d5780630f35bcac14610322578063149644781461033757806316f0115b1461034c57806318160ddd1461035457806320ca5d321461035c57806323b872dd146103805780632ab4d05214610393578063313ce5671461039b575b600080fd5b6102c56102c0366004614838565b610614565b005b6102cf6106ee565b6040516102dc91906149f1565b60405180910390f35b6102f86102f336600461450d565b610784565b6040516102dc91906149a9565b6102c56107a2565b610315610843565b6040516102dc91906148fd565b61032a610867565b6040516102dc91906149bd565b61033f610877565b6040516102dc91906149b4565b61031561087d565b61033f6108a1565b61036f61036a36600461458d565b6108a7565b6040516102dc959493929190614de0565b6102f861038e3660046144cd565b61096e565b61033f6109f6565b6103a36109fc565b6040516102dc9190614e51565b6103c36103be3660046148a5565b610a05565b6040516102dc93929190614e20565b6102c56103e036600461445d565b610e17565b6102f86103f336600461450d565b611293565b6102c56104063660046147e5565b6112e1565b61033f61131e565b61032a6113d3565b6102c561042936600461458d565b6113e3565b61031561147d565b61033f6114fa565b6102c561044c36600461458d565b611554565b6102c561045f366004614604565b6115f7565b6102c5610472366004614538565b6117f2565b61033f61048536600461445d565b611848565b61032a611867565b6102c56104a0366004614538565b611877565b6102cf6118cd565b61033f61192e565b6102f86104c336600461450d565b611934565b61031561199c565b6102f86104de36600461450d565b6119e5565b6104f66104f136600461458d565b6119f9565b6040516102dc929190614e12565b61033f611a9f565b61033f611aa5565b61033f611aab565b6102f8611ab1565b610315611ac1565b61033f61053a366004614570565b611ad0565b610315611f04565b6104f6611f13565b61032a611f99565b610315611fbd565b6102c561056d366004614838565b611fe1565b6104f6610580366004614865565b6120c0565b6102c5610593366004614662565b61236a565b6105ab6105a63660046145ba565b612419565b6040516102dc9493929190614e36565b6102f861249d565b61033f6105d1366004614495565b6124ad565b61033f6124d8565b6103156124de565b61032a612523565b6102c56105fc366004614662565b61252c565b6102c561060f36600461458d565b6125db565b61061c61147d565b6001600160a01b0316336001600160a01b0316146106555760405162461bcd60e51b815260040161064c90614be9565b60405180910390fd5b600c5461066290846126a8565b600c55600e5461067290836126a8565b600e5582156106af576106af6001600160a01b037f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48168285612705565b81156106e9576106e96001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2168284612705565b505050565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561077a5780601f1061074f5761010080835404028352916020019161077a565b820191906000526020600020905b81548152906001019060200180831161075d57829003601f168201915b5050505050905090565b6000610798610791612757565b848461275b565b5060015b92915050565b6107aa6124de565b6001600160a01b0316336001600160a01b0316146107da5760405162461bcd60e51b815260040161064c90614c20565b600854600160a01b900460ff16156108045760405162461bcd60e51b815260040161064c90614ba3565b60105461081f90600281810b9163010000009004900b612847565b60105461084190600160301b8104600290810b91600160481b9004900b612847565b565b7f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881565b601054600160481b900460020b81565b600f5481565b7f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d881565b60025490565b6000806000806000806108bb308989612957565b60405163514ea4bf60e01b81529091506001600160a01b037f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d8169063514ea4bf9061090a9084906004016149b4565b60a06040518083038186803b15801561092257600080fd5b505afa158015610936573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095a91906146e1565b939c929b5090995097509095509350505050565b600061097b8484846129a8565b6109eb84610987612757565b6109e685604051806060016040528060288152602001614f9e602891396001600160a01b038a166000908152600160205260408120906109c5612757565b6001600160a01b031681526020810191909152604001600020549190612af1565b61275b565b5060015b9392505050565b600b5481565b60055460ff1690565b600080600060026006541415610a50576040805162461bcd60e51b815260206004820152601f6024820152600080516020614ecd833981519152604482015290519081900360640190fd5b6002600655600854600160a81b900460ff1615610a7f5760405162461bcd60e51b815260040161064c90614d36565b6000881180610a8e5750600087115b610aaa5760405162461bcd60e51b815260040161064c90614b6e565b6001600160a01b03841615801590610acb57506001600160a01b0384163014155b610ae75760405162461bcd60e51b815260040161064c90614a68565b601054610b0290600281810b9163010000009004900b6125db565b601054610b2490600160301b8104600290810b91600160481b9004900b6125db565b610b2e8888612b88565b9194509250905082610b525760405162461bcd60e51b815260040161064c90614c54565b85821015610b725760405162461bcd60e51b815260040161064c90614a44565b84811015610b925760405162461bcd60e51b815260040161064c90614c93565b8115610bcd57610bcd6001600160a01b037f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4816333085612c97565b8015610c0857610c086001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc216333084612c97565b6010546000908190610c2890600281810b9163010000009004900b6119f9565b60105491935091506000908190610c5490600160301b8104600290810b91600160481b9004900b6119f9565b91509150600080610c63611f13565b909250905060008080808515610c9a57610c8786610c818e8d612cf1565b90612d4a565b9350610c9786610c818e8b612cf1565b91505b8415610cc157610cae85610c818d8c612cf1565b9250610cbe85610c818d8a612cf1565b90505b6000841180610cd05750600083115b15610d1657601054600090610cf590600281810b9163010000009004900b8787612dae565b601054909150610d1490600281810b9163010000009004900b83612e71565b505b6000821180610d255750600081115b15610d7957601054600090610d5190600160301b8104600290810b91600160481b9004900b8585612dae565b601054909150610d7790600160301b8104600290810b91600160481b9004900b83612e71565b505b505050505050610d898888612edc565b876001600160a01b0316336001600160a01b03167f4e2ca0515ed1aef1395f66b5303bb5d6f1bf9d61a353fa53f73f8ac9973fa9f6898989604051610dd093929190614e20565b60405180910390a3600b54610de36108a1565b1115610e015760405162461bcd60e51b815260040161064c90614d0e565b5050600160065550929891975095509350505050565b610e1f61147d565b6001600160a01b0316336001600160a01b031614610e4f5760405162461bcd60e51b815260040161064c90614be9565b60105463010000008104600290810b810b91810b900b121561101457601054600090610e8990600281810b9163010000009004900b6108a7565b5050505090506000816001600160801b03161115610f555760105460405163a34123a760e01b81526001600160a01b037f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d8169163a34123a791610f0191600281810b926301000000909204900b9086906004016149cb565b6040805180830381600087803b158015610f1a57600080fd5b505af1158015610f2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f529190614815565b50505b6010546040516309e3d67b60e31b81526001600160a01b037f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d81691634f1eb3d891610fbf918691600282810b9263010000009004900b906001600160801b03908190600401614953565b6040805180830381600087803b158015610fd857600080fd5b505af1158015610fec573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101091906146b3565b5050505b601054600160481b8104600290810b810b600160301b909204810b900b12156111f55760105460009061105c90600160301b8104600290810b91600160481b9004900b6108a7565b5050505090506000816001600160801b0316111561112f5760105460405163a34123a760e01b81526001600160a01b037f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d8169163a34123a7916110db91600160301b8104600290810b92600160481b909204900b9086906004016149cb565b6040805180830381600087803b1580156110f457600080fd5b505af1158015611108573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112c9190614815565b50505b6010546040516309e3d67b60e31b81526001600160a01b037f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d81691634f1eb3d8916111a0918691600160301b8204600290810b92600160481b9004900b906001600160801b03908190600401614953565b6040805180830381600087803b1580156111b957600080fd5b505af11580156111cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f191906146b3565b5050505b60006111ff6114fa565b9050600061120b61131e565b90508115611250576112508361121f6114fa565b6001600160a01b037f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48169190612705565b80156106e9576106e98361126261131e565b6001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2169190612705565b60006107986112a0612757565b846109e685600160006112b1612757565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490612fba565b6112e961147d565b6001600160a01b0316336001600160a01b0316146113195760405162461bcd60e51b815260040161064c90614be9565b600b55565b60006113ce600f546113c8600e547f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161137891906148fd565b60206040518083038186803b15801561139057600080fd5b505afa1580156113a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c891906147fd565b906126a8565b905090565b601054600160301b900460020b81565b6113eb6124de565b6001600160a01b0316336001600160a01b03161461141b5760405162461bcd60e51b815260040161064c90614c20565b600854600160a01b900460ff16156114455760405162461bcd60e51b815260040161064c90614ba3565b60108054600293840b62ffffff90811662ffffff199490950b1663010000000265ffffff000000199091161791909116919091179055565b60075460408051635aa6e67560e01b815290516000926001600160a01b031691635aa6e675916004808301926020929190829003018186803b1580156114c257600080fd5b505afa1580156114d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ce9190614479565b60006113ce600d546113c8600c547f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb486001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161137891906148fd565b61155c6124de565b6001600160a01b0316336001600160a01b03161461158c5760405162461bcd60e51b815260040161064c90614c20565b600854600160a01b900460ff16156115b65760405162461bcd60e51b815260040161064c90614ba3565b60108054600293840b62ffffff908116600160301b0262ffffff60301b199490950b16600160481b0262ffffff60481b199091161791909116919091179055565b6115ff6124de565b6001600160a01b0316336001600160a01b03161461162f5760405162461bcd60e51b815260040161064c90614c20565b600854600160a01b900460ff16156116595760405162461bcd60e51b815260040161064c90614ba3565b60008061179e87876117998a8a7f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb486001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156116bf57600080fd5b505afa1580156116d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116f791906148e3565b60ff16600a0a7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561175657600080fd5b505afa15801561176a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061178e91906148e3565b60ff16600a0a612dae565b613012565b9150915082156117d8576000806117b7848489896130d9565b915091506117d189896117cc8c8c8787612dae565b612e71565b50506117e9565b6117e987876117cc8a8a8a8a612dae565b50505050505050565b6117fa61147d565b6001600160a01b0316336001600160a01b03161461182a5760405162461bcd60e51b815260040161064c90614be9565b60088054911515600160a01b0260ff60a01b19909216919091179055565b6001600160a01b0381166000908152602081905260409020545b919050565b6010546301000000900460020b81565b61187f61147d565b6001600160a01b0316336001600160a01b0316146118af5760405162461bcd60e51b815260040161064c90614be9565b60088054911515600160a81b0260ff60a81b19909216919091179055565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561077a5780601f1061074f5761010080835404028352916020019161077a565b600e5481565b6000610798611941612757565b846109e68560405180606001604052806025815260200161507a602591396001600061196b612757565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612af1565b60075460405163316fa70960e21b81526000916001600160a01b03169063c5be9c24906119cd9030906004016148fd565b60206040518083038186803b1580156114c257600080fd5b60006107986119f2612757565b84846129a8565b6000806000806000611a0b87876108a7565b9450945050509250611a1e878785613012565b80955081965050506000611a46600a546113c8600954620f42406126a890919063ffffffff16565b9050611a6c611a65620f4240610c816001600160801b03871685612cf1565b8790612fba565b9550611a92611a8b620f4240610c816001600160801b03861685612cf1565b8690612fba565b9450505050509250929050565b600a5481565b600d5481565b60095481565b600854600160a81b900460ff1681565b6008546001600160a01b031681565b600060026006541415611b18576040805162461bcd60e51b815260206004820152601f6024820152600080516020614ecd833981519152604482015290519081900360640190fd5b6002600655611b256124de565b6001600160a01b0316336001600160a01b031614611b555760405162461bcd60e51b815260040161064c90614c20565b600854600160a01b900460ff1615611b7f5760405162461bcd60e51b815260040161064c90614ba3565b600083611bac577f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2611bce565b7f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb485b9050600084611bfd577f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48611c1f565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc25b90508415611cd45760085460405163095ea7b360e01b81526001600160a01b037f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881169263095ea7b392611c7c9291909116908890600401614990565b602060405180830381600087803b158015611c9657600080fd5b505af1158015611caa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cce9190614554565b50611d7d565b60085460405163095ea7b360e01b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281169263095ea7b392611d299291909116908890600401614990565b602060405180830381600087803b158015611d4357600080fd5b505af1158015611d57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d7b9190614554565b505b611d856143b6565b604051806101000160405280846001600160a01b03168152602001836001600160a01b031681526020017f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d86001600160a01b031663ddca3f436040518163ffffffff1660e01b815260040160206040518083038186803b158015611e0857600080fd5b505afa158015611e1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e4091906147c2565b62ffffff168152306020820152600a42016040808301919091526060820188905260016080830152600060a090920191909152600854905163414bf38960e01b81529192506001600160a01b03169063414bf38990611ea3908490600401614d77565b602060405180830381600087803b158015611ebd57600080fd5b505af1158015611ed1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef591906147fd565b60016006559695505050505050565b6007546001600160a01b031681565b601054600090819081908190611f3790600281810b9163010000009004900b6119f9565b60105491935091506000908190611f6390600160301b8104600290810b91600160481b9004900b6119f9565b91509150611f7d82611f7786611f776114fa565b90612fba565b9550611f8f81611f7785611f7761131e565b9450505050509091565b7f000000000000000000000000000000000000000000000000000000000000003c81565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b611fe961199c565b6001600160a01b0316336001600160a01b03161480612020575061200b6124de565b6001600160a01b0316336001600160a01b0316145b61203c5760405162461bcd60e51b815260040161064c90614b15565b600854600160a01b900460ff16156120665760405162461bcd60e51b815260040161064c90614ba3565b600d5461207390846126a8565b600d55600f5461208390836126a8565b600f5582156106af576106af6001600160a01b037f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48168285612705565b60008060026006541415612109576040805162461bcd60e51b815260206004820152601f6024820152600080516020614ecd833981519152604482015290519081900360640190fd5b6002600655600854600160a81b900460ff16156121385760405162461bcd60e51b815260040161064c90614d36565b600086116121585760405162461bcd60e51b815260040161064c90614c54565b6001600160a01b0383161580159061217957506001600160a01b0383163014155b6121955760405162461bcd60e51b815260040161064c90614a68565b600061219f6108a1565b90506121ab3388613400565b60006121c382610c818a6121bd6114fa565b90612cf1565b905060006121d783610c818b6121bd61131e565b60105490915060009081906121fc90600281810b9163010000009004900b8d886134ea565b6010549193509150600090819061222a90600160301b8104600290810b91600160481b9004900b8f8a6134ea565b909250905061223d82611f778887612fba565b985061224d81611f778786612fba565b97508b89101561226f5760405162461bcd60e51b815260040161064c90614a44565b8a88101561228f5760405162461bcd60e51b815260040161064c90614c93565b88156122c9576122c96001600160a01b037f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48168b8b612705565b8715612303576123036001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2168b8a612705565b896001600160a01b0316336001600160a01b03167febff2602b3f468259e1e99f613fed6691f3a6526effe6ef3e768ba7ae7a36c4f8f8c8c60405161234a93929190614e20565b60405180910390a350505050505050600160068190555094509492505050565b336001600160a01b037f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d8161461239f57600080fd5b83156123d9576123d96001600160a01b037f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48163386612705565b8215612413576124136001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2163385612705565b50505050565b6000806000806124276124de565b6001600160a01b0316336001600160a01b0316146124575760405162461bcd60e51b815260040161064c90614c20565b600854600160a01b900460ff16156124815760405162461bcd60e51b815260040161064c90614ba3565b61248c878787613590565b935093509350935093509350935093565b600854600160a01b900460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600c5481565b600754604080516303e21fa960e61b815290516000926001600160a01b03169163f887ea40916004808301926020929190829003018186803b1580156114c257600080fd5b60105460020b81565b336001600160a01b037f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d8161461256157600080fd5b600084131561259e5761259e6001600160a01b037f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48163386612705565b6000831315612413576124136001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2163385612705565b60006125e783836108a7565b5050505090506000816001600160801b031611156106e95760405163a34123a760e01b81526001600160a01b037f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d8169063a34123a79061265090869086906000906004016149cb565b6040805180830381600087803b15801561266957600080fd5b505af115801561267d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126a19190614815565b5050505050565b6000828211156126ff576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526106e99084906137f1565b3390565b6001600160a01b0383166127a05760405162461bcd60e51b815260040180806020018281038252602481526020018061502c6024913960400191505060405180910390fd5b6001600160a01b0382166127e55760405162461bcd60e51b8152600401808060200182810382526022815260200180614f0f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b61285182826125db565b6000807f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d86001600160a01b0316634f1eb3d83086866001600160801b03806040518663ffffffff1660e01b81526004016128af959493929190614953565b6040805180830381600087803b1580156128c857600080fd5b505af11580156128dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061290091906146b3565b6001600160801b031691506001600160801b031691506000821180156129265750600081115b156124135760008061293884846138a2565b91509150600061294a87878585612dae565b90506117e9878783612e71565b6040805160609490941b6001600160601b031916602080860191909152600293840b60e890811b60348701529290930b90911b60378401528051808403601a018152603a9093019052815191012090565b6001600160a01b0383166129ed5760405162461bcd60e51b81526004018080602001828103825260258152602001806150076025913960400191505060405180910390fd5b6001600160a01b038216612a325760405162461bcd60e51b8152600401808060200182810382526023815260200180614eaa6023913960400191505060405180910390fd5b612a3d8383836106e9565b612a7a81604051806060016040528060268152602001614f31602691396001600160a01b0386166000908152602081905260409020549190612af1565b6001600160a01b038085166000908152602081905260408082209390935590841681522054612aa99082612fba565b6001600160a01b03808416600081815260208181526040918290209490945580518581529051919392871692600080516020614fc683398151915292918290030190a3505050565b60008184841115612b805760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612b45578181015183820152602001612b2d565b50505050905090810190601f168015612b725780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600080612b966108a1565b9050600080612ba3611f13565b915091508260001480612bb65750600082115b80612bc15750600081115b612bc757fe5b82612be357879450869350612bdc8585613a0b565b9550612c8d565b81612bf957869350612bdc81610c818686612cf1565b80612c0f57879450612bdc82610c818786612cf1565b6000612c2d612c1e8a84612cf1565b612c288a86612cf1565b613a22565b905060008111612c4f5760405162461bcd60e51b815260040161064c90614c74565b612c626001611f7784610c8185846126a8565b9550612c776001611f7785610c8185846126a8565b9450612c8982610c8185818589612cf1565b9650505b5050509250925092565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526124139085906137f1565b600082612d005750600061079c565b82820282848281612d0d57fe5b04146109ef5760405162461bcd60e51b8152600401808060200182810382526021815260200180614f7d6021913960400191505060405180910390fd5b6000808211612d9d576040805162461bcd60e51b815260206004820152601a602482015279536166654d6174683a206469766973696f6e206279207a65726f60301b604482015290519081900360640190fd5b818381612da657fe5b049392505050565b6000807f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d86001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015612e0a57600080fd5b505afa158015612e1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e429190614734565b5050505050509050612e6781612e5788613a31565b612e6088613a31565b8787613d59565b9695505050505050565b612e7b8383613e1d565b6001600160801b038116156106e957604051633c8a7d8d60e01b81526001600160a01b037f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d81690633c8a7d8d90612650903090879087908790600401614911565b6001600160a01b038216612f37576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b612f43600083836106e9565b600254612f509082612fba565b6002556001600160a01b038216600090815260208190526040902054612f769082612fba565b6001600160a01b038316600081815260208181526040808320949094558351858152935192939192600080516020614fc68339815191529281900390910190a35050565b6000828201838110156109ef576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fd5b60008060007f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d86001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561307057600080fd5b505afa158015613084573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130a89190614734565b50505050505090506130cc816130bd88613a31565b6130c688613a31565b87613f13565b9250925050935093915050565b6000808080808715806130ea575088155b156131075788159250826130fe5785613100565b865b91506133a1565b600061323f7f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb486001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561316557600080fd5b505afa158015613179573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061319d91906148e3565b60ff16611f777f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156131fc57600080fd5b505afa158015613210573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061323491906148e3565b60129060ff166126a8565b600a0a905060006132518a838d613faf565b905060007f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d86001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156132ae57600080fd5b505afa1580156132c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132e69190614734565b5050505050509050600060c061331b856121bd856001600160a01b0316866001600160a01b0316612cf190919063ffffffff16565b901c9050600061332c848d87613faf565b9050808b109750600088613349576133448c836126a8565b613368565b61336886866133618f866126a890919063ffffffff16565b9190613faf565b90508861338a576133858361337d8188612fba565b839190613faf565b613398565b6133988561337d8582612fba565b97505050505050505b81156133b4576133b18383611ad0565b90505b826133c8576133c38782612fba565b6133d2565b6133d287836126a8565b9450826133e8576133e386836126a8565b6133f2565b6133f28682612fba565b935050505094509492505050565b6001600160a01b0382166134455760405162461bcd60e51b8152600401808060200182810382526021815260200180614fe66021913960400191505060405180910390fd5b613451826000836106e9565b61348e81604051806060016040528060228152602001614eed602291396001600160a01b0385166000908152602081905260409020549190612af1565b6001600160a01b0383166000908152602081905260409020556002546134b490826126a8565b6002556040805182815290516000916001600160a01b03851691600080516020614fc68339815191529181900360200190a35050565b60008060006134f987876108a7565b505050509050600061352185610c8188856001600160801b0316612cf190919063ffffffff16565b90508015613585576000806000806135428c8c61353d8861405e565b613590565b9296509094509250905061356461355d8a610c81858e612cf1565b8590612fba565b975061357e6135778a610c81848e612cf1565b8490612fba565b9650505050505b505094509492505050565b6000806000806135a08787613e1d565b6135aa87876125db565b6000807f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d86001600160a01b0316634f1eb3d8308b8b6001600160801b03806040518663ffffffff1660e01b8152600401613608959493929190614953565b6040805180830381600087803b15801561362157600080fd5b505af1158015613635573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061365991906146b3565b6001600160801b031691506001600160801b0316915061367982826138a2565b50506001600160801b038716156137e65760405163a34123a760e01b81526001600160a01b037f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d8169063a34123a7906136da908c908c908c906004016149cb565b6040805180830381600087803b1580156136f357600080fd5b505af1158015613707573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061372b9190614815565b6040516309e3d67b60e31b8152919750955060009081906001600160a01b037f0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d81690634f1eb3d8906137909030908f908f906001600160801b03908190600401614953565b6040805180830381600087803b1580156137a957600080fd5b505af11580156137bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137e191906146b3565b505050505b505093509350935093565b6060613846826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166140759092919063ffffffff16565b8051909150156106e95780806020019051602081101561386557600080fd5b50516106e95760405162461bcd60e51b815260040180806020018281038252602a815260200180615050602a913960400191505060405180910390fd5b60008060008060008060006009541115613914576138d2620f4240610c816009548b612cf190919063ffffffff16565b93506138f0620f4240610c816009548a612cf190919063ffffffff16565b600c549093506139009085612fba565b600c55600e546139109084612fba565b600e555b600a541561397a57613938620f4240610c81600a548b612cf190919063ffffffff16565b9150613956620f4240610c81600a548a612cf190919063ffffffff16565b600d549091506139669083612fba565b600d55600f546139769082612fba565b600f555b6009541561399b5761398c88856126a8565b975061399887846126a8565b96505b600a54156139bc576139ad88836126a8565b97506139b987826126a8565b96505b7f1ac56d7e866e3f5ea9aa92aa11758ead39a0a5f013f3fefb0f47cb9d008edd27888884846040516139f19493929190614e36565b60405180910390a1878795509550505050505b9250929050565b600081831015613a1b57816109ef565b5090919050565b6000818310613a1b57816109ef565b60008060008360020b12613a48578260020b613a50565b8260020b6000035b9050620d89e8811115613a8e576040805162461bcd60e51b81526020600482015260016024820152601560fa1b604482015290519081900360640190fd5b600060018216613aa257600160801b613ab4565b6ffffcb933bd6fad37aa2d162d1a5940015b6001600160881b031690506002821615613ade576ffff97272373d413259a46990580e213a0260801c5b6004821615613afd576ffff2e50f5f656932ef12357cf3c7fdcc0260801c5b6008821615613b1c576fffe5caca7e10e4e61c3624eaa0941cd00260801c5b6010821615613b3b576fffcb9843d60f6159c9db58835c9266440260801c5b6020821615613b5a576fff973b41fa98c081472e6896dfb254c00260801c5b6040821615613b79576fff2ea16466c96a3843ec78b326b528610260801c5b6080821615613b98576ffe5dee046a99a2a811c461f1969c30530260801c5b610100821615613bb8576ffcbe86c7900a88aedcffc83b479aa3a40260801c5b610200821615613bd8576ff987a7253ac413176f2b074cf7815e540260801c5b610400821615613bf8576ff3392b0822b70005940c7a398e4b70f30260801c5b610800821615613c18576fe7159475a2c29b7443b29c7fa6e889d90260801c5b611000821615613c38576fd097f3bdfd2022b8845ad8f792aa58250260801c5b612000821615613c58576fa9f746462d870fdf8a65dc1f90e061e50260801c5b614000821615613c78576f70d869a156d2a1b890bb3df62baf32f70260801c5b618000821615613c98576f31be135f97d08fd981231505542fcfa60260801c5b62010000821615613cb9576f09aa508b5b7a84e1c677de54f3e99bc90260801c5b62020000821615613cd9576e5d6af8dedb81196699c329225ee6040260801c5b62040000821615613cf8576d2216e584f5fa1ea926041bedfe980260801c5b62080000821615613d15576b048a170391f7dc42444e8fa20260801c5b60008460020b1315613d30578060001981613d2c57fe5b0490505b640100000000810615613d44576001613d47565b60005b60ff16602082901c0192505050919050565b6000836001600160a01b0316856001600160a01b03161115613d79579293925b846001600160a01b0316866001600160a01b031611613da457613d9d85858561408c565b9050613e14565b836001600160a01b0316866001600160a01b03161015613e06576000613dcb87868661408c565b90506000613dda8789866140ef565b9050806001600160801b0316826001600160801b031610613dfb5780613dfd565b815b92505050613e14565b613e118585846140ef565b90505b95945050505050565b7f000000000000000000000000000000000000000000000000000000000000003c600282810b9084900b12613e645760405162461bcd60e51b815260040161064c90614a84565b620d89e719600284900b1215613e8c5760405162461bcd60e51b815260040161064c90614cb7565b620d89e8600283900b1315613eb35760405162461bcd60e51b815260040161064c90614ce2565b8060020b8360020b81613ec257fe5b0760020b15613ee35760405162461bcd60e51b815260040161064c90614ab3565b8060020b8260020b81613ef257fe5b0760020b156106e95760405162461bcd60e51b815260040161064c90614ae4565b600080836001600160a01b0316856001600160a01b03161115613f34579293925b846001600160a01b0316866001600160a01b031611613f5f57613f5885858561412c565b9150613fa6565b836001600160a01b0316866001600160a01b03161015613f9857613f8486858561412c565b9150613f91858785614195565b9050613fa6565b613fa3858585614195565b90505b94509492505050565b6000808060001985870986860292508281109083900303905080613fe55760008411613fda57600080fd5b5082900490506109ef565b808411613ff157600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b60006001600160801b0382111561407157fe5b5090565b606061408484846000856141d8565b949350505050565b6000826001600160a01b0316846001600160a01b031611156140ac579192915b60006140cf856001600160a01b0316856001600160a01b0316600160601b613faf565b9050613e146140ea84838888036001600160a01b0316613faf565b614334565b6000826001600160a01b0316846001600160a01b0316111561410f579192915b6140846140ea83600160601b8787036001600160a01b0316613faf565b6000826001600160a01b0316846001600160a01b0316111561414c579192915b836001600160a01b0316614185606060ff16846001600160801b0316901b8686036001600160a01b0316866001600160a01b0316613faf565b8161418c57fe5b04949350505050565b6000826001600160a01b0316846001600160a01b031611156141b5579192915b614084826001600160801b03168585036001600160a01b0316600160601b613faf565b6060824710156142195760405162461bcd60e51b8152600401808060200182810382526026815260200180614f576026913960400191505060405180910390fd5b6142228561434a565b614273576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106142b25780518252601f199092019160209182019101614293565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614314576040519150601f19603f3d011682016040523d82523d6000602084013e614319565b606091505b5091509150614329828286614350565b979650505050505050565b806001600160801b038116811461186257600080fd5b3b151590565b6060831561435f5750816109ef565b82511561436f5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315612b45578181015183820152602001612b2d565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081019190915290565b60008083601f84011261440b578182fd5b50813567ffffffffffffffff811115614422578182fd5b602083019150836020828501011115613a0457600080fd5b805161ffff8116811461186257600080fd5b805160ff8116811461186257600080fd5b60006020828403121561446e578081fd5b81356109ef81614e5f565b60006020828403121561448a578081fd5b81516109ef81614e5f565b600080604083850312156144a7578081fd5b82356144b281614e5f565b915060208301356144c281614e5f565b809150509250929050565b6000806000606084860312156144e1578081fd5b83356144ec81614e5f565b925060208401356144fc81614e5f565b929592945050506040919091013590565b6000806040838503121561451f578182fd5b823561452a81614e5f565b946020939093013593505050565b600060208284031215614549578081fd5b81356109ef81614e77565b600060208284031215614565578081fd5b81516109ef81614e77565b60008060408385031215614582578182fd5b823561452a81614e77565b6000806040838503121561459f578182fd5b82356145aa81614e85565b915060208301356144c281614e85565b6000806000606084860312156145ce578283fd5b83356145d981614e85565b925060208401356145e981614e85565b915060408401356145f981614e94565b809150509250925092565b600080600080600060a0868803121561461b578283fd5b853561462681614e85565b9450602086013561463681614e85565b93506040860135925060608601359150608086013561465481614e77565b809150509295509295909350565b60008060008060608587031215614677578182fd5b8435935060208501359250604085013567ffffffffffffffff81111561469b578283fd5b6146a7878288016143fa565b95989497509550505050565b600080604083850312156146c5578182fd5b82516146d081614e94565b60208401519092506144c281614e94565b600080600080600060a086880312156146f8578283fd5b855161470381614e94565b809550506020860151935060408601519250606086015161472381614e94565b608087015190925061465481614e94565b600080600080600080600060e0888a03121561474e578485fd5b875161475981614e5f565b602089015190975061476a81614e85565b95506147786040890161443a565b94506147866060890161443a565b93506147946080890161443a565b92506147a260a0890161444c565b915060c08801516147b281614e77565b8091505092959891949750929550565b6000602082840312156147d3578081fd5b815162ffffff811681146109ef578182fd5b6000602082840312156147f6578081fd5b5035919050565b60006020828403121561480e578081fd5b5051919050565b60008060408385031215614827578182fd5b505080516020909101519092909150565b60008060006060848603121561484c578081fd5b833592506020840135915060408401356145f981614e5f565b6000806000806080858703121561487a578182fd5b843593506020850135925060408501359150606085013561489a81614e5f565b939692955090935050565b600080600080600060a086880312156148bc578283fd5b85359450602086013593506040860135925060608601359150608086013561465481614e5f565b6000602082840312156148f4578081fd5b6109ef8261444c565b6001600160a01b0391909116815260200190565b6001600160a01b03949094168452600292830b6020850152910b60408301526001600160801b0316606082015260a06080820181905260009082015260c00190565b6001600160a01b03959095168552600293840b60208601529190920b60408401526001600160801b03918216606084015216608082015260a00190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b90815260200190565b60029190910b815260200190565b600293840b81529190920b60208201526001600160801b03909116604082015260600190565b6000602080835283518082850152825b81811015614a1d57858101830151858201604001528201614a01565b81811115614a2e5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252600a908201526930b6b7bab73a1826b4b760b11b604082015260600190565b602080825260029082015261746f60f01b604082015260600190565b6020808252601590820152743a34b1b5a637bbb2b9101e103a34b1b5aab83832b960591b604082015260600190565b6020808252601790820152767469636b4c6f7765722025207469636b53706163696e6760481b604082015260600190565b6020808252601790820152767469636b55707065722025207469636b53706163696e6760481b604082015260600190565b60208082526039908201527f74782073656e6465722073686f756c64206265206569746865722074686520736040820152783a3930ba32b3bc9036b0b730b3b2b91037b9103937baba32b960391b606082015260800190565b6020808252818101527f616d6f756e743044657369726564206f7220616d6f756e743144657369726564604082015260600190565b60208082526026908201527f6f7065726174696f6e732070617573656420666f72207374726174656779206d60408201526530b730b3b2b960d11b606082015260800190565b6020808252601e908201527f74782073656e6465722073686f756c6420626520676f7665726e616e63650000604082015260600190565b6020808252601a90820152793a3c1039b2b73232b91039b437bab632103132903937baba32b960311b604082015260600190565b60208082526006908201526573686172657360d01b604082015260600190565b60208082526005908201526463726f737360d81b604082015260600190565b6020808252600a908201526930b6b7bab73a18a6b4b760b11b604082015260600190565b6020808252601190820152707469636b4c6f77657220746f6f206c6f7760781b604082015260600190565b6020808252601290820152710e8d2c6d6aae0e0cae440e8dede40d0d2ced60731b604082015260600190565b6020808252600e908201526d6d6178546f74616c537570706c7960901b604082015260600190565b60208082526021908201527f6f7065726174696f6e732070617573656420666f72207661756c7420757365726040820152607360f81b606082015260800190565b81516001600160a01b03908116825260208084015182169083015260408084015162ffffff16908301526060808401518216908301526080808401519083015260a0838101519083015260c0808401519083015260e09283015116918101919091526101000190565b6001600160801b0395861681526020810194909452604084019290925283166060830152909116608082015260a00190565b918252602082015260400190565b9283526020830191909152604082015260600190565b93845260208401929092526040830152606082015260800190565b60ff91909116815260200190565b6001600160a01b0381168114614e7457600080fd5b50565b8015158114614e7457600080fd5b8060020b8114614e7457600080fd5b6001600160801b0381168114614e7457600080fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735265656e7472616e637947756172643a207265656e7472616e742063616c6c0045524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ce79dbdb53c0add496bc9beb75ce547a8ee447dd0a8450d3276cd17bd191772464736f6c63430007050033

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

0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d8000000000000000000000000000000000000000000000000000000000000c3500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000174876e800

-----Decoded View---------------
Arg [0] : _pool (address): 0x8ad599c3A0ff1De082011EFDDc58f1908eb6e6D8
Arg [1] : _protocolFee (uint256): 50000
Arg [2] : _strategyFee (uint256): 0
Arg [3] : _maxTotalSupply (uint256): 100000000000

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000008ad599c3a0ff1de082011efddc58f1908eb6e6d8
Arg [1] : 000000000000000000000000000000000000000000000000000000000000c350
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 000000000000000000000000000000000000000000000000000000174876e800


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ 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.