More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 29 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 227732436 | 295 days ago | IN | 0 ETH | 0.00000188 | ||||
Approve | 224150281 | 306 days ago | IN | 0 ETH | 0.000001 | ||||
Approve | 170605472 | 464 days ago | IN | 0 ETH | 0.00003874 | ||||
Transfer | 167971624 | 472 days ago | IN | 0 ETH | 0.00007717 | ||||
Approve | 166000569 | 477 days ago | IN | 0 ETH | 0.00002913 | ||||
Approve | 140365456 | 557 days ago | IN | 0 ETH | 0.00001455 | ||||
Permit | 134056191 | 577 days ago | IN | 0 ETH | 0.00003456 | ||||
Permit | 134056076 | 577 days ago | IN | 0 ETH | 0.00003456 | ||||
Approve | 88335245 | 716 days ago | IN | 0 ETH | 0.00022464 | ||||
Approve | 80705740 | 738 days ago | IN | 0 ETH | 0.00004658 | ||||
Approve | 78571611 | 745 days ago | IN | 0 ETH | 0.0000405 | ||||
Approve | 70913382 | 767 days ago | IN | 0 ETH | 0.0000517 | ||||
Approve | 65879090 | 783 days ago | IN | 0 ETH | 0.0000522 | ||||
Approve | 65542168 | 784 days ago | IN | 0 ETH | 0.00006193 | ||||
Transfer | 65225760 | 785 days ago | IN | 0 ETH | 0.00007722 | ||||
Transfer | 65224704 | 785 days ago | IN | 0 ETH | 0.00007492 | ||||
Transfer | 65224526 | 785 days ago | IN | 0 ETH | 0.00007492 | ||||
Transfer | 65224142 | 785 days ago | IN | 0 ETH | 0.00006973 | ||||
Approve | 65127989 | 785 days ago | IN | 0 ETH | 0.00005208 | ||||
Approve | 64527877 | 787 days ago | IN | 0 ETH | 0.00004318 | ||||
Approve | 64255388 | 788 days ago | IN | 0 ETH | 0.00005486 | ||||
_set Liquidation... | 64250762 | 788 days ago | IN | 0 ETH | 0.00004179 | ||||
Approve | 64130864 | 788 days ago | IN | 0 ETH | 0.0000243 | ||||
Approve | 62972292 | 792 days ago | IN | 0 ETH | 0.00004363 | ||||
Approve | 62745642 | 792 days ago | IN | 0 ETH | 0.00004296 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
72077977 | 764 days ago | 0 ETH | ||||
72077977 | 764 days ago | 0 ETH | ||||
72077977 | 764 days ago | 0 ETH | ||||
72077977 | 764 days ago | 0 ETH | ||||
72077977 | 764 days ago | 0 ETH | ||||
72077977 | 764 days ago | 0 ETH | ||||
72077977 | 764 days ago | 0 ETH | ||||
72077977 | 764 days ago | 0 ETH | ||||
72077977 | 764 days ago | 0 ETH | ||||
72077977 | 764 days ago | 0 ETH | ||||
72077977 | 764 days ago | 0 ETH | ||||
72077977 | 764 days ago | 0 ETH | ||||
72077977 | 764 days ago | 0 ETH | ||||
72077977 | 764 days ago | 0 ETH | ||||
72077977 | 764 days ago | 0 ETH | ||||
72077977 | 764 days ago | 0 ETH | ||||
72077977 | 764 days ago | 0 ETH | ||||
72077525 | 764 days ago | 0 ETH | ||||
72077525 | 764 days ago | 0 ETH | ||||
72077525 | 764 days ago | 0 ETH | ||||
72077525 | 764 days ago | 0 ETH | ||||
72046172 | 764 days ago | 0 ETH | ||||
72046172 | 764 days ago | 0 ETH | ||||
72046172 | 764 days ago | 0 ETH | ||||
72046172 | 764 days ago | 0 ETH |
Loading...
Loading
Contract Name:
Collateral
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Arbiscan.io on 2023-02-20 */ // File: contracts\libraries\SafeMath.sol pragma solidity =0.5.16; // 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\ImpermaxERC20.sol pragma solidity =0.5.16; // This contract is basically UniswapV2ERC20 with small modifications // src: https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol contract ImpermaxERC20 { using SafeMath for uint; string public name; string public symbol; uint8 public decimals = 18; uint public totalSupply; mapping(address => uint) public balanceOf; mapping(address => mapping(address => uint)) public allowance; bytes32 public DOMAIN_SEPARATOR; mapping(address => uint) public nonces; event Transfer(address indexed from, address indexed to, uint value); event Approval(address indexed owner, address indexed spender, uint value); constructor() public {} function _setName(string memory _name, string memory _symbol) internal { name = _name; symbol = _symbol; uint chainId; assembly { chainId := chainid } DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256(bytes(_name)), keccak256(bytes("1")), chainId, address(this) ) ); } function _mint(address to, uint value) internal { totalSupply = totalSupply.add(value); balanceOf[to] = balanceOf[to].add(value); emit Transfer(address(0), to, value); } function _burn(address from, uint value) internal { balanceOf[from] = balanceOf[from].sub(value); totalSupply = totalSupply.sub(value); emit Transfer(from, address(0), value); } function _approve(address owner, address spender, uint value) private { allowance[owner][spender] = value; emit Approval(owner, spender, value); } function _transfer(address from, address to, uint value) internal { balanceOf[from] = balanceOf[from].sub(value, "Impermax: TRANSFER_TOO_HIGH"); balanceOf[to] = balanceOf[to].add(value); emit Transfer(from, to, value); } function approve(address spender, uint value) external returns (bool) { _approve(msg.sender, spender, value); return true; } function transfer(address to, uint value) external returns (bool) { _transfer(msg.sender, to, value); return true; } function transferFrom(address from, address to, uint value) external returns (bool) { if (allowance[from][msg.sender] != uint(-1)) { allowance[from][msg.sender] = allowance[from][msg.sender].sub(value, "Impermax: TRANSFER_NOT_ALLOWED"); } _transfer(from, to, value); return true; } function _checkSignature(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s, bytes32 typehash) internal { require(deadline >= block.timestamp, "Impermax: EXPIRED"); bytes32 digest = keccak256( abi.encodePacked( '\x19\x01', DOMAIN_SEPARATOR, keccak256(abi.encode(typehash, owner, spender, value, nonces[owner]++, deadline)) ) ); address recoveredAddress = ecrecover(digest, v, r, s); require(recoveredAddress != address(0) && recoveredAddress == owner, "Impermax: INVALID_SIGNATURE"); } // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9; function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external { _checkSignature(owner, spender, value, deadline, v, r, s, PERMIT_TYPEHASH); _approve(owner, spender, value); } } // File: contracts\interfaces\IERC20.sol pragma solidity >=0.5.0; 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\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 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; } // File: contracts\PoolToken.sol pragma solidity =0.5.16; contract PoolToken is IPoolToken, ImpermaxERC20 { uint internal constant initialExchangeRate = 1e18; address public underlying; address public factory; uint public totalBalance; uint public constant MINIMUM_LIQUIDITY = 1000; 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); /*** Initialize ***/ // called once by the factory function _setFactory() external { require(factory == address(0), "Impermax: FACTORY_ALREADY_SET"); factory = msg.sender; } /*** PoolToken ***/ function _update() internal { totalBalance = IERC20(underlying).balanceOf(address(this)); emit Sync(totalBalance); } function exchangeRate() public returns (uint) { uint _totalSupply = totalSupply; // gas savings uint _totalBalance = totalBalance; // gas savings if (_totalSupply == 0 || _totalBalance == 0) return initialExchangeRate; return _totalBalance.mul(1e18).div(_totalSupply); } // this low-level function should be called from another contract function mint(address minter) external nonReentrant update returns (uint mintTokens) { uint balance = IERC20(underlying).balanceOf(address(this)); uint mintAmount = balance.sub(totalBalance); mintTokens = mintAmount.mul(1e18).div(exchangeRate()); if(totalSupply == 0) { // permanently lock the first MINIMUM_LIQUIDITY tokens mintTokens = mintTokens.sub(MINIMUM_LIQUIDITY); _mint(address(0), MINIMUM_LIQUIDITY); } require(mintTokens > 0, "Impermax: MINT_AMOUNT_ZERO"); _mint(minter, mintTokens); emit Mint(msg.sender, minter, mintAmount, mintTokens); } // this low-level function should be called from another contract function redeem(address redeemer) external nonReentrant update returns (uint redeemAmount) { uint redeemTokens = balanceOf[address(this)]; redeemAmount = redeemTokens.mul(exchangeRate()).div(1e18); require(redeemAmount > 0, "Impermax: REDEEM_AMOUNT_ZERO"); require(redeemAmount <= totalBalance, "Impermax: INSUFFICIENT_CASH"); _burn(address(this), redeemTokens); _safeTransfer(redeemer, redeemAmount); emit Redeem(msg.sender, redeemer, redeemAmount, redeemTokens); } // force real balance to match totalBalance function skim(address to) external nonReentrant { _safeTransfer(to, IERC20(underlying).balanceOf(address(this)).sub(totalBalance)); } // force totalBalance to match real balance function sync() external nonReentrant update {} /*** Utilities ***/ // same safe transfer function used by UniSwapV2 (with fixed underlying) bytes4 private constant SELECTOR = bytes4(keccak256(bytes("transfer(address,uint256)"))); function _safeTransfer(address to, uint amount) internal { (bool success, bytes memory data) = underlying.call(abi.encodeWithSelector(SELECTOR, to, amount)); require(success && (data.length == 0 || abi.decode(data, (bool))), "Impermax: TRANSFER_FAILED"); } // prevents a contract from calling itself, directly or indirectly. bool internal _notEntered = true; modifier nonReentrant() { require(_notEntered, "Impermax: REENTERED"); _notEntered = false; _; _notEntered = true; } // update totalBalance with current balance modifier update() { _; _update(); } } // File: contracts\CStorage.sol pragma solidity =0.5.16; contract CStorage { address public borrowable0; address public borrowable1; uint public safetyMarginSqrt = 1.58113883e18; //safetyMargin: 250% uint public liquidationIncentive = 1.02e18; //2% uint public liquidationFee = 0.02e18; //2% function liquidationPenalty() public view returns (uint) { return liquidationIncentive + liquidationFee; } function safe112(uint n) internal pure returns (uint112) { require(n < 2**112, "Impermax: SAFE112"); return uint112(n); } } // File: contracts\interfaces\IFactory.sol pragma solidity >=0.5.0; interface IFactory { 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 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\CSetter.sol pragma solidity =0.5.16; contract CSetter is PoolToken, CStorage { uint public constant SAFETY_MARGIN_SQRT_MIN = 1.00e18; //safetyMargin: 100% uint public constant SAFETY_MARGIN_SQRT_MAX = 1.58113884e18; //safetyMargin: 250% uint public constant LIQUIDATION_INCENTIVE_MIN = 1.00e18; //100% uint public constant LIQUIDATION_INCENTIVE_MAX = 1.05e18; //105% uint public constant LIQUIDATION_FEE_MAX = 0.08e18; //8% event NewSafetyMargin(uint newSafetyMarginSqrt); event NewLiquidationIncentive(uint newLiquidationIncentive); event NewLiquidationFee(uint newLiquidationFee); // called once by the factory at the time of deployment function _initialize ( string calldata _name, string calldata _symbol, address _underlying, address _borrowable0, address _borrowable1 ) external { require(msg.sender == factory, "Impermax: UNAUTHORIZED"); // sufficient check _setName(_name, _symbol); underlying = _underlying; borrowable0 = _borrowable0; borrowable1 = _borrowable1; } function _setSafetyMarginSqrt(uint newSafetyMarginSqrt) external nonReentrant { _checkSetting(newSafetyMarginSqrt, SAFETY_MARGIN_SQRT_MIN, SAFETY_MARGIN_SQRT_MAX); safetyMarginSqrt = newSafetyMarginSqrt; emit NewSafetyMargin(newSafetyMarginSqrt); } function _setLiquidationIncentive(uint newLiquidationIncentive) external nonReentrant { _checkSetting(newLiquidationIncentive, LIQUIDATION_INCENTIVE_MIN, LIQUIDATION_INCENTIVE_MAX); liquidationIncentive = newLiquidationIncentive; emit NewLiquidationIncentive(newLiquidationIncentive); } function _setLiquidationFee(uint newLiquidationFee) external nonReentrant { _checkSetting(newLiquidationFee, 0, LIQUIDATION_FEE_MAX); liquidationFee = newLiquidationFee; emit NewLiquidationFee(newLiquidationFee); } function _checkSetting(uint parameter, uint min, uint max) internal view { _checkAdmin(); require(parameter >= min, "Impermax: INVALID_SETTING"); require(parameter <= max, "Impermax: INVALID_SETTING"); } function _checkAdmin() internal view { require(msg.sender == IFactory(factory).admin(), "Impermax: UNAUTHORIZED"); } } // File: contracts\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 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\interfaces\ICollateral.sol pragma solidity >=0.5.0; interface ICollateral { /*** 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 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\interfaces\IImpermaxCallee.sol pragma solidity >=0.5.0; interface IImpermaxCallee { function impermaxBorrow(address sender, address borrower, uint borrowAmount, bytes calldata data) external; function impermaxRedeem(address sender, uint redeemAmount, bytes calldata data) 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 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 token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function observationLength() external view returns (uint); function observations(uint) external view returns ( uint timestamp, uint reserve0Cumulative, uint reserve1Cumulative ); function currentCumulativePrices() external view returns ( uint reserve0Cumulative, uint reserve1Cumulative, uint timestamp ); } // File: contracts\libraries\UQ112x112.sol pragma solidity =0.5.16; // a library for handling binary fixed point numbers (https://en.wikipedia.org/wiki/Q_(number_format)) // src: https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/libraries/UQ112x112.sol // range: [0, 2**112 - 1] // resolution: 1 / 2**112 library UQ112x112 { uint224 constant Q112 = 2**112; // encode a uint112 as a UQ112x112 function encode(uint112 y) internal pure returns (uint224 z) { z = uint224(y) * Q112; // never overflows } // divide a UQ112x112 by a uint112, returning a UQ112x112 function uqdiv(uint224 x, uint112 y) internal pure returns (uint224 z) { z = x / uint224(y); } } // File: contracts\libraries\Math.sol pragma solidity =0.5.16; // 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; } // 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\Collateral.sol pragma solidity =0.5.16; contract Collateral is ICollateral, PoolToken, CStorage, CSetter { using UQ112x112 for uint224; constructor() public {} /*** Collateralization Model ***/ function getTwapPrice112x112() public returns(uint224 twapPrice112x112) { uint length = IUniswapV2Pair(underlying).observationLength(); (uint lastTimestamp, uint lastReserve0Cumulative, uint lastReserve1Cumulative) = IUniswapV2Pair(underlying).observations(length-2); (uint reserve0Cumulative, uint reserve1Cumulative, uint timestamp) = IUniswapV2Pair(underlying).currentCumulativePrices(); uint timeElapsed = timestamp - lastTimestamp; uint112 twapReserve0 = safe112((reserve0Cumulative - lastReserve0Cumulative) / timeElapsed); uint112 twapReserve1 = safe112((reserve1Cumulative - lastReserve1Cumulative) / timeElapsed); twapPrice112x112 = UQ112x112.encode(twapReserve1).uqdiv(twapReserve0); } function getPrices() public returns (uint price0, uint price1) { uint224 twapPrice112x112 = getTwapPrice112x112(); (uint112 reserve0, uint112 reserve1,) = IUniswapV2Pair(underlying).getReserves(); uint256 collateralTotalSupply = IUniswapV2Pair(underlying).totalSupply(); uint224 currentPrice112x112 = UQ112x112.encode(reserve1).uqdiv(reserve0); uint256 adjustmentSquared = uint256(twapPrice112x112).mul(2**32).div(currentPrice112x112); uint256 adjustment = Math.sqrt(adjustmentSquared.mul(2**32)); uint256 currentBorrowable0Price = uint256(collateralTotalSupply).mul(1e18).div(reserve0*2); uint256 currentBorrowable1Price = uint256(collateralTotalSupply).mul(1e18).div(reserve1*2); price0 = currentBorrowable0Price.mul(adjustment).div(2**32); price1 = currentBorrowable1Price.mul(2**32).div(adjustment); /* * Price calculation errors may happen in some edge pairs where * reserve0 / reserve1 is close to 2**112 or 1/2**112 * We're going to prevent users from using pairs at risk from the UI */ require(price0 > 100, "Impermax: PRICE_CALCULATION_ERROR"); require(price1 > 100, "Impermax: PRICE_CALCULATION_ERROR"); } // returns liquidity in collateral's underlying function _calculateLiquidity(uint amountCollateral, uint amount0, uint amount1) internal returns (uint liquidity, uint shortfall) { uint _safetyMarginSqrt = safetyMarginSqrt; (uint price0, uint price1) = getPrices(); uint a = amount0.mul(price0).div(1e18); uint b = amount1.mul(price1).div(1e18); if(a < b) (a, b) = (b, a); a = a.mul(_safetyMarginSqrt).div(1e18); b = b.mul(1e18).div(_safetyMarginSqrt); uint collateralNeeded = a.add(b).mul(liquidationPenalty()).div(1e18); if(amountCollateral >= collateralNeeded){ return (amountCollateral - collateralNeeded, 0); } else { return (0, collateralNeeded - amountCollateral); } } /*** ERC20 ***/ function _transfer(address from, address to, uint value) internal { require(tokensUnlocked(from, value), "Impermax: INSUFFICIENT_LIQUIDITY"); super._transfer(from, to, value); } function tokensUnlocked(address from, uint value) public returns (bool) { uint _balance = balanceOf[from]; if (value > _balance) return false; uint finalBalance = _balance - value; uint amountCollateral = finalBalance.mul(exchangeRate()).div(1e18); uint amount0 = IBorrowable(borrowable0).borrowBalance(from); uint amount1 = IBorrowable(borrowable1).borrowBalance(from); (, uint shortfall) = _calculateLiquidity(amountCollateral, amount0, amount1); return shortfall == 0; } /*** Collateral ***/ function accountLiquidityAmounts(address borrower, uint amount0, uint amount1) public returns (uint liquidity, uint shortfall) { if (amount0 == uint(-1)) amount0 = IBorrowable(borrowable0).borrowBalance(borrower); if (amount1 == uint(-1)) amount1 = IBorrowable(borrowable1).borrowBalance(borrower); uint amountCollateral = balanceOf[borrower].mul(exchangeRate()).div(1e18); return _calculateLiquidity(amountCollateral, amount0, amount1); } function accountLiquidity(address borrower) public returns (uint liquidity, uint shortfall) { return accountLiquidityAmounts(borrower, uint(-1), uint(-1)); } function canBorrow(address borrower, address borrowable, uint accountBorrows) public returns (bool) { address _borrowable0 = borrowable0; address _borrowable1 = borrowable1; require(borrowable == _borrowable0 || borrowable == _borrowable1, "Impermax: INVALID_BORROWABLE" ); uint amount0 = borrowable == _borrowable0 ? accountBorrows : uint(-1); uint amount1 = borrowable == _borrowable1 ? accountBorrows : uint(-1); (, uint shortfall) = accountLiquidityAmounts(borrower, amount0, amount1); return shortfall == 0; } // this function must be called from borrowable0 or borrowable1 function seize(address liquidator, address borrower, uint repayAmount) external returns (uint seizeTokens) { require(msg.sender == borrowable0 || msg.sender == borrowable1, "Impermax: UNAUTHORIZED"); (, uint shortfall) = accountLiquidity(borrower); require(shortfall > 0, "Impermax: INSUFFICIENT_SHORTFALL"); uint price; if (msg.sender == borrowable0) (price, ) = getPrices(); else (, price) = getPrices(); uint collateralEquivalent = repayAmount.mul(price).div( exchangeRate() ); seizeTokens = collateralEquivalent.mul(liquidationIncentive).div(1e18); balanceOf[borrower] = balanceOf[borrower].sub(seizeTokens, "Impermax: LIQUIDATING_TOO_MUCH"); balanceOf[liquidator] = balanceOf[liquidator].add(seizeTokens); emit Transfer(borrower, liquidator, seizeTokens); if (liquidationFee > 0) { uint seizeFee = collateralEquivalent.mul(liquidationFee).div(1e18); address reservesManager = IFactory(factory).reservesManager(); balanceOf[borrower] = balanceOf[borrower].sub(seizeFee, "Impermax: LIQUIDATING_TOO_MUCH"); balanceOf[reservesManager] = balanceOf[reservesManager].add(seizeFee); emit Transfer(borrower, reservesManager, seizeFee); } } // this low-level function should be called from another contract function flashRedeem(address redeemer, uint redeemAmount, bytes calldata data) external nonReentrant update { require(redeemAmount <= totalBalance, "Impermax: INSUFFICIENT_CASH"); // optimistically transfer funds _safeTransfer(redeemer, redeemAmount); if (data.length > 0) IImpermaxCallee(redeemer).impermaxRedeem(msg.sender, redeemAmount, data); uint redeemTokens = balanceOf[address(this)]; uint declaredRedeemTokens = redeemAmount.mul(1e18).div( exchangeRate() ).add(1); // rounded up require(redeemTokens >= declaredRedeemTokens, "Impermax: INSUFFICIENT_REDEEM_TOKENS"); _burn(address(this), redeemTokens); emit Redeem(msg.sender, redeemer, redeemAmount, redeemTokens); } } // File: contracts\interfaces\ICDeployer.sol pragma solidity >=0.5.0; interface ICDeployer { function deployCollateral(address uniswapV2Pair) external returns (address collateral); } // File: contracts\CDeployer.sol pragma solidity =0.5.16; /* * This contract is used by the Factory to deploy Collateral(s) * The bytecode would be too long to fit in the Factory */ contract CDeployer is ICDeployer { constructor () public {} function deployCollateral(address uniswapV2Pair) external returns (address collateral) { bytes memory bytecode = type(Collateral).creationCode; bytes32 salt = keccak256(abi.encodePacked(msg.sender, uniswapV2Pair)); assembly { collateral := create2(0, add(bytecode, 32), mload(bytecode), salt) } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mintTokens","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newLiquidationFee","type":"uint256"}],"name":"NewLiquidationFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newLiquidationIncentive","type":"uint256"}],"name":"NewLiquidationIncentive","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newSafetyMarginSqrt","type":"uint256"}],"name":"NewSafetyMargin","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"redeemer","type":"address"},{"indexed":false,"internalType":"uint256","name":"redeemAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalBalance","type":"uint256"}],"name":"Sync","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"LIQUIDATION_FEE_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"LIQUIDATION_INCENTIVE_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"LIQUIDATION_INCENTIVE_MIN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MINIMUM_LIQUIDITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"SAFETY_MARGIN_SQRT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"SAFETY_MARGIN_SQRT_MIN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_underlying","type":"address"},{"internalType":"address","name":"_borrowable0","type":"address"},{"internalType":"address","name":"_borrowable1","type":"address"}],"name":"_initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"_setFactory","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"newLiquidationFee","type":"uint256"}],"name":"_setLiquidationFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"newLiquidationIncentive","type":"uint256"}],"name":"_setLiquidationIncentive","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"newSafetyMarginSqrt","type":"uint256"}],"name":"_setSafetyMarginSqrt","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"accountLiquidity","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"shortfall","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"accountLiquidityAmounts","outputs":[{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"shortfall","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"borrowable0","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"borrowable1","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"address","name":"borrowable","type":"address"},{"internalType":"uint256","name":"accountBorrows","type":"uint256"}],"name":"canBorrow","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"exchangeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"redeemer","type":"address"},{"internalType":"uint256","name":"redeemAmount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"flashRedeem","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getPrices","outputs":[{"internalType":"uint256","name":"price0","type":"uint256"},{"internalType":"uint256","name":"price1","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getTwapPrice112x112","outputs":[{"internalType":"uint224","name":"twapPrice112x112","type":"uint224"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"liquidationFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"liquidationIncentive","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"liquidationPenalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"mintTokens","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"redeemer","type":"address"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"safetyMarginSqrt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"liquidator","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"seize","outputs":[{"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"skim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"sync","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"tokensUnlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"underlying","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526002805460ff19908116601217909155600b805490911660011790556715f155637eba0c00600d55670e27c49886e60000600e5566470de4df820000600f5534801561004f57600080fd5b506140cb8061005f6000396000f3fe608060405234801561001057600080fd5b506004361061030a5760003560e01c80637ecebe001161019c578063bb6ff386116100ee578063d490e7e011610097578063dd62ed3e11610071578063dd62ed3e146109d2578063e22e013c14610a0d578063fff6cae914610a465761030a565b8063d490e7e014610964578063d505accf1461096c578063daf88818146109ca5761030a565b8063bd9a548b116100c8578063bd9a548b1461086a578063c45a015514610872578063c548e3c51461087a5761030a565b8063bb6ff3861461081a578063bc25cf7714610837578063bc9bd12a146103d95761030a565b8063a36a363011610150578063afc8276c1161012a578063afc8276c146107c7578063b2a02ff1146107cf578063ba9a7a56146108125761030a565b8063a36a36301461077e578063a9059cbb14610786578063ad7a672f146107bf5761030a565b806395a2251f1161018157806395a2251f1461070057806395d89b41146107335780639aac2c531461073b5761030a565b80637ecebe00146106c55780638c765e94146106f85761030a565b806333fabfd1116102605780635a0f03c6116102095780636f13cb83116101e35780636f13cb831461064b5780636f307dc31461068a57806370a08231146106925761030a565b80635a0f03c6146105935780636a627842146105df5780636e01be10146106125761030a565b80633ba0b9a91161023a5780633ba0b9a9146105665780634a5d316c1461056e5780634fd42e17146105765761030a565b806333fabfd11461054e578063356c571f146105565780633644e5151461055e5761030a565b80631ef63a79116102c25780632fa5ae1b1161029c5780632fa5ae1b146104f757806330adf81f14610528578063313ce567146105305761030a565b80631ef63a791461048f57806323b872dd146104ac57806323f5589a146104ef5761030a565b80630fb60fef116102f35780630fb60fef146103d957806318160ddd146103f357806319f3400d146103fb5761030a565b806306fdde031461030f578063095ea7b31461038c575b600080fd5b610317610a4e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610351578181015183820152602001610339565b50505050905090810190601f16801561037e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103c5600480360360408110156103a257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610afa565b604080519115158252519081900360200190f35b6103e1610b11565b60408051918252519081900360200190f35b6103e1610b1d565b61048d6004803603606081101561041157600080fd5b73ffffffffffffffffffffffffffffffffffffffff8235169160208101359181019060608101604082013564010000000081111561044e57600080fd5b82018360208201111561046057600080fd5b8035906020019184600183028401116401000000008311171561048257600080fd5b509092509050610b23565b005b61048d600480360360208110156104a557600080fd5b5035610e49565b6103c5600480360360608110156104c257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610f5c565b6103e1611070565b6104ff61107b565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6103e161109c565b6105386110c0565b6040805160ff9092168252519081900360200190f35b6103e16110c9565b6103e16110d5565b6103e16110db565b6103e16110e1565b61048d611130565b61048d6004803603602081101561058c57600080fd5b50356111e1565b6105c6600480360360208110156105a957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166112fb565b6040805192835260208301919091528051918290030190f35b6103e1600480360360208110156105f557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611332565b6103c56004803603604081101561062857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356115e0565b6105c66004803603606081101561066157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602081013590604001356117d3565b6104ff6119d6565b6103e1600480360360208110156106a857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166119f2565b6103e1600480360360208110156106db57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611a04565b6103e1611a16565b6103e16004803603602081101561071657600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611a1c565b610317611c40565b6103c56004803603606081101561075157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135611cb8565b6103e1611e52565b6103c56004803603604081101561079c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611e58565b6103e1611e65565b6103e1611e6b565b6103e1600480360360608110156107e557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135611e77565b6103e1612341565b61048d6004803603602081101561083057600080fd5b5035612347565b61048d6004803603602081101561084d57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612461565b6105c66125e4565b6104ff612925565b61048d600480360360a081101561089057600080fd5b8101906020810181356401000000008111156108ab57600080fd5b8201836020820111156108bd57600080fd5b803590602001918460018302840111640100000000831117156108df57600080fd5b9193909290916020810190356401000000008111156108fd57600080fd5b82018360208201111561090f57600080fd5b8035906020019184600183028401116401000000008311171561093157600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160409091013516612941565b6103e1612ac7565b61048d600480360360e081101561098257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135612ad3565b6104ff612b17565b6103e1600480360360408110156109e857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516612b33565b610a15612b50565b604080517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b61048d612dba565b6000805460408051602060026001851615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f81018490048402820184019092528181529291830182828015610af25780601f10610ac757610100808354040283529160200191610af2565b820191906000526020600020905b815481529060010190602001808311610ad557829003601f168201915b505050505081565b6000610b07338484612e88565b5060015b92915050565b670de0b6b3a764000081565b60035481565b600b5460ff16610b9457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496d7065726d61783a205245454e544552454400000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600a54831115610c2d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f496d7065726d61783a20494e53554646494349454e545f434153480000000000604482015290519081900360640190fd5b610c378484612ef7565b8015610d03576040517facb86cbb0000000000000000000000000000000000000000000000000000000081523360048201818152602483018690526060604484019081526064840185905273ffffffffffffffffffffffffffffffffffffffff88169363acb86cbb93928892889288929190608401848480828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b158015610cea57600080fd5b505af1158015610cfe573d6000803e3d6000fd5b505050505b3060009081526004602052604081205490610d546001610d48610d246110e1565b610d3c89670de0b6b3a764000063ffffffff61310316565b9063ffffffff61317d16565b9063ffffffff6131bf16565b905080821015610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613fdf6024913960400191505060405180910390fd5b610db93083613233565b6040805186815260208101849052815173ffffffffffffffffffffffffffffffffffffffff89169233927f3f693fff038bb8a046aa76d9516190ac7444f7d69cf952c4cbdc086fdef2d6fc929081900390910190a35050610e186132f7565b5050600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b600b5460ff16610eba57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496d7065726d61783a205245454e544552454400000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055610ef681600067011c37937e0800006133cd565b600f8190556040805182815290517f21e5451a492a87031e8324e7e1e2ba821fdec0c40972393c9f74dd38bd88a6af9181900360200190a150600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1461105b57604080518082018252601e81527f496d7065726d61783a205452414e534645525f4e4f545f414c4c4f574544000060208083019190915273ffffffffffffffffffffffffffffffffffffffff8716600090815260058252838120338252909152919091205461102991849063ffffffff6134b816565b73ffffffffffffffffffffffffffffffffffffffff851660009081526005602090815260408083203384529091529020555b611066848484613569565b5060019392505050565b600f54600e54015b90565b600b54610100900473ffffffffffffffffffffffffffffffffffffffff1681565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60025460ff1681565b67011c37937e08000081565b600d5481565b60065481565b600354600a54600091908115806110f6575080155b1561110d57670de0b6b3a764000092505050611078565b61112982610d3c83670de0b6b3a764000063ffffffff61310316565b9250505090565b60095473ffffffffffffffffffffffffffffffffffffffff16156111b557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f496d7065726d61783a20464143544f52595f414c52454144595f534554000000604482015290519081900360640190fd5b600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001633179055565b600b5460ff1661125257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496d7065726d61783a205245454e544552454400000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905561129581670de0b6b3a7640000670e92596fd62900006133cd565b600e8190556040805182815290517f8a9bb9067f9ecb13a322b548e6df3dd1bd10a54698834dac43ed8f0e765bf94d9181900360200190a150600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b600080611329837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff806117d3565b91509150915091565b600b5460009060ff166113a657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496d7065726d61783a205245454e544552454400000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600854604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b15801561143f57600080fd5b505afa158015611453573d6000803e3d6000fd5b505050506040513d602081101561146957600080fd5b5051600a5490915060009061148590839063ffffffff6135e916565b90506114aa6114926110e1565b610d3c83670de0b6b3a764000063ffffffff61310316565b9250600354600014156114d8576114c9836103e863ffffffff6135e916565b92506114d860006103e861362b565b6000831161154757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f496d7065726d61783a204d494e545f414d4f554e545f5a45524f000000000000604482015290519081900360640190fd5b611551848461362b565b6040805182815260208101859052815173ffffffffffffffffffffffffffffffffffffffff87169233927f2f00e3cdd69a77be7ed215ec7b2a36784dd158f921fca79ac29deffa353fe6ee929081900390910190a350506115b06132f7565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055919050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081205480831115611618576000915050610b0b565b8281036000611641670de0b6b3a7640000610d3c6116346110e1565b859063ffffffff61310316565b90506000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634d73e9ba886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156116e457600080fd5b505afa1580156116f8573d6000803e3d6000fd5b505050506040513d602081101561170e57600080fd5b5051600c54604080517f4d73e9ba00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8b8116600483015291519394506000939190921691634d73e9ba916024808301926020929190829003018186803b15801561178957600080fd5b505afa15801561179d573d6000803e3d6000fd5b505050506040513d60208110156117b357600080fd5b5051905060006117c48484846136dc565b159a9950505050505050505050565b6000807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8414156118a657600b54604080517f4d73e9ba00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8881166004830152915161010090930490911691634d73e9ba91602480820192602092909190829003018186803b15801561187757600080fd5b505afa15801561188b573d6000803e3d6000fd5b505050506040513d60208110156118a157600080fd5b505193505b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83141561197057600c54604080517f4d73e9ba00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015291519190921691634d73e9ba916024808301926020929190829003018186803b15801561194157600080fd5b505afa158015611955573d6000803e3d6000fd5b505050506040513d602081101561196b57600080fd5b505192505b60006119bb670de0b6b3a7640000610d3c6119896110e1565b73ffffffffffffffffffffffffffffffffffffffff8a166000908152600460205260409020549063ffffffff61310316565b90506119c88186866136dc565b92509250505b935093915050565b60085473ffffffffffffffffffffffffffffffffffffffff1681565b60046020526000908152604090205481565b60076020526000908152604090205481565b600e5481565b600b5460009060ff16611a9057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496d7065726d61783a205245454e544552454400000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905530600090815260046020526040902054611aec670de0b6b3a7640000610d3c611adf6110e1565b849063ffffffff61310316565b915060008211611b5d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f496d7065726d61783a2052454445454d5f414d4f554e545f5a45524f00000000604482015290519081900360640190fd5b600a54821115611bce57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f496d7065726d61783a20494e53554646494349454e545f434153480000000000604482015290519081900360640190fd5b611bd83082613233565b611be28383612ef7565b6040805183815260208101839052815173ffffffffffffffffffffffffffffffffffffffff86169233927f3f693fff038bb8a046aa76d9516190ac7444f7d69cf952c4cbdc086fdef2d6fc929081900390910190a3506115b06132f7565b60018054604080516020600284861615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f81018490048402820184019092528181529291830182828015610af25780601f10610ac757610100808354040283529160200191610af2565b600b54600c5460009173ffffffffffffffffffffffffffffffffffffffff6101009091048116918116908516821480611d1c57508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b611d8757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f496d7065726d61783a20494e56414c49445f424f52524f5741424c4500000000604482015290519081900360640190fd5b60008273ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614611de2577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611de4565b845b905060008273ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614611e41577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611e43565b855b905060006117c48984846117d3565b600f5481565b6000610b07338484613569565b600a5481565b670e92596fd629000081565b600b54600090610100900473ffffffffffffffffffffffffffffffffffffffff16331480611ebc5750600c5473ffffffffffffffffffffffffffffffffffffffff1633145b611f2757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f496d7065726d61783a20554e415554484f52495a454400000000000000000000604482015290519081900360640190fd5b6000611f32846112fb565b91505060008111611fa457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f496d7065726d61783a20494e53554646494349454e545f53484f525446414c4c604482015290519081900360640190fd5b600b54600090610100900473ffffffffffffffffffffffffffffffffffffffff16331415611fdc57611fd46125e4565b509050611fe8565b611fe46125e4565b9150505b6000612005611ff56110e1565b610d3c878563ffffffff61310316565b9050612028670de0b6b3a7640000610d3c600e548461310390919063ffffffff16565b93506120b3846040518060400160405280601e81526020017f496d7065726d61783a204c49515549444154494e475f544f4f5f4d5543480000815250600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134b89092919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff80881660009081526004602052604080822093909355908916815220546120f5908563ffffffff6131bf16565b73ffffffffffffffffffffffffffffffffffffffff80891660008181526004602090815260409182902094909455805188815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3600f5415612337576000612184670de0b6b3a7640000610d3c600f548561310390919063ffffffff16565b90506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663345ef9416040518163ffffffff1660e01b815260040160206040518083038186803b1580156121f057600080fd5b505afa158015612204573d6000803e3d6000fd5b505050506040513d602081101561221a57600080fd5b5051604080518082018252601e81527f496d7065726d61783a204c49515549444154494e475f544f4f5f4d554348000060208281019190915273ffffffffffffffffffffffffffffffffffffffff8c1660009081526004909152919091205491925061228e9190849063ffffffff6134b816565b73ffffffffffffffffffffffffffffffffffffffff808a1660009081526004602052604080822093909355908316815220546122d0908363ffffffff6131bf16565b73ffffffffffffffffffffffffffffffffffffffff80831660008181526004602090815260409182902094909455805186815290519193928c16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505b5050509392505050565b6103e881565b600b5460ff166123b857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496d7065726d61783a205245454e544552454400000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690556123fb81670de0b6b3a76400006715f15565d2c5f0006133cd565b600d8190556040805182815290517fdff9a61839be6f6ce5ea77311cc351786a39a9f337c507ff35e7b358fd39c0439181900360200190a150600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b600b5460ff166124d257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496d7065726d61783a205245454e544552454400000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600a54600854604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516125b69385936125b193919273ffffffffffffffffffffffffffffffffffffffff909116916370a08231916024808301926020929190829003018186803b15801561257957600080fd5b505afa15801561258d573d6000803e3d6000fd5b505050506040513d60208110156125a357600080fd5b50519063ffffffff6135e916565b612ef7565b50600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60008060006125f1612b50565b9050600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561265e57600080fd5b505afa158015612672573d6000803e3d6000fd5b505050506040513d606081101561268857600080fd5b508051602091820151600854604080517f18160ddd000000000000000000000000000000000000000000000000000000008152905193965091945060009373ffffffffffffffffffffffffffffffffffffffff909116926318160ddd926004808201939291829003018186803b15801561270157600080fd5b505afa158015612715573d6000803e3d6000fd5b505050506040513d602081101561272b57600080fd5b5051905060006127688461273e856137de565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169063ffffffff61380216565b905060006127a77bffffffffffffffffffffffffffffffffffffffffffffffffffffffff80841690610d3c90891664010000000063ffffffff61310316565b905060006127c86127c38364010000000063ffffffff61310316565b613843565b905060006127fb6dffffffffffffffffffffffffffff6002890216610d3c87670de0b6b3a764000063ffffffff61310316565b9050600061282e6dffffffffffffffffffffffffffff6002890216610d3c88670de0b6b3a764000063ffffffff61310316565b9050612849640100000000610d3c848663ffffffff61310316565b9a5061286483610d3c8364010000000063ffffffff61310316565b995060648b116128bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806140036021913960400191505060405180910390fd5b60648a11612918576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806140036021913960400191505060405180910390fd5b5050505050505050509091565b60095473ffffffffffffffffffffffffffffffffffffffff1681565b60095473ffffffffffffffffffffffffffffffffffffffff1633146129c757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f496d7065726d61783a20554e415554484f52495a454400000000000000000000604482015290519081900360640190fd5b612a3a87878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8b01819004810282018101909252898152925089915088908190840183828082843760009201919091525061389592505050565b6008805473ffffffffffffffffffffffffffffffffffffffff9485167fffffffffffffffffffffffff000000000000000000000000000000000000000091821617909155600b8054938516610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff90941693909317909255600c805491909316911617905550505050565b6715f15565d2c5f00081565b612b03878787878787877f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9613979565b612b0e878787612e88565b50505050505050565b600c5473ffffffffffffffffffffffffffffffffffffffff1681565b600560209081526000928352604080842090915290825290205481565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ebeb31db6040518163ffffffff1660e01b815260040160206040518083038186803b158015612bbb57600080fd5b505afa158015612bcf573d6000803e3d6000fd5b505050506040513d6020811015612be557600080fd5b5051600854604080517f252c09d70000000000000000000000000000000000000000000000000000000081527ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe8401600482015290519293506000928392839273ffffffffffffffffffffffffffffffffffffffff9091169163252c09d791602480820192606092909190829003018186803b158015612c8457600080fd5b505afa158015612c98573d6000803e3d6000fd5b505050506040513d6060811015612cae57600080fd5b508051602082015160409283015160085484517f1df8c717000000000000000000000000000000000000000000000000000000008152945193975091955093506000928392839273ffffffffffffffffffffffffffffffffffffffff1691631df8c717916004808301926060929190829003018186803b158015612d3157600080fd5b505afa158015612d45573d6000803e3d6000fd5b505050506040513d6060811015612d5b57600080fd5b508051602082015160409092015190945090925090508581036000612d8a8288870381612d8457fe5b04613c1c565b90506000612d9c8388870381612d8457fe5b9050612dab8261273e836137de565b9a505050505050505050505090565b600b5460ff16612e2b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496d7065726d61783a205245454e544552454400000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055612e5b6132f7565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b73ffffffffffffffffffffffffffffffffffffffff808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600854604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff86811660248301526044808301879052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001781529251815160009560609594169382918083835b60208310612ffd57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101612fc0565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461305f576040519150601f19603f3d011682016040523d82523d6000602084013e613064565b606091505b5091509150818015613092575080511580613092575080806020019051602081101561308f57600080fd5b50515b6130fd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f496d7065726d61783a205452414e534645525f4641494c454400000000000000604482015290519081900360640190fd5b50505050565b60008261311257506000610b0b565b8282028284828161311f57fe5b0414613176576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806140766021913960400191505060405180910390fd5b9392505050565b600061317683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613c9f565b60008282018381101561317657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8216600090815260046020526040902054613269908263ffffffff6135e916565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600460205260409020556003546132a2908263ffffffff6135e916565b60035560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600854604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff909216916370a0823191602480820192602092909190829003018186803b15801561336857600080fd5b505afa15801561337c573d6000803e3d6000fd5b505050506040513d602081101561339257600080fd5b5051600a81905560408051918252517f8a0df8ef054fae2c3d2d19a7b322e864870cc9fd3cb07fb9526309c596244bf49181900360200190a1565b6133d5613d1e565b8183101561344457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f496d7065726d61783a20494e56414c49445f53455454494e4700000000000000604482015290519081900360640190fd5b808311156134b357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f496d7065726d61783a20494e56414c49445f53455454494e4700000000000000604482015290519081900360640190fd5b505050565b60008184841115613561576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561352657818101518382015260200161350e565b50505050905090810190601f1680156135535780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b61357383826115e0565b6135de57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f496d7065726d61783a20494e53554646494349454e545f4c4951554944495459604482015290519081900360640190fd5b6134b3838383613e37565b600061317683836040518060400160405280601f81526020017f536166654d6174683a207375627472616374696f6e20756e646572666c6f77008152506134b8565b60035461363e908263ffffffff6131bf16565b60035573ffffffffffffffffffffffffffffffffffffffff8216600090815260046020526040902054613677908263ffffffff6131bf16565b73ffffffffffffffffffffffffffffffffffffffff831660008181526004602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600d54600090819081806136ee6125e4565b90925090506000613711670de0b6b3a7640000610d3c8a8663ffffffff61310316565b90506000613731670de0b6b3a7640000610d3c8a8663ffffffff61310316565b90508082101561373d57905b613759670de0b6b3a7640000610d3c848863ffffffff61310316565b915061377785610d3c83670de0b6b3a764000063ffffffff61310316565b905060006137ae670de0b6b3a7640000610d3c613792611070565b6137a2878763ffffffff6131bf16565b9063ffffffff61310316565b9050808b106137ca578a039650600095506119ce945050505050565b600097508a900395506119ce945050505050565b6dffffffffffffffffffffffffffff166e0100000000000000000000000000000290565b60006dffffffffffffffffffffffffffff82167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff84168161383b57fe5b049392505050565b60006003821115613886575080600160028204015b818110156138805780915060028182858161386f57fe5b04018161387857fe5b049050613858565b50613890565b8115613890575060015b919050565b81516138a8906000906020850190613f50565b5080516138bc906001906020840190613f50565b50604051469080605261402482396040805191829003605201822086516020978801208383018352600184527f310000000000000000000000000000000000000000000000000000000000000093880193909352815180880191909152808201929092527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606083015260808201939093523060a0808301919091528351808303909101815260c090910190925250805192019190912060065550565b428510156139e857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f496d7065726d61783a2045585049524544000000000000000000000000000000604482015290519081900360640190fd5b60065473ffffffffffffffffffffffffffffffffffffffff808a1660008181526007602090815260408083208054600180820190925582518085018a905280840196909652958e166060860152608085018d905260a085019590955260c08085018c90528151808603909101815260e0850182528051908301207f19010000000000000000000000000000000000000000000000000000000000006101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff8a166101828501526101a284018990526101c28401889052519193926101e2808201937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081019281900390910190855afa158015613b2a573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811615801590613ba557508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b613c1057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f496d7065726d61783a20494e56414c49445f5349474e41545552450000000000604482015290519081900360640190fd5b50505050505050505050565b60006e0100000000000000000000000000008210613c9b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f496d7065726d61783a2053414645313132000000000000000000000000000000604482015290519081900360640190fd5b5090565b60008183613d08576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181815283516024840152835190928392604490910191908501908083836000831561352657818101518382015260200161350e565b506000838581613d1457fe5b0495945050505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f851a4406040518163ffffffff1660e01b815260040160206040518083038186803b158015613d8657600080fd5b505afa158015613d9a573d6000803e3d6000fd5b505050506040513d6020811015613db057600080fd5b505173ffffffffffffffffffffffffffffffffffffffff163314613e3557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f496d7065726d61783a20554e415554484f52495a454400000000000000000000604482015290519081900360640190fd5b565b604080518082018252601b81527f496d7065726d61783a205452414e534645525f544f4f5f48494748000000000060208083019190915273ffffffffffffffffffffffffffffffffffffffff8616600090815260049091529190912054613ea591839063ffffffff6134b816565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152600460205260408082209390935590841681522054613ee7908263ffffffff6131bf16565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613f9157805160ff1916838001178555613fbe565b82800160010185558215613fbe579182015b82811115613fbe578251825591602001919060010190613fa3565b50613c9b926110789250905b80821115613c9b5760008155600101613fca56fe496d7065726d61783a20494e53554646494349454e545f52454445454d5f544f4b454e53496d7065726d61783a2050524943455f43414c43554c4154494f4e5f4552524f52454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a265627a7a72315820c8027b896dc95e8f0d34f60357066d8f7ac56194c9501ad5250332804ebd2b8764736f6c63430005100032
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061030a5760003560e01c80637ecebe001161019c578063bb6ff386116100ee578063d490e7e011610097578063dd62ed3e11610071578063dd62ed3e146109d2578063e22e013c14610a0d578063fff6cae914610a465761030a565b8063d490e7e014610964578063d505accf1461096c578063daf88818146109ca5761030a565b8063bd9a548b116100c8578063bd9a548b1461086a578063c45a015514610872578063c548e3c51461087a5761030a565b8063bb6ff3861461081a578063bc25cf7714610837578063bc9bd12a146103d95761030a565b8063a36a363011610150578063afc8276c1161012a578063afc8276c146107c7578063b2a02ff1146107cf578063ba9a7a56146108125761030a565b8063a36a36301461077e578063a9059cbb14610786578063ad7a672f146107bf5761030a565b806395a2251f1161018157806395a2251f1461070057806395d89b41146107335780639aac2c531461073b5761030a565b80637ecebe00146106c55780638c765e94146106f85761030a565b806333fabfd1116102605780635a0f03c6116102095780636f13cb83116101e35780636f13cb831461064b5780636f307dc31461068a57806370a08231146106925761030a565b80635a0f03c6146105935780636a627842146105df5780636e01be10146106125761030a565b80633ba0b9a91161023a5780633ba0b9a9146105665780634a5d316c1461056e5780634fd42e17146105765761030a565b806333fabfd11461054e578063356c571f146105565780633644e5151461055e5761030a565b80631ef63a79116102c25780632fa5ae1b1161029c5780632fa5ae1b146104f757806330adf81f14610528578063313ce567146105305761030a565b80631ef63a791461048f57806323b872dd146104ac57806323f5589a146104ef5761030a565b80630fb60fef116102f35780630fb60fef146103d957806318160ddd146103f357806319f3400d146103fb5761030a565b806306fdde031461030f578063095ea7b31461038c575b600080fd5b610317610a4e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610351578181015183820152602001610339565b50505050905090810190601f16801561037e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103c5600480360360408110156103a257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610afa565b604080519115158252519081900360200190f35b6103e1610b11565b60408051918252519081900360200190f35b6103e1610b1d565b61048d6004803603606081101561041157600080fd5b73ffffffffffffffffffffffffffffffffffffffff8235169160208101359181019060608101604082013564010000000081111561044e57600080fd5b82018360208201111561046057600080fd5b8035906020019184600183028401116401000000008311171561048257600080fd5b509092509050610b23565b005b61048d600480360360208110156104a557600080fd5b5035610e49565b6103c5600480360360608110156104c257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610f5c565b6103e1611070565b6104ff61107b565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6103e161109c565b6105386110c0565b6040805160ff9092168252519081900360200190f35b6103e16110c9565b6103e16110d5565b6103e16110db565b6103e16110e1565b61048d611130565b61048d6004803603602081101561058c57600080fd5b50356111e1565b6105c6600480360360208110156105a957600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166112fb565b6040805192835260208301919091528051918290030190f35b6103e1600480360360208110156105f557600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611332565b6103c56004803603604081101561062857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356115e0565b6105c66004803603606081101561066157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602081013590604001356117d3565b6104ff6119d6565b6103e1600480360360208110156106a857600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166119f2565b6103e1600480360360208110156106db57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611a04565b6103e1611a16565b6103e16004803603602081101561071657600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16611a1c565b610317611c40565b6103c56004803603606081101561075157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135611cb8565b6103e1611e52565b6103c56004803603604081101561079c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135611e58565b6103e1611e65565b6103e1611e6b565b6103e1600480360360608110156107e557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135611e77565b6103e1612341565b61048d6004803603602081101561083057600080fd5b5035612347565b61048d6004803603602081101561084d57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16612461565b6105c66125e4565b6104ff612925565b61048d600480360360a081101561089057600080fd5b8101906020810181356401000000008111156108ab57600080fd5b8201836020820111156108bd57600080fd5b803590602001918460018302840111640100000000831117156108df57600080fd5b9193909290916020810190356401000000008111156108fd57600080fd5b82018360208201111561090f57600080fd5b8035906020019184600183028401116401000000008311171561093157600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160409091013516612941565b6103e1612ac7565b61048d600480360360e081101561098257600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135612ad3565b6104ff612b17565b6103e1600480360360408110156109e857600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516612b33565b610a15612b50565b604080517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b61048d612dba565b6000805460408051602060026001851615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f81018490048402820184019092528181529291830182828015610af25780601f10610ac757610100808354040283529160200191610af2565b820191906000526020600020905b815481529060010190602001808311610ad557829003601f168201915b505050505081565b6000610b07338484612e88565b5060015b92915050565b670de0b6b3a764000081565b60035481565b600b5460ff16610b9457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496d7065726d61783a205245454e544552454400000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600a54831115610c2d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f496d7065726d61783a20494e53554646494349454e545f434153480000000000604482015290519081900360640190fd5b610c378484612ef7565b8015610d03576040517facb86cbb0000000000000000000000000000000000000000000000000000000081523360048201818152602483018690526060604484019081526064840185905273ffffffffffffffffffffffffffffffffffffffff88169363acb86cbb93928892889288929190608401848480828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b158015610cea57600080fd5b505af1158015610cfe573d6000803e3d6000fd5b505050505b3060009081526004602052604081205490610d546001610d48610d246110e1565b610d3c89670de0b6b3a764000063ffffffff61310316565b9063ffffffff61317d16565b9063ffffffff6131bf16565b905080821015610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613fdf6024913960400191505060405180910390fd5b610db93083613233565b6040805186815260208101849052815173ffffffffffffffffffffffffffffffffffffffff89169233927f3f693fff038bb8a046aa76d9516190ac7444f7d69cf952c4cbdc086fdef2d6fc929081900390910190a35050610e186132f7565b5050600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555050565b600b5460ff16610eba57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496d7065726d61783a205245454e544552454400000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055610ef681600067011c37937e0800006133cd565b600f8190556040805182815290517f21e5451a492a87031e8324e7e1e2ba821fdec0c40972393c9f74dd38bd88a6af9181900360200190a150600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1461105b57604080518082018252601e81527f496d7065726d61783a205452414e534645525f4e4f545f414c4c4f574544000060208083019190915273ffffffffffffffffffffffffffffffffffffffff8716600090815260058252838120338252909152919091205461102991849063ffffffff6134b816565b73ffffffffffffffffffffffffffffffffffffffff851660009081526005602090815260408083203384529091529020555b611066848484613569565b5060019392505050565b600f54600e54015b90565b600b54610100900473ffffffffffffffffffffffffffffffffffffffff1681565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60025460ff1681565b67011c37937e08000081565b600d5481565b60065481565b600354600a54600091908115806110f6575080155b1561110d57670de0b6b3a764000092505050611078565b61112982610d3c83670de0b6b3a764000063ffffffff61310316565b9250505090565b60095473ffffffffffffffffffffffffffffffffffffffff16156111b557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f496d7065726d61783a20464143544f52595f414c52454144595f534554000000604482015290519081900360640190fd5b600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001633179055565b600b5460ff1661125257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496d7065726d61783a205245454e544552454400000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905561129581670de0b6b3a7640000670e92596fd62900006133cd565b600e8190556040805182815290517f8a9bb9067f9ecb13a322b548e6df3dd1bd10a54698834dac43ed8f0e765bf94d9181900360200190a150600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b600080611329837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff806117d3565b91509150915091565b600b5460009060ff166113a657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496d7065726d61783a205245454e544552454400000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600854604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b15801561143f57600080fd5b505afa158015611453573d6000803e3d6000fd5b505050506040513d602081101561146957600080fd5b5051600a5490915060009061148590839063ffffffff6135e916565b90506114aa6114926110e1565b610d3c83670de0b6b3a764000063ffffffff61310316565b9250600354600014156114d8576114c9836103e863ffffffff6135e916565b92506114d860006103e861362b565b6000831161154757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f496d7065726d61783a204d494e545f414d4f554e545f5a45524f000000000000604482015290519081900360640190fd5b611551848461362b565b6040805182815260208101859052815173ffffffffffffffffffffffffffffffffffffffff87169233927f2f00e3cdd69a77be7ed215ec7b2a36784dd158f921fca79ac29deffa353fe6ee929081900390910190a350506115b06132f7565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055919050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081205480831115611618576000915050610b0b565b8281036000611641670de0b6b3a7640000610d3c6116346110e1565b859063ffffffff61310316565b90506000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634d73e9ba886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156116e457600080fd5b505afa1580156116f8573d6000803e3d6000fd5b505050506040513d602081101561170e57600080fd5b5051600c54604080517f4d73e9ba00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8b8116600483015291519394506000939190921691634d73e9ba916024808301926020929190829003018186803b15801561178957600080fd5b505afa15801561179d573d6000803e3d6000fd5b505050506040513d60208110156117b357600080fd5b5051905060006117c48484846136dc565b159a9950505050505050505050565b6000807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8414156118a657600b54604080517f4d73e9ba00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8881166004830152915161010090930490911691634d73e9ba91602480820192602092909190829003018186803b15801561187757600080fd5b505afa15801561188b573d6000803e3d6000fd5b505050506040513d60208110156118a157600080fd5b505193505b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83141561197057600c54604080517f4d73e9ba00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015291519190921691634d73e9ba916024808301926020929190829003018186803b15801561194157600080fd5b505afa158015611955573d6000803e3d6000fd5b505050506040513d602081101561196b57600080fd5b505192505b60006119bb670de0b6b3a7640000610d3c6119896110e1565b73ffffffffffffffffffffffffffffffffffffffff8a166000908152600460205260409020549063ffffffff61310316565b90506119c88186866136dc565b92509250505b935093915050565b60085473ffffffffffffffffffffffffffffffffffffffff1681565b60046020526000908152604090205481565b60076020526000908152604090205481565b600e5481565b600b5460009060ff16611a9057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496d7065726d61783a205245454e544552454400000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905530600090815260046020526040902054611aec670de0b6b3a7640000610d3c611adf6110e1565b849063ffffffff61310316565b915060008211611b5d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f496d7065726d61783a2052454445454d5f414d4f554e545f5a45524f00000000604482015290519081900360640190fd5b600a54821115611bce57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f496d7065726d61783a20494e53554646494349454e545f434153480000000000604482015290519081900360640190fd5b611bd83082613233565b611be28383612ef7565b6040805183815260208101839052815173ffffffffffffffffffffffffffffffffffffffff86169233927f3f693fff038bb8a046aa76d9516190ac7444f7d69cf952c4cbdc086fdef2d6fc929081900390910190a3506115b06132f7565b60018054604080516020600284861615610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190941693909304601f81018490048402820184019092528181529291830182828015610af25780601f10610ac757610100808354040283529160200191610af2565b600b54600c5460009173ffffffffffffffffffffffffffffffffffffffff6101009091048116918116908516821480611d1c57508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b611d8757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f496d7065726d61783a20494e56414c49445f424f52524f5741424c4500000000604482015290519081900360640190fd5b60008273ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614611de2577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611de4565b845b905060008273ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614611e41577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611e43565b855b905060006117c48984846117d3565b600f5481565b6000610b07338484613569565b600a5481565b670e92596fd629000081565b600b54600090610100900473ffffffffffffffffffffffffffffffffffffffff16331480611ebc5750600c5473ffffffffffffffffffffffffffffffffffffffff1633145b611f2757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f496d7065726d61783a20554e415554484f52495a454400000000000000000000604482015290519081900360640190fd5b6000611f32846112fb565b91505060008111611fa457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f496d7065726d61783a20494e53554646494349454e545f53484f525446414c4c604482015290519081900360640190fd5b600b54600090610100900473ffffffffffffffffffffffffffffffffffffffff16331415611fdc57611fd46125e4565b509050611fe8565b611fe46125e4565b9150505b6000612005611ff56110e1565b610d3c878563ffffffff61310316565b9050612028670de0b6b3a7640000610d3c600e548461310390919063ffffffff16565b93506120b3846040518060400160405280601e81526020017f496d7065726d61783a204c49515549444154494e475f544f4f5f4d5543480000815250600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546134b89092919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff80881660009081526004602052604080822093909355908916815220546120f5908563ffffffff6131bf16565b73ffffffffffffffffffffffffffffffffffffffff80891660008181526004602090815260409182902094909455805188815290519193928a16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3600f5415612337576000612184670de0b6b3a7640000610d3c600f548561310390919063ffffffff16565b90506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663345ef9416040518163ffffffff1660e01b815260040160206040518083038186803b1580156121f057600080fd5b505afa158015612204573d6000803e3d6000fd5b505050506040513d602081101561221a57600080fd5b5051604080518082018252601e81527f496d7065726d61783a204c49515549444154494e475f544f4f5f4d554348000060208281019190915273ffffffffffffffffffffffffffffffffffffffff8c1660009081526004909152919091205491925061228e9190849063ffffffff6134b816565b73ffffffffffffffffffffffffffffffffffffffff808a1660009081526004602052604080822093909355908316815220546122d0908363ffffffff6131bf16565b73ffffffffffffffffffffffffffffffffffffffff80831660008181526004602090815260409182902094909455805186815290519193928c16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505b5050509392505050565b6103e881565b600b5460ff166123b857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496d7065726d61783a205245454e544552454400000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690556123fb81670de0b6b3a76400006715f15565d2c5f0006133cd565b600d8190556040805182815290517fdff9a61839be6f6ce5ea77311cc351786a39a9f337c507ff35e7b358fd39c0439181900360200190a150600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b600b5460ff166124d257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496d7065726d61783a205245454e544552454400000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600a54600854604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290516125b69385936125b193919273ffffffffffffffffffffffffffffffffffffffff909116916370a08231916024808301926020929190829003018186803b15801561257957600080fd5b505afa15801561258d573d6000803e3d6000fd5b505050506040513d60208110156125a357600080fd5b50519063ffffffff6135e916565b612ef7565b50600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60008060006125f1612b50565b9050600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561265e57600080fd5b505afa158015612672573d6000803e3d6000fd5b505050506040513d606081101561268857600080fd5b508051602091820151600854604080517f18160ddd000000000000000000000000000000000000000000000000000000008152905193965091945060009373ffffffffffffffffffffffffffffffffffffffff909116926318160ddd926004808201939291829003018186803b15801561270157600080fd5b505afa158015612715573d6000803e3d6000fd5b505050506040513d602081101561272b57600080fd5b5051905060006127688461273e856137de565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169063ffffffff61380216565b905060006127a77bffffffffffffffffffffffffffffffffffffffffffffffffffffffff80841690610d3c90891664010000000063ffffffff61310316565b905060006127c86127c38364010000000063ffffffff61310316565b613843565b905060006127fb6dffffffffffffffffffffffffffff6002890216610d3c87670de0b6b3a764000063ffffffff61310316565b9050600061282e6dffffffffffffffffffffffffffff6002890216610d3c88670de0b6b3a764000063ffffffff61310316565b9050612849640100000000610d3c848663ffffffff61310316565b9a5061286483610d3c8364010000000063ffffffff61310316565b995060648b116128bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806140036021913960400191505060405180910390fd5b60648a11612918576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806140036021913960400191505060405180910390fd5b5050505050505050509091565b60095473ffffffffffffffffffffffffffffffffffffffff1681565b60095473ffffffffffffffffffffffffffffffffffffffff1633146129c757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f496d7065726d61783a20554e415554484f52495a454400000000000000000000604482015290519081900360640190fd5b612a3a87878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8b01819004810282018101909252898152925089915088908190840183828082843760009201919091525061389592505050565b6008805473ffffffffffffffffffffffffffffffffffffffff9485167fffffffffffffffffffffffff000000000000000000000000000000000000000091821617909155600b8054938516610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff90941693909317909255600c805491909316911617905550505050565b6715f15565d2c5f00081565b612b03878787878787877f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9613979565b612b0e878787612e88565b50505050505050565b600c5473ffffffffffffffffffffffffffffffffffffffff1681565b600560209081526000928352604080842090915290825290205481565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ebeb31db6040518163ffffffff1660e01b815260040160206040518083038186803b158015612bbb57600080fd5b505afa158015612bcf573d6000803e3d6000fd5b505050506040513d6020811015612be557600080fd5b5051600854604080517f252c09d70000000000000000000000000000000000000000000000000000000081527ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe8401600482015290519293506000928392839273ffffffffffffffffffffffffffffffffffffffff9091169163252c09d791602480820192606092909190829003018186803b158015612c8457600080fd5b505afa158015612c98573d6000803e3d6000fd5b505050506040513d6060811015612cae57600080fd5b508051602082015160409283015160085484517f1df8c717000000000000000000000000000000000000000000000000000000008152945193975091955093506000928392839273ffffffffffffffffffffffffffffffffffffffff1691631df8c717916004808301926060929190829003018186803b158015612d3157600080fd5b505afa158015612d45573d6000803e3d6000fd5b505050506040513d6060811015612d5b57600080fd5b508051602082015160409092015190945090925090508581036000612d8a8288870381612d8457fe5b04613c1c565b90506000612d9c8388870381612d8457fe5b9050612dab8261273e836137de565b9a505050505050505050505090565b600b5460ff16612e2b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f496d7065726d61783a205245454e544552454400000000000000000000000000604482015290519081900360640190fd5b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055612e5b6132f7565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b73ffffffffffffffffffffffffffffffffffffffff808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600854604080518082018252601981527f7472616e7366657228616464726573732c75696e743235362900000000000000602091820152815173ffffffffffffffffffffffffffffffffffffffff86811660248301526044808301879052845180840390910181526064909201845291810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001781529251815160009560609594169382918083835b60208310612ffd57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101612fc0565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461305f576040519150601f19603f3d011682016040523d82523d6000602084013e613064565b606091505b5091509150818015613092575080511580613092575080806020019051602081101561308f57600080fd5b50515b6130fd57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f496d7065726d61783a205452414e534645525f4641494c454400000000000000604482015290519081900360640190fd5b50505050565b60008261311257506000610b0b565b8282028284828161311f57fe5b0414613176576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806140766021913960400191505060405180910390fd5b9392505050565b600061317683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613c9f565b60008282018381101561317657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff8216600090815260046020526040902054613269908263ffffffff6135e916565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600460205260409020556003546132a2908263ffffffff6135e916565b60035560408051828152905160009173ffffffffffffffffffffffffffffffffffffffff8516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600854604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905173ffffffffffffffffffffffffffffffffffffffff909216916370a0823191602480820192602092909190829003018186803b15801561336857600080fd5b505afa15801561337c573d6000803e3d6000fd5b505050506040513d602081101561339257600080fd5b5051600a81905560408051918252517f8a0df8ef054fae2c3d2d19a7b322e864870cc9fd3cb07fb9526309c596244bf49181900360200190a1565b6133d5613d1e565b8183101561344457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f496d7065726d61783a20494e56414c49445f53455454494e4700000000000000604482015290519081900360640190fd5b808311156134b357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f496d7065726d61783a20494e56414c49445f53455454494e4700000000000000604482015290519081900360640190fd5b505050565b60008184841115613561576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561352657818101518382015260200161350e565b50505050905090810190601f1680156135535780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b61357383826115e0565b6135de57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f496d7065726d61783a20494e53554646494349454e545f4c4951554944495459604482015290519081900360640190fd5b6134b3838383613e37565b600061317683836040518060400160405280601f81526020017f536166654d6174683a207375627472616374696f6e20756e646572666c6f77008152506134b8565b60035461363e908263ffffffff6131bf16565b60035573ffffffffffffffffffffffffffffffffffffffff8216600090815260046020526040902054613677908263ffffffff6131bf16565b73ffffffffffffffffffffffffffffffffffffffff831660008181526004602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600d54600090819081806136ee6125e4565b90925090506000613711670de0b6b3a7640000610d3c8a8663ffffffff61310316565b90506000613731670de0b6b3a7640000610d3c8a8663ffffffff61310316565b90508082101561373d57905b613759670de0b6b3a7640000610d3c848863ffffffff61310316565b915061377785610d3c83670de0b6b3a764000063ffffffff61310316565b905060006137ae670de0b6b3a7640000610d3c613792611070565b6137a2878763ffffffff6131bf16565b9063ffffffff61310316565b9050808b106137ca578a039650600095506119ce945050505050565b600097508a900395506119ce945050505050565b6dffffffffffffffffffffffffffff166e0100000000000000000000000000000290565b60006dffffffffffffffffffffffffffff82167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff84168161383b57fe5b049392505050565b60006003821115613886575080600160028204015b818110156138805780915060028182858161386f57fe5b04018161387857fe5b049050613858565b50613890565b8115613890575060015b919050565b81516138a8906000906020850190613f50565b5080516138bc906001906020840190613f50565b50604051469080605261402482396040805191829003605201822086516020978801208383018352600184527f310000000000000000000000000000000000000000000000000000000000000093880193909352815180880191909152808201929092527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606083015260808201939093523060a0808301919091528351808303909101815260c090910190925250805192019190912060065550565b428510156139e857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f496d7065726d61783a2045585049524544000000000000000000000000000000604482015290519081900360640190fd5b60065473ffffffffffffffffffffffffffffffffffffffff808a1660008181526007602090815260408083208054600180820190925582518085018a905280840196909652958e166060860152608085018d905260a085019590955260c08085018c90528151808603909101815260e0850182528051908301207f19010000000000000000000000000000000000000000000000000000000000006101008601526101028501969096526101228085019690965280518085039096018652610142840180825286519683019690962095839052610162840180825286905260ff8a166101828501526101a284018990526101c28401889052519193926101e2808201937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081019281900390910190855afa158015613b2a573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811615801590613ba557508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b613c1057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f496d7065726d61783a20494e56414c49445f5349474e41545552450000000000604482015290519081900360640190fd5b50505050505050505050565b60006e0100000000000000000000000000008210613c9b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f496d7065726d61783a2053414645313132000000000000000000000000000000604482015290519081900360640190fd5b5090565b60008183613d08576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181815283516024840152835190928392604490910191908501908083836000831561352657818101518382015260200161350e565b506000838581613d1457fe5b0495945050505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f851a4406040518163ffffffff1660e01b815260040160206040518083038186803b158015613d8657600080fd5b505afa158015613d9a573d6000803e3d6000fd5b505050506040513d6020811015613db057600080fd5b505173ffffffffffffffffffffffffffffffffffffffff163314613e3557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f496d7065726d61783a20554e415554484f52495a454400000000000000000000604482015290519081900360640190fd5b565b604080518082018252601b81527f496d7065726d61783a205452414e534645525f544f4f5f48494748000000000060208083019190915273ffffffffffffffffffffffffffffffffffffffff8616600090815260049091529190912054613ea591839063ffffffff6134b816565b73ffffffffffffffffffffffffffffffffffffffff8085166000908152600460205260408082209390935590841681522054613ee7908263ffffffff6131bf16565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526004602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613f9157805160ff1916838001178555613fbe565b82800160010185558215613fbe579182015b82811115613fbe578251825591602001919060010190613fa3565b50613c9b926110789250905b80821115613c9b5760008155600101613fca56fe496d7065726d61783a20494e53554646494349454e545f52454445454d5f544f4b454e53496d7065726d61783a2050524943455f43414c43554c4154494f4e5f4552524f52454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a265627a7a72315820c8027b896dc95e8f0d34f60357066d8f7ac56194c9501ad5250332804ebd2b8764736f6c63430005100032
Deployed Bytecode Sourcemap
34329:6863:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34329:6863:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6938:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6938:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8621:132;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8621:132:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;19384:53;;;:::i;:::-;;;;;;;;;;;;;;;;7014:23;;;:::i;40473:716::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40473:716:0;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;40473:716:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40473:716:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;40473:716:0;;-1:-1:-1;40473:716:0;-1:-1:-1;40473:716:0;:::i;:::-;;20909:225;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20909:225:0;;:::i;8887:299::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8887:299:0;;;;;;;;;;;;;;;;;;:::i;16921:111::-;;;:::i;16693:26::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9863:108;;;:::i;6984:26::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19680:50;;;:::i;16753:44::-;;;:::i;7154:31::-;;;:::i;13995:287::-;;;:::i;13705:130::-;;;:::i;20607:297::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20607:297:0;;:::i;38401:162::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38401:162:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14356:591;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14356:591:0;;;;:::i;37411:499::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37411:499:0;;;;;;;;;:::i;37942:453::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37942:453:0;;;;;;;;;;;;;;:::i;13276:25::-;;;:::i;7041:41::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7041:41:0;;;;:::i;7189:38::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7189:38:0;;;;:::i;16822:42::-;;;:::i;15020:493::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15020:493:0;;;;:::i;6960:20::-;;;:::i;38569:537::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38569:537:0;;;;;;;;;;;;;;;;;;:::i;16873:36::-;;;:::i;8758:124::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8758:124:0;;;;;;;;;:::i;13331:24::-;;;:::i;19613:56::-;;;:::i;39178:1222::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39178:1222:0;;;;;;;;;;;;;;;;;;:::i;13359:45::-;;;:::i;20343:259::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20343:259:0;;:::i;15564:138::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15564:138:0;;;;:::i;35272:1188::-;;;:::i;13305:22::-;;;:::i;19967:371::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;19967:371:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;19967:371:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;19967:371:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;19967:371:0;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;19967:371:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;19967:371:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;19967:371:0;;-1:-1:-1;19967:371:0;-1:-1:-1;19967:371:0;;;;;;;;;;;;;;;;;;;;:::i;19462:59::-;;;:::i;9975:235::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;9975:235:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;16723:26::-;;;:::i;7086:61::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7086:61:0;;;;;;;;;;;:::i;34505:759::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15753:47;;;:::i;6938:18::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;8621:132::-;8685:4;8696:36;8705:10;8717:7;8726:5;8696:8;:36::i;:::-;-1:-1:-1;8744:4:0;8621:132;;;;;:::o;19384:53::-;19430:7;19384:53;:::o;7014:23::-;;;;:::o;40473:716::-;16411:11;;;;16403:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16451:11;:19;;;;;;40610:12;;40594:28;;;40586:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40699:37;40713:8;40723:12;40699:13;:37::i;:::-;40745:15;;40741:93;;40762:72;;;;;40803:10;40762:72;;;;;;;;;;;;;;;;;;;;;;;;;:40;;;;;;40803:10;40815:12;;40829:4;;;;40762:72;;;;40829:4;;;;40762:72;1:33:-1;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;40762:72:0;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40762:72:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40762:72:0;;;;40741:93;40881:4;40843:17;40863:24;;;:9;:24;;;;;;;40920:51;40969:1;40920:44;40948:14;:12;:14::i;:::-;40920:22;:12;40937:4;40920:22;:16;:22;:::i;:::-;:26;:44;:26;:44;:::i;:::-;:48;:51;:48;:51;:::i;:::-;40892:79;;41014:20;40998:12;:36;;40990:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41084:34;41098:4;41105:12;41084:5;:34::i;:::-;41128:56;;;;;;;;;;;;;;;;;;41135:10;;41128:56;;;;;;;;;;;16579:1;;16585:9;:7;:9::i;:::-;-1:-1:-1;;16481:11:0;:18;;;;16495:4;16481:18;;;-1:-1:-1;;40473:716:0:o;20909:225::-;16411:11;;;;16403:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16451:11;:19;;;;;;20988:56;21002:17;16465:5;19723:7;20988:13;:56::i;:::-;21049:14;:34;;;21093:36;;;;;;;;;;;;;;;;;-1:-1:-1;16481:11:0;:18;;;;16495:4;16481:18;;;20909:225::o;8887:299::-;8980:15;;;8965:4;8980:15;;;:9;:15;;;;;;;;8996:10;8980:27;;;;;;;;9016:2;8980:39;8976:159;;9057:72;;;;;;;;;;;;;;;;;;;;:15;;;-1:-1:-1;9057:15:0;;;:9;:15;;;;;9073:10;9057:27;;;;;;;;;;:72;;9089:5;;9057:72;:31;:72;:::i;:::-;9027:15;;;;;;;:9;:15;;;;;;;;9043:10;9027:27;;;;;;;:102;8976:159;9139:26;9149:4;9155:2;9159:5;9139:9;:26::i;:::-;-1:-1:-1;9177:4:0;8887:299;;;;;:::o;16921:111::-;17013:14;;16990:20;;:37;16921:111;;:::o;16693:26::-;;;;;;;;;:::o;9863:108::-;9905:66;9863:108;:::o;6984:26::-;;;;;;:::o;19680:50::-;19723:7;19680:50;:::o;16753:44::-;;;;:::o;7154:31::-;;;;:::o;13995:287::-;14069:11;;14121:12;;14035:4;;14069:11;14157:17;;;:39;;-1:-1:-1;14178:18:0;;14157:39;14153:71;;;13268:4;14198:26;;;;;;14153:71;14236:41;14264:12;14236:23;:13;14254:4;14236:23;:17;:23;:::i;:41::-;14229:48;;;;13995:287;:::o;13705:130::-;13750:7;;:21;:7;:21;13742:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13810:7;:20;;;;13820:10;13810:20;;;13705:130::o;20607:297::-;16411:11;;;;16403:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16451:11;:19;;;;;;20698:92;20712:23;19595:7;19662;20698:13;:92::i;:::-;20795:20;:46;;;20851:48;;;;;;;;;;;;;;;;;-1:-1:-1;16481:11:0;:18;;;;16495:4;16481:18;;;20607:297::o;38401:162::-;38461:14;38477;38505:53;38529:8;38544:2;38554;38505:23;:53::i;:::-;38498:60;;;;38401:162;;;:::o;14356:591::-;16411:11;;14424:15;;16411:11;;16403:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16451:11;:19;;;;;;14468:10;;14461:43;;;;;;14498:4;14461:43;;;;;;16465:5;;14468:10;;;14461:28;;:43;;;;;;;;;;;;;;14468:10;14461:43;;;5:2:-1;;;;30:1;27;20:12;5:2;14461:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;14461:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14461:43:0;14539:12;;14461:43;;-1:-1:-1;14509:15:0;;14527:25;;14461:43;;14527:25;:11;:25;:::i;:::-;14509:43;;14570:40;14595:14;:12;:14::i;:::-;14570:20;:10;14585:4;14570:20;:14;:20;:::i;:40::-;14557:53;;14620:11;;14635:1;14620:16;14617:180;;;14716:33;:10;13400:4;14716:33;:14;:33;:::i;:::-;14703:46;;14755:36;14769:1;13400:4;14755:5;:36::i;:::-;14822:1;14809:10;:14;14801:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14859:25;14865:6;14873:10;14859:5;:25::i;:::-;14894:48;;;;;;;;;;;;;;;;;;14899:10;;14894:48;;;;;;;;;;;16579:1;;16585:9;:7;:9::i;:::-;16481:11;:18;;;;16495:4;16481:18;;;14356:591;;-1:-1:-1;14356:591:0:o;37411:499::-;37504:15;;;37477:4;37504:15;;;:9;:15;;;;;;37528:16;;;37524:34;;;37553:5;37546:12;;;;;37524:34;37583:16;;;37563:17;37628:42;37665:4;37628:32;37645:14;:12;:14::i;:::-;37628:12;;:32;:16;:32;:::i;:42::-;37604:66;;37675:12;37702:11;;;;;;;;;;;37690:38;;;37729:4;37690:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37690:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37690:44:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37690:44:0;37766:11;;37754:44;;;;;;37766:11;37754:44;;;;;;;;;37690;;-1:-1:-1;37739:12:0;;37766:11;;;;;37754:38;;:44;;;;;37690;;37754;;;;;;;37766:11;37754:44;;;5:2:-1;;;;30:1;27;20:12;5:2;37754:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37754:44:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37754:44:0;;-1:-1:-1;37806:14:0;37824:55;37844:16;37862:7;37754:44;37824:19;:55::i;:::-;37891:14;;37411:499;-1:-1:-1;;;;;;;;;;37411:499:0:o;37942:453::-;38037:14;38053;38094:2;38078:7;:19;38074:83;;;38121:11;;38109:48;;;;;;38121:11;38109:48;;;;;;;;;38121:11;;;;;;;;38109:38;;:48;;;;;;;;;;;;;;;38121:11;38109:48;;;5:2:-1;;;;30:1;27;20:12;5:2;38109:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38109:48:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38109:48:0;;-1:-1:-1;38074:83:0;38182:2;38166:7;:19;38162:83;;;38209:11;;38197:48;;;;;;38209:11;38197:48;;;;;;;;;38209:11;;;;;38197:38;;:48;;;;;;;;;;;;;;38209:11;38197:48;;;5:2:-1;;;;30:1;27;20:12;5:2;38197:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38197:48:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38197:48:0;;-1:-1:-1;38162:83:0;38250:21;38274:49;38318:4;38274:39;38298:14;:12;:14::i;:::-;38274:19;;;;;;;:9;:19;;;;;;;:39;:23;:39;:::i;:49::-;38250:73;;38335:55;38355:16;38373:7;38382;38335:19;:55::i;:::-;38328:62;;;;;37942:453;;;;;;;:::o;13276:25::-;;;;;;:::o;7041:41::-;;;;;;;;;;;;;:::o;7189:38::-;;;;;;;;;;;;;:::o;16822:42::-;;;;:::o;15020:493::-;16411:11;;15092:17;;16411:11;;16403:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16451:11;:19;;;;;;15154:4;16465:5;15136:24;;;:9;:24;;;;;;15180:42;15217:4;15180:32;15197:14;:12;:14::i;:::-;15180:12;;:32;:16;:32;:::i;:42::-;15165:57;;15252:1;15237:12;:16;15229:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15315:12;;15299;:28;;15291:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15364:34;15378:4;15385:12;15364:5;:34::i;:::-;15403:37;15417:8;15427:12;15403:13;:37::i;:::-;15450:56;;;;;;;;;;;;;;;;;;15457:10;;15450:56;;;;;;;;;;;16579:1;16585:9;:7;:9::i;6960:20::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38569:537;38697:11;;38736;;38663:4;;38697:11;;;;;;;;38736;;;38760:26;;;;;:56;;;38804:12;38790:26;;:10;:26;;;38760:56;38752:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38855:12;38884;38870:26;;:10;:26;;;:54;;38921:2;38870:54;;;38899:14;38870:54;38855:69;;38929:12;38958;38944:26;;:10;:26;;;:54;;38995:2;38944:54;;;38973:14;38944:54;38929:69;;39006:14;39024:51;39048:8;39058:7;39067;39024:23;:51::i;16873:36::-;;;;:::o;8758:124::-;8818:4;8829:32;8839:10;8851:2;8855:5;8829:9;:32::i;13331:24::-;;;;:::o;19613:56::-;19662:7;19613:56;:::o;39178:1222::-;39312:11;;39267:16;;39312:11;;;;;39298:10;:25;;:54;;-1:-1:-1;39341:11:0;;;;39327:10;:25;39298:54;39290:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39391:14;39409:26;39426:8;39409:16;:26::i;:::-;39388:47;;;39460:1;39448:9;:13;39440:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39540:11;;39507:10;;39540:11;;;;;39526:10;:25;39522:88;;;39565:11;:9;:11::i;:::-;-1:-1:-1;39553:23:0;-1:-1:-1;39522:88:0;;;39599:11;:9;:11::i;:::-;39587:23;-1:-1:-1;;39522:88:0;39619:25;39647:44;39675:14;:12;:14::i;:::-;39647:22;:11;39663:5;39647:22;:15;:22;:::i;:44::-;39619:72;;39714:56;39765:4;39714:46;39739:20;;39714;:24;;:46;;;;:::i;:56::-;39700:70;;39799;39823:11;39799:70;;;;;;;;;;;;;;;;;:9;:19;39809:8;39799:19;;;;;;;;;;;;;;;;:23;;:70;;;;;:::i;:::-;39777:19;;;;;;;;:9;:19;;;;;;:92;;;;39898:21;;;;;;;:38;;39924:11;39898:38;:25;:38;:::i;:::-;39874:21;;;;;;;;:9;:21;;;;;;;;;:62;;;;39946:43;;;;;;;39874:21;;39946:43;;;;;;;;;;;;;40002:14;;:18;39998:398;;40028:13;40044:50;40089:4;40044:40;40069:14;;40044:20;:24;;:40;;;;:::i;:50::-;40028:66;;40103:23;40138:7;;;;;;;;;;;40129:33;;;:35;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40129:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;40129:35:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40129:35:0;40192:67;;;;;;;;;;;;40129:35;40192:67;;;;;;;:19;;;-1:-1:-1;40192:19:0;;;:9;:19;;;;;;;;40129:35;;-1:-1:-1;40192:67:0;;:19;40216:8;;40192:67;:23;:67;:::i;:::-;40170:19;;;;;;;;:9;:19;;;;;;:89;;;;40294:26;;;;;;;:40;;40325:8;40294:40;:30;:40;:::i;:::-;40265:26;;;;;;;;:9;:26;;;;;;;;;:69;;;;40345:45;;;;;;;40265:26;;40345:45;;;;;;;;;;;;;39998:398;;;39178:1222;;;;;;;;:::o;13359:45::-;13400:4;13359:45;:::o;20343:259::-;16411:11;;;;16403:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16451:11;:19;;;;;;20426:82;20440:19;19430:7;19508:13;20426;:82::i;:::-;20513:16;:38;;;20561:36;;;;;;;;;;;;;;;;;-1:-1:-1;16481:11:0;:18;;;;16495:4;16481:18;;;20343:259::o;15564:138::-;16411:11;;;;16403:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16451:11;:19;;;;;;15683:12;;15642:10;;15635:43;;;;;;15672:4;15635:43;;;;;;15617:80;;15631:2;;15635:61;;15683:12;;15642:10;;;;;15635:28;;:43;;;;;;;;;;;;;;15642:10;15635:43;;;5:2:-1;;;;30:1;27;20:12;5:2;15635:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15635:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15635:43:0;;:61;:47;:61;:::i;:::-;15617:13;:80::i;:::-;-1:-1:-1;16481:11:0;:18;;;;16495:4;16481:18;;;15564:138::o;35272:1188::-;35309:11;35322;35340:24;35367:21;:19;:21::i;:::-;35340:48;;35396:16;35414;35450:10;;;;;;;;;;;35435:38;;;:40;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35435:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35435:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35435:40:0;;;;;;;35527:10;;35435:40;35512;;;;;;;35435;;-1:-1:-1;35435:40:0;;-1:-1:-1;35480:29:0;;35527:10;;;;;35512:38;;:40;;;;;35435;35512;;;;;;35527:10;35512:40;;;5:2:-1;;;;30:1;27;20:12;5:2;35512:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35512:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35512:40:0;;-1:-1:-1;35561:27:0;35591:42;35624:8;35591:26;35608:8;35591:16;:26::i;:::-;:32;;;:42;:32;:42;:::i;:::-;35561:72;-1:-1:-1;35638:25:0;35666:61;;;;;;:36;;:25;;35696:5;35666:36;:29;:36;:::i;:61::-;35638:89;-1:-1:-1;35732:18:0;35753:39;35763:28;35638:89;35785:5;35763:28;:21;:28;:::i;:::-;35753:9;:39::i;:::-;35732:60;-1:-1:-1;35799:31:0;35833:56;;35887:1;35878:10;;35833:56;:40;35841:21;35868:4;35833:40;:34;:40;:::i;:56::-;35799:90;-1:-1:-1;35894:31:0;35928:56;;35982:1;35973:10;;35928:56;:40;35936:21;35963:4;35928:40;:34;:40;:::i;:56::-;35894:90;-1:-1:-1;36002:50:0;36046:5;36002:39;:23;36030:10;36002:39;:27;:39;:::i;:50::-;35993:59;-1:-1:-1;36066:50:0;36105:10;36066:34;:23;36094:5;36066:34;:27;:34;:::i;:50::-;36057:59;;36351:3;36342:6;:12;36334:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36414:3;36405:6;:12;36397:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35272:1188;;;;;;;;;;;:::o;13305:22::-;;;;;;:::o;19967:371::-;20159:7;;;;20145:10;:21;20137:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20218:24;20227:5;;20218:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;;20218:24:0;;;;137:4:-1;20218:24:0;;;;;;;;;;;;;;;;;;-1:-1:-1;20234:7:0;;-1:-1:-1;20234:7:0;;;;20218:24;;20234:7;;;;20218:24;1:33:-1;99:1;81:16;;74:27;;;;-1:-1;20218:8:0;;-1:-1:-1;;;20218:24:0:i;:::-;20247:10;:24;;;;;;;;;;;;;;20276:11;:26;;;;;20247:24;20276:26;;;;;;;;;;;;20307:11;:26;;;;;;;;;;;-1:-1:-1;;;;19967:371:0:o;19462:59::-;19508:13;19462:59;:::o;9975:235::-;10095:74;10111:5;10118:7;10127:5;10134:8;10144:1;10147;10150;9905:66;10095:15;:74::i;:::-;10174:31;10183:5;10190:7;10199:5;10174:8;:31::i;:::-;9975:235;;;;;;;:::o;16723:26::-;;;;;;:::o;7086:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;34505:759::-;34551:24;34588:11;34617:10;;;;;;;;;;;34602:44;;;:46;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34602:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34602:46:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34602:46:0;34755:10;;34740:49;;;;;;34780:8;;;34740:49;;;;;;34602:46;;-1:-1:-1;34660:18:0;;;;;;34755:10;;;;;34740:39;;:49;;;;;;;;;;;;;;;34755:10;34740:49;;;5:2:-1;;;;30:1;27;20:12;5:2;34740:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34740:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34740:49:0;;;;;;;;;;;34884:10;;34869:52;;;;;;;34740:49;;-1:-1:-1;34740:49:0;;-1:-1:-1;34740:49:0;-1:-1:-1;34801:23:0;;;;;;34884:10;;;34869:50;;:52;;;;;34740:49;;34869:52;;;;;;;34884:10;34869:52;;;5:2:-1;;;;30:1;27;20:12;5:2;34869:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;34869:52:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34869:52:0;;;;;;;;;;;;;-1:-1:-1;34869:52:0;;-1:-1:-1;34869:52:0;-1:-1:-1;34951:25:0;;;34932:16;35010:68;34951:25;35019:43;;;34951:25;35018:59;;;;;35010:7;:68::i;:::-;34987:91;;35089:20;35112:68;35168:11;35142:22;35121:18;:43;35120:59;;;;35112:68;35089:91;;35205:50;35242:12;35205:30;35222:12;35205:16;:30::i;:50::-;35186:69;;34505:759;;;;;;;;;;;:::o;15753:47::-;16411:11;;;;16403:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16451:11;:19;;;;;;16585:9;:7;:9::i;:::-;16481:11;:18;;;;16495:4;16481:18;;;15753:47::o;8226:154::-;8301:16;;;;;;;;:9;:16;;;;;;;;:25;;;;;;;;;;;;;:33;;;8344:31;;;;;;;;;;;;;;;;;8226:154;;;:::o;15998:264::-;16096:10;;15958:34;;;;;;;;;;;;;;;;;16112:44;;16096:10;16112:44;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;16112:44:0;;;;;;25:18:-1;;;61:17;;16112:44:0;182:15:-1;16112:44:0;179:29:-1;160:49;;16096:61:0;;;;16061:12;;16075:17;;16096:10;;;:61;;;;25:18:-1;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;139:12;;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;16096:61:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;16060:97:0;;;;16170:7;:57;;;;-1:-1:-1;16182:11:0;;:16;;:44;;;16213:4;16202:24;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16202:24:0;16182:44;16162:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15998:264;;;;:::o;2785:471::-;2843:7;3088:6;3084:47;;-1:-1:-1;3118:1:0;3111:8;;3084:47;3155:5;;;3159:1;3155;:5;:1;3179:5;;;;;:10;3171:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3247:1;2785:471;-1:-1:-1;;;2785:471:0:o;4443:132::-;4501:7;4528:39;4532:1;4535;4528:39;;;;;;;;;;;;;;;;;:3;:39::i;1031:181::-;1089:7;1121:5;;;1145:6;;;;1137:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8033:188;8106:15;;;;;;;:9;:15;;;;;;:26;;8126:5;8106:26;:19;:26;:::i;:::-;8088:15;;;;;;;:9;:15;;;;;:44;8151:11;;:22;;8167:5;8151:22;:15;:22;:::i;:::-;8137:11;:36;8183:33;;;;;;;;8206:1;;8183:33;;;;;;;;;;;;;8033:188;;:::o;13866:124::-;13921:10;;13914:43;;;;;;13951:4;13914:43;;;;;;13921:10;;;;;13914:28;;:43;;;;;;;;;;;;;;;13921:10;13914:43;;;5:2:-1;;;;30:1;27;20:12;5:2;13914:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;13914:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13914:43:0;13899:12;:58;;;13967:18;;;;;;;;;;;;13914:43;13967:18;;;13866:124::o;21140:214::-;21218:13;:11;:13::i;:::-;21257:3;21244:9;:16;;21236:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21316:3;21303:9;:16;;21295:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21140:214;;;:::o;2350:192::-;2436:7;2472:12;2464:6;;;;2456:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2456:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2508:5:0;;;2350:192::o;37220:185::-;37299:27;37314:4;37320:5;37299:14;:27::i;:::-;37291:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37368:32;37384:4;37390:2;37394:5;37368:15;:32::i;1924:137::-;1982:7;2009:44;2013:1;2016;2009:44;;;;;;;;;;;;;;;;;:3;:44::i;7848:180::-;7915:11;;:22;;7931:5;7915:22;:15;:22;:::i;:::-;7901:11;:36;7958:13;;;;;;;:9;:13;;;;;;:24;;7976:5;7958:24;:17;:24;:::i;:::-;7942:13;;;;;;;:9;:13;;;;;;;;:40;;;;7992:31;;;;;;;7942:13;;;;7992:31;;;;;;;;;;7848:180;;:::o;36517:677::-;36677:16;;36615:14;;;;;;36727:11;:9;:11::i;:::-;36698:40;;-1:-1:-1;36698:40:0;-1:-1:-1;36747:6:0;36756:29;36780:4;36756:19;:7;36698:40;36756:19;:11;:19;:::i;:29::-;36747:38;-1:-1:-1;36790:6:0;36799:29;36823:4;36799:19;:7;36811:6;36799:19;:11;:19;:::i;:29::-;36790:38;;36840:1;36836;:5;36833:25;;;36853:1;36833:25;36867:34;36896:4;36867:24;:1;36873:17;36867:24;:5;:24;:::i;:34::-;36863:38;-1:-1:-1;36910:34:0;36926:17;36910:11;:1;36916:4;36910:11;:5;:11;:::i;:34::-;36906:38;;36949:21;36973:44;37012:4;36973:34;36986:20;:18;:20::i;:::-;36973:8;:1;36979;36973:8;:5;:8;:::i;:::-;:12;:34;:12;:34;:::i;:44::-;36949:68;;37049:16;37029;:36;37026:164;;37080:35;;;-1:-1:-1;37117:1:0;;-1:-1:-1;37072:47:0;;-1:-1:-1;;;;;37072:47:0;37026:164;37145:1;;-1:-1:-1;37148:35:0;;;;-1:-1:-1;37137:47:0;;-1:-1:-1;;;;;37137:47:0;33167:120;33243:10;;33112:6;33243:17;;33167:120::o;33358:108::-;33418:9;33448:10;;;33444:14;;;33448:10;33444:14;;;;;;33358:108;-1:-1:-1;;;33358:108:0:o;33932:303::-;33977:6;34004:1;34000;:5;33996:232;;;-1:-1:-1;34026:1:0;34059;34055;34051:5;;:9;34075:92;34086:1;34082;:5;34075:92;;;34112:1;34108:5;;34150:1;34145;34141;34137;:5;;;;;;:9;34136:15;;;;;;34132:19;;34075:92;;;33996:232;;;;34188:6;;34184:44;;-1:-1:-1;34215:1:0;34184:44;33932:303;;;:::o;7416:427::-;7492:12;;;;:4;;:12;;;;;:::i;:::-;-1:-1:-1;7509:16:0;;;;:6;;:16;;;;;:::i;:::-;-1:-1:-1;7640:95:0;;7573:7;;7640:95;;;;;;;;;;;;;;;;7742:23;;;;;;;7782:10;;;;;;;;;;;;;;;;7623:210;;;;;;;;;;;;;;;;7772:21;7623:210;;;;;;;;;;;7822:4;7623:210;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;7623:210:0;;;;;;;-1:-1:-1;7608:230:0;;;;;;;;7589:16;:249;-1:-1:-1;7416:427:0:o;9192:564::-;9359:15;9347:8;:27;;9339:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9473:16;;9550:13;;;;9401:14;9550:13;;;:6;:13;;;;;;;;:15;;;;;;;;;9506:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;9506:70:0;;;;;9496:81;;;;;;9433:150;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;9433:150:0;;;;;;9418:170;;;;;;;;;9620:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9401:14;;9550:15;9620:26;;;;;-1:-1:-1;9620:26:0;;;;;;;;;;9550:15;9620:26;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;9620:26:0;;;;;;-1:-1:-1;;9659:30:0;;;;;;;:59;;;9713:5;9693:25;;:16;:25;;;9659:59;9651:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9192:564;;;;;;;;;;:::o;17040:144::-;17088:7;17120:6;17116:1;:10;17108:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17174:1:0;17040:144::o;5063:345::-;5149:7;5251:12;5244:5;5236:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;5236:28:0;;5275:9;5291:1;5287;:5;;;;;;;5063:345;-1:-1:-1;;;;;5063:345:0:o;21360:121::-;21433:7;;;;;;;;;;;21424:23;;;:25;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21424:25:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21424:25:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21424:25:0;21410:39;;:10;:39;21402:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21360:121::o;8385:231::-;8474:57;;;;;;;;;;;;;;;;;;;;:15;;;-1:-1:-1;8474:15:0;;;:9;:15;;;;;;;;:57;;8494:5;;8474:57;:19;:57;:::i;:::-;8456:15;;;;;;;;:9;:15;;;;;;:75;;;;8552:13;;;;;;;:24;;8570:5;8552:24;:17;:24;:::i;:::-;8536:13;;;;;;;;:9;:13;;;;;;;;;:40;;;;8586:25;;;;;;;8536:13;;8586:25;;;;;;;;;;;;;8385:231;;;:::o;34329:6863::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34329:6863:0;;;;-1:-1:-1;34329:6863:0;;;;;;;;;;;;;;
Swarm Source
bzzr://c8027b896dc95e8f0d34f60357066d8f7ac56194c9501ad5250332804ebd2b87
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.