Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 15 from a total of 15 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Execute | 17901646 | 6 hrs ago | IN | 116.976249 S | 0.04504564 | ||||
Execute | 17754071 | 22 hrs ago | IN | 11.94743126 S | 0.04902414 | ||||
Execute | 17714073 | 27 hrs ago | IN | 2.48030603 S | 0.04809847 | ||||
Execute | 17705697 | 28 hrs ago | IN | 4.57011191 S | 0.04099515 | ||||
Execute | 17690173 | 29 hrs ago | IN | 8.73628663 S | 0.05489447 | ||||
Execute | 17684567 | 30 hrs ago | IN | 0 S | 0.03626616 | ||||
Execute | 17575343 | 42 hrs ago | IN | 20.76280156 S | 0.04348083 | ||||
Execute | 17474532 | 2 days ago | IN | 17.01566751 S | 0.03776125 | ||||
Execute | 17326063 | 2 days ago | IN | 0 S | 0.03691594 | ||||
Execute | 17282776 | 3 days ago | IN | 0.55933764 S | 0.03693919 | ||||
Execute | 17281458 | 3 days ago | IN | 0 S | 0.03928563 | ||||
Execute | 17281353 | 3 days ago | IN | 0.2 S | 0.01021288 | ||||
Execute | 17262096 | 3 days ago | IN | 4.97117291 S | 0.03150021 | ||||
Execute | 17244747 | 3 days ago | IN | 0 S | 0.04068521 | ||||
Execute | 14684692 | 15 days ago | IN | 0 S | 0.03654748 |
Latest 18 internal transactions
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
17901646 | 6 hrs ago | 116.976249 S | ||||
17754071 | 22 hrs ago | 11.94743126 S | ||||
17714073 | 27 hrs ago | 2.48030603 S | ||||
17705697 | 28 hrs ago | 4.57011191 S | ||||
17690173 | 29 hrs ago | 8.73628663 S | ||||
17684567 | 30 hrs ago | 17.52688303 S | ||||
17684567 | 30 hrs ago | 17.52688303 S | ||||
17575343 | 42 hrs ago | 20.76280156 S | ||||
17474532 | 2 days ago | 17.01566751 S | ||||
17326063 | 2 days ago | 0.46139304 S | ||||
17326063 | 2 days ago | 0.46139304 S | ||||
17282776 | 3 days ago | 0.55933764 S | ||||
17281458 | 3 days ago | 0.15781028 S | ||||
17281458 | 3 days ago | 0.15781028 S | ||||
17281353 | 3 days ago | 0.2 S | ||||
17262096 | 3 days ago | 4.97117291 S | ||||
14684692 | 15 days ago | 1,033.11328876 S | ||||
14684692 | 15 days ago | 1,033.11328876 S |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
ImpermaxV2SolidlyRouter01
Compiler Version
v0.5.16+commit.9c3226ce
Optimization Enabled:
Yes with 999999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// File: contracts\interfaces\IERC20.sol pragma solidity >=0.5.0; pragma experimental ABIEncoderV2; interface IERC20 { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view 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); } // File: contracts\interfaces\IERC721.sol pragma solidity >=0.5.0; interface IERC721 { event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); event ApprovalForAll(address indexed owner, address indexed operator, bool approved); function name() external view returns (string memory); function symbol() external view returns (string memory); function balanceOf(address owner) external view returns (uint256 balance); function ownerOf(uint256 tokenId) external view returns (address owner); function getApproved(uint256 tokenId) external view returns (address operator); function isApprovedForAll(address owner, address operator) external view returns (bool); function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; function safeTransferFrom(address from, address to, uint256 tokenId) external; function transferFrom(address from, address to, uint256 tokenId) external; function approve(address to, uint256 tokenId) external; function setApprovalForAll(address operator, bool approved) external; function permit(address spender, uint tokenId, uint deadline, uint8 v, bytes32 r, bytes32 s) external; } // File: contracts\interfaces\IWETH.sol pragma solidity >=0.5.0; interface IWETH { function deposit() external payable; function transfer(address to, uint value) external returns (bool); function withdraw(uint) external; } // File: contracts\interfaces\IV2BaseRouter01.sol pragma solidity >=0.5.0; interface IV2BaseRouter01 { struct LendingPool { address lp; address collateral; address[2] borrowables; address[2] tokens; } function getLendingPool(address lp) external view returns (LendingPool memory pool); function factory() external view returns (address); function execute( address lp, bytes calldata actionsData, bytes calldata permitsData ) external payable; } // File: contracts\libraries\Math.sol pragma solidity >=0.5.0; // a library for performing various math operations // forked from: https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/libraries/Math.sol library Math { function min(uint x, uint y) internal pure returns (uint z) { z = x < y ? x : y; } function max(uint x, uint y) internal pure returns (uint z) { z = x > y ? x : y; } // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method) function sqrt(uint y) internal pure returns (uint z) { if (y > 3) { z = y; uint x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } } } // File: contracts\libraries\SafeMath.sol pragma solidity >=0.5.0; // From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol // Subject to the MIT license. /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the addition of two unsigned integers, reverting with custom message on overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, errorMessage); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on underflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot underflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction underflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on underflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot underflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, errorMessage); return c; } /** * @dev Returns the integer division of two unsigned integers. * Reverts on division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. * Reverts with custom message on division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: contracts\libraries\TransferHelper.sol // SPDX-License-Identifier: GPL-3.0-or-later pragma solidity >=0.5.0; // helper methods for interacting with ERC20 tokens and sending ETH that do not consistently return true/false library TransferHelper { function safeApprove( address token, address to, uint256 value ) internal { // bytes4(keccak256(bytes('approve(address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper::safeApprove: approve failed' ); } function safeTransfer( address token, address to, uint256 value ) internal { // bytes4(keccak256(bytes('transfer(address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper::safeTransfer: transfer failed' ); } function safeTransferFrom( address token, address from, address to, uint256 value ) internal { // bytes4(keccak256(bytes('transferFrom(address,address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper::transferFrom: transferFrom failed' ); } function safeTransferETH(address to, uint256 value) internal { (bool success, ) = to.call.value(value)(new bytes(0)); require(success, 'TransferHelper::safeTransferETH: ETH transfer failed'); } } // File: contracts\interfaces\IAllowanceTransfer.sol // SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface IAllowanceTransfer { function DOMAIN_SEPARATOR() external view returns (bytes32); /// @notice The permit data for a token struct PermitDetails { // ERC20 token address address token; // the maximum amount allowed to spend uint160 amount; // timestamp at which a spender's token allowances become invalid uint48 expiration; // an incrementing value indexed per owner,token,and spender for each signature uint48 nonce; } /// @notice The permit message signed for a single token allowance struct PermitSingle { // the permit data for a single token alownce PermitDetails details; // address permissioned on the allowed tokens address spender; // deadline on the permit signature uint256 sigDeadline; } /// @notice The permit message signed for multiple token allowances struct PermitBatch { // the permit data for multiple token allowances PermitDetails[] details; // address permissioned on the allowed tokens address spender; // deadline on the permit signature uint256 sigDeadline; } /// @notice The saved permissions /// @dev This info is saved per owner, per token, per spender and all signed over in the permit message /// @dev Setting amount to type(uint160).max sets an unlimited approval struct PackedAllowance { // amount allowed uint160 amount; // permission expiry uint48 expiration; // an incrementing value indexed per owner,token,and spender for each signature uint48 nonce; } /// @notice A token spender pair. struct TokenSpenderPair { // the token the spender is approved address token; // the spender address address spender; } /// @notice Details for a token transfer. struct AllowanceTransferDetails { // the owner of the token address from; // the recipient of the token address to; // the amount of the token uint160 amount; // the token to be transferred address token; } /// @notice A mapping from owner address to token address to spender address to PackedAllowance struct, which contains details and conditions of the approval. /// @notice The mapping is indexed in the above order see: allowance[ownerAddress][tokenAddress][spenderAddress] /// @dev The packed slot holds the allowed amount, expiration at which the allowed amount is no longer valid, and current nonce thats updated on any signature based approvals. function allowance(address user, address token, address spender) external view returns (uint160 amount, uint48 expiration, uint48 nonce); /// @notice Approves the spender to use up to amount of the specified token up until the expiration /// @param token The token to approve /// @param spender The spender address to approve /// @param amount The approved amount of the token /// @param expiration The timestamp at which the approval is no longer valid /// @dev The packed allowance also holds a nonce, which will stay unchanged in approve /// @dev Setting amount to type(uint160).max sets an unlimited approval function approve(address token, address spender, uint160 amount, uint48 expiration) external; /// @notice Permit a spender to a given amount of the owners token via the owner's EIP-712 signature /// @dev May fail if the owner's nonce was invalidated in-flight by invalidateNonce /// @param owner The owner of the tokens being approved /// @param permitSingle Data signed over by the owner specifying the terms of approval /// @param signature The owner's signature over the permit data function permit(address owner, PermitSingle calldata permitSingle, bytes calldata signature) external; /// @notice Permit a spender to the signed amounts of the owners tokens via the owner's EIP-712 signature /// @dev May fail if the owner's nonce was invalidated in-flight by invalidateNonce /// @param owner The owner of the tokens being approved /// @param permitBatch Data signed over by the owner specifying the terms of approval /// @param signature The owner's signature over the permit data function permit(address owner, PermitBatch calldata permitBatch, bytes calldata signature) external; /// @notice Transfer approved tokens from one address to another /// @param from The address to transfer from /// @param to The address of the recipient /// @param amount The amount of the token to transfer /// @param token The token address to transfer /// @dev Requires the from address to have approved at least the desired amount /// of tokens to msg.sender. function transferFrom(address from, address to, uint160 amount, address token) external; /// @notice Transfer approved tokens in a batch /// @param transferDetails Array of owners, recipients, amounts, and tokens for the transfers /// @dev Requires the from addresses to have approved at least the desired amount /// of tokens to msg.sender. function transferFrom(AllowanceTransferDetails[] calldata transferDetails) external; /// @notice Enables performing a "lockdown" of the sender's Permit2 identity /// by batch revoking approvals /// @param approvals Array of approvals to revoke. function lockdown(TokenSpenderPair[] calldata approvals) external; /// @notice Invalidate nonces for a given (token, spender) pair /// @param token The token to invalidate nonces for /// @param spender The spender to invalidate nonces for /// @param newNonce The new nonce to set. Invalidates all nonces less than it. /// @dev Can't invalidate more than 2**16 nonces per transaction. function invalidateNonces(address token, address spender, uint48 newNonce) external; } // File: contracts\impermax-v3-core\interfaces\IBorrowable.sol pragma solidity >=0.5.0; interface IBorrowable { /*** Impermax ERC20 ***/ event Transfer(address indexed from, address indexed to, uint value); event Approval(address indexed owner, address indexed spender, uint value); function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view 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; /*** Pool Token ***/ event Mint(address indexed sender, address indexed minter, uint mintAmount, uint mintTokens); event Redeem(address indexed sender, address indexed redeemer, uint redeemAmount, uint redeemTokens); event Sync(uint totalBalance); function underlying() external view returns (address); function factory() external view returns (address); function totalBalance() external view returns (uint); function MINIMUM_LIQUIDITY() external pure returns (uint); function exchangeRate() external returns (uint); function mint(address minter) external returns (uint mintTokens); function redeem(address redeemer) external returns (uint redeemAmount); function skim(address to) external; function sync() external; function _setFactory() external; /*** Borrowable ***/ event BorrowApproval(address indexed owner, address indexed spender, uint value); event Borrow(address indexed sender, uint256 indexed tokenId, address indexed receiver, uint borrowAmount, uint repayAmount, uint accountBorrowsPrior, uint accountBorrows, uint totalBorrows); event Liquidate(address indexed sender, uint256 indexed tokenId, address indexed liquidator, uint seizeTokenId, uint repayAmount, uint accountBorrowsPrior, uint accountBorrows, uint totalBorrows); event RestructureDebt(uint256 indexed tokenId, uint reduceToRatio, uint repayAmount, uint accountBorrowsPrior, uint accountBorrows, uint totalBorrows); function collateral() external view returns (address); function reserveFactor() external view returns (uint); function exchangeRateLast() external view returns (uint); function borrowIndex() external view returns (uint); function totalBorrows() external view returns (uint); function borrowAllowance(address owner, address spender) external view returns (uint); function borrowBalance(uint tokenId) external view returns (uint); function currentBorrowBalance(uint tokenId) external returns (uint); function BORROW_PERMIT_TYPEHASH() external pure returns (bytes32); function borrowApprove(address spender, uint256 value) external returns (bool); function borrowPermit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; function borrow(uint256 tokenId, address receiver, uint borrowAmount, bytes calldata data) external; function liquidate(uint256 tokenId, uint repayAmount, address liquidator, bytes calldata data) external returns (uint seizeTokenId); function restructureDebt(uint256 tokenId, uint256 reduceToRatio) external; /*** Borrowable Interest Rate Model ***/ event AccrueInterest(uint interestAccumulated, uint borrowIndex, uint totalBorrows); event CalculateKink(uint kinkRate); event CalculateBorrowRate(uint borrowRate); function KINK_BORROW_RATE_MAX() external pure returns (uint); function KINK_BORROW_RATE_MIN() external pure returns (uint); function KINK_MULTIPLIER() external pure returns (uint); function borrowRate() external view returns (uint); function kinkBorrowRate() external view returns (uint); function kinkUtilizationRate() external view returns (uint); function adjustSpeed() external view returns (uint); function rateUpdateTimestamp() external view returns (uint32); function accrualTimestamp() external view returns (uint32); function accrueInterest() external; /*** Borrowable Setter ***/ event NewReserveFactor(uint newReserveFactor); event NewKinkUtilizationRate(uint newKinkUtilizationRate); event NewAdjustSpeed(uint newAdjustSpeed); event NewDebtCeiling(uint newDebtCeiling); function RESERVE_FACTOR_MAX() external pure returns (uint); function KINK_UR_MIN() external pure returns (uint); function KINK_UR_MAX() external pure returns (uint); function ADJUST_SPEED_MIN() external pure returns (uint); function ADJUST_SPEED_MAX() external pure returns (uint); function _initialize ( string calldata _name, string calldata _symbol, address _underlying, address _collateral ) external; function _setReserveFactor(uint newReserveFactor) external; function _setKinkUtilizationRate(uint newKinkUtilizationRate) external; function _setAdjustSpeed(uint newAdjustSpeed) external; } // File: contracts\impermax-v3-core\interfaces\IPoolToken.sol pragma solidity >=0.5.0; interface IPoolToken { /*** Impermax ERC20 ***/ event Transfer(address indexed from, address indexed to, uint value); event Approval(address indexed owner, address indexed spender, uint value); function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view 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; /*** Pool Token ***/ event Mint(address indexed sender, address indexed minter, uint mintAmount, uint mintTokens); event Redeem(address indexed sender, address indexed redeemer, uint redeemAmount, uint redeemTokens); event Sync(uint totalBalance); function underlying() external view returns (address); function factory() external view returns (address); function totalBalance() external view returns (uint); function MINIMUM_LIQUIDITY() external pure returns (uint); function exchangeRate() external returns (uint); function mint(address minter) external returns (uint mintTokens); function redeem(address redeemer) external returns (uint redeemAmount); function skim(address to) external; function sync() external; function _setFactory() external; } // File: contracts\libraries\ImpermaxPermit.sol pragma solidity >=0.5.0; library ImpermaxPermit { address constant PERMIT2_ADDRESS = 0x000000000022D473030F116dDEE9F6B43aC78BA3; enum PermitType { PERMIT1, PERMIT_NFT, PERMIT2_SINGLE, PERMIT2_BATCH, PERMIT_BORROW } struct Permit { PermitType permitType; bytes permitData; bytes signature; } struct Permit1Data { address token; uint amount; uint deadline; } struct PermitNftData { address erc721; uint tokenId; uint deadline; } bytes32 constant UPPER_BIT_MASK = (0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); function decodeSignature(bytes memory signature) private pure returns (bytes32 r, bytes32 s, uint8 v) { if (signature.length == 65) { (r, s) = abi.decode(signature, (bytes32, bytes32)); v = uint8(signature[64]); } else if (signature.length == 64) { // EIP-2098 bytes32 vs; (r, vs) = abi.decode(signature, (bytes32, bytes32)); s = vs & UPPER_BIT_MASK; v = uint8(uint256(vs >> 255)) + 27; } else { revert("ImpermaxRouter: INVALID_SIGNATURE_LENGTH"); } } function permit1( address token, uint amount, uint deadline, bytes memory signature ) private { (bytes32 r, bytes32 s, uint8 v) = decodeSignature(signature); IPoolToken(token).permit(msg.sender, address(this), amount, deadline, v, r, s); } function permitNft( address erc721, uint tokenId, uint deadline, bytes memory signature ) private { (bytes32 r, bytes32 s, uint8 v) = decodeSignature(signature); IERC721(erc721).permit(address(this), tokenId, deadline, v, r, s); } function permitBorrow( address borrowable, uint amount, uint deadline, bytes memory signature ) private { (bytes32 r, bytes32 s, uint8 v) = decodeSignature(signature); IBorrowable(borrowable).borrowPermit(msg.sender, address(this), amount, deadline, v, r, s); } function executePermit(Permit memory permit) public { if (permit.permitType == PermitType.PERMIT1) { Permit1Data memory decoded = abi.decode(permit.permitData, (Permit1Data)); permit1( decoded.token, decoded.amount, decoded.deadline, permit.signature ); } else if (permit.permitType == PermitType.PERMIT_NFT) { PermitNftData memory decoded = abi.decode(permit.permitData, (PermitNftData)); permitNft( decoded.erc721, decoded.tokenId, decoded.deadline, permit.signature ); } else if (permit.permitType == PermitType.PERMIT2_SINGLE) { IAllowanceTransfer.PermitSingle memory decoded = abi.decode(permit.permitData, (IAllowanceTransfer.PermitSingle)); IAllowanceTransfer(PERMIT2_ADDRESS).permit(msg.sender, decoded, permit.signature); } else if (permit.permitType == PermitType.PERMIT2_BATCH) { IAllowanceTransfer.PermitBatch memory decoded = abi.decode(permit.permitData, (IAllowanceTransfer.PermitBatch)); IAllowanceTransfer(PERMIT2_ADDRESS).permit(msg.sender, decoded, permit.signature); } else if (permit.permitType == PermitType.PERMIT_BORROW) { Permit1Data memory decoded = abi.decode(permit.permitData, (Permit1Data)); permitBorrow( decoded.token, decoded.amount, decoded.deadline, permit.signature ); } else revert("ImpermaxRouter: INVALID_PERMIT"); } function executePermits(Permit[] memory permits) public { for (uint i = 0; i < permits.length; i++) { executePermit(permits[i]); } } function executePermits(bytes memory permitsData) public { Permit[] memory permits = abi.decode(permitsData, (Permit[])); executePermits(permits); } function safeTransferFrom(address token, address from, address to, uint256 value) external { uint allowance = IERC20(token).allowance(from, address(this)); if (allowance >= value) return TransferHelper.safeTransferFrom(token, from, to, value); IAllowanceTransfer(PERMIT2_ADDRESS).transferFrom(from, to, safe160(value), token); } function safe160(uint n) private pure returns (uint160) { require(n < 2**160, "Impermax: SAFE160"); return uint160(n); } } // File: contracts\libraries\Actions.sol pragma solidity =0.5.16; library Actions { enum Type { BORROW, REPAY_USER, REPAY_ROUTER, WITHDRAW_TOKEN, WITHDRAW_ETH, NO_ACTION, MINT_UNIV2_EMPTY, MINT_UNIV2_INTERNAL, MINT_UNIV2, REDEEM_UNIV2, BORROW_AND_MINT_UNIV2, MINT_UNIV3_EMPTY, MINT_UNIV3_INTERNAL, MINT_UNIV3, REDEEM_UNIV3, BORROW_AND_MINT_UNIV3 } struct Action { Type actionType; bytes actionData; bytes nextAction; } struct BorrowData { uint8 index; uint amount; address to; } struct RepayUserData { uint8 index; uint amountMax; } struct RepayRouterData { uint8 index; uint amountMax; address refundTo; } struct WithdrawTokenData { address token; address to; } struct WithdrawEthData { address to; } struct MintUniV2InternalData { uint lpAmountUser; uint amount0User; uint amount1User; uint amount0Router; uint amount1Router; } struct MintUniV2Data { uint lpAmountUser; uint amount0Desired; uint amount1Desired; uint amount0Min; uint amount1Min; } struct RedeemUniV2Data { uint percentage; uint amount0Min; uint amount1Min; address to; } struct BorrowAndMintUniV2Data { uint lpAmountUser; uint amount0User; uint amount1User; uint amount0Desired; uint amount1Desired; uint amount0Min; uint amount1Min; } struct MintUniV3EmptyData { uint24 fee; int24 tickLower; int24 tickUpper; } struct MintUniV3InternalData { uint128 liquidity; uint amount0User; uint amount1User; uint amount0Router; uint amount1Router; } struct MintUniV3Data { uint amount0Desired; uint amount1Desired; uint amount0Min; uint amount1Min; } struct RedeemUniV3Data { uint percentage; uint amount0Min; uint amount1Min; address to; } struct BorrowAndMintUniV3Data { uint amount0User; uint amount1User; uint amount0Desired; uint amount1Desired; uint amount0Min; uint amount1Min; } /*** Actions sorter: sorts actions and composite actions ***/ function actionsSorter(Action[] memory actions, Action memory nextAction) public pure returns (Action memory) { require(actions.length > 0, "ImpermaxRouter: UNEXPECTED_ACTIONS_LENGTH"); actions[actions.length-1].nextAction = abi.encode(nextAction); for(uint i = actions.length-1; i > 0; i--) { actions[i-1].nextAction = abi.encode(actions[i]); } return actions[0]; } function actionsSorter(Action[] memory actions) public pure returns (Action memory) { return actionsSorter(actions, getNoAction()); } /*** Action Getters ***/ function _getAction(Type actionType, bytes memory actionData) private pure returns (Action memory) { return Action({ actionType: actionType, actionData: actionData, nextAction: bytes("") }); } function getNoAction() public pure returns (Action memory) { return _getAction(Type.NO_ACTION, bytes("")); } function getBorrowAction(uint8 index, uint amount, address to) external pure returns (Action memory) { return _getAction(Type.BORROW, abi.encode(BorrowData({ index: index, amount: amount, to: to }))); } function getRepayUserAction(uint8 index, uint amountMax) external pure returns (Action memory) { return _getAction(Type.REPAY_USER, abi.encode(RepayUserData({ index: index, amountMax: amountMax }))); } function getRepayRouterAction(uint8 index, uint amountMax, address refundTo) external pure returns (Action memory) { return _getAction(Type.REPAY_ROUTER, abi.encode(RepayRouterData({ index: index, amountMax: amountMax, refundTo: refundTo }))); } function getWithdrawTokenAction(address token, address to) external pure returns (Action memory) { return _getAction(Type.WITHDRAW_TOKEN, abi.encode(WithdrawTokenData({ token: token, to: to }))); } function getWithdrawEthAction(address to) external pure returns (Action memory) { return _getAction(Type.WITHDRAW_ETH, abi.encode(WithdrawEthData({ to: to }))); } function getMintUniV2EmptyAction() external pure returns (Action memory) { return _getAction(Type.MINT_UNIV2_EMPTY, bytes("")); } function getMintUniV2InternalAction(uint lpAmountUser, uint amount0User, uint amount1User, uint amount0Router, uint amount1Router) external pure returns (Action memory) { return _getAction(Type.MINT_UNIV2_INTERNAL, abi.encode(MintUniV2InternalData({ lpAmountUser: lpAmountUser, amount0User: amount0User, amount1User: amount1User, amount0Router: amount0Router, amount1Router: amount1Router }))); } function getMintUniV2Action(uint lpAmountUser, uint amount0Desired, uint amount1Desired, uint amount0Min, uint amount1Min) external pure returns (Action memory) { return _getAction(Type.MINT_UNIV2, abi.encode(MintUniV2Data({ lpAmountUser: lpAmountUser, amount0Desired: amount0Desired, amount1Desired: amount1Desired, amount0Min: amount0Min, amount1Min: amount1Min }))); } function getRedeemUniV2Action(uint percentage, uint amount0Min, uint amount1Min, address to) external pure returns (Action memory) { return _getAction(Type.REDEEM_UNIV2, abi.encode(RedeemUniV2Data({ percentage: percentage, amount0Min: amount0Min, amount1Min: amount1Min, to: to }))); } function getMintUniV3EmptyAction(uint24 fee, int24 tickLower, int24 tickUpper) external pure returns (Action memory) { return _getAction(Type.MINT_UNIV3_EMPTY, abi.encode(MintUniV3EmptyData({ fee: fee, tickLower: tickLower, tickUpper: tickUpper }))); } function getBorrowAndMintUniV2Action( uint lpAmountUser, uint amount0User, uint amount1User, uint amount0Desired, // intended as user amount + router amount uint amount1Desired, // intended as user amount + router amount uint amount0Min, // intended as user amount + router amount uint amount1Min // intended as user amount + router amount ) external pure returns (Action memory) { return _getAction(Type.BORROW_AND_MINT_UNIV2, abi.encode(BorrowAndMintUniV2Data({ lpAmountUser: lpAmountUser, amount0User: amount0User, amount1User: amount1User, amount0Desired: amount0Desired, amount1Desired: amount1Desired, amount0Min: amount0Min, amount1Min: amount1Min }))); } function getMintUniV3Action(uint amount0Desired, uint amount1Desired, uint amount0Min, uint amount1Min) external pure returns (Action memory) { return _getAction(Type.MINT_UNIV3, abi.encode(MintUniV3Data({ amount0Desired: amount0Desired, amount1Desired: amount1Desired, amount0Min: amount0Min, amount1Min: amount1Min }))); } function getMintUniV3InternalAction(uint128 liquidity, uint amount0User, uint amount1User, uint amount0Router, uint amount1Router) external pure returns (Action memory) { return _getAction(Type.MINT_UNIV3_INTERNAL, abi.encode(MintUniV3InternalData({ liquidity: liquidity, amount0User: amount0User, amount1User: amount1User, amount0Router: amount0Router, amount1Router: amount1Router }))); } function getRedeemUniV3Action(uint percentage, uint amount0Min, uint amount1Min, address to) external pure returns (Action memory) { return _getAction(Type.REDEEM_UNIV3, abi.encode(RedeemUniV3Data({ percentage: percentage, amount0Min: amount0Min, amount1Min: amount1Min, to: to }))); } function getBorrowAndMintUniV3Action( uint amount0User, uint amount1User, uint amount0Desired, // intended as user amount + router amount uint amount1Desired, // intended as user amount + router amount uint amount0Min, // intended as user amount + router amount uint amount1Min // intended as user amount + router amount ) external pure returns (Action memory) { return _getAction(Type.BORROW_AND_MINT_UNIV3, abi.encode(BorrowAndMintUniV3Data({ amount0User: amount0User, amount1User: amount1User, amount0Desired: amount0Desired, amount1Desired: amount1Desired, amount0Min: amount0Min, amount1Min: amount1Min }))); } } // File: contracts\impermax-v2-core\interfaces\IBorrowableV2.sol pragma solidity >=0.5.0; interface IBorrowableV2 { /*** Impermax ERC20 ***/ event Transfer(address indexed from, address indexed to, uint value); event Approval(address indexed owner, address indexed spender, 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; /*** Pool Token ***/ event Mint(address indexed sender, address indexed minter, uint mintAmount, uint mintTokens); event Redeem(address indexed sender, address indexed redeemer, uint redeemAmount, uint redeemTokens); event Sync(uint totalBalance); function underlying() external view returns (address); function factory() external view returns (address); function totalBalance() external view returns (uint); function MINIMUM_LIQUIDITY() external pure returns (uint); function exchangeRate() external returns (uint); function mint(address minter) external returns (uint mintTokens); function redeem(address redeemer) external returns (uint redeemAmount); function skim(address to) external; function sync() external; function _setFactory() external; /*** Borrowable ***/ event BorrowApproval(address indexed owner, address indexed spender, uint value); event Borrow(address indexed sender, address indexed borrower, address indexed receiver, uint borrowAmount, uint repayAmount, uint accountBorrowsPrior, uint accountBorrows, uint totalBorrows); event Liquidate(address indexed sender, address indexed borrower, address indexed liquidator, uint seizeTokens, uint repayAmount, uint accountBorrowsPrior, uint accountBorrows, uint totalBorrows); function BORROW_FEE() external pure returns (uint); function collateral() external view returns (address); function reserveFactor() external view returns (uint); function exchangeRateLast() external view returns (uint); function borrowIndex() external view returns (uint); function totalBorrows() external view returns (uint); function borrowAllowance(address owner, address spender) external view returns (uint); function borrowBalance(address borrower) external view returns (uint); function borrowTracker() external view returns (address); function BORROW_PERMIT_TYPEHASH() external pure returns (bytes32); function borrowApprove(address spender, uint256 value) external returns (bool); function borrowPermit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; function borrow(address borrower, address receiver, uint borrowAmount, bytes calldata data) external; function liquidate(address borrower, address liquidator) external returns (uint seizeTokens); function trackBorrow(address borrower) external; /*** Borrowable Interest Rate Model ***/ event AccrueInterest(uint interestAccumulated, uint borrowIndex, uint totalBorrows); event CalculateKink(uint kinkRate); event CalculateBorrowRate(uint borrowRate); function KINK_BORROW_RATE_MAX() external pure returns (uint); function KINK_BORROW_RATE_MIN() external pure returns (uint); function KINK_MULTIPLIER() external pure returns (uint); function borrowRate() external view returns (uint); function kinkBorrowRate() external view returns (uint); function kinkUtilizationRate() external view returns (uint); function adjustSpeed() external view returns (uint); function rateUpdateTimestamp() external view returns (uint32); function accrualTimestamp() external view returns (uint32); function accrueInterest() external; /*** Borrowable Setter ***/ event NewReserveFactor(uint newReserveFactor); event NewKinkUtilizationRate(uint newKinkUtilizationRate); event NewAdjustSpeed(uint newAdjustSpeed); event NewBorrowTracker(address newBorrowTracker); function RESERVE_FACTOR_MAX() external pure returns (uint); function KINK_UR_MIN() external pure returns (uint); function KINK_UR_MAX() external pure returns (uint); function ADJUST_SPEED_MIN() external pure returns (uint); function ADJUST_SPEED_MAX() external pure returns (uint); function _initialize ( string calldata _name, string calldata _symbol, address _underlying, address _collateral ) external; function _setReserveFactor(uint newReserveFactor) external; function _setKinkUtilizationRate(uint newKinkUtilizationRate) external; function _setAdjustSpeed(uint newAdjustSpeed) external; function _setBorrowTracker(address newBorrowTracker) external; } // File: contracts\impermax-v2-core\interfaces\IFactoryV2.sol pragma solidity >=0.5.0; interface IFactoryV2 { event LendingPoolInitialized(address indexed uniswapV2Pair, address indexed token0, address indexed token1, address collateral, address borrowable0, address borrowable1, uint lendingPoolId); event NewPendingAdmin(address oldPendingAdmin, address newPendingAdmin); event NewAdmin(address oldAdmin, address newAdmin); event NewReservesPendingAdmin(address oldReservesPendingAdmin, address newReservesPendingAdmin); event NewReservesAdmin(address oldReservesAdmin, address newReservesAdmin); event NewReservesManager(address oldReservesManager, address newReservesManager); function admin() external view returns (address); function pendingAdmin() external view returns (address); function reservesAdmin() external view returns (address); function reservesPendingAdmin() external view returns (address); function reservesManager() external view returns (address); function getLendingPool(address uniswapV2Pair) external view returns ( bool initialized, uint24 lendingPoolId, address collateral, address borrowable0, address borrowable1 ); function allLendingPools(uint) external view returns (address uniswapV2Pair); function allLendingPoolsLength() external view returns (uint); function bDeployer() external view returns (address); function cDeployer() external view returns (address); function simpleUniswapOracle() external view returns (address); function createCollateral(address uniswapV2Pair) external returns (address collateral); function createBorrowable0(address uniswapV2Pair) external returns (address borrowable0); function createBorrowable1(address uniswapV2Pair) external returns (address borrowable1); function initializeLendingPool(address uniswapV2Pair) external; function _setPendingAdmin(address newPendingAdmin) external; function _acceptAdmin() external; function _setReservesPendingAdmin(address newPendingAdmin) external; function _acceptReservesAdmin() external; function _setReservesManager(address newReservesManager) external; } // File: contracts\impermax-v2-core\interfaces\IImpermaxCalleeV2.sol pragma solidity >=0.5.0; interface IImpermaxCalleeV2 { function impermaxBorrow(address sender, address borrower, uint borrowAmount, bytes calldata data) external; function impermaxRedeem(address sender, uint redeemAmount, bytes calldata data) external; } // File: contracts\ImpermaxV2BaseRouter01.sol pragma solidity =0.5.16; contract ImpermaxV2BaseRouter01 is IV2BaseRouter01, IImpermaxCalleeV2 { using SafeMath for uint; address public factory; address public WETH; modifier permit(bytes memory permitsData) { ImpermaxPermit.executePermits(permitsData); _; } constructor(address _factory, address _WETH) public { factory = _factory; WETH = _WETH; } function () external payable { assert(msg.sender == WETH); // only accept ETH via fallback from the WETH contract } /*** Data Structures ***/ // callbacks struct BorrowCallbackData { LendingPool pool; uint8 borrowableIndex; address msgSender; Actions.Action nextAction; } struct RedeemCallbackData { LendingPool pool; address msgSender; address redeemTo; uint redeemTokens; uint amount0Min; uint amount1Min; Actions.Action nextAction; } /*** Primitive Actions ***/ function _borrow( LendingPool memory pool, uint8 index, address msgSender, uint amount, address to, Actions.Action memory nextAction ) internal { bytes memory encoded = nextAction.actionType == Actions.Type.NO_ACTION || to != address(this) ? bytes("") : abi.encode(BorrowCallbackData({ pool: pool, borrowableIndex: index, msgSender: msgSender, nextAction: nextAction })); IBorrowableV2(pool.borrowables[index]).borrow(msgSender, to, amount, encoded); } function _repayAmount( address borrowable, address msgSender, uint amountMax ) internal returns (uint amount) { IBorrowableV2(borrowable).accrueInterest(); uint borrowedAmount = IBorrowableV2(borrowable).borrowBalance(msgSender); amount = Math.min(amountMax, borrowedAmount); } function _repayUser( LendingPool memory pool, uint8 index, address msgSender, uint amountMax ) internal { address borrowable = pool.borrowables[index]; uint repayAmount = _repayAmount(borrowable, msgSender, amountMax); if (repayAmount == 0) return; ImpermaxPermit.safeTransferFrom(pool.tokens[index], msgSender, borrowable, repayAmount); IBorrowableV2(borrowable).borrow(msgSender, address(0), 0, new bytes(0)); } function _repayRouter( LendingPool memory pool, uint8 index, address msgSender, uint amountMax, address refundTo ) internal { address borrowable = pool.borrowables[index]; uint routerBalance = IERC20(pool.tokens[index]).balanceOf(address(this)); amountMax = Math.min(amountMax, routerBalance); uint repayAmount = _repayAmount(borrowable, msgSender, amountMax); if (routerBalance > repayAmount && refundTo != address(this)) TransferHelper.safeTransfer(pool.tokens[index], refundTo, routerBalance - repayAmount); if (repayAmount == 0) return; TransferHelper.safeTransfer(pool.tokens[index], borrowable, repayAmount); IBorrowableV2(borrowable).borrow(msgSender, address(0), 0, new bytes(0)); } function _withdrawToken( address token, address to ) internal { uint routerBalance = IERC20(token).balanceOf(address(this)); if (routerBalance > 0) TransferHelper.safeTransfer(token, to, routerBalance); } function _withdrawEth( address to ) internal { uint routerBalance = IERC20(WETH).balanceOf(address(this)); if (routerBalance == 0) return; IWETH(WETH).withdraw(routerBalance); TransferHelper.safeTransferETH(to, routerBalance); } /*** EXECUTE ***/ function _execute( LendingPool memory pool, address msgSender, Actions.Action memory action ) internal { if (action.actionType == Actions.Type.NO_ACTION) return; Actions.Action memory nextAction = abi.decode(action.nextAction, (Actions.Action)); if (action.actionType == Actions.Type.BORROW) { Actions.BorrowData memory decoded = abi.decode(action.actionData, (Actions.BorrowData)); _borrow( pool, decoded.index, msgSender, decoded.amount, decoded.to, nextAction ); if (decoded.to == address(this)) return; } else if (action.actionType == Actions.Type.REPAY_USER) { Actions.RepayUserData memory decoded = abi.decode(action.actionData, (Actions.RepayUserData)); _repayUser( pool, decoded.index, msgSender, decoded.amountMax ); } else if (action.actionType == Actions.Type.REPAY_ROUTER) { Actions.RepayRouterData memory decoded = abi.decode(action.actionData, (Actions.RepayRouterData)); _repayRouter( pool, decoded.index, msgSender, decoded.amountMax, decoded.refundTo ); } else if (action.actionType == Actions.Type.WITHDRAW_TOKEN) { Actions.WithdrawTokenData memory decoded = abi.decode(action.actionData, (Actions.WithdrawTokenData)); _withdrawToken( decoded.token, decoded.to ); } else if (action.actionType == Actions.Type.WITHDRAW_ETH) { Actions.WithdrawEthData memory decoded = abi.decode(action.actionData, (Actions.WithdrawEthData)); _withdrawEth( decoded.to ); } else revert("ImpermaxRouter: INVALID_ACTION"); return _execute( pool, msgSender, nextAction ); } /*** External ***/ function execute( address lp, bytes calldata actionsData, bytes calldata permitsData ) external payable permit(permitsData) { if (msg.value > 0) { IWETH(WETH).deposit.value(msg.value)(); } Actions.Action[] memory actions = abi.decode(actionsData, (Actions.Action[])); LendingPool memory pool = getLendingPool(lp); _execute( pool, msg.sender, Actions.actionsSorter(actions) ); } /*** Callbacks ***/ function impermaxBorrow(address sender, address borrower, uint borrowAmount, bytes calldata data) external { borrower; borrowAmount; BorrowCallbackData memory decoded = abi.decode(data, (BorrowCallbackData)); // only succeeds if called by a borrowable and if that borrowable has been called by the router address declaredCaller = getBorrowable(decoded.pool.lp, decoded.borrowableIndex); require(sender == address(this), "ImpermaxRouter: SENDER_NOT_ROUTER"); require(msg.sender == declaredCaller, "ImpermaxRouter: UNAUTHORIZED_CALLER"); _execute( decoded.pool, decoded.msgSender, decoded.nextAction ); } function _redeemStep2(LendingPool memory pool, uint amount0Min, uint amount1Min, address to) internal; function impermaxRedeem(address sender, uint redeemAmount, bytes calldata data) external { RedeemCallbackData memory decoded = abi.decode(data, (RedeemCallbackData)); // only succeeds if called by a collateral and if that collateral has been called by the router address declaredCaller = getCollateral(decoded.pool.lp); require(sender == address(this), "ImpermaxRouter: SENDER_NOT_ROUTER"); require(msg.sender == declaredCaller, "ImpermaxRouter: UNAUTHORIZED_CALLER"); _redeemStep2( decoded.pool, decoded.amount0Min, decoded.amount1Min, decoded.redeemTo ); _execute( decoded.pool, decoded.msgSender, decoded.nextAction ); // repay flash redeem ImpermaxPermit.safeTransferFrom(declaredCaller, decoded.msgSender, declaredCaller, decoded.redeemTokens); } /*** Utilities ***/ function getBorrowable(address lp, uint8 index) public view returns (address borrowable) { require(index < 2, "ImpermaxRouter: INDEX_TOO_HIGH"); (,,,address borrowable0, address borrowable1) = IFactoryV2(factory).getLendingPool(lp); return index == 0 ? borrowable0 : borrowable1; } function getCollateral(address lp) public view returns (address collateral) { (,,collateral,,) = IFactoryV2(factory).getLendingPool(lp); } function getLendingPool(address lp) public view returns (LendingPool memory pool) { pool.lp = lp; (,,pool.collateral,pool.borrowables[0],pool.borrowables[1]) = IFactoryV2(factory).getLendingPool(lp); pool.tokens[0] = IBorrowableV2(pool.borrowables[0]).underlying(); pool.tokens[1] = IBorrowableV2(pool.borrowables[1]).underlying(); } } // File: contracts\interfaces\ISolidlyPair.sol pragma solidity >=0.5.0; interface ISolidlyPair { 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 (uint reserve0, uint reserve1, uint 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; } // File: contracts\interfaces\IStakedLPToken.sol pragma solidity >=0.5.0; interface IStakedLPToken { /*** Impermax ERC20 ***/ event Transfer(address indexed from, address indexed to, uint value); event Approval(address indexed owner, address indexed spender, 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; /*** Pool Token ***/ event Mint(address indexed sender, address indexed minter, uint mintAmount, uint mintTokens); event Redeem(address indexed sender, address indexed redeemer, uint redeemAmount, uint redeemTokens); event Sync(uint totalBalance); function underlying() external view returns (address); function factory() external view returns (address); function totalBalance() external view returns (uint); function MINIMUM_LIQUIDITY() external pure returns (uint); function exchangeRate() external returns (uint); function mint(address minter) external returns (uint mintTokens); function redeem(address redeemer) external returns (uint redeemAmount); function skim(address to) external; function sync() external; function _setFactory() external; /*** StakedLPToken ***/ event Reinvest(address indexed caller, uint256 reward, uint256 bounty); function isStakedLPToken() external pure returns (bool); function stakingRewards() external view returns (address); function rewardsToken() external view returns (address); function router() external view returns (address); function WETH() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function REINVEST_BOUNTY() external pure returns (uint256); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function _initialize ( address _stakingRewards, address _underlying, address _rewardsToken, address _token0, address _token1, address _router, address _WETH ) external; function reinvest() external; } // File: contracts\interfaces\IUniswapV2Pair.sol 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; } // File: contracts\libraries\UniswapV2Library.sol pragma solidity >=0.5.0; library UniswapV2Library { using SafeMath for uint; // returns sorted token addresses, used to handle return values from pairs sorted in this order function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) { require(tokenA != tokenB, 'UniswapV2Library: IDENTICAL_ADDRESSES'); (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); require(token0 != address(0), 'UniswapV2Library: ZERO_ADDRESS'); } // calculates the CREATE2 address for a pair without making any external calls function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) { (address token0, address token1) = sortTokens(tokenA, tokenB); pair = address(uint(keccak256(abi.encodePacked( hex'ff', factory, keccak256(abi.encodePacked(token0, token1)), hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash )))); } // fetches and sorts the reserves for a pair function getReserves(address factory, address tokenA, address tokenB) internal view returns (uint reserveA, uint reserveB) { (address token0,) = sortTokens(tokenA, tokenB); (uint reserve0, uint reserve1,) = IUniswapV2Pair(pairFor(factory, tokenA, tokenB)).getReserves(); (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0); } // given some amount of an asset and pair reserves, returns an equivalent amount of the other asset function quote(uint amountA, uint reserveA, uint reserveB) internal pure returns (uint amountB) { require(amountA > 0, 'UniswapV2Library: INSUFFICIENT_AMOUNT'); require(reserveA > 0 && reserveB > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY'); amountB = amountA.mul(reserveB) / reserveA; } // given an input amount of an asset and pair reserves, returns the maximum output amount of the other asset function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) internal pure returns (uint amountOut) { require(amountIn > 0, 'UniswapV2Library: INSUFFICIENT_INPUT_AMOUNT'); require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY'); uint amountInWithFee = amountIn.mul(997); uint numerator = amountInWithFee.mul(reserveOut); uint denominator = reserveIn.mul(1000).add(amountInWithFee); amountOut = numerator / denominator; } // given an output amount of an asset and pair reserves, returns a required input amount of the other asset function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) internal pure returns (uint amountIn) { require(amountOut > 0, 'UniswapV2Library: INSUFFICIENT_OUTPUT_AMOUNT'); require(reserveIn > 0 && reserveOut > 0, 'UniswapV2Library: INSUFFICIENT_LIQUIDITY'); uint numerator = reserveIn.mul(amountOut).mul(1000); uint denominator = reserveOut.sub(amountOut).mul(997); amountIn = (numerator / denominator).add(1); } // performs chained getAmountOut calculations on any number of pairs function getAmountsOut(address factory, uint amountIn, address[] memory path) internal view returns (uint[] memory amounts) { require(path.length >= 2, 'UniswapV2Library: INVALID_PATH'); amounts = new uint[](path.length); amounts[0] = amountIn; for (uint i; i < path.length - 1; i++) { (uint reserveIn, uint reserveOut) = getReserves(factory, path[i], path[i + 1]); amounts[i + 1] = getAmountOut(amounts[i], reserveIn, reserveOut); } } // performs chained getAmountIn calculations on any number of pairs function getAmountsIn(address factory, uint amountOut, address[] memory path) internal view returns (uint[] memory amounts) { require(path.length >= 2, 'UniswapV2Library: INVALID_PATH'); amounts = new uint[](path.length); amounts[amounts.length - 1] = amountOut; for (uint i = path.length - 1; i > 0; i--) { (uint reserveIn, uint reserveOut) = getReserves(factory, path[i - 1], path[i]); amounts[i - 1] = getAmountIn(amounts[i], reserveIn, reserveOut); } } } // File: contracts\impermax-v2-core\interfaces\ICollateralV2.sol pragma solidity >=0.5.0; interface ICollateralV2 { /*** Impermax ERC20 ***/ event Transfer(address indexed from, address indexed to, uint value); event Approval(address indexed owner, address indexed spender, 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; /*** Pool Token ***/ event Mint(address indexed sender, address indexed minter, uint mintAmount, uint mintTokens); event Redeem(address indexed sender, address indexed redeemer, uint redeemAmount, uint redeemTokens); event Sync(uint totalBalance); function underlying() external view returns (address); function factory() external view returns (address); function totalBalance() external view returns (uint); function MINIMUM_LIQUIDITY() external pure returns (uint); function exchangeRate() external returns (uint); function mint(address minter) external returns (uint mintTokens); function redeem(address redeemer) external returns (uint redeemAmount); function skim(address to) external; function sync() external; function _setFactory() external; /*** Collateral ***/ function borrowable0() external view returns (address); function borrowable1() external view returns (address); function simpleUniswapOracle() external view returns (address); function safetyMarginSqrt() external view returns (uint); function liquidationIncentive() external view returns (uint); function liquidationFee() external view returns (uint); function liquidationPenalty() external view returns (uint); function getTwapPrice112x112() external returns(uint224 twapPrice112x112); function getPrices() external returns (uint price0, uint price1); function tokensUnlocked(address from, uint value) external returns (bool); function accountLiquidityAmounts(address account, uint amount0, uint amount1) external returns (uint liquidity, uint shortfall); function accountLiquidity(address account) external returns (uint liquidity, uint shortfall); function canBorrow(address account, address borrowable, uint accountBorrows) external returns (bool); function seize(address liquidator, address borrower, uint repayAmount) external returns (uint seizeTokens); function flashRedeem(address redeemer, uint redeemAmount, bytes calldata data) external; /*** Collateral Setter ***/ event NewSafetyMargin(uint newSafetyMarginSqrt); event NewLiquidationIncentive(uint newLiquidationIncentive); event NewLiquidationFee(uint newLiquidationFee); function SAFETY_MARGIN_SQRT_MIN() external pure returns (uint); function SAFETY_MARGIN_SQRT_MAX() external pure returns (uint); function LIQUIDATION_INCENTIVE_MIN() external pure returns (uint); function LIQUIDATION_INCENTIVE_MAX() external pure returns (uint); function LIQUIDATION_FEE_MAX() external pure returns (uint); function _initialize ( string calldata _name, string calldata _symbol, address _underlying, address _borrowable0, address _borrowable1 ) external; function _setSafetyMarginSqrt(uint newSafetyMarginSqrt) external; function _setLiquidationIncentive(uint newLiquidationIncentive) external; function _setLiquidationFee(uint newLiquidationFee) external; } // File: contracts\ImpermaxV2SolidlyRouter01.sol pragma solidity =0.5.16; contract ImpermaxV2SolidlyRouter01 is ImpermaxV2BaseRouter01 { constructor(address _factory, address _WETH) public ImpermaxV2BaseRouter01(_factory, _WETH) {} /*** Primitive Actions ***/ function _mintUniV2Internal( LendingPool memory pool, address msgSender, uint lpAmountUser, uint amount0User, uint amount1User, uint amount0Router, uint amount1Router ) internal { address uniswapV2Pair = IStakedLPToken(pool.lp).underlying(); // adjust amount for ETH // if the user has deposited native ETH, we need to subtract that amount from amountUser and add it to amountRouter int isEth = pool.tokens[0] == WETH ? 0 : pool.tokens[1] == WETH ? int(1) : -1; if (isEth != -1) { uint routerBalance = IERC20(WETH).balanceOf(address(this)); if (isEth == 0 && routerBalance > amount0Router) { uint totalEthAmount = amount0User.add(amount0Router); amount0Router = Math.min(totalEthAmount, routerBalance); amount0User = totalEthAmount.sub(amount0Router); } if (isEth == 1 && routerBalance > amount1Router) { uint totalEthAmount = amount1User.add(amount1Router); amount1Router = Math.min(totalEthAmount, routerBalance); amount1User = totalEthAmount.sub(amount1Router); } } // add liquidity to uniswap pair if (amount0User > 0) ImpermaxPermit.safeTransferFrom(pool.tokens[0], msgSender, uniswapV2Pair, amount0User); if (amount1User > 0) ImpermaxPermit.safeTransferFrom(pool.tokens[1], msgSender, uniswapV2Pair, amount1User); if (amount0Router > 0) TransferHelper.safeTransfer(pool.tokens[0], uniswapV2Pair, amount0Router); if (amount1Router > 0) TransferHelper.safeTransfer(pool.tokens[1], uniswapV2Pair, amount1Router); // mint LP token if (amount0User + amount0Router > 0) ISolidlyPair(uniswapV2Pair).mint(pool.lp); if (lpAmountUser > 0) ImpermaxPermit.safeTransferFrom(uniswapV2Pair, msgSender, pool.lp, lpAmountUser); IStakedLPToken(pool.lp).mint(pool.collateral); // mint collateral ICollateralV2(pool.collateral).mint(msgSender); } function _mintUniV2( LendingPool memory pool, address msgSender, uint lpAmountUser, uint amount0Desired, // intended as user amount uint amount1Desired, // intended as user amount uint amount0Min, uint amount1Min ) internal { address uniswapV2Pair = IStakedLPToken(pool.lp).underlying(); (uint amount0, uint amount1) = _optimalLiquidityUniV2(uniswapV2Pair, amount0Desired, amount1Desired, amount0Min, amount1Min); _mintUniV2Internal(pool, msgSender, lpAmountUser, amount0, amount1, 0, 0); } function _redeemUniV2Step1( LendingPool memory pool, address msgSender, uint percentage, uint amount0Min, uint amount1Min, address to, Actions.Action memory nextAction ) internal { require(percentage > 0, "ImpermaxRouter: REDEEM_ZERO"); uint redeemTokens = IERC20(pool.collateral).balanceOf(msgSender).mul(percentage).div(1e18); bytes memory encoded = abi.encode(RedeemCallbackData({ pool: pool, msgSender: msgSender, redeemTo: to, redeemTokens: redeemTokens, amount0Min: amount0Min, amount1Min: amount1Min, nextAction: nextAction })); uint exchangeRate = ICollateralV2(pool.collateral).exchangeRate(); uint redeemAmount = (redeemTokens - 1).mul(exchangeRate).div(1e18); ICollateralV2(pool.collateral).flashRedeem(address(this), redeemAmount, encoded); } function _redeemStep2( LendingPool memory pool, uint amount0Min, uint amount1Min, address to ) internal { uint redeemAmount = IStakedLPToken(pool.lp).balanceOf(address(this)); address uniswapV2Pair = IStakedLPToken(pool.lp).underlying(); IStakedLPToken(pool.lp).transfer(pool.lp, redeemAmount); IStakedLPToken(pool.lp).redeem(uniswapV2Pair); (uint amount0, uint amount1) = ISolidlyPair(uniswapV2Pair).burn(to); require(amount0 >= amount0Min, "ImpermaxRouter: INSUFFICIENT_0_AMOUNT"); require(amount1 >= amount1Min, "ImpermaxRouter: INSUFFICIENT_1_AMOUNT"); } /*** Composite Actions ***/ function _borrowAndMintUniV2( LendingPool memory pool, uint lpAmountUser, uint amount0User, uint amount1User, uint amount0Desired, // intended as user amount + router amount uint amount1Desired, // intended as user amount + router amount uint amount0Min, // intended as user amount + router amount uint amount1Min // intended as user amount + router amount ) internal view returns (Actions.Action[] memory a) { address uniswapV2Pair = IStakedLPToken(pool.lp).underlying(); (uint amount0, uint amount1) = _optimalLiquidityUniV2(uniswapV2Pair, amount0Desired, amount1Desired, amount0Min, amount1Min); (uint amount0Router, uint amount1Router) = ( amount0 > amount0User ? amount0 - amount0User : 0, amount1 > amount1User ? amount1 - amount1User : 0 ); require(amount0Router > 0 || amount1Router > 0, "ImpermaxRouter: NO_ACTUAL_BORROWING"); if (amount0Router > 0 && amount1Router > 0) { a = new Actions.Action[](3); a[0] = Actions.getBorrowAction(0, amount0Router, address(this)); a[1] = Actions.getBorrowAction(1, amount1Router, address(this)); } else { a = new Actions.Action[](2); if (amount0Router > 0) a[0] = Actions.getBorrowAction(0, amount0Router, address(this)); if (amount1Router > 0) a[0] = Actions.getBorrowAction(1, amount1Router, address(this)); } a[a.length-1] = Actions.getMintUniV2InternalAction(lpAmountUser, amount0 - amount0Router, amount1 - amount1Router, amount0Router, amount1Router); } /*** EXECUTE ***/ function _execute( LendingPool memory pool, address msgSender, Actions.Action memory action ) internal { if (action.actionType == Actions.Type.NO_ACTION) return; Actions.Action memory nextAction = abi.decode(action.nextAction, (Actions.Action)); if (action.actionType == Actions.Type.MINT_UNIV2_INTERNAL) { Actions.MintUniV2InternalData memory decoded = abi.decode(action.actionData, (Actions.MintUniV2InternalData)); _mintUniV2Internal( pool, msgSender, decoded.lpAmountUser, decoded.amount0User, decoded.amount1User, decoded.amount0Router, decoded.amount1Router ); } else if (action.actionType == Actions.Type.MINT_UNIV2) { Actions.MintUniV2Data memory decoded = abi.decode(action.actionData, (Actions.MintUniV2Data)); _mintUniV2( pool, msgSender, decoded.lpAmountUser, decoded.amount0Desired, decoded.amount1Desired, decoded.amount0Min, decoded.amount1Min ); } else if (action.actionType == Actions.Type.REDEEM_UNIV2) { Actions.RedeemUniV2Data memory decoded = abi.decode(action.actionData, (Actions.RedeemUniV2Data)); _redeemUniV2Step1( pool, msgSender, decoded.percentage, decoded.amount0Min, decoded.amount1Min, decoded.to, nextAction ); return; } else if (action.actionType == Actions.Type.BORROW_AND_MINT_UNIV2) { Actions.BorrowAndMintUniV2Data memory decoded = abi.decode(action.actionData, (Actions.BorrowAndMintUniV2Data)); Actions.Action[] memory actions = _borrowAndMintUniV2( pool, decoded.lpAmountUser, decoded.amount0User, decoded.amount1User, decoded.amount0Desired, decoded.amount1Desired, decoded.amount0Min, decoded.amount1Min ); nextAction = Actions.actionsSorter(actions, nextAction); } else return super._execute(pool, msgSender, action); return _execute( pool, msgSender, nextAction ); } /*** Utilities ***/ function _optimalLiquidityUniV2( address uniswapV2Pair, uint amount0Desired, uint amount1Desired, uint amount0Min, uint amount1Min ) public view returns (uint amount0, uint amount1) { if (amount0Desired == 0) return (0, 0); (uint reserve0, uint reserve1,) = ISolidlyPair(uniswapV2Pair).getReserves(); uint amount1Optimal = UniswapV2Library.quote(amount0Desired, reserve0, reserve1); if (amount1Optimal <= amount1Desired) { require(amount1Optimal >= amount1Min, "ImpermaxRouter: INSUFFICIENT_1_AMOUNT"); (amount0, amount1) = (amount0Desired, amount1Optimal); } else { uint amount0Optimal = UniswapV2Library.quote(amount1Desired, reserve1, reserve0); assert(amount0Optimal <= amount0Desired); require(amount0Optimal >= amount0Min, "ImpermaxRouter: INSUFFICIENT_0_AMOUNT"); (amount0, amount1) = (amount0Optimal, amount1Desired); } } }
{ "optimizer": { "enabled": true, "runs": 999999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": { "contracts/impermax-v3/routers/ImpermaxV2SolidlyRouter01Flattened.sol": { "Actions": "0x34dcf55e29d5f679a4985c1f09d386a17c1843b8", "ImpermaxPermit": "0xe8d69d773cb712320f8945dab24167702699dfb7" } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_factory","type":"address"},{"internalType":"address","name":"_WETH","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"amount0Desired","type":"uint256"},{"internalType":"uint256","name":"amount1Desired","type":"uint256"},{"internalType":"uint256","name":"amount0Min","type":"uint256"},{"internalType":"uint256","name":"amount1Min","type":"uint256"}],"name":"_optimalLiquidityUniV2","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"lp","type":"address"},{"internalType":"bytes","name":"actionsData","type":"bytes"},{"internalType":"bytes","name":"permitsData","type":"bytes"}],"name":"execute","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"lp","type":"address"},{"internalType":"uint8","name":"index","type":"uint8"}],"name":"getBorrowable","outputs":[{"internalType":"address","name":"borrowable","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"lp","type":"address"}],"name":"getCollateral","outputs":[{"internalType":"address","name":"collateral","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"lp","type":"address"}],"name":"getLendingPool","outputs":[{"components":[{"internalType":"address","name":"lp","type":"address"},{"internalType":"address","name":"collateral","type":"address"},{"internalType":"address[2]","name":"borrowables","type":"address[2]"},{"internalType":"address[2]","name":"tokens","type":"address[2]"}],"internalType":"struct IV2BaseRouter01.LendingPool","name":"pool","type":"tuple"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"borrowAmount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"impermaxBorrow","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"redeemAmount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"impermaxRedeem","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162004c2138038062004c21833981016040819052620000349162000079565b600080546001600160a01b039384166001600160a01b03199182161790915560018054929093169116179055620000e4565b80516200007381620000ca565b92915050565b600080604083850312156200008d57600080fd5b60006200009b858562000066565b9250506020620000ae8582860162000066565b9150509250929050565b60006001600160a01b03821662000073565b620000d581620000b8565b8114620000e157600080fd5b50565b614b2d80620000f46000396000f3fe6080604052600436106100965760003560e01c8063acb86cbb11610069578063c45a01551161004e578063c45a01551461019f578063d4fa4534146101b4578063ef974e9c146101c757610096565b8063acb86cbb1461016a578063ad5c46481461018a57610096565b80630572bf5f146100b95780633d34d68e146100ef578063876d9d9e1461011d5780639b56d6c91461013d575b60015473ffffffffffffffffffffffffffffffffffffffff1633146100b757fe5b005b3480156100c557600080fd5b506100d96100d4366004613960565b6101e7565b6040516100e69190614879565b60405180910390f35b3480156100fb57600080fd5b5061010f61010a366004613af6565b61042c565b6040516100e69291906148a6565b34801561012957600080fd5b506100b76101383660046139a4565b610590565b34801561014957600080fd5b5061015d610158366004613960565b61067e565b6040516100e69190614614565b34801561017657600080fd5b506100b7610185366004613a8e565b610730565b34801561019657600080fd5b5061015d6108be565b3480156101ab57600080fd5b5061015d6108da565b6100b76101c2366004613a22565b6108f6565b3480156101d357600080fd5b5061015d6101e2366004613b6b565b610b19565b6101ef613003565b73ffffffffffffffffffffffffffffffffffffffff80831682526000546040517f0572bf5f000000000000000000000000000000000000000000000000000000008152911690630572bf5f90610249908590600401614614565b60a06040518083038186803b15801561026157600080fd5b505afa158015610275573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506102999190810190613bf8565b6040868101805173ffffffffffffffffffffffffffffffffffffffff93841660208083019190915294841690529382168388015292515183517f6f307dc3000000000000000000000000000000000000000000000000000000008152935191169450636f307dc39350600480840193829003018186803b15801561031c57600080fd5b505afa158015610330573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506103549190810190613986565b606082015173ffffffffffffffffffffffffffffffffffffffff918216905260408083015160209081015182517f6f307dc30000000000000000000000000000000000000000000000000000000081529251931692636f307dc3926004808201939291829003018186803b1580156103cb57600080fd5b505afa1580156103df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506104039190810190613986565b606082015173ffffffffffffffffffffffffffffffffffffffff91909116602090910152919050565b6000808561043f57506000905080610586565b6000808873ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561048857600080fd5b505afa15801561049c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506104c09190810190613e1f565b509150915060006104d2898484610c24565b9050878111610529578581101561051e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614848565b60405180910390fd5b889450925082610582565b6000610536898486610c24565b90508981111561054257fe5b8781101561057c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515906147d8565b94508793505b5050505b9550959350505050565b610598613034565b6105a482840184613cb3565b905060006105be8260000151600001518360200151610b19565b905073ffffffffffffffffffffffffffffffffffffffff8716301461060f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515906147c8565b3373ffffffffffffffffffffffffffffffffffffffff82161461065e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614798565b610675826000015183604001518460600151610cc6565b50505050505050565b600080546040517f0572bf5f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690630572bf5f906106d5908590600401614614565b60a06040518083038186803b1580156106ed57600080fd5b505afa158015610701573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506107259190810190613bf8565b509095945050505050565b610738613062565b61074482840184613d24565b8051519091506000906107569061067e565b905073ffffffffffffffffffffffffffffffffffffffff861630146107a7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515906147c8565b3373ffffffffffffffffffffffffffffffffffffffff8216146107f6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614798565b610812826000015183608001518460a001518560400151610f71565b610829826000015183602001518460c00151610cc6565b602082015160608301516040517fd9fc4b6100000000000000000000000000000000000000000000000000000000815273e8d69d773cb712320f8945dab24167702699dfb79263d9fc4b61926108869286929183916004016146a1565b60006040518083038186803b15801561089e57600080fd5b505af41580156108b2573d6000803e3d6000fd5b50505050505050505050565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b81818080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517fc6e5944900000000000000000000000000000000000000000000000000000000815273e8d69d773cb712320f8945dab24167702699dfb7925063c6e59449915061097c90849060040161474f565b60006040518083038186803b15801561099457600080fd5b505af41580156109a8573d6000803e3d6000fd5b505050506000341115610a3957600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015610a1f57600080fd5b505af1158015610a33573d6000803e3d6000fd5b50505050505b6060610a4785870187613ba5565b9050610a51613003565b610a5a886101e7565b9050610b0f81337334dcf55e29d5f679a4985c1f09d386a17c1843b86382b329ce866040518263ffffffff1660e01b8152600401610a989190614719565b60006040518083038186803b158015610ab057600080fd5b505af4158015610ac4573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052610b0a9190810190613c60565b610cc6565b5050505050505050565b600060028260ff1610610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515906147e8565b600080546040517f0572bf5f000000000000000000000000000000000000000000000000000000008152829173ffffffffffffffffffffffffffffffffffffffff1690630572bf5f90610baf908890600401614614565b60a06040518083038186803b158015610bc757600080fd5b505afa158015610bdb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610bff9190810190613bf8565b945094505050508360ff16600014610c175780610c19565b815b925050505b92915050565b6000808411610c5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614828565b600083118015610c6f5750600082115b610ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515906147f8565b82610cb6858463ffffffff6112f416565b81610cbd57fe5b04949350505050565b60058151600f811115610cd557fe5b1415610ce057610f6c565b610ce86130cd565b8160400151806020019051610d009190810190613c60565b905060078251600f811115610d1157fe5b1415610d6257610d1f6130ef565b8260200151806020019051610d379190810190613d06565b9050610d5c85858360000151846020015185604001518660600151876080015161134f565b50610f5f565b60088251600f811115610d7157fe5b1415610dbc57610d7f6130ef565b8260200151806020019051610d979190810190613d06565b9050610d5c85858360000151846020015185604001518660600151876080015161198e565b60098251600f811115610dcb57fe5b1415610e1957610dd961311e565b8260200151806020019051610df19190810190613d59565b9050610e128585836000015184602001518560400151866060015188611a38565b5050610f6c565b600a8251600f811115610e2857fe5b1415610f4e57610e3661315c565b8260200151806020019051610e4e9190810190613c95565b90506060610e7e86836000015184602001518560400151866060015187608001518860a001518960c00151611d11565b6040517f413d5e960000000000000000000000000000000000000000000000000000000081529091507334dcf55e29d5f679a4985c1f09d386a17c1843b89063413d5e9690610ed3908490879060040161472a565b60006040518083038186803b158015610eeb57600080fd5b505af4158015610eff573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052610f459190810190613c60565b92505050610f5f565b610f59848484612308565b50610f6c565b610f6a848483610cc6565b505b505050565b83516040517f70a0823100000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff16906370a0823190610fc7903090600401614622565b60206040518083038186803b158015610fdf57600080fd5b505afa158015610ff3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506110179190810190613dd1565b90506000856000015173ffffffffffffffffffffffffffffffffffffffff16636f307dc36040518163ffffffff1660e01b815260040160206040518083038186803b15801561106557600080fd5b505afa158015611079573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061109d9190810190613986565b86516040517fa9059cbb00000000000000000000000000000000000000000000000000000000815291925073ffffffffffffffffffffffffffffffffffffffff81169163a9059cbb916110f49186906004016146fe565b602060405180830381600087803b15801561110e57600080fd5b505af1158015611122573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506111469190810190613bda565b5085516040517f95a2251f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909116906395a2251f9061119c908490600401614614565b602060405180830381600087803b1580156111b657600080fd5b505af11580156111ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506111ee9190810190613dd1565b506000808273ffffffffffffffffffffffffffffffffffffffff166389afcb44866040518263ffffffff1660e01b815260040161122b9190614614565b6040805180830381600087803b15801561124457600080fd5b505af1158015611258573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061127c9190810190613def565b91509150868210156112ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515906147d8565b85811015610b0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614848565b60008261130357506000610c1e565b8282028284828161131057fe5b0414611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614808565b9392505050565b6000876000015173ffffffffffffffffffffffffffffffffffffffff16636f307dc36040518163ffffffff1660e01b815260040160206040518083038186803b15801561139b57600080fd5b505afa1580156113af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506113d39190810190613986565b60015460608a01515191925060009173ffffffffffffffffffffffffffffffffffffffff90811691161461145a5760015460608a01516020015173ffffffffffffffffffffffffffffffffffffffff908116911614611452577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611455565b60015b61145d565b60005b9050807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff146115bf576001546040517f70a0823100000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff16906370a08231906114dd903090600401614622565b60206040518083038186803b1580156114f557600080fd5b505afa158015611509573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061152d9190810190613dd1565b90508115801561153c57508481115b15611575576000611553888763ffffffff61251816565b905061155f8183612557565b9550611571818763ffffffff61256d16565b9750505b81600114801561158457508381115b156115bd57600061159b878663ffffffff61251816565b90506115a78183612557565b94506115b9818663ffffffff61256d16565b9650505b505b8515611651576060890151516040517fd9fc4b6100000000000000000000000000000000000000000000000000000000815273e8d69d773cb712320f8945dab24167702699dfb79163d9fc4b619161162091908c9087908c906004016146a1565b60006040518083038186803b15801561163857600080fd5b505af415801561164c573d6000803e3d6000fd5b505050505b84156116e6576060890151602001516040517fd9fc4b6100000000000000000000000000000000000000000000000000000000815273e8d69d773cb712320f8945dab24167702699dfb79163d9fc4b61916116b591908c9087908b906004016146a1565b60006040518083038186803b1580156116cd57600080fd5b505af41580156116e1573d6000803e3d6000fd5b505050505b83156116fd576060890151516116fd9083866125af565b8215611717576060890151602001516117179083856125af565b858401156117c65788516040517f6a62784200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff841691636a627842916117729190600401614614565b602060405180830381600087803b15801561178c57600080fd5b505af11580156117a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506117c49190810190613dd1565b505b86156118545788516040517fd9fc4b6100000000000000000000000000000000000000000000000000000000815273e8d69d773cb712320f8945dab24167702699dfb79163d9fc4b61916118239186918d91908d906004016146a1565b60006040518083038186803b15801561183b57600080fd5b505af415801561184f573d6000803e3d6000fd5b505050505b885160208a01516040517f6a62784200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90921691636a627842916118ac91600401614614565b602060405180830381600087803b1580156118c657600080fd5b505af11580156118da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506118fe9190810190613dd1565b50886020015173ffffffffffffffffffffffffffffffffffffffff16636a627842896040518263ffffffff1660e01b815260040161193c9190614614565b602060405180830381600087803b15801561195657600080fd5b505af115801561196a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506108b29190810190613dd1565b6000876000015173ffffffffffffffffffffffffffffffffffffffff16636f307dc36040518163ffffffff1660e01b815260040160206040518083038186803b1580156119da57600080fd5b505afa1580156119ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611a129190810190613986565b9050600080611a24838888888861042c565b915091506108b28a8a8a858560008061134f565b60008511611a72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614818565b6000611b29670de0b6b3a7640000611b1d888b6020015173ffffffffffffffffffffffffffffffffffffffff166370a082318c6040518263ffffffff1660e01b8152600401611ac19190614614565b60206040518083038186803b158015611ad957600080fd5b505afa158015611aed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611b119190810190613dd1565b9063ffffffff6112f416565b9063ffffffff6126d916565b905060606040518060e001604052808a81526020018973ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff16815260200183815260200187815260200186815260200184815250604051602001611b9c9190614887565b60405160208183030381529060405290506000896020015173ffffffffffffffffffffffffffffffffffffffff16633ba0b9a96040518163ffffffff1660e01b8152600401602060405180830381600087803b158015611bfb57600080fd5b505af1158015611c0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611c339190810190613dd1565b90506000611c75670de0b6b3a7640000611b1d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87018563ffffffff6112f416565b60208c01516040517f19f3400d00000000000000000000000000000000000000000000000000000000815291925073ffffffffffffffffffffffffffffffffffffffff16906319f3400d90611cd290309085908890600401614630565b600060405180830381600087803b158015611cec57600080fd5b505af1158015611d00573d6000803e3d6000fd5b505050505050505050505050505050565b60606000896000015173ffffffffffffffffffffffffffffffffffffffff16636f307dc36040518163ffffffff1660e01b815260040160206040518083038186803b158015611d5f57600080fd5b505afa158015611d73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611d979190810190613986565b9050600080611da9838989898961042c565b915091506000808b8411611dbe576000611dc2565b8b84035b8b8411611dd0576000611dd4565b8b84035b915091506000821180611de75750600081115b611e1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614788565b600082118015611e2d5750600081115b15612028576040805160038082526080820190925290816020015b611e506130cd565b815260200190600190039081611e485750506040517fb2e0a0f80000000000000000000000000000000000000000000000000000000081529096507334dcf55e29d5f679a4985c1f09d386a17c1843b89063b2e0a0f890611eba9060009086903090600401614760565b60006040518083038186803b158015611ed257600080fd5b505af4158015611ee6573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052611f2c9190810190613c60565b86600081518110611f3957fe5b60209081029190910101526040517fb2e0a0f80000000000000000000000000000000000000000000000000000000081527334dcf55e29d5f679a4985c1f09d386a17c1843b89063b2e0a0f890611f999060019085903090600401614760565b60006040518083038186803b158015611fb157600080fd5b505af4158015611fc5573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820160405261200b9190810190613c60565b8660018151811061201857fe5b6020026020010181905250612227565b6040805160028082526060820190925290816020015b6120466130cd565b81526020019060019003908161203e5790505095508115612141576040517fb2e0a0f80000000000000000000000000000000000000000000000000000000081527334dcf55e29d5f679a4985c1f09d386a17c1843b89063b2e0a0f8906120b69060009086903090600401614760565b60006040518083038186803b1580156120ce57600080fd5b505af41580156120e2573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526121289190810190613c60565b8660008151811061213557fe5b60200260200101819052505b8015612227576040517fb2e0a0f80000000000000000000000000000000000000000000000000000000081527334dcf55e29d5f679a4985c1f09d386a17c1843b89063b2e0a0f89061219c9060019085903090600401614760565b60006040518083038186803b1580156121b457600080fd5b505af41580156121c8573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820160405261220e9190810190613c60565b8660008151811061221b57fe5b60200260200101819052505b7334dcf55e29d5f679a4985c1f09d386a17c1843b86317d0c30d8e84870384870386866040518663ffffffff1660e01b815260040161226a9594939291906148b4565b60006040518083038186803b15801561228257600080fd5b505af4158015612296573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526122dc9190810190613c60565b866001885103815181106122ec57fe5b6020026020010181905250505050505098975050505050505050565b60058151600f81111561231757fe5b141561232257610f6c565b61232a6130cd565b81604001518060200190516123429190810190613c60565b905060008251600f81111561235357fe5b14156123be57612361613199565b82602001518060200190516123799190810190613ce8565b905061239585826000015186846020015185604001518761271b565b604081015173ffffffffffffffffffffffffffffffffffffffff16301415610d5c575050610f6c565b60018251600f8111156123cd57fe5b1415612409576123db6131b9565b82602001518060200190516123f39190810190613d77565b9050610d5c858260000151868460200151612854565b60028251600f81111561241857fe5b141561245957612426613199565b826020015180602001905161243e9190810190613ce8565b9050610d5c85826000015186846020015185604001516129a1565b60038251600f81111561246857fe5b14156124a2576124766131b9565b826020015180602001905161248e9190810190613db3565b9050610d5c81600001518260200151612b99565b60048251600f8111156124b157fe5b14156124e6576124bf6131d0565b82602001518060200190516124d79190810190613d95565b9050610d5c8160000151612c51565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614838565b600082820183811015611348576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515906147a8565b60008183106125665781611348565b5090919050565b600061134883836040518060400160405280601f81526020017f536166654d6174683a207375627472616374696f6e20756e646572666c6f7700815250612d9c565b600060608473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040516024016125e29291906146fe565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516126309190614608565b6000604051808303816000865af19150503d806000811461266d576040519150601f19603f3d011682016040523d82523d6000602084013e612672565b606091505b509150915081801561269c57508051158061269c57508080602001905161269c9190810190613bda565b6126d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614858565b5050505050565b600061134883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612de2565b606060058251600f81111561272c57fe5b148061274e575073ffffffffffffffffffffffffffffffffffffffff83163014155b6127b05760405180608001604052808881526020018760ff1681526020018673ffffffffffffffffffffffffffffffffffffffff1681526020018381525060405160200161279c9190614868565b6040516020818303038152906040526127c1565b604051806020016040528060008152505b905086604001518660ff16600281106127d657fe5b602002015173ffffffffffffffffffffffffffffffffffffffff16631e7dcc0d868587856040518563ffffffff1660e01b815260040161281994939291906146d6565b600060405180830381600087803b15801561283357600080fd5b505af1158015612847573d6000803e3d6000fd5b5050505050505050505050565b600084604001518460ff166002811061286957fe5b60200201519050600061287d828585612e33565b90508061288b575050610f6a565b73e8d69d773cb712320f8945dab24167702699dfb763d9fc4b6187606001518760ff16600281106128b857fe5b60200201518685856040518563ffffffff1660e01b81526004016128df94939291906146a1565b60006040518083038186803b1580156128f757600080fd5b505af415801561290b573d6000803e3d6000fd5b505060408051600080825260208201928390527f1e7dcc0d0000000000000000000000000000000000000000000000000000000090925273ffffffffffffffffffffffffffffffffffffffff86169350631e7dcc0d925061297391889181906024810161465d565b600060405180830381600087803b15801561298d57600080fd5b505af11580156108b2573d6000803e3d6000fd5b600085604001518560ff16600281106129b657fe5b60200201519050600086606001518660ff16600281106129d257fe5b602002015173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612a0f9190614622565b60206040518083038186803b158015612a2757600080fd5b505afa158015612a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250612a5f9190810190613dd1565b9050612a6b8482612557565b93506000612a7a838787612e33565b90508082118015612aa1575073ffffffffffffffffffffffffffffffffffffffff84163014155b15612aca57612aca88606001518860ff1660028110612abc57fe5b6020020151858385036125af565b80612ad7575050506126d2565b612af988606001518860ff1660028110612aed57fe5b602002015184836125af565b60408051600080825260208201928390527f1e7dcc0d0000000000000000000000000000000000000000000000000000000090925273ffffffffffffffffffffffffffffffffffffffff851691631e7dcc0d91612b5d918a9181906024810161465d565b600060405180830381600087803b158015612b7757600080fd5b505af1158015612b8b573d6000803e3d6000fd5b505050505050505050505050565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff8416906370a0823190612bee903090600401614622565b60206040518083038186803b158015612c0657600080fd5b505afa158015612c1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250612c3e9190810190613dd1565b90508015610f6c57610f6c8383836125af565b6001546040517f70a0823100000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff16906370a0823190612ca8903090600401614622565b60206040518083038186803b158015612cc057600080fd5b505afa158015612cd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250612cf89190810190613dd1565b905080612d055750612d99565b6001546040517f2e1a7d4d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690632e1a7d4d90612d5b908490600401614898565b600060405180830381600087803b158015612d7557600080fd5b505af1158015612d89573d6000803e3d6000fd5b50505050612d978282612f4f565b505b50565b60008184841115612dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515919061474f565b505050900390565b60008183612e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515919061474f565b506000838581612e2957fe5b0495945050505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663a6afed956040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612e7d57600080fd5b505af1158015612e91573d6000803e3d6000fd5b50506040517f4d73e9ba0000000000000000000000000000000000000000000000000000000081526000925073ffffffffffffffffffffffffffffffffffffffff87169150634d73e9ba90612eea908790600401614614565b60206040518083038186803b158015612f0257600080fd5b505afa158015612f16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250612f3a9190810190613dd1565b9050612f468382612557565b95945050505050565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff8416908390604051612f869190614608565b60006040518083038185875af1925050503d8060008114612fc3576040519150601f19603f3d011682016040523d82523d6000602084013e612fc8565b606091505b5050905080610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515906147b8565b60408051608081018252600080825260208201529081016130226131e2565b815260200161302f6131e2565b905290565b6040518060800160405280613047613003565b8152600060208201819052604082015260600161302f6130cd565b6040518060e00160405280613075613003565b8152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160008152602001600081526020016000815260200161302f5b6040805160608101909152806000815260200160608152602001606081525090565b6040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b6040518060800160405280600081526020016000815260200160008152602001600073ffffffffffffffffffffffffffffffffffffffff1681525090565b6040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516060810182526000808252602082018190529181019190915290565b604080518082019091526000808252602082015290565b60408051602081019091526000815290565b60405180604001604052806002906020820280388339509192915050565b8035610c1e81614aa5565b8051610c1e81614aa5565b600082601f83011261322757600080fd5b600261323a6132358261491d565b6148f6565b9150818385602084028201111561325057600080fd5b60005b8381101561327c57816132668882613200565b8452506020928301929190910190600101613253565b5050505092915050565b600082601f83011261329757600080fd5b81356132a56132358261493b565b81815260209384019390925082018360005b8381101561327c57813586016132cd88826133e2565b84525060209283019291909101906001016132b7565b8051610c1e81614ab9565b60008083601f84011261330057600080fd5b50813567ffffffffffffffff81111561331857600080fd5b60208301915083600182028301111561333057600080fd5b9250929050565b600082601f83011261334857600080fd5b81356133566132358261495c565b9150808252602083016020830185838301111561337257600080fd5b61337d838284614a3b565b50505092915050565b600082601f83011261339757600080fd5b81516133a56132358261495c565b915080825260208301602083018583830111156133c157600080fd5b61337d838284614a47565b8035610c1e81614ac2565b8051610c1e81614ac2565b6000606082840312156133f457600080fd5b6133fe60606148f6565b9050600061340c84846133cc565b825250602082013567ffffffffffffffff81111561342957600080fd5b61343584828501613337565b602083015250604082013567ffffffffffffffff81111561345557600080fd5b61346184828501613337565b60408301525092915050565b60006060828403121561347f57600080fd5b61348960606148f6565b9050600061349784846133d7565b825250602082015167ffffffffffffffff8111156134b457600080fd5b6134c084828501613386565b602083015250604082015167ffffffffffffffff8111156134e057600080fd5b61346184828501613386565b600060e082840312156134fe57600080fd5b61350860e06148f6565b90506000613516848461393f565b82525060206135278484830161393f565b602083015250604061353b8482850161393f565b604083015250606061354f8482850161393f565b60608301525060806135638482850161393f565b60808301525060a06135778482850161393f565b60a08301525060c061358b8482850161393f565b60c08301525092915050565b600061012082840312156135aa57600080fd5b6135b460806148f6565b905060006135c2848461366f565b82525060c06135d38484830161394a565b60208301525060e06135e784828501613200565b60408301525061010082013567ffffffffffffffff81111561360857600080fd5b613614848285016133e2565b60608301525092915050565b60006060828403121561363257600080fd5b61363c60606148f6565b9050600061364a8484613955565b825250602061365b8484830161393f565b60208301525060406134618482850161320b565b600060c0828403121561368157600080fd5b61368b60806148f6565b905060006136998484613200565b82525060206136aa84848301613200565b60208301525060406136be84828501613216565b604083015250608061361484828501613216565b600060a082840312156136e457600080fd5b6136ee60a06148f6565b905060006136fc848461393f565b825250602061370d8484830161393f565b60208301525060406137218482850161393f565b60408301525060606137358482850161393f565b60608301525060806137498482850161393f565b60808301525092915050565b6000610180828403121561376857600080fd5b61377260e06148f6565b90506000613780848461366f565b82525060c061379184848301613200565b60208301525060e06137a584828501613200565b6040830152506101006137ba84828501613934565b6060830152506101206137cf84828501613934565b6080830152506101406137e484828501613934565b60a08301525061016082013567ffffffffffffffff81111561380557600080fd5b61358b848285016133e2565b60006080828403121561382357600080fd5b61382d60806148f6565b9050600061383b848461393f565b825250602061384c8484830161393f565b60208301525060406138608482850161393f565b60408301525060606136148482850161320b565b60006040828403121561388657600080fd5b61389060406148f6565b9050600061389e8484613955565b82525060206138af8484830161393f565b60208301525092915050565b6000602082840312156138cd57600080fd5b6138d760206148f6565b905060006138e5848461320b565b82525092915050565b60006040828403121561390057600080fd5b61390a60406148f6565b90506000613918848461320b565b82525060206138af8484830161320b565b8051610c1e81614acf565b8035610c1e81614ad8565b8051610c1e81614ad8565b8035610c1e81614ae1565b8051610c1e81614ae1565b60006020828403121561397257600080fd5b600061397e8484613200565b949350505050565b60006020828403121561399857600080fd5b600061397e848461320b565b6000806000806000608086880312156139bc57600080fd5b60006139c88888613200565b95505060206139d988828901613200565b94505060406139ea88828901613934565b935050606086013567ffffffffffffffff811115613a0757600080fd5b613a13888289016132ee565b92509250509295509295909350565b600080600080600060608688031215613a3a57600080fd5b6000613a468888613200565b955050602086013567ffffffffffffffff811115613a6357600080fd5b613a6f888289016132ee565b9450945050604086013567ffffffffffffffff811115613a0757600080fd5b60008060008060608587031215613aa457600080fd5b6000613ab08787613200565b9450506020613ac187828801613934565b935050604085013567ffffffffffffffff811115613ade57600080fd5b613aea878288016132ee565b95989497509550505050565b600080600080600060a08688031215613b0e57600080fd5b6000613b1a8888613200565b9550506020613b2b88828901613934565b9450506040613b3c88828901613934565b9350506060613b4d88828901613934565b9250506080613b5e88828901613934565b9150509295509295909350565b60008060408385031215613b7e57600080fd5b6000613b8a8585613200565b9250506020613b9b8582860161394a565b9150509250929050565b600060208284031215613bb757600080fd5b813567ffffffffffffffff811115613bce57600080fd5b61397e84828501613286565b600060208284031215613bec57600080fd5b600061397e84846132e3565b600080600080600060a08688031215613c1057600080fd5b6000613c1c88886132e3565b9550506020613c2d88828901613929565b9450506040613c3e8882890161320b565b9350506060613c4f8882890161320b565b9250506080613b5e8882890161320b565b600060208284031215613c7257600080fd5b815167ffffffffffffffff811115613c8957600080fd5b61397e8482850161346d565b600060e08284031215613ca757600080fd5b600061397e84846134ec565b600060208284031215613cc557600080fd5b813567ffffffffffffffff811115613cdc57600080fd5b61397e84828501613597565b600060608284031215613cfa57600080fd5b600061397e8484613620565b600060a08284031215613d1857600080fd5b600061397e84846136d2565b600060208284031215613d3657600080fd5b813567ffffffffffffffff811115613d4d57600080fd5b61397e84828501613755565b600060808284031215613d6b57600080fd5b600061397e8484613811565b600060408284031215613d8957600080fd5b600061397e8484613874565b600060208284031215613da757600080fd5b600061397e84846138bb565b600060408284031215613dc557600080fd5b600061397e84846138ee565b600060208284031215613de357600080fd5b600061397e848461393f565b60008060408385031215613e0257600080fd5b6000613e0e858561393f565b9250506020613b9b8582860161393f565b600080600060608486031215613e3457600080fd5b6000613e40868661393f565b9350506020613e518682870161393f565b9250506040613e628682870161393f565b9150509250925092565b6000613e788383613e9b565b505060200190565b60006113488383614482565b613e9581614a04565b82525050565b613e95816149c3565b613ead816149ab565b613eb781846149b5565b9250613ec2826149a2565b8060005b83811015613ef0578151613eda8782613e6c565b9650613ee5836149a5565b925050600101613ec6565b505050505050565b6000613f03826149b1565b613f0d81856149ba565b935083602082028501613f1f856149a5565b8060005b85811015613f595784840389528151613f3c8582613e80565b9450613f47836149a5565b60209a909a0199925050600101613f23565b5091979650505050505050565b6000613f71826149b1565b613f7b81856149ba565b9350613f8b818560208601614a47565b613f9481614a73565b9093019392505050565b6000613fa9826149b1565b613fb381856149b5565b9350613fc3818560208601614a47565b9290920192915050565b613e9581614a0f565b613e9581614a1a565b613e9581614a25565b6000613ff56023836149ba565b7f496d7065726d6178526f757465723a204e4f5f41435455414c5f424f52524f5781527f494e470000000000000000000000000000000000000000000000000000000000602082015260400192915050565b60006140546023836149ba565b7f496d7065726d6178526f757465723a20554e415554484f52495a45445f43414c81527f4c45520000000000000000000000000000000000000000000000000000000000602082015260400192915050565b60006140b3601b836149ba565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b60006140ec6034836149ba565b7f5472616e7366657248656c7065723a3a736166655472616e736665724554483a81527f20455448207472616e73666572206661696c6564000000000000000000000000602082015260400192915050565b600061414b6021836149ba565b7f496d7065726d6178526f757465723a2053454e4445525f4e4f545f524f55544581527f5200000000000000000000000000000000000000000000000000000000000000602082015260400192915050565b60006141aa6025836149ba565b7f496d7065726d6178526f757465723a20494e53554646494349454e545f305f4181527f4d4f554e54000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000614209601e836149ba565b7f496d7065726d6178526f757465723a20494e4445585f544f4f5f484947480000815260200192915050565b60006142426028836149ba565b7f556e697377617056324c6962726172793a20494e53554646494349454e545f4c81527f4951554944495459000000000000000000000000000000000000000000000000602082015260400192915050565b60006142a16021836149ba565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f81527f7700000000000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000614300601b836149ba565b7f496d7065726d6178526f757465723a2052454445454d5f5a45524f0000000000815260200192915050565b60006143396025836149ba565b7f556e697377617056324c6962726172793a20494e53554646494349454e545f4181527f4d4f554e54000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000614398601e836149ba565b7f496d7065726d6178526f757465723a20494e56414c49445f414354494f4e0000815260200192915050565b60006143d16025836149ba565b7f496d7065726d6178526f757465723a20494e53554646494349454e545f315f4181527f4d4f554e54000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000614430602d836149ba565b7f5472616e7366657248656c7065723a3a736166655472616e736665723a20747281527f616e73666572206661696c656400000000000000000000000000000000000000602082015260400192915050565b805160009060608401906144968582613fcd565b50602083015184820360208601526144ae8282613f66565b91505060408301518482036040860152612f468282613f66565b80516000906101208401906144dd858261451c565b5060208301516144f060c08601826145ff565b50604083015161450360e0860182613e9b565b506060830151848203610100860152612f468282614482565b805160c083019061452d8482613e9b565b5060208201516145406020850182613e9b565b5060408201516145536040850182613ea4565b506060820151610f6a6080850182613ea4565b805160009061018084019061457b858261451c565b50602083015161458e60c0860182613e9b565b5060408301516145a160e0860182613e9b565b5060608301516145b56101008601826145f6565b5060808301516145c96101208601826145f6565b5060a08301516145dd6101408601826145f6565b5060c0830151848203610160860152612f468282614482565b613e95816149a2565b613e95816149fe565b60006113488284613f9e565b60208101610c1e8284613e9b565b60208101610c1e8284613e8c565b6060810161463e8286613e8c565b61464b60208301856145f6565b8181036040830152612f468184613f66565b6080810161466b8287613e9b565b6146786020830186613e8c565b6146856040830185613fd6565b81810360608301526146978184613f66565b9695505050505050565b608081016146af8287613e9b565b6146bc6020830186613e9b565b6146c96040830185613e9b565b612f4660608301846145f6565b608081016146e48287613e9b565b6146f16020830186613e9b565b61468560408301856145f6565b6040810161470c8285613e9b565b61134860208301846145f6565b602080825281016113488184613ef8565b6040808252810161473b8185613ef8565b9050818103602083015261397e8184614482565b602080825281016113488184613f66565b6060810161476e8286613fdf565b61477b60208301856145f6565b61397e6040830184613e8c565b60208082528101610c1e81613fe8565b60208082528101610c1e81614047565b60208082528101610c1e816140a6565b60208082528101610c1e816140df565b60208082528101610c1e8161413e565b60208082528101610c1e8161419d565b60208082528101610c1e816141fc565b60208082528101610c1e81614235565b60208082528101610c1e81614294565b60208082528101610c1e816142f3565b60208082528101610c1e8161432c565b60208082528101610c1e8161438b565b60208082528101610c1e816143c4565b60208082528101610c1e81614423565b6020808252810161134881846144c8565b60c08101610c1e828461451c565b602080825281016113488184614566565b60208101610c1e82846145f6565b6040810161470c82856145f6565b60a081016148c282886145f6565b6148cf60208301876145f6565b6148dc60408301866145f6565b6148e960608301856145f6565b61469760808301846145f6565b60405181810167ffffffffffffffff8111828210171561491557600080fd5b604052919050565b600067ffffffffffffffff82111561493457600080fd5b5060200290565b600067ffffffffffffffff82111561495257600080fd5b5060209081020190565b600067ffffffffffffffff82111561497357600080fd5b506020601f919091017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0160190565b90565b60200190565b50600290565b5190565b919050565b90815260200190565b6000610c1e826149dd565b151590565b806149b581614a9b565b73ffffffffffffffffffffffffffffffffffffffff1690565b62ffffff1690565b60ff1690565b6000610c1e82614a30565b6000610c1e826149d3565b6000610c1e826149a2565b6000610c1e826149fe565b6000610c1e826149c3565b82818337506000910152565b60005b83811015614a62578181015183820152602001614a4a565b83811115610f6a5750506000910152565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01690565b60108110612d9957fe5b614aae816149c3565b8114612d9957600080fd5b614aae816149ce565b60108110612d9957600080fd5b614aae816149f6565b614aae816149a2565b614aae816149fe56fea365627a7a7231582069bfa3f21f9e64cf2a8be350fc2dbf86556d637b30d896c7a15d4323a328e6336c6578706572696d656e74616cf564736f6c6343000510004000000000000000000000000026fca5916c20d252feef7a58e39886d3d3112b91000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38
Deployed Bytecode
0x6080604052600436106100965760003560e01c8063acb86cbb11610069578063c45a01551161004e578063c45a01551461019f578063d4fa4534146101b4578063ef974e9c146101c757610096565b8063acb86cbb1461016a578063ad5c46481461018a57610096565b80630572bf5f146100b95780633d34d68e146100ef578063876d9d9e1461011d5780639b56d6c91461013d575b60015473ffffffffffffffffffffffffffffffffffffffff1633146100b757fe5b005b3480156100c557600080fd5b506100d96100d4366004613960565b6101e7565b6040516100e69190614879565b60405180910390f35b3480156100fb57600080fd5b5061010f61010a366004613af6565b61042c565b6040516100e69291906148a6565b34801561012957600080fd5b506100b76101383660046139a4565b610590565b34801561014957600080fd5b5061015d610158366004613960565b61067e565b6040516100e69190614614565b34801561017657600080fd5b506100b7610185366004613a8e565b610730565b34801561019657600080fd5b5061015d6108be565b3480156101ab57600080fd5b5061015d6108da565b6100b76101c2366004613a22565b6108f6565b3480156101d357600080fd5b5061015d6101e2366004613b6b565b610b19565b6101ef613003565b73ffffffffffffffffffffffffffffffffffffffff80831682526000546040517f0572bf5f000000000000000000000000000000000000000000000000000000008152911690630572bf5f90610249908590600401614614565b60a06040518083038186803b15801561026157600080fd5b505afa158015610275573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506102999190810190613bf8565b6040868101805173ffffffffffffffffffffffffffffffffffffffff93841660208083019190915294841690529382168388015292515183517f6f307dc3000000000000000000000000000000000000000000000000000000008152935191169450636f307dc39350600480840193829003018186803b15801561031c57600080fd5b505afa158015610330573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506103549190810190613986565b606082015173ffffffffffffffffffffffffffffffffffffffff918216905260408083015160209081015182517f6f307dc30000000000000000000000000000000000000000000000000000000081529251931692636f307dc3926004808201939291829003018186803b1580156103cb57600080fd5b505afa1580156103df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506104039190810190613986565b606082015173ffffffffffffffffffffffffffffffffffffffff91909116602090910152919050565b6000808561043f57506000905080610586565b6000808873ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561048857600080fd5b505afa15801561049c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506104c09190810190613e1f565b509150915060006104d2898484610c24565b9050878111610529578581101561051e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614848565b60405180910390fd5b889450925082610582565b6000610536898486610c24565b90508981111561054257fe5b8781101561057c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515906147d8565b94508793505b5050505b9550959350505050565b610598613034565b6105a482840184613cb3565b905060006105be8260000151600001518360200151610b19565b905073ffffffffffffffffffffffffffffffffffffffff8716301461060f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515906147c8565b3373ffffffffffffffffffffffffffffffffffffffff82161461065e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614798565b610675826000015183604001518460600151610cc6565b50505050505050565b600080546040517f0572bf5f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690630572bf5f906106d5908590600401614614565b60a06040518083038186803b1580156106ed57600080fd5b505afa158015610701573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506107259190810190613bf8565b509095945050505050565b610738613062565b61074482840184613d24565b8051519091506000906107569061067e565b905073ffffffffffffffffffffffffffffffffffffffff861630146107a7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515906147c8565b3373ffffffffffffffffffffffffffffffffffffffff8216146107f6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614798565b610812826000015183608001518460a001518560400151610f71565b610829826000015183602001518460c00151610cc6565b602082015160608301516040517fd9fc4b6100000000000000000000000000000000000000000000000000000000815273e8d69d773cb712320f8945dab24167702699dfb79263d9fc4b61926108869286929183916004016146a1565b60006040518083038186803b15801561089e57600080fd5b505af41580156108b2573d6000803e3d6000fd5b50505050505050505050565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b81818080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517fc6e5944900000000000000000000000000000000000000000000000000000000815273e8d69d773cb712320f8945dab24167702699dfb7925063c6e59449915061097c90849060040161474f565b60006040518083038186803b15801561099457600080fd5b505af41580156109a8573d6000803e3d6000fd5b505050506000341115610a3957600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b158015610a1f57600080fd5b505af1158015610a33573d6000803e3d6000fd5b50505050505b6060610a4785870187613ba5565b9050610a51613003565b610a5a886101e7565b9050610b0f81337334dcf55e29d5f679a4985c1f09d386a17c1843b86382b329ce866040518263ffffffff1660e01b8152600401610a989190614719565b60006040518083038186803b158015610ab057600080fd5b505af4158015610ac4573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052610b0a9190810190613c60565b610cc6565b5050505050505050565b600060028260ff1610610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515906147e8565b600080546040517f0572bf5f000000000000000000000000000000000000000000000000000000008152829173ffffffffffffffffffffffffffffffffffffffff1690630572bf5f90610baf908890600401614614565b60a06040518083038186803b158015610bc757600080fd5b505afa158015610bdb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610bff9190810190613bf8565b945094505050508360ff16600014610c175780610c19565b815b925050505b92915050565b6000808411610c5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614828565b600083118015610c6f5750600082115b610ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515906147f8565b82610cb6858463ffffffff6112f416565b81610cbd57fe5b04949350505050565b60058151600f811115610cd557fe5b1415610ce057610f6c565b610ce86130cd565b8160400151806020019051610d009190810190613c60565b905060078251600f811115610d1157fe5b1415610d6257610d1f6130ef565b8260200151806020019051610d379190810190613d06565b9050610d5c85858360000151846020015185604001518660600151876080015161134f565b50610f5f565b60088251600f811115610d7157fe5b1415610dbc57610d7f6130ef565b8260200151806020019051610d979190810190613d06565b9050610d5c85858360000151846020015185604001518660600151876080015161198e565b60098251600f811115610dcb57fe5b1415610e1957610dd961311e565b8260200151806020019051610df19190810190613d59565b9050610e128585836000015184602001518560400151866060015188611a38565b5050610f6c565b600a8251600f811115610e2857fe5b1415610f4e57610e3661315c565b8260200151806020019051610e4e9190810190613c95565b90506060610e7e86836000015184602001518560400151866060015187608001518860a001518960c00151611d11565b6040517f413d5e960000000000000000000000000000000000000000000000000000000081529091507334dcf55e29d5f679a4985c1f09d386a17c1843b89063413d5e9690610ed3908490879060040161472a565b60006040518083038186803b158015610eeb57600080fd5b505af4158015610eff573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052610f459190810190613c60565b92505050610f5f565b610f59848484612308565b50610f6c565b610f6a848483610cc6565b505b505050565b83516040517f70a0823100000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff16906370a0823190610fc7903090600401614622565b60206040518083038186803b158015610fdf57600080fd5b505afa158015610ff3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506110179190810190613dd1565b90506000856000015173ffffffffffffffffffffffffffffffffffffffff16636f307dc36040518163ffffffff1660e01b815260040160206040518083038186803b15801561106557600080fd5b505afa158015611079573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061109d9190810190613986565b86516040517fa9059cbb00000000000000000000000000000000000000000000000000000000815291925073ffffffffffffffffffffffffffffffffffffffff81169163a9059cbb916110f49186906004016146fe565b602060405180830381600087803b15801561110e57600080fd5b505af1158015611122573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506111469190810190613bda565b5085516040517f95a2251f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909116906395a2251f9061119c908490600401614614565b602060405180830381600087803b1580156111b657600080fd5b505af11580156111ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506111ee9190810190613dd1565b506000808273ffffffffffffffffffffffffffffffffffffffff166389afcb44866040518263ffffffff1660e01b815260040161122b9190614614565b6040805180830381600087803b15801561124457600080fd5b505af1158015611258573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061127c9190810190613def565b91509150868210156112ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515906147d8565b85811015610b0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614848565b60008261130357506000610c1e565b8282028284828161131057fe5b0414611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614808565b9392505050565b6000876000015173ffffffffffffffffffffffffffffffffffffffff16636f307dc36040518163ffffffff1660e01b815260040160206040518083038186803b15801561139b57600080fd5b505afa1580156113af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506113d39190810190613986565b60015460608a01515191925060009173ffffffffffffffffffffffffffffffffffffffff90811691161461145a5760015460608a01516020015173ffffffffffffffffffffffffffffffffffffffff908116911614611452577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611455565b60015b61145d565b60005b9050807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff146115bf576001546040517f70a0823100000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff16906370a08231906114dd903090600401614622565b60206040518083038186803b1580156114f557600080fd5b505afa158015611509573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061152d9190810190613dd1565b90508115801561153c57508481115b15611575576000611553888763ffffffff61251816565b905061155f8183612557565b9550611571818763ffffffff61256d16565b9750505b81600114801561158457508381115b156115bd57600061159b878663ffffffff61251816565b90506115a78183612557565b94506115b9818663ffffffff61256d16565b9650505b505b8515611651576060890151516040517fd9fc4b6100000000000000000000000000000000000000000000000000000000815273e8d69d773cb712320f8945dab24167702699dfb79163d9fc4b619161162091908c9087908c906004016146a1565b60006040518083038186803b15801561163857600080fd5b505af415801561164c573d6000803e3d6000fd5b505050505b84156116e6576060890151602001516040517fd9fc4b6100000000000000000000000000000000000000000000000000000000815273e8d69d773cb712320f8945dab24167702699dfb79163d9fc4b61916116b591908c9087908b906004016146a1565b60006040518083038186803b1580156116cd57600080fd5b505af41580156116e1573d6000803e3d6000fd5b505050505b83156116fd576060890151516116fd9083866125af565b8215611717576060890151602001516117179083856125af565b858401156117c65788516040517f6a62784200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff841691636a627842916117729190600401614614565b602060405180830381600087803b15801561178c57600080fd5b505af11580156117a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506117c49190810190613dd1565b505b86156118545788516040517fd9fc4b6100000000000000000000000000000000000000000000000000000000815273e8d69d773cb712320f8945dab24167702699dfb79163d9fc4b61916118239186918d91908d906004016146a1565b60006040518083038186803b15801561183b57600080fd5b505af415801561184f573d6000803e3d6000fd5b505050505b885160208a01516040517f6a62784200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90921691636a627842916118ac91600401614614565b602060405180830381600087803b1580156118c657600080fd5b505af11580156118da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506118fe9190810190613dd1565b50886020015173ffffffffffffffffffffffffffffffffffffffff16636a627842896040518263ffffffff1660e01b815260040161193c9190614614565b602060405180830381600087803b15801561195657600080fd5b505af115801561196a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506108b29190810190613dd1565b6000876000015173ffffffffffffffffffffffffffffffffffffffff16636f307dc36040518163ffffffff1660e01b815260040160206040518083038186803b1580156119da57600080fd5b505afa1580156119ee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611a129190810190613986565b9050600080611a24838888888861042c565b915091506108b28a8a8a858560008061134f565b60008511611a72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614818565b6000611b29670de0b6b3a7640000611b1d888b6020015173ffffffffffffffffffffffffffffffffffffffff166370a082318c6040518263ffffffff1660e01b8152600401611ac19190614614565b60206040518083038186803b158015611ad957600080fd5b505afa158015611aed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611b119190810190613dd1565b9063ffffffff6112f416565b9063ffffffff6126d916565b905060606040518060e001604052808a81526020018973ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff16815260200183815260200187815260200186815260200184815250604051602001611b9c9190614887565b60405160208183030381529060405290506000896020015173ffffffffffffffffffffffffffffffffffffffff16633ba0b9a96040518163ffffffff1660e01b8152600401602060405180830381600087803b158015611bfb57600080fd5b505af1158015611c0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611c339190810190613dd1565b90506000611c75670de0b6b3a7640000611b1d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff87018563ffffffff6112f416565b60208c01516040517f19f3400d00000000000000000000000000000000000000000000000000000000815291925073ffffffffffffffffffffffffffffffffffffffff16906319f3400d90611cd290309085908890600401614630565b600060405180830381600087803b158015611cec57600080fd5b505af1158015611d00573d6000803e3d6000fd5b505050505050505050505050505050565b60606000896000015173ffffffffffffffffffffffffffffffffffffffff16636f307dc36040518163ffffffff1660e01b815260040160206040518083038186803b158015611d5f57600080fd5b505afa158015611d73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611d979190810190613986565b9050600080611da9838989898961042c565b915091506000808b8411611dbe576000611dc2565b8b84035b8b8411611dd0576000611dd4565b8b84035b915091506000821180611de75750600081115b611e1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614788565b600082118015611e2d5750600081115b15612028576040805160038082526080820190925290816020015b611e506130cd565b815260200190600190039081611e485750506040517fb2e0a0f80000000000000000000000000000000000000000000000000000000081529096507334dcf55e29d5f679a4985c1f09d386a17c1843b89063b2e0a0f890611eba9060009086903090600401614760565b60006040518083038186803b158015611ed257600080fd5b505af4158015611ee6573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052611f2c9190810190613c60565b86600081518110611f3957fe5b60209081029190910101526040517fb2e0a0f80000000000000000000000000000000000000000000000000000000081527334dcf55e29d5f679a4985c1f09d386a17c1843b89063b2e0a0f890611f999060019085903090600401614760565b60006040518083038186803b158015611fb157600080fd5b505af4158015611fc5573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820160405261200b9190810190613c60565b8660018151811061201857fe5b6020026020010181905250612227565b6040805160028082526060820190925290816020015b6120466130cd565b81526020019060019003908161203e5790505095508115612141576040517fb2e0a0f80000000000000000000000000000000000000000000000000000000081527334dcf55e29d5f679a4985c1f09d386a17c1843b89063b2e0a0f8906120b69060009086903090600401614760565b60006040518083038186803b1580156120ce57600080fd5b505af41580156120e2573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526121289190810190613c60565b8660008151811061213557fe5b60200260200101819052505b8015612227576040517fb2e0a0f80000000000000000000000000000000000000000000000000000000081527334dcf55e29d5f679a4985c1f09d386a17c1843b89063b2e0a0f89061219c9060019085903090600401614760565b60006040518083038186803b1580156121b457600080fd5b505af41580156121c8573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820160405261220e9190810190613c60565b8660008151811061221b57fe5b60200260200101819052505b7334dcf55e29d5f679a4985c1f09d386a17c1843b86317d0c30d8e84870384870386866040518663ffffffff1660e01b815260040161226a9594939291906148b4565b60006040518083038186803b15801561228257600080fd5b505af4158015612296573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682016040526122dc9190810190613c60565b866001885103815181106122ec57fe5b6020026020010181905250505050505098975050505050505050565b60058151600f81111561231757fe5b141561232257610f6c565b61232a6130cd565b81604001518060200190516123429190810190613c60565b905060008251600f81111561235357fe5b14156123be57612361613199565b82602001518060200190516123799190810190613ce8565b905061239585826000015186846020015185604001518761271b565b604081015173ffffffffffffffffffffffffffffffffffffffff16301415610d5c575050610f6c565b60018251600f8111156123cd57fe5b1415612409576123db6131b9565b82602001518060200190516123f39190810190613d77565b9050610d5c858260000151868460200151612854565b60028251600f81111561241857fe5b141561245957612426613199565b826020015180602001905161243e9190810190613ce8565b9050610d5c85826000015186846020015185604001516129a1565b60038251600f81111561246857fe5b14156124a2576124766131b9565b826020015180602001905161248e9190810190613db3565b9050610d5c81600001518260200151612b99565b60048251600f8111156124b157fe5b14156124e6576124bf6131d0565b82602001518060200190516124d79190810190613d95565b9050610d5c8160000151612c51565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614838565b600082820183811015611348576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515906147a8565b60008183106125665781611348565b5090919050565b600061134883836040518060400160405280601f81526020017f536166654d6174683a207375627472616374696f6e20756e646572666c6f7700815250612d9c565b600060608473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040516024016125e29291906146fe565b6040516020818303038152906040529060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516126309190614608565b6000604051808303816000865af19150503d806000811461266d576040519150601f19603f3d011682016040523d82523d6000602084013e612672565b606091505b509150915081801561269c57508051158061269c57508080602001905161269c9190810190613bda565b6126d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051590614858565b5050505050565b600061134883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612de2565b606060058251600f81111561272c57fe5b148061274e575073ffffffffffffffffffffffffffffffffffffffff83163014155b6127b05760405180608001604052808881526020018760ff1681526020018673ffffffffffffffffffffffffffffffffffffffff1681526020018381525060405160200161279c9190614868565b6040516020818303038152906040526127c1565b604051806020016040528060008152505b905086604001518660ff16600281106127d657fe5b602002015173ffffffffffffffffffffffffffffffffffffffff16631e7dcc0d868587856040518563ffffffff1660e01b815260040161281994939291906146d6565b600060405180830381600087803b15801561283357600080fd5b505af1158015612847573d6000803e3d6000fd5b5050505050505050505050565b600084604001518460ff166002811061286957fe5b60200201519050600061287d828585612e33565b90508061288b575050610f6a565b73e8d69d773cb712320f8945dab24167702699dfb763d9fc4b6187606001518760ff16600281106128b857fe5b60200201518685856040518563ffffffff1660e01b81526004016128df94939291906146a1565b60006040518083038186803b1580156128f757600080fd5b505af415801561290b573d6000803e3d6000fd5b505060408051600080825260208201928390527f1e7dcc0d0000000000000000000000000000000000000000000000000000000090925273ffffffffffffffffffffffffffffffffffffffff86169350631e7dcc0d925061297391889181906024810161465d565b600060405180830381600087803b15801561298d57600080fd5b505af11580156108b2573d6000803e3d6000fd5b600085604001518560ff16600281106129b657fe5b60200201519050600086606001518660ff16600281106129d257fe5b602002015173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612a0f9190614622565b60206040518083038186803b158015612a2757600080fd5b505afa158015612a3b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250612a5f9190810190613dd1565b9050612a6b8482612557565b93506000612a7a838787612e33565b90508082118015612aa1575073ffffffffffffffffffffffffffffffffffffffff84163014155b15612aca57612aca88606001518860ff1660028110612abc57fe5b6020020151858385036125af565b80612ad7575050506126d2565b612af988606001518860ff1660028110612aed57fe5b602002015184836125af565b60408051600080825260208201928390527f1e7dcc0d0000000000000000000000000000000000000000000000000000000090925273ffffffffffffffffffffffffffffffffffffffff851691631e7dcc0d91612b5d918a9181906024810161465d565b600060405180830381600087803b158015612b7757600080fd5b505af1158015612b8b573d6000803e3d6000fd5b505050505050505050505050565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff8416906370a0823190612bee903090600401614622565b60206040518083038186803b158015612c0657600080fd5b505afa158015612c1a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250612c3e9190810190613dd1565b90508015610f6c57610f6c8383836125af565b6001546040517f70a0823100000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff16906370a0823190612ca8903090600401614622565b60206040518083038186803b158015612cc057600080fd5b505afa158015612cd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250612cf89190810190613dd1565b905080612d055750612d99565b6001546040517f2e1a7d4d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff90911690632e1a7d4d90612d5b908490600401614898565b600060405180830381600087803b158015612d7557600080fd5b505af1158015612d89573d6000803e3d6000fd5b50505050612d978282612f4f565b505b50565b60008184841115612dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515919061474f565b505050900390565b60008183612e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515919061474f565b506000838581612e2957fe5b0495945050505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663a6afed956040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612e7d57600080fd5b505af1158015612e91573d6000803e3d6000fd5b50506040517f4d73e9ba0000000000000000000000000000000000000000000000000000000081526000925073ffffffffffffffffffffffffffffffffffffffff87169150634d73e9ba90612eea908790600401614614565b60206040518083038186803b158015612f0257600080fd5b505afa158015612f16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250612f3a9190810190613dd1565b9050612f468382612557565b95945050505050565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff8416908390604051612f869190614608565b60006040518083038185875af1925050503d8060008114612fc3576040519150601f19603f3d011682016040523d82523d6000602084013e612fc8565b606091505b5050905080610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610515906147b8565b60408051608081018252600080825260208201529081016130226131e2565b815260200161302f6131e2565b905290565b6040518060800160405280613047613003565b8152600060208201819052604082015260600161302f6130cd565b6040518060e00160405280613075613003565b8152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160008152602001600081526020016000815260200161302f5b6040805160608101909152806000815260200160608152602001606081525090565b6040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b6040518060800160405280600081526020016000815260200160008152602001600073ffffffffffffffffffffffffffffffffffffffff1681525090565b6040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516060810182526000808252602082018190529181019190915290565b604080518082019091526000808252602082015290565b60408051602081019091526000815290565b60405180604001604052806002906020820280388339509192915050565b8035610c1e81614aa5565b8051610c1e81614aa5565b600082601f83011261322757600080fd5b600261323a6132358261491d565b6148f6565b9150818385602084028201111561325057600080fd5b60005b8381101561327c57816132668882613200565b8452506020928301929190910190600101613253565b5050505092915050565b600082601f83011261329757600080fd5b81356132a56132358261493b565b81815260209384019390925082018360005b8381101561327c57813586016132cd88826133e2565b84525060209283019291909101906001016132b7565b8051610c1e81614ab9565b60008083601f84011261330057600080fd5b50813567ffffffffffffffff81111561331857600080fd5b60208301915083600182028301111561333057600080fd5b9250929050565b600082601f83011261334857600080fd5b81356133566132358261495c565b9150808252602083016020830185838301111561337257600080fd5b61337d838284614a3b565b50505092915050565b600082601f83011261339757600080fd5b81516133a56132358261495c565b915080825260208301602083018583830111156133c157600080fd5b61337d838284614a47565b8035610c1e81614ac2565b8051610c1e81614ac2565b6000606082840312156133f457600080fd5b6133fe60606148f6565b9050600061340c84846133cc565b825250602082013567ffffffffffffffff81111561342957600080fd5b61343584828501613337565b602083015250604082013567ffffffffffffffff81111561345557600080fd5b61346184828501613337565b60408301525092915050565b60006060828403121561347f57600080fd5b61348960606148f6565b9050600061349784846133d7565b825250602082015167ffffffffffffffff8111156134b457600080fd5b6134c084828501613386565b602083015250604082015167ffffffffffffffff8111156134e057600080fd5b61346184828501613386565b600060e082840312156134fe57600080fd5b61350860e06148f6565b90506000613516848461393f565b82525060206135278484830161393f565b602083015250604061353b8482850161393f565b604083015250606061354f8482850161393f565b60608301525060806135638482850161393f565b60808301525060a06135778482850161393f565b60a08301525060c061358b8482850161393f565b60c08301525092915050565b600061012082840312156135aa57600080fd5b6135b460806148f6565b905060006135c2848461366f565b82525060c06135d38484830161394a565b60208301525060e06135e784828501613200565b60408301525061010082013567ffffffffffffffff81111561360857600080fd5b613614848285016133e2565b60608301525092915050565b60006060828403121561363257600080fd5b61363c60606148f6565b9050600061364a8484613955565b825250602061365b8484830161393f565b60208301525060406134618482850161320b565b600060c0828403121561368157600080fd5b61368b60806148f6565b905060006136998484613200565b82525060206136aa84848301613200565b60208301525060406136be84828501613216565b604083015250608061361484828501613216565b600060a082840312156136e457600080fd5b6136ee60a06148f6565b905060006136fc848461393f565b825250602061370d8484830161393f565b60208301525060406137218482850161393f565b60408301525060606137358482850161393f565b60608301525060806137498482850161393f565b60808301525092915050565b6000610180828403121561376857600080fd5b61377260e06148f6565b90506000613780848461366f565b82525060c061379184848301613200565b60208301525060e06137a584828501613200565b6040830152506101006137ba84828501613934565b6060830152506101206137cf84828501613934565b6080830152506101406137e484828501613934565b60a08301525061016082013567ffffffffffffffff81111561380557600080fd5b61358b848285016133e2565b60006080828403121561382357600080fd5b61382d60806148f6565b9050600061383b848461393f565b825250602061384c8484830161393f565b60208301525060406138608482850161393f565b60408301525060606136148482850161320b565b60006040828403121561388657600080fd5b61389060406148f6565b9050600061389e8484613955565b82525060206138af8484830161393f565b60208301525092915050565b6000602082840312156138cd57600080fd5b6138d760206148f6565b905060006138e5848461320b565b82525092915050565b60006040828403121561390057600080fd5b61390a60406148f6565b90506000613918848461320b565b82525060206138af8484830161320b565b8051610c1e81614acf565b8035610c1e81614ad8565b8051610c1e81614ad8565b8035610c1e81614ae1565b8051610c1e81614ae1565b60006020828403121561397257600080fd5b600061397e8484613200565b949350505050565b60006020828403121561399857600080fd5b600061397e848461320b565b6000806000806000608086880312156139bc57600080fd5b60006139c88888613200565b95505060206139d988828901613200565b94505060406139ea88828901613934565b935050606086013567ffffffffffffffff811115613a0757600080fd5b613a13888289016132ee565b92509250509295509295909350565b600080600080600060608688031215613a3a57600080fd5b6000613a468888613200565b955050602086013567ffffffffffffffff811115613a6357600080fd5b613a6f888289016132ee565b9450945050604086013567ffffffffffffffff811115613a0757600080fd5b60008060008060608587031215613aa457600080fd5b6000613ab08787613200565b9450506020613ac187828801613934565b935050604085013567ffffffffffffffff811115613ade57600080fd5b613aea878288016132ee565b95989497509550505050565b600080600080600060a08688031215613b0e57600080fd5b6000613b1a8888613200565b9550506020613b2b88828901613934565b9450506040613b3c88828901613934565b9350506060613b4d88828901613934565b9250506080613b5e88828901613934565b9150509295509295909350565b60008060408385031215613b7e57600080fd5b6000613b8a8585613200565b9250506020613b9b8582860161394a565b9150509250929050565b600060208284031215613bb757600080fd5b813567ffffffffffffffff811115613bce57600080fd5b61397e84828501613286565b600060208284031215613bec57600080fd5b600061397e84846132e3565b600080600080600060a08688031215613c1057600080fd5b6000613c1c88886132e3565b9550506020613c2d88828901613929565b9450506040613c3e8882890161320b565b9350506060613c4f8882890161320b565b9250506080613b5e8882890161320b565b600060208284031215613c7257600080fd5b815167ffffffffffffffff811115613c8957600080fd5b61397e8482850161346d565b600060e08284031215613ca757600080fd5b600061397e84846134ec565b600060208284031215613cc557600080fd5b813567ffffffffffffffff811115613cdc57600080fd5b61397e84828501613597565b600060608284031215613cfa57600080fd5b600061397e8484613620565b600060a08284031215613d1857600080fd5b600061397e84846136d2565b600060208284031215613d3657600080fd5b813567ffffffffffffffff811115613d4d57600080fd5b61397e84828501613755565b600060808284031215613d6b57600080fd5b600061397e8484613811565b600060408284031215613d8957600080fd5b600061397e8484613874565b600060208284031215613da757600080fd5b600061397e84846138bb565b600060408284031215613dc557600080fd5b600061397e84846138ee565b600060208284031215613de357600080fd5b600061397e848461393f565b60008060408385031215613e0257600080fd5b6000613e0e858561393f565b9250506020613b9b8582860161393f565b600080600060608486031215613e3457600080fd5b6000613e40868661393f565b9350506020613e518682870161393f565b9250506040613e628682870161393f565b9150509250925092565b6000613e788383613e9b565b505060200190565b60006113488383614482565b613e9581614a04565b82525050565b613e95816149c3565b613ead816149ab565b613eb781846149b5565b9250613ec2826149a2565b8060005b83811015613ef0578151613eda8782613e6c565b9650613ee5836149a5565b925050600101613ec6565b505050505050565b6000613f03826149b1565b613f0d81856149ba565b935083602082028501613f1f856149a5565b8060005b85811015613f595784840389528151613f3c8582613e80565b9450613f47836149a5565b60209a909a0199925050600101613f23565b5091979650505050505050565b6000613f71826149b1565b613f7b81856149ba565b9350613f8b818560208601614a47565b613f9481614a73565b9093019392505050565b6000613fa9826149b1565b613fb381856149b5565b9350613fc3818560208601614a47565b9290920192915050565b613e9581614a0f565b613e9581614a1a565b613e9581614a25565b6000613ff56023836149ba565b7f496d7065726d6178526f757465723a204e4f5f41435455414c5f424f52524f5781527f494e470000000000000000000000000000000000000000000000000000000000602082015260400192915050565b60006140546023836149ba565b7f496d7065726d6178526f757465723a20554e415554484f52495a45445f43414c81527f4c45520000000000000000000000000000000000000000000000000000000000602082015260400192915050565b60006140b3601b836149ba565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b60006140ec6034836149ba565b7f5472616e7366657248656c7065723a3a736166655472616e736665724554483a81527f20455448207472616e73666572206661696c6564000000000000000000000000602082015260400192915050565b600061414b6021836149ba565b7f496d7065726d6178526f757465723a2053454e4445525f4e4f545f524f55544581527f5200000000000000000000000000000000000000000000000000000000000000602082015260400192915050565b60006141aa6025836149ba565b7f496d7065726d6178526f757465723a20494e53554646494349454e545f305f4181527f4d4f554e54000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000614209601e836149ba565b7f496d7065726d6178526f757465723a20494e4445585f544f4f5f484947480000815260200192915050565b60006142426028836149ba565b7f556e697377617056324c6962726172793a20494e53554646494349454e545f4c81527f4951554944495459000000000000000000000000000000000000000000000000602082015260400192915050565b60006142a16021836149ba565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f81527f7700000000000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000614300601b836149ba565b7f496d7065726d6178526f757465723a2052454445454d5f5a45524f0000000000815260200192915050565b60006143396025836149ba565b7f556e697377617056324c6962726172793a20494e53554646494349454e545f4181527f4d4f554e54000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000614398601e836149ba565b7f496d7065726d6178526f757465723a20494e56414c49445f414354494f4e0000815260200192915050565b60006143d16025836149ba565b7f496d7065726d6178526f757465723a20494e53554646494349454e545f315f4181527f4d4f554e54000000000000000000000000000000000000000000000000000000602082015260400192915050565b6000614430602d836149ba565b7f5472616e7366657248656c7065723a3a736166655472616e736665723a20747281527f616e73666572206661696c656400000000000000000000000000000000000000602082015260400192915050565b805160009060608401906144968582613fcd565b50602083015184820360208601526144ae8282613f66565b91505060408301518482036040860152612f468282613f66565b80516000906101208401906144dd858261451c565b5060208301516144f060c08601826145ff565b50604083015161450360e0860182613e9b565b506060830151848203610100860152612f468282614482565b805160c083019061452d8482613e9b565b5060208201516145406020850182613e9b565b5060408201516145536040850182613ea4565b506060820151610f6a6080850182613ea4565b805160009061018084019061457b858261451c565b50602083015161458e60c0860182613e9b565b5060408301516145a160e0860182613e9b565b5060608301516145b56101008601826145f6565b5060808301516145c96101208601826145f6565b5060a08301516145dd6101408601826145f6565b5060c0830151848203610160860152612f468282614482565b613e95816149a2565b613e95816149fe565b60006113488284613f9e565b60208101610c1e8284613e9b565b60208101610c1e8284613e8c565b6060810161463e8286613e8c565b61464b60208301856145f6565b8181036040830152612f468184613f66565b6080810161466b8287613e9b565b6146786020830186613e8c565b6146856040830185613fd6565b81810360608301526146978184613f66565b9695505050505050565b608081016146af8287613e9b565b6146bc6020830186613e9b565b6146c96040830185613e9b565b612f4660608301846145f6565b608081016146e48287613e9b565b6146f16020830186613e9b565b61468560408301856145f6565b6040810161470c8285613e9b565b61134860208301846145f6565b602080825281016113488184613ef8565b6040808252810161473b8185613ef8565b9050818103602083015261397e8184614482565b602080825281016113488184613f66565b6060810161476e8286613fdf565b61477b60208301856145f6565b61397e6040830184613e8c565b60208082528101610c1e81613fe8565b60208082528101610c1e81614047565b60208082528101610c1e816140a6565b60208082528101610c1e816140df565b60208082528101610c1e8161413e565b60208082528101610c1e8161419d565b60208082528101610c1e816141fc565b60208082528101610c1e81614235565b60208082528101610c1e81614294565b60208082528101610c1e816142f3565b60208082528101610c1e8161432c565b60208082528101610c1e8161438b565b60208082528101610c1e816143c4565b60208082528101610c1e81614423565b6020808252810161134881846144c8565b60c08101610c1e828461451c565b602080825281016113488184614566565b60208101610c1e82846145f6565b6040810161470c82856145f6565b60a081016148c282886145f6565b6148cf60208301876145f6565b6148dc60408301866145f6565b6148e960608301856145f6565b61469760808301846145f6565b60405181810167ffffffffffffffff8111828210171561491557600080fd5b604052919050565b600067ffffffffffffffff82111561493457600080fd5b5060200290565b600067ffffffffffffffff82111561495257600080fd5b5060209081020190565b600067ffffffffffffffff82111561497357600080fd5b506020601f919091017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0160190565b90565b60200190565b50600290565b5190565b919050565b90815260200190565b6000610c1e826149dd565b151590565b806149b581614a9b565b73ffffffffffffffffffffffffffffffffffffffff1690565b62ffffff1690565b60ff1690565b6000610c1e82614a30565b6000610c1e826149d3565b6000610c1e826149a2565b6000610c1e826149fe565b6000610c1e826149c3565b82818337506000910152565b60005b83811015614a62578181015183820152602001614a4a565b83811115610f6a5750506000910152565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01690565b60108110612d9957fe5b614aae816149c3565b8114612d9957600080fd5b614aae816149ce565b60108110612d9957600080fd5b614aae816149f6565b614aae816149a2565b614aae816149fe56fea365627a7a7231582069bfa3f21f9e64cf2a8be350fc2dbf86556d637b30d896c7a15d4323a328e6336c6578706572696d656e74616cf564736f6c63430005100040
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000026fca5916c20d252feef7a58e39886d3d3112b91000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38
-----Decoded View---------------
Arg [0] : _factory (address): 0x26fca5916c20D252feEF7A58E39886d3d3112b91
Arg [1] : _WETH (address): 0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000026fca5916c20d252feef7a58e39886d3d3112b91
Arg [1] : 000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.