Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 18 from a total of 18 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Migrate V3Liquid... | 14333420 | 1480 days ago | IN | 0 ETH | 0.05945999 | ||||
| Migrate V3Liquid... | 14316395 | 1482 days ago | IN | 0 ETH | 0.11462502 | ||||
| Migrate V2Liquid... | 14078097 | 1519 days ago | IN | 0 ETH | 0.0699827 | ||||
| Migrate V2Liquid... | 13842841 | 1556 days ago | IN | 0 ETH | 0.04288401 | ||||
| Migrate V3Liquid... | 13745895 | 1571 days ago | IN | 0 ETH | 0.06520719 | ||||
| Migrate V3Liquid... | 13672245 | 1582 days ago | IN | 0 ETH | 0.0100483 | ||||
| Migrate V3Liquid... | 13656893 | 1585 days ago | IN | 0 ETH | 0.17555544 | ||||
| Migrate V3Liquid... | 13656707 | 1585 days ago | IN | 0 ETH | 0.07622157 | ||||
| Migrate V3Liquid... | 13654132 | 1585 days ago | IN | 0 ETH | 0.12933338 | ||||
| Migrate V3Liquid... | 13651965 | 1586 days ago | IN | 0 ETH | 0.05469101 | ||||
| Migrate V3Liquid... | 13648984 | 1586 days ago | IN | 0 ETH | 0.07227843 | ||||
| Migrate V3Liquid... | 13646984 | 1586 days ago | IN | 0 ETH | 0.10094825 | ||||
| Migrate V3Liquid... | 13646875 | 1586 days ago | IN | 0 ETH | 0.11041192 | ||||
| Migrate V3Liquid... | 13646849 | 1586 days ago | IN | 0 ETH | 0.13524477 | ||||
| Migrate Popsicle... | 13646803 | 1586 days ago | IN | 0 ETH | 0.10414671 | ||||
| Migrate V3Liquid... | 13646789 | 1586 days ago | IN | 0 ETH | 0.10154516 | ||||
| Migrate V3Liquid... | 13646768 | 1586 days ago | IN | 0 ETH | 0.123189 | ||||
| Migrate Popsicle... | 13645109 | 1587 days ago | IN | 0 ETH | 0.0833212 |
Latest 12 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| - | 13842841 | 1556 days ago | 0.21834642 ETH | ||||
| - | 13842841 | 1556 days ago | 0.21834642 ETH | ||||
| - | 13654132 | 1585 days ago | 5.45516836 ETH | ||||
| - | 13654132 | 1585 days ago | 5.45516836 ETH | ||||
| - | 13651965 | 1586 days ago | 5.05928289 ETH | ||||
| - | 13651965 | 1586 days ago | 5.05928289 ETH | ||||
| - | 13646803 | 1586 days ago | 2.51856969 ETH | ||||
| - | 13646803 | 1586 days ago | 2.51856969 ETH | ||||
| - | 13646789 | 1586 days ago | 1.27802784 ETH | ||||
| - | 13646789 | 1586 days ago | 1.27802784 ETH | ||||
| - | 13646768 | 1586 days ago | 0.04843452 ETH | ||||
| - | 13646768 | 1586 days ago | 0.04843452 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
LiquidityMigrator
Compiler Version
v0.7.6+commit.7338295f
Optimization Enabled:
Yes with 800 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity =0.7.6;
pragma abicoder v2;
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@uniswap/v3-core/contracts/libraries/LowGasSafeMath.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";
import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol";
import "@uniswap/v3-periphery/contracts/interfaces/INonfungiblePositionManager.sol";
import "./interfaces/IUnipilot.sol";
import "./interfaces/external/IWETH9.sol";
import "./interfaces/visor-interfaces/IVault.sol";
import "./interfaces/lixir-interfaces/ILixirVaultETH.sol";
import "./interfaces/popsicle-interfaces/IPopsicleV3Optimizer.sol";
import "./interfaces/ILiquidityMigrator.sol";
import "./libraries/TransferHelper.sol";
import "./base/PeripheryPayments.sol";
/// @title Uniswap V2, V3, Sushiswap, Visor, Lixir, Popsicle Liquidity Migrator
contract LiquidityMigrator is
ILiquidityMigrator,
PeripheryPayments,
IERC721Receiver,
Context
{
using LowGasSafeMath for uint256;
address private unipilot;
address private exchangeManager;
address private immutable positionManager;
address private immutable uniswapFactory;
modifier onlyGovernance() {
require(msg.sender == IUnipilot(unipilot).governance(), "NG");
_;
}
constructor(
address _unipilot,
address _exchangeManager,
address _positionManager,
address _uniswapFactory
) {
(unipilot, exchangeManager, positionManager, uniswapFactory) = (
_unipilot,
_exchangeManager,
_positionManager,
_uniswapFactory
);
}
function setCoreAddresses(address _unipilot, address _exchangeManager)
external
onlyGovernance
{
unipilot = _unipilot;
exchangeManager = _exchangeManager;
}
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external override returns (bytes4) {
return IERC721Receiver(0).onERC721Received.selector;
}
function migrateV2Liquidity(MigrateV2Params calldata params) external {
require(
params.percentageToMigrate > 0 && params.percentageToMigrate <= 100,
"IPA"
);
IUniswapV2Pair(params.pair).transferFrom(
_msgSender(),
params.pair,
params.liquidityToMigrate
);
(uint256 amount0V2, uint256 amount1V2) = IUniswapV2Pair(params.pair).burn(
address(this)
);
uint256 amount0ToMigrate = amount0V2.mul(params.percentageToMigrate) / 100;
uint256 amount1ToMigrate = amount1V2.mul(params.percentageToMigrate) / 100;
_tokenApproval(params.token0, amount0ToMigrate);
_tokenApproval(params.token1, amount1ToMigrate);
(
address pairV3,
uint256 amount0V3,
uint256 amount1V3,
uint256 mintedTokenId
) = _addLiquidityUnipilot(
UnipilotParams({
sender: _msgSender(),
token0: params.token0,
token1: params.token1,
fee: params.fee,
amount0ToMigrate: amount0ToMigrate,
amount1ToMigrate: amount1ToMigrate,
unipilotTokenId: params.unipilotTokenId,
sqrtPriceX96: params.sqrtPriceX96
})
);
_refundRemainingLiquidiy(
RefundLiquidityParams({
token0: params.token0,
token1: params.token1,
amount0Unipilot: amount0V3,
amount1Unipilot: amount1V3,
amount0Recieved: amount0V2,
amount1Recieved: amount1V2,
amount0ToMigrate: amount0ToMigrate,
amount1ToMigrate: amount1ToMigrate,
refundAsETH: params.refundAsETH
})
);
emit LiquidityMigratedFromV2(
params.pair,
pairV3,
_msgSender(),
mintedTokenId,
amount0V3,
amount1V3
);
}
function migrateV3Liquidity(MigrateV3Params calldata params) external {
require(
params.percentageToMigrate > 0 && params.percentageToMigrate <= 100,
"IPA"
);
INonfungiblePositionManager periphery = INonfungiblePositionManager(
positionManager
);
periphery.safeTransferFrom(_msgSender(), address(this), params.uniswapTokenId);
(, , , , , , , uint128 liquidityV3, , , , ) = INonfungiblePositionManager(
positionManager
).positions(params.uniswapTokenId);
periphery.decreaseLiquidity(
INonfungiblePositionManager.DecreaseLiquidityParams({
tokenId: params.uniswapTokenId,
liquidity: liquidityV3,
amount0Min: 0,
amount1Min: 0,
deadline: block.timestamp + 120
})
);
// returns the total amount of Liquidity with collected fees to user
(uint256 amount0V3, uint256 amount1V3) = periphery.collect(
INonfungiblePositionManager.CollectParams({
tokenId: params.uniswapTokenId,
recipient: address(this),
amount0Max: type(uint128).max,
amount1Max: type(uint128).max
})
);
uint256 amount0ToMigrate = amount0V3.mul(params.percentageToMigrate) / 100;
uint256 amount1ToMigrate = amount1V3.mul(params.percentageToMigrate) / 100;
// approve the Unipilot up to the maximum token amounts
_tokenApproval(params.token0, amount0ToMigrate);
_tokenApproval(params.token1, amount1ToMigrate);
(
address pair,
uint256 amount0Unipilot,
uint256 amount1Unipilot,
uint256 mintedTokenId
) = _addLiquidityUnipilot(
UnipilotParams({
sender: _msgSender(),
token0: params.token0,
token1: params.token1,
fee: params.fee,
amount0ToMigrate: amount0ToMigrate,
amount1ToMigrate: amount1ToMigrate,
unipilotTokenId: params.unipilotTokenId,
sqrtPriceX96: params.sqrtPriceX96
})
);
_refundRemainingLiquidiy(
RefundLiquidityParams({
token0: params.token0,
token1: params.token1,
amount0Unipilot: amount0Unipilot,
amount1Unipilot: amount1Unipilot,
amount0Recieved: amount0V3,
amount1Recieved: amount1V3,
amount0ToMigrate: amount0ToMigrate,
amount1ToMigrate: amount1ToMigrate,
refundAsETH: params.refundAsETH
})
);
periphery.burn(params.uniswapTokenId);
emit LiquidityMigratedFromV3(
pair,
_msgSender(),
mintedTokenId,
amount0Unipilot,
amount1Unipilot
);
}
function migrateVisorLiquidity(MigrateV2Params calldata params) external {
require(
params.percentageToMigrate > 0 && params.percentageToMigrate <= 100,
"IPA"
);
IERC20(params.pair).transferFrom(
_msgSender(),
address(this),
params.liquidityToMigrate
);
(uint256 amount0V2, uint256 amount1V2) = IVault(params.pair).withdraw(
params.liquidityToMigrate,
address(this),
address(this)
);
uint256 amount0ToMigrate = amount0V2.mul(params.percentageToMigrate) / 100;
uint256 amount1ToMigrate = amount1V2.mul(params.percentageToMigrate) / 100;
_tokenApproval(params.token0, amount0ToMigrate);
_tokenApproval(params.token1, amount1ToMigrate);
(
address pairV3,
uint256 amount0V3,
uint256 amount1V3,
uint256 mintedTokenId
) = _addLiquidityUnipilot(
UnipilotParams({
sender: _msgSender(),
token0: params.token0,
token1: params.token1,
fee: params.fee,
amount0ToMigrate: amount0ToMigrate,
amount1ToMigrate: amount1ToMigrate,
unipilotTokenId: params.unipilotTokenId,
sqrtPriceX96: params.sqrtPriceX96
})
);
_refundRemainingLiquidiy(
RefundLiquidityParams({
token0: params.token0,
token1: params.token1,
amount0Unipilot: amount0V3,
amount1Unipilot: amount1V3,
amount0Recieved: amount0V2,
amount1Recieved: amount1V2,
amount0ToMigrate: amount0ToMigrate,
amount1ToMigrate: amount1ToMigrate,
refundAsETH: params.refundAsETH
})
);
emit LiquidityMigratedFromVisor(
params.pair,
pairV3,
_msgSender(),
mintedTokenId,
amount0V3,
amount1V3
);
}
function migrateLixirLiquidity(MigrateV2Params calldata params) external {
require(
params.percentageToMigrate > 0 && params.percentageToMigrate <= 100,
"IPA"
);
(uint256 amount0V2, uint256 amount1V2) = ILixirVaultETH(
payable(address(params.pair))
).withdrawETHFrom(
_msgSender(),
params.liquidityToMigrate,
0,
0,
address(this),
block.timestamp + 120
);
(
address alt,
uint256 altAmountReceived,
address weth,
uint256 wethAmountReceived
) = _sortWethAmount(params.token0, params.token1, amount0V2, amount1V2);
IWETH9(WETH).deposit{ value: wethAmountReceived }();
uint256 wethAmountToMigrate = wethAmountReceived.mul(params.percentageToMigrate) /
100;
uint256 altAmountToMigrate = altAmountReceived.mul(params.percentageToMigrate) /
100;
_tokenApproval(weth, wethAmountToMigrate);
_tokenApproval(alt, altAmountToMigrate);
(
address pairV3,
uint256 amount0V3,
uint256 amount1V3,
uint256 mintedTokenId
) = _addLiquidityUnipilot(
UnipilotParams({
sender: _msgSender(),
token0: alt,
token1: weth,
fee: params.fee,
amount0ToMigrate: altAmountToMigrate,
amount1ToMigrate: wethAmountToMigrate,
unipilotTokenId: params.unipilotTokenId,
sqrtPriceX96: params.sqrtPriceX96
})
);
_refundRemainingLiquidiy(
RefundLiquidityParams({
token0: alt,
token1: weth,
amount0Unipilot: amount0V3,
amount1Unipilot: amount1V3,
amount0Recieved: altAmountReceived,
amount1Recieved: wethAmountReceived,
amount0ToMigrate: altAmountToMigrate,
amount1ToMigrate: wethAmountToMigrate,
refundAsETH: params.refundAsETH
})
);
emit LiquidityMigratedFromLixir(
params.pair,
pairV3,
_msgSender(),
mintedTokenId,
amount0V3,
amount1V3
);
}
function migratePopsicleLiquidity(MigrateV2Params calldata params) external {
require(
params.percentageToMigrate > 0 && params.percentageToMigrate <= 100,
"IPA"
);
IERC20(params.pair).transferFrom(
_msgSender(),
address(this),
params.liquidityToMigrate
);
(uint256 amount0, uint256 amount1) = IPopsicleV3Optimizer(params.pair).withdraw(
params.liquidityToMigrate,
address(this)
);
uint256 amount0ToMigrate = amount0.mul(params.percentageToMigrate) / 100;
uint256 amount1ToMigrate = amount1.mul(params.percentageToMigrate) / 100;
_tokenApproval(params.token0, amount0ToMigrate);
_tokenApproval(params.token1, amount1ToMigrate);
(
address pairV3,
uint256 amount0V3,
uint256 amount1V3,
uint256 mintedTokenId
) = _addLiquidityUnipilot(
UnipilotParams({
sender: _msgSender(),
token0: params.token0,
token1: params.token1,
fee: params.fee,
amount0ToMigrate: amount0ToMigrate,
amount1ToMigrate: amount1ToMigrate,
unipilotTokenId: params.unipilotTokenId,
sqrtPriceX96: params.sqrtPriceX96
})
);
_refundRemainingLiquidiy(
RefundLiquidityParams({
token0: params.token0,
token1: params.token1,
amount0Unipilot: amount0V3,
amount1Unipilot: amount1V3,
amount0Recieved: amount0,
amount1Recieved: amount1,
amount0ToMigrate: amount0ToMigrate,
amount1ToMigrate: amount1ToMigrate,
refundAsETH: params.refundAsETH
})
);
emit LiquidityMigratedFromPopsicle(
params.pair,
pairV3,
_msgSender(),
mintedTokenId,
amount0V3,
amount1V3
);
}
function _addLiquidityUnipilot(UnipilotParams memory params)
private
returns (
address pair,
uint256 amount0Added,
uint256 amount1Added,
uint256 mintedTokenId
)
{
pair = _getV3Pair(params.token0, params.token1, params.fee);
if (pair != address(0)) {
bytes memory data = abi.encode(params.fee);
(amount0Added, amount1Added) = IUnipilot(unipilot).deposit(
IExchangeManager.DepositParams({
recipient: _msgSender(),
exchangeManagerAddress: exchangeManager,
token0: params.token0,
token1: params.token1,
amount0Desired: params.amount0ToMigrate,
amount1Desired: params.amount1ToMigrate,
tokenId: params.unipilotTokenId
}),
data
);
} else {
bytes[2] memory data = [
abi.encode(params.fee, params.sqrtPriceX96),
abi.encode(params.fee, 0)
];
(amount0Added, amount1Added, mintedTokenId) = IUnipilot(unipilot)
.createPoolAndDeposit(
IExchangeManager.DepositParams({
recipient: _msgSender(),
exchangeManagerAddress: exchangeManager,
token0: params.token0,
token1: params.token1,
amount0Desired: params.amount0ToMigrate,
amount1Desired: params.amount1ToMigrate,
tokenId: params.unipilotTokenId
}),
data
);
}
}
function _refundRemainingLiquidiy(RefundLiquidityParams memory params) private {
if (params.amount0Unipilot < params.amount0Recieved) {
if (params.amount0Unipilot < params.amount0ToMigrate) {
TransferHelper.safeApprove(params.token0, unipilot, 0);
}
if (params.refundAsETH && params.token0 == WETH) {
unwrapWETH9(0, _msgSender());
} else {
sweepToken(params.token0, 0, _msgSender());
}
}
if (params.amount1Unipilot < params.amount1Recieved) {
if (params.amount1Unipilot < params.amount1ToMigrate) {
TransferHelper.safeApprove(params.token1, unipilot, 0);
}
if (params.refundAsETH && params.token1 == WETH) {
unwrapWETH9(0, _msgSender());
} else {
sweepToken(params.token1, 0, _msgSender());
}
}
}
function _getV3Pair(
address token0,
address token1,
uint24 fee
) private view returns (address pair) {
return IUniswapV3Factory(uniswapFactory).getPool(token0, token1, fee);
}
function _sortWethAmount(
address _token0,
address _token1,
uint256 _amount0,
uint256 _amount1
)
private
pure
returns (
address tokenAlt,
uint256 altAmount,
address tokenWeth,
uint256 wethAmount
)
{
(address tokenA, address tokenB, uint256 amountA, uint256 amountB) = _token0 ==
WETH
? (_token0, _token1, _amount0, _amount1)
: (_token0, _token1, _amount1, _amount0);
(tokenAlt, altAmount, tokenWeth, wethAmount) = tokenA == WETH
? (tokenB, amountB, tokenA, amountA)
: (tokenA, amountA, tokenB, amountB);
}
function _tokenApproval(address token, uint256 amount) private {
TransferHelper.safeApprove(token, unipilot, amount);
}
}// 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.7.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.7.0;
/// @title Optimized overflow and underflow safe math operations
/// @notice Contains methods for doing math operations that revert on overflow or underflow for minimal gas cost
library LowGasSafeMath {
/// @notice Returns x + y, reverts if sum overflows uint256
/// @param x The augend
/// @param y The addend
/// @return z The sum of x and y
function add(uint256 x, uint256 y) internal pure returns (uint256 z) {
require((z = x + y) >= x);
}
/// @notice Returns x - y, reverts if underflows
/// @param x The minuend
/// @param y The subtrahend
/// @return z The difference of x and y
function sub(uint256 x, uint256 y) internal pure returns (uint256 z) {
require((z = x - y) <= x);
}
/// @notice Returns x * y, reverts if overflows
/// @param x The multiplicand
/// @param y The multiplier
/// @return z The product of x and y
function mul(uint256 x, uint256 y) internal pure returns (uint256 z) {
require(x == 0 || (z = x * y) / x == y);
}
/// @notice Returns x + y, reverts if overflows or underflows
/// @param x The augend
/// @param y The addend
/// @return z The sum of x and y
function add(int256 x, int256 y) internal pure returns (int256 z) {
require((z = x + y) >= x == (y >= 0));
}
/// @notice Returns x - y, reverts if overflows or underflows
/// @param x The minuend
/// @param y The subtrahend
/// @return z The difference of x and y
function sub(int256 x, int256 y) internal pure returns (int256 z) {
require((z = x - y) <= x == (y >= 0));
}
}pragma solidity >=0.5.0;
interface IUniswapV2Pair {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint);
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
event Mint(address indexed sender, uint amount0, uint amount1);
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
event Swap(
address indexed sender,
uint amount0In,
uint amount1In,
uint amount0Out,
uint amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
function price0CumulativeLast() external view returns (uint);
function price1CumulativeLast() external view returns (uint);
function kLast() external view returns (uint);
function mint(address to) external returns (uint liquidity);
function burn(address to) external returns (uint amount0, uint amount1);
function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;
/// @title The interface for the Uniswap V3 Factory
/// @notice The Uniswap V3 Factory facilitates creation of Uniswap V3 pools and control over the protocol fees
interface IUniswapV3Factory {
/// @notice Emitted when the owner of the factory is changed
/// @param oldOwner The owner before the owner was changed
/// @param newOwner The owner after the owner was changed
event OwnerChanged(address indexed oldOwner, address indexed newOwner);
/// @notice Emitted when a pool is created
/// @param token0 The first token of the pool by address sort order
/// @param token1 The second token of the pool by address sort order
/// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip
/// @param tickSpacing The minimum number of ticks between initialized ticks
/// @param pool The address of the created pool
event PoolCreated(
address indexed token0,
address indexed token1,
uint24 indexed fee,
int24 tickSpacing,
address pool
);
/// @notice Emitted when a new fee amount is enabled for pool creation via the factory
/// @param fee The enabled fee, denominated in hundredths of a bip
/// @param tickSpacing The minimum number of ticks between initialized ticks for pools created with the given fee
event FeeAmountEnabled(uint24 indexed fee, int24 indexed tickSpacing);
/// @notice Returns the current owner of the factory
/// @dev Can be changed by the current owner via setOwner
/// @return The address of the factory owner
function owner() external view returns (address);
/// @notice Returns the tick spacing for a given fee amount, if enabled, or 0 if not enabled
/// @dev A fee amount can never be removed, so this value should be hard coded or cached in the calling context
/// @param fee The enabled fee, denominated in hundredths of a bip. Returns 0 in case of unenabled fee
/// @return The tick spacing
function feeAmountTickSpacing(uint24 fee) external view returns (int24);
/// @notice Returns the pool address for a given pair of tokens and a fee, or address 0 if it does not exist
/// @dev tokenA and tokenB may be passed in either token0/token1 or token1/token0 order
/// @param tokenA The contract address of either token0 or token1
/// @param tokenB The contract address of the other token
/// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip
/// @return pool The pool address
function getPool(
address tokenA,
address tokenB,
uint24 fee
) external view returns (address pool);
/// @notice Creates a pool for the given two tokens and fee
/// @param tokenA One of the two tokens in the desired pool
/// @param tokenB The other of the two tokens in the desired pool
/// @param fee The desired fee for the pool
/// @dev tokenA and tokenB may be passed in either order: token0/token1 or token1/token0. tickSpacing is retrieved
/// from the fee. The call will revert if the pool already exists, the fee is invalid, or the token arguments
/// are invalid.
/// @return pool The address of the newly created pool
function createPool(
address tokenA,
address tokenB,
uint24 fee
) external returns (address pool);
/// @notice Updates the owner of the factory
/// @dev Must be called by the current owner
/// @param _owner The new owner of the factory
function setOwner(address _owner) external;
/// @notice Enables a fee amount with the given tickSpacing
/// @dev Fee amounts may never be removed once enabled
/// @param fee The fee amount to enable, denominated in hundredths of a bip (i.e. 1e-6)
/// @param tickSpacing The spacing between ticks to be enforced for all pools created with the given fee amount
function enableFeeAmount(uint24 fee, int24 tickSpacing) external;
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.7.5;
pragma abicoder v2;
import '@openzeppelin/contracts/token/ERC721/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol';
import './IPoolInitializer.sol';
import './IERC721Permit.sol';
import './IPeripheryPayments.sol';
import './IPeripheryImmutableState.sol';
import '../libraries/PoolAddress.sol';
/// @title Non-fungible token for positions
/// @notice Wraps Uniswap V3 positions in a non-fungible token interface which allows for them to be transferred
/// and authorized.
interface INonfungiblePositionManager is
IPoolInitializer,
IPeripheryPayments,
IPeripheryImmutableState,
IERC721Metadata,
IERC721Enumerable,
IERC721Permit
{
/// @notice Emitted when liquidity is increased for a position NFT
/// @dev Also emitted when a token is minted
/// @param tokenId The ID of the token for which liquidity was increased
/// @param liquidity The amount by which liquidity for the NFT position was increased
/// @param amount0 The amount of token0 that was paid for the increase in liquidity
/// @param amount1 The amount of token1 that was paid for the increase in liquidity
event IncreaseLiquidity(uint256 indexed tokenId, uint128 liquidity, uint256 amount0, uint256 amount1);
/// @notice Emitted when liquidity is decreased for a position NFT
/// @param tokenId The ID of the token for which liquidity was decreased
/// @param liquidity The amount by which liquidity for the NFT position was decreased
/// @param amount0 The amount of token0 that was accounted for the decrease in liquidity
/// @param amount1 The amount of token1 that was accounted for the decrease in liquidity
event DecreaseLiquidity(uint256 indexed tokenId, uint128 liquidity, uint256 amount0, uint256 amount1);
/// @notice Emitted when tokens are collected for a position NFT
/// @dev The amounts reported may not be exactly equivalent to the amounts transferred, due to rounding behavior
/// @param tokenId The ID of the token for which underlying tokens were collected
/// @param recipient The address of the account that received the collected tokens
/// @param amount0 The amount of token0 owed to the position that was collected
/// @param amount1 The amount of token1 owed to the position that was collected
event Collect(uint256 indexed tokenId, address recipient, uint256 amount0, uint256 amount1);
/// @notice Returns the position information associated with a given token ID.
/// @dev Throws if the token ID is not valid.
/// @param tokenId The ID of the token that represents the position
/// @return nonce The nonce for permits
/// @return operator The address that is approved for spending
/// @return token0 The address of the token0 for a specific pool
/// @return token1 The address of the token1 for a specific pool
/// @return fee The fee associated with the pool
/// @return tickLower The lower end of the tick range for the position
/// @return tickUpper The higher end of the tick range for the position
/// @return liquidity The liquidity of the position
/// @return feeGrowthInside0LastX128 The fee growth of token0 as of the last action on the individual position
/// @return feeGrowthInside1LastX128 The fee growth of token1 as of the last action on the individual position
/// @return tokensOwed0 The uncollected amount of token0 owed to the position as of the last computation
/// @return tokensOwed1 The uncollected amount of token1 owed to the position as of the last computation
function positions(uint256 tokenId)
external
view
returns (
uint96 nonce,
address operator,
address token0,
address token1,
uint24 fee,
int24 tickLower,
int24 tickUpper,
uint128 liquidity,
uint256 feeGrowthInside0LastX128,
uint256 feeGrowthInside1LastX128,
uint128 tokensOwed0,
uint128 tokensOwed1
);
struct MintParams {
address token0;
address token1;
uint24 fee;
int24 tickLower;
int24 tickUpper;
uint256 amount0Desired;
uint256 amount1Desired;
uint256 amount0Min;
uint256 amount1Min;
address recipient;
uint256 deadline;
}
/// @notice Creates a new position wrapped in a NFT
/// @dev Call this when the pool does exist and is initialized. Note that if the pool is created but not initialized
/// a method does not exist, i.e. the pool is assumed to be initialized.
/// @param params The params necessary to mint a position, encoded as `MintParams` in calldata
/// @return tokenId The ID of the token that represents the minted position
/// @return liquidity The amount of liquidity for this position
/// @return amount0 The amount of token0
/// @return amount1 The amount of token1
function mint(MintParams calldata params)
external
payable
returns (
uint256 tokenId,
uint128 liquidity,
uint256 amount0,
uint256 amount1
);
struct IncreaseLiquidityParams {
uint256 tokenId;
uint256 amount0Desired;
uint256 amount1Desired;
uint256 amount0Min;
uint256 amount1Min;
uint256 deadline;
}
/// @notice Increases the amount of liquidity in a position, with tokens paid by the `msg.sender`
/// @param params tokenId The ID of the token for which liquidity is being increased,
/// amount0Desired The desired amount of token0 to be spent,
/// amount1Desired The desired amount of token1 to be spent,
/// amount0Min The minimum amount of token0 to spend, which serves as a slippage check,
/// amount1Min The minimum amount of token1 to spend, which serves as a slippage check,
/// deadline The time by which the transaction must be included to effect the change
/// @return liquidity The new liquidity amount as a result of the increase
/// @return amount0 The amount of token0 to acheive resulting liquidity
/// @return amount1 The amount of token1 to acheive resulting liquidity
function increaseLiquidity(IncreaseLiquidityParams calldata params)
external
payable
returns (
uint128 liquidity,
uint256 amount0,
uint256 amount1
);
struct DecreaseLiquidityParams {
uint256 tokenId;
uint128 liquidity;
uint256 amount0Min;
uint256 amount1Min;
uint256 deadline;
}
/// @notice Decreases the amount of liquidity in a position and accounts it to the position
/// @param params tokenId The ID of the token for which liquidity is being decreased,
/// amount The amount by which liquidity will be decreased,
/// amount0Min The minimum amount of token0 that should be accounted for the burned liquidity,
/// amount1Min The minimum amount of token1 that should be accounted for the burned liquidity,
/// deadline The time by which the transaction must be included to effect the change
/// @return amount0 The amount of token0 accounted to the position's tokens owed
/// @return amount1 The amount of token1 accounted to the position's tokens owed
function decreaseLiquidity(DecreaseLiquidityParams calldata params)
external
payable
returns (uint256 amount0, uint256 amount1);
struct CollectParams {
uint256 tokenId;
address recipient;
uint128 amount0Max;
uint128 amount1Max;
}
/// @notice Collects up to a maximum amount of fees owed to a specific position to the recipient
/// @param params tokenId The ID of the NFT for which tokens are being collected,
/// recipient The account that should receive the tokens,
/// amount0Max The maximum amount of token0 to collect,
/// amount1Max The maximum amount of token1 to collect
/// @return amount0 The amount of fees collected in token0
/// @return amount1 The amount of fees collected in token1
function collect(CollectParams calldata params) external payable returns (uint256 amount0, uint256 amount1);
/// @notice Burns a token ID, which deletes it from the NFT contract. The token must have 0 liquidity and all tokens
/// must be collected first.
/// @param tokenId The ID of the token that is being burned
function burn(uint256 tokenId) external payable;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.7.6;
pragma abicoder v2;
import "./IExchangeManager.sol";
interface IUnipilot {
struct DepositVars {
uint256 totalAmount0;
uint256 totalAmount1;
uint256 totalLiquidity;
uint256 shares;
}
event ExchangeWhitelisted(address newExchange);
event ExchangeStatus(address exchange, bool status);
event GovernanceUpdated(address oldGovernance, address newGovernance);
function governance() external view returns (address);
function mintProxy() external view returns (address);
function mintPilot(address recipient, uint256 amount) external;
function deposit(IExchangeManager.DepositParams memory params, bytes memory data)
external
payable
returns (uint256 amount0Added, uint256 amount1Added);
function createPoolAndDeposit(
IExchangeManager.DepositParams memory params,
bytes[2] calldata data
)
external
payable
returns (
uint256 amount0Added,
uint256 amount1Added,
uint256 mintedTokenId
);
function exchangeManagerWhitelist(address exchange) external view returns (bool);
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity =0.7.6;
import "./IERC20.sol";
/// @title Interface for WETH9
interface IWETH9 is IERC20 {
/// @notice Deposit ether to get wrapped ether
function deposit() external payable;
/// @notice Withdraw wrapped ether to get ether
function withdraw(uint256) external;
}// SPDX-License-Identifier: Unlicense
pragma solidity 0.7.6;
interface IVault {
function deposit(
uint256,
uint256,
address
) external returns (uint256);
function withdraw(
uint256,
address,
address
) external returns (uint256, uint256);
function rebalance(
int24 _baseLower,
int24 _baseUpper,
int24 _limitLower,
int24 _limitUpper,
address feeRecipient,
int256 swapQuantity
) external;
function getTotalAmounts() external view returns (uint256, uint256);
event Deposit(
address indexed sender,
address indexed to,
uint256 shares,
uint256 amount0,
uint256 amount1
);
event Withdraw(
address indexed sender,
address indexed to,
uint256 shares,
uint256 amount0,
uint256 amount1
);
event Rebalance(
int24 tick,
uint256 totalAmount0,
uint256 totalAmount1,
uint256 feeAmount0,
uint256 feeAmount1,
uint256 totalSupply
);
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.7.6;
import "./ILixirVault.sol";
interface ILixirVaultETH is ILixirVault {
enum TOKEN {
ZERO,
ONE
}
function WETH_TOKEN() external view returns (TOKEN);
function depositETH(
uint256 amountDesired,
uint256 amountEthMin,
uint256 amountMin,
address recipient,
uint256 deadline
)
external
payable
returns (
uint256 shares,
uint256 amountEthIn,
uint256 amountIn
);
function withdrawETHFrom(
address withdrawer,
uint256 shares,
uint256 amountEthMin,
uint256 amountMin,
address payable recipient,
uint256 deadline
) external returns (uint256 amountEthOut, uint256 amountOut);
function withdrawETH(
uint256 shares,
uint256 amountEthMin,
uint256 amountMin,
address payable recipient,
uint256 deadline
) external returns (uint256 amountEthOut, uint256 amountOut);
receive() external payable;
}// SPDX-License-Identifier: MIT
pragma solidity =0.7.6;
import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol";
interface IPopsicleV3Optimizer {
/// @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 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 A Uniswap pool facilitates swapping and automated market making between any two assets that strictly conform
/// to the ERC20 specification
/// @return The address of the Uniswap V3 Pool
function pool() external view returns (IUniswapV3Pool);
/// @notice The lower tick of the range
function tickLower() external view returns (int24);
/// @notice The upper tick of the range
function tickUpper() external view returns (int24);
/**
* @notice Deposits tokens in proportion to the Optimizer's current ticks.
* @param amount0Desired Max amount of token0 to deposit
* @param amount1Desired Max amount of token1 to deposit
* @param to address that plp should be transfered
* @return shares minted
* @return amount0 Amount of token0 deposited
* @return amount1 Amount of token1 deposited
*/
function deposit(
uint256 amount0Desired,
uint256 amount1Desired,
address to
)
external
returns (
uint256 shares,
uint256 amount0,
uint256 amount1
);
/**
* @notice Withdraws tokens in proportion to the Optimizer's holdings.
* @dev Removes proportional amount of liquidity from Uniswap.
* @param shares burned by sender
* @return amount0 Amount of token0 sent to recipient
* @return amount1 Amount of token1 sent to recipient
*/
function withdraw(uint256 shares, address to)
external
returns (uint256 amount0, uint256 amount1);
/**
* @notice Updates Optimizer's positions.
* @dev Finds base position and limit position for imbalanced token
* mints all amounts to this position(including earned fees)
*/
function rerange() external;
/**
* @notice Updates Optimizer's positions. Can only be called by the governance.
* @dev Swaps imbalanced token. Finds base position and limit position for imbalanced token if
* we don't have balance during swap because of price impact.
* mints all amounts to this position(including earned fees)
*/
function rebalance() external;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.7.6;
pragma abicoder v2;
interface ILiquidityMigrator {
struct MigrateV2Params {
address pair; // the Uniswap v2-compatible pair
address token0;
address token1;
uint24 fee;
uint8 percentageToMigrate; // represented as a numerator over 100
uint256 liquidityToMigrate;
uint256 sqrtPriceX96;
uint256 unipilotTokenId;
bool refundAsETH;
}
struct MigrateV3Params {
address token0;
address token1;
uint24 fee;
uint8 percentageToMigrate;
uint256 sqrtPriceX96;
uint256 uniswapTokenId;
uint256 unipilotTokenId;
bool refundAsETH;
}
struct UnipilotParams {
address sender;
address token0;
address token1;
uint24 fee;
uint256 amount0ToMigrate;
uint256 amount1ToMigrate;
uint256 unipilotTokenId;
uint256 sqrtPriceX96;
}
struct RefundLiquidityParams {
address token0;
address token1;
uint256 amount0Unipilot;
uint256 amount1Unipilot;
uint256 amount0Recieved;
uint256 amount1Recieved;
uint256 amount0ToMigrate;
uint256 amount1ToMigrate;
bool refundAsETH;
}
event LiquidityMigratedFromV2(
address pairV2,
address unipilotVault,
address owner,
uint256 unipilotId,
uint256 amount0,
uint256 amount1
);
event LiquidityMigratedFromV3(
address unipilotVault,
address owner,
uint256 unipilotId,
uint256 amount0,
uint256 amount1
);
event LiquidityMigratedFromVisor(
address hypervisor,
address unipilotVault,
address owner,
uint256 unipilotId,
uint256 amount0,
uint256 amount1
);
event LiquidityMigratedFromLixir(
address lixirVault,
address unipilotVault,
address owner,
uint256 unipilotId,
uint256 amount0,
uint256 amount1
);
event LiquidityMigratedFromPopsicle(
address popsicleVault,
address unipilotVault,
address owner,
uint256 unipilotId,
uint256 amount0,
uint256 amount1
);
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.6.0;
// import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "../interfaces/external/IERC20.sol";
library TransferHelper {
/// @notice Transfers tokens from the targeted address to the given destination
/// @notice Errors with 'STF' if transfer fails
/// @param token The contract address of the token to be transferred
/// @param from The originating address from which the tokens will be transferred
/// @param to The destination address of the transfer
/// @param value The amount to be transferred
function safeTransferFrom(
address token,
address from,
address to,
uint256 value
) internal {
(bool success, bytes memory data) = token.call(
abi.encodeWithSelector(IERC20.transferFrom.selector, from, to, value)
);
require(success && (data.length == 0 || abi.decode(data, (bool))), "STF");
}
/// @notice Transfers tokens from msg.sender to a recipient
/// @dev Errors with ST if transfer fails
/// @param token The contract address of the token which will be transferred
/// @param to The recipient of the transfer
/// @param value The value of the transfer
function safeTransfer(
address token,
address to,
uint256 value
) internal {
(bool success, bytes memory data) = token.call(
abi.encodeWithSelector(IERC20.transfer.selector, to, value)
);
require(success && (data.length == 0 || abi.decode(data, (bool))), "ST");
}
/// @notice Approves the stipulated contract to spend the given allowance in the given token
/// @dev Errors with 'SA' if transfer fails
/// @param token The contract address of the token to be approved
/// @param to The target of the approval
/// @param value The amount of the given token the target will be allowed to spend
function safeApprove(
address token,
address to,
uint256 value
) internal {
(bool success, bytes memory data) = token.call(
abi.encodeWithSelector(IERC20.approve.selector, to, value)
);
require(success && (data.length == 0 || abi.decode(data, (bool))), "SA");
}
/// @notice Transfers ETH to the recipient address
/// @dev Fails with `STE`
/// @param to The destination of the transfer
/// @param value The value to be transferred
function safeTransferETH(address to, uint256 value) internal {
(bool success, ) = to.call{ value: value }(new bytes(0));
require(success, "STE");
}
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.7.5;
import "../interfaces/external/IWETH9.sol";
import "../libraries/TransferHelper.sol";
abstract contract PeripheryPayments {
address internal constant PILOT = 0x37C997B35C619C21323F3518B9357914E8B99525;
address internal constant WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
receive() external payable {}
fallback() external payable {}
/// @notice Transfers the full amount of a token held by this contract to recipient (In case of Emergency transfer tokens out of vault)
/// @dev The amountMinimum parameter prevents malicious contracts from stealing the token from users
/// @param token The contract address of the token which will be transferred to `recipient`
/// @param amountMinimum The minimum amount of token required for a transfer
/// @param recipient The destination address of the token
function sweepToken(
address token,
uint256 amountMinimum,
address recipient
) internal {
uint256 balanceToken = IERC20(token).balanceOf(address(this));
require(balanceToken >= amountMinimum, "IT");
if (balanceToken > 0) {
TransferHelper.safeTransfer(token, recipient, balanceToken);
}
}
/// @notice Unwraps the contract's WETH9 balance and sends it to recipient as ETH.
/// @dev The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users.
/// @param amountMinimum The minimum amount of WETH9 to unwrap
/// @param recipient The address receiving ETH
function unwrapWETH9(uint256 amountMinimum, address recipient) internal {
uint256 balanceWETH9 = IWETH9(WETH).balanceOf(address(this));
require(balanceWETH9 >= amountMinimum, "IW");
if (balanceWETH9 > 0) {
IWETH9(WETH).withdraw(balanceWETH9);
TransferHelper.safeTransferETH(recipient, balanceWETH9);
}
}
/// @notice Refunds any ETH balance held by this contract to the `msg.sender`
/// @dev Useful for bundling with mint or increase liquidity that uses ether, or exact output swaps
/// that use ether for the input amount
function refundETH() internal {
if (address(this).balance > 0)
TransferHelper.safeTransferETH(msg.sender, address(this).balance);
}
/// @param token The token to pay
/// @param payer The entity that must pay
/// @param recipient The entity that will receive payment
/// @param value The amount to pay
function pay(
address token,
address payer,
address recipient,
uint256 value
) internal {
if (token == WETH && address(this).balance >= value) {
// pay with WETH9
IWETH9(WETH).deposit{ value: value }(); // wrap only what is needed to pay
IWETH9(WETH).transfer(recipient, value);
} else if (payer == address(this)) {
// pay with tokens already in the contract (for the exact input multihop case)
TransferHelper.safeTransfer(token, recipient, value);
} else {
// pull payment
TransferHelper.safeTransferFrom(token, payer, recipient, value);
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
import "./IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
import "./IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.7.5;
pragma abicoder v2;
/// @title Creates and initializes V3 Pools
/// @notice Provides a method for creating and initializing a pool, if necessary, for bundling with other methods that
/// require the pool to exist.
interface IPoolInitializer {
/// @notice Creates a new pool if it does not exist, then initializes if not initialized
/// @dev This method can be bundled with others via IMulticall for the first action (e.g. mint) performed against a pool
/// @param token0 The contract address of token0 of the pool
/// @param token1 The contract address of token1 of the pool
/// @param fee The fee amount of the v3 pool for the specified token pair
/// @param sqrtPriceX96 The initial square root price of the pool as a Q64.96 value
/// @return pool Returns the pool address based on the pair of tokens and fee, will return the newly created pool address if necessary
function createAndInitializePoolIfNecessary(
address token0,
address token1,
uint24 fee,
uint160 sqrtPriceX96
) external payable returns (address pool);
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.7.5;
import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
/// @title ERC721 with permit
/// @notice Extension to ERC721 that includes a permit function for signature based approvals
interface IERC721Permit is IERC721 {
/// @notice The permit typehash used in the permit signature
/// @return The typehash for the permit
function PERMIT_TYPEHASH() external pure returns (bytes32);
/// @notice The domain separator used in the permit signature
/// @return The domain seperator used in encoding of permit signature
function DOMAIN_SEPARATOR() external view returns (bytes32);
/// @notice Approve of a specific token ID for spending by spender via signature
/// @param spender The account that is being approved
/// @param tokenId The ID of the token that is being approved for spending
/// @param deadline The deadline timestamp by which the call must be mined for the approve to work
/// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s`
/// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s`
/// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v`
function permit(
address spender,
uint256 tokenId,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external payable;
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.7.5;
/// @title Periphery Payments
/// @notice Functions to ease deposits and withdrawals of ETH
interface IPeripheryPayments {
/// @notice Unwraps the contract's WETH9 balance and sends it to recipient as ETH.
/// @dev The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users.
/// @param amountMinimum The minimum amount of WETH9 to unwrap
/// @param recipient The address receiving ETH
function unwrapWETH9(uint256 amountMinimum, address recipient) external payable;
/// @notice Refunds any ETH balance held by this contract to the `msg.sender`
/// @dev Useful for bundling with mint or increase liquidity that uses ether, or exact output swaps
/// that use ether for the input amount
function refundETH() external payable;
/// @notice Transfers the full amount of a token held by this contract to recipient
/// @dev The amountMinimum parameter prevents malicious contracts from stealing the token from users
/// @param token The contract address of the token which will be transferred to `recipient`
/// @param amountMinimum The minimum amount of token required for a transfer
/// @param recipient The destination address of the token
function sweepToken(
address token,
uint256 amountMinimum,
address recipient
) external payable;
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;
/// @title Immutable state
/// @notice Functions that return immutable state of the router
interface IPeripheryImmutableState {
/// @return Returns the address of the Uniswap V3 factory
function factory() external view returns (address);
/// @return Returns the address of WETH9
function WETH9() external view returns (address);
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;
/// @title Provides functions for deriving a pool address from the factory, tokens, and the fee
library PoolAddress {
bytes32 internal constant POOL_INIT_CODE_HASH = 0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54;
/// @notice The identifying key of the pool
struct PoolKey {
address token0;
address token1;
uint24 fee;
}
/// @notice Returns PoolKey: the ordered tokens with the matched fee levels
/// @param tokenA The first token of a pool, unsorted
/// @param tokenB The second token of a pool, unsorted
/// @param fee The fee level of the pool
/// @return Poolkey The pool details with ordered token0 and token1 assignments
function getPoolKey(
address tokenA,
address tokenB,
uint24 fee
) internal pure returns (PoolKey memory) {
if (tokenA > tokenB) (tokenA, tokenB) = (tokenB, tokenA);
return PoolKey({token0: tokenA, token1: tokenB, fee: fee});
}
/// @notice Deterministically computes the pool address given the factory and PoolKey
/// @param factory The Uniswap V3 factory contract address
/// @param key The PoolKey
/// @return pool The contract address of the V3 pool
function computeAddress(address factory, PoolKey memory key) internal pure returns (address pool) {
require(key.token0 < key.token1);
pool = address(
uint256(
keccak256(
abi.encodePacked(
hex'ff',
factory,
keccak256(abi.encode(key.token0, key.token1, key.fee)),
POOL_INIT_CODE_HASH
)
)
)
);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
import "../../introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.7.6;
pragma abicoder v2;
/// @notice IExchangeManager is a generalized interface for all the liquidity managers
/// @dev Contains all necessary methods that should be available in liquidity manager contracts
interface IExchangeManager {
struct DepositParams {
address recipient;
address exchangeManagerAddress;
address token0;
address token1;
uint256 amount0Desired;
uint256 amount1Desired;
uint256 tokenId;
}
struct WithdrawParams {
bool pilotToken;
bool wethToken;
address exchangeManagerAddress;
uint256 liquidity;
uint256 tokenId;
}
struct CollectParams {
bool pilotToken;
bool wethToken;
address exchangeManagerAddress;
uint256 tokenId;
}
function createPair(
address _token0,
address _token1,
bytes calldata data
) external;
function deposit(
address token0,
address token1,
uint256 amount0,
uint256 amount1,
uint256 shares,
uint256 tokenId,
bool isTokenMinted,
bytes calldata data
) external payable;
function withdraw(
bool pilotToken,
bool wethToken,
uint256 liquidity,
uint256 tokenId,
bytes calldata data
) external;
function getReserves(
address token0,
address token1,
bytes calldata data
)
external
returns (
uint256 shares,
uint256 amount0,
uint256 amount1
);
function collect(
bool pilotToken,
bool wethToken,
uint256 tokenId,
bytes calldata data
) external payable;
}// SPDX-License-Identifier: MIT
pragma solidity =0.7.6;
import "./IERC20Permit.sol";
interface IERC20 is IERC20Permit {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transfer(address recipient, uint256 amount) external returns (bool);
function mint(address to, uint256 value) external;
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
function burn(uint256 value) external returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over `owner`'s tokens,
* given `owner`'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for `permit`, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.7.6;
import "./ILixirVaultToken.sol";
import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol";
interface ILixirVault is ILixirVaultToken {
function initialize(
string memory name,
string memory symbol,
address _token0,
address _token1,
address _strategist,
address _keeper,
address _strategy
) external;
function token0() external view returns (IERC20);
function token1() external view returns (IERC20);
function activeFee() external view returns (uint24);
function activePool() external view returns (IUniswapV3Pool);
function performanceFee() external view returns (uint24);
function strategist() external view returns (address);
function strategy() external view returns (address);
function keeper() external view returns (address);
function setKeeper(address _keeper) external;
function setStrategist(address _strategist) external;
function setStrategy(address _strategy) external;
function setPerformanceFee(uint24 newFee) external;
function mainPosition() external view returns (int24 tickLower, int24 tickUpper);
function rangePosition() external view returns (int24 tickLower, int24 tickUpper);
function rebalance(
int24 mainTickLower,
int24 mainTickUpper,
int24 rangeTickLower0,
int24 rangeTickUpper0,
int24 rangeTickLower1,
int24 rangeTickUpper1,
uint24 fee
) external;
function withdraw(
uint256 shares,
uint256 amount0Min,
uint256 amount1Min,
address receiver,
uint256 deadline
) external returns (uint256 amount0Out, uint256 amount1Out);
function withdrawFrom(
address withdrawer,
uint256 shares,
uint256 amount0Min,
uint256 amount1Min,
address recipient,
uint256 deadline
) external returns (uint256 amount0Out, uint256 amount1Out);
function deposit(
uint256 amount0Desired,
uint256 amount1Desired,
uint256 amount0Min,
uint256 amount1Min,
address recipient,
uint256 deadline
)
external
returns (
uint256 shares,
uint256 amount0,
uint256 amount1
);
function calculateTotals()
external
view
returns (
uint256 total0,
uint256 total1,
uint128 mL,
uint128 rL
);
function calculateTotalsFromTick(int24 virtualTick)
external
view
returns (
uint256 total0,
uint256 total1,
uint128 mL,
uint128 rL
);
}// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.7.0;
import "../external/IERC20.sol";
interface ILixirVaultToken is IERC20 {}// 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: 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 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 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;
/// @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 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);
}{
"metadata": {
"bytecodeHash": "none"
},
"optimizer": {
"enabled": true,
"runs": 800
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_unipilot","type":"address"},{"internalType":"address","name":"_exchangeManager","type":"address"},{"internalType":"address","name":"_positionManager","type":"address"},{"internalType":"address","name":"_uniswapFactory","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"lixirVault","type":"address"},{"indexed":false,"internalType":"address","name":"unipilotVault","type":"address"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"unipilotId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"LiquidityMigratedFromLixir","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"popsicleVault","type":"address"},{"indexed":false,"internalType":"address","name":"unipilotVault","type":"address"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"unipilotId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"LiquidityMigratedFromPopsicle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pairV2","type":"address"},{"indexed":false,"internalType":"address","name":"unipilotVault","type":"address"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"unipilotId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"LiquidityMigratedFromV2","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"unipilotVault","type":"address"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"unipilotId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"LiquidityMigratedFromV3","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"hypervisor","type":"address"},{"indexed":false,"internalType":"address","name":"unipilotVault","type":"address"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"unipilotId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"LiquidityMigratedFromVisor","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"components":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"uint24","name":"fee","type":"uint24"},{"internalType":"uint8","name":"percentageToMigrate","type":"uint8"},{"internalType":"uint256","name":"liquidityToMigrate","type":"uint256"},{"internalType":"uint256","name":"sqrtPriceX96","type":"uint256"},{"internalType":"uint256","name":"unipilotTokenId","type":"uint256"},{"internalType":"bool","name":"refundAsETH","type":"bool"}],"internalType":"struct ILiquidityMigrator.MigrateV2Params","name":"params","type":"tuple"}],"name":"migrateLixirLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"uint24","name":"fee","type":"uint24"},{"internalType":"uint8","name":"percentageToMigrate","type":"uint8"},{"internalType":"uint256","name":"liquidityToMigrate","type":"uint256"},{"internalType":"uint256","name":"sqrtPriceX96","type":"uint256"},{"internalType":"uint256","name":"unipilotTokenId","type":"uint256"},{"internalType":"bool","name":"refundAsETH","type":"bool"}],"internalType":"struct ILiquidityMigrator.MigrateV2Params","name":"params","type":"tuple"}],"name":"migratePopsicleLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"uint24","name":"fee","type":"uint24"},{"internalType":"uint8","name":"percentageToMigrate","type":"uint8"},{"internalType":"uint256","name":"liquidityToMigrate","type":"uint256"},{"internalType":"uint256","name":"sqrtPriceX96","type":"uint256"},{"internalType":"uint256","name":"unipilotTokenId","type":"uint256"},{"internalType":"bool","name":"refundAsETH","type":"bool"}],"internalType":"struct ILiquidityMigrator.MigrateV2Params","name":"params","type":"tuple"}],"name":"migrateV2Liquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"uint24","name":"fee","type":"uint24"},{"internalType":"uint8","name":"percentageToMigrate","type":"uint8"},{"internalType":"uint256","name":"sqrtPriceX96","type":"uint256"},{"internalType":"uint256","name":"uniswapTokenId","type":"uint256"},{"internalType":"uint256","name":"unipilotTokenId","type":"uint256"},{"internalType":"bool","name":"refundAsETH","type":"bool"}],"internalType":"struct ILiquidityMigrator.MigrateV3Params","name":"params","type":"tuple"}],"name":"migrateV3Liquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"uint24","name":"fee","type":"uint24"},{"internalType":"uint8","name":"percentageToMigrate","type":"uint8"},{"internalType":"uint256","name":"liquidityToMigrate","type":"uint256"},{"internalType":"uint256","name":"sqrtPriceX96","type":"uint256"},{"internalType":"uint256","name":"unipilotTokenId","type":"uint256"},{"internalType":"bool","name":"refundAsETH","type":"bool"}],"internalType":"struct ILiquidityMigrator.MigrateV2Params","name":"params","type":"tuple"}],"name":"migrateVisorLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_unipilot","type":"address"},{"internalType":"address","name":"_exchangeManager","type":"address"}],"name":"setCoreAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c06040523480156200001157600080fd5b506040516200274e3803806200274e83398101604081905262000034916200009d565b6001600160601b0319606091821b811660a05291901b16608052600180546001600160a01b039283166001600160a01b03199182161790915560008054929093169116179055620000f9565b80516001600160a01b03811681146200009857600080fd5b919050565b60008060008060808587031215620000b3578384fd5b620000be8562000080565b9350620000ce6020860162000080565b9250620000de6040860162000080565b9150620000ee6060860162000080565b905092959194509250565b60805160601c60a05160601c6126266200012860003980611a215250806101ce528061027352506126266000f3fe6080604052600436106100735760003560e01c8063597e93b01161004e578063597e93b0146100f257806361bec2aa146101125780638b9a127114610132578063aad57106146101525761007a565b80623cffd41461007c578063150b7a021461009c57806337c974f0146100d25761007a565b3661007a57005b005b34801561008857600080fd5b5061007a6100973660046120bd565b610172565b3480156100a857600080fd5b506100bc6100b7366004611fd3565b6106f5565b6040516100c991906123e0565b60405180910390f35b3480156100de57600080fd5b5061007a6100ed366004611f9b565b610706565b3480156100fe57600080fd5b5061007a61010d3660046120a5565b610800565b34801561011e57600080fd5b5061007a61012d3660046120a5565b610b60565b34801561013e57600080fd5b5061007a61014d3660046120a5565b610ee4565b34801561015e57600080fd5b5061007a61016d3660046120a5565b611145565b6000610184608083016060840161213b565b60ff161180156101a7575060646101a1608083016060840161213b565b60ff1611155b6101cc5760405162461bcd60e51b81526004016101c39061240d565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0381166342842e0e6102046113a3565b308560a001356040518463ffffffff1660e01b8152600401610228939291906122ef565b600060405180830381600087803b15801561024257600080fd5b505af1158015610256573d6000803e3d6000fd5b505060405163133f757160e31b8152600092506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001691506399fbab88906102ad9060a0870135906004016125a6565b6101806040518083038186803b1580156102c657600080fd5b505afa1580156102da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102fe919061215c565b50505050975050505050505050816001600160a01b0316630c49ccbe6040518060a001604052808660a001358152602001846fffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001426078018152506040518263ffffffff1660e01b81526004016103789190612492565b6040805180830381600087803b15801561039157600080fd5b505af11580156103a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103c991906120eb565b50506040805160808101825260a085013581523060208201526fffffffffffffffffffffffffffffffff8183018190526060820152905163fc6f786560e01b815260009182916001600160a01b0386169163fc6f78659161042d9190600401612446565b6040805180830381600087803b15801561044657600080fd5b505af115801561045a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061047e91906120eb565b9092509050600060646104a461049a6080890160608a0161213b565b859060ff166113a7565b816104ab57fe5b049050600060646104c561049a60808a0160608b0161213b565b816104cc57fe5b0490506104e56104df6020890189611f5c565b836113d1565b6104fe6104f86040890160208a01611f5c565b826113d1565b6000806000806105a760405180610100016040528061051b6113a3565b6001600160a01b03168152602090810190610538908f018f611f5c565b6001600160a01b031681526020018d60200160208101906105599190611f5c565b6001600160a01b031681526020018d604001602081019061057a91906120cf565b62ffffff1681526020018881526020018781526020018d60c0013581526020018d608001358152506113ed565b93509350935093506106406040518061012001604052808d60000160208101906105d19190611f5c565b6001600160a01b031681526020018d60200160208101906105f29190611f5c565b6001600160a01b031681526020018581526020018481526020018a81526020018981526020018881526020018781526020018d60e0016020810190610637919061206d565b151590526116d7565b604051630852cd8d60e31b81526001600160a01b038b16906342966c68906106709060a08f0135906004016125a6565b600060405180830381600087803b15801561068a57600080fd5b505af115801561069e573d6000803e3d6000fd5b505050507f41e51695be1b9788bded4fa17f74e9771801e1a4e1daab376c94437382802df4846106cc6113a3565b8386866040516106e095949392919061234e565b60405180910390a15050505050505050505050565b630a85bd0160e11b95945050505050565b60008054906101000a90046001600160a01b03166001600160a01b0316635aa6e6756040518163ffffffff1660e01b815260040160206040518083038186803b15801561075257600080fd5b505afa158015610766573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078a9190611f7f565b6001600160a01b0316336001600160a01b0316146107ba5760405162461bcd60e51b81526004016101c39061242a565b600080546001600160a01b039384167fffffffffffffffffffffffff00000000000000000000000000000000000000009182161790915560018054929093169116179055565b600061081260a083016080840161213b565b60ff161180156108355750606461082f60a083016080840161213b565b60ff1611155b6108515760405162461bcd60e51b81526004016101c39061240d565b6000806108616020840184611f5c565b6001600160a01b0316639fef182b6108776113a3565b8560a0013560008030426078016040518763ffffffff1660e01b81526004016108a596959493929190612313565b6040805180830381600087803b1580156108be57600080fd5b505af11580156108d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f691906120eb565b9092509050600080808061092a6109136040890160208a01611f5c565b61092360608a0160408b01611f5c565b8888611810565b935093509350935073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561098157600080fd5b505af1158015610995573d6000803e3d6000fd5b5050505050600060646109be8960800160208101906109b4919061213b565b849060ff166113a7565b816109c557fe5b049050600060646109e96109df60a08c0160808d0161213b565b879060ff166113a7565b816109f057fe5b0490506109fd84836113d1565b610a0786826113d1565b600080600080610a90604051806101000160405280610a246113a3565b6001600160a01b031681526020018c6001600160a01b031681526020018a6001600160a01b031681526020018f6060016020810190610a6391906120cf565b62ffffff1681526020018781526020018881526020018f60e0013581526020018f60c001358152506113ed565b9350935093509350610afd6040518061012001604052808c6001600160a01b031681526020018a6001600160a01b031681526020018581526020018481526020018b81526020018981526020018781526020018881526020018f610100016020810190610637919061206d565b7f0abb9ef7cb1e776f779abc5222f0391b778e4615d8158f9f2f76cc3fb5bd46eb610b2b60208f018f611f5c565b85610b346113a3565b848787604051610b499695949392919061237f565b60405180910390a150505050505050505050505050565b6000610b7260a083016080840161213b565b60ff16118015610b9557506064610b8f60a083016080840161213b565b60ff1611155b610bb15760405162461bcd60e51b81526004016101c39061240d565b610bbe6020820182611f5c565b6001600160a01b03166323b872dd610bd46113a3565b610be16020850185611f5c565b8460a001356040518463ffffffff1660e01b8152600401610c04939291906122ef565b602060405180830381600087803b158015610c1e57600080fd5b505af1158015610c32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c569190612089565b50600080610c676020840184611f5c565b6001600160a01b03166389afcb44306040518263ffffffff1660e01b8152600401610c9291906122db565b6040805180830381600087803b158015610cab57600080fd5b505af1158015610cbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce391906120eb565b909250905060006064610cff61049a60a087016080880161213b565b81610d0657fe5b04905060006064610d2061049a60a088016080890161213b565b81610d2757fe5b049050610d3d6104df6040870160208801611f5c565b610d506104f86060870160408801611f5c565b600080600080610df7604051806101000160405280610d6d6113a3565b6001600160a01b031681526020018b6020016020810190610d8e9190611f5c565b6001600160a01b03168152602001610dac60608d0160408e01611f5c565b6001600160a01b03168152602001610dca60808d0160608e016120cf565b62ffffff1681526020018881526020018781526020018b60e0013581526020018b60c001358152506113ed565b9350935093509350610e856040518061012001604052808b6020016020810190610e219190611f5c565b6001600160a01b03168152602001610e3f60608d0160408e01611f5c565b6001600160a01b031681526020018581526020018481526020018a81526020018981526020018881526020018781526020018b610100016020810190610637919061206d565b7f66ce08ea5dd533803e6984bf218e05f644d462aadb9e89c6b37ea95a905c56f9610eb360208b018b611f5c565b85610ebc6113a3565b848787604051610ed19695949392919061237f565b60405180910390a1505050505050505050565b6000610ef660a083016080840161213b565b60ff16118015610f1957506064610f1360a083016080840161213b565b60ff1611155b610f355760405162461bcd60e51b81526004016101c39061240d565b610f426020820182611f5c565b6001600160a01b03166323b872dd610f586113a3565b308460a001356040518463ffffffff1660e01b8152600401610f7c939291906122ef565b602060405180830381600087803b158015610f9657600080fd5b505af1158015610faa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fce9190612089565b50600080610fdf6020840184611f5c565b6001600160a01b031663b460af948460a0013530306040518463ffffffff1660e01b8152600401611012939291906125c6565b6040805180830381600087803b15801561102b57600080fd5b505af115801561103f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106391906120eb565b90925090506000606461107f61049a60a087016080880161213b565b8161108657fe5b049050600060646110a061049a60a088016080890161213b565b816110a757fe5b0490506110bd6104df6040870160208801611f5c565b6110d06104f86060870160408801611f5c565b6000806000806110ed604051806101000160405280610d6d6113a3565b93509350935093506111176040518061012001604052808b6020016020810190610e219190611f5c565b7f11e6f476febb96ce6a5ce1f0ef938f5e3ce02a9048a76924fd9171697bec502d610eb360208b018b611f5c565b600061115760a083016080840161213b565b60ff1611801561117a5750606461117460a083016080840161213b565b60ff1611155b6111965760405162461bcd60e51b81526004016101c39061240d565b6111a36020820182611f5c565b6001600160a01b03166323b872dd6111b96113a3565b308460a001356040518463ffffffff1660e01b81526004016111dd939291906122ef565b602060405180830381600087803b1580156111f757600080fd5b505af115801561120b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122f9190612089565b506000806112406020840184611f5c565b6001600160a01b031662f714ce8460a00135306040518363ffffffff1660e01b81526004016112709291906125af565b6040805180830381600087803b15801561128957600080fd5b505af115801561129d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c191906120eb565b9092509050600060646112dd61049a60a087016080880161213b565b816112e457fe5b049050600060646112fe61049a60a088016080890161213b565b8161130557fe5b04905061131b6104df6040870160208801611f5c565b61132e6104f86060870160408801611f5c565b60008060008061134b604051806101000160405280610d6d6113a3565b93509350935093506113756040518061012001604052808b6020016020810190610e219190611f5c565b7fed41b8a99025cec111b2d359b775bb203215ae69bb4bad5e7ee894c440db01d5610eb360208b018b611f5c565b3390565b60008215806113c2575050818102818382816113bf57fe5b04145b6113cb57600080fd5b92915050565b6000546113e99083906001600160a01b0316836118a4565b5050565b60008060008061140a856020015186604001518760600151611a07565b93506001600160a01b0384161561155357600085606001516040516020016114329190612569565b60408051601f1981840301815260005460e0840190925292506001600160a01b03169063018d6e5790806114646113a3565b6001600160a01b03168152602001600160009054906101000a90046001600160a01b03166001600160a01b0316815260200189602001516001600160a01b0316815260200189604001516001600160a01b03168152602001896080015181526020018960a0015181526020018960c00151815250836040518363ffffffff1660e01b81526004016114f692919061253f565b6040805180830381600087803b15801561150f57600080fd5b505af1158015611523573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154791906120eb565b90945092506116d09050565b6000604051806040016040528087606001518860e0015160405160200161157b929190612591565b6040516020818303038152906040528152602001876060015160006040516020016115a7929190612579565b60408051601f198184030181529181529152600054815160e081019092529192506001600160a01b03909116906388533c4090806115e36113a3565b6001600160a01b03168152602001600160009054906101000a90046001600160a01b03166001600160a01b0316815260200189602001516001600160a01b0316815260200189604001516001600160a01b03168152602001896080015181526020018960a0015181526020018960c00151815250836040518363ffffffff1660e01b81526004016116759291906124de565b606060405180830381600087803b15801561168f57600080fd5b505af11580156116a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c7919061210e565b91955093509150505b9193509193565b806080015181604001511015611773578060c00151816040015110156117135780516000805461171392916001600160a01b03909116906118a4565b8061010001518015611742575080516001600160a01b031673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2145b1561175e5761175960006117546113a3565b611ab2565b611773565b805161177390600061176e6113a3565b611bf6565b8060a001518160600151101561180d578060e00151816060015110156117b2576020810151600080546117b292916001600160a01b03909116906118a4565b80610100015180156117e4575060208101516001600160a01b031673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2145b156117fb576117f660006117546113a3565b61180d565b61180d8160200151600061176e6113a3565b50565b6000808080808080806001600160a01b038c1673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc214611846578b8b8a8c61184b565b8b8b8b8b5b935093509350935073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316846001600160a01b031614611889578382848361188e565b828185845b929f919e509c50909a5098505050505050505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1663095ea7b360e01b1781529251825160009485949389169392918291908083835b602083106119355780518252601f199092019160209182019101611916565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611997576040519150601f19603f3d011682016040523d82523d6000602084013e61199c565b606091505b50915091508180156119ca5750805115806119ca57508080602001905160208110156119c757600080fd5b50515b611a00576040805162461bcd60e51b8152602060048201526002602482015261534160f01b604482015290519081900360640190fd5b5050505050565b604051630b4c774160e11b81526000906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690631698ee8290611a5a908790879087906004016123b8565b60206040518083038186803b158015611a7257600080fd5b505afa158015611a86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aaa9190611f7f565b949350505050565b604080516370a0823160e01b8152306004820152905160009173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2916370a0823191602480820192602092909190829003018186803b158015611b0757600080fd5b505afa158015611b1b573d6000803e3d6000fd5b505050506040513d6020811015611b3157600080fd5b5051905082811015611b6f576040805162461bcd60e51b8152602060048201526002602482015261495760f01b604482015290519081900360640190fd5b8015611bf15773c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015611bcf57600080fd5b505af1158015611be3573d6000803e3d6000fd5b50505050611bf18282611cc4565b505050565b6000836001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611c4557600080fd5b505afa158015611c59573d6000803e3d6000fd5b505050506040513d6020811015611c6f57600080fd5b5051905082811015611cad576040805162461bcd60e51b8152602060048201526002602482015261125560f21b604482015290519081900360640190fd5b8015611cbe57611cbe848383611db3565b50505050565b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b60208310611d105780518252601f199092019160209182019101611cf1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611d72576040519150601f19603f3d011682016040523d82523d6000602084013e611d77565b606091505b5050905080611bf1576040805162461bcd60e51b815260206004820152600360248201526253544560e81b604482015290519081900360640190fd5b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b1781529251825160009485949389169392918291908083835b60208310611e445780518252601f199092019160209182019101611e25565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611ea6576040519150601f19603f3d011682016040523d82523d6000602084013e611eab565b606091505b5091509150818015611ed9575080511580611ed95750808060200190516020811015611ed657600080fd5b50515b611a00576040805162461bcd60e51b815260206004820152600260248201526114d560f21b604482015290519081900360640190fd5b8051611f1a816125e5565b919050565b8051600281900b8114611f1a57600080fd5b80516fffffffffffffffffffffffffffffffff81168114611f1a57600080fd5b8051611f1a81612608565b600060208284031215611f6d578081fd5b8135611f78816125e5565b9392505050565b600060208284031215611f90578081fd5b8151611f78816125e5565b60008060408385031215611fad578081fd5b8235611fb8816125e5565b91506020830135611fc8816125e5565b809150509250929050565b600080600080600060808688031215611fea578081fd5b8535611ff5816125e5565b94506020860135612005816125e5565b935060408601359250606086013567ffffffffffffffff80821115612028578283fd5b818801915088601f83011261203b578283fd5b813581811115612049578384fd5b89602082850101111561205a578384fd5b9699959850939650602001949392505050565b60006020828403121561207e578081fd5b8135611f78816125fa565b60006020828403121561209a578081fd5b8151611f78816125fa565b600061012082840312156120b7578081fd5b50919050565b600061010082840312156120b7578081fd5b6000602082840312156120e0578081fd5b8135611f7881612608565b600080604083850312156120fd578182fd5b505080516020909101519092909150565b600080600060608486031215612122578283fd5b8351925060208401519150604084015190509250925092565b60006020828403121561214c578081fd5b813560ff81168114611f78578182fd5b6000806000806000806000806000806000806101808d8f03121561217e57898afd5b8c516bffffffffffffffffffffffff81168114612199578a8bfd5b9b506121a760208e01611f0f565b9a506121b560408e01611f0f565b99506121c360608e01611f0f565b98506121d160808e01611f51565b97506121df60a08e01611f1f565b96506121ed60c08e01611f1f565b95506121fb60e08e01611f31565b94506101008d015193506101208d0151925061221a6101408e01611f31565b91506122296101608e01611f31565b90509295989b509295989b509295989b565b60008151808452815b8181101561226057602081850181015186830182015201612244565b818111156122715782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03808251168352806020830151166020840152806040830151166040840152806060830151166060840152506080810151608083015260a081015160a083015260c081015160c08301525050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b6001600160a01b03958616815293909416602084015260408301919091526060820152608081019190915260a00190565b6001600160a01b03968716815294861660208601529290941660408401526060830152608082019290925260a081019190915260c00190565b6001600160a01b03938416815291909216602082015262ffffff909116604082015260600190565b7fffffffff0000000000000000000000000000000000000000000000000000000091909116815260200190565b60208082526003908201526249504160e81b604082015260600190565b6020808252600290820152614e4760f01b604082015260600190565b815181526020808301516001600160a01b0316908201526040808301516fffffffffffffffffffffffffffffffff90811691830191909152606092830151169181019190915260800190565b600060a082019050825182526fffffffffffffffffffffffffffffffff602084015116602083015260408301516040830152606083015160608301526080830151608083015292915050565b60006101008083016124f08487612286565b60e0840191909152610140830184835b60028110156125335760ff1986840301845261251d83835161223b565b6020948501949093509190910190600101612500565b50909695505050505050565b600061010061254e8386612286565b8060e08401526125608184018561223b565b95945050505050565b62ffffff91909116815260200190565b62ffffff92909216825260ff16602082015260400190565b62ffffff929092168252602082015260400190565b90815260200190565b9182526001600160a01b0316602082015260400190565b9283526001600160a01b03918216602084015216604082015260600190565b6001600160a01b038116811461180d57600080fd5b801515811461180d57600080fd5b62ffffff8116811461180d57600080fdfea164736f6c6343000706000a000000000000000000000000de5bf92e3372aa59c73ca7dfc6cec599e1b2b08c000000000000000000000000a7979d0592ecfc59b082552828ff36209ec94b11000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe880000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f984
Deployed Bytecode
0x6080604052600436106100735760003560e01c8063597e93b01161004e578063597e93b0146100f257806361bec2aa146101125780638b9a127114610132578063aad57106146101525761007a565b80623cffd41461007c578063150b7a021461009c57806337c974f0146100d25761007a565b3661007a57005b005b34801561008857600080fd5b5061007a6100973660046120bd565b610172565b3480156100a857600080fd5b506100bc6100b7366004611fd3565b6106f5565b6040516100c991906123e0565b60405180910390f35b3480156100de57600080fd5b5061007a6100ed366004611f9b565b610706565b3480156100fe57600080fd5b5061007a61010d3660046120a5565b610800565b34801561011e57600080fd5b5061007a61012d3660046120a5565b610b60565b34801561013e57600080fd5b5061007a61014d3660046120a5565b610ee4565b34801561015e57600080fd5b5061007a61016d3660046120a5565b611145565b6000610184608083016060840161213b565b60ff161180156101a7575060646101a1608083016060840161213b565b60ff1611155b6101cc5760405162461bcd60e51b81526004016101c39061240d565b60405180910390fd5b7f000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe886001600160a01b0381166342842e0e6102046113a3565b308560a001356040518463ffffffff1660e01b8152600401610228939291906122ef565b600060405180830381600087803b15801561024257600080fd5b505af1158015610256573d6000803e3d6000fd5b505060405163133f757160e31b8152600092506001600160a01b037f000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe881691506399fbab88906102ad9060a0870135906004016125a6565b6101806040518083038186803b1580156102c657600080fd5b505afa1580156102da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102fe919061215c565b50505050975050505050505050816001600160a01b0316630c49ccbe6040518060a001604052808660a001358152602001846fffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001426078018152506040518263ffffffff1660e01b81526004016103789190612492565b6040805180830381600087803b15801561039157600080fd5b505af11580156103a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103c991906120eb565b50506040805160808101825260a085013581523060208201526fffffffffffffffffffffffffffffffff8183018190526060820152905163fc6f786560e01b815260009182916001600160a01b0386169163fc6f78659161042d9190600401612446565b6040805180830381600087803b15801561044657600080fd5b505af115801561045a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061047e91906120eb565b9092509050600060646104a461049a6080890160608a0161213b565b859060ff166113a7565b816104ab57fe5b049050600060646104c561049a60808a0160608b0161213b565b816104cc57fe5b0490506104e56104df6020890189611f5c565b836113d1565b6104fe6104f86040890160208a01611f5c565b826113d1565b6000806000806105a760405180610100016040528061051b6113a3565b6001600160a01b03168152602090810190610538908f018f611f5c565b6001600160a01b031681526020018d60200160208101906105599190611f5c565b6001600160a01b031681526020018d604001602081019061057a91906120cf565b62ffffff1681526020018881526020018781526020018d60c0013581526020018d608001358152506113ed565b93509350935093506106406040518061012001604052808d60000160208101906105d19190611f5c565b6001600160a01b031681526020018d60200160208101906105f29190611f5c565b6001600160a01b031681526020018581526020018481526020018a81526020018981526020018881526020018781526020018d60e0016020810190610637919061206d565b151590526116d7565b604051630852cd8d60e31b81526001600160a01b038b16906342966c68906106709060a08f0135906004016125a6565b600060405180830381600087803b15801561068a57600080fd5b505af115801561069e573d6000803e3d6000fd5b505050507f41e51695be1b9788bded4fa17f74e9771801e1a4e1daab376c94437382802df4846106cc6113a3565b8386866040516106e095949392919061234e565b60405180910390a15050505050505050505050565b630a85bd0160e11b95945050505050565b60008054906101000a90046001600160a01b03166001600160a01b0316635aa6e6756040518163ffffffff1660e01b815260040160206040518083038186803b15801561075257600080fd5b505afa158015610766573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061078a9190611f7f565b6001600160a01b0316336001600160a01b0316146107ba5760405162461bcd60e51b81526004016101c39061242a565b600080546001600160a01b039384167fffffffffffffffffffffffff00000000000000000000000000000000000000009182161790915560018054929093169116179055565b600061081260a083016080840161213b565b60ff161180156108355750606461082f60a083016080840161213b565b60ff1611155b6108515760405162461bcd60e51b81526004016101c39061240d565b6000806108616020840184611f5c565b6001600160a01b0316639fef182b6108776113a3565b8560a0013560008030426078016040518763ffffffff1660e01b81526004016108a596959493929190612313565b6040805180830381600087803b1580156108be57600080fd5b505af11580156108d2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f691906120eb565b9092509050600080808061092a6109136040890160208a01611f5c565b61092360608a0160408b01611f5c565b8888611810565b935093509350935073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561098157600080fd5b505af1158015610995573d6000803e3d6000fd5b5050505050600060646109be8960800160208101906109b4919061213b565b849060ff166113a7565b816109c557fe5b049050600060646109e96109df60a08c0160808d0161213b565b879060ff166113a7565b816109f057fe5b0490506109fd84836113d1565b610a0786826113d1565b600080600080610a90604051806101000160405280610a246113a3565b6001600160a01b031681526020018c6001600160a01b031681526020018a6001600160a01b031681526020018f6060016020810190610a6391906120cf565b62ffffff1681526020018781526020018881526020018f60e0013581526020018f60c001358152506113ed565b9350935093509350610afd6040518061012001604052808c6001600160a01b031681526020018a6001600160a01b031681526020018581526020018481526020018b81526020018981526020018781526020018881526020018f610100016020810190610637919061206d565b7f0abb9ef7cb1e776f779abc5222f0391b778e4615d8158f9f2f76cc3fb5bd46eb610b2b60208f018f611f5c565b85610b346113a3565b848787604051610b499695949392919061237f565b60405180910390a150505050505050505050505050565b6000610b7260a083016080840161213b565b60ff16118015610b9557506064610b8f60a083016080840161213b565b60ff1611155b610bb15760405162461bcd60e51b81526004016101c39061240d565b610bbe6020820182611f5c565b6001600160a01b03166323b872dd610bd46113a3565b610be16020850185611f5c565b8460a001356040518463ffffffff1660e01b8152600401610c04939291906122ef565b602060405180830381600087803b158015610c1e57600080fd5b505af1158015610c32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c569190612089565b50600080610c676020840184611f5c565b6001600160a01b03166389afcb44306040518263ffffffff1660e01b8152600401610c9291906122db565b6040805180830381600087803b158015610cab57600080fd5b505af1158015610cbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce391906120eb565b909250905060006064610cff61049a60a087016080880161213b565b81610d0657fe5b04905060006064610d2061049a60a088016080890161213b565b81610d2757fe5b049050610d3d6104df6040870160208801611f5c565b610d506104f86060870160408801611f5c565b600080600080610df7604051806101000160405280610d6d6113a3565b6001600160a01b031681526020018b6020016020810190610d8e9190611f5c565b6001600160a01b03168152602001610dac60608d0160408e01611f5c565b6001600160a01b03168152602001610dca60808d0160608e016120cf565b62ffffff1681526020018881526020018781526020018b60e0013581526020018b60c001358152506113ed565b9350935093509350610e856040518061012001604052808b6020016020810190610e219190611f5c565b6001600160a01b03168152602001610e3f60608d0160408e01611f5c565b6001600160a01b031681526020018581526020018481526020018a81526020018981526020018881526020018781526020018b610100016020810190610637919061206d565b7f66ce08ea5dd533803e6984bf218e05f644d462aadb9e89c6b37ea95a905c56f9610eb360208b018b611f5c565b85610ebc6113a3565b848787604051610ed19695949392919061237f565b60405180910390a1505050505050505050565b6000610ef660a083016080840161213b565b60ff16118015610f1957506064610f1360a083016080840161213b565b60ff1611155b610f355760405162461bcd60e51b81526004016101c39061240d565b610f426020820182611f5c565b6001600160a01b03166323b872dd610f586113a3565b308460a001356040518463ffffffff1660e01b8152600401610f7c939291906122ef565b602060405180830381600087803b158015610f9657600080fd5b505af1158015610faa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fce9190612089565b50600080610fdf6020840184611f5c565b6001600160a01b031663b460af948460a0013530306040518463ffffffff1660e01b8152600401611012939291906125c6565b6040805180830381600087803b15801561102b57600080fd5b505af115801561103f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106391906120eb565b90925090506000606461107f61049a60a087016080880161213b565b8161108657fe5b049050600060646110a061049a60a088016080890161213b565b816110a757fe5b0490506110bd6104df6040870160208801611f5c565b6110d06104f86060870160408801611f5c565b6000806000806110ed604051806101000160405280610d6d6113a3565b93509350935093506111176040518061012001604052808b6020016020810190610e219190611f5c565b7f11e6f476febb96ce6a5ce1f0ef938f5e3ce02a9048a76924fd9171697bec502d610eb360208b018b611f5c565b600061115760a083016080840161213b565b60ff1611801561117a5750606461117460a083016080840161213b565b60ff1611155b6111965760405162461bcd60e51b81526004016101c39061240d565b6111a36020820182611f5c565b6001600160a01b03166323b872dd6111b96113a3565b308460a001356040518463ffffffff1660e01b81526004016111dd939291906122ef565b602060405180830381600087803b1580156111f757600080fd5b505af115801561120b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122f9190612089565b506000806112406020840184611f5c565b6001600160a01b031662f714ce8460a00135306040518363ffffffff1660e01b81526004016112709291906125af565b6040805180830381600087803b15801561128957600080fd5b505af115801561129d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c191906120eb565b9092509050600060646112dd61049a60a087016080880161213b565b816112e457fe5b049050600060646112fe61049a60a088016080890161213b565b8161130557fe5b04905061131b6104df6040870160208801611f5c565b61132e6104f86060870160408801611f5c565b60008060008061134b604051806101000160405280610d6d6113a3565b93509350935093506113756040518061012001604052808b6020016020810190610e219190611f5c565b7fed41b8a99025cec111b2d359b775bb203215ae69bb4bad5e7ee894c440db01d5610eb360208b018b611f5c565b3390565b60008215806113c2575050818102818382816113bf57fe5b04145b6113cb57600080fd5b92915050565b6000546113e99083906001600160a01b0316836118a4565b5050565b60008060008061140a856020015186604001518760600151611a07565b93506001600160a01b0384161561155357600085606001516040516020016114329190612569565b60408051601f1981840301815260005460e0840190925292506001600160a01b03169063018d6e5790806114646113a3565b6001600160a01b03168152602001600160009054906101000a90046001600160a01b03166001600160a01b0316815260200189602001516001600160a01b0316815260200189604001516001600160a01b03168152602001896080015181526020018960a0015181526020018960c00151815250836040518363ffffffff1660e01b81526004016114f692919061253f565b6040805180830381600087803b15801561150f57600080fd5b505af1158015611523573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061154791906120eb565b90945092506116d09050565b6000604051806040016040528087606001518860e0015160405160200161157b929190612591565b6040516020818303038152906040528152602001876060015160006040516020016115a7929190612579565b60408051601f198184030181529181529152600054815160e081019092529192506001600160a01b03909116906388533c4090806115e36113a3565b6001600160a01b03168152602001600160009054906101000a90046001600160a01b03166001600160a01b0316815260200189602001516001600160a01b0316815260200189604001516001600160a01b03168152602001896080015181526020018960a0015181526020018960c00151815250836040518363ffffffff1660e01b81526004016116759291906124de565b606060405180830381600087803b15801561168f57600080fd5b505af11580156116a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c7919061210e565b91955093509150505b9193509193565b806080015181604001511015611773578060c00151816040015110156117135780516000805461171392916001600160a01b03909116906118a4565b8061010001518015611742575080516001600160a01b031673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2145b1561175e5761175960006117546113a3565b611ab2565b611773565b805161177390600061176e6113a3565b611bf6565b8060a001518160600151101561180d578060e00151816060015110156117b2576020810151600080546117b292916001600160a01b03909116906118a4565b80610100015180156117e4575060208101516001600160a01b031673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2145b156117fb576117f660006117546113a3565b61180d565b61180d8160200151600061176e6113a3565b50565b6000808080808080806001600160a01b038c1673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc214611846578b8b8a8c61184b565b8b8b8b8b5b935093509350935073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316846001600160a01b031614611889578382848361188e565b828185845b929f919e509c50909a5098505050505050505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1663095ea7b360e01b1781529251825160009485949389169392918291908083835b602083106119355780518252601f199092019160209182019101611916565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611997576040519150601f19603f3d011682016040523d82523d6000602084013e61199c565b606091505b50915091508180156119ca5750805115806119ca57508080602001905160208110156119c757600080fd5b50515b611a00576040805162461bcd60e51b8152602060048201526002602482015261534160f01b604482015290519081900360640190fd5b5050505050565b604051630b4c774160e11b81526000906001600160a01b037f0000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f9841690631698ee8290611a5a908790879087906004016123b8565b60206040518083038186803b158015611a7257600080fd5b505afa158015611a86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aaa9190611f7f565b949350505050565b604080516370a0823160e01b8152306004820152905160009173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2916370a0823191602480820192602092909190829003018186803b158015611b0757600080fd5b505afa158015611b1b573d6000803e3d6000fd5b505050506040513d6020811015611b3157600080fd5b5051905082811015611b6f576040805162461bcd60e51b8152602060048201526002602482015261495760f01b604482015290519081900360640190fd5b8015611bf15773c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015611bcf57600080fd5b505af1158015611be3573d6000803e3d6000fd5b50505050611bf18282611cc4565b505050565b6000836001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015611c4557600080fd5b505afa158015611c59573d6000803e3d6000fd5b505050506040513d6020811015611c6f57600080fd5b5051905082811015611cad576040805162461bcd60e51b8152602060048201526002602482015261125560f21b604482015290519081900360640190fd5b8015611cbe57611cbe848383611db3565b50505050565b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b60208310611d105780518252601f199092019160209182019101611cf1565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611d72576040519150601f19603f3d011682016040523d82523d6000602084013e611d77565b606091505b5050905080611bf1576040805162461bcd60e51b815260206004820152600360248201526253544560e81b604482015290519081900360640190fd5b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b1781529251825160009485949389169392918291908083835b60208310611e445780518252601f199092019160209182019101611e25565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611ea6576040519150601f19603f3d011682016040523d82523d6000602084013e611eab565b606091505b5091509150818015611ed9575080511580611ed95750808060200190516020811015611ed657600080fd5b50515b611a00576040805162461bcd60e51b815260206004820152600260248201526114d560f21b604482015290519081900360640190fd5b8051611f1a816125e5565b919050565b8051600281900b8114611f1a57600080fd5b80516fffffffffffffffffffffffffffffffff81168114611f1a57600080fd5b8051611f1a81612608565b600060208284031215611f6d578081fd5b8135611f78816125e5565b9392505050565b600060208284031215611f90578081fd5b8151611f78816125e5565b60008060408385031215611fad578081fd5b8235611fb8816125e5565b91506020830135611fc8816125e5565b809150509250929050565b600080600080600060808688031215611fea578081fd5b8535611ff5816125e5565b94506020860135612005816125e5565b935060408601359250606086013567ffffffffffffffff80821115612028578283fd5b818801915088601f83011261203b578283fd5b813581811115612049578384fd5b89602082850101111561205a578384fd5b9699959850939650602001949392505050565b60006020828403121561207e578081fd5b8135611f78816125fa565b60006020828403121561209a578081fd5b8151611f78816125fa565b600061012082840312156120b7578081fd5b50919050565b600061010082840312156120b7578081fd5b6000602082840312156120e0578081fd5b8135611f7881612608565b600080604083850312156120fd578182fd5b505080516020909101519092909150565b600080600060608486031215612122578283fd5b8351925060208401519150604084015190509250925092565b60006020828403121561214c578081fd5b813560ff81168114611f78578182fd5b6000806000806000806000806000806000806101808d8f03121561217e57898afd5b8c516bffffffffffffffffffffffff81168114612199578a8bfd5b9b506121a760208e01611f0f565b9a506121b560408e01611f0f565b99506121c360608e01611f0f565b98506121d160808e01611f51565b97506121df60a08e01611f1f565b96506121ed60c08e01611f1f565b95506121fb60e08e01611f31565b94506101008d015193506101208d0151925061221a6101408e01611f31565b91506122296101608e01611f31565b90509295989b509295989b509295989b565b60008151808452815b8181101561226057602081850181015186830182015201612244565b818111156122715782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b03808251168352806020830151166020840152806040830151166040840152806060830151166060840152506080810151608083015260a081015160a083015260c081015160c08301525050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b6001600160a01b03958616815293909416602084015260408301919091526060820152608081019190915260a00190565b6001600160a01b03968716815294861660208601529290941660408401526060830152608082019290925260a081019190915260c00190565b6001600160a01b03938416815291909216602082015262ffffff909116604082015260600190565b7fffffffff0000000000000000000000000000000000000000000000000000000091909116815260200190565b60208082526003908201526249504160e81b604082015260600190565b6020808252600290820152614e4760f01b604082015260600190565b815181526020808301516001600160a01b0316908201526040808301516fffffffffffffffffffffffffffffffff90811691830191909152606092830151169181019190915260800190565b600060a082019050825182526fffffffffffffffffffffffffffffffff602084015116602083015260408301516040830152606083015160608301526080830151608083015292915050565b60006101008083016124f08487612286565b60e0840191909152610140830184835b60028110156125335760ff1986840301845261251d83835161223b565b6020948501949093509190910190600101612500565b50909695505050505050565b600061010061254e8386612286565b8060e08401526125608184018561223b565b95945050505050565b62ffffff91909116815260200190565b62ffffff92909216825260ff16602082015260400190565b62ffffff929092168252602082015260400190565b90815260200190565b9182526001600160a01b0316602082015260400190565b9283526001600160a01b03918216602084015216604082015260600190565b6001600160a01b038116811461180d57600080fd5b801515811461180d57600080fd5b62ffffff8116811461180d57600080fdfea164736f6c6343000706000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000de5bf92e3372aa59c73ca7dfc6cec599e1b2b08c000000000000000000000000a7979d0592ecfc59b082552828ff36209ec94b11000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe880000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f984
-----Decoded View---------------
Arg [0] : _unipilot (address): 0xde5bF92E3372AA59C73Ca7dFc6CEc599E1B2b08C
Arg [1] : _exchangeManager (address): 0xA7979d0592ecfC59b082552828FF36209ec94B11
Arg [2] : _positionManager (address): 0xC36442b4a4522E871399CD717aBDD847Ab11FE88
Arg [3] : _uniswapFactory (address): 0x1F98431c8aD98523631AE4a59f267346ea31F984
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000de5bf92e3372aa59c73ca7dfc6cec599e1b2b08c
Arg [1] : 000000000000000000000000a7979d0592ecfc59b082552828ff36209ec94b11
Arg [2] : 000000000000000000000000c36442b4a4522e871399cd717abdd847ab11fe88
Arg [3] : 0000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f984
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.