Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,192.249256306256310168 ULP
Holders
16
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000259179398 ULPValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
UniversePairVault
Compiler Version
v0.7.6+commit.7338295f
Optimization Enabled:
Yes with 100 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.7.6; pragma abicoder v2; /* * _ _ _ _ ___ __ __ ___ ___ ___ ___ * | | | | | \| | |_ _| \ \ / / | __| | _ \ / __| | __| * | |_| | | .` | | | \ V / | _| | / \__ \ | _| * \___/ |_|\_| |___| _\_/_ |___| |_|_\ |___/ |___| * _|"""""|_|"""""|_|"""""|_| """"|_|"""""|_|"""""|_|"""""|_|"""""| * "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' * */ import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/math/Math.sol"; import "../interfaces/UNTERC20.sol"; import "../interfaces/IERC20Detail.sol"; import "../interfaces/PositionHelper.sol"; import "../interfaces/IUniversePairVault.sol"; contract UniversePairVault is IUniversePairVault, Ownable, UNTERC20 { using SafeERC20 for IERC20; using SafeMath for uint256; using PositionHelper for PositionHelper.Position; // Uni POOL bytes32 internal constant POOL_INIT_CODE_HASH = 0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54; // Important Addresses address immutable uniFactory; address operator; /// @inheritdoc IUniversePairVault IERC20 public immutable override token0; /// @inheritdoc IUniversePairVault IERC20 public immutable override token1; mapping(address => bool) poolMap; // @dev UNIVERSE VERSION 1 - Single Share Token 2 - Double Share Token uint8 public constant UNIVERSE_VAULT_VERSION = 1; // Core Params address swapPool; uint8 performanceFee; uint24 diffTick; uint256 minSwapToken1 = 1e17; // accumulated protocol fees in token0/token1 units struct ProtocolFees { uint128 fee0; uint128 fee1; } /// @inheritdoc IUniversePairVault ProtocolFees public override protocolFees; /// @inheritdoc IUniversePairVault PositionHelper.Position[] public override positionList; // who can call this vault mapping(address => bool) contractWhiteLists; constructor( address _uniFactory, address _poolAddress, address _operator, address _swapPool, uint8 _performanceFee, uint24 _diffTick ) UNTERC20("UNIVERSE-LP", "ULP", 18) { uniFactory = _uniFactory; // pool info IUniswapV3Pool pool = IUniswapV3Pool(_poolAddress); token0 = IERC20(pool.token0()); token1 = IERC20(pool.token1()); poolMap[_poolAddress] = true; poolMap[_swapPool] = true; // INIT Default Position PositionHelper.Position memory position = PositionHelper.Position({ principal0 : 0, principal1 : 0, poolAddress : address(0), tickSpacing : 0, lowerTick : 0, upperTick : 0, status: false }); positionList.push(position); // variable operator = _operator; swapPool = _swapPool; performanceFee = _performanceFee; diffTick = _diffTick; } /* ========== MODIFIERS ========== */ /// @dev Only be called by the Operator modifier onlyManager { require(tx.origin == operator, "OM"); _; } /* ========== ONLY OWNER ========== */ /// @inheritdoc IVaultOwnerActions function changeManager(address _operator) external override onlyOwner { operator = _operator; emit ChangeManger(_operator); } /// @inheritdoc IVaultOwnerActions function updateWhiteList(address _address, bool status) external override onlyOwner { contractWhiteLists[_address] = status; emit UpdateWhiteList(_address, status); } /// @inheritdoc IVaultOwnerActions function withdrawPerformanceFee(address to) external override onlyOwner { require(to != address(0), "ZA"); ProtocolFees memory pf = protocolFees; if(pf.fee0 > 1){ token0.transfer(to, pf.fee0 - 1); pf.fee0 = 1; } if(pf.fee1 > 1){ token1.transfer(to, pf.fee1 - 1); pf.fee1 = 1; } protocolFees = pf; } /* ========== PURE ========== */ /// @dev Safe Math For uint128 function _add128(uint128 a, uint128 b) internal pure returns (uint128) { uint128 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /// @dev Uint256 to Uint128, check overflow function _toUint128(uint256 x) internal pure returns (uint128) { assert(x <= type(uint128).max); return uint128(x); } /// @dev Get effective Tick Values function tickRegulate( int24 _lowerTick, int24 _upperTick, int24 tickSpacing ) internal pure returns (int24 lowerTick, int24 upperTick) { lowerTick = PositionHelper._floor(_lowerTick, tickSpacing); upperTick = PositionHelper._floor(_upperTick, tickSpacing); require(_upperTick > _lowerTick, "Bad Ticks"); } /* ========== VIEW ========== */ function computeAddress(uint24 fee) internal view returns (address pool) { pool = address( uint256( keccak256( abi.encodePacked( hex'ff', uniFactory, keccak256(abi.encode(address(token0), address(token1), fee)), POOL_INIT_CODE_HASH ) ) ) ); } /// @dev Get the pool's balance of token0 Belong to the user function _balance0() internal view returns (uint256) { return token0.balanceOf(address(this)) - protocolFees.fee0; } /// @dev Get the pool's balance of token1 Belong to the user function _balance1() internal view returns (uint256) { return token1.balanceOf(address(this)) - protocolFees.fee1; } function _calcShare( uint256 amount0Desired, uint256 amount1Desired ) internal view returns (uint256, uint256, uint256) { // get total share uint256 totalShare = totalSupply(); uint256 share; if (totalShare == 0) { // First Time share = Math.max(amount0Desired, amount1Desired); } else { (uint256 total0, uint256 total1, , ) = _getTotalAmounts(); require(total0 > 0 || total1 > 0, '01Z'); if(amount0Desired.mul(total1) > amount1Desired.mul(total0)){ amount0Desired = FullMath.mulDiv(total0, amount1Desired, total1); share = FullMath.mulDiv(amount1Desired, totalShare, total1); } else { amount1Desired = FullMath.mulDiv(total1, amount0Desired, total0); share = FullMath.mulDiv(amount0Desired, totalShare, total0); } } return (share, amount0Desired, amount1Desired); } function _getTotalAmounts() internal view returns ( uint256 total0, uint256 total1, uint256 free0, uint256 free1 ) { free0 = _balance0(); free1 = _balance1(); total0 = free0; total1 = free1; for (uint256 i = 0; i < positionList.length; i++) { PositionHelper.Position memory position = positionList[i]; if (position.status) { (uint256 amount0, uint256 amount1) = position._getTotalAmounts(performanceFee); total0 = total0.add(amount0); total1 = total1.add(amount1); } } } /// @inheritdoc IUniversePairVault function getBalancedAmount( uint256 amount0Desired, uint256 amount1Desired ) external view override returns (uint256 share, uint256 amount0, uint256 amount1) { return _calcShare(amount0Desired, amount1Desired); } /// @inheritdoc IUniversePairVault function calBalance(uint256 share) public view override returns (uint256 amount0, uint256 amount1) { uint256 totalSupply = totalSupply(); if (share !=0 && totalSupply !=0) { (amount0, amount1, , ) = _getTotalAmounts(); amount0 = amount0.mul(share).div(totalSupply); amount1 = amount1.mul(share).div(totalSupply); } } /// @dev For Leverage Vault /// @inheritdoc IUniversePairVault function defaultPoolAddress() external view override returns(address) { return positionList[0].poolAddress; } /// @dev Compat For Instadapp Resolver /// @inheritdoc IUniversePairVault function getTotalAmounts() public view override returns ( uint256 total0, uint256 total1, uint256 free0, uint256 free1, uint256 utilizationRate0, uint256 utilizationRate1 ) { (total0, total1, free0, free1) = _getTotalAmounts(); } /// @dev Compat For Instadapp Resolver function getShares( uint256 amount0Desired, uint256 amount1Desired ) external view override returns (uint256, uint256) { (uint256 share, , ) = _calcShare(amount0Desired, amount1Desired); return (share, 0); } /// @dev Compat For Instadapp Resolver function getBals( uint256 share, uint256 ) external view override returns (uint256, uint256) { return calBalance(share); } /// @dev Compat For Instadapp Resolver function getUserShares( address user ) external view override returns (uint256, uint256) { uint256 share = balanceOf(user); return (share, 0); } /* ========== INTERNAL ========== */ function _multiStopMining( uint256 share, uint256 totalShare, address to ) internal returns(uint256 amt0, uint256 amt1, uint fee0, uint fee1){ for (uint i = 0; i < positionList.length; i++) { PositionHelper.Position memory position = positionList[i]; if (position.status) { (uint128 _liquidity, , , , ) = position._positionInfo(); if(_liquidity > 0){ uint256 liq = uint256(_liquidity).mul(share).div(totalShare); (uint256 _amt0, uint256 _amt1, uint256 _fee0, uint256 _fee1) = position._burnSpecific(_toUint128(liq), to); amt0 = amt0.add(_amt0); amt1 = amt1.add(_amt1); fee0 = fee0.add(_fee0); fee1 = fee1.add(_fee1); } } } } function _getAmountOut( uint256 amount0, uint256 amount1, uint256 reserve0, uint256 reserve1 ) internal view returns(uint256 amt, bool zeroForOne) { uint256 priceX96 = _priceX96(swapPool); if (amount0.mul(reserve1) >= amount1.mul(reserve0)) { uint256 dividend = amount0.mul(reserve1) - amount1.mul(reserve0); uint256 divisor = FullMath.mulDiv(priceX96, reserve0, FixedPoint96.Q96).add(reserve1); amt = dividend.div(divisor); // swap amt must <= minSwapToken1 if(FullMath.mulDiv(priceX96, amt, FixedPoint96.Q96) <= minSwapToken1){ amt = 0; }else{ zeroForOne = true; } } else { uint256 dividend = amount1.mul(reserve0) - amount0.mul(reserve1); uint256 divisor = FullMath.mulDiv(reserve1, FixedPoint96.Q96, priceX96).add(reserve0); amt = dividend.div(divisor); if(amt <= minSwapToken1){ amt = 0; } } } function _swap(uint256 bal0, uint256 bal1, uint256 reserve0, uint256 reserve1) internal { (uint256 amt, bool zeroForOne) = _getAmountOut(bal0, bal1, reserve0, reserve1); if (amt > 0) { uint160 sqrtPriceLimitX96 = (zeroForOne ? TickMath.MIN_SQRT_RATIO + 1 : TickMath.MAX_SQRT_RATIO - 1); IUniswapV3Pool(swapPool).swap(address(this), zeroForOne, int256(amt), sqrtPriceLimitX96, ''); } } function _mockReserve(PositionHelper.Position memory position) internal view returns(uint256 reserve0, uint256 reserve1){ // calculate token0/token1 (uint160 sqrtPrice, , , , , , ) = IUniswapV3Pool(position.poolAddress).slot0(); (reserve0, reserve1) = LiquidityAmounts.getAmountsForLiquidity( sqrtPrice, TickMath.getSqrtRatioAtTick(position.lowerTick), TickMath.getSqrtRatioAtTick(position.upperTick), 1E20); } function _collectPerformanceFee( uint256 feesFromPool0, uint256 feesFromPool1 ) internal { uint256 rate = performanceFee; if (rate == 0) {return;} ProtocolFees memory pf = protocolFees; if (feesFromPool0 > 0) { uint256 feesToProtocol0 = feesFromPool0.div(rate); pf.fee0 = _add128(pf.fee0, _toUint128(feesToProtocol0)); } if (feesFromPool1 > 0) { uint256 feesToProtocol1 = feesFromPool1.div(rate); pf.fee1 = _add128(pf.fee1, _toUint128(feesToProtocol1)); } protocolFees = pf; emit CollectFees(feesFromPool0, feesFromPool1); } function _priceX96(address poolAddress) internal view returns(uint256 priceX96){ (uint160 sqrtRatioX96, , , , , , ) = IUniswapV3Pool(poolAddress).slot0(); priceX96 = FullMath.mulDiv(sqrtRatioX96, sqrtRatioX96, FixedPoint96.Q96); } function _swapAndAddAll(PositionHelper.Position memory position) internal{ (uint256 reserve0, uint256 reserve1) = _mockReserve(position); _swap(_balance0(), _balance1(), reserve0, reserve1); position._addAll(_balance0(), _balance1()); } /// @dev Token from msg.sender function _deposit( uint256 amount0Desired, uint256 amount1Desired, address to ) internal returns(uint256) { // Check require(amount0Desired > 0 && amount1Desired > 0, "Zero"); // Cal Share uint256 share; (share, amount0Desired, amount1Desired) = _calcShare(amount0Desired, amount1Desired); require(share > 0, "zero"); // transfer if (amount0Desired > 0) token0.safeTransferFrom(msg.sender, address(this), amount0Desired); if (amount1Desired > 0) token1.safeTransferFrom(msg.sender, address(this), amount1Desired); // mint _mint(to, share); // find default position PositionHelper.Position memory defaultPosition = positionList[0]; // add Liquidity if (defaultPosition.status) { _swapAndAddAll(defaultPosition); } // EVENT emit Deposit(to, share, 0, amount0Desired, amount1Desired); return share; } /* ========== EXTERNAL ========== */ /// @inheritdoc IUniversePairVault function deposit( uint256 amount0Desired, uint256 amount1Desired ) external override returns(uint256, uint256) { require(tx.origin == msg.sender || contractWhiteLists[msg.sender], "only for verified contract!"); return (_deposit(amount0Desired, amount1Desired, msg.sender), 0); } /// @inheritdoc IUniversePairVault function deposit( uint256 amount0Desired, uint256 amount1Desired, address to ) external override returns(uint256, uint256) { require(contractWhiteLists[msg.sender], "only for verified contract!"); return (_deposit(amount0Desired, amount1Desired, to), 0); } // adapter for vault v2 function withdraw(uint256 share, uint256) external override returns (uint256 amount0, uint256 amount1) { return withdraw(share); } /// @inheritdoc IUniversePairVault function withdraw(uint256 share) public override returns (uint256 amount0, uint256 amount1) { // Check uint256 maxShare = balanceOf(msg.sender); if (share > maxShare) { share = maxShare; } require(share > 0, "zero"); // record & burn uint256 totalShare = totalSupply(); _burn(msg.sender, share); // burn liquidity uint256 fee0; uint256 fee1; (amount0, amount1, fee0, fee1) = _multiStopMining(share, totalShare, msg.sender); // collect fee _collectPerformanceFee(fee0, fee1); // unused token uint256 unusedAmount0 = _balance0().mul(share).div(totalShare); uint256 unusedAmount1 = _balance1().mul(share).div(totalShare); if (unusedAmount0 > 0) { token0.safeTransfer(msg.sender, unusedAmount0); amount0 = amount0.add(unusedAmount0); } if (unusedAmount1 > 0) { token1.safeTransfer(msg.sender, unusedAmount1); amount1 = amount1.add(unusedAmount1); } emit Withdraw(msg.sender, share, 0, amount0, amount1); } function maxShares() external pure returns(uint256, uint256, uint256, uint256){ return (uint(-1),uint(-1),uint(-1),uint(-1)); } /* ========== ONLY MANAGER ========== */ /// @inheritdoc IPairVaultOperatorActions function initPosition( address _poolAddress, int24 _lowerTick, int24 _upperTick ) external override onlyManager { require(poolMap[_poolAddress], 'add Pool First'); require(!positionList[0].status, 'position0 is working, cannot init!'); IUniswapV3Pool pool = IUniswapV3Pool(_poolAddress); int24 tickSpacing = pool.tickSpacing(); (_lowerTick, _upperTick) = tickRegulate(_lowerTick, _upperTick, tickSpacing); PositionHelper.Position memory pos = PositionHelper.Position({ principal0 : 0, principal1 : 0, poolAddress : _poolAddress, tickSpacing : tickSpacing, lowerTick : _lowerTick, upperTick : _upperTick, status: true }); // add liquidity _swapAndAddAll(pos); // Push positionList[0] = pos; } /// @inheritdoc IPairVaultOperatorActions function addPool(uint24 _poolFee) external override onlyManager { // require(_poolFee == 3000 || _poolFee == 500 || _poolFee == 10000, "Wrong poolFee!"); address poolAddress = computeAddress(_poolFee); poolMap[poolAddress] = true; } /// @inheritdoc IPairVaultOperatorActions function changeConfig( address _swapPool, uint8 _performanceFee, uint24 _diffTick, uint256 _minSwapToken1 ) external override onlyManager { require(_performanceFee == 0 || _performanceFee > 4, "20Percent MAX!"); if (_swapPool != address(0) && poolMap[_swapPool]) {swapPool = _swapPool;} performanceFee = _performanceFee; diffTick = _diffTick; minSwapToken1 = _minSwapToken1; } /// @inheritdoc IPairVaultOperatorActions function addPosition(address poolAddress) external override onlyManager { require(poolMap[poolAddress], "add pool first"); IUniswapV3Pool pool = IUniswapV3Pool(poolAddress); // INIT Default Position PositionHelper.Position memory position = PositionHelper.Position({ principal0 : 0, principal1 : 0, poolAddress : poolAddress, tickSpacing : pool.tickSpacing(), lowerTick : 0, upperTick : 0, status: false }); positionList.push(position); } /// @inheritdoc IPairVaultOperatorActions function avoidRisk( uint256[] calldata idx, uint256 r0, uint256 r1 ) external override onlyManager { uint256 fee0; uint256 fee1; for (uint256 i = 0; i < idx.length; i++) { // position info PositionHelper.Position storage position = positionList[idx[i]]; // Burn ALL if (position.status) { ( , , uint256 f0, uint256 f1) = position._burnAll(); fee0 += f0; fee1 += f1; position.status = false; } } // Collect fees _collectPerformanceFee(fee0, fee1); // trim if (r0 !=0 || r1 != 0) { _swap(_balance0(), _balance1(), r0, r1); } } /// @inheritdoc IPairVaultOperatorActions function adjustMining( uint256 fromIdx, uint128 liq, uint256 toIdx, int24 lowerTick, int24 upperTick, int24 _tick ) external override onlyManager { // Check From Pool Status PositionHelper.Position memory fromP = positionList[fromIdx]; require(fromP.status && liq > 0, "fromP!"); // fee uint256 fee0; uint256 fee1; // Read Liq (uint128 totalLiq, , , , ) = fromP._positionInfo(); // Withdraw First if (liq >= totalLiq) { ( , , fee0, fee1) = fromP._burnAll(); _collectPerformanceFee(fee0, fee1); fromP.status = false; positionList[fromIdx] = fromP; } else { ( , , fee0, fee1) = fromP._burn(liq); _collectPerformanceFee(fee0, fee1); } // Deposit PositionHelper.Position memory toPos = positionList[toIdx]; toPos.checkDiffTick(_tick, diffTick); (lowerTick, upperTick) = tickRegulate(lowerTick, upperTick, toPos.tickSpacing); if (lowerTick != toPos.lowerTick || upperTick != toPos.upperTick) { if (toPos.status) { // Burn ALL (, , fee0, fee1) = toPos._burnAll(); _collectPerformanceFee(fee0, fee1); } toPos.lowerTick = lowerTick; toPos.upperTick = upperTick; //emit TickChange(toIdx, lowerTick, upperTick); } toPos.status = true; //swap add liquidity _swapAndAddAll(toPos); positionList[toIdx] = toPos; } /// @inheritdoc IPairVaultOperatorActions function reInvest() external override onlyManager { PositionHelper.Position memory position = positionList[0]; if (position.status) { ( , , uint256 fee0, uint256 fee1) = position._burn(0); //collect fee _collectPerformanceFee(fee0, fee1); //swap add liquidity _swapAndAddAll(position); } } /// @inheritdoc IPairVaultOperatorActions function changePool( uint256 idx, address newPoolAddress, int24 _lowerTick, int24 _upperTick, int24 _tick ) external override onlyManager { // Check require(poolMap[newPoolAddress], 'Add Pool First!'); PositionHelper.Position memory position = positionList[idx]; require(position.status && position.poolAddress != newPoolAddress, "CAN NOT CHANGE POOL!"); position.checkDiffTick(_tick, diffTick); // Burn All ( , , uint256 fee0, uint256 fee1) = position._burnAll(); // Collect fee _collectPerformanceFee(fee0, fee1); // new pool info int24 tickSpacing = IUniswapV3Pool(newPoolAddress).tickSpacing(); (_lowerTick, _upperTick) = tickRegulate(_lowerTick, _upperTick, tickSpacing); position.poolAddress = newPoolAddress; position.tickSpacing = tickSpacing; position.upperTick = _upperTick; position.lowerTick = _lowerTick; //emit TickChange(idx, _lowerTick, _upperTick); //swap add liquidity _swapAndAddAll(position); // update position positionList[idx] = position; } /// @inheritdoc IPairVaultOperatorActions function forceReBalance( uint256 idx, int24 _lowerTick, int24 _upperTick, int24 _tick ) public override onlyManager { PositionHelper.Position memory position = positionList[idx]; position.checkDiffTick(_tick, diffTick); if (position.status) { // Burn All ( , , uint256 fee0, uint256 fee1) = position._burnAll(); // Collect fee _collectPerformanceFee(fee0, fee1); } // new pool info (_lowerTick, _upperTick) = tickRegulate(_lowerTick, _upperTick, position.tickSpacing); position.upperTick = _upperTick; position.lowerTick = _lowerTick; position.status = true; //swap add liquidity _swapAndAddAll(position); // update position positionList[idx] = position; //emit TickChange(idx, _lowerTick, _upperTick); } /// @inheritdoc IPairVaultOperatorActions function reBalance( uint256 idx, int24 reBalanceThreshold, int24 band, int24 _tick ) external override onlyManager { require(band > 0 && reBalanceThreshold > 0, "Bad params!"); PositionHelper.Position memory position = positionList[idx]; (bool status, int24 lowerTick, int24 upperTick) = position._getReBalanceTicks(reBalanceThreshold, band); if (status) { forceReBalance(idx, lowerTick, upperTick, _tick); } } /* ========== CALL BACK ========== */ function uniswapV3SwapCallback( int256 amount0Delta, int256 amount1Delta, bytes calldata ) external override { require(amount0Delta > 0 || amount1Delta > 0, 'Zero'); require(swapPool == msg.sender, "wrong address"); if (amount0Delta > 0) { token0.transfer(msg.sender, uint256(amount0Delta)); } if (amount1Delta > 0) { token1.transfer(msg.sender, uint256(amount1Delta)); } } function uniswapV3MintCallback( uint256 amount0, uint256 amount1, bytes calldata ) external override { require(poolMap[msg.sender], "wrong address"); // transfer if (amount0 > 0) {token0.safeTransfer(msg.sender, amount0);} if (amount1 > 0) {token1.safeTransfer(msg.sender, amount1);} } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/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 UNTERC20 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_, uint8 decimals_) { _name = name_; _symbol = symbol_; _decimals = decimals_; } /** * @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 { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.6; pragma abicoder v2; import "@uniswap/v3-periphery/contracts/libraries/LiquidityAmounts.sol"; import "@uniswap/v3-core/contracts/libraries/TickMath.sol"; import "@uniswap/v3-core/contracts/libraries/FullMath.sol"; import "@uniswap/v3-core/contracts/libraries/FixedPoint128.sol"; import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; library PositionHelper { using SafeMath for uint256; struct Position { uint128 principal0; uint128 principal1; address poolAddress; int24 lowerTick; int24 upperTick; int24 tickSpacing; bool status; // True - InvestIn False - NotInvest } /* ========== VIEW ========== */ function _positionInfo( Position memory position ) internal view returns(uint128, uint256, uint256, uint256, uint256){ // Pool OBJ IUniswapV3Pool pool = IUniswapV3Pool(position.poolAddress); // Get Position Key bytes32 positionKey = keccak256(abi.encodePacked(address(this), position.lowerTick, position.upperTick)); // Get Position Detail return pool.positions(positionKey); } function _tickInfo( IUniswapV3Pool pool, int24 tick ) internal view returns (uint256 feeGrowthOutside0X128, uint256 feeGrowthOutside1X128) { // liquidityGross\liquidityNet\0\1\tickCumulativeOutside\secondsPerLiquidityOutsideX128\secondsOutside\initialized ( , , feeGrowthOutside0X128, feeGrowthOutside1X128, , , , ) = pool.ticks(tick); } function _getFeeGrowthInside( Position memory position ) internal view returns (uint256, uint256) { IUniswapV3Pool pool = IUniswapV3Pool(position.poolAddress); (int24 tickCurrent, uint256 feeGrowthGlobal0X128, uint256 feeGrowthGlobal1X128) = _poolInfo(pool); // calculate fee growth below (uint256 feeGrowthBelow0X128, uint256 feeGrowthBelow1X128) = _tickInfo(pool, position.lowerTick); if (tickCurrent < position.lowerTick) { feeGrowthBelow0X128 = feeGrowthGlobal0X128 - feeGrowthBelow0X128; feeGrowthBelow1X128 = feeGrowthGlobal1X128 - feeGrowthBelow1X128; } // calculate fee growth above (uint256 feeGrowthAbove0X128, uint256 feeGrowthAbove1X128) = _tickInfo(pool, position.upperTick); if (tickCurrent >= position.upperTick) { feeGrowthAbove0X128 = feeGrowthGlobal0X128 - feeGrowthAbove0X128; feeGrowthAbove1X128 = feeGrowthGlobal1X128 - feeGrowthAbove1X128; } // calculate inside uint256 feeGrowthInside0X128 = feeGrowthGlobal0X128 - feeGrowthBelow0X128 - feeGrowthAbove0X128; uint256 feeGrowthInside1X128 = feeGrowthGlobal1X128 - feeGrowthBelow1X128 - feeGrowthAbove1X128; return(feeGrowthInside0X128, feeGrowthInside1X128); } function _getPendingAmounts( Position memory position, uint128 liquidity, uint256 feeGrowthInside0LastX128, uint256 feeGrowthInside1LastX128 ) internal view returns(uint256 tokensPending0, uint256 tokensPending1) { // feeInside (uint256 feeGrowthInside0X128, uint256 feeGrowthInside1X128) = _getFeeGrowthInside(position); // pending calculate tokensPending0 = FullMath.mulDiv( feeGrowthInside0X128 - feeGrowthInside0LastX128, liquidity, FixedPoint128.Q128 ); tokensPending1 = FullMath.mulDiv( feeGrowthInside1X128 - feeGrowthInside1LastX128, liquidity, FixedPoint128.Q128 ); } function _getTotalAmounts(Position memory position, uint8 _performanceFee) internal view returns (uint256 total0, uint256 total1) { // Pool OBJ IUniswapV3Pool pool = IUniswapV3Pool(position.poolAddress); // position info ( uint128 liquidity, uint256 feeGrowthInside0LastX128, uint256 feeGrowthInside1LastX128, uint256 owned0, uint256 owned1 ) = _positionInfo(position); // liquidity Amount (uint160 sqrtRatioX96, , , , , , ) = pool.slot0(); (total0, total1) = LiquidityAmounts.getAmountsForLiquidity( sqrtRatioX96, TickMath.getSqrtRatioAtTick(position.lowerTick), TickMath.getSqrtRatioAtTick(position.upperTick), liquidity ); // get Pending (uint256 pending0, uint256 pending1) = _getPendingAmounts(position, liquidity, feeGrowthInside0LastX128, feeGrowthInside1LastX128); total0 = total0.add(pending0).add(owned0); total1 = total1.add(pending1).add(owned1); if (_performanceFee > 0) { total0 = total0.sub(pending0.div(_performanceFee)); total1 = total1.sub(pending1.div(_performanceFee)); } } function _poolInfo(IUniswapV3Pool pool) internal view returns (int24, uint256, uint256) { ( , int24 tick, , , , , ) = pool.slot0(); uint256 feeGrowthGlobal0X128 = pool.feeGrowthGlobal0X128(); uint256 feeGrowthGlobal1X128 = pool.feeGrowthGlobal1X128(); // return return (tick, feeGrowthGlobal0X128, feeGrowthGlobal1X128); } /* ========== BASE FUNCTION ========== */ function _addLiquidity( Position memory position, uint128 liquidity ) internal returns (uint256 amount0, uint256 amount1){ // Pool OBJ IUniswapV3Pool pool = IUniswapV3Pool(position.poolAddress); // add Liquidity on Uniswap (amount0, amount1) = pool.mint( address(this), position.lowerTick, position.upperTick, liquidity, "" ); } function _burnLiquidity( Position memory position, uint128 liquidity ) internal returns (uint256 amount0, uint256 amount1) { // Pool OBJ IUniswapV3Pool pool = IUniswapV3Pool(position.poolAddress); (amount0, amount1) = pool.burn(position.lowerTick, position.upperTick, liquidity); } function _collect( Position memory position, address to, uint128 amount0, uint128 amount1 ) internal returns (uint256 collect0, uint256 collect1) { // Pool OBJ IUniswapV3Pool pool = IUniswapV3Pool(position.poolAddress); // collect ALL to Vault (collect0, collect1) = pool.collect( to, position.lowerTick, position.upperTick, amount0, amount1 ); } /* ========== SENIOR FUNCTION ========== */ function _addAll( Position memory position, uint256 balance0, uint256 balance1 ) internal returns(uint256 amount0, uint256 amount1){ // Pool OBJ IUniswapV3Pool pool = IUniswapV3Pool(position.poolAddress); // Calculate Liquidity (uint160 sqrtRatioX96, , , , , , ) = pool.slot0(); uint128 liquidity = LiquidityAmounts.getLiquidityForAmounts( sqrtRatioX96, TickMath.getSqrtRatioAtTick(position.lowerTick), TickMath.getSqrtRatioAtTick(position.upperTick), balance0, balance1 ); // Add to Pool (amount0, amount1) = _addLiquidity(position, liquidity); } function _burnAll( Position memory position ) internal returns(uint256, uint256, uint256, uint256) { // Read Liq (uint128 liquidity, , , , ) = _positionInfo(position); if(liquidity == 0) return (0, 0, 0, 0); return _burn(position, liquidity); } function _burn( Position memory position, uint128 liquidity ) internal returns(uint256 amount0, uint256 amount1, uint256 fee0, uint256 fee1) { // Burn (fee0, fee1) = _burnLiquidity(position, liquidity); // Collect (amount0, amount1) = _collect(position, address(this), type(uint128).max, type(uint128).max); fee0 = amount0 - fee0; fee1 = amount1 - fee1; } function _burnSpecific( Position memory position, uint128 liquidity, address to ) internal returns(uint256 amount0, uint256 amount1, uint fee0, uint fee1){ // Burn (amount0, amount1) = _burnLiquidity(position, liquidity); // Collect to user _collect(position, to, uint128(amount0), uint128(amount1)); // Collect to Vault (fee0, fee1) = _collect(position, address(this), type(uint128).max, type(uint128).max); } function _getReBalanceTicks( Position memory position, int24 reBalanceThreshold, int24 band ) internal view returns (bool status, int24 lowerTick, int24 upperTick) { // get Current Tick IUniswapV3Pool pool = IUniswapV3Pool(position.poolAddress); ( , int24 tick, , , , , ) = pool.slot0(); bool lowerRebalance; // Check status if (position.status) { int24 middleTick = (position.lowerTick + position.upperTick) / 2; if (middleTick - tick >= reBalanceThreshold) { status = true; lowerRebalance = true; }else if(tick - middleTick >= reBalanceThreshold){ status = true; } } else { status = true; } // get new ticks if (status) { if(lowerRebalance && (tick % position.tickSpacing != 0)){ tick = _floor(tick, position.tickSpacing) + position.tickSpacing ; }else{ tick = _floor(tick, position.tickSpacing); } band = _floor(band, position.tickSpacing); lowerTick = tick - band; upperTick = tick + band; } } function checkDiffTick(Position memory position, int24 _tick, uint24 _diffTick) internal view { // get Current Tick IUniswapV3Pool pool = IUniswapV3Pool(position.poolAddress); ( , int24 tick, , , , , ) = pool.slot0(); require(tick - _tick < int24(_diffTick) && _tick - tick < int24(_diffTick), "DIFF TICK"); } function _floor(int24 tick, int24 _tickSpacing) internal pure returns (int24) { int24 compressed = tick / _tickSpacing; if (tick < 0 && tick % _tickSpacing != 0) compressed--; return compressed * _tickSpacing; } }
// 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 vault owner interface IVaultOwnerActions { /// @notice Set new operator address /// @param _operator Operator address function changeManager(address _operator) external; /// @notice Update address in the whitelist /// @param _address Address add to whitelist /// @param status Add or Remove from whitelist function updateWhiteList(address _address, bool status) external; /// @notice Collect the protocol fee to a address /// @param to The address where the fee collected to function withdrawPerformanceFee(address to) external; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Events emitted by a vault /// @notice Contains all events emitted by the vault interface IVaultEvents { /// @notice Emitted when user deposit token in vault /// @param user The address that deposited token in vault /// @param share0 The share token amount corresponding to the deposit /// @param share1 The share token amount corresponding to the deposit /// @param amount0 The amount of token0 want to deposit /// @param amount1 The amount of token1 want to deposit event Deposit( address indexed user, uint256 share0, uint256 share1, uint256 amount0, uint256 amount1 ); /// @notice Emitted when user withdraw their share in vault /// @param user The address that withdraw share in vault /// @param share0 The amount share to withdraw /// @param share1 The amount share to withdraw /// @param amount0 How much token0 was taken out by user /// @param amount1 How much token1 was taken out by user event Withdraw( address indexed user, uint256 share0, uint256 share1, uint256 amount0, uint256 amount1 ); /// @notice Emitted when fees collected from uniV3 /// @param feesFromPool0 How much token0 was collected /// @param feesFromPool1 How much token1 was collected event CollectFees( uint256 feesFromPool0, uint256 feesFromPool1 ); /// @notice Emitted when add or delete contract white list /// @param _address The contact address /// @param status true is add false is delete event UpdateWhiteList( address indexed _address, bool status ); /// @notice Emitted when change manager address /// @param _operator The manager address event ChangeManger( address indexed _operator ); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity 0.7.6; pragma abicoder v2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "./IVaultOwnerActions.sol"; import "./IPairVaultOperatorActions.sol"; import "./IVaultEvents.sol"; /// @title The interface for a Universe Vault /// @notice A UniswapV3 optimizer with smart rebalance strategy interface IUniversePairVault is IERC20, IVaultOwnerActions, IPairVaultOperatorActions, IVaultEvents{ /// @notice The first of the two tokens of the pool, sorted by address /// @return The token contract address function token0() external view returns (IERC20); /// @notice The second of the two tokens of the pool, sorted by address /// @return The token contract address function token1() external view returns (IERC20); /// @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 fee0, uint128 fee1); /// @notice Returns data about a specific position index /// @param index The element of the positions array to fetch /// @return principal0 not used, /// Returns principal1 not used, /// Returns poolAddress The uniV3 pool address of the position, /// Returns lowerTick The lower tick of the position, /// Returns upperTick The upper tick of the position, /// Returns tickSpacing The uniV3 pool tickSpacing, /// Returns status The status of the position function positionList(uint256 index) external view returns ( uint128 principal0, uint128 principal1, address poolAddress, int24 lowerTick, int24 upperTick, int24 tickSpacing, bool status ); /// @notice Get the vault's total balance of token0 and token1 /// @return The amount of token0 and token1 function getTotalAmounts() external view returns (uint256, uint256, uint256, uint256, uint256, uint256); /// @notice Get the amount0\amount1 info based of quantity of deposit amounts /// @param amount0Desired The amount of token0 want to deposit /// @param amount1Desired The amount of token1 want to deposit /// @return The share\0 corresponding to the investment amount function getShares( uint256 amount0Desired, uint256 amount1Desired ) external view returns (uint256, uint256); /// @notice Get the amount of token0 and token1 corresponding to specific share amount /// @param share The share amount /// @return The amount of token0 and token1 corresponding to specific share amount function getBals(uint256 share, uint256) external view returns (uint256, uint256); /// @notice The shares of user /// @return share The share amount of token0, function getUserShares(address user) external view returns (uint256 share, uint256); /// @notice Get the share\amount0\amount1 info based of quantity of deposit amounts /// @param amount0Desired The amount of token0 want to deposit /// @param amount1Desired The amount of token1 want to deposit /// @return The share\amount0\amount1 corresponding to the investment amount function getBalancedAmount( uint256 amount0Desired, uint256 amount1Desired ) external view returns (uint256, uint256, uint256); /// @notice Get the amount of token0 and token1 corresponding to specific share amount /// @param share The share amount /// @return The amount of token0 and token1 corresponding to specific share amount function calBalance(uint256 share) external view returns (uint256, uint256); /// @notice Get the uniV3 pool address of the main position /// @return The uniV3 pool contract address function defaultPoolAddress() external view returns(address); /// @notice Deposit token into this contract /// @param amount0Desired The amount of token0 want to deposit /// @param amount1Desired The amount of token1 want to deposit /// @return The share corresponding to the investment amount function deposit( uint256 amount0Desired, uint256 amount1Desired ) external returns(uint256, uint256); /// @notice Deposit token into this contract /// @param amount0Desired The amount of token0 want to deposit /// @param amount1Desired The amount of token1 want to deposit /// @param to who will get The share /// @return The share corresponding to the investment amount function deposit( uint256 amount0Desired, uint256 amount1Desired, address to ) external returns(uint256, uint256) ; /// @notice Withdraw token by user /// @param share The share amount /// @return The amount of token0 and token1 withdraw by user function withdraw(uint256 share) external returns (uint256, uint256); /// @notice Withdraw token by user /// @param share0 The share amount /// @param share1 not used /// @return The amount of token0 and token1 withdraw by user function withdraw(uint256 share0, uint256 share1) external returns (uint256, uint256); /// @notice Called to `msg.sender` after executing a swap via IUniswapV3Pool#swap. /// @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; /// @notice Called to `msg.sender` after minting liquidity to a position from IUniswapV3Pool#mint. /// @param amount0 The amount of token0 due to the pool for the minted liquidity /// @param amount1 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 amount0, uint256 amount1, bytes calldata data ) external; }
// 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 vault operator interface IPairVaultOperatorActions { function initPosition(address, int24, int24) external; /// @notice Set the available uniV3 pool address /// @param _poolFee The uniV3 pool fee function addPool(uint24 _poolFee) external; /// @notice Set the core params of the vault /// @param _swapPool Set the uniV3 pool address for trading /// @param _performanceFee Set new protocol fee /// @param _diffTick Set max rebalance tick bias /// @param _minSwapToken1 Set swap limit function changeConfig( address _swapPool, uint8 _performanceFee, uint24 _diffTick, uint256 _minSwapToken1 ) external; /// @notice Prepares the position array to store up a new position /// @param poolAddress The uniV3 pool address of the new position function addPosition(address poolAddress) external; /// @notice Stop mining of specified positions /// @param idx The position index array to stop mining /// @param r0 The mocked token0 amount using to calculate token1/token0 after trim /// @param r1 The mocked token1 amount using to calculate token1/token0 after trim function avoidRisk( uint256[] calldata idx, uint256 r0, uint256 r1 ) external; /// @notice Add liquidity to one position after remove some liquidity from one position /// @param fromIdx The position to remove liquidity /// @param liq The liquidity amount to remove /// @param toIdx The position to add liquidity /// @param lowerTick The lower tick for the position /// @param upperTick The upper tick for the position /// @param _tick The desire middle tick in the target position function adjustMining( uint256 fromIdx, uint128 liq, uint256 toIdx, int24 lowerTick, int24 upperTick, int24 _tick ) external; /// @notice Reinvest the main position function reInvest() external; /// @notice Change a position's uniV3 pool address /// @param idx The position index /// @param newPoolAddress The the new uniV3 pool address /// @param _lowerTick The lower tick for the position /// @param _upperTick The upper tick for the position /// @param _tick The desire middle tick in the new pool function changePool( uint256 idx, address newPoolAddress, int24 _lowerTick, int24 _upperTick, int24 _tick ) external; /// @notice Do rebalance of one position /// @param idx The position index /// @param _lowerTick The lower tick for the position after rebalance /// @param _upperTick The upper tick for the position after rebalance /// @param _tick The current tick for ready rebalance function forceReBalance( uint256 idx, int24 _lowerTick, int24 _upperTick, int24 _tick ) external; /// @notice Do rebalance of one position /// @param idx The position index /// @param reBalanceThreshold The minimum tick bias to do rebalance /// @param band The new price range band param /// @param _tick The current tick for ready rebalance function reBalance( uint256 idx, int24 reBalanceThreshold, int24 band, int24 _tick ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IERC20Detail is IERC20 { function decimals() external view returns (uint8); function symbol() external view returns (string memory); }
// 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); } } }
// 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; } }
// 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++; } } }
// 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; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.4.0; /// @title FixedPoint128 /// @notice A library for handling binary fixed point numbers, see https://en.wikipedia.org/wiki/Q_(number_format) library FixedPoint128 { uint256 internal constant Q128 = 0x100000000000000000000000000000000; }
// 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 ); }
// 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); }
// 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); }
// 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); }
// 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 ); }
// 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; }
// 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 { }
// 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; } }
// 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); } } } }
// 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"); } } }
// 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); }
// 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 { } }
// 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; } }
// 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); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 100 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_uniFactory","type":"address"},{"internalType":"address","name":"_poolAddress","type":"address"},{"internalType":"address","name":"_operator","type":"address"},{"internalType":"address","name":"_swapPool","type":"address"},{"internalType":"uint8","name":"_performanceFee","type":"uint8"},{"internalType":"uint24","name":"_diffTick","type":"uint24"}],"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":true,"internalType":"address","name":"_operator","type":"address"}],"name":"ChangeManger","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feesFromPool0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feesFromPool1","type":"uint256"}],"name":"CollectFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"share0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"share1","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"UpdateWhiteList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"share0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"share1","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"UNIVERSE_VAULT_VERSION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint24","name":"_poolFee","type":"uint24"}],"name":"addPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"poolAddress","type":"address"}],"name":"addPosition","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fromIdx","type":"uint256"},{"internalType":"uint128","name":"liq","type":"uint128"},{"internalType":"uint256","name":"toIdx","type":"uint256"},{"internalType":"int24","name":"lowerTick","type":"int24"},{"internalType":"int24","name":"upperTick","type":"int24"},{"internalType":"int24","name":"_tick","type":"int24"}],"name":"adjustMining","outputs":[],"stateMutability":"nonpayable","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":"uint256[]","name":"idx","type":"uint256[]"},{"internalType":"uint256","name":"r0","type":"uint256"},{"internalType":"uint256","name":"r1","type":"uint256"}],"name":"avoidRisk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"share","type":"uint256"}],"name":"calBalance","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_swapPool","type":"address"},{"internalType":"uint8","name":"_performanceFee","type":"uint8"},{"internalType":"uint24","name":"_diffTick","type":"uint24"},{"internalType":"uint256","name":"_minSwapToken1","type":"uint256"}],"name":"changeConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"changeManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"idx","type":"uint256"},{"internalType":"address","name":"newPoolAddress","type":"address"},{"internalType":"int24","name":"_lowerTick","type":"int24"},{"internalType":"int24","name":"_upperTick","type":"int24"},{"internalType":"int24","name":"_tick","type":"int24"}],"name":"changePool","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":[],"name":"defaultPoolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0Desired","type":"uint256"},{"internalType":"uint256","name":"amount1Desired","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0Desired","type":"uint256"},{"internalType":"uint256","name":"amount1Desired","type":"uint256"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"idx","type":"uint256"},{"internalType":"int24","name":"_lowerTick","type":"int24"},{"internalType":"int24","name":"_upperTick","type":"int24"},{"internalType":"int24","name":"_tick","type":"int24"}],"name":"forceReBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0Desired","type":"uint256"},{"internalType":"uint256","name":"amount1Desired","type":"uint256"}],"name":"getBalancedAmount","outputs":[{"internalType":"uint256","name":"share","type":"uint256"},{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"share","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"getBals","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0Desired","type":"uint256"},{"internalType":"uint256","name":"amount1Desired","type":"uint256"}],"name":"getShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalAmounts","outputs":[{"internalType":"uint256","name":"total0","type":"uint256"},{"internalType":"uint256","name":"total1","type":"uint256"},{"internalType":"uint256","name":"free0","type":"uint256"},{"internalType":"uint256","name":"free1","type":"uint256"},{"internalType":"uint256","name":"utilizationRate0","type":"uint256"},{"internalType":"uint256","name":"utilizationRate1","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_poolAddress","type":"address"},{"internalType":"int24","name":"_lowerTick","type":"int24"},{"internalType":"int24","name":"_upperTick","type":"int24"}],"name":"initPosition","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"positionList","outputs":[{"internalType":"uint128","name":"principal0","type":"uint128"},{"internalType":"uint128","name":"principal1","type":"uint128"},{"internalType":"address","name":"poolAddress","type":"address"},{"internalType":"int24","name":"lowerTick","type":"int24"},{"internalType":"int24","name":"upperTick","type":"int24"},{"internalType":"int24","name":"tickSpacing","type":"int24"},{"internalType":"bool","name":"status","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolFees","outputs":[{"internalType":"uint128","name":"fee0","type":"uint128"},{"internalType":"uint128","name":"fee1","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"idx","type":"uint256"},{"internalType":"int24","name":"reBalanceThreshold","type":"int24"},{"internalType":"int24","name":"band","type":"int24"},{"internalType":"int24","name":"_tick","type":"int24"}],"name":"reBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reInvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token0","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1","outputs":[{"internalType":"contract IERC20","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"},{"internalType":"bytes","name":"","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":"","type":"bytes"}],"name":"uniswapV3SwapCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"updateWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"share","type":"uint256"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"share","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdrawPerformanceFee","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405267016345785d8a00006009553480156200001d57600080fd5b50604051620066a6380380620066a6833981016040819052620000409162000612565b6040518060400160405280600b81526020016a0554e4956455253452d4c560ac1b815250604051806040016040528060038152602001620554c560ec1b81525060126000620000946200052160201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508251620000f390600490602086019062000525565b5081516200010990600590602085019062000525565b506006805460ff191660ff929092169190911790555050606086901b6001600160601b03191660805260408051630dfe168160e01b8152905186916001600160a01b03831691630dfe168191600480820192602092909190829003018186803b1580156200017657600080fd5b505afa1580156200018b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b19190620005ee565b6001600160a01b031660a0816001600160a01b031660601b81525050806001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b1580156200020757600080fd5b505afa1580156200021c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002429190620005ee565b6001600160a01b031660c0816001600160a01b031660601b81525050600160076000886001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000866001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff02191690831515021790555060006040518060e0016040528060006001600160801b0316815260200160006001600160801b0316815260200160006001600160a01b03168152602001600060020b8152602001600060020b8152602001600060020b8152602001600015158152509050600b81908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000160006101000a8154816001600160801b0302191690836001600160801b0316021790555060208201518160000160106101000a8154816001600160801b0302191690836001600160801b0316021790555060408201518160010160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060608201518160010160146101000a81548162ffffff021916908360020b62ffffff16021790555060808201518160010160176101000a81548162ffffff021916908360020b62ffffff16021790555060a082015181600101601a6101000a81548162ffffff021916908360020b62ffffff16021790555060c082015181600101601d6101000a81548160ff021916908315150217905550505085600660016101000a8154816001600160a01b0302191690836001600160a01b0316021790555084600860006101000a8154816001600160a01b0302191690836001600160a01b0316021790555083600860146101000a81548160ff021916908360ff16021790555082600860156101000a81548162ffffff021916908362ffffff1602179055505050505050505050620006a3565b3390565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200055d5760008555620005a8565b82601f106200057857805160ff1916838001178555620005a8565b82800160010185558215620005a8579182015b82811115620005a85782518255916020019190600101906200058b565b50620005b6929150620005ba565b5090565b5b80821115620005b65760008155600101620005bb565b80516001600160a01b0381168114620005e957600080fd5b919050565b60006020828403121562000600578081fd5b6200060b82620005d1565b9392505050565b60008060008060008060c087890312156200062b578182fd5b6200063687620005d1565b95506200064660208801620005d1565b94506200065660408801620005d1565b93506200066660608801620005d1565b9250608087015160ff811681146200067c578283fd5b60a088015190925062ffffff8116811462000695578182fd5b809150509295509295509295565b60805160601c60a05160601c60c05160601c615f876200071f600039806109ed5280610fce5280611ebc5280611f5a528061287c528061338052806137cb5280613b535250806106c152806109a65280610f225280611f2052806127d1528061320f52806137905280613b32525080613b115250615f876000f3fe608060405234801561001057600080fd5b506004361061028a5760003560e01c8063947f4ba61161015c578063cf187d2f116100ce578063e323ba3f11610087578063e323ba3f146105a4578063eb5fe583146105ac578063f2fde38b146105bf578063f95949be146105d2578063fa461e33146105e5578063fd327141146105f85761028a565b8063cf187d2f1461053d578063d21220a714610550578063d348799714610558578063dd62ed3e1461056b578063ded3bbf71461057e578063e2bbb158146105915761028a565b8063aac1846f11610120578063aac1846f146104ca578063ac1d0609146104d2578063ba0cb22b146104e5578063c2c0ef9b146104f8578063c4a7761e1461050b578063c65b61ca146105255761028a565b8063947f4ba61461047657806395d89b4114610489578063a3fbbaae14610491578063a457c2d7146104a4578063a9059cbb146104b75761028a565b8063441a3e7011610200578063715018a6116101b9578063715018a614610407578063737106ac1461040f5780637955f60f146104225780638da5cb5b146104485780638dbdbe6d146104505780639270d81b146104635761028a565b8063441a3e70146103a05780634522f94d146103b357806350be99ad146103c6578063554d2a84146103ce578063594c2ba5146103e157806370a08231146103f45761028a565b806323b872dd1161025257806323b872dd1461030d57806329f5abcf146103205780632bac1b0e146103425780632e1a7d4d14610357578063313ce56714610378578063395093511461038d5761028a565b806306fdde031461028f578063095ea7b3146102ad5780630dfe1681146102cd57806318160ddd146102e25780631ad8b03b146102f7575b600080fd5b61029761060b565b6040516102a491906158f2565b60405180910390f35b6102c06102bb3660046151fa565b6106a1565b6040516102a491906158aa565b6102d56106bf565b6040516102a4919061577a565b6102ea6106e3565b6040516102a491906158b5565b6102ff6106e9565b6040516102a4929190615c05565b6102c061031b366004615143565b610703565b61033361032e3660046156c9565b61078b565b6040516102a493929190615c94565b610355610350366004615608565b6107a7565b005b61036a61036536600461557f565b6108eb565b6040516102a4929190615c86565b610380610a74565b6040516102a49190615cd2565b6102c061039b3660046151fa565b610a7d565b61036a6103ae3660046156c9565b610acb565b6103556103c1366004615608565b610ae3565b610355610d41565b6103556103dc3660046150ef565b610e50565b6103556103ef3660046155af565b6110b5565b6102ea6104023660046150ef565b611404565b610355611423565b61035561041d36600461565a565b6114cf565b61043561043036600461557f565b6119aa565b6040516102a49796959493929190615c1f565b6102d5611a22565b61036a61045e3660046156ea565b611a31565b61036a6104713660046156c9565b611a7c565b61036a6104843660046156c9565b611a88565b610297611aa6565b61035561049f3660046150ef565b611b07565b6102c06104b23660046151fa565b611bbb565b6102c06104c53660046151fa565b611c23565b6102d5611c37565b6103556104e0366004615183565b611c69565b61036a6104f33660046150ef565b611d2b565b61036a61050636600461557f565b611d44565b610513611d9d565b6040516102a496959493929190615caa565b61052d611dbe565b6040516102a49493929190615c6b565b61035561054b366004615225565b611dc9565b6102d5611eba565b61035561056636600461534a565b611ede565b6102ea61057936600461510b565b611f87565b61035561058c3660046150ef565b611fb2565b61036a61059f3660046156c9565b612201565b610380612248565b6103556105ba366004615273565b61224d565b6103556105cd3660046150ef565b6123cc565b6103556105e03660046151b0565b6124ce565b6103556105f336600461534a565b61275c565b610355610606366004615565565b61290c565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106975780601f1061066c57610100808354040283529160200191610697565b820191906000526020600020905b81548152906001019060200180831161067a57829003601f168201915b5050505050905090565b60006106b56106ae61296c565b8484612970565b5060015b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60035490565b600a546001600160801b0380821691600160801b90041682565b6000610710848484612a5c565b6107808461071c61296c565b61077b85604051806060016040528060288152602001615e31602891396001600160a01b038a1660009081526002602052604081209061075a61296c565b6001600160a01b031681526020810191909152604001600020549190612ba7565b612970565b5060015b9392505050565b600080600061079a8585612c3e565b9250925092509250925092565b60065461010090046001600160a01b031632146107df5760405162461bcd60e51b81526004016107d6906159ec565b60405180910390fd5b60008260020b1380156107f5575060008360020b135b6108115760405162461bcd60e51b81526004016107d690615bbd565b6000600b858154811061082057fe5b600091825260208083206040805160e081018252600294850290920180546001600160801b038082168552600160801b90910416938301939093526001909201546001600160a01b03811692820192909252600160a01b8204830b830b830b6060820152600160b81b8204830b830b830b6080820152600160d01b8204830b830b90920b60a0830152600160e81b900460ff16151560c0820152915080806108c9848888612d01565b92509250925082156108e1576108e188838388610ae3565b5050505050505050565b60008060006108f933611404565b905080841115610907578093505b600084116109275760405162461bcd60e51b81526004016107d6906159ce565b60006109316106e3565b905061093d3386612e68565b60008061094b878433612f52565b9298509096509250905061095f82826130c5565b600061097d846109778a6109716131e8565b9061329a565b906132f3565b90506000610991856109778b61097161335a565b905081156109da576109cd6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633846133bd565b6109d7888361340f565b97505b8015610a2157610a146001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633836133bd565b610a1e878261340f565b96505b336001600160a01b03167fe08737ac48a1dab4b1a46c7dc9398bd5bfc6d7ad6fabb7cd8caa254de14def358a60008b8b604051610a619493929190615c6b565b60405180910390a2505050505050915091565b60065460ff1690565b60006106b5610a8a61296c565b8461077b8560026000610a9b61296c565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061340f565b600080610ad7846108eb565b915091505b9250929050565b60065461010090046001600160a01b03163214610b125760405162461bcd60e51b81526004016107d6906159ec565b6000600b8581548110610b2157fe5b60009182526020918290206040805160e081018252600293840290920180546001600160801b038082168552600160801b90910416948301949094526001909301546001600160a01b03811693820193909352600160a01b8304820b820b820b6060820152600160b81b8304820b820b820b6080820152600160d01b8304820b820b90910b60a0820152600160e81b90910460ff16151560c0820152600854909150610bdc9082908490600160a81b900462ffffff16613467565b8060c0015115610c0557600080610bf283613525565b935093505050610c0282826130c5565b50505b610c1484848360a0015161357d565b600281810b810b608085015282810b900b6060840152600160c08401529094509250610c3f816135bd565b80600b8681548110610c4d57fe5b6000918252602091829020835160029283029091018054938501516001600160801b03199094166001600160801b03928316178216600160801b92909416919091029290921782556040830151600190920180546060850151608086015160a087015160c0909701516001600160a01b03199093166001600160a01b039096169590951762ffffff60a01b1916600160a01b91850b62ffffff908116929092021762ffffff60b81b1916600160b81b95850b8216959095029490941762ffffff60d01b1916600160d01b9590930b93909316939093021760ff60e81b1916600160e81b911515919091021790555050505050565b60065461010090046001600160a01b03163214610d705760405162461bcd60e51b81526004016107d6906159ec565b6000600b600081548110610d8057fe5b60009182526020918290206040805160e081018252600293840290920180546001600160801b038082168552600160801b90910416948301949094526001909301546001600160a01b03811693820193909352600160a01b8304820b820b820b6060820152600160b81b8304820b820b820b6080820152600160d01b8304820b820b90910b60a0820152600160e81b90910460ff1615801560c0830152909150610e4d57600080610e318382613602565b935093505050610e4182826130c5565b610e4a836135bd565b50505b50565b610e5861296c565b6001600160a01b0316610e69611a22565b6001600160a01b031614610eb2576040805162461bcd60e51b81526020600482018190526024820152600080516020615e59833981519152604482015290519081900360640190fd5b6001600160a01b038116610ed85760405162461bcd60e51b81526004016107d690615a6b565b60408051808201909152600a546001600160801b03808216808452600160801b90920416602083015260011015610fb657805160405163a9059cbb60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163a9059cbb91610f5e91869160001990910190600401615888565b602060405180830381600087803b158015610f7857600080fd5b505af1158015610f8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb091906152ef565b50600181525b600181602001516001600160801b0316111561107c577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a9059cbb8360018460200151036040518363ffffffff1660e01b8152600401611021929190615888565b602060405180830381600087803b15801561103b57600080fd5b505af115801561104f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107391906152ef565b50600160208201525b8051600a80546020909301516001600160801b03908116600160801b029281166001600160801b03199094169390931790921617905550565b60065461010090046001600160a01b031632146110e45760405162461bcd60e51b81526004016107d6906159ec565b6001600160a01b03841660009081526007602052604090205460ff1661111c5760405162461bcd60e51b81526004016107d690615b40565b6000600b868154811061112b57fe5b60009182526020918290206040805160e081018252600293840290920180546001600160801b038082168552600160801b90910416948301949094526001909301546001600160a01b03811693820193909352600160a01b8304820b820b820b6060820152600160b81b8304820b820b820b6080820152600160d01b8304820b820b90910b60a0820152600160e81b90910460ff1615801560c083018190529192506111ed5750846001600160a01b031681604001516001600160a01b031614155b6112095760405162461bcd60e51b81526004016107d690615a3d565b6008546112259082908490600160a81b900462ffffff16613467565b60008061123183613525565b93509350505061124182826130c5565b6000876001600160a01b031663d0c93a7c6040518163ffffffff1660e01b815260040160206040518083038186803b15801561127c57600080fd5b505afa158015611290573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b4919061530b565b90506112c187878361357d565b6001600160a01b038a166040870152600283810b810b60a088015281810b810b608088015282810b900b606087015290975095506112fe846135bd565b83600b8a8154811061130c57fe5b6000918252602091829020835160029283029091018054938501516001600160801b03199094166001600160801b03928316178216600160801b92909416919091029290921782556040830151600190920180546060850151608086015160a087015160c0909701516001600160a01b03199093166001600160a01b039096169590951762ffffff60a01b1916600160a01b91850b62ffffff908116929092021762ffffff60b81b1916600160b81b95850b8216959095029490941762ffffff60d01b1916600160d01b9590930b93909316939093021760ff60e81b1916600160e81b91151591909102179055505050505050505050565b6001600160a01b0381166000908152600160205260409020545b919050565b61142b61296c565b6001600160a01b031661143c611a22565b6001600160a01b031614611485576040805162461bcd60e51b81526020600482018190526024820152600080516020615e59833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60065461010090046001600160a01b031632146114fe5760405162461bcd60e51b81526004016107d6906159ec565b6000600b878154811061150d57fe5b60009182526020918290206040805160e081018252600293840290920180546001600160801b038082168552600160801b90910416948301949094526001909301546001600160a01b03811693820193909352600160a01b8304820b820b820b6060820152600160b81b8304820b820b820b6080820152600160d01b8304820b820b90910b60a0820152600160e81b90910460ff1615801560c083018190529192506115c257506000866001600160801b0316115b6115de5760405162461bcd60e51b81526004016107d690615945565b60008060006115ec8461363c565b505050509050806001600160801b0316896001600160801b0316106117315761161484613525565b90955093506116279150849050836130c5565b600060c0850152600b80548591908c90811061163f57fe5b6000918252602091829020835160029283029091018054938501516001600160801b03199094166001600160801b03928316178216600160801b92909416919091029290921782556040830151600190920180546060850151608086015160a087015160c0909701516001600160a01b03199093166001600160a01b039096169590951762ffffff60a01b1916600160a01b91850b62ffffff908116929092021762ffffff60b81b1916600160b81b95850b8216959095029490941762ffffff60d01b1916600160d01b9590930b93909316939093021760ff60e81b1916600160e81b9115159190910217905561174e565b61173b848a613602565b909550935061174e9150849050836130c5565b6000600b898154811061175d57fe5b60009182526020918290206040805160e081018252600293840290920180546001600160801b038082168552600160801b90910416948301949094526001909301546001600160a01b03811693820193909352600160a01b8304820b820b820b6060820152600160b81b8304820b820b820b6080820152600160d01b8304820b820b90910b60a0820152600160e81b90910460ff16151560c08201526008549091506118189082908890600160a81b900462ffffff16613467565b61182788888360a0015161357d565b60608301519199509750600289810b91900b1415806118505750806080015160020b8760020b14155b15611892578060c001511561187b5761186881613525565b909650945061187b9150859050846130c5565b600288810b810b606083015287810b900b60808201525b600160c08201526118a2816135bd565b80600b8a815481106118b057fe5b6000918252602091829020835160029283029091018054938501516001600160801b03199094166001600160801b03928316178216600160801b92909416919091029290921782556040830151600190920180546060850151608086015160a087015160c0909701516001600160a01b03199093166001600160a01b039096169590951762ffffff60a01b1916600160a01b91850b62ffffff908116929092021762ffffff60b81b1916600160b81b95850b8216959095029490941762ffffff60d01b1916600160d01b9590930b93909316939093021760ff60e81b1916600160e81b911515919091021790555050505050505050505050565b600b81815481106119ba57600080fd5b6000918252602090912060029182020180546001909101546001600160801b038083169450600160801b909204909116916001600160a01b03821691600160a01b8104820b91600160b81b8204810b91600160d01b810490910b90600160e81b900460ff1687565b6000546001600160a01b031690565b336000908152600c6020526040812054819060ff16611a625760405162461bcd60e51b81526004016107d690615b69565b611a6d858585613720565b6000915091505b935093915050565b600080610ad784611d44565b6000806000611a978585612c3e565b50909660009650945050505050565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106975780601f1061066c57610100808354040283529160200191610697565b611b0f61296c565b6001600160a01b0316611b20611a22565b6001600160a01b031614611b69576040805162461bcd60e51b81526020600482018190526024820152600080516020615e59833981519152604482015290519081900360640190fd5b60068054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517f0afcbf7c3742ee20488a08c0da12ca29b2e8bdd022bef6129efbf4e00f84a63090600090a250565b60006106b5611bc861296c565b8461077b85604051806060016040528060258152602001615f2d6025913960026000611bf261296c565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612ba7565b60006106b5611c3061296c565b8484612a5c565b6000600b600081548110611c4757fe5b60009182526020909120600160029092020101546001600160a01b0316905090565b611c7161296c565b6001600160a01b0316611c82611a22565b6001600160a01b031614611ccb576040805162461bcd60e51b81526020600482018190526024820152600080516020615e59833981519152604482015290519081900360640190fd5b6001600160a01b0382166000818152600c602052604090819020805460ff1916841515179055517fc551bbb22d0406dbfb8b6b7740cc521bcf44e1106029cf899c19b6a8e4c99d5190611d1f9084906158aa565b60405180910390a25050565b6000806000611d3984611404565b946000945092505050565b6000806000611d516106e3565b90508315801590611d6157508015155b15611d9757611d6e61390b565b509194509250611d84905081610977858761329a565b9250611d9481610977848761329a565b91505b50915091565b600080600080600080611dae61390b565b9299919850965090945091925090565b600019808080919293565b60065461010090046001600160a01b03163214611df85760405162461bcd60e51b81526004016107d6906159ec565b60ff83161580611e0b575060048360ff16115b611e275760405162461bcd60e51b81526004016107d690615acd565b6001600160a01b03841615801590611e5757506001600160a01b03841660009081526007602052604090205460ff165b15611e7857600880546001600160a01b0319166001600160a01b0386161790555b6008805462ffffff909316600160a81b0262ffffff60a81b1960ff909516600160a01b0260ff60a01b1990941693909317939093169190911790915560095550565b7f000000000000000000000000000000000000000000000000000000000000000081565b3360009081526007602052604090205460ff16611f0d5760405162461bcd60e51b81526004016107d6906159a7565b8315611f4757611f476001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633866133bd565b8215611f8157611f816001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633856133bd565b50505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60065461010090046001600160a01b03163214611fe15760405162461bcd60e51b81526004016107d6906159ec565b6001600160a01b03811660009081526007602052604090205460ff166120195760405162461bcd60e51b81526004016107d690615b18565b6040805160e081018252600080825260208083018290526001600160a01b038516838501819052606084018390526080840183905284516334324e9f60e21b81529451869593949360a085019363d0c93a7c92600480840193829003018186803b15801561208657600080fd5b505afa15801561209a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120be919061530b565b600290810b825260006020928301819052600b8054600181018255915283517f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db99183029182018054948601516001600160801b03199095166001600160801b03928316178216600160801b92909516919091029390931790925560408301517f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01dba90920180546060850151608086015160a087015160c0909701516001600160a01b03199093166001600160a01b039096169590951762ffffff60a01b1916600160a01b91850b62ffffff908116929092021762ffffff60b81b1916600160b81b95850b8216959095029490941762ffffff60d01b1916600160d01b9590930b93909316939093021760ff60e81b1916600160e81b91151591909102179055505050565b600080323314806122215750336000908152600c602052604090205460ff165b61223d5760405162461bcd60e51b81526004016107d690615b69565b611d39848433613720565b600181565b60065461010090046001600160a01b0316321461227c5760405162461bcd60e51b81526004016107d6906159ec565b60008060005b8581101561238d576000600b88888481811061229a57fe5b90506020020135815481106122ab57fe5b9060005260206000209060020201905080600101601d9054906101000a900460ff1615612384576040805160e08101825282546001600160801b038082168352600160801b90910416602082015260018301546001600160a01b03811692820192909252600160a01b8204600290810b810b810b6060830152600160b81b8304810b810b810b6080830152600160d01b8304810b810b900b60a0820152600160e81b90910460ff16151560c0820152600090819061236890613525565b60018701805460ff60e81b191690559801979690960195505050505b50600101612282565b5061239882826130c5565b831515806123a557508215155b156123c4576123c46123b56131e8565b6123bd61335a565b8686613a38565b505050505050565b6123d461296c565b6001600160a01b03166123e5611a22565b6001600160a01b03161461242e576040805162461bcd60e51b81526020600482018190526024820152600080516020615e59833981519152604482015290519081900360640190fd5b6001600160a01b0381166124735760405162461bcd60e51b8152600401808060200182810382526026815260200180615d7c6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60065461010090046001600160a01b031632146124fd5760405162461bcd60e51b81526004016107d6906159ec565b6001600160a01b03831660009081526007602052604090205460ff166125355760405162461bcd60e51b81526004016107d690615a87565b600b60008154811061254357fe5b9060005260206000209060020201600101601d9054906101000a900460ff161561257f5760405162461bcd60e51b81526004016107d690615965565b60008390506000816001600160a01b031663d0c93a7c6040518163ffffffff1660e01b815260040160206040518083038186803b1580156125bf57600080fd5b505afa1580156125d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125f7919061530b565b905061260484848361357d565b6040805160e081018252600080825260208201526001600160a01b03891691810191909152600283810b606083015282810b608083015284900b60a0820152600160c08201529195509350612658816135bd565b80600b60008154811061266757fe5b6000918252602091829020835160029283029091018054938501516001600160801b03199094166001600160801b03928316178216600160801b92909416919091029290921782556040830151600190920180546060850151608086015160a087015160c0909701516001600160a01b03199093166001600160a01b039096169590951762ffffff60a01b1916600160a01b91850b62ffffff908116929092021762ffffff60b81b1916600160b81b95850b8216959095029490941762ffffff60d01b1916600160d01b9590930b93909316939093021760ff60e81b1916600160e81b91151591909102179055505050505050565b600084138061276b5750600083135b6127875760405162461bcd60e51b81526004016107d690615aaf565b6008546001600160a01b031633146127b15760405162461bcd60e51b81526004016107d6906159a7565b600084131561285c5760405163a9059cbb60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063a9059cbb90612808903390889060040161578e565b602060405180830381600087803b15801561282257600080fd5b505af1158015612836573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061285a91906152ef565b505b6000831315611f815760405163a9059cbb60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063a9059cbb906128b3903390879060040161578e565b602060405180830381600087803b1580156128cd57600080fd5b505af11580156128e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061290591906152ef565b5050505050565b60065461010090046001600160a01b0316321461293b5760405162461bcd60e51b81526004016107d6906159ec565b600061294682613b0d565b6001600160a01b03166000908152600760205260409020805460ff191660011790555050565b3390565b6001600160a01b0383166129b55760405162461bcd60e51b8152600401808060200182810382526024815260200180615edf6024913960400191505060405180910390fd5b6001600160a01b0382166129fa5760405162461bcd60e51b8152600401808060200182810382526022815260200180615da26022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612aa15760405162461bcd60e51b8152600401808060200182810382526025815260200180615eba6025913960400191505060405180910390fd5b6001600160a01b038216612ae65760405162461bcd60e51b8152600401808060200182810382526023815260200180615d376023913960400191505060405180910390fd5b612af1838383610e4a565b612b2e81604051806060016040528060268152602001615dc4602691396001600160a01b0386166000908152600160205260409020549190612ba7565b6001600160a01b038085166000908152600160205260408082209390935590841681522054612b5d908261340f565b6001600160a01b038084166000818152600160209081526040918290209490945580518581529051919392871692600080516020615e7983398151915292918290030190a3505050565b60008184841115612c365760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612bfb578181015183820152602001612be3565b50505050905090810190601f168015612c285780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600080612c4c6106e3565b9050600081612c6657612c5f8787613beb565b9050612cf9565b600080612c7161390b565b5050915091506000821180612c865750600081115b612ca25760405162461bcd60e51b81526004016107d690615ba0565b612cac888361329a565b612cb68a8361329a565b1115612cdb57612cc7828983613c02565b9850612cd4888583613c02565b9250612cf6565b612ce6818a84613c02565b9750612cf3898584613c02565b92505b50505b969350505050565b600080600080866040015190506000816001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015612d4957600080fd5b505afa158015612d5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d8191906154d4565b505050505091505060008860c0015115612de757600060028a608001518b606001510160020b81612dae57fe5b0590508860020b83820360020b12612dcd576001965060019150612de1565b8860020b81840360020b12612de157600196505b50612dec565b600195505b8515612e5c57808015612e1457508860a0015160020b8260020b81612e0d57fe5b0760020b15155b15612e305760a0890151612e288382613cb1565b019150612e41565b612e3e828a60a00151613cb1565b91505b612e4f878a60a00151613cb1565b9650868203945086820193505b50505093509350939050565b6001600160a01b038216612ead5760405162461bcd60e51b8152600401808060200182810382526021815260200180615e996021913960400191505060405180910390fd5b612eb982600083610e4a565b612ef681604051806060016040528060228152602001615d5a602291396001600160a01b0385166000908152600160205260409020549190612ba7565b6001600160a01b038316600090815260016020526040902055600354612f1c9082613cfd565b6003556040805182815290516000916001600160a01b03851691600080516020615e798339815191529181900360200190a35050565b60008060008060005b600b548110156130bb576000600b8281548110612f7457fe5b60009182526020918290206040805160e081018252600293840290920180546001600160801b038082168552600160801b90910416948301949094526001909301546001600160a01b03811693820193909352600160a01b8304820b820b820b6060820152600160b81b8304820b820b820b6080820152600160d01b8304820b820b90910b60a0820152600160e81b90910460ff1615801560c08301529091506130b25760006130238261363c565b5050505090506000816001600160801b031611156130b05760006130548a6109776001600160801b0385168e61329a565b905060008060008061307061306886613d5a565b88908f613d71565b929650909450925090506130848c8561340f565b9b506130908b8461340f565b9a5061309c8a8361340f565b99506130a8898261340f565b985050505050505b505b50600101612f5b565b5093509350935093565b600854600160a01b900460ff16806130dd57506131e4565b60408051808201909152600a546001600160801b038082168352600160801b909104166020820152831561313c57600061311785846132f3565b905061312f826000015161312a83613d5a565b613db7565b6001600160801b03168252505b821561317157600061314e84846132f3565b9050613161826020015161312a83613d5a565b6001600160801b03166020830152505b8051600a805460208401516001600160801b03908116600160801b029381166001600160801b031990921691909117169190911790556040517f5393ab6ef9bb40d91d1b04bbbeb707fbf3d1eb73f46744e2d179e4996026283f906131d99086908690615c86565b60405180910390a150505b5050565b600a546040516370a0823160e01b81526000916001600160801b0316906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a082319061324490309060040161577a565b60206040518083038186803b15801561325c57600080fd5b505afa158015613270573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132949190615597565b03905090565b6000826132a9575060006106b9565b828202828482816132b657fe5b04146107845760405162461bcd60e51b8152600401808060200182810382526021815260200180615e106021913960400191505060405180910390fd5b6000808211613349576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161335257fe5b049392505050565b600a546040516370a0823160e01b8152600091600160801b90046001600160801b0316907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319061324490309060040161577a565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610e4a908490613de8565b600082820183811015610784576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fd5b6000836040015190506000816001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156134ab57600080fd5b505afa1580156134bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134e391906154d4565b50505050509150508260020b84820360020b12801561350957508260020b81850360020b125b6129055760405162461bcd60e51b81526004016107d690615af5565b60008060008060006135368661363c565b505050509050806001600160801b03166000141561356257600080600080945094509450945050613576565b61356c8682613602565b9450945094509450505b9193509193565b60008061358a8584613cb1565b91506135968484613cb1565b90508460020b8460020b13611a745760405162461bcd60e51b81526004016107d690615be2565b6000806135c983613e99565b915091506135e76135d86131e8565b6135e061335a565b8484613a38565b6129056135f26131e8565b6135fa61335a565b859190613f53565b600080600080613612868661401c565b909250905061362a86306001600160801b03806140bb565b90979096509187039450850392509050565b600080600080600080866040015190506000308860600151896080015160405160200161366b93929190615717565b60408051601f1981840301815290829052805160209091012063514ea4bf60e01b825291506001600160a01b0383169063514ea4bf906136af9084906004016158b5565b60a06040518083038186803b1580156136c757600080fd5b505afa1580156136db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136ff9190615473565b939c929b509099506001600160801b03908116985090911695509350505050565b600080841180156137315750600083115b61374d5760405162461bcd60e51b81526004016107d690615aaf565b60006137598585612c3e565b909650945090508061377d5760405162461bcd60e51b81526004016107d6906159ce565b84156137b8576137b86001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633308861416d565b83156137f3576137f36001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633308761416d565b6137fd83826141c7565b6000600b60008154811061380d57fe5b60009182526020918290206040805160e081018252600293840290920180546001600160801b038082168552600160801b90910416948301949094526001909301546001600160a01b03811693820193909352600160a01b8304820b820b820b6060820152600160b81b8304820b820b820b6080820152600160d01b8304820b820b90910b60a0820152600160e81b90910460ff1615801560c08301529091506138ba576138ba816135bd565b836001600160a01b03167f7162984403f6c73c8639375d45a9187dfd04602231bd8e587c415718b5f7e5f983600089896040516138fa9493929190615c6b565b60405180910390a250949350505050565b6000806000806139196131e8565b915061392361335a565b905081935080925060005b600b54811015613a31576000600b828154811061394757fe5b60009182526020918290206040805160e081018252600293840290920180546001600160801b038082168552600160801b90910416948301949094526001909301546001600160a01b03811693820193909352600160a01b8304820b820b820b6060820152600160b81b8304820b820b820b6080820152600160d01b8304820b820b90910b60a0820152600160e81b90910460ff1615801560c0830152909150613a28576008546000908190613a08908490600160a01b900460ff166142a7565b9092509050613a17888361340f565b9750613a23878261340f565b965050505b5060010161392e565b5090919293565b600080613a47868686866143f3565b909250905081156123c457600081613a735773fffd8963efd1fc6a506488495d951d5263988d25613a7a565b6401000276a45b600854604051630251596160e31b81529192506001600160a01b03169063128acb0890613ab19030908690889087906004016157cf565b6040805180830381600087803b158015613aca57600080fd5b505af1158015613ade573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b029190615327565b505050505050505050565b60007f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000084604051602001613b85939291906157a7565b60408051601f19818403018152908290528051602091820120613bcd939290917fe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b549101615747565b60408051601f19818403018152919052805160209091012092915050565b600081831015613bfb5781610784565b5090919050565b6000808060001985870986860292508281109083900303905080613c385760008411613c2d57600080fd5b508290049050610784565b808411613c4457600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b6000808260020b8460020b81613cc357fe5b05905060008460020b128015613cea57508260020b8460020b81613ce357fe5b0760020b15155b15613cf457600019015b90910292915050565b600082821115613d54576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006001600160801b03821115613d6d57fe5b5090565b600080600080613d81878761401c565b9094509250613d92878686866140bb565b5050613da787306001600160801b03806140bb565b9498939750955092935090915050565b60008282016001600160801b0380851690821610156107845760405162461bcd60e51b81526004016107d690615a08565b6000613e3d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166144e99092919063ffffffff16565b805190915015610e4a57808060200190516020811015613e5c57600080fd5b5051610e4a5760405162461bcd60e51b815260040180806020018281038252602a815260200180615f03602a913960400191505060405180910390fd5b600080600083604001516001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015613edb57600080fd5b505afa158015613eef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f1391906154d4565b5050505050509050613f4881613f2c8660600151614500565b613f398760800151614500565b68056bc75e2d63100000614828565b909590945092505050565b6000806000856040015190506000816001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015613f9a57600080fd5b505afa158015613fae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fd291906154d4565b5050505050509050600061400182613fed8a60600151614500565b613ffa8b60800151614500565b8a8a6148c4565b905061400d8882614988565b90999098509650505050505050565b60408083015160608401516080850151925163a34123a760e01b81526000938493926001600160a01b0384169263a34123a79261405e929189906004016158cc565b6040805180830381600087803b15801561407757600080fd5b505af115801561408b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140af9190615327565b90969095509350505050565b600080600086604001519050806001600160a01b0316634f1eb3d88789606001518a6080015189896040518663ffffffff1660e01b815260040161410395949392919061584b565b6040805180830381600087803b15801561411c57600080fd5b505af1158015614130573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141549190615445565b6001600160801b03918216999116975095505050505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611f81908590613de8565b6001600160a01b038216614222576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61422e60008383610e4a565b60035461423b908261340f565b6003556001600160a01b038216600090815260016020526040902054614261908261340f565b6001600160a01b0383166000818152600160209081526040808320949094558351858152935192939192600080516020615e798339815191529281900390910190a35050565b6040820151600090819081808080806142bf8a61363c565b945094509450945094506000866001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561430457600080fd5b505afa158015614318573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061433c91906154d4565b5050505050509050614368816143558d60600151614500565b6143628e60800151614500565b89614828565b909950975060008061437c8d8989896149ce565b90925090506143958561438f8d8561340f565b9061340f565b9a506143a58461438f8c8461340f565b995060ff8c16156143e3576143c76143c08360ff8f166132f3565b8c90613cfd565b9a506143e06143d98260ff8f166132f3565b8b90613cfd565b99505b5050505050505050509250929050565b6008546000908190819061440f906001600160a01b0316614a24565b905061441b868661329a565b614425888661329a565b10614492576000614436878761329a565b614440898761329a565b03905060006144588661438f858a600160601b613c02565b905061446482826132f3565b94506009546144788487600160601b613c02565b11614486576000945061448b565b600193505b50506144df565b600061449e888661329a565b6144a8888861329a565b03905060006144c08761438f88600160601b87613c02565b90506144cc82826132f3565b945060095485116144dc57600094505b50505b5094509492505050565b60606144f88484600085614ac1565b949350505050565b60008060008360020b12614517578260020b61451f565b8260020b6000035b9050620d89e881111561455d576040805162461bcd60e51b81526020600482015260016024820152601560fa1b604482015290519081900360640190fd5b60006001821661457157600160801b614583565b6ffffcb933bd6fad37aa2d162d1a5940015b6001600160881b0316905060028216156145ad576ffff97272373d413259a46990580e213a0260801c5b60048216156145cc576ffff2e50f5f656932ef12357cf3c7fdcc0260801c5b60088216156145eb576fffe5caca7e10e4e61c3624eaa0941cd00260801c5b601082161561460a576fffcb9843d60f6159c9db58835c9266440260801c5b6020821615614629576fff973b41fa98c081472e6896dfb254c00260801c5b6040821615614648576fff2ea16466c96a3843ec78b326b528610260801c5b6080821615614667576ffe5dee046a99a2a811c461f1969c30530260801c5b610100821615614687576ffcbe86c7900a88aedcffc83b479aa3a40260801c5b6102008216156146a7576ff987a7253ac413176f2b074cf7815e540260801c5b6104008216156146c7576ff3392b0822b70005940c7a398e4b70f30260801c5b6108008216156146e7576fe7159475a2c29b7443b29c7fa6e889d90260801c5b611000821615614707576fd097f3bdfd2022b8845ad8f792aa58250260801c5b612000821615614727576fa9f746462d870fdf8a65dc1f90e061e50260801c5b614000821615614747576f70d869a156d2a1b890bb3df62baf32f70260801c5b618000821615614767576f31be135f97d08fd981231505542fcfa60260801c5b62010000821615614788576f09aa508b5b7a84e1c677de54f3e99bc90260801c5b620200008216156147a8576e5d6af8dedb81196699c329225ee6040260801c5b620400008216156147c7576d2216e584f5fa1ea926041bedfe980260801c5b620800008216156147e4576b048a170391f7dc42444e8fa20260801c5b60008460020b13156147ff5780600019816147fb57fe5b0490505b640100000000810615614813576001614816565b60005b60ff16602082901c0192505050919050565b600080836001600160a01b0316856001600160a01b03161115614849579293925b846001600160a01b0316866001600160a01b0316116148745761486d858585614c1c565b91506148bb565b836001600160a01b0316866001600160a01b031610156148ad57614899868585614c1c565b91506148a6858785614c85565b90506148bb565b6148b8858585614c85565b90505b94509492505050565b6000836001600160a01b0316856001600160a01b031611156148e4579293925b846001600160a01b0316866001600160a01b03161161490f57614908858585614cc8565b905061497f565b836001600160a01b0316866001600160a01b03161015614971576000614936878686614cc8565b90506000614945878986614d2b565b9050806001600160801b0316826001600160801b0316106149665780614968565b815b9250505061497f565b61497c858584614d2b565b90505b95945050505050565b600080600084604001519050806001600160a01b0316633c8a7d8d3087606001518860800151886040518563ffffffff1660e01b815260040161405e9493929190615809565b6000806000806149dd88614d68565b915091506149fb868303886001600160801b0316600160801b613c02565b9350614a17858203886001600160801b0316600160801b613c02565b9250505094509492505050565b600080826001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015614a6057600080fd5b505afa158015614a74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614a9891906154d4565b5050505050509050610784816001600160a01b0316826001600160a01b0316600160601b613c02565b606082471015614b025760405162461bcd60e51b8152600401808060200182810382526026815260200180615dea6026913960400191505060405180910390fd5b614b0b85614df6565b614b5c576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b60208310614b9a5780518252601f199092019160209182019101614b7b565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614bfc576040519150601f19603f3d011682016040523d82523d6000602084013e614c01565b606091505b5091509150614c11828286614dfc565b979650505050505050565b6000826001600160a01b0316846001600160a01b03161115614c3c579192915b836001600160a01b0316614c75606060ff16846001600160801b0316901b8686036001600160a01b0316866001600160a01b0316613c02565b81614c7c57fe5b04949350505050565b6000826001600160a01b0316846001600160a01b03161115614ca5579192915b6144f8826001600160801b03168585036001600160a01b0316600160601b613c02565b6000826001600160a01b0316846001600160a01b03161115614ce8579192915b6000614d0b856001600160a01b0316856001600160a01b0316600160601b613c02565b905061497f614d2684838888036001600160a01b0316613c02565b614e62565b6000826001600160a01b0316846001600160a01b03161115614d4b579192915b6144f8614d2683600160601b8787036001600160a01b0316613c02565b60408101516000908190818080614d7e84614e78565b925092509250600080614d95868a60600151614fed565b91509150886060015160020b8560020b1215614db2579083039082035b600080614dc3888c60800151614fed565b915091508a6080015160020b8760020b12614ddf579085039084035b929094039390930396509190030392505050915091565b3b151590565b60608315614e0b575081610784565b825115614e1b5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315612bfb578181015183820152602001612be3565b806001600160801b038116811461141e57600080fd5b600080600080846001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015614eb757600080fd5b505afa158015614ecb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614eef91906154d4565b50505050509150506000856001600160a01b031663f30583996040518163ffffffff1660e01b815260040160206040518083038186803b158015614f3257600080fd5b505afa158015614f46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614f6a9190615597565b90506000866001600160a01b031663461413196040518163ffffffff1660e01b815260040160206040518083038186803b158015614fa757600080fd5b505afa158015614fbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614fdf9190615597565b929791965091945092505050565b600080836001600160a01b031663f30dba93846040518263ffffffff1660e01b815260040161501c91906158be565b6101006040518083038186803b15801561503557600080fd5b505afa158015615049573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061506d919061539b565b50939a92995091975050505050505050565b805161141e81615cf5565b60008083601f84011261509b578182fd5b50813567ffffffffffffffff8111156150b2578182fd5b602083019150836020828501011115610adc57600080fd5b805161ffff8116811461141e57600080fd5b803562ffffff8116811461141e57600080fd5b600060208284031215615100578081fd5b813561078481615ce0565b6000806040838503121561511d578081fd5b823561512881615ce0565b9150602083013561513881615ce0565b809150509250929050565b600080600060608486031215615157578081fd5b833561516281615ce0565b9250602084013561517281615ce0565b929592945050506040919091013590565b60008060408385031215615195578182fd5b82356151a081615ce0565b9150602083013561513881615cf5565b6000806000606084860312156151c4578283fd5b83356151cf81615ce0565b925060208401356151df81615d03565b915060408401356151ef81615d03565b809150509250925092565b6000806040838503121561520c578182fd5b823561521781615ce0565b946020939093013593505050565b6000806000806080858703121561523a578081fd5b843561524581615ce0565b9350602085013561525581615d27565b9250615263604086016150dc565b9396929550929360600135925050565b60008060008060608587031215615288578182fd5b843567ffffffffffffffff8082111561529f578384fd5b818701915087601f8301126152b2578384fd5b8135818111156152c0578485fd5b88602080830285010111156152d3578485fd5b6020928301999098509187013596604001359550909350505050565b600060208284031215615300578081fd5b815161078481615cf5565b60006020828403121561531c578081fd5b815161078481615d03565b60008060408385031215615339578182fd5b505080516020909101519092909150565b6000806000806060858703121561535f578182fd5b8435935060208501359250604085013567ffffffffffffffff811115615383578283fd5b61538f8782880161508a565b95989497509550505050565b600080600080600080600080610100898b0312156153b7578586fd5b88516153c281615d12565b80985050602089015180600f0b81146153d9578687fd5b80975050604089015195506060890151945060808901518060060b81146153fe578485fd5b60a08a015190945061540f81615ce0565b60c08a015190935063ffffffff81168114615428578283fd5b915061543660e08a0161507f565b90509295985092959890939650565b60008060408385031215615457578182fd5b825161546281615d12565b602084015190925061513881615d12565b600080600080600060a0868803121561548a578283fd5b855161549581615d12565b80955050602086015193506040860151925060608601516154b581615d12565b60808701519092506154c681615d12565b809150509295509295909350565b600080600080600080600060e0888a0312156154ee578081fd5b87516154f981615ce0565b602089015190975061550a81615d03565b9550615518604089016150ca565b9450615526606089016150ca565b9350615534608089016150ca565b925060a088015161554481615d27565b60c089015190925061555581615cf5565b8091505092959891949750929550565b600060208284031215615576578081fd5b610784826150dc565b600060208284031215615590578081fd5b5035919050565b6000602082840312156155a8578081fd5b5051919050565b600080600080600060a086880312156155c6578283fd5b8535945060208601356155d881615ce0565b935060408601356155e881615d03565b925060608601356155f881615d03565b915060808601356154c681615d03565b6000806000806080858703121561561d578182fd5b84359350602085013561562f81615d03565b9250604085013561563f81615d03565b9150606085013561564f81615d03565b939692955090935050565b60008060008060008060c08789031215615672578384fd5b86359550602087013561568481615d12565b945060408701359350606087013561569b81615d03565b925060808701356156ab81615d03565b915060a08701356156bb81615d03565b809150509295509295509295565b600080604083850312156156db578182fd5b50508035926020909101359150565b6000806000606084860312156156fe578081fd5b833592506020840135915060408401356151ef81615ce0565b60609390931b6001600160601b0319168352600291820b60e890811b6014850152910b901b6017820152601a0190565b6001600160f81b0319815260609390931b6001600160601b03191660018401526015830191909152603582015260550190565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b03938416815291909216602082015262ffffff909116604082015260600190565b6001600160a01b03948516815292151560208401526040830191909152909116606082015260a06080820181905260009082015260c00190565b6001600160a01b03949094168452600292830b6020850152910b60408301526001600160801b0316606082015260a06080820181905260009082015260c00190565b6001600160a01b03959095168552600293840b60208601529190920b60408401526001600160801b03918216606084015216608082015260a00190565b6001600160a01b039290921682526001600160801b0316602082015260400190565b901515815260200190565b90815260200190565b60029190910b815260200190565b600293840b81529190920b60208201526001600160801b03909116604082015260600190565b6000602080835283518082850152825b8181101561591e57858101830151858201604001528201615902565b8181111561592f5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526006908201526566726f6d502160d01b604082015260600190565b60208082526022908201527f706f736974696f6e3020697320776f726b696e672c2063616e6e6f7420696e69604082015261742160f01b606082015260800190565b6020808252600d908201526c77726f6e67206164647265737360981b604082015260600190565b6020808252600490820152637a65726f60e01b604082015260600190565b6020808252600290820152614f4d60f01b604082015260600190565b6020808252601b908201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604082015260600190565b60208082526014908201527343414e204e4f54204348414e474520504f4f4c2160601b604082015260600190565b6020808252600290820152615a4160f01b604082015260600190565b6020808252600e908201526d18591908141bdbdb08119a5c9cdd60921b604082015260600190565b6020808252600490820152635a65726f60e01b604082015260600190565b6020808252600e908201526d323050657263656e74204d41582160901b604082015260600190565b60208082526009908201526844494646205449434b60b81b604082015260600190565b6020808252600e908201526d185919081c1bdbdb08199a5c9cdd60921b604082015260600190565b6020808252600f908201526e41646420506f6f6c2046697273742160881b604082015260600190565b6020808252601b908201527f6f6e6c7920666f7220766572696669656420636f6e7472616374210000000000604082015260600190565b6020808252600390820152621818ad60e91b604082015260600190565b6020808252600b908201526a42616420706172616d732160a81b604082015260600190565b602080825260099082015268426164205469636b7360b81b604082015260600190565b6001600160801b0392831681529116602082015260400190565b6001600160801b0397881681529590961660208601526001600160a01b03939093166040850152600291820b6060850152810b60808401520b60a082015290151560c082015260e00190565b93845260208401929092526040830152606082015260800190565b918252602082015260400190565b9283526020830191909152604082015260600190565b958652602086019490945260408501929092526060840152608083015260a082015260c00190565b60ff91909116815260200190565b6001600160a01b0381168114610e4d57600080fd5b8015158114610e4d57600080fd5b8060020b8114610e4d57600080fd5b6001600160801b0381168114610e4d57600080fd5b60ff81168114610e4d57600080fdfe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122075e8ad9266fd323ed4aa8cec6b0aa5072009e6ea8800f7dc0f6a06bb57e7616d64736f6c634300070600330000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f984000000000000000000000000eb5c52e8af57334fab0b5f3d888990c108545527000000000000000000000000757d2334731460d2181b6c64914ab4acfc22f31a000000000000000000000000eb5c52e8af57334fab0b5f3d888990c108545527000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000012c
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061028a5760003560e01c8063947f4ba61161015c578063cf187d2f116100ce578063e323ba3f11610087578063e323ba3f146105a4578063eb5fe583146105ac578063f2fde38b146105bf578063f95949be146105d2578063fa461e33146105e5578063fd327141146105f85761028a565b8063cf187d2f1461053d578063d21220a714610550578063d348799714610558578063dd62ed3e1461056b578063ded3bbf71461057e578063e2bbb158146105915761028a565b8063aac1846f11610120578063aac1846f146104ca578063ac1d0609146104d2578063ba0cb22b146104e5578063c2c0ef9b146104f8578063c4a7761e1461050b578063c65b61ca146105255761028a565b8063947f4ba61461047657806395d89b4114610489578063a3fbbaae14610491578063a457c2d7146104a4578063a9059cbb146104b75761028a565b8063441a3e7011610200578063715018a6116101b9578063715018a614610407578063737106ac1461040f5780637955f60f146104225780638da5cb5b146104485780638dbdbe6d146104505780639270d81b146104635761028a565b8063441a3e70146103a05780634522f94d146103b357806350be99ad146103c6578063554d2a84146103ce578063594c2ba5146103e157806370a08231146103f45761028a565b806323b872dd1161025257806323b872dd1461030d57806329f5abcf146103205780632bac1b0e146103425780632e1a7d4d14610357578063313ce56714610378578063395093511461038d5761028a565b806306fdde031461028f578063095ea7b3146102ad5780630dfe1681146102cd57806318160ddd146102e25780631ad8b03b146102f7575b600080fd5b61029761060b565b6040516102a491906158f2565b60405180910390f35b6102c06102bb3660046151fa565b6106a1565b6040516102a491906158aa565b6102d56106bf565b6040516102a4919061577a565b6102ea6106e3565b6040516102a491906158b5565b6102ff6106e9565b6040516102a4929190615c05565b6102c061031b366004615143565b610703565b61033361032e3660046156c9565b61078b565b6040516102a493929190615c94565b610355610350366004615608565b6107a7565b005b61036a61036536600461557f565b6108eb565b6040516102a4929190615c86565b610380610a74565b6040516102a49190615cd2565b6102c061039b3660046151fa565b610a7d565b61036a6103ae3660046156c9565b610acb565b6103556103c1366004615608565b610ae3565b610355610d41565b6103556103dc3660046150ef565b610e50565b6103556103ef3660046155af565b6110b5565b6102ea6104023660046150ef565b611404565b610355611423565b61035561041d36600461565a565b6114cf565b61043561043036600461557f565b6119aa565b6040516102a49796959493929190615c1f565b6102d5611a22565b61036a61045e3660046156ea565b611a31565b61036a6104713660046156c9565b611a7c565b61036a6104843660046156c9565b611a88565b610297611aa6565b61035561049f3660046150ef565b611b07565b6102c06104b23660046151fa565b611bbb565b6102c06104c53660046151fa565b611c23565b6102d5611c37565b6103556104e0366004615183565b611c69565b61036a6104f33660046150ef565b611d2b565b61036a61050636600461557f565b611d44565b610513611d9d565b6040516102a496959493929190615caa565b61052d611dbe565b6040516102a49493929190615c6b565b61035561054b366004615225565b611dc9565b6102d5611eba565b61035561056636600461534a565b611ede565b6102ea61057936600461510b565b611f87565b61035561058c3660046150ef565b611fb2565b61036a61059f3660046156c9565b612201565b610380612248565b6103556105ba366004615273565b61224d565b6103556105cd3660046150ef565b6123cc565b6103556105e03660046151b0565b6124ce565b6103556105f336600461534a565b61275c565b610355610606366004615565565b61290c565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106975780601f1061066c57610100808354040283529160200191610697565b820191906000526020600020905b81548152906001019060200180831161067a57829003601f168201915b5050505050905090565b60006106b56106ae61296c565b8484612970565b5060015b92915050565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b60035490565b600a546001600160801b0380821691600160801b90041682565b6000610710848484612a5c565b6107808461071c61296c565b61077b85604051806060016040528060288152602001615e31602891396001600160a01b038a1660009081526002602052604081209061075a61296c565b6001600160a01b031681526020810191909152604001600020549190612ba7565b612970565b5060015b9392505050565b600080600061079a8585612c3e565b9250925092509250925092565b60065461010090046001600160a01b031632146107df5760405162461bcd60e51b81526004016107d6906159ec565b60405180910390fd5b60008260020b1380156107f5575060008360020b135b6108115760405162461bcd60e51b81526004016107d690615bbd565b6000600b858154811061082057fe5b600091825260208083206040805160e081018252600294850290920180546001600160801b038082168552600160801b90910416938301939093526001909201546001600160a01b03811692820192909252600160a01b8204830b830b830b6060820152600160b81b8204830b830b830b6080820152600160d01b8204830b830b90920b60a0830152600160e81b900460ff16151560c0820152915080806108c9848888612d01565b92509250925082156108e1576108e188838388610ae3565b5050505050505050565b60008060006108f933611404565b905080841115610907578093505b600084116109275760405162461bcd60e51b81526004016107d6906159ce565b60006109316106e3565b905061093d3386612e68565b60008061094b878433612f52565b9298509096509250905061095f82826130c5565b600061097d846109778a6109716131e8565b9061329a565b906132f3565b90506000610991856109778b61097161335a565b905081156109da576109cd6001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21633846133bd565b6109d7888361340f565b97505b8015610a2157610a146001600160a01b037f000000000000000000000000d5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e91633836133bd565b610a1e878261340f565b96505b336001600160a01b03167fe08737ac48a1dab4b1a46c7dc9398bd5bfc6d7ad6fabb7cd8caa254de14def358a60008b8b604051610a619493929190615c6b565b60405180910390a2505050505050915091565b60065460ff1690565b60006106b5610a8a61296c565b8461077b8560026000610a9b61296c565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061340f565b600080610ad7846108eb565b915091505b9250929050565b60065461010090046001600160a01b03163214610b125760405162461bcd60e51b81526004016107d6906159ec565b6000600b8581548110610b2157fe5b60009182526020918290206040805160e081018252600293840290920180546001600160801b038082168552600160801b90910416948301949094526001909301546001600160a01b03811693820193909352600160a01b8304820b820b820b6060820152600160b81b8304820b820b820b6080820152600160d01b8304820b820b90910b60a0820152600160e81b90910460ff16151560c0820152600854909150610bdc9082908490600160a81b900462ffffff16613467565b8060c0015115610c0557600080610bf283613525565b935093505050610c0282826130c5565b50505b610c1484848360a0015161357d565b600281810b810b608085015282810b900b6060840152600160c08401529094509250610c3f816135bd565b80600b8681548110610c4d57fe5b6000918252602091829020835160029283029091018054938501516001600160801b03199094166001600160801b03928316178216600160801b92909416919091029290921782556040830151600190920180546060850151608086015160a087015160c0909701516001600160a01b03199093166001600160a01b039096169590951762ffffff60a01b1916600160a01b91850b62ffffff908116929092021762ffffff60b81b1916600160b81b95850b8216959095029490941762ffffff60d01b1916600160d01b9590930b93909316939093021760ff60e81b1916600160e81b911515919091021790555050505050565b60065461010090046001600160a01b03163214610d705760405162461bcd60e51b81526004016107d6906159ec565b6000600b600081548110610d8057fe5b60009182526020918290206040805160e081018252600293840290920180546001600160801b038082168552600160801b90910416948301949094526001909301546001600160a01b03811693820193909352600160a01b8304820b820b820b6060820152600160b81b8304820b820b820b6080820152600160d01b8304820b820b90910b60a0820152600160e81b90910460ff1615801560c0830152909150610e4d57600080610e318382613602565b935093505050610e4182826130c5565b610e4a836135bd565b50505b50565b610e5861296c565b6001600160a01b0316610e69611a22565b6001600160a01b031614610eb2576040805162461bcd60e51b81526020600482018190526024820152600080516020615e59833981519152604482015290519081900360640190fd5b6001600160a01b038116610ed85760405162461bcd60e51b81526004016107d690615a6b565b60408051808201909152600a546001600160801b03808216808452600160801b90920416602083015260011015610fb657805160405163a9059cbb60e01b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2169163a9059cbb91610f5e91869160001990910190600401615888565b602060405180830381600087803b158015610f7857600080fd5b505af1158015610f8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fb091906152ef565b50600181525b600181602001516001600160801b0316111561107c577f000000000000000000000000d5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e96001600160a01b031663a9059cbb8360018460200151036040518363ffffffff1660e01b8152600401611021929190615888565b602060405180830381600087803b15801561103b57600080fd5b505af115801561104f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107391906152ef565b50600160208201525b8051600a80546020909301516001600160801b03908116600160801b029281166001600160801b03199094169390931790921617905550565b60065461010090046001600160a01b031632146110e45760405162461bcd60e51b81526004016107d6906159ec565b6001600160a01b03841660009081526007602052604090205460ff1661111c5760405162461bcd60e51b81526004016107d690615b40565b6000600b868154811061112b57fe5b60009182526020918290206040805160e081018252600293840290920180546001600160801b038082168552600160801b90910416948301949094526001909301546001600160a01b03811693820193909352600160a01b8304820b820b820b6060820152600160b81b8304820b820b820b6080820152600160d01b8304820b820b90910b60a0820152600160e81b90910460ff1615801560c083018190529192506111ed5750846001600160a01b031681604001516001600160a01b031614155b6112095760405162461bcd60e51b81526004016107d690615a3d565b6008546112259082908490600160a81b900462ffffff16613467565b60008061123183613525565b93509350505061124182826130c5565b6000876001600160a01b031663d0c93a7c6040518163ffffffff1660e01b815260040160206040518083038186803b15801561127c57600080fd5b505afa158015611290573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b4919061530b565b90506112c187878361357d565b6001600160a01b038a166040870152600283810b810b60a088015281810b810b608088015282810b900b606087015290975095506112fe846135bd565b83600b8a8154811061130c57fe5b6000918252602091829020835160029283029091018054938501516001600160801b03199094166001600160801b03928316178216600160801b92909416919091029290921782556040830151600190920180546060850151608086015160a087015160c0909701516001600160a01b03199093166001600160a01b039096169590951762ffffff60a01b1916600160a01b91850b62ffffff908116929092021762ffffff60b81b1916600160b81b95850b8216959095029490941762ffffff60d01b1916600160d01b9590930b93909316939093021760ff60e81b1916600160e81b91151591909102179055505050505050505050565b6001600160a01b0381166000908152600160205260409020545b919050565b61142b61296c565b6001600160a01b031661143c611a22565b6001600160a01b031614611485576040805162461bcd60e51b81526020600482018190526024820152600080516020615e59833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60065461010090046001600160a01b031632146114fe5760405162461bcd60e51b81526004016107d6906159ec565b6000600b878154811061150d57fe5b60009182526020918290206040805160e081018252600293840290920180546001600160801b038082168552600160801b90910416948301949094526001909301546001600160a01b03811693820193909352600160a01b8304820b820b820b6060820152600160b81b8304820b820b820b6080820152600160d01b8304820b820b90910b60a0820152600160e81b90910460ff1615801560c083018190529192506115c257506000866001600160801b0316115b6115de5760405162461bcd60e51b81526004016107d690615945565b60008060006115ec8461363c565b505050509050806001600160801b0316896001600160801b0316106117315761161484613525565b90955093506116279150849050836130c5565b600060c0850152600b80548591908c90811061163f57fe5b6000918252602091829020835160029283029091018054938501516001600160801b03199094166001600160801b03928316178216600160801b92909416919091029290921782556040830151600190920180546060850151608086015160a087015160c0909701516001600160a01b03199093166001600160a01b039096169590951762ffffff60a01b1916600160a01b91850b62ffffff908116929092021762ffffff60b81b1916600160b81b95850b8216959095029490941762ffffff60d01b1916600160d01b9590930b93909316939093021760ff60e81b1916600160e81b9115159190910217905561174e565b61173b848a613602565b909550935061174e9150849050836130c5565b6000600b898154811061175d57fe5b60009182526020918290206040805160e081018252600293840290920180546001600160801b038082168552600160801b90910416948301949094526001909301546001600160a01b03811693820193909352600160a01b8304820b820b820b6060820152600160b81b8304820b820b820b6080820152600160d01b8304820b820b90910b60a0820152600160e81b90910460ff16151560c08201526008549091506118189082908890600160a81b900462ffffff16613467565b61182788888360a0015161357d565b60608301519199509750600289810b91900b1415806118505750806080015160020b8760020b14155b15611892578060c001511561187b5761186881613525565b909650945061187b9150859050846130c5565b600288810b810b606083015287810b900b60808201525b600160c08201526118a2816135bd565b80600b8a815481106118b057fe5b6000918252602091829020835160029283029091018054938501516001600160801b03199094166001600160801b03928316178216600160801b92909416919091029290921782556040830151600190920180546060850151608086015160a087015160c0909701516001600160a01b03199093166001600160a01b039096169590951762ffffff60a01b1916600160a01b91850b62ffffff908116929092021762ffffff60b81b1916600160b81b95850b8216959095029490941762ffffff60d01b1916600160d01b9590930b93909316939093021760ff60e81b1916600160e81b911515919091021790555050505050505050505050565b600b81815481106119ba57600080fd5b6000918252602090912060029182020180546001909101546001600160801b038083169450600160801b909204909116916001600160a01b03821691600160a01b8104820b91600160b81b8204810b91600160d01b810490910b90600160e81b900460ff1687565b6000546001600160a01b031690565b336000908152600c6020526040812054819060ff16611a625760405162461bcd60e51b81526004016107d690615b69565b611a6d858585613720565b6000915091505b935093915050565b600080610ad784611d44565b6000806000611a978585612c3e565b50909660009650945050505050565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106975780601f1061066c57610100808354040283529160200191610697565b611b0f61296c565b6001600160a01b0316611b20611a22565b6001600160a01b031614611b69576040805162461bcd60e51b81526020600482018190526024820152600080516020615e59833981519152604482015290519081900360640190fd5b60068054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517f0afcbf7c3742ee20488a08c0da12ca29b2e8bdd022bef6129efbf4e00f84a63090600090a250565b60006106b5611bc861296c565b8461077b85604051806060016040528060258152602001615f2d6025913960026000611bf261296c565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612ba7565b60006106b5611c3061296c565b8484612a5c565b6000600b600081548110611c4757fe5b60009182526020909120600160029092020101546001600160a01b0316905090565b611c7161296c565b6001600160a01b0316611c82611a22565b6001600160a01b031614611ccb576040805162461bcd60e51b81526020600482018190526024820152600080516020615e59833981519152604482015290519081900360640190fd5b6001600160a01b0382166000818152600c602052604090819020805460ff1916841515179055517fc551bbb22d0406dbfb8b6b7740cc521bcf44e1106029cf899c19b6a8e4c99d5190611d1f9084906158aa565b60405180910390a25050565b6000806000611d3984611404565b946000945092505050565b6000806000611d516106e3565b90508315801590611d6157508015155b15611d9757611d6e61390b565b509194509250611d84905081610977858761329a565b9250611d9481610977848761329a565b91505b50915091565b600080600080600080611dae61390b565b9299919850965090945091925090565b600019808080919293565b60065461010090046001600160a01b03163214611df85760405162461bcd60e51b81526004016107d6906159ec565b60ff83161580611e0b575060048360ff16115b611e275760405162461bcd60e51b81526004016107d690615acd565b6001600160a01b03841615801590611e5757506001600160a01b03841660009081526007602052604090205460ff165b15611e7857600880546001600160a01b0319166001600160a01b0386161790555b6008805462ffffff909316600160a81b0262ffffff60a81b1960ff909516600160a01b0260ff60a01b1990941693909317939093169190911790915560095550565b7f000000000000000000000000d5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e981565b3360009081526007602052604090205460ff16611f0d5760405162461bcd60e51b81526004016107d6906159a7565b8315611f4757611f476001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21633866133bd565b8215611f8157611f816001600160a01b037f000000000000000000000000d5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e91633856133bd565b50505050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60065461010090046001600160a01b03163214611fe15760405162461bcd60e51b81526004016107d6906159ec565b6001600160a01b03811660009081526007602052604090205460ff166120195760405162461bcd60e51b81526004016107d690615b18565b6040805160e081018252600080825260208083018290526001600160a01b038516838501819052606084018390526080840183905284516334324e9f60e21b81529451869593949360a085019363d0c93a7c92600480840193829003018186803b15801561208657600080fd5b505afa15801561209a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120be919061530b565b600290810b825260006020928301819052600b8054600181018255915283517f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db99183029182018054948601516001600160801b03199095166001600160801b03928316178216600160801b92909516919091029390931790925560408301517f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01dba90920180546060850151608086015160a087015160c0909701516001600160a01b03199093166001600160a01b039096169590951762ffffff60a01b1916600160a01b91850b62ffffff908116929092021762ffffff60b81b1916600160b81b95850b8216959095029490941762ffffff60d01b1916600160d01b9590930b93909316939093021760ff60e81b1916600160e81b91151591909102179055505050565b600080323314806122215750336000908152600c602052604090205460ff165b61223d5760405162461bcd60e51b81526004016107d690615b69565b611d39848433613720565b600181565b60065461010090046001600160a01b0316321461227c5760405162461bcd60e51b81526004016107d6906159ec565b60008060005b8581101561238d576000600b88888481811061229a57fe5b90506020020135815481106122ab57fe5b9060005260206000209060020201905080600101601d9054906101000a900460ff1615612384576040805160e08101825282546001600160801b038082168352600160801b90910416602082015260018301546001600160a01b03811692820192909252600160a01b8204600290810b810b810b6060830152600160b81b8304810b810b810b6080830152600160d01b8304810b810b900b60a0820152600160e81b90910460ff16151560c0820152600090819061236890613525565b60018701805460ff60e81b191690559801979690960195505050505b50600101612282565b5061239882826130c5565b831515806123a557508215155b156123c4576123c46123b56131e8565b6123bd61335a565b8686613a38565b505050505050565b6123d461296c565b6001600160a01b03166123e5611a22565b6001600160a01b03161461242e576040805162461bcd60e51b81526020600482018190526024820152600080516020615e59833981519152604482015290519081900360640190fd5b6001600160a01b0381166124735760405162461bcd60e51b8152600401808060200182810382526026815260200180615d7c6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60065461010090046001600160a01b031632146124fd5760405162461bcd60e51b81526004016107d6906159ec565b6001600160a01b03831660009081526007602052604090205460ff166125355760405162461bcd60e51b81526004016107d690615a87565b600b60008154811061254357fe5b9060005260206000209060020201600101601d9054906101000a900460ff161561257f5760405162461bcd60e51b81526004016107d690615965565b60008390506000816001600160a01b031663d0c93a7c6040518163ffffffff1660e01b815260040160206040518083038186803b1580156125bf57600080fd5b505afa1580156125d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125f7919061530b565b905061260484848361357d565b6040805160e081018252600080825260208201526001600160a01b03891691810191909152600283810b606083015282810b608083015284900b60a0820152600160c08201529195509350612658816135bd565b80600b60008154811061266757fe5b6000918252602091829020835160029283029091018054938501516001600160801b03199094166001600160801b03928316178216600160801b92909416919091029290921782556040830151600190920180546060850151608086015160a087015160c0909701516001600160a01b03199093166001600160a01b039096169590951762ffffff60a01b1916600160a01b91850b62ffffff908116929092021762ffffff60b81b1916600160b81b95850b8216959095029490941762ffffff60d01b1916600160d01b9590930b93909316939093021760ff60e81b1916600160e81b91151591909102179055505050505050565b600084138061276b5750600083135b6127875760405162461bcd60e51b81526004016107d690615aaf565b6008546001600160a01b031633146127b15760405162461bcd60e51b81526004016107d6906159a7565b600084131561285c5760405163a9059cbb60e01b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2169063a9059cbb90612808903390889060040161578e565b602060405180830381600087803b15801561282257600080fd5b505af1158015612836573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061285a91906152ef565b505b6000831315611f815760405163a9059cbb60e01b81526001600160a01b037f000000000000000000000000d5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e9169063a9059cbb906128b3903390879060040161578e565b602060405180830381600087803b1580156128cd57600080fd5b505af11580156128e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061290591906152ef565b5050505050565b60065461010090046001600160a01b0316321461293b5760405162461bcd60e51b81526004016107d6906159ec565b600061294682613b0d565b6001600160a01b03166000908152600760205260409020805460ff191660011790555050565b3390565b6001600160a01b0383166129b55760405162461bcd60e51b8152600401808060200182810382526024815260200180615edf6024913960400191505060405180910390fd5b6001600160a01b0382166129fa5760405162461bcd60e51b8152600401808060200182810382526022815260200180615da26022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612aa15760405162461bcd60e51b8152600401808060200182810382526025815260200180615eba6025913960400191505060405180910390fd5b6001600160a01b038216612ae65760405162461bcd60e51b8152600401808060200182810382526023815260200180615d376023913960400191505060405180910390fd5b612af1838383610e4a565b612b2e81604051806060016040528060268152602001615dc4602691396001600160a01b0386166000908152600160205260409020549190612ba7565b6001600160a01b038085166000908152600160205260408082209390935590841681522054612b5d908261340f565b6001600160a01b038084166000818152600160209081526040918290209490945580518581529051919392871692600080516020615e7983398151915292918290030190a3505050565b60008184841115612c365760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612bfb578181015183820152602001612be3565b50505050905090810190601f168015612c285780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080600080612c4c6106e3565b9050600081612c6657612c5f8787613beb565b9050612cf9565b600080612c7161390b565b5050915091506000821180612c865750600081115b612ca25760405162461bcd60e51b81526004016107d690615ba0565b612cac888361329a565b612cb68a8361329a565b1115612cdb57612cc7828983613c02565b9850612cd4888583613c02565b9250612cf6565b612ce6818a84613c02565b9750612cf3898584613c02565b92505b50505b969350505050565b600080600080866040015190506000816001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015612d4957600080fd5b505afa158015612d5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d8191906154d4565b505050505091505060008860c0015115612de757600060028a608001518b606001510160020b81612dae57fe5b0590508860020b83820360020b12612dcd576001965060019150612de1565b8860020b81840360020b12612de157600196505b50612dec565b600195505b8515612e5c57808015612e1457508860a0015160020b8260020b81612e0d57fe5b0760020b15155b15612e305760a0890151612e288382613cb1565b019150612e41565b612e3e828a60a00151613cb1565b91505b612e4f878a60a00151613cb1565b9650868203945086820193505b50505093509350939050565b6001600160a01b038216612ead5760405162461bcd60e51b8152600401808060200182810382526021815260200180615e996021913960400191505060405180910390fd5b612eb982600083610e4a565b612ef681604051806060016040528060228152602001615d5a602291396001600160a01b0385166000908152600160205260409020549190612ba7565b6001600160a01b038316600090815260016020526040902055600354612f1c9082613cfd565b6003556040805182815290516000916001600160a01b03851691600080516020615e798339815191529181900360200190a35050565b60008060008060005b600b548110156130bb576000600b8281548110612f7457fe5b60009182526020918290206040805160e081018252600293840290920180546001600160801b038082168552600160801b90910416948301949094526001909301546001600160a01b03811693820193909352600160a01b8304820b820b820b6060820152600160b81b8304820b820b820b6080820152600160d01b8304820b820b90910b60a0820152600160e81b90910460ff1615801560c08301529091506130b25760006130238261363c565b5050505090506000816001600160801b031611156130b05760006130548a6109776001600160801b0385168e61329a565b905060008060008061307061306886613d5a565b88908f613d71565b929650909450925090506130848c8561340f565b9b506130908b8461340f565b9a5061309c8a8361340f565b99506130a8898261340f565b985050505050505b505b50600101612f5b565b5093509350935093565b600854600160a01b900460ff16806130dd57506131e4565b60408051808201909152600a546001600160801b038082168352600160801b909104166020820152831561313c57600061311785846132f3565b905061312f826000015161312a83613d5a565b613db7565b6001600160801b03168252505b821561317157600061314e84846132f3565b9050613161826020015161312a83613d5a565b6001600160801b03166020830152505b8051600a805460208401516001600160801b03908116600160801b029381166001600160801b031990921691909117169190911790556040517f5393ab6ef9bb40d91d1b04bbbeb707fbf3d1eb73f46744e2d179e4996026283f906131d99086908690615c86565b60405180910390a150505b5050565b600a546040516370a0823160e01b81526000916001600160801b0316906001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc216906370a082319061324490309060040161577a565b60206040518083038186803b15801561325c57600080fd5b505afa158015613270573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132949190615597565b03905090565b6000826132a9575060006106b9565b828202828482816132b657fe5b04146107845760405162461bcd60e51b8152600401808060200182810382526021815260200180615e106021913960400191505060405180910390fd5b6000808211613349576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838161335257fe5b049392505050565b600a546040516370a0823160e01b8152600091600160801b90046001600160801b0316907f000000000000000000000000d5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e96001600160a01b0316906370a082319061324490309060040161577a565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610e4a908490613de8565b600082820183811015610784576040805162461bcd60e51b815260206004820152601b60248201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604482015290519081900360640190fd5b6000836040015190506000816001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156134ab57600080fd5b505afa1580156134bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134e391906154d4565b50505050509150508260020b84820360020b12801561350957508260020b81850360020b125b6129055760405162461bcd60e51b81526004016107d690615af5565b60008060008060006135368661363c565b505050509050806001600160801b03166000141561356257600080600080945094509450945050613576565b61356c8682613602565b9450945094509450505b9193509193565b60008061358a8584613cb1565b91506135968484613cb1565b90508460020b8460020b13611a745760405162461bcd60e51b81526004016107d690615be2565b6000806135c983613e99565b915091506135e76135d86131e8565b6135e061335a565b8484613a38565b6129056135f26131e8565b6135fa61335a565b859190613f53565b600080600080613612868661401c565b909250905061362a86306001600160801b03806140bb565b90979096509187039450850392509050565b600080600080600080866040015190506000308860600151896080015160405160200161366b93929190615717565b60408051601f1981840301815290829052805160209091012063514ea4bf60e01b825291506001600160a01b0383169063514ea4bf906136af9084906004016158b5565b60a06040518083038186803b1580156136c757600080fd5b505afa1580156136db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136ff9190615473565b939c929b509099506001600160801b03908116985090911695509350505050565b600080841180156137315750600083115b61374d5760405162461bcd60e51b81526004016107d690615aaf565b60006137598585612c3e565b909650945090508061377d5760405162461bcd60e51b81526004016107d6906159ce565b84156137b8576137b86001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21633308861416d565b83156137f3576137f36001600160a01b037f000000000000000000000000d5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e91633308761416d565b6137fd83826141c7565b6000600b60008154811061380d57fe5b60009182526020918290206040805160e081018252600293840290920180546001600160801b038082168552600160801b90910416948301949094526001909301546001600160a01b03811693820193909352600160a01b8304820b820b820b6060820152600160b81b8304820b820b820b6080820152600160d01b8304820b820b90910b60a0820152600160e81b90910460ff1615801560c08301529091506138ba576138ba816135bd565b836001600160a01b03167f7162984403f6c73c8639375d45a9187dfd04602231bd8e587c415718b5f7e5f983600089896040516138fa9493929190615c6b565b60405180910390a250949350505050565b6000806000806139196131e8565b915061392361335a565b905081935080925060005b600b54811015613a31576000600b828154811061394757fe5b60009182526020918290206040805160e081018252600293840290920180546001600160801b038082168552600160801b90910416948301949094526001909301546001600160a01b03811693820193909352600160a01b8304820b820b820b6060820152600160b81b8304820b820b820b6080820152600160d01b8304820b820b90910b60a0820152600160e81b90910460ff1615801560c0830152909150613a28576008546000908190613a08908490600160a01b900460ff166142a7565b9092509050613a17888361340f565b9750613a23878261340f565b965050505b5060010161392e565b5090919293565b600080613a47868686866143f3565b909250905081156123c457600081613a735773fffd8963efd1fc6a506488495d951d5263988d25613a7a565b6401000276a45b600854604051630251596160e31b81529192506001600160a01b03169063128acb0890613ab19030908690889087906004016157cf565b6040805180830381600087803b158015613aca57600080fd5b505af1158015613ade573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b029190615327565b505050505050505050565b60007f0000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f9847f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc27f000000000000000000000000d5d86fc8d5c0ea1ac1ac5dfab6e529c9967a45e984604051602001613b85939291906157a7565b60408051601f19818403018152908290528051602091820120613bcd939290917fe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b549101615747565b60408051601f19818403018152919052805160209091012092915050565b600081831015613bfb5781610784565b5090919050565b6000808060001985870986860292508281109083900303905080613c385760008411613c2d57600080fd5b508290049050610784565b808411613c4457600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b6000808260020b8460020b81613cc357fe5b05905060008460020b128015613cea57508260020b8460020b81613ce357fe5b0760020b15155b15613cf457600019015b90910292915050565b600082821115613d54576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006001600160801b03821115613d6d57fe5b5090565b600080600080613d81878761401c565b9094509250613d92878686866140bb565b5050613da787306001600160801b03806140bb565b9498939750955092935090915050565b60008282016001600160801b0380851690821610156107845760405162461bcd60e51b81526004016107d690615a08565b6000613e3d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166144e99092919063ffffffff16565b805190915015610e4a57808060200190516020811015613e5c57600080fd5b5051610e4a5760405162461bcd60e51b815260040180806020018281038252602a815260200180615f03602a913960400191505060405180910390fd5b600080600083604001516001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015613edb57600080fd5b505afa158015613eef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f1391906154d4565b5050505050509050613f4881613f2c8660600151614500565b613f398760800151614500565b68056bc75e2d63100000614828565b909590945092505050565b6000806000856040015190506000816001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015613f9a57600080fd5b505afa158015613fae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613fd291906154d4565b5050505050509050600061400182613fed8a60600151614500565b613ffa8b60800151614500565b8a8a6148c4565b905061400d8882614988565b90999098509650505050505050565b60408083015160608401516080850151925163a34123a760e01b81526000938493926001600160a01b0384169263a34123a79261405e929189906004016158cc565b6040805180830381600087803b15801561407757600080fd5b505af115801561408b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140af9190615327565b90969095509350505050565b600080600086604001519050806001600160a01b0316634f1eb3d88789606001518a6080015189896040518663ffffffff1660e01b815260040161410395949392919061584b565b6040805180830381600087803b15801561411c57600080fd5b505af1158015614130573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141549190615445565b6001600160801b03918216999116975095505050505050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611f81908590613de8565b6001600160a01b038216614222576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61422e60008383610e4a565b60035461423b908261340f565b6003556001600160a01b038216600090815260016020526040902054614261908261340f565b6001600160a01b0383166000818152600160209081526040808320949094558351858152935192939192600080516020615e798339815191529281900390910190a35050565b6040820151600090819081808080806142bf8a61363c565b945094509450945094506000866001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561430457600080fd5b505afa158015614318573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061433c91906154d4565b5050505050509050614368816143558d60600151614500565b6143628e60800151614500565b89614828565b909950975060008061437c8d8989896149ce565b90925090506143958561438f8d8561340f565b9061340f565b9a506143a58461438f8c8461340f565b995060ff8c16156143e3576143c76143c08360ff8f166132f3565b8c90613cfd565b9a506143e06143d98260ff8f166132f3565b8b90613cfd565b99505b5050505050505050509250929050565b6008546000908190819061440f906001600160a01b0316614a24565b905061441b868661329a565b614425888661329a565b10614492576000614436878761329a565b614440898761329a565b03905060006144588661438f858a600160601b613c02565b905061446482826132f3565b94506009546144788487600160601b613c02565b11614486576000945061448b565b600193505b50506144df565b600061449e888661329a565b6144a8888861329a565b03905060006144c08761438f88600160601b87613c02565b90506144cc82826132f3565b945060095485116144dc57600094505b50505b5094509492505050565b60606144f88484600085614ac1565b949350505050565b60008060008360020b12614517578260020b61451f565b8260020b6000035b9050620d89e881111561455d576040805162461bcd60e51b81526020600482015260016024820152601560fa1b604482015290519081900360640190fd5b60006001821661457157600160801b614583565b6ffffcb933bd6fad37aa2d162d1a5940015b6001600160881b0316905060028216156145ad576ffff97272373d413259a46990580e213a0260801c5b60048216156145cc576ffff2e50f5f656932ef12357cf3c7fdcc0260801c5b60088216156145eb576fffe5caca7e10e4e61c3624eaa0941cd00260801c5b601082161561460a576fffcb9843d60f6159c9db58835c9266440260801c5b6020821615614629576fff973b41fa98c081472e6896dfb254c00260801c5b6040821615614648576fff2ea16466c96a3843ec78b326b528610260801c5b6080821615614667576ffe5dee046a99a2a811c461f1969c30530260801c5b610100821615614687576ffcbe86c7900a88aedcffc83b479aa3a40260801c5b6102008216156146a7576ff987a7253ac413176f2b074cf7815e540260801c5b6104008216156146c7576ff3392b0822b70005940c7a398e4b70f30260801c5b6108008216156146e7576fe7159475a2c29b7443b29c7fa6e889d90260801c5b611000821615614707576fd097f3bdfd2022b8845ad8f792aa58250260801c5b612000821615614727576fa9f746462d870fdf8a65dc1f90e061e50260801c5b614000821615614747576f70d869a156d2a1b890bb3df62baf32f70260801c5b618000821615614767576f31be135f97d08fd981231505542fcfa60260801c5b62010000821615614788576f09aa508b5b7a84e1c677de54f3e99bc90260801c5b620200008216156147a8576e5d6af8dedb81196699c329225ee6040260801c5b620400008216156147c7576d2216e584f5fa1ea926041bedfe980260801c5b620800008216156147e4576b048a170391f7dc42444e8fa20260801c5b60008460020b13156147ff5780600019816147fb57fe5b0490505b640100000000810615614813576001614816565b60005b60ff16602082901c0192505050919050565b600080836001600160a01b0316856001600160a01b03161115614849579293925b846001600160a01b0316866001600160a01b0316116148745761486d858585614c1c565b91506148bb565b836001600160a01b0316866001600160a01b031610156148ad57614899868585614c1c565b91506148a6858785614c85565b90506148bb565b6148b8858585614c85565b90505b94509492505050565b6000836001600160a01b0316856001600160a01b031611156148e4579293925b846001600160a01b0316866001600160a01b03161161490f57614908858585614cc8565b905061497f565b836001600160a01b0316866001600160a01b03161015614971576000614936878686614cc8565b90506000614945878986614d2b565b9050806001600160801b0316826001600160801b0316106149665780614968565b815b9250505061497f565b61497c858584614d2b565b90505b95945050505050565b600080600084604001519050806001600160a01b0316633c8a7d8d3087606001518860800151886040518563ffffffff1660e01b815260040161405e9493929190615809565b6000806000806149dd88614d68565b915091506149fb868303886001600160801b0316600160801b613c02565b9350614a17858203886001600160801b0316600160801b613c02565b9250505094509492505050565b600080826001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015614a6057600080fd5b505afa158015614a74573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614a9891906154d4565b5050505050509050610784816001600160a01b0316826001600160a01b0316600160601b613c02565b606082471015614b025760405162461bcd60e51b8152600401808060200182810382526026815260200180615dea6026913960400191505060405180910390fd5b614b0b85614df6565b614b5c576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b60208310614b9a5780518252601f199092019160209182019101614b7b565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614bfc576040519150601f19603f3d011682016040523d82523d6000602084013e614c01565b606091505b5091509150614c11828286614dfc565b979650505050505050565b6000826001600160a01b0316846001600160a01b03161115614c3c579192915b836001600160a01b0316614c75606060ff16846001600160801b0316901b8686036001600160a01b0316866001600160a01b0316613c02565b81614c7c57fe5b04949350505050565b6000826001600160a01b0316846001600160a01b03161115614ca5579192915b6144f8826001600160801b03168585036001600160a01b0316600160601b613c02565b6000826001600160a01b0316846001600160a01b03161115614ce8579192915b6000614d0b856001600160a01b0316856001600160a01b0316600160601b613c02565b905061497f614d2684838888036001600160a01b0316613c02565b614e62565b6000826001600160a01b0316846001600160a01b03161115614d4b579192915b6144f8614d2683600160601b8787036001600160a01b0316613c02565b60408101516000908190818080614d7e84614e78565b925092509250600080614d95868a60600151614fed565b91509150886060015160020b8560020b1215614db2579083039082035b600080614dc3888c60800151614fed565b915091508a6080015160020b8760020b12614ddf579085039084035b929094039390930396509190030392505050915091565b3b151590565b60608315614e0b575081610784565b825115614e1b5782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315612bfb578181015183820152602001612be3565b806001600160801b038116811461141e57600080fd5b600080600080846001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015614eb757600080fd5b505afa158015614ecb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614eef91906154d4565b50505050509150506000856001600160a01b031663f30583996040518163ffffffff1660e01b815260040160206040518083038186803b158015614f3257600080fd5b505afa158015614f46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614f6a9190615597565b90506000866001600160a01b031663461413196040518163ffffffff1660e01b815260040160206040518083038186803b158015614fa757600080fd5b505afa158015614fbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190614fdf9190615597565b929791965091945092505050565b600080836001600160a01b031663f30dba93846040518263ffffffff1660e01b815260040161501c91906158be565b6101006040518083038186803b15801561503557600080fd5b505afa158015615049573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061506d919061539b565b50939a92995091975050505050505050565b805161141e81615cf5565b60008083601f84011261509b578182fd5b50813567ffffffffffffffff8111156150b2578182fd5b602083019150836020828501011115610adc57600080fd5b805161ffff8116811461141e57600080fd5b803562ffffff8116811461141e57600080fd5b600060208284031215615100578081fd5b813561078481615ce0565b6000806040838503121561511d578081fd5b823561512881615ce0565b9150602083013561513881615ce0565b809150509250929050565b600080600060608486031215615157578081fd5b833561516281615ce0565b9250602084013561517281615ce0565b929592945050506040919091013590565b60008060408385031215615195578182fd5b82356151a081615ce0565b9150602083013561513881615cf5565b6000806000606084860312156151c4578283fd5b83356151cf81615ce0565b925060208401356151df81615d03565b915060408401356151ef81615d03565b809150509250925092565b6000806040838503121561520c578182fd5b823561521781615ce0565b946020939093013593505050565b6000806000806080858703121561523a578081fd5b843561524581615ce0565b9350602085013561525581615d27565b9250615263604086016150dc565b9396929550929360600135925050565b60008060008060608587031215615288578182fd5b843567ffffffffffffffff8082111561529f578384fd5b818701915087601f8301126152b2578384fd5b8135818111156152c0578485fd5b88602080830285010111156152d3578485fd5b6020928301999098509187013596604001359550909350505050565b600060208284031215615300578081fd5b815161078481615cf5565b60006020828403121561531c578081fd5b815161078481615d03565b60008060408385031215615339578182fd5b505080516020909101519092909150565b6000806000806060858703121561535f578182fd5b8435935060208501359250604085013567ffffffffffffffff811115615383578283fd5b61538f8782880161508a565b95989497509550505050565b600080600080600080600080610100898b0312156153b7578586fd5b88516153c281615d12565b80985050602089015180600f0b81146153d9578687fd5b80975050604089015195506060890151945060808901518060060b81146153fe578485fd5b60a08a015190945061540f81615ce0565b60c08a015190935063ffffffff81168114615428578283fd5b915061543660e08a0161507f565b90509295985092959890939650565b60008060408385031215615457578182fd5b825161546281615d12565b602084015190925061513881615d12565b600080600080600060a0868803121561548a578283fd5b855161549581615d12565b80955050602086015193506040860151925060608601516154b581615d12565b60808701519092506154c681615d12565b809150509295509295909350565b600080600080600080600060e0888a0312156154ee578081fd5b87516154f981615ce0565b602089015190975061550a81615d03565b9550615518604089016150ca565b9450615526606089016150ca565b9350615534608089016150ca565b925060a088015161554481615d27565b60c089015190925061555581615cf5565b8091505092959891949750929550565b600060208284031215615576578081fd5b610784826150dc565b600060208284031215615590578081fd5b5035919050565b6000602082840312156155a8578081fd5b5051919050565b600080600080600060a086880312156155c6578283fd5b8535945060208601356155d881615ce0565b935060408601356155e881615d03565b925060608601356155f881615d03565b915060808601356154c681615d03565b6000806000806080858703121561561d578182fd5b84359350602085013561562f81615d03565b9250604085013561563f81615d03565b9150606085013561564f81615d03565b939692955090935050565b60008060008060008060c08789031215615672578384fd5b86359550602087013561568481615d12565b945060408701359350606087013561569b81615d03565b925060808701356156ab81615d03565b915060a08701356156bb81615d03565b809150509295509295509295565b600080604083850312156156db578182fd5b50508035926020909101359150565b6000806000606084860312156156fe578081fd5b833592506020840135915060408401356151ef81615ce0565b60609390931b6001600160601b0319168352600291820b60e890811b6014850152910b901b6017820152601a0190565b6001600160f81b0319815260609390931b6001600160601b03191660018401526015830191909152603582015260550190565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b03938416815291909216602082015262ffffff909116604082015260600190565b6001600160a01b03948516815292151560208401526040830191909152909116606082015260a06080820181905260009082015260c00190565b6001600160a01b03949094168452600292830b6020850152910b60408301526001600160801b0316606082015260a06080820181905260009082015260c00190565b6001600160a01b03959095168552600293840b60208601529190920b60408401526001600160801b03918216606084015216608082015260a00190565b6001600160a01b039290921682526001600160801b0316602082015260400190565b901515815260200190565b90815260200190565b60029190910b815260200190565b600293840b81529190920b60208201526001600160801b03909116604082015260600190565b6000602080835283518082850152825b8181101561591e57858101830151858201604001528201615902565b8181111561592f5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526006908201526566726f6d502160d01b604082015260600190565b60208082526022908201527f706f736974696f6e3020697320776f726b696e672c2063616e6e6f7420696e69604082015261742160f01b606082015260800190565b6020808252600d908201526c77726f6e67206164647265737360981b604082015260600190565b6020808252600490820152637a65726f60e01b604082015260600190565b6020808252600290820152614f4d60f01b604082015260600190565b6020808252601b908201527a536166654d6174683a206164646974696f6e206f766572666c6f7760281b604082015260600190565b60208082526014908201527343414e204e4f54204348414e474520504f4f4c2160601b604082015260600190565b6020808252600290820152615a4160f01b604082015260600190565b6020808252600e908201526d18591908141bdbdb08119a5c9cdd60921b604082015260600190565b6020808252600490820152635a65726f60e01b604082015260600190565b6020808252600e908201526d323050657263656e74204d41582160901b604082015260600190565b60208082526009908201526844494646205449434b60b81b604082015260600190565b6020808252600e908201526d185919081c1bdbdb08199a5c9cdd60921b604082015260600190565b6020808252600f908201526e41646420506f6f6c2046697273742160881b604082015260600190565b6020808252601b908201527f6f6e6c7920666f7220766572696669656420636f6e7472616374210000000000604082015260600190565b6020808252600390820152621818ad60e91b604082015260600190565b6020808252600b908201526a42616420706172616d732160a81b604082015260600190565b602080825260099082015268426164205469636b7360b81b604082015260600190565b6001600160801b0392831681529116602082015260400190565b6001600160801b0397881681529590961660208601526001600160a01b03939093166040850152600291820b6060850152810b60808401520b60a082015290151560c082015260e00190565b93845260208401929092526040830152606082015260800190565b918252602082015260400190565b9283526020830191909152604082015260600190565b958652602086019490945260408501929092526060840152608083015260a082015260c00190565b60ff91909116815260200190565b6001600160a01b0381168114610e4d57600080fd5b8015158114610e4d57600080fd5b8060020b8114610e4d57600080fd5b6001600160801b0381168114610e4d57600080fd5b60ff81168114610e4d57600080fdfe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122075e8ad9266fd323ed4aa8cec6b0aa5072009e6ea8800f7dc0f6a06bb57e7616d64736f6c63430007060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f984000000000000000000000000eb5c52e8af57334fab0b5f3d888990c108545527000000000000000000000000757d2334731460d2181b6c64914ab4acfc22f31a000000000000000000000000eb5c52e8af57334fab0b5f3d888990c108545527000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000012c
-----Decoded View---------------
Arg [0] : _uniFactory (address): 0x1F98431c8aD98523631AE4a59f267346ea31F984
Arg [1] : _poolAddress (address): 0xEb5C52e8af57334FaB0b5f3d888990C108545527
Arg [2] : _operator (address): 0x757d2334731460d2181b6c64914AB4acFc22f31a
Arg [3] : _swapPool (address): 0xEb5C52e8af57334FaB0b5f3d888990C108545527
Arg [4] : _performanceFee (uint8): 10
Arg [5] : _diffTick (uint24): 300
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f984
Arg [1] : 000000000000000000000000eb5c52e8af57334fab0b5f3d888990c108545527
Arg [2] : 000000000000000000000000757d2334731460d2181b6c64914ab4acfc22f31a
Arg [3] : 000000000000000000000000eb5c52e8af57334fab0b5f3d888990c108545527
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 000000000000000000000000000000000000000000000000000000000000012c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.