Overview
POL Balance
POL Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Vyper_contract
Compiler Version
vyper:0.2.15
Contract Source Code (Vyper language format)
# @version 0.2.15 """ @title StableSwap @author Curve.Fi @license Copyright (c) Curve.Fi, 2020-2021 - all rights reserved @notice 4 coin pool implementation with no lending @dev ERC20 support for return True/revert, return True/False, return None """ from vyper.interfaces import ERC20 interface Factory: def convert_fees() -> bool: nonpayable def get_fee_receiver(_pool: address) -> address: view def admin() -> address: view event Transfer: sender: indexed(address) receiver: indexed(address) value: uint256 event Approval: owner: indexed(address) spender: indexed(address) value: uint256 event TokenExchange: buyer: indexed(address) sold_id: int128 tokens_sold: uint256 bought_id: int128 tokens_bought: uint256 event AddLiquidity: provider: indexed(address) token_amounts: uint256[N_COINS] fees: uint256[N_COINS] invariant: uint256 token_supply: uint256 event RemoveLiquidity: provider: indexed(address) token_amounts: uint256[N_COINS] fees: uint256[N_COINS] token_supply: uint256 event RemoveLiquidityOne: provider: indexed(address) token_amount: uint256 coin_amount: uint256 token_supply: uint256 event RemoveLiquidityImbalance: provider: indexed(address) token_amounts: uint256[N_COINS] fees: uint256[N_COINS] invariant: uint256 token_supply: uint256 event RampA: old_A: uint256 new_A: uint256 initial_time: uint256 future_time: uint256 event StopRampA: A: uint256 t: uint256 N_COINS: constant(int128) = 4 PRECISION: constant(uint256) = 10 ** 18 FEE_DENOMINATOR: constant(uint256) = 10 ** 10 ADMIN_FEE: constant(uint256) = 5000000000 A_PRECISION: constant(uint256) = 100 MAX_A: constant(uint256) = 10 ** 6 MAX_A_CHANGE: constant(uint256) = 10 MIN_RAMP_TIME: constant(uint256) = 86400 factory: address coins: public(address[N_COINS]) balances: public(uint256[N_COINS]) fee: public(uint256) # fee * 1e10 initial_A: public(uint256) future_A: public(uint256) initial_A_time: public(uint256) future_A_time: public(uint256) rate_multipliers: uint256[N_COINS] name: public(String[64]) symbol: public(String[32]) balanceOf: public(HashMap[address, uint256]) allowance: public(HashMap[address, HashMap[address, uint256]]) totalSupply: public(uint256) @external def __init__(): # we do this to prevent the implementation contract from being used as a pool self.fee = 31337 @external def initialize( _name: String[32], _symbol: String[10], _coins: address[4], _rate_multipliers: uint256[4], _A: uint256, _fee: uint256, ): """ @notice Contract constructor @param _name Name of the new pool @param _symbol Token symbol @param _coins List of all ERC20 conract addresses of coins @param _rate_multipliers List of number of decimals in coins @param _A Amplification coefficient multiplied by n ** (n - 1) @param _fee Fee to charge for exchanges """ # check if fee was already set to prevent initializing contract twice assert self.fee == 0 for i in range(N_COINS): coin: address = _coins[i] if coin == ZERO_ADDRESS: break self.coins[i] = coin self.rate_multipliers[i] = _rate_multipliers[i] A: uint256 = _A * A_PRECISION self.initial_A = A self.future_A = A self.fee = _fee self.factory = msg.sender self.name = concat("Curve.fi Factory Plain Pool: ", _name) self.symbol = concat(_symbol, "-f") # fire a transfer event so block explorers identify the contract as an ERC20 log Transfer(ZERO_ADDRESS, self, 0) ### ERC20 Functionality ### @view @external def decimals() -> uint256: """ @notice Get the number of decimals for this token @dev Implemented as a view method to reduce gas costs @return uint256 decimal places """ return 18 @internal def _transfer(_from: address, _to: address, _value: uint256): # # NOTE: vyper does not allow underflows # # so the following subtraction would revert on insufficient balance self.balanceOf[_from] -= _value self.balanceOf[_to] += _value log Transfer(_from, _to, _value) @external def transfer(_to : address, _value : uint256) -> bool: """ @dev Transfer token for a specified address @param _to The address to transfer to. @param _value The amount to be transferred. """ self._transfer(msg.sender, _to, _value) return True @external def transferFrom(_from : address, _to : address, _value : uint256) -> bool: """ @dev Transfer tokens from one address to another. @param _from address The address which you want to send tokens from @param _to address The address which you want to transfer to @param _value uint256 the amount of tokens to be transferred """ self._transfer(_from, _to, _value) _allowance: uint256 = self.allowance[_from][msg.sender] if _allowance != MAX_UINT256: self.allowance[_from][msg.sender] = _allowance - _value return True @external def approve(_spender : address, _value : uint256) -> bool: """ @notice Approve the passed address to transfer the specified amount of tokens on behalf of msg.sender @dev Beware that changing an allowance via this method brings the risk that someone may use both the old and new allowance by unfortunate transaction ordering: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 @param _spender The address which will transfer the funds @param _value The amount of tokens that may be transferred @return bool success """ self.allowance[msg.sender][_spender] = _value log Approval(msg.sender, _spender, _value) return True ### StableSwap Functionality ### @view @external def get_balances() -> uint256[N_COINS]: return self.balances @view @internal def _A() -> uint256: """ Handle ramping A up or down """ t1: uint256 = self.future_A_time A1: uint256 = self.future_A if block.timestamp < t1: A0: uint256 = self.initial_A t0: uint256 = self.initial_A_time # Expressions in uint256 cannot have negative numbers, thus "if" if A1 > A0: return A0 + (A1 - A0) * (block.timestamp - t0) / (t1 - t0) else: return A0 - (A0 - A1) * (block.timestamp - t0) / (t1 - t0) else: # when t1 == 0 or block.timestamp >= t1 return A1 @view @external def admin_fee() -> uint256: return ADMIN_FEE @view @external def A() -> uint256: return self._A() / A_PRECISION @view @external def A_precise() -> uint256: return self._A() @pure @internal def _xp_mem(_rates: uint256[N_COINS], _balances: uint256[N_COINS]) -> uint256[N_COINS]: result: uint256[N_COINS] = empty(uint256[N_COINS]) for i in range(N_COINS): result[i] = _rates[i] * _balances[i] / PRECISION return result @pure @internal def get_D(_xp: uint256[N_COINS], _amp: uint256) -> uint256: """ D invariant calculation in non-overflowing integer operations iteratively A * sum(x_i) * n**n + D = A * D * n**n + D**(n+1) / (n**n * prod(x_i)) Converging solution: D[j+1] = (A * n**n * sum(x_i) - D[j]**(n+1) / (n**n prod(x_i))) / (A * n**n - 1) """ S: uint256 = 0 Dprev: uint256 = 0 for x in _xp: S += x if S == 0: return 0 D: uint256 = S Ann: uint256 = _amp * N_COINS for i in range(255): D_P: uint256 = D for x in _xp: D_P = D_P * D / (x * N_COINS) # If division by 0, this will be borked: only withdrawal will work. And that is good Dprev = D D = (Ann * S / A_PRECISION + D_P * N_COINS) * D / ((Ann - A_PRECISION) * D / A_PRECISION + (N_COINS + 1) * D_P) # Equality with the precision of 1 if D > Dprev: if D - Dprev <= 1: return D else: if Dprev - D <= 1: return D # convergence typically occurs in 4 rounds or less, this should be unreachable! # if it does happen the pool is borked and LPs can withdraw via `remove_liquidity` raise @view @internal def get_D_mem(_rates: uint256[N_COINS], _balances: uint256[N_COINS], _amp: uint256) -> uint256: xp: uint256[N_COINS] = self._xp_mem(_rates, _balances) return self.get_D(xp, _amp) @view @external def get_virtual_price() -> uint256: """ @notice The current virtual price of the pool LP token @dev Useful for calculating profits @return LP token virtual price normalized to 1e18 """ amp: uint256 = self._A() xp: uint256[N_COINS] = self._xp_mem(self.rate_multipliers, self.balances) D: uint256 = self.get_D(xp, amp) # D is in the units similar to DAI (e.g. converted to precision 1e18) # When balanced, D = n * x_u - total virtual value of the portfolio return D * PRECISION / self.totalSupply @view @external def calc_token_amount(_amounts: uint256[N_COINS], _is_deposit: bool) -> uint256: """ @notice Calculate addition or reduction in token supply from a deposit or withdrawal @dev This calculation accounts for slippage, but not fees. Needed to prevent front-running, not for precise calculations! @param _amounts Amount of each coin being deposited @param _is_deposit set True for deposits, False for withdrawals @return Expected amount of LP tokens received """ amp: uint256 = self._A() balances: uint256[N_COINS] = self.balances D0: uint256 = self.get_D_mem(self.rate_multipliers, balances, amp) for i in range(N_COINS): amount: uint256 = _amounts[i] if _is_deposit: balances[i] += amount else: balances[i] -= amount D1: uint256 = self.get_D_mem(self.rate_multipliers, balances, amp) diff: uint256 = 0 if _is_deposit: diff = D1 - D0 else: diff = D0 - D1 return diff * self.totalSupply / D0 @external @nonreentrant('lock') def add_liquidity( _amounts: uint256[N_COINS], _min_mint_amount: uint256, _receiver: address = msg.sender ) -> uint256: """ @notice Deposit coins into the pool @param _amounts List of amounts of coins to deposit @param _min_mint_amount Minimum amount of LP tokens to mint from the deposit @param _receiver Address that owns the minted LP tokens @return Amount of LP tokens received by depositing """ amp: uint256 = self._A() old_balances: uint256[N_COINS] = self.balances rates: uint256[N_COINS] = self.rate_multipliers # Initial invariant D0: uint256 = self.get_D_mem(rates, old_balances, amp) total_supply: uint256 = self.totalSupply new_balances: uint256[N_COINS] = old_balances for i in range(N_COINS): amount: uint256 = _amounts[i] if amount > 0: response: Bytes[32] = raw_call( self.coins[i], concat( method_id("transferFrom(address,address,uint256)"), convert(msg.sender, bytes32), convert(self, bytes32), convert(amount, bytes32), ), max_outsize=32, ) if len(response) > 0: assert convert(response, bool) # dev: failed transfer new_balances[i] += amount # end "safeTransferFrom" else: assert total_supply != 0 # dev: initial deposit requires all coins # Invariant after change D1: uint256 = self.get_D_mem(rates, new_balances, amp) assert D1 > D0 # We need to recalculate the invariant accounting for fees # to calculate fair user's share fees: uint256[N_COINS] = empty(uint256[N_COINS]) mint_amount: uint256 = 0 if total_supply > 0: # Only account for fees if we are not the first to deposit base_fee: uint256 = self.fee * N_COINS / (4 * (N_COINS - 1)) for i in range(N_COINS): ideal_balance: uint256 = D1 * old_balances[i] / D0 difference: uint256 = 0 new_balance: uint256 = new_balances[i] if ideal_balance > new_balance: difference = ideal_balance - new_balance else: difference = new_balance - ideal_balance fees[i] = base_fee * difference / FEE_DENOMINATOR self.balances[i] = new_balance - (fees[i] * ADMIN_FEE / FEE_DENOMINATOR) new_balances[i] -= fees[i] D2: uint256 = self.get_D_mem(rates, new_balances, amp) mint_amount = total_supply * (D2 - D0) / D0 else: self.balances = new_balances mint_amount = D1 # Take the dust if there was any assert mint_amount >= _min_mint_amount, "Slippage screwed you" # Mint pool tokens total_supply += mint_amount self.balanceOf[_receiver] += mint_amount self.totalSupply = total_supply log Transfer(ZERO_ADDRESS, _receiver, mint_amount) log AddLiquidity(msg.sender, _amounts, fees, D1, total_supply) return mint_amount @view @internal def get_y(i: int128, j: int128, x: uint256, xp: uint256[N_COINS]) -> uint256: """ Calculate x[j] if one makes x[i] = x Done by solving quadratic equation iteratively. x_1**2 + x_1 * (sum' - (A*n**n - 1) * D / (A * n**n)) = D ** (n + 1) / (n ** (2 * n) * prod' * A) x_1**2 + b*x_1 = c x_1 = (x_1**2 + c) / (2*x_1 + b) """ # x in the input is converted to the same price/precision assert i != j # dev: same coin assert j >= 0 # dev: j below zero assert j < N_COINS # dev: j above N_COINS # should be unreachable, but good for safety assert i >= 0 assert i < N_COINS amp: uint256 = self._A() D: uint256 = self.get_D(xp, amp) S_: uint256 = 0 _x: uint256 = 0 y_prev: uint256 = 0 c: uint256 = D Ann: uint256 = amp * N_COINS for _i in range(N_COINS): if _i == i: _x = x elif _i != j: _x = xp[_i] else: continue S_ += _x c = c * D / (_x * N_COINS) c = c * D * A_PRECISION / (Ann * N_COINS) b: uint256 = S_ + D * A_PRECISION / Ann # - D y: uint256 = D for _i in range(255): y_prev = y y = (y*y + c) / (2 * y + b - D) # Equality with the precision of 1 if y > y_prev: if y - y_prev <= 1: return y else: if y_prev - y <= 1: return y raise @view @external def get_dy(i: int128, j: int128, dx: uint256) -> uint256: """ @notice Calculate the current output dy given input dx @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send @param j Index valie of the coin to recieve @param dx Amount of `i` being exchanged @return Amount of `j` predicted """ rates: uint256[N_COINS] = self.rate_multipliers xp: uint256[N_COINS] = self._xp_mem(rates, self.balances) x: uint256 = xp[i] + (dx * rates[i] / PRECISION) y: uint256 = self.get_y(i, j, x, xp) dy: uint256 = xp[j] - y - 1 fee: uint256 = self.fee * dy / FEE_DENOMINATOR return (dy - fee) * PRECISION / rates[j] @external @nonreentrant('lock') def exchange( i: int128, j: int128, _dx: uint256, _min_dy: uint256, _receiver: address = msg.sender, ) -> uint256: """ @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send @param j Index valie of the coin to recieve @param _dx Amount of `i` being exchanged @param _min_dy Minimum amount of `j` to receive @return Actual amount of `j` received """ rates: uint256[N_COINS] = self.rate_multipliers old_balances: uint256[N_COINS] = self.balances xp: uint256[N_COINS] = self._xp_mem(rates, old_balances) x: uint256 = xp[i] + _dx * rates[i] / PRECISION y: uint256 = self.get_y(i, j, x, xp) dy: uint256 = xp[j] - y - 1 # -1 just in case there were some rounding errors dy_fee: uint256 = dy * self.fee / FEE_DENOMINATOR # Convert all to real units dy = (dy - dy_fee) * PRECISION / rates[j] assert dy >= _min_dy, "Exchange resulted in fewer coins than expected" dy_admin_fee: uint256 = dy_fee * ADMIN_FEE / FEE_DENOMINATOR dy_admin_fee = dy_admin_fee * PRECISION / rates[j] # Change balances exactly in same way as we change actual ERC20 coin amounts self.balances[i] = old_balances[i] + _dx # When rounding errors happen, we undercharge admin fee in favor of LP self.balances[j] = old_balances[j] - dy - dy_admin_fee response: Bytes[32] = raw_call( self.coins[i], concat( method_id("transferFrom(address,address,uint256)"), convert(msg.sender, bytes32), convert(self, bytes32), convert(_dx, bytes32), ), max_outsize=32, ) if len(response) > 0: assert convert(response, bool) response = raw_call( self.coins[j], concat( method_id("transfer(address,uint256)"), convert(_receiver, bytes32), convert(dy, bytes32), ), max_outsize=32, ) if len(response) > 0: assert convert(response, bool) log TokenExchange(msg.sender, i, _dx, j, dy) return dy @external @nonreentrant('lock') def remove_liquidity( _burn_amount: uint256, _min_amounts: uint256[N_COINS], _receiver: address = msg.sender ) -> uint256[N_COINS]: """ @notice Withdraw coins from the pool @dev Withdrawal amounts are based on current deposit ratios @param _burn_amount Quantity of LP tokens to burn in the withdrawal @param _min_amounts Minimum amounts of underlying coins to receive @param _receiver Address that receives the withdrawn coins @return List of amounts of coins that were withdrawn """ total_supply: uint256 = self.totalSupply amounts: uint256[N_COINS] = empty(uint256[N_COINS]) for i in range(N_COINS): old_balance: uint256 = self.balances[i] value: uint256 = old_balance * _burn_amount / total_supply assert value >= _min_amounts[i], "Withdrawal resulted in fewer coins than expected" self.balances[i] = old_balance - value amounts[i] = value response: Bytes[32] = raw_call( self.coins[i], concat( method_id("transfer(address,uint256)"), convert(_receiver, bytes32), convert(value, bytes32), ), max_outsize=32, ) if len(response) > 0: assert convert(response, bool) total_supply -= _burn_amount self.balanceOf[msg.sender] -= _burn_amount self.totalSupply = total_supply log Transfer(msg.sender, ZERO_ADDRESS, _burn_amount) log RemoveLiquidity(msg.sender, amounts, empty(uint256[N_COINS]), total_supply) return amounts @external @nonreentrant('lock') def remove_liquidity_imbalance( _amounts: uint256[N_COINS], _max_burn_amount: uint256, _receiver: address = msg.sender ) -> uint256: """ @notice Withdraw coins from the pool in an imbalanced amount @param _amounts List of amounts of underlying coins to withdraw @param _max_burn_amount Maximum amount of LP token to burn in the withdrawal @param _receiver Address that receives the withdrawn coins @return Actual amount of the LP token burned in the withdrawal """ amp: uint256 = self._A() rates: uint256[N_COINS] = self.rate_multipliers old_balances: uint256[N_COINS] = self.balances D0: uint256 = self.get_D_mem(rates, old_balances, amp) new_balances: uint256[N_COINS] = old_balances for i in range(N_COINS): amount: uint256 = _amounts[i] if amount != 0: new_balances[i] -= amount response: Bytes[32] = raw_call( self.coins[i], concat( method_id("transfer(address,uint256)"), convert(_receiver, bytes32), convert(amount, bytes32), ), max_outsize=32, ) if len(response) > 0: assert convert(response, bool) D1: uint256 = self.get_D_mem(rates, new_balances, amp) fees: uint256[N_COINS] = empty(uint256[N_COINS]) base_fee: uint256 = self.fee * N_COINS / (4 * (N_COINS - 1)) for i in range(N_COINS): ideal_balance: uint256 = D1 * old_balances[i] / D0 difference: uint256 = 0 new_balance: uint256 = new_balances[i] if ideal_balance > new_balance: difference = ideal_balance - new_balance else: difference = new_balance - ideal_balance fees[i] = base_fee * difference / FEE_DENOMINATOR self.balances[i] = new_balance - (fees[i] * ADMIN_FEE / FEE_DENOMINATOR) new_balances[i] -= fees[i] D2: uint256 = self.get_D_mem(rates, new_balances, amp) total_supply: uint256 = self.totalSupply burn_amount: uint256 = ((D0 - D2) * total_supply / D0) + 1 assert burn_amount > 1 # dev: zero tokens burned assert burn_amount <= _max_burn_amount, "Slippage screwed you" total_supply -= burn_amount self.totalSupply = total_supply self.balanceOf[msg.sender] -= burn_amount log Transfer(msg.sender, ZERO_ADDRESS, burn_amount) log RemoveLiquidityImbalance(msg.sender, _amounts, fees, D1, total_supply) return burn_amount @pure @internal def get_y_D(A: uint256, i: int128, xp: uint256[N_COINS], D: uint256) -> uint256: """ Calculate x[i] if one reduces D from being calculated for xp to D Done by solving quadratic equation iteratively. x_1**2 + x_1 * (sum' - (A*n**n - 1) * D / (A * n**n)) = D ** (n + 1) / (n ** (2 * n) * prod' * A) x_1**2 + b*x_1 = c x_1 = (x_1**2 + c) / (2*x_1 + b) """ # x in the input is converted to the same price/precision assert i >= 0 # dev: i below zero assert i < N_COINS # dev: i above N_COINS S_: uint256 = 0 _x: uint256 = 0 y_prev: uint256 = 0 c: uint256 = D Ann: uint256 = A * N_COINS for _i in range(N_COINS): if _i != i: _x = xp[_i] else: continue S_ += _x c = c * D / (_x * N_COINS) c = c * D * A_PRECISION / (Ann * N_COINS) b: uint256 = S_ + D * A_PRECISION / Ann y: uint256 = D for _i in range(255): y_prev = y y = (y*y + c) / (2 * y + b - D) # Equality with the precision of 1 if y > y_prev: if y - y_prev <= 1: return y else: if y_prev - y <= 1: return y raise @view @internal def _calc_withdraw_one_coin(_burn_amount: uint256, i: int128) -> uint256[2]: # First, need to calculate # * Get current D # * Solve Eqn against y_i for D - _token_amount amp: uint256 = self._A() rates: uint256[N_COINS] = self.rate_multipliers xp: uint256[N_COINS] = self._xp_mem(rates, self.balances) D0: uint256 = self.get_D(xp, amp) total_supply: uint256 = self.totalSupply D1: uint256 = D0 - _burn_amount * D0 / total_supply new_y: uint256 = self.get_y_D(amp, i, xp, D1) base_fee: uint256 = self.fee * N_COINS / (4 * (N_COINS - 1)) xp_reduced: uint256[N_COINS] = empty(uint256[N_COINS]) for j in range(N_COINS): dx_expected: uint256 = 0 xp_j: uint256 = xp[j] if j == i: dx_expected = xp_j * D1 / D0 - new_y else: dx_expected = xp_j - xp_j * D1 / D0 xp_reduced[j] = xp_j - base_fee * dx_expected / FEE_DENOMINATOR dy: uint256 = xp_reduced[i] - self.get_y_D(amp, i, xp_reduced, D1) dy_0: uint256 = (xp[i] - new_y) * PRECISION / rates[i] # w/o fees dy = (dy - 1) * PRECISION / rates[i] # Withdraw less to account for rounding errors return [dy, dy_0 - dy] @view @external def calc_withdraw_one_coin(_burn_amount: uint256, i: int128) -> uint256: """ @notice Calculate the amount received when withdrawing a single coin @param _burn_amount Amount of LP tokens to burn in the withdrawal @param i Index value of the coin to withdraw @return Amount of coin received """ return self._calc_withdraw_one_coin(_burn_amount, i)[0] @external @nonreentrant('lock') def remove_liquidity_one_coin( _burn_amount: uint256, i: int128, _min_received: uint256, _receiver: address = msg.sender, ) -> uint256: """ @notice Withdraw a single coin from the pool @param _burn_amount Amount of LP tokens to burn in the withdrawal @param i Index value of the coin to withdraw @param _min_received Minimum amount of coin to receive @param _receiver Address that receives the withdrawn coins @return Amount of coin received """ dy: uint256[2] = self._calc_withdraw_one_coin(_burn_amount, i) assert dy[0] >= _min_received, "Not enough coins removed" self.balances[i] -= (dy[0] + dy[1] * ADMIN_FEE / FEE_DENOMINATOR) total_supply: uint256 = self.totalSupply - _burn_amount self.totalSupply = total_supply self.balanceOf[msg.sender] -= _burn_amount log Transfer(msg.sender, ZERO_ADDRESS, _burn_amount) response: Bytes[32] = raw_call( self.coins[i], concat( method_id("transfer(address,uint256)"), convert(_receiver, bytes32), convert(dy[0], bytes32), ), max_outsize=32, ) if len(response) > 0: assert convert(response, bool) log RemoveLiquidityOne(msg.sender, _burn_amount, dy[0], total_supply) return dy[0] @external def ramp_A(_future_A: uint256, _future_time: uint256): assert msg.sender == Factory(self.factory).admin() # dev: only owner assert block.timestamp >= self.initial_A_time + MIN_RAMP_TIME assert _future_time >= block.timestamp + MIN_RAMP_TIME # dev: insufficient time _initial_A: uint256 = self._A() _future_A_p: uint256 = _future_A * A_PRECISION assert _future_A > 0 and _future_A < MAX_A if _future_A_p < _initial_A: assert _future_A_p * MAX_A_CHANGE >= _initial_A else: assert _future_A_p <= _initial_A * MAX_A_CHANGE self.initial_A = _initial_A self.future_A = _future_A_p self.initial_A_time = block.timestamp self.future_A_time = _future_time log RampA(_initial_A, _future_A_p, block.timestamp, _future_time) @external def stop_ramp_A(): assert msg.sender == Factory(self.factory).admin() # dev: only owner current_A: uint256 = self._A() self.initial_A = current_A self.future_A = current_A self.initial_A_time = block.timestamp self.future_A_time = block.timestamp # now (block.timestamp < t1) is always False, so we return saved A log StopRampA(current_A, block.timestamp) @view @external def admin_balances(i: uint256) -> uint256: return ERC20(self.coins[i]).balanceOf(self) - self.balances[i] @external def withdraw_admin_fees(): receiver: address = Factory(self.factory).get_fee_receiver(self) for i in range(N_COINS): coin: address = self.coins[i] fees: uint256 = ERC20(coin).balanceOf(self) - self.balances[i] raw_call( coin, concat( method_id("transfer(address,uint256)"), convert(receiver, bytes32), convert(fees, bytes32) ) )
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"name":"Transfer","inputs":[{"name":"sender","type":"address","indexed":true},{"name":"receiver","type":"address","indexed":true},{"name":"value","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"Approval","inputs":[{"name":"owner","type":"address","indexed":true},{"name":"spender","type":"address","indexed":true},{"name":"value","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"TokenExchange","inputs":[{"name":"buyer","type":"address","indexed":true},{"name":"sold_id","type":"int128","indexed":false},{"name":"tokens_sold","type":"uint256","indexed":false},{"name":"bought_id","type":"int128","indexed":false},{"name":"tokens_bought","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"AddLiquidity","inputs":[{"name":"provider","type":"address","indexed":true},{"name":"token_amounts","type":"uint256[4]","indexed":false},{"name":"fees","type":"uint256[4]","indexed":false},{"name":"invariant","type":"uint256","indexed":false},{"name":"token_supply","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"RemoveLiquidity","inputs":[{"name":"provider","type":"address","indexed":true},{"name":"token_amounts","type":"uint256[4]","indexed":false},{"name":"fees","type":"uint256[4]","indexed":false},{"name":"token_supply","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"RemoveLiquidityOne","inputs":[{"name":"provider","type":"address","indexed":true},{"name":"token_amount","type":"uint256","indexed":false},{"name":"coin_amount","type":"uint256","indexed":false},{"name":"token_supply","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"RemoveLiquidityImbalance","inputs":[{"name":"provider","type":"address","indexed":true},{"name":"token_amounts","type":"uint256[4]","indexed":false},{"name":"fees","type":"uint256[4]","indexed":false},{"name":"invariant","type":"uint256","indexed":false},{"name":"token_supply","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"RampA","inputs":[{"name":"old_A","type":"uint256","indexed":false},{"name":"new_A","type":"uint256","indexed":false},{"name":"initial_time","type":"uint256","indexed":false},{"name":"future_time","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"StopRampA","inputs":[{"name":"A","type":"uint256","indexed":false},{"name":"t","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"stateMutability":"nonpayable","type":"constructor","inputs":[],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"initialize","inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_coins","type":"address[4]"},{"name":"_rate_multipliers","type":"uint256[4]"},{"name":"_A","type":"uint256"},{"name":"_fee","type":"uint256"}],"outputs":[],"gas":612238},{"stateMutability":"view","type":"function","name":"decimals","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":318},{"stateMutability":"nonpayable","type":"function","name":"transfer","inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}],"gas":77977},{"stateMutability":"nonpayable","type":"function","name":"transferFrom","inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}],"gas":115912},{"stateMutability":"nonpayable","type":"function","name":"approve","inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}],"gas":37851},{"stateMutability":"view","type":"function","name":"get_balances","inputs":[],"outputs":[{"name":"","type":"uint256[4]"}],"gas":8943},{"stateMutability":"view","type":"function","name":"admin_fee","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":468},{"stateMutability":"view","type":"function","name":"A","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":10764},{"stateMutability":"view","type":"function","name":"A_precise","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":10726},{"stateMutability":"view","type":"function","name":"get_virtual_price","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":1386501},{"stateMutability":"view","type":"function","name":"calc_token_amount","inputs":[{"name":"_amounts","type":"uint256[4]"},{"name":"_is_deposit","type":"bool"}],"outputs":[{"name":"","type":"uint256"}],"gas":5467590},{"stateMutability":"nonpayable","type":"function","name":"add_liquidity","inputs":[{"name":"_amounts","type":"uint256[4]"},{"name":"_min_mint_amount","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"add_liquidity","inputs":[{"name":"_amounts","type":"uint256[4]"},{"name":"_min_mint_amount","type":"uint256"},{"name":"_receiver","type":"address"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"get_dy","inputs":[{"name":"i","type":"int128"},{"name":"j","type":"int128"},{"name":"dx","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}],"gas":3185773},{"stateMutability":"nonpayable","type":"function","name":"exchange","inputs":[{"name":"i","type":"int128"},{"name":"j","type":"int128"},{"name":"_dx","type":"uint256"},{"name":"_min_dy","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"exchange","inputs":[{"name":"i","type":"int128"},{"name":"j","type":"int128"},{"name":"_dx","type":"uint256"},{"name":"_min_dy","type":"uint256"},{"name":"_receiver","type":"address"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"remove_liquidity","inputs":[{"name":"_burn_amount","type":"uint256"},{"name":"_min_amounts","type":"uint256[4]"}],"outputs":[{"name":"","type":"uint256[4]"}]},{"stateMutability":"nonpayable","type":"function","name":"remove_liquidity","inputs":[{"name":"_burn_amount","type":"uint256"},{"name":"_min_amounts","type":"uint256[4]"},{"name":"_receiver","type":"address"}],"outputs":[{"name":"","type":"uint256[4]"}]},{"stateMutability":"nonpayable","type":"function","name":"remove_liquidity_imbalance","inputs":[{"name":"_amounts","type":"uint256[4]"},{"name":"_max_burn_amount","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"remove_liquidity_imbalance","inputs":[{"name":"_amounts","type":"uint256[4]"},{"name":"_max_burn_amount","type":"uint256"},{"name":"_receiver","type":"address"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"calc_withdraw_one_coin","inputs":[{"name":"_burn_amount","type":"uint256"},{"name":"i","type":"int128"}],"outputs":[{"name":"","type":"uint256"}],"gas":1100},{"stateMutability":"nonpayable","type":"function","name":"remove_liquidity_one_coin","inputs":[{"name":"_burn_amount","type":"uint256"},{"name":"i","type":"int128"},{"name":"_min_received","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"remove_liquidity_one_coin","inputs":[{"name":"_burn_amount","type":"uint256"},{"name":"i","type":"int128"},{"name":"_min_received","type":"uint256"},{"name":"_receiver","type":"address"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"ramp_A","inputs":[{"name":"_future_A","type":"uint256"},{"name":"_future_time","type":"uint256"}],"outputs":[],"gas":162101},{"stateMutability":"nonpayable","type":"function","name":"stop_ramp_A","inputs":[],"outputs":[],"gas":157565},{"stateMutability":"view","type":"function","name":"admin_balances","inputs":[{"name":"i","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}],"gas":7740},{"stateMutability":"nonpayable","type":"function","name":"withdraw_admin_fees","inputs":[],"outputs":[],"gas":60914},{"stateMutability":"view","type":"function","name":"coins","inputs":[{"name":"arg0","type":"uint256"}],"outputs":[{"name":"","type":"address"}],"gas":3093},{"stateMutability":"view","type":"function","name":"balances","inputs":[{"name":"arg0","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}],"gas":3123},{"stateMutability":"view","type":"function","name":"fee","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3108},{"stateMutability":"view","type":"function","name":"initial_A","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3138},{"stateMutability":"view","type":"function","name":"future_A","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3168},{"stateMutability":"view","type":"function","name":"initial_A_time","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3198},{"stateMutability":"view","type":"function","name":"future_A_time","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3228},{"stateMutability":"view","type":"function","name":"name","inputs":[],"outputs":[{"name":"","type":"string"}],"gas":13488},{"stateMutability":"view","type":"function","name":"symbol","inputs":[],"outputs":[{"name":"","type":"string"}],"gas":11241},{"stateMutability":"view","type":"function","name":"balanceOf","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":3533},{"stateMutability":"view","type":"function","name":"allowance","inputs":[{"name":"arg0","type":"address"},{"name":"arg1","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":3778},{"stateMutability":"view","type":"function","name":"totalSupply","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3378}]
Contract Creation Code
617a69600e55614b1656600436101561000d57613585565b600035601c5260005134614b075763a461b3c881141561030e5760406004356004016101403760206004356004013511614b0757602a6024356004016101a037600a6024356004013511614b075760443560a01c614b075760643560a01c614b075760843560a01c614b075760a43560a01c614b0757600e54614b075761020060006004818352015b6044610200516004811015614b0757602002013561022052610220516100bb5761010c565b610220516001610200516004811015614b0757026006015560c4610200516004811015614b075760200201356001610200516004811015614b075702601301555b8151600101808352811415610096575b5050610144356064808202821582848304141715614b0757809050905090506102005261020051600f556102005160105561016435600e55336005556000601d610220527f43757276652e666920466163746f727920506c61696e20506f6f6c3a2000000061024052610220601d8060208461028001018260208501600060045af150508051820191505061014060208060208461028001018260208501600060045af150508051820191505080610280526102809050806017602082510161012060006003818352015b826101205160200211156101ea5761020c565b61012051602002850151610120518501555b81516001018083528114156101d7575b50505050505060006101a0600a8060208461028001018260208501600060045af15050805182019150506002610220527f2d660000000000000000000000000000000000000000000000000000000000006102405261022060028060208461028001018260208501600060045af15050805182019150508061028052610280905080601b602082510161012060006002818352015b826101205160200211156102b4576102d6565b61012051602002850151610120518501555b81516001018083528114156102a1575b5050505050506000610220523060007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610220a3005b63313ce56781141561032557601260005260206000f35b63a9059cbb8114156103715760043560a01c614b0757336101405260043561016052602435610180526101805161016051610140516006580161358b565b600050600160005260206000f35b6323b872dd8114156104485760043560a01c614b075760243560a01c614b07576004356101405260243561016052604435610180526101805161016051610140516006580161358b565b600050601f60043560e05260c052604060c0203360e05260c052604060c02054610140527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61014051181561043d5761014051604435808210614b075780820390509050601f60043560e05260c052604060c0203360e05260c052604060c020555b600160005260206000f35b63095ea7b38114156104bb5760043560a01c614b0757602435601f3360e05260c052604060c02060043560e05260c052604060c0205560243561014052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610140a3600160005260206000f35b6314f059798114156104f257600a80546101605260018101546101805260028101546101a05260038101546101c052506080610160f35b63fee3f7f981141561050d5764012a05f20060005260206000f35b63f446c1d081141561053c576006580161362a565b610140526101405160648082049050905060005260206000f35b6376a2f0f0811415610562576006580161362a565b610140526101405160005260206000f35b63bb7b8b8081141561071757610140516006580161362a565b610160526101405261016051610140526101405161016051610180516101a0516101c051601380546101e05260018101546102005260028101546102205260038101546102405250600a80546102605260018101546102805260028101546102a05260038101546102c052506102c0516102a05161028051610260516102405161022051610200516101e05160065801613782565b610320526103405261036052610380526101c0526101a05261018052610160526101405261032080516101605280602001516101805280604001516101a05280606001516101c052506101405161016051610180516101a0516101c0516101e051610160516102005261018051610220526101a051610240526101c05161026052610140516102805261028051610260516102405161022051610200516006580161386b565b6102e0526101e0526101c0526101a0526101805261016052610140526102e0516101e0526101e051670de0b6b3a7640000808202821582848304141715614b075780905090509050602054808015614b075782049050905060005260206000f35b63cf701ff78114156109fd5760843560011c614b0757610140516006580161362a565b61016052610140526101605161014052600a80546101605260018101546101805260028101546101a05260038101546101c052506101405161016051610180516101a0516101c0516101e0516013805461020052600181015461022052600281015461024052600381015461026052506101605161028052610180516102a0526101a0516102c0526101c0516102e0526101405161030052610300516102e0516102c0516102a051610280516102605161024051610220516102005160065801613b1d565b610360526101e0526101c0526101a052610180526101605261014052610360516101e05261020060006004818352015b6004610200516004811015614b07576020020135610220526084351561088157610160610200516004811015614b0757602002018051610220518181830110614b0757808201905090508152506108ad565b610160610200516004811015614b075760200201805161022051808210614b0757808203905090508152505b5b815160010180835281141561082f575b50506101405161016051610180516101a0516101c0516101e05161020051601380546102205260018101546102405260028101546102605260038101546102805250610160516102a052610180516102c0526101a0516102e0526101c05161030052610140516103205261032051610300516102e0516102c0516102a0516102805161026051610240516102205160065801613b1d565b61038052610200526101e0526101c0526101a0526101805261016052610140526103805161020052600061022052608435156109aa57610200516101e051808210614b075780820390509050610220526109c5565b6101e05161020051808210614b075780820390509050610220525b61022051602054808202821582848304141715614b0757809050905090506101e051808015614b075782049050905060005260206000f35b63029b2f34811415610a13573361014052610a3e565b63cb495064811415610a395760a43560a01c614b0757602060a461014037600050610a3e565b61130e565b600054614b0757600160005561014051610160516006580161362a565b6101805261016052610140526101805161016052600a80546101805260018101546101a05260028101546101c05260038101546101e052506013805461020052600181015461022052600281015461024052600381015461026052506101405161016051610180516101a0516101c0516101e0516102005161022051610240516102605161028051610200516102a052610220516102c052610240516102e052610260516103005261018051610320526101a051610340526101c051610360526101e05161038052610160516103a0526103a05161038051610360516103405161032051610300516102e0516102c0516102a05160065801613b1d565b6104005261028052610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261040051610280526020546102a052610180516102c0526101a0516102e0526101c051610300526101e0516103205261034060006004818352015b6004610340516004811015614b07576020020135610360526000610360511115610d5b57600060046103e0527f23b872dd00000000000000000000000000000000000000000000000000000000610400526103e060048060208461044001018260208501600060045af1505080518201915050336020826104400101526020810190503060208261044001015260208101905061036051602082610440010152602081019050806104405261044090508051602001806105008284600060045af115614b0757505060206105e06105005161052060006001610340516004811015614b075702600601545af115614b075760203d80821115610cc55780610cc7565b815b905090506105c0526105c08051602001806103808284600060045af115614b075750506000610380511115610d29576103808060200151600082518060209013614b075780919012614b0757806020036101000a820490509050905015614b07575b6102c0610340516004811015614b0757602002018051610360518181830110614b075780820190509050815250610d68565b60006102a0511815614b07575b5b8151600101808352811415610bc3575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e05161030051610320516103405161020051610360526102205161038052610240516103a052610260516103c0526102c0516103e0526102e05161040052610300516104205261032051610440526101605161046052610460516104405161042051610400516103e0516103c0516103a051610380516103605160065801613b1d565b6104c0526103405261032052610300526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526104c0516103405261028051610340511115614b075760a0366103603760006102a051111561119a57600e546004808202821582848304141715614b075780905090509050600c808204905090506104005261042060006004818352015b61034051610180610420516004811015614b07576020020151808202821582848304141715614b07578090509050905061028051808015614b0757820490509050610440526000610460526102c0610420516004811015614b075760200201516104805261048051610440511115610f6b576104405161048051808210614b07578082039050905061046052610f86565b6104805161044051808210614b075780820390509050610460525b6104005161046051808202821582848304141715614b0757809050905090506402540be40080820490509050610360610420516004811015614b0757602002015261048051610360610420516004811015614b0757602002015164012a05f200808202821582848304141715614b0757809050905090506402540be40080820490509050808210614b0757808203905090506001610420516004811015614b075702600a01556102c0610420516004811015614b0757602002018051610360610420516004811015614b07576020020151808210614b0757808203905090508152505b8151600101808352811415610eda575b5050610140610440525b610440515160206104405101610440526104406104405110156110a557611083565b61020051610460526102205161048052610240516104a052610260516104c0526102c0516104e0526102e05161050052610300516105205261032051610540526101605161056052610560516105405161052051610500516104e0516104c0516104a051610480516104605160065801613b1d565b6105c052610420610440525b61044051526020610440510361044052610140610440511061114757611126565b6105c051610420526102a0516104205161028051808210614b075780820390509050808202821582848304141715614b07578090509050905061028051808015614b07578204905090506103e0526111c7565b600a6102c05181556102e051600182015561030051600282015561032051600382015550610340516103e0525b6084356103e0511015611219576308c379a0610400526020610420526014610440527f536c697070616765207363726577656420796f750000000000000000000000006104605261044050606461041cfd5b6102a080516103e0518181830110614b075780820190509050815250601e6101405160e05260c052604060c02080546103e0518181830110614b0757808201905090508155506102a0516020556103e051610400526101405160007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610400a360806004610400376103605161048052610380516104a0526103a0516104c0526103c0516104e05261034051610500526102a05161052052337f3f1915775e0c9a38a57a7bb7f1f9005f486fb904e1f84aa215364d567319a58d610140610400a26103e051600052600060005560206000f35b635e0d443f811415611634576004358080600081121561132a57195b607f1c614b07579050506024358080600081121561134457195b607f1c614b0757905050601380546101405260018101546101605260028101546101805260038101546101a052506101405161016051610180516101a0516101c0516101e05161020051610220516101405161024052610160516102605261018051610280526101a0516102a052600a80546102c05260018101546102e0526002810154610300526003810154610320525061032051610300516102e0516102c0516102a05161028051610260516102405160065801613782565b610380526103a0526103c0526103e05261022052610200526101e0526101c0526101a05261018052610160526101405261038080516101c05280602001516101e052806040015161020052806060015161022052506101c06004356004811015614b075760200201516044356101406004356004811015614b07576020020151808202821582848304141715614b075780905090509050670de0b6b3a7640000808204905090508181830110614b075780820190509050610240526101405161016051610180516101a0516101c0516101e051610200516102205161024051610260516040600461028037610240516102c0526101c0516102e0526101e05161030052610200516103205261022051610340526103405161032051610300516102e0516102c0516102a0516102805160065801613d1c565b6103a052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103a051610260526101c06024356004811015614b0757602002015161026051808210614b0757808203905090506001808210614b07578082039050905061028052600e5461028051808202821582848304141715614b0757809050905090506402540be400808204905090506102a052610280516102a051808210614b075780820390509050670de0b6b3a7640000808202821582848304141715614b0757809050905090506101406024356004811015614b07576020020151808015614b075782049050905060005260206000f35b633df0212481141561164a573361014052611675565b63ddc1f59d8114156116705760843560a01c614b07576020608461014037600050611675565b611e48565b600154614b075760016001556004358080600081121561169157195b607f1c614b0757905050602435808060008112156116ab57195b607f1c614b0757905050601380546101605260018101546101805260028101546101a05260038101546101c05250600a80546101e052600181015461020052600281015461022052600381015461024052506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c051610160516102e05261018051610300526101a051610320526101c051610340526101e051610360526102005161038052610220516103a052610240516103c0526103c0516103a05161038051610360516103405161032051610300516102e05160065801613782565b610420526104405261046052610480526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261042080516102605280602001516102805280604001516102a05280606001516102c052506102606004356004811015614b075760200201516044356101606004356004811015614b07576020020151808202821582848304141715614b075780905090509050670de0b6b3a7640000808204905090508181830110614b0757808201905090506102e0526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e0516103005160406004610320376102e051610360526102605161038052610280516103a0526102a0516103c0526102c0516103e0526103e0516103c0516103a0516103805161036051610340516103205160065801613d1c565b61044052610300526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261044051610300526102606024356004811015614b0757602002015161030051808210614b0757808203905090506001808210614b0757808203905090506103205261032051600e54808202821582848304141715614b0757809050905090506402540be40080820490509050610340526103205161034051808210614b075780820390509050670de0b6b3a7640000808202821582848304141715614b0757809050905090506101606024356004811015614b07576020020151808015614b075782049050905061032052606435610320511015611a7d576308c379a061036052602061038052602e6103a0527f45786368616e676520726573756c74656420696e20666577657220636f696e736103c0527f207468616e2065787065637465640000000000000000000000000000000000006103e0526103a050608461037cfd5b6103405164012a05f200808202821582848304141715614b0757809050905090506402540be400808204905090506103605261036051670de0b6b3a7640000808202821582848304141715614b0757809050905090506101606024356004811015614b07576020020151808015614b0757820490509050610360526101e06004356004811015614b075760200201516044358181830110614b07578082019050905060016004356004811015614b075702600a01556101e06024356004811015614b0757602002015161032051808210614b07578082039050905061036051808210614b07578082039050905060016024356004811015614b075702600a0155600060046103e0527f23b872dd00000000000000000000000000000000000000000000000000000000610400526103e060048060208461044001018260208501600060045af15050805182019150503360208261044001015260208101905030602082610440010152602081019050604435602082610440010152602081019050806104405261044090508051602001806105008284600060045af115614b0757505060206105e061050051610520600060016004356004811015614b075702600601545af115614b075760203d80821115611c595780611c5b565b815b905090506105c0526105c08051602001806103808284600060045af115614b075750506000610380511115611cbd576103808060200151600082518060209013614b075780919012614b0757806020036101000a820490509050905015614b07575b600060046103e0527fa9059cbb00000000000000000000000000000000000000000000000000000000610400526103e060048060208461044001018260208501600060045af15050805182019150506101405160208261044001015260208101905061032051602082610440010152602081019050806104405261044090508051602001806104e08284600060045af115614b0757505060206105a06104e051610500600060016024356004811015614b075702600601545af115614b075760203d80821115611d8d5780611d8f565b815b90509050610580526105808051602001806103808284600060045af115614b075750506000610380511115611df1576103808060200151600082518060209013614b075780919012614b0757806020036101000a820490509050905015614b07575b6004356103e05260443561040052602435610420526103205161044052337f8b3e96f2b889fa771c53c981b40daf005f63f637f1869f707052d15a3dd9714060806103e0a261032051600052600060015560206000f35b637d49d875811415611e5e573361014052611e89565b63b2fdb76f811415611e845760a43560a01c614b0757602060a461014037600050611e89565b6121e6565b600254614b07576001600255602054610160526080366101803761020060006004818352015b6001610200516004811015614b075702600a01546102205261022051600435808202821582848304141715614b07578090509050905061016051808015614b0757820490509050610240526024610200516004811015614b07576020020135610240511015611f82576308c379a06102605260206102805260306102a0527f5769746864726177616c20726573756c74656420696e20666577657220636f696102c0527f6e73207468616e206578706563746564000000000000000000000000000000006102e0526102a050608461027cfd5b6102205161024051808210614b0757808203905090506001610200516004811015614b075702600a015561024051610180610200516004811015614b07576020020152600060046102c0527fa9059cbb000000000000000000000000000000000000000000000000000000006102e0526102c060048060208461032001018260208501600060045af15050805182019150506101405160208261032001015260208101905061024051602082610320010152602081019050806103205261032090508051602001806103c08284600060045af115614b0757505060206104806103c0516103e060006001610200516004811015614b075702600601545af115614b075760203d808211156120965780612098565b815b90509050610460526104608051602001806102608284600060045af115614b0757505060006102605111156120fa576102608060200151600082518060209013614b075780919012614b0757806020036101000a820490509050905015614b07575b5b8151600101808352811415611eaf575b50506101608051600435808210614b075780820390509050815250601e3360e05260c052604060c0208054600435808210614b07578082039050905081555061016051602055600435610200526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610200a361018051610200526101a051610220526101c051610240526101e05161026052608036610280376101605161030052337f9878ca375e106f2a43c3b599fc624568131c4c9a4ba66a14563715763be9d59d610120610200a260006002556080610180f35b6318a7bd768114156121fc573361014052612227565b634ab3a82b8114156122225760a43560a01c614b0757602060a461014037600050612227565b612af4565b600354614b0757600160035561014051610160516006580161362a565b6101805261016052610140526101805161016052601380546101805260018101546101a05260028101546101c05260038101546101e05250600a805461020052600181015461022052600281015461024052600381015461026052506101405161016051610180516101a0516101c0516101e0516102005161022051610240516102605161028051610180516102a0526101a0516102c0526101c0516102e0526101e051610300526102005161032052610220516103405261024051610360526102605161038052610160516103a0526103a05161038051610360516103405161032051610300516102e0516102c0516102a05160065801613b1d565b6104005261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526104005161028052610200516102a052610220516102c052610240516102e052610260516103005261032060006004818352015b6004610320516004811015614b0757602002013561034052600061034051181561252a576102a0610320516004811015614b075760200201805161034051808210614b075780820390509050815250600060046103c0527fa9059cbb000000000000000000000000000000000000000000000000000000006103e0526103c060048060208461042001018260208501600060045af15050805182019150506101405160208261042001015260208101905061034051602082610420010152602081019050806104205261042090508051602001806104c08284600060045af115614b0757505060206105806104c0516104e060006001610320516004811015614b075702600601545af115614b075760203d808211156124c557806124c7565b815b90509050610560526105608051602001806103608284600060045af115614b075750506000610360511115612529576103608060200151600082518060209013614b075780919012614b0757806020036101000a820490509050905015614b07575b5b5b81516001018083528114156123a5575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e051610300516103205161018051610340526101a051610360526101c051610380526101e0516103a0526102a0516103c0526102c0516103e0526102e05161040052610300516104205261016051610440526104405161042051610400516103e0516103c0516103a05161038051610360516103405160065801613b1d565b6104a05261032052610300526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526104a0516103205260803661034037600e546004808202821582848304141715614b075780905090509050600c808204905090506103c0526103e060006004818352015b610320516102006103e0516004811015614b07576020020151808202821582848304141715614b07578090509050905061028051808015614b0757820490509050610400526000610420526102a06103e0516004811015614b07576020020151610440526104405161040051111561270b576104005161044051808210614b07578082039050905061042052612726565b6104405161040051808210614b075780820390509050610420525b6103c05161042051808202821582848304141715614b0757809050905090506402540be400808204905090506103406103e0516004811015614b07576020020152610440516103406103e0516004811015614b0757602002015164012a05f200808202821582848304141715614b0757809050905090506402540be40080820490509050808210614b07578082039050905060016103e0516004811015614b075702600a01556102a06103e0516004811015614b07576020020180516103406103e0516004811015614b07576020020151808210614b0757808203905090508152505b815160010180835281141561267a575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e05161030051610320516103405161036051610380516103a0516103c0516103e05161018051610400526101a051610420526101c051610440526101e051610460526102a051610480526102c0516104a0526102e0516104c052610300516104e0526101605161050052610500516104e0516104c0516104a051610480516104605161044051610420516104005160065801613b1d565b610560526103e0526103c0526103a05261038052610360526103405261032052610300526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610560516103e05260205461040052610280516103e051808210614b07578082039050905061040051808202821582848304141715614b07578090509050905061028051808015614b075782049050905060018181830110614b075780820190509050610420526001610420511115614b0757608435610420511115612a09576308c379a0610440526020610460526014610480527f536c697070616765207363726577656420796f750000000000000000000000006104a05261048050606461045cfd5b610400805161042051808210614b07578082039050905081525061040051602055601e3360e05260c052604060c020805461042051808210614b07578082039050905081555061042051610440526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610440a36080600461044037610340516104c052610360516104e05261038051610500526103a0516105205261032051610540526104005161056052337fb964b72f73f5ef5bf0fdc559b2fab9a7b12a39e47817a547f1f0aee47febd602610140610440a261042051600052600060035560206000f35b63cc2b27d7811415612b4e5760243580806000811215612b1057195b607f1c614b0757905050600435610140526024356101605261016051610140516006580161444f565b6101c0526101e0526101c05160005260206000f35b631a4d01d2811415612b64573361014052612b8f565b63081579a5811415612b8a5760643560a01c614b07576020606461014037600050612b8f565b612eb9565b600454614b0757600160045560243580806000811215612bab57195b607f1c614b07579050506101405161016051610180516004356101a0526024356101c0526101c0516101a0516006580161444f565b610220526102405261018052610160526101405261022080516101605280602001516101805250604435610160511015612c59576308c379a06101a05260206101c05260186101e0527f4e6f7420656e6f75676820636f696e732072656d6f7665640000000000000000610200526101e05060646101bcfd5b60016024356004811015614b075702600a018054610160516101805164012a05f200808202821582848304141715614b0757809050905090506402540be400808204905090508181830110614b075780820190509050808210614b075780820390509050815550602054600435808210614b0757808203905090506101a0526101a051602055601e3360e05260c052604060c0208054600435808210614b0757808203905090508155506004356101c0526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101c0a360006004610220527fa9059cbb000000000000000000000000000000000000000000000000000000006102405261022060048060208461028001018260208501600060045af15050805182019150506101405160208261028001015260208101905061016051602082610280010152602081019050806102805261028090508051602001806103208284600060045af115614b0757505060206103e061032051610340600060016024356004811015614b075702600601545af115614b075760203d80821115612e045780612e06565b815b905090506103c0526103c08051602001806101c08284600060045af115614b0757505060006101c0511115612e68576101c08060200151600082518060209013614b075780919012614b0757806020036101000a820490509050905015614b07575b6004356102205261016051610240526101a05161026052337f5ad056f2e28a8cec232015406b843668c1e36cda598127ec3b8c59b8c72773a06060610220a261016051600052600060045560206000f35b633c157e6481141561304d5760206101a0600463f851a4406101405261015c6005545afa15614b0757601f3d1115614b07576000506101a051331415614b0757601154620151808181830110614b0757808201905090504210614b075742620151808181830110614b07578082019050905060243510614b0757610140516006580161362a565b610160526101405261016051610140526004356064808202821582848304141715614b0757809050905090506101605260006004351115612f8857620f424060043510612f8b565b60005b15614b075761014051610160511015612fc9576101405161016051600a808202821582848304141715614b07578090509050905010614b0757612ff0565b61014051600a808202821582848304141715614b0757809050905090506101605111614b07575b61014051600f5561016051601055426011556024356012556101405161018052610160516101a052426101c0526024356101e0527fa2b71ec6df949300b59aab36b55e189697b750119dd349fcfa8c0f779e83c2546080610180a1005b63551a65888114156130f65760206101a0600463f851a4406101405261015c6005545afa15614b0757601f3d1115614b07576000506101a051331415614b0757610140516006580161362a565b6101605261014052610160516101405261014051600f55610140516010554260115542601255610140516101605242610180527f46e22fb3709ad289f62ce63d469248536dbc78d82b84a3d7e74ad606dc2019386040610160a1005b63e2e7d26481141561316e5760206101c060246370a0823161014052306101605261015c60016004356004811015614b075702600601545afa15614b0757601f3d1115614b07576000506101c05160016004356004811015614b075702600a0154808210614b07578082039050905060005260206000f35b6330c540858114156132f15760206101e0602463154aa8f561016052306101805261017c6005545afa15614b0757601f3d1115614b07576000506101e0516101405261016060006004818352015b6001610160516004811015614b0757026006015461018052602061024060246370a082316101c052306101e0526101dc610180515afa15614b0757601f3d1115614b0757600050610240516001610160516004811015614b075702600a0154808210614b0757808203905090506101a052600060046101c0527fa9059cbb000000000000000000000000000000000000000000000000000000006101e0526101c060048060208461022001018260208501600060045af1505080518201915050610140516020826102200101526020810190506101a051602082610220010152602081019050806102205261022090508051602001806102c08284600060045af115614b07575050600060006102c0516102e06000610180515af115614b07575b81516001018083528114156131bc575b5050005b63c66106578114156133195760016004356004811015614b0757026006015460005260206000f35b634903b0d18114156133415760016004356004811015614b075702600a015460005260206000f35b63ddca3f4381141561335957600e5460005260206000f35b635409491a81141561337157600f5460005260206000f35b63b4b577ad8114156133895760105460005260206000f35b632081066c8114156133a15760115460005260206000f35b63140522888114156133b95760125460005260206000f35b6306fdde0381141561345657601780610180602082540161012060006003818352015b826101205160200211156133ef57613411565b61012051850154610120516020028501525b81516001018083528114156133dc575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f35b6395d89b418114156134f357601b80610180602082540161012060006002818352015b8261012051602002111561348c576134ae565b61012051850154610120516020028501525b8151600101808352811415613479575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f35b6370a082318114156135235760043560a01c614b0757601e60043560e05260c052604060c0205460005260206000f35b63dd62ed3e81141561356b5760043560a01c614b075760243560a01c614b0757601f60043560e05260c052604060c02060243560e05260c052604060c0205460005260206000f35b6318160ddd8114156135835760205460005260206000f35b505b60006000fd5b6101a052610140526101605261018052601e6101405160e05260c052604060c020805461018051808210614b075780820390509050815550601e6101605160e05260c052604060c0208054610180518181830110614b075780820190509050815550610180516101c05261016051610140517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101c0a36101a051565b6101405260125461016052601054610180526101605142101561377057600f546101a0526011546101c0526101a0516101805111156136ea576101a051610180516101a051808210614b075780820390509050426101c051808210614b075780820390509050808202821582848304141715614b075780905090509050610160516101c051808210614b075780820390509050808015614b07578204905090508181830110614b075780820190509050600052600051610140515661376b565b6101a0516101a05161018051808210614b075780820390509050426101c051808210614b075780820390509050808202821582848304141715614b075780905090509050610160516101c051808210614b075780820390509050808015614b0757820490509050808210614b07578082039050905060005260005161014051565b613780565b6101805160005260005161014051565b005b610240526101405261016052610180526101a0526101c0526101e0526102005261022052608036610260376102e060006004818352015b6101406102e0516004811015614b075760200201516101c06102e0516004811015614b07576020020151808202821582848304141715614b075780905090509050670de0b6b3a7640000808204905090506102606102e0516004811015614b075760200201525b81516001018083528114156137b9575b505060806102e0525b60006102e0511161384957613865565b60206102e05103610260015160206102e051036102e052613839565b61024051565b6101e0526101405261016052610180526101a0526101c0526040366102003761026060006004818352015b602061026051026101400151610240526102008051610240518181830110614b0757808201905090508152505b8151600101808352811415613896575b5050610200516138eb5760006000526000516101e051565b61020051610240526101c0516004808202821582848304141715614b07578090509050905061026052610280600060ff818352015b610240516102a0526102e060006004818352015b60206102e0510261014001516102c0526102a05161024051808202821582848304141715614b0757809050905090506102c0516004808202821582848304141715614b075780905090509050808015614b07578204905090506102a0525b8151600101808352811415613934575b505061024051610220526102605161020051808202821582848304141715614b0757809050905090506064808204905090506102a0516004808202821582848304141715614b0757809050905090508181830110614b07578082019050905061024051808202821582848304141715614b075780905090509050610260516064808210614b07578082039050905061024051808202821582848304141715614b07578090509050905060648082049050905060056102a051808202821582848304141715614b0757809050905090508181830110614b075780820190509050808015614b07578204905090506102405261022051610240511115613ad45760016102405161022051808210614b07578082039050905011613acf576102405160005250506000516101e051565b613b04565b60016102205161024051808210614b07578082039050905011613b03576102405160005250506000516101e051565b5b5b8151600101808352811415613920575b505060006000fd5b610260526101405261016052610180526101a0526101c0526101e0526102005261022052610240526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e0516101405161030052610160516103205261018051610340526101a051610360526101c051610380526101e0516103a052610200516103c052610220516103e0526103e0516103c0516103a051610380516103605161034051610320516103005160065801613782565b6104405261046052610480526104a0526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261044080516102805280602001516102a05280604001516102c05280606001516102e052506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e05161028051610300526102a051610320526102c051610340526102e05161036052610240516103805261038051610360516103405161032051610300516006580161386b565b6103e0526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103e05160005260005161026051565b610220526101405261016052610180526101a0526101c0526101e0526102005261016051610140511815614b075760006101605112614b07576004610160511215614b075760006101405112614b07576004610140511215614b07576101405161016051610180516101a0516101c0516101e0516102005161022051610240516006580161362a565b610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261026051610240526101405161016051610180516101a0516101c0516101e051610200516102205161024051610260516101a051610280526101c0516102a0526101e0516102c052610200516102e0526102405161030052610300516102e0516102c0516102a051610280516006580161386b565b61036052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610360516102605260603661028037610260516102e052610240516004808202821582848304141715614b0757809050905090506103005261032060006004818352015b61014051610320511415613ecd57610180516102a052613eff565b61016051610320511815613ef9576101a0610320516004811015614b075760200201516102a052613efe565b613f69565b5b61028080516102a0518181830110614b0757808201905090508152506102e05161026051808202821582848304141715614b0757809050905090506102a0516004808202821582848304141715614b075780905090509050808015614b07578204905090506102e0525b8151600101808352811415613eb2575b50506102e05161026051808202821582848304141715614b0757809050905090506064808202821582848304141715614b075780905090509050610300516004808202821582848304141715614b075780905090509050808015614b07578204905090506102e05261028051610260516064808202821582848304141715614b07578090509050905061030051808015614b07578204905090508181830110614b075780820190509050610320526102605161034052610360600060ff818352015b610340516102c0526103405161034051808202821582848304141715614b0757809050905090506102e0518181830110614b075780820190509050600261034051808202821582848304141715614b075780905090509050610320518181830110614b07578082019050905061026051808210614b075780820390509050808015614b0757820490509050610340526102c05161034051111561410c576001610340516102c051808210614b075780820390509050116141075761034051600052505060005161022051565b61413c565b60016102c05161034051808210614b0757808203905090501161413b5761034051600052505060005161022051565b5b5b815160010180835281141561403b575b505060006000fd5b610220526101405261016052610180526101a0526101c0526101e0526102005260006101605112614b07576004610160511215614b075760603661024037610200516102a052610140516004808202821582848304141715614b0757809050905090506102c0526102e060006004818352015b610160516102e05118156141f4576101806102e0516004811015614b07576020020151610260526141f9565b614263565b6102408051610260518181830110614b0757808201905090508152506102a05161020051808202821582848304141715614b075780905090509050610260516004808202821582848304141715614b075780905090509050808015614b07578204905090506102a0525b81516001018083528114156141c8575b50506102a05161020051808202821582848304141715614b0757809050905090506064808202821582848304141715614b0757809050905090506102c0516004808202821582848304141715614b075780905090509050808015614b07578204905090506102a05261024051610200516064808202821582848304141715614b0757809050905090506102c051808015614b07578204905090508181830110614b0757808201905090506102e0526102005161030052610320600060ff818352015b61030051610280526103005161030051808202821582848304141715614b0757809050905090506102a0518181830110614b075780820190509050600261030051808202821582848304141715614b0757809050905090506102e0518181830110614b07578082019050905061020051808210614b075780820390509050808015614b075782049050905061030052610280516103005111156144065760016103005161028051808210614b075780820390509050116144015761030051600052505060005161022051565b614436565b60016102805161030051808210614b075780820390509050116144355761030051600052505060005161022051565b5b5b8151600101808352811415614335575b505060006000fd5b6101805261014052610160526101405161016051610180516101a0516006580161362a565b6101c0526101a0526101805261016052610140526101c0516101a052601380546101c05260018101546101e052600281015461020052600381015461022052506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516101c0516102c0526101e0516102e05261020051610300526102205161032052600a80546103405260018101546103605260028101546103805260038101546103a052506103a05161038051610360516103405161032051610300516102e0516102c05160065801613782565b610400526104205261044052610460526102a05261028052610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261040080516102405280602001516102605280604001516102805280606001516102a052506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c051610240516102e052610260516103005261028051610320526102a051610340526101a05161036052610360516103405161032051610300516102e0516006580161386b565b6103c0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103c0516102c0526020546102e0526102c051610140516102c051808202821582848304141715614b0757809050905090506102e051808015614b0757820490509050808210614b075780820390509050610300526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e05161030051610320516101a0516103405261016051610360526102405161038052610260516103a052610280516103c0526102a0516103e0526103005161040052610400516103e0516103c0516103a05161038051610360516103405160065801614155565b6104605261032052610300526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526104605161032052600e546004808202821582848304141715614b075780905090509050600c8082049050905061034052608036610360376103e060006004818352015b6000610400526102406103e0516004811015614b0757602002015161042052610160516103e0511415614859576104205161030051808202821582848304141715614b0757809050905090506102c051808015614b075782049050905061032051808210614b075780820390509050610400526148a0565b610420516104205161030051808202821582848304141715614b0757809050905090506102c051808015614b0757820490509050808210614b075780820390509050610400525b610420516103405161040051808202821582848304141715614b0757809050905090506402540be40080820490509050808210614b0757808203905090506103606103e0516004811015614b075760200201525b81516001018083528114156147e1575b5050610360610160516004811015614b07576020020151610140610400525b6104005151602061040051016104005261040061040051101561494557614923565b6101a051610420526101605161044052610360516104605261038051610480526103a0516104a0526103c0516104c052610300516104e0526104e0516104c0516104a0516104805161046051610440516104205160065801614155565b610540526103e0610400525b6104005152602061040051036104005261014061040051106149cf576149ae565b61054051808210614b0757808203905090506103e052610240610160516004811015614b0757602002015161032051808210614b075780820390509050670de0b6b3a7640000808202821582848304141715614b0757809050905090506101c0610160516004811015614b07576020020151808015614b0757820490509050610400526103e0516001808210614b075780820390509050670de0b6b3a7640000808202821582848304141715614b0757809050905090506101c0610160516004811015614b07576020020151808015614b07578204905090506103e0526103e05161044052610400516103e051808210614b075780820390509050610460526040610420525b60006104205111614ae557614b01565b6020610420510361044001516020610420510361042052614ad5565b61018051565b600080fd5b61000a614b160361000a60003961000a614b16036000f3
Deployed Bytecode
0x600436101561000d57613585565b600035601c5260005134614b075763a461b3c881141561030e5760406004356004016101403760206004356004013511614b0757602a6024356004016101a037600a6024356004013511614b075760443560a01c614b075760643560a01c614b075760843560a01c614b075760a43560a01c614b0757600e54614b075761020060006004818352015b6044610200516004811015614b0757602002013561022052610220516100bb5761010c565b610220516001610200516004811015614b0757026006015560c4610200516004811015614b075760200201356001610200516004811015614b075702601301555b8151600101808352811415610096575b5050610144356064808202821582848304141715614b0757809050905090506102005261020051600f556102005160105561016435600e55336005556000601d610220527f43757276652e666920466163746f727920506c61696e20506f6f6c3a2000000061024052610220601d8060208461028001018260208501600060045af150508051820191505061014060208060208461028001018260208501600060045af150508051820191505080610280526102809050806017602082510161012060006003818352015b826101205160200211156101ea5761020c565b61012051602002850151610120518501555b81516001018083528114156101d7575b50505050505060006101a0600a8060208461028001018260208501600060045af15050805182019150506002610220527f2d660000000000000000000000000000000000000000000000000000000000006102405261022060028060208461028001018260208501600060045af15050805182019150508061028052610280905080601b602082510161012060006002818352015b826101205160200211156102b4576102d6565b61012051602002850151610120518501555b81516001018083528114156102a1575b5050505050506000610220523060007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610220a3005b63313ce56781141561032557601260005260206000f35b63a9059cbb8114156103715760043560a01c614b0757336101405260043561016052602435610180526101805161016051610140516006580161358b565b600050600160005260206000f35b6323b872dd8114156104485760043560a01c614b075760243560a01c614b07576004356101405260243561016052604435610180526101805161016051610140516006580161358b565b600050601f60043560e05260c052604060c0203360e05260c052604060c02054610140527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61014051181561043d5761014051604435808210614b075780820390509050601f60043560e05260c052604060c0203360e05260c052604060c020555b600160005260206000f35b63095ea7b38114156104bb5760043560a01c614b0757602435601f3360e05260c052604060c02060043560e05260c052604060c0205560243561014052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610140a3600160005260206000f35b6314f059798114156104f257600a80546101605260018101546101805260028101546101a05260038101546101c052506080610160f35b63fee3f7f981141561050d5764012a05f20060005260206000f35b63f446c1d081141561053c576006580161362a565b610140526101405160648082049050905060005260206000f35b6376a2f0f0811415610562576006580161362a565b610140526101405160005260206000f35b63bb7b8b8081141561071757610140516006580161362a565b610160526101405261016051610140526101405161016051610180516101a0516101c051601380546101e05260018101546102005260028101546102205260038101546102405250600a80546102605260018101546102805260028101546102a05260038101546102c052506102c0516102a05161028051610260516102405161022051610200516101e05160065801613782565b610320526103405261036052610380526101c0526101a05261018052610160526101405261032080516101605280602001516101805280604001516101a05280606001516101c052506101405161016051610180516101a0516101c0516101e051610160516102005261018051610220526101a051610240526101c05161026052610140516102805261028051610260516102405161022051610200516006580161386b565b6102e0526101e0526101c0526101a0526101805261016052610140526102e0516101e0526101e051670de0b6b3a7640000808202821582848304141715614b075780905090509050602054808015614b075782049050905060005260206000f35b63cf701ff78114156109fd5760843560011c614b0757610140516006580161362a565b61016052610140526101605161014052600a80546101605260018101546101805260028101546101a05260038101546101c052506101405161016051610180516101a0516101c0516101e0516013805461020052600181015461022052600281015461024052600381015461026052506101605161028052610180516102a0526101a0516102c0526101c0516102e0526101405161030052610300516102e0516102c0516102a051610280516102605161024051610220516102005160065801613b1d565b610360526101e0526101c0526101a052610180526101605261014052610360516101e05261020060006004818352015b6004610200516004811015614b07576020020135610220526084351561088157610160610200516004811015614b0757602002018051610220518181830110614b0757808201905090508152506108ad565b610160610200516004811015614b075760200201805161022051808210614b0757808203905090508152505b5b815160010180835281141561082f575b50506101405161016051610180516101a0516101c0516101e05161020051601380546102205260018101546102405260028101546102605260038101546102805250610160516102a052610180516102c0526101a0516102e0526101c05161030052610140516103205261032051610300516102e0516102c0516102a0516102805161026051610240516102205160065801613b1d565b61038052610200526101e0526101c0526101a0526101805261016052610140526103805161020052600061022052608435156109aa57610200516101e051808210614b075780820390509050610220526109c5565b6101e05161020051808210614b075780820390509050610220525b61022051602054808202821582848304141715614b0757809050905090506101e051808015614b075782049050905060005260206000f35b63029b2f34811415610a13573361014052610a3e565b63cb495064811415610a395760a43560a01c614b0757602060a461014037600050610a3e565b61130e565b600054614b0757600160005561014051610160516006580161362a565b6101805261016052610140526101805161016052600a80546101805260018101546101a05260028101546101c05260038101546101e052506013805461020052600181015461022052600281015461024052600381015461026052506101405161016051610180516101a0516101c0516101e0516102005161022051610240516102605161028051610200516102a052610220516102c052610240516102e052610260516103005261018051610320526101a051610340526101c051610360526101e05161038052610160516103a0526103a05161038051610360516103405161032051610300516102e0516102c0516102a05160065801613b1d565b6104005261028052610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261040051610280526020546102a052610180516102c0526101a0516102e0526101c051610300526101e0516103205261034060006004818352015b6004610340516004811015614b07576020020135610360526000610360511115610d5b57600060046103e0527f23b872dd00000000000000000000000000000000000000000000000000000000610400526103e060048060208461044001018260208501600060045af1505080518201915050336020826104400101526020810190503060208261044001015260208101905061036051602082610440010152602081019050806104405261044090508051602001806105008284600060045af115614b0757505060206105e06105005161052060006001610340516004811015614b075702600601545af115614b075760203d80821115610cc55780610cc7565b815b905090506105c0526105c08051602001806103808284600060045af115614b075750506000610380511115610d29576103808060200151600082518060209013614b075780919012614b0757806020036101000a820490509050905015614b07575b6102c0610340516004811015614b0757602002018051610360518181830110614b075780820190509050815250610d68565b60006102a0511815614b07575b5b8151600101808352811415610bc3575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e05161030051610320516103405161020051610360526102205161038052610240516103a052610260516103c0526102c0516103e0526102e05161040052610300516104205261032051610440526101605161046052610460516104405161042051610400516103e0516103c0516103a051610380516103605160065801613b1d565b6104c0526103405261032052610300526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526104c0516103405261028051610340511115614b075760a0366103603760006102a051111561119a57600e546004808202821582848304141715614b075780905090509050600c808204905090506104005261042060006004818352015b61034051610180610420516004811015614b07576020020151808202821582848304141715614b07578090509050905061028051808015614b0757820490509050610440526000610460526102c0610420516004811015614b075760200201516104805261048051610440511115610f6b576104405161048051808210614b07578082039050905061046052610f86565b6104805161044051808210614b075780820390509050610460525b6104005161046051808202821582848304141715614b0757809050905090506402540be40080820490509050610360610420516004811015614b0757602002015261048051610360610420516004811015614b0757602002015164012a05f200808202821582848304141715614b0757809050905090506402540be40080820490509050808210614b0757808203905090506001610420516004811015614b075702600a01556102c0610420516004811015614b0757602002018051610360610420516004811015614b07576020020151808210614b0757808203905090508152505b8151600101808352811415610eda575b5050610140610440525b610440515160206104405101610440526104406104405110156110a557611083565b61020051610460526102205161048052610240516104a052610260516104c0526102c0516104e0526102e05161050052610300516105205261032051610540526101605161056052610560516105405161052051610500516104e0516104c0516104a051610480516104605160065801613b1d565b6105c052610420610440525b61044051526020610440510361044052610140610440511061114757611126565b6105c051610420526102a0516104205161028051808210614b075780820390509050808202821582848304141715614b07578090509050905061028051808015614b07578204905090506103e0526111c7565b600a6102c05181556102e051600182015561030051600282015561032051600382015550610340516103e0525b6084356103e0511015611219576308c379a0610400526020610420526014610440527f536c697070616765207363726577656420796f750000000000000000000000006104605261044050606461041cfd5b6102a080516103e0518181830110614b075780820190509050815250601e6101405160e05260c052604060c02080546103e0518181830110614b0757808201905090508155506102a0516020556103e051610400526101405160007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610400a360806004610400376103605161048052610380516104a0526103a0516104c0526103c0516104e05261034051610500526102a05161052052337f3f1915775e0c9a38a57a7bb7f1f9005f486fb904e1f84aa215364d567319a58d610140610400a26103e051600052600060005560206000f35b635e0d443f811415611634576004358080600081121561132a57195b607f1c614b07579050506024358080600081121561134457195b607f1c614b0757905050601380546101405260018101546101605260028101546101805260038101546101a052506101405161016051610180516101a0516101c0516101e05161020051610220516101405161024052610160516102605261018051610280526101a0516102a052600a80546102c05260018101546102e0526002810154610300526003810154610320525061032051610300516102e0516102c0516102a05161028051610260516102405160065801613782565b610380526103a0526103c0526103e05261022052610200526101e0526101c0526101a05261018052610160526101405261038080516101c05280602001516101e052806040015161020052806060015161022052506101c06004356004811015614b075760200201516044356101406004356004811015614b07576020020151808202821582848304141715614b075780905090509050670de0b6b3a7640000808204905090508181830110614b075780820190509050610240526101405161016051610180516101a0516101c0516101e051610200516102205161024051610260516040600461028037610240516102c0526101c0516102e0526101e05161030052610200516103205261022051610340526103405161032051610300516102e0516102c0516102a0516102805160065801613d1c565b6103a052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103a051610260526101c06024356004811015614b0757602002015161026051808210614b0757808203905090506001808210614b07578082039050905061028052600e5461028051808202821582848304141715614b0757809050905090506402540be400808204905090506102a052610280516102a051808210614b075780820390509050670de0b6b3a7640000808202821582848304141715614b0757809050905090506101406024356004811015614b07576020020151808015614b075782049050905060005260206000f35b633df0212481141561164a573361014052611675565b63ddc1f59d8114156116705760843560a01c614b07576020608461014037600050611675565b611e48565b600154614b075760016001556004358080600081121561169157195b607f1c614b0757905050602435808060008112156116ab57195b607f1c614b0757905050601380546101605260018101546101805260028101546101a05260038101546101c05250600a80546101e052600181015461020052600281015461022052600381015461024052506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c051610160516102e05261018051610300526101a051610320526101c051610340526101e051610360526102005161038052610220516103a052610240516103c0526103c0516103a05161038051610360516103405161032051610300516102e05160065801613782565b610420526104405261046052610480526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261042080516102605280602001516102805280604001516102a05280606001516102c052506102606004356004811015614b075760200201516044356101606004356004811015614b07576020020151808202821582848304141715614b075780905090509050670de0b6b3a7640000808204905090508181830110614b0757808201905090506102e0526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e0516103005160406004610320376102e051610360526102605161038052610280516103a0526102a0516103c0526102c0516103e0526103e0516103c0516103a0516103805161036051610340516103205160065801613d1c565b61044052610300526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261044051610300526102606024356004811015614b0757602002015161030051808210614b0757808203905090506001808210614b0757808203905090506103205261032051600e54808202821582848304141715614b0757809050905090506402540be40080820490509050610340526103205161034051808210614b075780820390509050670de0b6b3a7640000808202821582848304141715614b0757809050905090506101606024356004811015614b07576020020151808015614b075782049050905061032052606435610320511015611a7d576308c379a061036052602061038052602e6103a0527f45786368616e676520726573756c74656420696e20666577657220636f696e736103c0527f207468616e2065787065637465640000000000000000000000000000000000006103e0526103a050608461037cfd5b6103405164012a05f200808202821582848304141715614b0757809050905090506402540be400808204905090506103605261036051670de0b6b3a7640000808202821582848304141715614b0757809050905090506101606024356004811015614b07576020020151808015614b0757820490509050610360526101e06004356004811015614b075760200201516044358181830110614b07578082019050905060016004356004811015614b075702600a01556101e06024356004811015614b0757602002015161032051808210614b07578082039050905061036051808210614b07578082039050905060016024356004811015614b075702600a0155600060046103e0527f23b872dd00000000000000000000000000000000000000000000000000000000610400526103e060048060208461044001018260208501600060045af15050805182019150503360208261044001015260208101905030602082610440010152602081019050604435602082610440010152602081019050806104405261044090508051602001806105008284600060045af115614b0757505060206105e061050051610520600060016004356004811015614b075702600601545af115614b075760203d80821115611c595780611c5b565b815b905090506105c0526105c08051602001806103808284600060045af115614b075750506000610380511115611cbd576103808060200151600082518060209013614b075780919012614b0757806020036101000a820490509050905015614b07575b600060046103e0527fa9059cbb00000000000000000000000000000000000000000000000000000000610400526103e060048060208461044001018260208501600060045af15050805182019150506101405160208261044001015260208101905061032051602082610440010152602081019050806104405261044090508051602001806104e08284600060045af115614b0757505060206105a06104e051610500600060016024356004811015614b075702600601545af115614b075760203d80821115611d8d5780611d8f565b815b90509050610580526105808051602001806103808284600060045af115614b075750506000610380511115611df1576103808060200151600082518060209013614b075780919012614b0757806020036101000a820490509050905015614b07575b6004356103e05260443561040052602435610420526103205161044052337f8b3e96f2b889fa771c53c981b40daf005f63f637f1869f707052d15a3dd9714060806103e0a261032051600052600060015560206000f35b637d49d875811415611e5e573361014052611e89565b63b2fdb76f811415611e845760a43560a01c614b0757602060a461014037600050611e89565b6121e6565b600254614b07576001600255602054610160526080366101803761020060006004818352015b6001610200516004811015614b075702600a01546102205261022051600435808202821582848304141715614b07578090509050905061016051808015614b0757820490509050610240526024610200516004811015614b07576020020135610240511015611f82576308c379a06102605260206102805260306102a0527f5769746864726177616c20726573756c74656420696e20666577657220636f696102c0527f6e73207468616e206578706563746564000000000000000000000000000000006102e0526102a050608461027cfd5b6102205161024051808210614b0757808203905090506001610200516004811015614b075702600a015561024051610180610200516004811015614b07576020020152600060046102c0527fa9059cbb000000000000000000000000000000000000000000000000000000006102e0526102c060048060208461032001018260208501600060045af15050805182019150506101405160208261032001015260208101905061024051602082610320010152602081019050806103205261032090508051602001806103c08284600060045af115614b0757505060206104806103c0516103e060006001610200516004811015614b075702600601545af115614b075760203d808211156120965780612098565b815b90509050610460526104608051602001806102608284600060045af115614b0757505060006102605111156120fa576102608060200151600082518060209013614b075780919012614b0757806020036101000a820490509050905015614b07575b5b8151600101808352811415611eaf575b50506101608051600435808210614b075780820390509050815250601e3360e05260c052604060c0208054600435808210614b07578082039050905081555061016051602055600435610200526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610200a361018051610200526101a051610220526101c051610240526101e05161026052608036610280376101605161030052337f9878ca375e106f2a43c3b599fc624568131c4c9a4ba66a14563715763be9d59d610120610200a260006002556080610180f35b6318a7bd768114156121fc573361014052612227565b634ab3a82b8114156122225760a43560a01c614b0757602060a461014037600050612227565b612af4565b600354614b0757600160035561014051610160516006580161362a565b6101805261016052610140526101805161016052601380546101805260018101546101a05260028101546101c05260038101546101e05250600a805461020052600181015461022052600281015461024052600381015461026052506101405161016051610180516101a0516101c0516101e0516102005161022051610240516102605161028051610180516102a0526101a0516102c0526101c0516102e0526101e051610300526102005161032052610220516103405261024051610360526102605161038052610160516103a0526103a05161038051610360516103405161032051610300516102e0516102c0516102a05160065801613b1d565b6104005261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526104005161028052610200516102a052610220516102c052610240516102e052610260516103005261032060006004818352015b6004610320516004811015614b0757602002013561034052600061034051181561252a576102a0610320516004811015614b075760200201805161034051808210614b075780820390509050815250600060046103c0527fa9059cbb000000000000000000000000000000000000000000000000000000006103e0526103c060048060208461042001018260208501600060045af15050805182019150506101405160208261042001015260208101905061034051602082610420010152602081019050806104205261042090508051602001806104c08284600060045af115614b0757505060206105806104c0516104e060006001610320516004811015614b075702600601545af115614b075760203d808211156124c557806124c7565b815b90509050610560526105608051602001806103608284600060045af115614b075750506000610360511115612529576103608060200151600082518060209013614b075780919012614b0757806020036101000a820490509050905015614b07575b5b5b81516001018083528114156123a5575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e051610300516103205161018051610340526101a051610360526101c051610380526101e0516103a0526102a0516103c0526102c0516103e0526102e05161040052610300516104205261016051610440526104405161042051610400516103e0516103c0516103a05161038051610360516103405160065801613b1d565b6104a05261032052610300526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526104a0516103205260803661034037600e546004808202821582848304141715614b075780905090509050600c808204905090506103c0526103e060006004818352015b610320516102006103e0516004811015614b07576020020151808202821582848304141715614b07578090509050905061028051808015614b0757820490509050610400526000610420526102a06103e0516004811015614b07576020020151610440526104405161040051111561270b576104005161044051808210614b07578082039050905061042052612726565b6104405161040051808210614b075780820390509050610420525b6103c05161042051808202821582848304141715614b0757809050905090506402540be400808204905090506103406103e0516004811015614b07576020020152610440516103406103e0516004811015614b0757602002015164012a05f200808202821582848304141715614b0757809050905090506402540be40080820490509050808210614b07578082039050905060016103e0516004811015614b075702600a01556102a06103e0516004811015614b07576020020180516103406103e0516004811015614b07576020020151808210614b0757808203905090508152505b815160010180835281141561267a575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e05161030051610320516103405161036051610380516103a0516103c0516103e05161018051610400526101a051610420526101c051610440526101e051610460526102a051610480526102c0516104a0526102e0516104c052610300516104e0526101605161050052610500516104e0516104c0516104a051610480516104605161044051610420516104005160065801613b1d565b610560526103e0526103c0526103a05261038052610360526103405261032052610300526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610560516103e05260205461040052610280516103e051808210614b07578082039050905061040051808202821582848304141715614b07578090509050905061028051808015614b075782049050905060018181830110614b075780820190509050610420526001610420511115614b0757608435610420511115612a09576308c379a0610440526020610460526014610480527f536c697070616765207363726577656420796f750000000000000000000000006104a05261048050606461045cfd5b610400805161042051808210614b07578082039050905081525061040051602055601e3360e05260c052604060c020805461042051808210614b07578082039050905081555061042051610440526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610440a36080600461044037610340516104c052610360516104e05261038051610500526103a0516105205261032051610540526104005161056052337fb964b72f73f5ef5bf0fdc559b2fab9a7b12a39e47817a547f1f0aee47febd602610140610440a261042051600052600060035560206000f35b63cc2b27d7811415612b4e5760243580806000811215612b1057195b607f1c614b0757905050600435610140526024356101605261016051610140516006580161444f565b6101c0526101e0526101c05160005260206000f35b631a4d01d2811415612b64573361014052612b8f565b63081579a5811415612b8a5760643560a01c614b07576020606461014037600050612b8f565b612eb9565b600454614b0757600160045560243580806000811215612bab57195b607f1c614b07579050506101405161016051610180516004356101a0526024356101c0526101c0516101a0516006580161444f565b610220526102405261018052610160526101405261022080516101605280602001516101805250604435610160511015612c59576308c379a06101a05260206101c05260186101e0527f4e6f7420656e6f75676820636f696e732072656d6f7665640000000000000000610200526101e05060646101bcfd5b60016024356004811015614b075702600a018054610160516101805164012a05f200808202821582848304141715614b0757809050905090506402540be400808204905090508181830110614b075780820190509050808210614b075780820390509050815550602054600435808210614b0757808203905090506101a0526101a051602055601e3360e05260c052604060c0208054600435808210614b0757808203905090508155506004356101c0526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101c0a360006004610220527fa9059cbb000000000000000000000000000000000000000000000000000000006102405261022060048060208461028001018260208501600060045af15050805182019150506101405160208261028001015260208101905061016051602082610280010152602081019050806102805261028090508051602001806103208284600060045af115614b0757505060206103e061032051610340600060016024356004811015614b075702600601545af115614b075760203d80821115612e045780612e06565b815b905090506103c0526103c08051602001806101c08284600060045af115614b0757505060006101c0511115612e68576101c08060200151600082518060209013614b075780919012614b0757806020036101000a820490509050905015614b07575b6004356102205261016051610240526101a05161026052337f5ad056f2e28a8cec232015406b843668c1e36cda598127ec3b8c59b8c72773a06060610220a261016051600052600060045560206000f35b633c157e6481141561304d5760206101a0600463f851a4406101405261015c6005545afa15614b0757601f3d1115614b07576000506101a051331415614b0757601154620151808181830110614b0757808201905090504210614b075742620151808181830110614b07578082019050905060243510614b0757610140516006580161362a565b610160526101405261016051610140526004356064808202821582848304141715614b0757809050905090506101605260006004351115612f8857620f424060043510612f8b565b60005b15614b075761014051610160511015612fc9576101405161016051600a808202821582848304141715614b07578090509050905010614b0757612ff0565b61014051600a808202821582848304141715614b0757809050905090506101605111614b07575b61014051600f5561016051601055426011556024356012556101405161018052610160516101a052426101c0526024356101e0527fa2b71ec6df949300b59aab36b55e189697b750119dd349fcfa8c0f779e83c2546080610180a1005b63551a65888114156130f65760206101a0600463f851a4406101405261015c6005545afa15614b0757601f3d1115614b07576000506101a051331415614b0757610140516006580161362a565b6101605261014052610160516101405261014051600f55610140516010554260115542601255610140516101605242610180527f46e22fb3709ad289f62ce63d469248536dbc78d82b84a3d7e74ad606dc2019386040610160a1005b63e2e7d26481141561316e5760206101c060246370a0823161014052306101605261015c60016004356004811015614b075702600601545afa15614b0757601f3d1115614b07576000506101c05160016004356004811015614b075702600a0154808210614b07578082039050905060005260206000f35b6330c540858114156132f15760206101e0602463154aa8f561016052306101805261017c6005545afa15614b0757601f3d1115614b07576000506101e0516101405261016060006004818352015b6001610160516004811015614b0757026006015461018052602061024060246370a082316101c052306101e0526101dc610180515afa15614b0757601f3d1115614b0757600050610240516001610160516004811015614b075702600a0154808210614b0757808203905090506101a052600060046101c0527fa9059cbb000000000000000000000000000000000000000000000000000000006101e0526101c060048060208461022001018260208501600060045af1505080518201915050610140516020826102200101526020810190506101a051602082610220010152602081019050806102205261022090508051602001806102c08284600060045af115614b07575050600060006102c0516102e06000610180515af115614b07575b81516001018083528114156131bc575b5050005b63c66106578114156133195760016004356004811015614b0757026006015460005260206000f35b634903b0d18114156133415760016004356004811015614b075702600a015460005260206000f35b63ddca3f4381141561335957600e5460005260206000f35b635409491a81141561337157600f5460005260206000f35b63b4b577ad8114156133895760105460005260206000f35b632081066c8114156133a15760115460005260206000f35b63140522888114156133b95760125460005260206000f35b6306fdde0381141561345657601780610180602082540161012060006003818352015b826101205160200211156133ef57613411565b61012051850154610120516020028501525b81516001018083528114156133dc575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f35b6395d89b418114156134f357601b80610180602082540161012060006002818352015b8261012051602002111561348c576134ae565b61012051850154610120516020028501525b8151600101808352811415613479575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f35b6370a082318114156135235760043560a01c614b0757601e60043560e05260c052604060c0205460005260206000f35b63dd62ed3e81141561356b5760043560a01c614b075760243560a01c614b0757601f60043560e05260c052604060c02060243560e05260c052604060c0205460005260206000f35b6318160ddd8114156135835760205460005260206000f35b505b60006000fd5b6101a052610140526101605261018052601e6101405160e05260c052604060c020805461018051808210614b075780820390509050815550601e6101605160e05260c052604060c0208054610180518181830110614b075780820190509050815550610180516101c05261016051610140517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101c0a36101a051565b6101405260125461016052601054610180526101605142101561377057600f546101a0526011546101c0526101a0516101805111156136ea576101a051610180516101a051808210614b075780820390509050426101c051808210614b075780820390509050808202821582848304141715614b075780905090509050610160516101c051808210614b075780820390509050808015614b07578204905090508181830110614b075780820190509050600052600051610140515661376b565b6101a0516101a05161018051808210614b075780820390509050426101c051808210614b075780820390509050808202821582848304141715614b075780905090509050610160516101c051808210614b075780820390509050808015614b0757820490509050808210614b07578082039050905060005260005161014051565b613780565b6101805160005260005161014051565b005b610240526101405261016052610180526101a0526101c0526101e0526102005261022052608036610260376102e060006004818352015b6101406102e0516004811015614b075760200201516101c06102e0516004811015614b07576020020151808202821582848304141715614b075780905090509050670de0b6b3a7640000808204905090506102606102e0516004811015614b075760200201525b81516001018083528114156137b9575b505060806102e0525b60006102e0511161384957613865565b60206102e05103610260015160206102e051036102e052613839565b61024051565b6101e0526101405261016052610180526101a0526101c0526040366102003761026060006004818352015b602061026051026101400151610240526102008051610240518181830110614b0757808201905090508152505b8151600101808352811415613896575b5050610200516138eb5760006000526000516101e051565b61020051610240526101c0516004808202821582848304141715614b07578090509050905061026052610280600060ff818352015b610240516102a0526102e060006004818352015b60206102e0510261014001516102c0526102a05161024051808202821582848304141715614b0757809050905090506102c0516004808202821582848304141715614b075780905090509050808015614b07578204905090506102a0525b8151600101808352811415613934575b505061024051610220526102605161020051808202821582848304141715614b0757809050905090506064808204905090506102a0516004808202821582848304141715614b0757809050905090508181830110614b07578082019050905061024051808202821582848304141715614b075780905090509050610260516064808210614b07578082039050905061024051808202821582848304141715614b07578090509050905060648082049050905060056102a051808202821582848304141715614b0757809050905090508181830110614b075780820190509050808015614b07578204905090506102405261022051610240511115613ad45760016102405161022051808210614b07578082039050905011613acf576102405160005250506000516101e051565b613b04565b60016102205161024051808210614b07578082039050905011613b03576102405160005250506000516101e051565b5b5b8151600101808352811415613920575b505060006000fd5b610260526101405261016052610180526101a0526101c0526101e0526102005261022052610240526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e0516101405161030052610160516103205261018051610340526101a051610360526101c051610380526101e0516103a052610200516103c052610220516103e0526103e0516103c0516103a051610380516103605161034051610320516103005160065801613782565b6104405261046052610480526104a0526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261044080516102805280602001516102a05280604001516102c05280606001516102e052506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e05161028051610300526102a051610320526102c051610340526102e05161036052610240516103805261038051610360516103405161032051610300516006580161386b565b6103e0526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103e05160005260005161026051565b610220526101405261016052610180526101a0526101c0526101e0526102005261016051610140511815614b075760006101605112614b07576004610160511215614b075760006101405112614b07576004610140511215614b07576101405161016051610180516101a0516101c0516101e0516102005161022051610240516006580161362a565b610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261026051610240526101405161016051610180516101a0516101c0516101e051610200516102205161024051610260516101a051610280526101c0516102a0526101e0516102c052610200516102e0526102405161030052610300516102e0516102c0516102a051610280516006580161386b565b61036052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610360516102605260603661028037610260516102e052610240516004808202821582848304141715614b0757809050905090506103005261032060006004818352015b61014051610320511415613ecd57610180516102a052613eff565b61016051610320511815613ef9576101a0610320516004811015614b075760200201516102a052613efe565b613f69565b5b61028080516102a0518181830110614b0757808201905090508152506102e05161026051808202821582848304141715614b0757809050905090506102a0516004808202821582848304141715614b075780905090509050808015614b07578204905090506102e0525b8151600101808352811415613eb2575b50506102e05161026051808202821582848304141715614b0757809050905090506064808202821582848304141715614b075780905090509050610300516004808202821582848304141715614b075780905090509050808015614b07578204905090506102e05261028051610260516064808202821582848304141715614b07578090509050905061030051808015614b07578204905090508181830110614b075780820190509050610320526102605161034052610360600060ff818352015b610340516102c0526103405161034051808202821582848304141715614b0757809050905090506102e0518181830110614b075780820190509050600261034051808202821582848304141715614b075780905090509050610320518181830110614b07578082019050905061026051808210614b075780820390509050808015614b0757820490509050610340526102c05161034051111561410c576001610340516102c051808210614b075780820390509050116141075761034051600052505060005161022051565b61413c565b60016102c05161034051808210614b0757808203905090501161413b5761034051600052505060005161022051565b5b5b815160010180835281141561403b575b505060006000fd5b610220526101405261016052610180526101a0526101c0526101e0526102005260006101605112614b07576004610160511215614b075760603661024037610200516102a052610140516004808202821582848304141715614b0757809050905090506102c0526102e060006004818352015b610160516102e05118156141f4576101806102e0516004811015614b07576020020151610260526141f9565b614263565b6102408051610260518181830110614b0757808201905090508152506102a05161020051808202821582848304141715614b075780905090509050610260516004808202821582848304141715614b075780905090509050808015614b07578204905090506102a0525b81516001018083528114156141c8575b50506102a05161020051808202821582848304141715614b0757809050905090506064808202821582848304141715614b0757809050905090506102c0516004808202821582848304141715614b075780905090509050808015614b07578204905090506102a05261024051610200516064808202821582848304141715614b0757809050905090506102c051808015614b07578204905090508181830110614b0757808201905090506102e0526102005161030052610320600060ff818352015b61030051610280526103005161030051808202821582848304141715614b0757809050905090506102a0518181830110614b075780820190509050600261030051808202821582848304141715614b0757809050905090506102e0518181830110614b07578082019050905061020051808210614b075780820390509050808015614b075782049050905061030052610280516103005111156144065760016103005161028051808210614b075780820390509050116144015761030051600052505060005161022051565b614436565b60016102805161030051808210614b075780820390509050116144355761030051600052505060005161022051565b5b5b8151600101808352811415614335575b505060006000fd5b6101805261014052610160526101405161016051610180516101a0516006580161362a565b6101c0526101a0526101805261016052610140526101c0516101a052601380546101c05260018101546101e052600281015461020052600381015461022052506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516101c0516102c0526101e0516102e05261020051610300526102205161032052600a80546103405260018101546103605260028101546103805260038101546103a052506103a05161038051610360516103405161032051610300516102e0516102c05160065801613782565b610400526104205261044052610460526102a05261028052610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261040080516102405280602001516102605280604001516102805280606001516102a052506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c051610240516102e052610260516103005261028051610320526102a051610340526101a05161036052610360516103405161032051610300516102e0516006580161386b565b6103c0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103c0516102c0526020546102e0526102c051610140516102c051808202821582848304141715614b0757809050905090506102e051808015614b0757820490509050808210614b075780820390509050610300526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e05161030051610320516101a0516103405261016051610360526102405161038052610260516103a052610280516103c0526102a0516103e0526103005161040052610400516103e0516103c0516103a05161038051610360516103405160065801614155565b6104605261032052610300526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526104605161032052600e546004808202821582848304141715614b075780905090509050600c8082049050905061034052608036610360376103e060006004818352015b6000610400526102406103e0516004811015614b0757602002015161042052610160516103e0511415614859576104205161030051808202821582848304141715614b0757809050905090506102c051808015614b075782049050905061032051808210614b075780820390509050610400526148a0565b610420516104205161030051808202821582848304141715614b0757809050905090506102c051808015614b0757820490509050808210614b075780820390509050610400525b610420516103405161040051808202821582848304141715614b0757809050905090506402540be40080820490509050808210614b0757808203905090506103606103e0516004811015614b075760200201525b81516001018083528114156147e1575b5050610360610160516004811015614b07576020020151610140610400525b6104005151602061040051016104005261040061040051101561494557614923565b6101a051610420526101605161044052610360516104605261038051610480526103a0516104a0526103c0516104c052610300516104e0526104e0516104c0516104a0516104805161046051610440516104205160065801614155565b610540526103e0610400525b6104005152602061040051036104005261014061040051106149cf576149ae565b61054051808210614b0757808203905090506103e052610240610160516004811015614b0757602002015161032051808210614b075780820390509050670de0b6b3a7640000808202821582848304141715614b0757809050905090506101c0610160516004811015614b07576020020151808015614b0757820490509050610400526103e0516001808210614b075780820390509050670de0b6b3a7640000808202821582848304141715614b0757809050905090506101c0610160516004811015614b07576020020151808015614b07578204905090506103e0526103e05161044052610400516103e051808210614b075780820390509050610460526040610420525b60006104205111614ae557614b01565b6020610420510361044001516020610420510361042052614ad5565b61018051565b600080fd
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.