Overview
ETH Balance
0 ETH
Eth Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 3,451 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exchange_underly... | 21407237 | 25 days ago | IN | 0 ETH | 0.00200135 | ||||
Remove_liquidity... | 20656784 | 130 days ago | IN | 0 ETH | 0.00020218 | ||||
Exchange_underly... | 20646276 | 131 days ago | IN | 0 ETH | 0.00016547 | ||||
Remove_liquidity | 20096793 | 208 days ago | IN | 0 ETH | 0.00041085 | ||||
Exchange_underly... | 19590303 | 279 days ago | IN | 0 ETH | 0.04651932 | ||||
Exchange | 19454227 | 298 days ago | IN | 0 ETH | 0.00367699 | ||||
Exchange | 19454073 | 298 days ago | IN | 0 ETH | 0.00366429 | ||||
Exchange | 19453490 | 298 days ago | IN | 0 ETH | 0.00270934 | ||||
Exchange | 19453448 | 298 days ago | IN | 0 ETH | 0.00373559 | ||||
Exchange_underly... | 19343492 | 314 days ago | IN | 0 ETH | 0.01216365 | ||||
Exchange_underly... | 19343453 | 314 days ago | IN | 0 ETH | 0.05050241 | ||||
Exchange_underly... | 19245644 | 327 days ago | IN | 0 ETH | 0.00459851 | ||||
Exchange_underly... | 19040088 | 356 days ago | IN | 0 ETH | 0.00503068 | ||||
Remove_liquidity... | 18586326 | 420 days ago | IN | 0 ETH | 0.00659844 | ||||
Exchange_underly... | 18503805 | 431 days ago | IN | 0 ETH | 0.00425591 | ||||
Exchange_underly... | 17868346 | 520 days ago | IN | 0 ETH | 0.00400124 | ||||
Exchange_underly... | 17592700 | 559 days ago | IN | 0 ETH | 0.01230043 | ||||
Exchange_underly... | 17499852 | 572 days ago | IN | 0 ETH | 0.00364697 | ||||
Exchange_underly... | 17435856 | 581 days ago | IN | 0 ETH | 0.00639539 | ||||
Exchange_underly... | 17096485 | 629 days ago | IN | 0 ETH | 0.01059339 | ||||
Exchange_underly... | 17096472 | 629 days ago | IN | 0 ETH | 0.01015969 | ||||
Exchange_underly... | 16810955 | 669 days ago | IN | 0 ETH | 0.00408834 | ||||
Exchange_underly... | 16810952 | 669 days ago | IN | 0 ETH | 0.00416569 | ||||
Exchange_underly... | 16810781 | 669 days ago | IN | 0 ETH | 0.00677804 | ||||
Exchange_underly... | 16806410 | 670 days ago | IN | 0 ETH | 0.01071048 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Vyper_contract
Compiler Version
vyper:0.2.8
Contract Source Code (Vyper language format)
# @version 0.2.8 """ @title StableSwap @author Curve.Fi @license Copyright (c) Curve.Fi, 2021 - all rights reserved @notice Metapool implementation @dev Swaps between 3pool and USDP """ from vyper.interfaces import ERC20 interface CurveToken: def totalSupply() -> uint256: view def mint(_to: address, _value: uint256) -> bool: nonpayable def burnFrom(_to: address, _value: uint256) -> bool: nonpayable interface Curve: def coins(i: uint256) -> address: view def get_virtual_price() -> uint256: view def calc_token_amount(amounts: uint256[BASE_N_COINS], deposit: bool) -> uint256: view def calc_withdraw_one_coin(_token_amount: uint256, i: int128) -> uint256: view def fee() -> uint256: view def get_dy(i: int128, j: int128, dx: uint256) -> uint256: view def get_dy_underlying(i: int128, j: int128, dx: uint256) -> uint256: view def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256): nonpayable def add_liquidity(amounts: uint256[BASE_N_COINS], min_mint_amount: uint256): nonpayable def remove_liquidity_one_coin(_token_amount: uint256, i: int128, min_amount: uint256): nonpayable # Events event TokenExchange: buyer: indexed(address) sold_id: int128 tokens_sold: uint256 bought_id: int128 tokens_bought: uint256 event TokenExchangeUnderlying: 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 CommitNewAdmin: deadline: indexed(uint256) admin: indexed(address) event NewAdmin: admin: indexed(address) event CommitNewFee: deadline: indexed(uint256) fee: uint256 admin_fee: uint256 event NewFee: fee: uint256 admin_fee: 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) = 2 MAX_COIN: constant(int128) = N_COINS - 1 FEE_DENOMINATOR: constant(uint256) = 10 ** 10 PRECISION: constant(uint256) = 10 ** 18 # The precision to convert to RATES: constant(uint256[N_COINS]) = [1000000000000000000, 1000000000000000000] BASE_N_COINS: constant(int128) = 3 # An asset which may have a transfer fee (USDT) FEE_ASSET: constant(address) = 0xdAC17F958D2ee523a2206206994597C13D831ec7 MAX_ADMIN_FEE: constant(uint256) = 10 * 10 ** 9 MAX_FEE: constant(uint256) = 5 * 10 ** 9 MAX_A: constant(uint256) = 10 ** 6 MAX_A_CHANGE: constant(uint256) = 10 ADMIN_ACTIONS_DELAY: constant(uint256) = 3 * 86400 MIN_RAMP_TIME: constant(uint256) = 86400 coins: public(address[N_COINS]) balances: public(uint256[N_COINS]) fee: public(uint256) # fee * 1e10 admin_fee: public(uint256) # admin_fee * 1e10 owner: public(address) lp_token: public(address) # Token corresponding to the pool is always the last one BASE_CACHE_EXPIRES: constant(int128) = 10 * 60 # 10 min base_pool: public(address) base_virtual_price: public(uint256) base_cache_updated: public(uint256) base_coins: public(address[BASE_N_COINS]) A_PRECISION: constant(uint256) = 100 initial_A: public(uint256) future_A: public(uint256) initial_A_time: public(uint256) future_A_time: public(uint256) admin_actions_deadline: public(uint256) transfer_ownership_deadline: public(uint256) future_fee: public(uint256) future_admin_fee: public(uint256) future_owner: public(address) is_killed: bool kill_deadline: uint256 KILL_DEADLINE_DT: constant(uint256) = 2 * 30 * 86400 @external def __init__( _owner: address, _coins: address[N_COINS], _pool_token: address, _base_pool: address, _A: uint256, _fee: uint256, _admin_fee: uint256 ): """ @notice Contract constructor @param _owner Contract owner address @param _coins Addresses of ERC20 conracts of coins @param _pool_token Address of the token representing LP share @param _base_pool Address of the base pool (which will have a virtual price) @param _A Amplification coefficient multiplied by n * (n - 1) @param _fee Fee to charge for exchanges @param _admin_fee Admin fee """ for i in range(N_COINS): assert _coins[i] != ZERO_ADDRESS self.coins = _coins self.initial_A = _A * A_PRECISION self.future_A = _A * A_PRECISION self.fee = _fee self.admin_fee = _admin_fee self.owner = _owner self.kill_deadline = block.timestamp + KILL_DEADLINE_DT self.lp_token = _pool_token self.base_pool = _base_pool self.base_virtual_price = Curve(_base_pool).get_virtual_price() self.base_cache_updated = block.timestamp for i in range(BASE_N_COINS): base_coin: address = Curve(_base_pool).coins(convert(i, uint256)) self.base_coins[i] = base_coin # approve underlying coins for infinite transfers response: Bytes[32] = raw_call( base_coin, concat( method_id("approve(address,uint256)"), convert(_base_pool, bytes32), convert(MAX_UINT256, bytes32), ), max_outsize=32, ) if len(response) > 0: assert convert(response, bool) @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 A() -> uint256: return self._A() / A_PRECISION @view @external def A_precise() -> uint256: return self._A() @view @internal def _xp(_vp_rate: uint256) -> uint256[N_COINS]: result: uint256[N_COINS] = RATES result[MAX_COIN] = _vp_rate # virtual price for the metacurrency for i in range(N_COINS): result[i] = result[i] * self.balances[i] / PRECISION return result @pure @internal def _xp_mem(_vp_rate: uint256, _balances: uint256[N_COINS]) -> uint256[N_COINS]: result: uint256[N_COINS] = RATES result[MAX_COIN] = _vp_rate # virtual price for the metacurrency for i in range(N_COINS): result[i] = result[i] * _balances[i] / PRECISION return result @internal def _vp_rate() -> uint256: if block.timestamp > self.base_cache_updated + BASE_CACHE_EXPIRES: vprice: uint256 = Curve(self.base_pool).get_virtual_price() self.base_virtual_price = vprice self.base_cache_updated = block.timestamp return vprice else: return self.base_virtual_price @internal @view def _vp_rate_ro() -> uint256: if block.timestamp > self.base_cache_updated + BASE_CACHE_EXPIRES: return Curve(self.base_pool).get_virtual_price() else: return self.base_virtual_price @pure @internal def _get_D(_xp: uint256[N_COINS], _amp: uint256) -> uint256: 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(_vp_rate: uint256, _balances: uint256[N_COINS], _amp: uint256) -> uint256: return self._get_D(self._xp_mem(_vp_rate, _balances), _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() vp_rate: uint256 = self._vp_rate_ro() xp: uint256[N_COINS] = self._xp(vp_rate) 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 token_supply: uint256 = CurveToken(self.lp_token).totalSupply() return D * PRECISION / token_supply @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() vp_rate: uint256 = self._vp_rate_ro() balances: uint256[N_COINS] = self.balances D0: uint256 = self._get_D_mem(vp_rate, balances, amp) for i in range(N_COINS): if _is_deposit: balances[i] += _amounts[i] else: balances[i] -= _amounts[i] D1: uint256 = self._get_D_mem(vp_rate, balances, amp) token_amount: uint256 = CurveToken(self.lp_token).totalSupply() diff: uint256 = 0 if _is_deposit: diff = D1 - D0 else: diff = D0 - D1 return diff * token_amount / D0 @external @nonreentrant('lock') def add_liquidity(_amounts: uint256[N_COINS], _min_mint_amount: uint256) -> 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 @return Amount of LP tokens received by depositing """ assert not self.is_killed # dev: is killed amp: uint256 = self._A() vp_rate: uint256 = self._vp_rate() old_balances: uint256[N_COINS] = self.balances # Initial invariant D0: uint256 = self._get_D_mem(vp_rate, old_balances, amp) lp_token: address = self.lp_token token_supply: uint256 = CurveToken(lp_token).totalSupply() new_balances: uint256[N_COINS] = old_balances for i in range(N_COINS): if token_supply == 0: assert _amounts[i] > 0 # dev: initial deposit requires all coins # balances store amounts of c-tokens new_balances[i] = old_balances[i] + _amounts[i] # Invariant after change D1: uint256 = self._get_D_mem(vp_rate, 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]) D2: uint256 = D1 mint_amount: uint256 = 0 if token_supply > 0: fee: uint256 = self.fee * N_COINS / (4 * (N_COINS - 1)) admin_fee: uint256 = self.admin_fee # Only account for fees if we are not the first to deposit for i in range(N_COINS): ideal_balance: uint256 = D1 * old_balances[i] / D0 difference: uint256 = 0 if ideal_balance > new_balances[i]: difference = ideal_balance - new_balances[i] else: difference = new_balances[i] - ideal_balance fees[i] = fee * difference / FEE_DENOMINATOR self.balances[i] = new_balances[i] - (fees[i] * admin_fee / FEE_DENOMINATOR) new_balances[i] -= fees[i] D2 = self._get_D_mem(vp_rate, new_balances, amp) mint_amount = token_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" # Take coins from the sender for i in range(N_COINS): if _amounts[i] > 0: # "safeTransferFrom" which works for ERC20s which return bool or not response: Bytes[32] = raw_call( self.coins[i], concat( method_id("transferFrom(address,address,uint256)"), convert(msg.sender, bytes32), convert(self, bytes32), convert(_amounts[i], bytes32), ), max_outsize=32, ) if len(response) > 0: assert convert(response, bool) # dev: failed transfer # end "safeTransferFrom" # Mint pool tokens CurveToken(lp_token).mint(msg.sender, mint_amount) log AddLiquidity(msg.sender, _amounts, fees, D1, token_supply + mint_amount) 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 A: uint256 = self._A() D: uint256 = self._get_D(_xp, A) Ann: uint256 = A * N_COINS c: uint256 = D S: uint256 = 0 _x: uint256 = 0 y_prev: uint256 = 0 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: rates: uint256[N_COINS] = RATES rates[MAX_COIN] = self._vp_rate_ro() xp: uint256[N_COINS] = self._xp(rates[MAX_COIN]) 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] @view @external def get_dy_underlying(i: int128, j: int128, _dx: uint256) -> uint256: # dx and dy in underlying units vp_rate: uint256 = self._vp_rate_ro() xp: uint256[N_COINS] = self._xp(vp_rate) base_pool: address = self.base_pool # Use base_i or base_j if they are >= 0 base_i: int128 = i - MAX_COIN base_j: int128 = j - MAX_COIN meta_i: int128 = MAX_COIN meta_j: int128 = MAX_COIN if base_i < 0: meta_i = i if base_j < 0: meta_j = j x: uint256 = 0 if base_i < 0: x = xp[i] + _dx else: if base_j < 0: # i is from BasePool # At first, get the amount of pool tokens base_inputs: uint256[BASE_N_COINS] = empty(uint256[BASE_N_COINS]) base_inputs[base_i] = _dx # Token amount transformed to underlying "dollars" x = Curve(base_pool).calc_token_amount(base_inputs, True) * vp_rate / PRECISION # Accounting for deposit/withdraw fees approximately x -= x * Curve(base_pool).fee() / (2 * FEE_DENOMINATOR) # Adding number of pool tokens x += xp[MAX_COIN] else: # If both are from the base pool return Curve(base_pool).get_dy(base_i, base_j, _dx) # This pool is involved only when in-pool assets are used y: uint256 = self._get_y(meta_i, meta_j, x, xp) dy: uint256 = xp[meta_j] - y - 1 dy = (dy - self.fee * dy / FEE_DENOMINATOR) # If output is going via the metapool if base_j >= 0: # j is from BasePool # The fee is already accounted for dy = Curve(base_pool).calc_withdraw_one_coin(dy * PRECISION / vp_rate, base_j) return dy @external @nonreentrant('lock') def exchange(i: int128, j: int128, _dx: uint256, _min_dy: uint256) -> 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 """ assert not self.is_killed # dev: is killed rates: uint256[N_COINS] = RATES rates[MAX_COIN] = self._vp_rate() old_balances: uint256[N_COINS] = self.balances xp: uint256[N_COINS] = self._xp_mem(rates[MAX_COIN], 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, "Too few coins in result" dy_admin_fee: uint256 = dy_fee * self.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(msg.sender, 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 exchange_underlying(i: int128, j: int128, _dx: uint256, _min_dy: uint256) -> uint256: """ @notice Perform an exchange between two underlying coins @dev Index values can be found via the `underlying_coins` public getter method @param i Index value for the underlying coin to send @param j Index valie of the underlying 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 """ assert not self.is_killed # dev: is killed rates: uint256[N_COINS] = RATES rates[MAX_COIN] = self._vp_rate() base_pool: address = self.base_pool # Use base_i or base_j if they are >= 0 base_i: int128 = i - MAX_COIN base_j: int128 = j - MAX_COIN meta_i: int128 = MAX_COIN meta_j: int128 = MAX_COIN if base_i < 0: meta_i = i if base_j < 0: meta_j = j dy: uint256 = 0 # Addresses for input and output coins input_coin: address = ZERO_ADDRESS output_coin: address = ZERO_ADDRESS if base_i < 0: input_coin = self.coins[i] else: input_coin = self.base_coins[base_i] if base_j < 0: output_coin = self.coins[j] else: output_coin = self.base_coins[base_j] # Handle potential Tether fees dx_w_fee: uint256 = _dx if input_coin == FEE_ASSET: dx_w_fee = ERC20(FEE_ASSET).balanceOf(self) response: Bytes[32] = raw_call( input_coin, 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) # Handle potential Tether fees if input_coin == FEE_ASSET: dx_w_fee = ERC20(FEE_ASSET).balanceOf(self) - dx_w_fee if base_i < 0 or base_j < 0: old_balances: uint256[N_COINS] = self.balances xp: uint256[N_COINS] = self._xp_mem(rates[MAX_COIN], old_balances) x: uint256 = 0 if base_i < 0: x = xp[i] + dx_w_fee * rates[i] / PRECISION else: # i is from BasePool # At first, get the amount of pool tokens base_inputs: uint256[BASE_N_COINS] = empty(uint256[BASE_N_COINS]) base_inputs[base_i] = dx_w_fee coin_i: address = self.coins[MAX_COIN] # Deposit and measure delta x = ERC20(coin_i).balanceOf(self) Curve(base_pool).add_liquidity(base_inputs, 0) # Need to convert pool token to "virtual" units using rates # dx is also different now dx_w_fee = ERC20(coin_i).balanceOf(self) - x x = dx_w_fee * rates[MAX_COIN] / PRECISION # Adding number of pool tokens x += xp[MAX_COIN] y: uint256 = self._get_y(meta_i, meta_j, x, xp) # Either a real coin or token dy = xp[meta_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 # Works for both pool coins and real coins dy = (dy - dy_fee) * PRECISION / rates[meta_j] dy_admin_fee: uint256 = dy_fee * self.admin_fee / FEE_DENOMINATOR dy_admin_fee = dy_admin_fee * PRECISION / rates[meta_j] # Change balances exactly in same way as we change actual ERC20 coin amounts self.balances[meta_i] = old_balances[meta_i] + dx_w_fee # When rounding errors happen, we undercharge admin fee in favor of LP self.balances[meta_j] = old_balances[meta_j] - dy - dy_admin_fee # Withdraw from the base pool if needed if base_j >= 0: out_amount: uint256 = ERC20(output_coin).balanceOf(self) Curve(base_pool).remove_liquidity_one_coin(dy, base_j, 0) dy = ERC20(output_coin).balanceOf(self) - out_amount assert dy >= _min_dy, "Too few coins in result" else: # If both are from the base pool dy = ERC20(output_coin).balanceOf(self) Curve(base_pool).exchange(base_i, base_j, dx_w_fee, _min_dy) dy = ERC20(output_coin).balanceOf(self) - dy # "safeTransfer" which works for ERC20s which return bool or not response = raw_call( output_coin, concat( method_id("transfer(address,uint256)"), convert(msg.sender, bytes32), convert(dy, bytes32), ), max_outsize=32, ) # dev: failed transfer if len(response) > 0: assert convert(response, bool) # dev: failed transfer # end "safeTransfer" log TokenExchangeUnderlying(msg.sender, i, _dx, j, dy) return dy @external @nonreentrant('lock') def remove_liquidity(_amount: uint256, _min_amounts: uint256[N_COINS]) -> uint256[N_COINS]: """ @notice Withdraw coins from the pool @dev Withdrawal amounts are based on current deposit ratios @param _amount Quantity of LP tokens to burn in the withdrawal @param _min_amounts Minimum amounts of underlying coins to receive @return List of amounts of coins that were withdrawn """ lp_token: address = self.lp_token total_supply: uint256 = CurveToken(lp_token).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 * _amount / total_supply assert value >= _min_amounts[i], "Withdrawal resulted in fewer coins than expected" self.balances[i] = old_balance - value amounts[i] = value ERC20(self.coins[i]).transfer(msg.sender, value) CurveToken(lp_token).burnFrom(msg.sender, _amount) # dev: insufficient funds log RemoveLiquidity(msg.sender, amounts, empty(uint256[N_COINS]), total_supply - _amount) return amounts @external @nonreentrant('lock') def remove_liquidity_imbalance(_amounts: uint256[N_COINS], _max_burn_amount: uint256) -> 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 @return Actual amount of the LP token burned in the withdrawal """ assert not self.is_killed # dev: is killed amp: uint256 = self._A() vp_rate: uint256 = self._vp_rate() old_balances: uint256[N_COINS] = self.balances new_balances: uint256[N_COINS] = old_balances D0: uint256 = self._get_D_mem(vp_rate, old_balances, amp) for i in range(N_COINS): new_balances[i] -= _amounts[i] D1: uint256 = self._get_D_mem(vp_rate, new_balances, amp) fee: uint256 = self.fee * N_COINS / (4 * (N_COINS - 1)) admin_fee: uint256 = self.admin_fee fees: uint256[N_COINS] = empty(uint256[N_COINS]) for i in range(N_COINS): ideal_balance: uint256 = D1 * old_balances[i] / D0 difference: uint256 = 0 if ideal_balance > new_balances[i]: difference = ideal_balance - new_balances[i] else: difference = new_balances[i] - ideal_balance fees[i] = fee * difference / FEE_DENOMINATOR self.balances[i] = new_balances[i] - (fees[i] * admin_fee / FEE_DENOMINATOR) new_balances[i] -= fees[i] D2: uint256 = self._get_D_mem(vp_rate, new_balances, amp) lp_token: address = self.lp_token token_supply: uint256 = CurveToken(lp_token).totalSupply() token_amount: uint256 = (D0 - D2) * token_supply / D0 assert token_amount != 0 # dev: zero tokens burned token_amount += 1 # In case of rounding errors - make it unfavorable for the "attacker" assert token_amount <= _max_burn_amount, "Slippage screwed you" CurveToken(lp_token).burnFrom(msg.sender, token_amount) # dev: insufficient funds for i in range(N_COINS): if _amounts[i] != 0: ERC20(self.coins[i]).transfer(msg.sender, _amounts[i]) log RemoveLiquidityImbalance(msg.sender, _amounts, fees, D1, token_supply - token_amount) return token_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 Ann: uint256 = A * N_COINS c: uint256 = D S: uint256 = 0 _x: uint256 = 0 y_prev: uint256 = 0 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(_token_amount: uint256, i: int128, _vp_rate: uint256) -> (uint256, uint256, uint256): # First, need to calculate # * Get current D # * Solve Eqn against y_i for D - _token_amount amp: uint256 = self._A() xp: uint256[N_COINS] = self._xp(_vp_rate) D0: uint256 = self._get_D(xp, amp) total_supply: uint256 = CurveToken(self.lp_token).totalSupply() D1: uint256 = D0 - _token_amount * D0 / total_supply new_y: uint256 = self._get_y_D(amp, i, xp, D1) fee: uint256 = self.fee * N_COINS / (4 * (N_COINS - 1)) rates: uint256[N_COINS] = RATES rates[MAX_COIN] = _vp_rate xp_reduced: uint256[N_COINS] = xp dy_0: uint256 = (xp[i] - new_y) * PRECISION / rates[i] # w/o fees for j in range(N_COINS): dx_expected: uint256 = 0 if j == i: dx_expected = xp[j] * D1 / D0 - new_y else: dx_expected = xp[j] - xp[j] * D1 / D0 xp_reduced[j] -= fee * dx_expected / FEE_DENOMINATOR dy: uint256 = xp_reduced[i] - self._get_y_D(amp, i, xp_reduced, D1) dy = (dy - 1) * PRECISION / rates[i] # Withdraw less to account for rounding errors return dy, dy_0 - dy, total_supply @view @external def calc_withdraw_one_coin(_token_amount: uint256, i: int128) -> uint256: """ @notice Calculate the amount received when withdrawing a single coin @param _token_amount Amount of LP tokens to burn in the withdrawal @param i Index value of the coin to withdraw @return Amount of coin received """ vp_rate: uint256 = self._vp_rate_ro() return self._calc_withdraw_one_coin(_token_amount, i, vp_rate)[0] @external @nonreentrant('lock') def remove_liquidity_one_coin(_token_amount: uint256, i: int128, _min_amount: uint256) -> uint256: """ @notice Withdraw a single coin from the pool @param _token_amount Amount of LP tokens to burn in the withdrawal @param i Index value of the coin to withdraw @param _min_amount Minimum amount of coin to receive @return Amount of coin received """ assert not self.is_killed # dev: is killed vp_rate: uint256 = self._vp_rate() dy: uint256 = 0 dy_fee: uint256 = 0 total_supply: uint256 = 0 dy, dy_fee, total_supply = self._calc_withdraw_one_coin(_token_amount, i, vp_rate) assert dy >= _min_amount, "Not enough coins removed" self.balances[i] -= (dy + dy_fee * self.admin_fee / FEE_DENOMINATOR) CurveToken(self.lp_token).burnFrom(msg.sender, _token_amount) # dev: insufficient funds ERC20(self.coins[i]).transfer(msg.sender, dy) log RemoveLiquidityOne(msg.sender, _token_amount, dy, total_supply - _token_amount) return dy ### Admin functions ### @external def ramp_A(_future_A: uint256, _future_time: uint256): assert msg.sender == self.owner # 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 == self.owner # 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) @external def commit_new_fee(_new_fee: uint256, _new_admin_fee: uint256): assert msg.sender == self.owner # dev: only owner assert self.admin_actions_deadline == 0 # dev: active action assert _new_fee <= MAX_FEE # dev: fee exceeds maximum assert _new_admin_fee <= MAX_ADMIN_FEE # dev: admin fee exceeds maximum deadline: uint256 = block.timestamp + ADMIN_ACTIONS_DELAY self.admin_actions_deadline = deadline self.future_fee = _new_fee self.future_admin_fee = _new_admin_fee log CommitNewFee(deadline, _new_fee, _new_admin_fee) @external def apply_new_fee(): assert msg.sender == self.owner # dev: only owner assert block.timestamp >= self.admin_actions_deadline # dev: insufficient time assert self.admin_actions_deadline != 0 # dev: no active action self.admin_actions_deadline = 0 fee: uint256 = self.future_fee admin_fee: uint256 = self.future_admin_fee self.fee = fee self.admin_fee = admin_fee log NewFee(fee, admin_fee) @external def revert_new_parameters(): assert msg.sender == self.owner # dev: only owner self.admin_actions_deadline = 0 @external def commit_transfer_ownership(_owner: address): assert msg.sender == self.owner # dev: only owner assert self.transfer_ownership_deadline == 0 # dev: active transfer deadline: uint256 = block.timestamp + ADMIN_ACTIONS_DELAY self.transfer_ownership_deadline = deadline self.future_owner = _owner log CommitNewAdmin(deadline, _owner) @external def apply_transfer_ownership(): assert msg.sender == self.owner # dev: only owner assert block.timestamp >= self.transfer_ownership_deadline # dev: insufficient time assert self.transfer_ownership_deadline != 0 # dev: no active transfer self.transfer_ownership_deadline = 0 owner: address = self.future_owner self.owner = owner log NewAdmin(owner) @external def revert_transfer_ownership(): assert msg.sender == self.owner # dev: only owner self.transfer_ownership_deadline = 0 @view @external def admin_balances(i: uint256) -> uint256: return ERC20(self.coins[i]).balanceOf(self) - self.balances[i] @external def withdraw_admin_fees(): assert msg.sender == self.owner # dev: only owner for i in range(N_COINS): coin: address = self.coins[i] value: uint256 = ERC20(coin).balanceOf(self) - self.balances[i] if value > 0: ERC20(coin).transfer(msg.sender, value) @external def donate_admin_fees(): assert msg.sender == self.owner # dev: only owner for i in range(N_COINS): self.balances[i] = ERC20(self.coins[i]).balanceOf(self) @external def kill_me(): assert msg.sender == self.owner # dev: only owner assert self.kill_deadline > block.timestamp # dev: deadline has passed self.is_killed = True @external def unkill_me(): assert msg.sender == self.owner # dev: only owner self.is_killed = False
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"name":"TokenExchange","inputs":[{"type":"address","name":"buyer","indexed":true},{"type":"int128","name":"sold_id","indexed":false},{"type":"uint256","name":"tokens_sold","indexed":false},{"type":"int128","name":"bought_id","indexed":false},{"type":"uint256","name":"tokens_bought","indexed":false}],"anonymous":false,"type":"event"},{"name":"TokenExchangeUnderlying","inputs":[{"type":"address","name":"buyer","indexed":true},{"type":"int128","name":"sold_id","indexed":false},{"type":"uint256","name":"tokens_sold","indexed":false},{"type":"int128","name":"bought_id","indexed":false},{"type":"uint256","name":"tokens_bought","indexed":false}],"anonymous":false,"type":"event"},{"name":"AddLiquidity","inputs":[{"type":"address","name":"provider","indexed":true},{"type":"uint256[2]","name":"token_amounts","indexed":false},{"type":"uint256[2]","name":"fees","indexed":false},{"type":"uint256","name":"invariant","indexed":false},{"type":"uint256","name":"token_supply","indexed":false}],"anonymous":false,"type":"event"},{"name":"RemoveLiquidity","inputs":[{"type":"address","name":"provider","indexed":true},{"type":"uint256[2]","name":"token_amounts","indexed":false},{"type":"uint256[2]","name":"fees","indexed":false},{"type":"uint256","name":"token_supply","indexed":false}],"anonymous":false,"type":"event"},{"name":"RemoveLiquidityOne","inputs":[{"type":"address","name":"provider","indexed":true},{"type":"uint256","name":"token_amount","indexed":false},{"type":"uint256","name":"coin_amount","indexed":false},{"type":"uint256","name":"token_supply","indexed":false}],"anonymous":false,"type":"event"},{"name":"RemoveLiquidityImbalance","inputs":[{"type":"address","name":"provider","indexed":true},{"type":"uint256[2]","name":"token_amounts","indexed":false},{"type":"uint256[2]","name":"fees","indexed":false},{"type":"uint256","name":"invariant","indexed":false},{"type":"uint256","name":"token_supply","indexed":false}],"anonymous":false,"type":"event"},{"name":"CommitNewAdmin","inputs":[{"type":"uint256","name":"deadline","indexed":true},{"type":"address","name":"admin","indexed":true}],"anonymous":false,"type":"event"},{"name":"NewAdmin","inputs":[{"type":"address","name":"admin","indexed":true}],"anonymous":false,"type":"event"},{"name":"CommitNewFee","inputs":[{"type":"uint256","name":"deadline","indexed":true},{"type":"uint256","name":"fee","indexed":false},{"type":"uint256","name":"admin_fee","indexed":false}],"anonymous":false,"type":"event"},{"name":"NewFee","inputs":[{"type":"uint256","name":"fee","indexed":false},{"type":"uint256","name":"admin_fee","indexed":false}],"anonymous":false,"type":"event"},{"name":"RampA","inputs":[{"type":"uint256","name":"old_A","indexed":false},{"type":"uint256","name":"new_A","indexed":false},{"type":"uint256","name":"initial_time","indexed":false},{"type":"uint256","name":"future_time","indexed":false}],"anonymous":false,"type":"event"},{"name":"StopRampA","inputs":[{"type":"uint256","name":"A","indexed":false},{"type":"uint256","name":"t","indexed":false}],"anonymous":false,"type":"event"},{"outputs":[],"inputs":[{"type":"address","name":"_owner"},{"type":"address[2]","name":"_coins"},{"type":"address","name":"_pool_token"},{"type":"address","name":"_base_pool"},{"type":"uint256","name":"_A"},{"type":"uint256","name":"_fee"},{"type":"uint256","name":"_admin_fee"}],"stateMutability":"nonpayable","type":"constructor"},{"name":"A","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":5199},{"name":"A_precise","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":5161},{"name":"get_virtual_price","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1012517},{"name":"calc_token_amount","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256[2]","name":"_amounts"},{"type":"bool","name":"_is_deposit"}],"stateMutability":"view","type":"function","gas":4018957},{"name":"add_liquidity","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256[2]","name":"_amounts"},{"type":"uint256","name":"_min_mint_amount"}],"stateMutability":"nonpayable","type":"function","gas":6262052},{"name":"get_dy","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"int128","name":"i"},{"type":"int128","name":"j"},{"type":"uint256","name":"_dx"}],"stateMutability":"view","type":"function","gas":2450192},{"name":"get_dy_underlying","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"int128","name":"i"},{"type":"int128","name":"j"},{"type":"uint256","name":"_dx"}],"stateMutability":"view","type":"function","gas":2453370},{"name":"exchange","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"int128","name":"i"},{"type":"int128","name":"j"},{"type":"uint256","name":"_dx"},{"type":"uint256","name":"_min_dy"}],"stateMutability":"nonpayable","type":"function","gas":2683098},{"name":"exchange_underlying","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"int128","name":"i"},{"type":"int128","name":"j"},{"type":"uint256","name":"_dx"},{"type":"uint256","name":"_min_dy"}],"stateMutability":"nonpayable","type":"function","gas":2692022},{"name":"remove_liquidity","outputs":[{"type":"uint256[2]","name":""}],"inputs":[{"type":"uint256","name":"_amount"},{"type":"uint256[2]","name":"_min_amounts"}],"stateMutability":"nonpayable","type":"function","gas":160546},{"name":"remove_liquidity_imbalance","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256[2]","name":"_amounts"},{"type":"uint256","name":"_max_burn_amount"}],"stateMutability":"nonpayable","type":"function","gas":6255721},{"name":"calc_withdraw_one_coin","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"_token_amount"},{"type":"int128","name":"i"}],"stateMutability":"view","type":"function","gas":4389},{"name":"remove_liquidity_one_coin","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"_token_amount"},{"type":"int128","name":"i"},{"type":"uint256","name":"_min_amount"}],"stateMutability":"nonpayable","type":"function","gas":3946500},{"name":"ramp_A","outputs":[],"inputs":[{"type":"uint256","name":"_future_A"},{"type":"uint256","name":"_future_time"}],"stateMutability":"nonpayable","type":"function","gas":151894},{"name":"stop_ramp_A","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":148655},{"name":"commit_new_fee","outputs":[],"inputs":[{"type":"uint256","name":"_new_fee"},{"type":"uint256","name":"_new_admin_fee"}],"stateMutability":"nonpayable","type":"function","gas":110491},{"name":"apply_new_fee","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":97272},{"name":"revert_new_parameters","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":21925},{"name":"commit_transfer_ownership","outputs":[],"inputs":[{"type":"address","name":"_owner"}],"stateMutability":"nonpayable","type":"function","gas":74663},{"name":"apply_transfer_ownership","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":60740},{"name":"revert_transfer_ownership","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":22015},{"name":"admin_balances","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"i"}],"stateMutability":"view","type":"function","gas":3511},{"name":"withdraw_admin_fees","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":9000},{"name":"donate_admin_fees","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":74995},{"name":"kill_me","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":38028},{"name":"unkill_me","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":22165},{"name":"coins","outputs":[{"type":"address","name":""}],"inputs":[{"type":"uint256","name":"arg0"}],"stateMutability":"view","type":"function","gas":2250},{"name":"balances","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"arg0"}],"stateMutability":"view","type":"function","gas":2280},{"name":"fee","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2201},{"name":"admin_fee","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2231},{"name":"owner","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2261},{"name":"lp_token","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2291},{"name":"base_pool","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2321},{"name":"base_virtual_price","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2351},{"name":"base_cache_updated","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2381},{"name":"base_coins","outputs":[{"type":"address","name":""}],"inputs":[{"type":"uint256","name":"arg0"}],"stateMutability":"view","type":"function","gas":2520},{"name":"initial_A","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2441},{"name":"future_A","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2471},{"name":"initial_A_time","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2501},{"name":"future_A_time","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2531},{"name":"admin_actions_deadline","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2561},{"name":"transfer_ownership_deadline","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2591},{"name":"future_fee","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2621},{"name":"future_admin_fee","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2651},{"name":"future_owner","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2681}]
Contract Creation Code
610100615f58610140396020615f5860c03960c05160a01c1561002157600080fd5b60206020615f580160c03960c05160a01c1561003c57600080fd5b60206040615f580160c03960c05160a01c1561005757600080fd5b60206060615f580160c03960c05160a01c1561007257600080fd5b60206080615f580160c03960c05160a01c1561008d57600080fd5b61024060006002818352015b600061016061024051600281106100af57600080fd5b6020020151186100be57600080fd5b5b8151600101808352811415610099575b5050600060c052602060c020610160518155610180516001820155506101e0516064808202821582848304141761010557600080fd5b80905090509050600a556101e0516064808202821582848304141761012957600080fd5b80905090509050600b5561020051600255610220516003556101405160045542624f1a0081818301101561015c57600080fd5b808201905090506014556101a0516005556101c05160065560206102a0600463bb7b8b806102405261025c6101c0515afa61019657600080fd5b601f3d116101a357600080fd5b6000506102a0516007554260085561024060006003818352015b6020610300602463c6610657610280526102405160008112156101df57600080fd5b6102a05261029c6101c0515afa6101f557600080fd5b601f3d1161020257600080fd5b600050610300516102605261026051610240516003811061022257600080fd5b600960c052602060c0200155600060046102e0527f095ea7b300000000000000000000000000000000000000000000000000000000610300526102e060048060208461034001018260208501600060045af15050805182019150506101c0516020826103400101526020810190507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff602082610340010152602081019050806103405261034090508051602001806103e08284600060045af16102e457600080fd5b505060206104a06103e0516104006000610260515af161030357600080fd5b60203d808211156103145780610316565b815b90509050610480526104808051602001806102808284600060045af161033b57600080fd5b5050600061028051111561038e5761028080602001516000825180602090131561036457600080fd5b809190121561037257600080fd5b806020036101000a8204905090509050151561038d57600080fd5b5b5b81516001018083528114156101bd575b5050615f4056341561000a57600080fd5b600436101561001857615b94565b600035601c526000156101c1575b61014052600d5461016052600b5461018052610160514210156101ae57600a546101a052600c546101c0526101a051610180511115610107576101a051610180516101a0518082101561007857600080fd5b80820390509050426101c0518082101561009157600080fd5b8082039050905080820282158284830414176100ac57600080fd5b80905090509050610160516101c051808210156100c857600080fd5b8082039050905080806100da57600080fd5b8204905090508181830110156100ef57600080fd5b808201905090506000526000516101405156506101a9565b6101a0516101a051610180518082101561012057600080fd5b80820390509050426101c0518082101561013957600080fd5b80820390509050808202821582848304141761015457600080fd5b80905090509050610160516101c0518082101561017057600080fd5b80820390509050808061018257600080fd5b8204905090508082101561019557600080fd5b808203905090506000526000516101405156505b6101bf565b610180516000526000516101405156505b005b63f446c1d060005114156101f45760065801610026565b610140526101405160648082049050905060005260206000f350005b6376a2f0f0600051141561021e5760065801610026565b610140526101405160005260206000f350005b600015610325575b6101605261014052670de0b6b3a764000061018052670de0b6b3a76400006101a052610140516101a0526101c060006002818352015b6101806101c0516002811061027057600080fd5b60200201516101c0516002811061028657600080fd5b600160c052602060c020015480820282158284830414176102a657600080fd5b80905090509050670de0b6b3a7640000808204905090506101806101c051600281106102d157600080fd5b60200201525b815160010180835281141561025c575b505060406101c0525b60006101c0511115156103025761031e565b60206101c05103610180015160206101c051036101c0526102f0565b6101605156005b600015610430575b6101a052610140526101605261018052670de0b6b3a76400006101c052670de0b6b3a76400006101e052610140516101e05261020060006002818352015b6101c0610200516002811061037f57600080fd5b6020020151610160610200516002811061039857600080fd5b602002015180820282158284830414176103b157600080fd5b80905090509050670de0b6b3a7640000808204905090506101c061020051600281106103dc57600080fd5b60200201525b815160010180835281141561036b575b50506040610200525b60006102005111151561040d57610429565b602061020051036101c0015160206102005103610200526103fb565b6101a05156005b6000156104ca575b6101405260085461025881818301101561045157600080fd5b808201905090504211156104b85760206101e0600463bb7b8b806101805261019c6006545afa61048057600080fd5b601f3d1161048d57600080fd5b6000506101e051610160526101605160075542600855610160516000526000516101405156506104c8565b6007546000526000516101405156505b005b600015610551575b610140526008546102588181830110156104eb57600080fd5b8082019050905042111561053f5760206101c0600463bb7b8b806101605261017c6006545afa61051a57600080fd5b601f3d1161052757600080fd5b6000506101c05160005260005161014051565061054f565b6007546000526000516101405156505b005b600015610859575b6101a0526101405261016052610180526040366101c03761022060006002818352015b602061022051026101400151610200526101c08051610200518181830110156105a457600080fd5b808201905090508152505b815160010180835281141561057c575b50506101c05115156105da5760006000526000516101a05156505b6101c0516102005261018051600280820282158284830414176105fc57600080fd5b8090509050905061022052610240600060ff818352015b61020051610260526102a060006002818352015b60206102a051026101400151610280526102605161020051808202821582848304141761065357600080fd5b80905090509050610280516002808202821582848304141761067457600080fd5b80905090509050808061068657600080fd5b820490509050610260525b8151600101808352811415610627575b5050610200516101e052610220516101c05180820282158284830414176106c757600080fd5b8090509050905060648082049050905061026051600280820282158284830414176106f157600080fd5b8090509050905081818301101561070757600080fd5b8082019050905061020051808202821582848304141761072657600080fd5b809050905090506102205160648082101561074057600080fd5b8082039050905061020051808202821582848304141761075f57600080fd5b80905090509050606480820490509050600361026051808202821582848304141761078957600080fd5b8090509050905081818301101561079f57600080fd5b8082019050905080806107b157600080fd5b820490509050610200526101e051610200511115610806576001610200516101e051808210156107e057600080fd5b80820390509050111515610801576102005160005250506000516101a05156505b61083f565b60016101e051610200518082101561081d57600080fd5b8082039050905011151561083e576102005160005250506000516101a05156505b5b5b8151600101808352811415610613575b505060006000fd005b600015610998575b6101c0526101405261016052610180526101a0526101405161016051610180516101a0516101c051610140516101e0526101605161020052610180516102205261022051610200516101e0516006580161032d565b610280526102a0526101c0526101a05261018052610160526101405261028080516102c05280602001516102e052506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e0516102c051610300526102e051610320526101a0516103405261034051610320516103005160065801610559565b6103a0526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103a0516000526000516101c0515650005b63bb7b8b806000511415610b1a576101405160065801610026565b610160526101405261016051610140526101405161016051600658016104d2565b61018052610160526101405261018051610160526101405161016051610180516101a051610160516101c0526101c05160065801610226565b61022052610240526101a05261018052610160526101405261022080516101805280602001516101a052506101405161016051610180516101a0516101c051610180516101e0526101a05161020052610140516102205261022051610200516101e05160065801610559565b610280526101c0526101a052610180526101605261014052610280516101c052602061026060046318160ddd6102005261021c6005545afa610aba57600080fd5b601f3d11610ac757600080fd5b600050610260516101e0526101c051670de0b6b3a76400008082028215828483041417610af357600080fd5b809050905090506101e0518080610b0957600080fd5b82049050905060005260206000f350005b63ed8e84f36000511415610e0f5760443560011c15610b3857600080fd5b6101405160065801610026565b610160526101405261016051610140526101405161016051600658016104d2565b610180526101605261014052610180516101605260018060c052602060c020546101805260018160c052602060c02001546101a052506101405161016051610180516101a0516101c051610160516101e05261018051610200526101a0516102205261014051610240526102405161022051610200516101e05160065801610861565b6102a0526101c0526101a0526101805261016052610140526102a0516101c0526101e060006002818352015b60443515610c6d576101806101e05160028110610c3157600080fd5b60200201805160046101e05160028110610c4a57600080fd5b6020020135818183011015610c5e57600080fd5b80820190509050815250610cb7565b6101806101e05160028110610c8157600080fd5b60200201805160046101e05160028110610c9a57600080fd5b602002013580821015610cac57600080fd5b808203905090508152505b5b8151600101808352811415610c15575b50506101405161016051610180516101a0516101c0516101e051610160516102005261018051610220526101a0516102405261014051610260526102605161024051610220516102005160065801610861565b6102c0526101e0526101c0526101a0526101805261016052610140526102c0516101e052602061028060046318160ddd6102205261023c6005545afa610d6057600080fd5b601f3d11610d6d57600080fd5b600050610280516102005260006102205260443515610dab576101e0516101c05180821015610d9b57600080fd5b8082039050905061022052610dcc565b6101c0516101e05180821015610dc057600080fd5b80820390509050610220525b61022051610200518082028215828483041417610de857600080fd5b809050905090506101c0518080610dfe57600080fd5b82049050905060005260206000f350005b630b4c7e4d60005114156117305762ffffff5415610e2c57600080fd5b600162ffffff5560135415610e4057600080fd5b6101405160065801610026565b61016052610140526101605161014052610140516101605160065801610438565b610180526101605261014052610180516101605260018060c052602060c020546101805260018160c052602060c02001546101a052506101405161016051610180516101a0516101c051610160516101e05261018051610200526101a0516102205261014051610240526102405161022051610200516101e05160065801610861565b6102a0526101c0526101a0526101805261016052610140526102a0516101c0526005546101e052602061028060046318160ddd6102205261023c6101e0515afa610f3a57600080fd5b601f3d11610f4757600080fd5b600050610280516102005261018051610220526101a0516102405261026060006002818352015b610200511515610f9d57600060046102605160028110610f8d57600080fd5b602002013511610f9c57600080fd5b5b6101806102605160028110610fb157600080fd5b602002015160046102605160028110610fc957600080fd5b6020020135818183011015610fdd57600080fd5b808201905090506102206102605160028110610ff857600080fd5b60200201525b8151600101808352811415610f6e575b50506101405161016051610180516101a0516101c0516101e051610200516102205161024051610260516101605161028052610220516102a052610240516102c052610140516102e0526102e0516102c0516102a0516102805160065801610861565b61034052610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261034051610260526101c05161026051116110b757600080fd5b60403661028037610260516102c05260006102e052600061020051111561142a57600254600280820282158284830414176110f157600080fd5b80905090509050600480820490509050610300526003546103205261034060006002818352015b61026051610180610340516002811061113057600080fd5b6020020151808202821582848304141761114957600080fd5b809050905090506101c051808061115f57600080fd5b82049050905061036052600061038052610220610340516002811061118357600080fd5b60200201516103605111156111cc576103605161022061034051600281106111aa57600080fd5b6020020151808210156111bc57600080fd5b8082039050905061038052611202565b61022061034051600281106111e057600080fd5b602002015161036051808210156111f657600080fd5b80820390509050610380525b6103005161038051808202821582848304141761121e57600080fd5b809050905090506402540be40080820490509050610280610340516002811061124657600080fd5b6020020152610220610340516002811061125f57600080fd5b6020020151610280610340516002811061127857600080fd5b602002015161032051808202821582848304141761129557600080fd5b809050905090506402540be40080820490509050808210156112b657600080fd5b8082039050905061034051600281106112ce57600080fd5b600160c052602060c020015561022061034051600281106112ee57600080fd5b602002018051610280610340516002811061130857600080fd5b60200201518082101561131a57600080fd5b808203905090508152505b8151600101808352811415611118575b5050610140610340525b610340515160206103405101610340526103406103405110156113615761133f565b61016051610360526102205161038052610240516103a052610140516103c0526103c0516103a051610380516103605160065801610861565b61042052610320610340525b61034051526020610340510361034052610140610340511015156113c9576113a6565b610420516102c052610200516102c0516101c051808210156113ea57600080fd5b80820390509050808202821582848304141761140557600080fd5b809050905090506101c051808061141b57600080fd5b8204905090506102e05261144d565b600160c052602060c02061022051815561024051600182015550610260516102e0525b6044356102e051101515156114a1576308c379a0610300526020610320526014610340527f536c697070616765207363726577656420796f750000000000000000000000006103605261034050606461031cfd5b61030060006002818352015b6000600461030051600281106114c257600080fd5b6020020135111561164b5760006004610380527f23b872dd000000000000000000000000000000000000000000000000000000006103a0526103806004806020846103e001018260208501600060045af1505080518201915050336020826103e0010152602081019050306020826103e00101526020810190506004610300516002811061154f57600080fd5b60200201356020826103e0010152602081019050806103e0526103e090508051602001806104a08284600060045af161158757600080fd5b505060206105806104a0516104c0600061030051600281106115a857600080fd5b600060c052602060c02001545af16115bf57600080fd5b60203d808211156115d057806115d2565b815b90509050610560526105608051602001806103208284600060045af16115f757600080fd5b5050600061032051111561164a5761032080602001516000825180602090131561162057600080fd5b809190121561162e57600080fd5b806020036101000a8204905090509050151561164957600080fd5b5b5b5b81516001018083528114156114ad575b505060206103a060446340c10f196103005233610320526102e0516103405261031c60006101e0515af161168f57600080fd5b601f3d1161169c57600080fd5b6000506103a050600435610300526024356103205261028051610340526102a051610360526102605161038052610200516102e0518181830110156116e057600080fd5b808201905090506103a052337f26f55a85081d24974e85c6c00045d0f0453991e95873f52bff0d21af4079a76860c0610300a26102e051600052600062ffffff5560206000f350600062ffffff55005b600015611bb2575b6101e0526101405261016052610180526101a0526101c05261016051610140511861176257600080fd5b600061016051121561177357600080fd5b6002610160511261178357600080fd5b600061014051121561179457600080fd5b600261014051126117a457600080fd5b6101405161016051610180516101a0516101c0516101e0516102005160065801610026565b61022052610200526101e0526101c0526101a05261018052610160526101405261022051610200526101405161016051610180516101a0516101c0516101e05161020051610220516101a051610240526101c05161026052610200516102805261028051610260516102405160065801610559565b6102e05261022052610200526101e0526101c0526101a0526101805261016052610140526102e05161022052610200516002808202821582848304141761188457600080fd5b80905090509050610240526102205161026052606036610280376102e060006002818352015b610140516102e05114156118c557610180516102a0526118fb565b610160516102e05118156118f5576101a06102e051600281106118e757600080fd5b60200201516102a0526118fa565b611977565b5b61028080516102a05181818301101561191357600080fd5b808201905090508152506102605161022051808202821582848304141761193957600080fd5b809050905090506102a0516002808202821582848304141761195a57600080fd5b80905090509050808061196c57600080fd5b820490509050610260525b81516001018083528114156118aa575b5050610260516102205180820282158284830414176119a557600080fd5b80905090509050606480820282158284830414176119c257600080fd5b8090509050905061024051600280820282158284830414176119e357600080fd5b8090509050905080806119f557600080fd5b82049050905061026052610280516102205160648082028215828483041417611a1d57600080fd5b80905090509050610240518080611a3357600080fd5b820490509050818183011015611a4857600080fd5b808201905090506102e0526102205161030052610320600060ff818352015b610300516102c05261030051610300518082028215828483041417611a8b57600080fd5b8090509050905061026051818183011015611aa557600080fd5b808201905090506002610300518082028215828483041417611ac657600080fd5b809050905090506102e051818183011015611ae057600080fd5b808201905090506102205180821015611af857600080fd5b808203905090508080611b0a57600080fd5b820490509050610300526102c051610300511115611b5f576001610300516102c05180821015611b3957600080fd5b80820390509050111515611b5a576103005160005250506000516101e05156505b611b98565b60016102c0516103005180821015611b7657600080fd5b80820390509050111515611b97576103005160005250506000516101e05156505b5b5b8151600101808352811415611a67575b505060006000fd005b635e0d443f6000511415611e775760043580806000811215611bd057195b607f1c15611bdd57600080fd5b90505060243580806000811215611bf057195b607f1c15611bfd57600080fd5b905050670de0b6b3a764000061014052670de0b6b3a7640000610160526101405161016051600658016104d2565b61018052610160526101405261018051610160526101405161016051610180516101a051610160516101c0526101c05160065801610226565b61022052610240526101a05261018052610160526101405261022080516101805280602001516101a0525061018060043560028110611ca257600080fd5b602002015160443561014060043560028110611cbd57600080fd5b60200201518082028215828483041417611cd657600080fd5b80905090509050670de0b6b3a764000080820490509050818183011015611cfc57600080fd5b808201905090506101c0526101405161016051610180516101a0516101c0516101e05160043561020052602435610220526101c0516102405261018051610260526101a05161028052610280516102605161024051610220516102005160065801611738565b6102e0526101e0526101c0526101a0526101805261016052610140526102e0516101e05261018060243560028110611d9957600080fd5b60200201516101e05180821015611daf57600080fd5b80820390509050600180821015611dc557600080fd5b8082039050905061020052600254610200518082028215828483041417611deb57600080fd5b809050905090506402540be4008082049050905061022052610200516102205180821015611e1857600080fd5b80820390509050670de0b6b3a76400008082028215828483041417611e3c57600080fd5b8090509050905061014060243560028110611e5657600080fd5b60200201518080611e6657600080fd5b82049050905060005260206000f350005b6307211ef760005114156123935760043580806000811215611e9557195b607f1c15611ea257600080fd5b90505060243580806000811215611eb557195b607f1c15611ec257600080fd5b90505061014051600658016104d2565b61016052610140526101605161014052610140516101605161018051610140516101a0526101a05160065801610226565b6102005261022052610180526101605261014052610200805161016052806020015161018052506006546101a052600435600180820380806000811215611f4657195b607f1c15611f5357600080fd5b9050905090506101c052602435600180820380806000811215611f7257195b607f1c15611f7f57600080fd5b9050905090506101e05260016102005260016102205260006101c0511215611fa957600435610200525b60006101e0511215611fbd57602435610220525b60006102405260006101c05112156120095761016060043560028110611fe257600080fd5b6020020151604435818183011015611ff957600080fd5b80820190509050610240526121bc565b60006101e051121561216457606036610260376044356102606101c0516003811061203357600080fd5b602002015260206103a06084633883e1196102c052610260516102e05261028051610300526102a051610320526001610340526102dc6101a0515afa61207857600080fd5b601f3d1161208557600080fd5b6000506103a0516101405180820282158284830414176120a457600080fd5b80905090509050670de0b6b3a764000080820490509050610240526102408051610240516020610320600463ddca3f436102c0526102dc6101a0515afa6120ea57600080fd5b601f3d116120f757600080fd5b60005061032051808202821582848304141761211257600080fd5b809050905090506404a817c800808204905090508082101561213357600080fd5b8082039050905081525061024080516101805181818301101561215557600080fd5b808201905090508152506121bb565b60206103206064635e0d443f610260526101c051610280526101e0516102a0526044356102c05261027c6101a0515afa61219d57600080fd5b601f3d116121aa57600080fd5b6000506103205160005260206000f3505b5b6101405161016051610180516101a0516101c0516101e051610200516102205161024051610260516102005161028052610220516102a052610240516102c052610160516102e0526101805161030052610300516102e0516102c0516102a0516102805160065801611738565b61036052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103605161026052610160610220516002811061227157600080fd5b6020020151610260518082101561228757600080fd5b8082039050905060018082101561229d57600080fd5b8082039050905061028052610280516002546102805180820282158284830414176122c757600080fd5b809050905090506402540be40080820490509050808210156122e857600080fd5b808203905090506102805260006101e051121515612384576020610340604463cc2b27d76102a05261028051670de0b6b3a7640000808202821582848304141761233157600080fd5b8090509050905061014051808061234757600080fd5b8204905090506102c0526101e0516102e0526102bc6101a0515afa61236b57600080fd5b601f3d1161237857600080fd5b60005061034051610280525b6102805160005260206000f350005b633df021246000511415612b7c5762ffffff54156123b057600080fd5b600162ffffff55600435808060008112156123c757195b607f1c156123d457600080fd5b905050602435808060008112156123e757195b607f1c156123f457600080fd5b9050506013541561240457600080fd5b670de0b6b3a764000061014052670de0b6b3a764000061016052610140516101605160065801610438565b610180526101605261014052610180516101605260018060c052602060c020546101805260018160c052602060c02001546101a052506101405161016051610180516101a0516101c0516101e051610160516102005261018051610220526101a051610240526102405161022051610200516006580161032d565b6102a0526102c0526101e0526101c0526101a0526101805261016052610140526102a080516101c05280602001516101e052506101c0600435600281106124f057600080fd5b60200201516044356101406004356002811061250b57600080fd5b6020020151808202821582848304141761252457600080fd5b80905090509050670de0b6b3a76400008082049050905081818301101561254a57600080fd5b80820190509050610200526101405161016051610180516101a0516101c0516101e0516102005161022051600435610240526024356102605261020051610280526101c0516102a0526101e0516102c0526102c0516102a05161028051610260516102405160065801611738565b6103205261022052610200526101e0526101c0526101a05261018052610160526101405261032051610220526101c0602435600281106125f757600080fd5b6020020151610220518082101561260d57600080fd5b8082039050905060018082101561262357600080fd5b808203905090506102405261024051600254808202821582848304141761264957600080fd5b809050905090506402540be400808204905090506102605261024051610260518082101561267657600080fd5b80820390509050670de0b6b3a7640000808202821582848304141761269a57600080fd5b80905090509050610140602435600281106126b457600080fd5b602002015180806126c457600080fd5b820490509050610240526064356102405110151515612722576308c379a06102805260206102a05260176102c0527f546f6f2066657720636f696e7320696e20726573756c740000000000000000006102e0526102c050606461029cfd5b61026051600354808202821582848304141761273d57600080fd5b809050905090506402540be400808204905090506102805261028051670de0b6b3a7640000808202821582848304141761277657600080fd5b809050905090506101406024356002811061279057600080fd5b602002015180806127a057600080fd5b82049050905061028052610180600435600281106127bd57600080fd5b60200201516044358181830110156127d457600080fd5b80820190509050600435600281106127eb57600080fd5b600160c052602060c02001556101806024356002811061280a57600080fd5b6020020151610240518082101561282057600080fd5b80820390509050610280518082101561283857600080fd5b808203905090506024356002811061284f57600080fd5b600160c052602060c020015560006004610300527f23b872dd000000000000000000000000000000000000000000000000000000006103205261030060048060208461036001018260208501600060045af15050805182019150503360208261036001015260208101905030602082610360010152602081019050604435602082610360010152602081019050806103605261036090508051602001806104208284600060045af161290057600080fd5b505060206105006104205161044060006004356002811061292057600080fd5b600060c052602060c02001545af161293757600080fd5b60203d80821115612948578061294a565b815b905090506104e0526104e08051602001806102a08284600060045af161296f57600080fd5b505060006102a05111156129c2576102a080602001516000825180602090131561299857600080fd5b80919012156129a657600080fd5b806020036101000a820490509050905015156129c157600080fd5b5b60006004610300527fa9059cbb000000000000000000000000000000000000000000000000000000006103205261030060048060208461036001018260208501600060045af15050805182019150503360208261036001015260208101905061024051602082610360010152602081019050806103605261036090508051602001806104008284600060045af1612a5857600080fd5b505060206104c061040051610420600060243560028110612a7857600080fd5b600060c052602060c02001545af1612a8f57600080fd5b60203d80821115612aa05780612aa2565b815b905090506104a0526104a08051602001806102a08284600060045af1612ac757600080fd5b505060006102a0511115612b1a576102a0806020015160008251806020901315612af057600080fd5b8091901215612afe57600080fd5b806020036101000a82049050905090501515612b1957600080fd5b5b6004356103005260443561032052602435610340526102405161036052337f8b3e96f2b889fa771c53c981b40daf005f63f637f1869f707052d15a3dd971406080610300a261024051600052600062ffffff5560206000f350600062ffffff55005b63a6417ed6600051141561393d5762ffffff5415612b9957600080fd5b600162ffffff5560043580806000811215612bb057195b607f1c15612bbd57600080fd5b90505060243580806000811215612bd057195b607f1c15612bdd57600080fd5b90505060135415612bed57600080fd5b670de0b6b3a764000061014052670de0b6b3a764000061016052610140516101605160065801610438565b610180526101605261014052610180516101605260065461018052600435600180820380806000811215612c4857195b607f1c15612c5557600080fd5b9050905090506101a052602435600180820380806000811215612c7457195b607f1c15612c8157600080fd5b9050905090506101c05260016101e05260016102005260006101a0511215612cab576004356101e0525b60006101c0511215612cbf57602435610200525b6060366102203760006101a0511215612cf75760043560028110612ce257600080fd5b600060c052602060c020015461024052612d19565b6101a05160038110612d0857600080fd5b600960c052602060c0200154610240525b60006101c0511215612d4a5760243560028110612d3557600080fd5b600060c052602060c020015461026052612d6c565b6101c05160038110612d5b57600080fd5b600960c052602060c0200154610260525b6044356102805273dac17f958d2ee523a2206206994597c13d831ec7610240511415612de357602061032060246370a082316102a052306102c0526102bc73dac17f958d2ee523a2206206994597c13d831ec75afa612dca57600080fd5b601f3d11612dd757600080fd5b60005061032051610280525b60006004610300527f23b872dd000000000000000000000000000000000000000000000000000000006103205261030060048060208461036001018260208501600060045af15050805182019150503360208261036001015260208101905030602082610360010152602081019050604435602082610360010152602081019050806103605261036090508051602001806104208284600060045af1612e8857600080fd5b50506020610500610420516104406000610240515af1612ea757600080fd5b60203d80821115612eb85780612eba565b815b905090506104e0526104e08051602001806102a08284600060045af1612edf57600080fd5b505060006102a0511115612f32576102a0806020015160008251806020901315612f0857600080fd5b8091901215612f1657600080fd5b806020036101000a82049050905090501515612f3157600080fd5b5b73dac17f958d2ee523a2206206994597c13d831ec7610240511415612fba57602061038060246370a0823161030052306103205261031c73dac17f958d2ee523a2206206994597c13d831ec75afa612f8957600080fd5b601f3d11612f9657600080fd5b600050610380516102805180821015612fae57600080fd5b80820390509050610280525b60006101a0511215612fcd576001612fd5565b60006101c051125b5b156136b45760018060c052602060c020546103005260018160c052602060c02001546103205250610140610380525b6103805151602061038051016103805261038061038051101561302757613005565b610160516103a052610300516103c052610320516103e0526103e0516103c0516103a0516006580161032d565b6104405261046052610360610380525b610380515260206103805103610380526101406103805110151561308757613064565b6104408051610340528060200151610360525060006103805260006101a051121561312a57610340600435600281106130bf57600080fd5b602002015161028051610140600435600281106130db57600080fd5b602002015180820282158284830414176130f457600080fd5b80905090509050670de0b6b3a76400008082049050905081818301101561311a57600080fd5b808201905090506103805261329f565b6060366103a037610280516103a06101a0516003811061314957600080fd5b60200201526001600060c052602060c02001546104005260206104a060246370a0823161042052306104405261043c610400515afa61318757600080fd5b601f3d1161319457600080fd5b6000506104a05161038052610180513b6131ad57600080fd5b600060006084634515cef3610420526103a051610440526103c051610460526103e0516104805260006104a05261043c6000610180515af16131ee57600080fd5b60206104a060246370a0823161042052306104405261043c610400515afa61321557600080fd5b601f3d1161322257600080fd5b6000506104a051610380518082101561323a57600080fd5b80820390509050610280526102805161016051808202821582848304141761326157600080fd5b80905090509050670de0b6b3a7640000808204905090506103805261038080516103605181818301101561329457600080fd5b808201905090508152505b6101406103c0525b6103c0515160206103c051016103c0526103c06103c05110156132c9576132a7565b6101e0516103e0526102005161040052610380516104205261034051610440526103605161046052610460516104405161042051610400516103e05160065801611738565b6104c0526103a06103c0525b6103c0515260206103c051036103c0526101406103c05110151561333d5761331a565b6104c0516103a052610340610200516002811061335957600080fd5b60200201516103a0518082101561336f57600080fd5b8082039050905060018082101561338557600080fd5b80820390509050610220526102205160025480820282158284830414176133ab57600080fd5b809050905090506402540be400808204905090506103c052610220516103c051808210156133d857600080fd5b80820390509050670de0b6b3a764000080820282158284830414176133fc57600080fd5b80905090509050610140610200516002811061341757600080fd5b6020020151808061342757600080fd5b820490509050610220526103c051600354808202821582848304141761344c57600080fd5b809050905090506402540be400808204905090506103e0526103e051670de0b6b3a7640000808202821582848304141761348557600080fd5b8090509050905061014061020051600281106134a057600080fd5b602002015180806134b057600080fd5b8204905090506103e0526103006101e051600281106134ce57600080fd5b6020020151610280518181830110156134e657600080fd5b808201905090506101e051600281106134fe57600080fd5b600160c052602060c0200155610300610200516002811061351e57600080fd5b6020020151610220518082101561353457600080fd5b808203905090506103e0518082101561354c57600080fd5b80820390509050610200516002811061356457600080fd5b600160c052602060c020015560006101c05112151561365b5760206104a060246370a0823161042052306104405261043c610260515afa6135a457600080fd5b601f3d116135b157600080fd5b6000506104a05161040052610180513b6135ca57600080fd5b600060006064631a4d01d26104205261022051610440526101c0516104605260006104805261043c6000610180515af161360357600080fd5b60206104a060246370a0823161042052306104405261043c610260515afa61362a57600080fd5b601f3d1161363757600080fd5b6000506104a051610400518082101561364f57600080fd5b80820390509050610220525b60643561022051101515156136af576308c379a0610400526020610420526017610440527f546f6f2066657720636f696e7320696e20726573756c740000000000000000006104605261044050606461041cfd5b61379b565b602061038060246370a0823161030052306103205261031c610260515afa6136db57600080fd5b601f3d116136e857600080fd5b6000506103805161022052610180513b61370157600080fd5b600060006084633df02124610300526101a051610320526101c0516103405261028051610360526064356103805261031c6000610180515af161374357600080fd5b602061038060246370a0823161030052306103205261031c610260515afa61376a57600080fd5b601f3d1161377757600080fd5b60005061038051610220518082101561378f57600080fd5b80820390509050610220525b60006004610300527fa9059cbb000000000000000000000000000000000000000000000000000000006103205261030060048060208461036001018260208501600060045af15050805182019150503360208261036001015260208101905061022051602082610360010152602081019050806103605261036090508051602001806104008284600060045af161383157600080fd5b505060206104c0610400516104206000610260515af161385057600080fd5b60203d808211156138615780613863565b815b905090506104a0526104a08051602001806102a08284600060045af161388857600080fd5b505060006102a05111156138db576102a08060200151600082518060209013156138b157600080fd5b80919012156138bf57600080fd5b806020036101000a820490509050905015156138da57600080fd5b5b6004356103005260443561032052602435610340526102205161036052337fd013ca23e77a65003c2c659c5442c00c805371b7fc1ebd4c206c41d1536bd90b6080610300a261022051600052600062ffffff5560206000f350600062ffffff55005b635b36389c6000511415613c1e5762ffffff541561395a57600080fd5b600162ffffff556005546101405260206101e060046318160ddd6101805261019c610140515afa61398a57600080fd5b601f3d1161399757600080fd5b6000506101e05161016052604036610180376101c060006002818352015b6101c051600281106139c657600080fd5b600160c052602060c02001546101e0526101e05160043580820282158284830414176139f157600080fd5b80905090509050610160518080613a0757600080fd5b8204905090506102005260246101c05160028110613a2457600080fd5b60200201356102005110151515613a9f576308c379a0610220526020610240526030610260527f5769746864726177616c20726573756c74656420696e20666577657220636f69610280527f6e73207468616e206578706563746564000000000000000000000000000000006102a05261026050608461023cfd5b6101e0516102005180821015613ab457600080fd5b808203905090506101c05160028110613acc57600080fd5b600160c052602060c0200155610200516101806101c05160028110613af057600080fd5b602002015260206102c0604463a9059cbb610220523361024052610200516102605261023c60006101c05160028110613b2857600080fd5b600060c052602060c02001545af1613b3f57600080fd5b601f3d11613b4c57600080fd5b6000506102c0505b81516001018083528114156139b5575b5050602061026060446379cc67906101c052336101e052600435610200526101dc6000610140515af1613b9657600080fd5b601f3d11613ba357600080fd5b60005061026050610180516101c0526101a0516101e052604036610200376101605160043580821015613bd557600080fd5b8082039050905061024052337f7c363854ccf79623411f8995b362bce5eddff18c927edc6f5dbbb5e05819a82c60a06101c0a2600062ffffff556040610180f3600062ffffff55005b63e310327360005114156143db5762ffffff5415613c3b57600080fd5b600162ffffff5560135415613c4f57600080fd5b6101405160065801610026565b61016052610140526101605161014052610140516101605160065801610438565b610180526101605261014052610180516101605260018060c052602060c020546101805260018160c052602060c02001546101a05250610180516101c0526101a0516101e0526101405161016051610180516101a0516101c0516101e05161020051610160516102205261018051610240526101a0516102605261014051610280526102805161026051610240516102205160065801610861565b6102e052610200526101e0526101c0526101a0526101805261016052610140526102e0516102005261022060006002818352015b6101c06102205160028110613d6057600080fd5b60200201805160046102205160028110613d7957600080fd5b602002013580821015613d8b57600080fd5b808203905090508152505b8151600101808352811415613d4c575b50506101405161016051610180516101a0516101c0516101e051610200516102205161016051610240526101c051610260526101e05161028052610140516102a0526102a05161028051610260516102405160065801610861565b6103005261022052610200526101e0526101c0526101a052610180526101605261014052610300516102205260025460028082028215828483041417613e4657600080fd5b809050905090506004808204905090506102405260035461026052604036610280376102c060006002818352015b610220516101806102c05160028110613e8c57600080fd5b60200201518082028215828483041417613ea557600080fd5b80905090509050610200518080613ebb57600080fd5b8204905090506102e0526000610300526101c06102c05160028110613edf57600080fd5b60200201516102e0511115613f28576102e0516101c06102c05160028110613f0657600080fd5b602002015180821015613f1857600080fd5b8082039050905061030052613f5e565b6101c06102c05160028110613f3c57600080fd5b60200201516102e05180821015613f5257600080fd5b80820390509050610300525b61024051610300518082028215828483041417613f7a57600080fd5b809050905090506402540be400808204905090506102806102c05160028110613fa257600080fd5b60200201526101c06102c05160028110613fbb57600080fd5b60200201516102806102c05160028110613fd457600080fd5b6020020151610260518082028215828483041417613ff157600080fd5b809050905090506402540be400808204905090508082101561401257600080fd5b808203905090506102c0516002811061402a57600080fd5b600160c052602060c02001556101c06102c0516002811061404a57600080fd5b6020020180516102806102c0516002811061406457600080fd5b60200201518082101561407657600080fd5b808203905090508152505b8151600101808352811415613e74575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c051610160516102e0526101c051610300526101e0516103205261014051610340526103405161032051610300516102e05160065801610861565b6103a0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103a0516102c0526005546102e052602061038060046318160ddd6103205261033c6102e0515afa61416957600080fd5b601f3d1161417657600080fd5b6000506103805161030052610200516102c0518082101561419657600080fd5b808203905090506103005180820282158284830414176141b557600080fd5b809050905090506102005180806141cb57600080fd5b82049050905061032052600061032051186141e557600080fd5b610320805160018181830110156141fb57600080fd5b808201905090508152506044356103205111151515614259576308c379a0610340526020610360526014610380527f536c697070616765207363726577656420796f750000000000000000000000006103a05261038050606461035cfd5b60206103e060446379cc6790610340523361036052610320516103805261035c60006102e0515af161428a57600080fd5b601f3d1161429757600080fd5b6000506103e05061034060006002818352015b6000600461034051600281106142bf57600080fd5b6020020135181561433d576020610400604463a9059cbb610360523361038052600461034051600281106142f257600080fd5b60200201356103a05261037c6000610340516002811061431157600080fd5b600060c052602060c02001545af161432857600080fd5b601f3d1161433557600080fd5b600050610400505b5b81516001018083528114156142aa575b5050600435610340526024356103605261028051610380526102a0516103a052610220516103c05261030051610320518082101561438b57600080fd5b808203905090506103e052337f2b5508378d7e19e0d5fa338419034731416c4f5b219a10379956f764317fd47e60c0610340a261032051600052600062ffffff5560206000f350600062ffffff55005b600015614748575b6101e0526101405261016052610180526101a0526101c052600061016051121561440c57600080fd5b6002610160511261441c57600080fd5b610140516002808202821582848304141761443657600080fd5b80905090509050610200526101c05161022052606036610240376102a060006002818352015b610160516102a051181561448c576101806102a0516002811061447e57600080fd5b602002015161026052614491565b61450d565b6102408051610260518181830110156144a957600080fd5b80820190509050815250610220516101c05180820282158284830414176144cf57600080fd5b8090509050905061026051600280820282158284830414176144f057600080fd5b80905090509050808061450257600080fd5b820490509050610220525b815160010180835281141561445c575b5050610220516101c051808202821582848304141761453b57600080fd5b809050905090506064808202821582848304141761455857600080fd5b80905090509050610200516002808202821582848304141761457957600080fd5b80905090509050808061458b57600080fd5b82049050905061022052610240516101c051606480820282158284830414176145b357600080fd5b809050905090506102005180806145c957600080fd5b8204905090508181830110156145de57600080fd5b808201905090506102a0526101c0516102c0526102e0600060ff818352015b6102c051610280526102c0516102c051808202821582848304141761462157600080fd5b809050905090506102205181818301101561463b57600080fd5b8082019050905060026102c051808202821582848304141761465c57600080fd5b809050905090506102a05181818301101561467657600080fd5b808201905090506101c0518082101561468e57600080fd5b8082039050905080806146a057600080fd5b8204905090506102c052610280516102c05111156146f55760016102c05161028051808210156146cf57600080fd5b808203905090501115156146f0576102c05160005250506000516101e05156505b61472e565b6001610280516102c0518082101561470c57600080fd5b8082039050905011151561472d576102c05160005250506000516101e05156505b5b5b81516001018083528114156145fd575b505060006000fd005b600015614de3575b6101a0526101405261016052610180526101405161016051610180516101a0516101c05160065801610026565b6101e0526101c0526101a0526101805261016052610140526101e0516101c0526101405161016051610180516101a0516101c0516101e0516102005161018051610220526102205160065801610226565b610280526102a052610200526101e0526101c0526101a05261018052610160526101405261028080516101e052806020015161020052506101405161016051610180516101a0516101c0516101e05161020051610220516101e0516102405261020051610260526101c0516102805261028051610260516102405160065801610559565b6102e05261022052610200526101e0526101c0526101a0526101805261016052610140526102e0516102205260206102c060046318160ddd6102605261027c6005545afa61489f57600080fd5b601f3d116148ac57600080fd5b6000506102c0516102405261022051610140516102205180820282158284830414176148d757600080fd5b809050905090506102405180806148ed57600080fd5b8204905090508082101561490057600080fd5b80820390509050610260526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516101c0516102a052610160516102c0526101e0516102e0526102005161030052610260516103205261032051610300516102e0516102c0516102a051600658016143e3565b6103805261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103805161028052600254600280820282158284830414176149cd57600080fd5b809050905090506004808204905090506102a052670de0b6b3a76400006102c052670de0b6b3a76400006102e052610180516102e0526101e0516103005261020051610320526101e06101605160028110614a2757600080fd5b60200201516102805180821015614a3d57600080fd5b80820390509050670de0b6b3a76400008082028215828483041417614a6157600080fd5b809050905090506102c06101605160028110614a7c57600080fd5b60200201518080614a8c57600080fd5b8204905090506103405261036060006002818352015b60006103805261016051610360511415614b24576101e06103605160028110614aca57600080fd5b6020020151610260518082028215828483041417614ae757600080fd5b80905090509050610220518080614afd57600080fd5b8204905090506102805180821015614b1457600080fd5b8082039050905061038052614ba3565b6101e06103605160028110614b3857600080fd5b60200201516101e06103605160028110614b5157600080fd5b6020020151610260518082028215828483041417614b6e57600080fd5b80905090509050610220518080614b8457600080fd5b82049050905080821015614b9757600080fd5b80820390509050610380525b6103006103605160028110614bb757600080fd5b6020020180516102a051610380518082028215828483041417614bd957600080fd5b809050905090506402540be4008082049050905080821015614bfa57600080fd5b808203905090508152505b8151600101808352811415614aa2575b50506103006101605160028110614c2b57600080fd5b6020020151610140610380525b61038051516020610380510161038052610380610380511015614c5a57614c38565b6101c0516103a052610160516103c052610300516103e0526103205161040052610260516104205261042051610400516103e0516103c0516103a051600658016143e3565b61048052610360610380525b6103805152602061038051036103805261014061038051101515614cce57614cab565b6104805180821015614cdf57600080fd5b808203905090506103605261036051600180821015614cfd57600080fd5b80820390509050670de0b6b3a76400008082028215828483041417614d2157600080fd5b809050905090506102c06101605160028110614d3c57600080fd5b60200201518080614d4c57600080fd5b8204905090506103605261038080808061036051815250506020810190508080610340516103605180821015614d8157600080fd5b80820390509050815250506020810190508080610240518152505060609050905060c05260c0516103e0525b60006103e051111515614dbf57614ddb565b60206103e05103610380015160206103e051036103e052614dad565b6101a0515650005b63cc2b27d76000511415614eac5760243580806000811215614e0157195b607f1c15614e0e57600080fd5b90505061014051600658016104d2565b61016052610140526101605161014052610140516004356101605260243561018052610140516101a0526101a051610180516101605160065801614750565b61020052610220526102405261014052610200808080805161026052505060208101905080808051610280525050602081019050808080516102a052505050506102605160005260206000f350005b631a4d01d260005114156151a85762ffffff5415614ec957600080fd5b600162ffffff5560243580806000811215614ee057195b607f1c15614eed57600080fd5b90505060135415614efd57600080fd5b6101405160065801610438565b61016052610140526101605161014052606036610160376101405161016051610180516101a0516004356101c0526024356101e0526101405161020052610200516101e0516101c05160065801614750565b61026052610280526102a0526101a05261018052610160526101405261026080808080516102c0525050602081019050808080516102e05250506020810190508080805161030052505050506102c080516101605280602001516101805280604001516101a052506044356101605110151515615018576308c379a06101c05260206101e0526018610200527f4e6f7420656e6f75676820636f696e732072656d6f7665640000000000000000610220526102005060646101dcfd5b6024356002811061502857600080fd5b600160c052602060c0200180546101605161018051600354808202821582848304141761505457600080fd5b809050905090506402540be4008082049050905081818301101561507757600080fd5b808201905090508082101561508b57600080fd5b80820390509050815550602061026060446379cc67906101c052336101e052600435610200526101dc60006005545af16150c457600080fd5b601f3d116150d157600080fd5b600050610260506020610260604463a9059cbb6101c052336101e05261016051610200526101dc60006024356002811061510a57600080fd5b600060c052602060c02001545af161512157600080fd5b601f3d1161512e57600080fd5b600050610260506004356101c052610160516101e0526101a0516004358082101561515857600080fd5b8082039050905061020052337f5ad056f2e28a8cec232015406b843668c1e36cda598127ec3b8c59b8c72773a060606101c0a261016051600052600062ffffff5560206000f350600062ffffff55005b633c157e64600051141561534c5760045433146151c457600080fd5b600c54620151808181830110156151da57600080fd5b808201905090504210156151ed57600080fd5b426201518081818301101561520157600080fd5b80820190509050602435101561521657600080fd5b6101405160065801610026565b610160526101405261016051610140526004356064808202821582848304141761524c57600080fd5b80905090509050610160526000600435111561526f57620f424060043510615272565b60005b61527b57600080fd5b610140516101605110156152be576101405161016051600a80820282158284830414176152a757600080fd5b8090509050905010156152b957600080fd5b6152ef565b61014051600a80820282158284830414176152d857600080fd5b809050905090506101605111156152ee57600080fd5b5b61014051600a5561016051600b5542600c55602435600d556101405161018052610160516101a052426101c0526024356101e0527fa2b71ec6df949300b59aab36b55e189697b750119dd349fcfa8c0f779e83c2546080610180a1005b63551a658860005114156153d157600454331461536857600080fd5b6101405160065801610026565b6101605261014052610160516101405261014051600a5561014051600b5542600c5542600d55610140516101605242610180527f46e22fb3709ad289f62ce63d469248536dbc78d82b84a3d7e74ad606dc2019386040610160a1005b635b5a1467600051141561548f5760045433146153ed57600080fd5b600e54156153fa57600080fd5b64012a05f200600435111561540e57600080fd5b6402540be400602435111561542257600080fd5b426203f48081818301101561543657600080fd5b808201905090506101405261014051600e556004356010556024356011556004356101605260243561018052610140517f351fc5da2fbf480f2225debf3664a4bc90fa9923743aad58b4603f648e931fe06040610160a2005b634f12fe9760005114156155235760045433146154ab57600080fd5b600e544210156154ba57600080fd5b6000600e54186154c957600080fd5b6000600e55601054610140526011546101605261014051600255610160516003556101405161018052610160516101a0527fbe12859b636aed607d5230b2cc2711f68d70e51060e6cca1f575ef5d2fcc95d16040610180a1005b63226840fb600051141561554657600454331461553f57600080fd5b6000600e55005b636b441a4060005114156155da5760043560a01c1561556457600080fd5b600454331461557257600080fd5b600f541561557f57600080fd5b426203f48081818301101561559357600080fd5b808201905090506101405261014051600f55600435601255600435610140517f181aa3aa17d4cbf99265dd4443eba009433d3cde79d60164fde1d1a192beb93560006000a3005b636a1c05ae60005114156156535760045433146155f657600080fd5b600f5442101561560557600080fd5b6000600f541861561457600080fd5b6000600f556012546101405261014051600455610140517f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c60006000a2005b6386fbf193600051141561567657600454331461566f57600080fd5b6000600f55005b63e2e7d26460005114156157125760206101c060246370a0823161014052306101605261015c600435600281106156ac57600080fd5b600060c052602060c02001545afa6156c357600080fd5b601f3d116156d057600080fd5b6000506101c051600435600281106156e757600080fd5b600160c052602060c02001548082101561570057600080fd5b8082039050905060005260206000f350005b6330c54085600051141561583257600454331461572e57600080fd5b61014060006002818352015b610140516002811061574b57600080fd5b600060c052602060c020015461016052602061022060246370a082316101a052306101c0526101bc610160515afa61578257600080fd5b601f3d1161578f57600080fd5b6000506102205161014051600281106157a757600080fd5b600160c052602060c0200154808210156157c057600080fd5b8082039050905061018052600061018051111561581d576020610240604463a9059cbb6101a052336101c052610180516101e0526101bc6000610160515af161580857600080fd5b601f3d1161581557600080fd5b600050610240505b5b815160010180835281141561573a575b5050005b63524c390160005114156158e057600454331461584e57600080fd5b61014060006002818352015b60206101e060246370a0823161016052306101805261017c610140516002811061588357600080fd5b600060c052602060c02001545afa61589a57600080fd5b601f3d116158a757600080fd5b6000506101e05161014051600281106158bf57600080fd5b600160c052602060c02001555b815160010180835281141561585a575b5050005b63e369885360005114156159115760045433146158fc57600080fd5b426014541161590a57600080fd5b6001601355005b633046f972600051141561593457600454331461592d57600080fd5b6000601355005b63c66106576000511415615969576004356002811061595257600080fd5b600060c052602060c020015460005260206000f350005b634903b0d1600051141561599e576004356002811061598757600080fd5b600160c052602060c020015460005260206000f350005b63ddca3f4360005114156159ba5760025460005260206000f350005b63fee3f7f960005114156159d65760035460005260206000f350005b638da5cb5b60005114156159f25760045460005260206000f350005b6382c630666000511415615a0e5760055460005260206000f350005b635d6362bb6000511415615a2a5760065460005260206000f350005b6395ccc02f6000511415615a465760075460005260206000f350005b638296f84f6000511415615a625760085460005260206000f350005b6387cb4f576000511415615a975760043560038110615a8057600080fd5b600960c052602060c020015460005260206000f350005b635409491a6000511415615ab357600a5460005260206000f350005b63b4b577ad6000511415615acf57600b5460005260206000f350005b632081066c6000511415615aeb57600c5460005260206000f350005b63140522886000511415615b0757600d5460005260206000f350005b63405e28f86000511415615b2357600e5460005260206000f350005b63e0a0b5866000511415615b3f57600f5460005260206000f350005b6358680d0b6000511415615b5b5760105460005260206000f350005b63e38244626000511415615b775760115460005260206000f350005b631ec0cdc16000511415615b935760125460005260206000f350005b5b60006000fd5b6103a6615f40036103a66000396103a6615f40036000f30000000000000000000000007eeac6cddbd1d0b8af061742d41877d7f707289a0000000000000000000000001456688345527be1f37e9e627da0837d6f08c9250000000000000000000000006c3f90f043a72fa612cbac8115ee7e52bde6e4900000000000000000000000007eb40e450b9655f4b3cc4259bcc731c63ff55ae6000000000000000000000000bebc44782c7db0a1a60cb6fe97d0b483032ff1c7000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000003d0900000000000000000000000000000000000000000000000000000000012a05f200
Deployed Bytecode
0x341561000a57600080fd5b600436101561001857615b94565b600035601c526000156101c1575b61014052600d5461016052600b5461018052610160514210156101ae57600a546101a052600c546101c0526101a051610180511115610107576101a051610180516101a0518082101561007857600080fd5b80820390509050426101c0518082101561009157600080fd5b8082039050905080820282158284830414176100ac57600080fd5b80905090509050610160516101c051808210156100c857600080fd5b8082039050905080806100da57600080fd5b8204905090508181830110156100ef57600080fd5b808201905090506000526000516101405156506101a9565b6101a0516101a051610180518082101561012057600080fd5b80820390509050426101c0518082101561013957600080fd5b80820390509050808202821582848304141761015457600080fd5b80905090509050610160516101c0518082101561017057600080fd5b80820390509050808061018257600080fd5b8204905090508082101561019557600080fd5b808203905090506000526000516101405156505b6101bf565b610180516000526000516101405156505b005b63f446c1d060005114156101f45760065801610026565b610140526101405160648082049050905060005260206000f350005b6376a2f0f0600051141561021e5760065801610026565b610140526101405160005260206000f350005b600015610325575b6101605261014052670de0b6b3a764000061018052670de0b6b3a76400006101a052610140516101a0526101c060006002818352015b6101806101c0516002811061027057600080fd5b60200201516101c0516002811061028657600080fd5b600160c052602060c020015480820282158284830414176102a657600080fd5b80905090509050670de0b6b3a7640000808204905090506101806101c051600281106102d157600080fd5b60200201525b815160010180835281141561025c575b505060406101c0525b60006101c0511115156103025761031e565b60206101c05103610180015160206101c051036101c0526102f0565b6101605156005b600015610430575b6101a052610140526101605261018052670de0b6b3a76400006101c052670de0b6b3a76400006101e052610140516101e05261020060006002818352015b6101c0610200516002811061037f57600080fd5b6020020151610160610200516002811061039857600080fd5b602002015180820282158284830414176103b157600080fd5b80905090509050670de0b6b3a7640000808204905090506101c061020051600281106103dc57600080fd5b60200201525b815160010180835281141561036b575b50506040610200525b60006102005111151561040d57610429565b602061020051036101c0015160206102005103610200526103fb565b6101a05156005b6000156104ca575b6101405260085461025881818301101561045157600080fd5b808201905090504211156104b85760206101e0600463bb7b8b806101805261019c6006545afa61048057600080fd5b601f3d1161048d57600080fd5b6000506101e051610160526101605160075542600855610160516000526000516101405156506104c8565b6007546000526000516101405156505b005b600015610551575b610140526008546102588181830110156104eb57600080fd5b8082019050905042111561053f5760206101c0600463bb7b8b806101605261017c6006545afa61051a57600080fd5b601f3d1161052757600080fd5b6000506101c05160005260005161014051565061054f565b6007546000526000516101405156505b005b600015610859575b6101a0526101405261016052610180526040366101c03761022060006002818352015b602061022051026101400151610200526101c08051610200518181830110156105a457600080fd5b808201905090508152505b815160010180835281141561057c575b50506101c05115156105da5760006000526000516101a05156505b6101c0516102005261018051600280820282158284830414176105fc57600080fd5b8090509050905061022052610240600060ff818352015b61020051610260526102a060006002818352015b60206102a051026101400151610280526102605161020051808202821582848304141761065357600080fd5b80905090509050610280516002808202821582848304141761067457600080fd5b80905090509050808061068657600080fd5b820490509050610260525b8151600101808352811415610627575b5050610200516101e052610220516101c05180820282158284830414176106c757600080fd5b8090509050905060648082049050905061026051600280820282158284830414176106f157600080fd5b8090509050905081818301101561070757600080fd5b8082019050905061020051808202821582848304141761072657600080fd5b809050905090506102205160648082101561074057600080fd5b8082039050905061020051808202821582848304141761075f57600080fd5b80905090509050606480820490509050600361026051808202821582848304141761078957600080fd5b8090509050905081818301101561079f57600080fd5b8082019050905080806107b157600080fd5b820490509050610200526101e051610200511115610806576001610200516101e051808210156107e057600080fd5b80820390509050111515610801576102005160005250506000516101a05156505b61083f565b60016101e051610200518082101561081d57600080fd5b8082039050905011151561083e576102005160005250506000516101a05156505b5b5b8151600101808352811415610613575b505060006000fd005b600015610998575b6101c0526101405261016052610180526101a0526101405161016051610180516101a0516101c051610140516101e0526101605161020052610180516102205261022051610200516101e0516006580161032d565b610280526102a0526101c0526101a05261018052610160526101405261028080516102c05280602001516102e052506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e0516102c051610300526102e051610320526101a0516103405261034051610320516103005160065801610559565b6103a0526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103a0516000526000516101c0515650005b63bb7b8b806000511415610b1a576101405160065801610026565b610160526101405261016051610140526101405161016051600658016104d2565b61018052610160526101405261018051610160526101405161016051610180516101a051610160516101c0526101c05160065801610226565b61022052610240526101a05261018052610160526101405261022080516101805280602001516101a052506101405161016051610180516101a0516101c051610180516101e0526101a05161020052610140516102205261022051610200516101e05160065801610559565b610280526101c0526101a052610180526101605261014052610280516101c052602061026060046318160ddd6102005261021c6005545afa610aba57600080fd5b601f3d11610ac757600080fd5b600050610260516101e0526101c051670de0b6b3a76400008082028215828483041417610af357600080fd5b809050905090506101e0518080610b0957600080fd5b82049050905060005260206000f350005b63ed8e84f36000511415610e0f5760443560011c15610b3857600080fd5b6101405160065801610026565b610160526101405261016051610140526101405161016051600658016104d2565b610180526101605261014052610180516101605260018060c052602060c020546101805260018160c052602060c02001546101a052506101405161016051610180516101a0516101c051610160516101e05261018051610200526101a0516102205261014051610240526102405161022051610200516101e05160065801610861565b6102a0526101c0526101a0526101805261016052610140526102a0516101c0526101e060006002818352015b60443515610c6d576101806101e05160028110610c3157600080fd5b60200201805160046101e05160028110610c4a57600080fd5b6020020135818183011015610c5e57600080fd5b80820190509050815250610cb7565b6101806101e05160028110610c8157600080fd5b60200201805160046101e05160028110610c9a57600080fd5b602002013580821015610cac57600080fd5b808203905090508152505b5b8151600101808352811415610c15575b50506101405161016051610180516101a0516101c0516101e051610160516102005261018051610220526101a0516102405261014051610260526102605161024051610220516102005160065801610861565b6102c0526101e0526101c0526101a0526101805261016052610140526102c0516101e052602061028060046318160ddd6102205261023c6005545afa610d6057600080fd5b601f3d11610d6d57600080fd5b600050610280516102005260006102205260443515610dab576101e0516101c05180821015610d9b57600080fd5b8082039050905061022052610dcc565b6101c0516101e05180821015610dc057600080fd5b80820390509050610220525b61022051610200518082028215828483041417610de857600080fd5b809050905090506101c0518080610dfe57600080fd5b82049050905060005260206000f350005b630b4c7e4d60005114156117305762ffffff5415610e2c57600080fd5b600162ffffff5560135415610e4057600080fd5b6101405160065801610026565b61016052610140526101605161014052610140516101605160065801610438565b610180526101605261014052610180516101605260018060c052602060c020546101805260018160c052602060c02001546101a052506101405161016051610180516101a0516101c051610160516101e05261018051610200526101a0516102205261014051610240526102405161022051610200516101e05160065801610861565b6102a0526101c0526101a0526101805261016052610140526102a0516101c0526005546101e052602061028060046318160ddd6102205261023c6101e0515afa610f3a57600080fd5b601f3d11610f4757600080fd5b600050610280516102005261018051610220526101a0516102405261026060006002818352015b610200511515610f9d57600060046102605160028110610f8d57600080fd5b602002013511610f9c57600080fd5b5b6101806102605160028110610fb157600080fd5b602002015160046102605160028110610fc957600080fd5b6020020135818183011015610fdd57600080fd5b808201905090506102206102605160028110610ff857600080fd5b60200201525b8151600101808352811415610f6e575b50506101405161016051610180516101a0516101c0516101e051610200516102205161024051610260516101605161028052610220516102a052610240516102c052610140516102e0526102e0516102c0516102a0516102805160065801610861565b61034052610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261034051610260526101c05161026051116110b757600080fd5b60403661028037610260516102c05260006102e052600061020051111561142a57600254600280820282158284830414176110f157600080fd5b80905090509050600480820490509050610300526003546103205261034060006002818352015b61026051610180610340516002811061113057600080fd5b6020020151808202821582848304141761114957600080fd5b809050905090506101c051808061115f57600080fd5b82049050905061036052600061038052610220610340516002811061118357600080fd5b60200201516103605111156111cc576103605161022061034051600281106111aa57600080fd5b6020020151808210156111bc57600080fd5b8082039050905061038052611202565b61022061034051600281106111e057600080fd5b602002015161036051808210156111f657600080fd5b80820390509050610380525b6103005161038051808202821582848304141761121e57600080fd5b809050905090506402540be40080820490509050610280610340516002811061124657600080fd5b6020020152610220610340516002811061125f57600080fd5b6020020151610280610340516002811061127857600080fd5b602002015161032051808202821582848304141761129557600080fd5b809050905090506402540be40080820490509050808210156112b657600080fd5b8082039050905061034051600281106112ce57600080fd5b600160c052602060c020015561022061034051600281106112ee57600080fd5b602002018051610280610340516002811061130857600080fd5b60200201518082101561131a57600080fd5b808203905090508152505b8151600101808352811415611118575b5050610140610340525b610340515160206103405101610340526103406103405110156113615761133f565b61016051610360526102205161038052610240516103a052610140516103c0526103c0516103a051610380516103605160065801610861565b61042052610320610340525b61034051526020610340510361034052610140610340511015156113c9576113a6565b610420516102c052610200516102c0516101c051808210156113ea57600080fd5b80820390509050808202821582848304141761140557600080fd5b809050905090506101c051808061141b57600080fd5b8204905090506102e05261144d565b600160c052602060c02061022051815561024051600182015550610260516102e0525b6044356102e051101515156114a1576308c379a0610300526020610320526014610340527f536c697070616765207363726577656420796f750000000000000000000000006103605261034050606461031cfd5b61030060006002818352015b6000600461030051600281106114c257600080fd5b6020020135111561164b5760006004610380527f23b872dd000000000000000000000000000000000000000000000000000000006103a0526103806004806020846103e001018260208501600060045af1505080518201915050336020826103e0010152602081019050306020826103e00101526020810190506004610300516002811061154f57600080fd5b60200201356020826103e0010152602081019050806103e0526103e090508051602001806104a08284600060045af161158757600080fd5b505060206105806104a0516104c0600061030051600281106115a857600080fd5b600060c052602060c02001545af16115bf57600080fd5b60203d808211156115d057806115d2565b815b90509050610560526105608051602001806103208284600060045af16115f757600080fd5b5050600061032051111561164a5761032080602001516000825180602090131561162057600080fd5b809190121561162e57600080fd5b806020036101000a8204905090509050151561164957600080fd5b5b5b5b81516001018083528114156114ad575b505060206103a060446340c10f196103005233610320526102e0516103405261031c60006101e0515af161168f57600080fd5b601f3d1161169c57600080fd5b6000506103a050600435610300526024356103205261028051610340526102a051610360526102605161038052610200516102e0518181830110156116e057600080fd5b808201905090506103a052337f26f55a85081d24974e85c6c00045d0f0453991e95873f52bff0d21af4079a76860c0610300a26102e051600052600062ffffff5560206000f350600062ffffff55005b600015611bb2575b6101e0526101405261016052610180526101a0526101c05261016051610140511861176257600080fd5b600061016051121561177357600080fd5b6002610160511261178357600080fd5b600061014051121561179457600080fd5b600261014051126117a457600080fd5b6101405161016051610180516101a0516101c0516101e0516102005160065801610026565b61022052610200526101e0526101c0526101a05261018052610160526101405261022051610200526101405161016051610180516101a0516101c0516101e05161020051610220516101a051610240526101c05161026052610200516102805261028051610260516102405160065801610559565b6102e05261022052610200526101e0526101c0526101a0526101805261016052610140526102e05161022052610200516002808202821582848304141761188457600080fd5b80905090509050610240526102205161026052606036610280376102e060006002818352015b610140516102e05114156118c557610180516102a0526118fb565b610160516102e05118156118f5576101a06102e051600281106118e757600080fd5b60200201516102a0526118fa565b611977565b5b61028080516102a05181818301101561191357600080fd5b808201905090508152506102605161022051808202821582848304141761193957600080fd5b809050905090506102a0516002808202821582848304141761195a57600080fd5b80905090509050808061196c57600080fd5b820490509050610260525b81516001018083528114156118aa575b5050610260516102205180820282158284830414176119a557600080fd5b80905090509050606480820282158284830414176119c257600080fd5b8090509050905061024051600280820282158284830414176119e357600080fd5b8090509050905080806119f557600080fd5b82049050905061026052610280516102205160648082028215828483041417611a1d57600080fd5b80905090509050610240518080611a3357600080fd5b820490509050818183011015611a4857600080fd5b808201905090506102e0526102205161030052610320600060ff818352015b610300516102c05261030051610300518082028215828483041417611a8b57600080fd5b8090509050905061026051818183011015611aa557600080fd5b808201905090506002610300518082028215828483041417611ac657600080fd5b809050905090506102e051818183011015611ae057600080fd5b808201905090506102205180821015611af857600080fd5b808203905090508080611b0a57600080fd5b820490509050610300526102c051610300511115611b5f576001610300516102c05180821015611b3957600080fd5b80820390509050111515611b5a576103005160005250506000516101e05156505b611b98565b60016102c0516103005180821015611b7657600080fd5b80820390509050111515611b97576103005160005250506000516101e05156505b5b5b8151600101808352811415611a67575b505060006000fd005b635e0d443f6000511415611e775760043580806000811215611bd057195b607f1c15611bdd57600080fd5b90505060243580806000811215611bf057195b607f1c15611bfd57600080fd5b905050670de0b6b3a764000061014052670de0b6b3a7640000610160526101405161016051600658016104d2565b61018052610160526101405261018051610160526101405161016051610180516101a051610160516101c0526101c05160065801610226565b61022052610240526101a05261018052610160526101405261022080516101805280602001516101a0525061018060043560028110611ca257600080fd5b602002015160443561014060043560028110611cbd57600080fd5b60200201518082028215828483041417611cd657600080fd5b80905090509050670de0b6b3a764000080820490509050818183011015611cfc57600080fd5b808201905090506101c0526101405161016051610180516101a0516101c0516101e05160043561020052602435610220526101c0516102405261018051610260526101a05161028052610280516102605161024051610220516102005160065801611738565b6102e0526101e0526101c0526101a0526101805261016052610140526102e0516101e05261018060243560028110611d9957600080fd5b60200201516101e05180821015611daf57600080fd5b80820390509050600180821015611dc557600080fd5b8082039050905061020052600254610200518082028215828483041417611deb57600080fd5b809050905090506402540be4008082049050905061022052610200516102205180821015611e1857600080fd5b80820390509050670de0b6b3a76400008082028215828483041417611e3c57600080fd5b8090509050905061014060243560028110611e5657600080fd5b60200201518080611e6657600080fd5b82049050905060005260206000f350005b6307211ef760005114156123935760043580806000811215611e9557195b607f1c15611ea257600080fd5b90505060243580806000811215611eb557195b607f1c15611ec257600080fd5b90505061014051600658016104d2565b61016052610140526101605161014052610140516101605161018051610140516101a0526101a05160065801610226565b6102005261022052610180526101605261014052610200805161016052806020015161018052506006546101a052600435600180820380806000811215611f4657195b607f1c15611f5357600080fd5b9050905090506101c052602435600180820380806000811215611f7257195b607f1c15611f7f57600080fd5b9050905090506101e05260016102005260016102205260006101c0511215611fa957600435610200525b60006101e0511215611fbd57602435610220525b60006102405260006101c05112156120095761016060043560028110611fe257600080fd5b6020020151604435818183011015611ff957600080fd5b80820190509050610240526121bc565b60006101e051121561216457606036610260376044356102606101c0516003811061203357600080fd5b602002015260206103a06084633883e1196102c052610260516102e05261028051610300526102a051610320526001610340526102dc6101a0515afa61207857600080fd5b601f3d1161208557600080fd5b6000506103a0516101405180820282158284830414176120a457600080fd5b80905090509050670de0b6b3a764000080820490509050610240526102408051610240516020610320600463ddca3f436102c0526102dc6101a0515afa6120ea57600080fd5b601f3d116120f757600080fd5b60005061032051808202821582848304141761211257600080fd5b809050905090506404a817c800808204905090508082101561213357600080fd5b8082039050905081525061024080516101805181818301101561215557600080fd5b808201905090508152506121bb565b60206103206064635e0d443f610260526101c051610280526101e0516102a0526044356102c05261027c6101a0515afa61219d57600080fd5b601f3d116121aa57600080fd5b6000506103205160005260206000f3505b5b6101405161016051610180516101a0516101c0516101e051610200516102205161024051610260516102005161028052610220516102a052610240516102c052610160516102e0526101805161030052610300516102e0516102c0516102a0516102805160065801611738565b61036052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103605161026052610160610220516002811061227157600080fd5b6020020151610260518082101561228757600080fd5b8082039050905060018082101561229d57600080fd5b8082039050905061028052610280516002546102805180820282158284830414176122c757600080fd5b809050905090506402540be40080820490509050808210156122e857600080fd5b808203905090506102805260006101e051121515612384576020610340604463cc2b27d76102a05261028051670de0b6b3a7640000808202821582848304141761233157600080fd5b8090509050905061014051808061234757600080fd5b8204905090506102c0526101e0516102e0526102bc6101a0515afa61236b57600080fd5b601f3d1161237857600080fd5b60005061034051610280525b6102805160005260206000f350005b633df021246000511415612b7c5762ffffff54156123b057600080fd5b600162ffffff55600435808060008112156123c757195b607f1c156123d457600080fd5b905050602435808060008112156123e757195b607f1c156123f457600080fd5b9050506013541561240457600080fd5b670de0b6b3a764000061014052670de0b6b3a764000061016052610140516101605160065801610438565b610180526101605261014052610180516101605260018060c052602060c020546101805260018160c052602060c02001546101a052506101405161016051610180516101a0516101c0516101e051610160516102005261018051610220526101a051610240526102405161022051610200516006580161032d565b6102a0526102c0526101e0526101c0526101a0526101805261016052610140526102a080516101c05280602001516101e052506101c0600435600281106124f057600080fd5b60200201516044356101406004356002811061250b57600080fd5b6020020151808202821582848304141761252457600080fd5b80905090509050670de0b6b3a76400008082049050905081818301101561254a57600080fd5b80820190509050610200526101405161016051610180516101a0516101c0516101e0516102005161022051600435610240526024356102605261020051610280526101c0516102a0526101e0516102c0526102c0516102a05161028051610260516102405160065801611738565b6103205261022052610200526101e0526101c0526101a05261018052610160526101405261032051610220526101c0602435600281106125f757600080fd5b6020020151610220518082101561260d57600080fd5b8082039050905060018082101561262357600080fd5b808203905090506102405261024051600254808202821582848304141761264957600080fd5b809050905090506402540be400808204905090506102605261024051610260518082101561267657600080fd5b80820390509050670de0b6b3a7640000808202821582848304141761269a57600080fd5b80905090509050610140602435600281106126b457600080fd5b602002015180806126c457600080fd5b820490509050610240526064356102405110151515612722576308c379a06102805260206102a05260176102c0527f546f6f2066657720636f696e7320696e20726573756c740000000000000000006102e0526102c050606461029cfd5b61026051600354808202821582848304141761273d57600080fd5b809050905090506402540be400808204905090506102805261028051670de0b6b3a7640000808202821582848304141761277657600080fd5b809050905090506101406024356002811061279057600080fd5b602002015180806127a057600080fd5b82049050905061028052610180600435600281106127bd57600080fd5b60200201516044358181830110156127d457600080fd5b80820190509050600435600281106127eb57600080fd5b600160c052602060c02001556101806024356002811061280a57600080fd5b6020020151610240518082101561282057600080fd5b80820390509050610280518082101561283857600080fd5b808203905090506024356002811061284f57600080fd5b600160c052602060c020015560006004610300527f23b872dd000000000000000000000000000000000000000000000000000000006103205261030060048060208461036001018260208501600060045af15050805182019150503360208261036001015260208101905030602082610360010152602081019050604435602082610360010152602081019050806103605261036090508051602001806104208284600060045af161290057600080fd5b505060206105006104205161044060006004356002811061292057600080fd5b600060c052602060c02001545af161293757600080fd5b60203d80821115612948578061294a565b815b905090506104e0526104e08051602001806102a08284600060045af161296f57600080fd5b505060006102a05111156129c2576102a080602001516000825180602090131561299857600080fd5b80919012156129a657600080fd5b806020036101000a820490509050905015156129c157600080fd5b5b60006004610300527fa9059cbb000000000000000000000000000000000000000000000000000000006103205261030060048060208461036001018260208501600060045af15050805182019150503360208261036001015260208101905061024051602082610360010152602081019050806103605261036090508051602001806104008284600060045af1612a5857600080fd5b505060206104c061040051610420600060243560028110612a7857600080fd5b600060c052602060c02001545af1612a8f57600080fd5b60203d80821115612aa05780612aa2565b815b905090506104a0526104a08051602001806102a08284600060045af1612ac757600080fd5b505060006102a0511115612b1a576102a0806020015160008251806020901315612af057600080fd5b8091901215612afe57600080fd5b806020036101000a82049050905090501515612b1957600080fd5b5b6004356103005260443561032052602435610340526102405161036052337f8b3e96f2b889fa771c53c981b40daf005f63f637f1869f707052d15a3dd971406080610300a261024051600052600062ffffff5560206000f350600062ffffff55005b63a6417ed6600051141561393d5762ffffff5415612b9957600080fd5b600162ffffff5560043580806000811215612bb057195b607f1c15612bbd57600080fd5b90505060243580806000811215612bd057195b607f1c15612bdd57600080fd5b90505060135415612bed57600080fd5b670de0b6b3a764000061014052670de0b6b3a764000061016052610140516101605160065801610438565b610180526101605261014052610180516101605260065461018052600435600180820380806000811215612c4857195b607f1c15612c5557600080fd5b9050905090506101a052602435600180820380806000811215612c7457195b607f1c15612c8157600080fd5b9050905090506101c05260016101e05260016102005260006101a0511215612cab576004356101e0525b60006101c0511215612cbf57602435610200525b6060366102203760006101a0511215612cf75760043560028110612ce257600080fd5b600060c052602060c020015461024052612d19565b6101a05160038110612d0857600080fd5b600960c052602060c0200154610240525b60006101c0511215612d4a5760243560028110612d3557600080fd5b600060c052602060c020015461026052612d6c565b6101c05160038110612d5b57600080fd5b600960c052602060c0200154610260525b6044356102805273dac17f958d2ee523a2206206994597c13d831ec7610240511415612de357602061032060246370a082316102a052306102c0526102bc73dac17f958d2ee523a2206206994597c13d831ec75afa612dca57600080fd5b601f3d11612dd757600080fd5b60005061032051610280525b60006004610300527f23b872dd000000000000000000000000000000000000000000000000000000006103205261030060048060208461036001018260208501600060045af15050805182019150503360208261036001015260208101905030602082610360010152602081019050604435602082610360010152602081019050806103605261036090508051602001806104208284600060045af1612e8857600080fd5b50506020610500610420516104406000610240515af1612ea757600080fd5b60203d80821115612eb85780612eba565b815b905090506104e0526104e08051602001806102a08284600060045af1612edf57600080fd5b505060006102a0511115612f32576102a0806020015160008251806020901315612f0857600080fd5b8091901215612f1657600080fd5b806020036101000a82049050905090501515612f3157600080fd5b5b73dac17f958d2ee523a2206206994597c13d831ec7610240511415612fba57602061038060246370a0823161030052306103205261031c73dac17f958d2ee523a2206206994597c13d831ec75afa612f8957600080fd5b601f3d11612f9657600080fd5b600050610380516102805180821015612fae57600080fd5b80820390509050610280525b60006101a0511215612fcd576001612fd5565b60006101c051125b5b156136b45760018060c052602060c020546103005260018160c052602060c02001546103205250610140610380525b6103805151602061038051016103805261038061038051101561302757613005565b610160516103a052610300516103c052610320516103e0526103e0516103c0516103a0516006580161032d565b6104405261046052610360610380525b610380515260206103805103610380526101406103805110151561308757613064565b6104408051610340528060200151610360525060006103805260006101a051121561312a57610340600435600281106130bf57600080fd5b602002015161028051610140600435600281106130db57600080fd5b602002015180820282158284830414176130f457600080fd5b80905090509050670de0b6b3a76400008082049050905081818301101561311a57600080fd5b808201905090506103805261329f565b6060366103a037610280516103a06101a0516003811061314957600080fd5b60200201526001600060c052602060c02001546104005260206104a060246370a0823161042052306104405261043c610400515afa61318757600080fd5b601f3d1161319457600080fd5b6000506104a05161038052610180513b6131ad57600080fd5b600060006084634515cef3610420526103a051610440526103c051610460526103e0516104805260006104a05261043c6000610180515af16131ee57600080fd5b60206104a060246370a0823161042052306104405261043c610400515afa61321557600080fd5b601f3d1161322257600080fd5b6000506104a051610380518082101561323a57600080fd5b80820390509050610280526102805161016051808202821582848304141761326157600080fd5b80905090509050670de0b6b3a7640000808204905090506103805261038080516103605181818301101561329457600080fd5b808201905090508152505b6101406103c0525b6103c0515160206103c051016103c0526103c06103c05110156132c9576132a7565b6101e0516103e0526102005161040052610380516104205261034051610440526103605161046052610460516104405161042051610400516103e05160065801611738565b6104c0526103a06103c0525b6103c0515260206103c051036103c0526101406103c05110151561333d5761331a565b6104c0516103a052610340610200516002811061335957600080fd5b60200201516103a0518082101561336f57600080fd5b8082039050905060018082101561338557600080fd5b80820390509050610220526102205160025480820282158284830414176133ab57600080fd5b809050905090506402540be400808204905090506103c052610220516103c051808210156133d857600080fd5b80820390509050670de0b6b3a764000080820282158284830414176133fc57600080fd5b80905090509050610140610200516002811061341757600080fd5b6020020151808061342757600080fd5b820490509050610220526103c051600354808202821582848304141761344c57600080fd5b809050905090506402540be400808204905090506103e0526103e051670de0b6b3a7640000808202821582848304141761348557600080fd5b8090509050905061014061020051600281106134a057600080fd5b602002015180806134b057600080fd5b8204905090506103e0526103006101e051600281106134ce57600080fd5b6020020151610280518181830110156134e657600080fd5b808201905090506101e051600281106134fe57600080fd5b600160c052602060c0200155610300610200516002811061351e57600080fd5b6020020151610220518082101561353457600080fd5b808203905090506103e0518082101561354c57600080fd5b80820390509050610200516002811061356457600080fd5b600160c052602060c020015560006101c05112151561365b5760206104a060246370a0823161042052306104405261043c610260515afa6135a457600080fd5b601f3d116135b157600080fd5b6000506104a05161040052610180513b6135ca57600080fd5b600060006064631a4d01d26104205261022051610440526101c0516104605260006104805261043c6000610180515af161360357600080fd5b60206104a060246370a0823161042052306104405261043c610260515afa61362a57600080fd5b601f3d1161363757600080fd5b6000506104a051610400518082101561364f57600080fd5b80820390509050610220525b60643561022051101515156136af576308c379a0610400526020610420526017610440527f546f6f2066657720636f696e7320696e20726573756c740000000000000000006104605261044050606461041cfd5b61379b565b602061038060246370a0823161030052306103205261031c610260515afa6136db57600080fd5b601f3d116136e857600080fd5b6000506103805161022052610180513b61370157600080fd5b600060006084633df02124610300526101a051610320526101c0516103405261028051610360526064356103805261031c6000610180515af161374357600080fd5b602061038060246370a0823161030052306103205261031c610260515afa61376a57600080fd5b601f3d1161377757600080fd5b60005061038051610220518082101561378f57600080fd5b80820390509050610220525b60006004610300527fa9059cbb000000000000000000000000000000000000000000000000000000006103205261030060048060208461036001018260208501600060045af15050805182019150503360208261036001015260208101905061022051602082610360010152602081019050806103605261036090508051602001806104008284600060045af161383157600080fd5b505060206104c0610400516104206000610260515af161385057600080fd5b60203d808211156138615780613863565b815b905090506104a0526104a08051602001806102a08284600060045af161388857600080fd5b505060006102a05111156138db576102a08060200151600082518060209013156138b157600080fd5b80919012156138bf57600080fd5b806020036101000a820490509050905015156138da57600080fd5b5b6004356103005260443561032052602435610340526102205161036052337fd013ca23e77a65003c2c659c5442c00c805371b7fc1ebd4c206c41d1536bd90b6080610300a261022051600052600062ffffff5560206000f350600062ffffff55005b635b36389c6000511415613c1e5762ffffff541561395a57600080fd5b600162ffffff556005546101405260206101e060046318160ddd6101805261019c610140515afa61398a57600080fd5b601f3d1161399757600080fd5b6000506101e05161016052604036610180376101c060006002818352015b6101c051600281106139c657600080fd5b600160c052602060c02001546101e0526101e05160043580820282158284830414176139f157600080fd5b80905090509050610160518080613a0757600080fd5b8204905090506102005260246101c05160028110613a2457600080fd5b60200201356102005110151515613a9f576308c379a0610220526020610240526030610260527f5769746864726177616c20726573756c74656420696e20666577657220636f69610280527f6e73207468616e206578706563746564000000000000000000000000000000006102a05261026050608461023cfd5b6101e0516102005180821015613ab457600080fd5b808203905090506101c05160028110613acc57600080fd5b600160c052602060c0200155610200516101806101c05160028110613af057600080fd5b602002015260206102c0604463a9059cbb610220523361024052610200516102605261023c60006101c05160028110613b2857600080fd5b600060c052602060c02001545af1613b3f57600080fd5b601f3d11613b4c57600080fd5b6000506102c0505b81516001018083528114156139b5575b5050602061026060446379cc67906101c052336101e052600435610200526101dc6000610140515af1613b9657600080fd5b601f3d11613ba357600080fd5b60005061026050610180516101c0526101a0516101e052604036610200376101605160043580821015613bd557600080fd5b8082039050905061024052337f7c363854ccf79623411f8995b362bce5eddff18c927edc6f5dbbb5e05819a82c60a06101c0a2600062ffffff556040610180f3600062ffffff55005b63e310327360005114156143db5762ffffff5415613c3b57600080fd5b600162ffffff5560135415613c4f57600080fd5b6101405160065801610026565b61016052610140526101605161014052610140516101605160065801610438565b610180526101605261014052610180516101605260018060c052602060c020546101805260018160c052602060c02001546101a05250610180516101c0526101a0516101e0526101405161016051610180516101a0516101c0516101e05161020051610160516102205261018051610240526101a0516102605261014051610280526102805161026051610240516102205160065801610861565b6102e052610200526101e0526101c0526101a0526101805261016052610140526102e0516102005261022060006002818352015b6101c06102205160028110613d6057600080fd5b60200201805160046102205160028110613d7957600080fd5b602002013580821015613d8b57600080fd5b808203905090508152505b8151600101808352811415613d4c575b50506101405161016051610180516101a0516101c0516101e051610200516102205161016051610240526101c051610260526101e05161028052610140516102a0526102a05161028051610260516102405160065801610861565b6103005261022052610200526101e0526101c0526101a052610180526101605261014052610300516102205260025460028082028215828483041417613e4657600080fd5b809050905090506004808204905090506102405260035461026052604036610280376102c060006002818352015b610220516101806102c05160028110613e8c57600080fd5b60200201518082028215828483041417613ea557600080fd5b80905090509050610200518080613ebb57600080fd5b8204905090506102e0526000610300526101c06102c05160028110613edf57600080fd5b60200201516102e0511115613f28576102e0516101c06102c05160028110613f0657600080fd5b602002015180821015613f1857600080fd5b8082039050905061030052613f5e565b6101c06102c05160028110613f3c57600080fd5b60200201516102e05180821015613f5257600080fd5b80820390509050610300525b61024051610300518082028215828483041417613f7a57600080fd5b809050905090506402540be400808204905090506102806102c05160028110613fa257600080fd5b60200201526101c06102c05160028110613fbb57600080fd5b60200201516102806102c05160028110613fd457600080fd5b6020020151610260518082028215828483041417613ff157600080fd5b809050905090506402540be400808204905090508082101561401257600080fd5b808203905090506102c0516002811061402a57600080fd5b600160c052602060c02001556101c06102c0516002811061404a57600080fd5b6020020180516102806102c0516002811061406457600080fd5b60200201518082101561407657600080fd5b808203905090508152505b8151600101808352811415613e74575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c051610160516102e0526101c051610300526101e0516103205261014051610340526103405161032051610300516102e05160065801610861565b6103a0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103a0516102c0526005546102e052602061038060046318160ddd6103205261033c6102e0515afa61416957600080fd5b601f3d1161417657600080fd5b6000506103805161030052610200516102c0518082101561419657600080fd5b808203905090506103005180820282158284830414176141b557600080fd5b809050905090506102005180806141cb57600080fd5b82049050905061032052600061032051186141e557600080fd5b610320805160018181830110156141fb57600080fd5b808201905090508152506044356103205111151515614259576308c379a0610340526020610360526014610380527f536c697070616765207363726577656420796f750000000000000000000000006103a05261038050606461035cfd5b60206103e060446379cc6790610340523361036052610320516103805261035c60006102e0515af161428a57600080fd5b601f3d1161429757600080fd5b6000506103e05061034060006002818352015b6000600461034051600281106142bf57600080fd5b6020020135181561433d576020610400604463a9059cbb610360523361038052600461034051600281106142f257600080fd5b60200201356103a05261037c6000610340516002811061431157600080fd5b600060c052602060c02001545af161432857600080fd5b601f3d1161433557600080fd5b600050610400505b5b81516001018083528114156142aa575b5050600435610340526024356103605261028051610380526102a0516103a052610220516103c05261030051610320518082101561438b57600080fd5b808203905090506103e052337f2b5508378d7e19e0d5fa338419034731416c4f5b219a10379956f764317fd47e60c0610340a261032051600052600062ffffff5560206000f350600062ffffff55005b600015614748575b6101e0526101405261016052610180526101a0526101c052600061016051121561440c57600080fd5b6002610160511261441c57600080fd5b610140516002808202821582848304141761443657600080fd5b80905090509050610200526101c05161022052606036610240376102a060006002818352015b610160516102a051181561448c576101806102a0516002811061447e57600080fd5b602002015161026052614491565b61450d565b6102408051610260518181830110156144a957600080fd5b80820190509050815250610220516101c05180820282158284830414176144cf57600080fd5b8090509050905061026051600280820282158284830414176144f057600080fd5b80905090509050808061450257600080fd5b820490509050610220525b815160010180835281141561445c575b5050610220516101c051808202821582848304141761453b57600080fd5b809050905090506064808202821582848304141761455857600080fd5b80905090509050610200516002808202821582848304141761457957600080fd5b80905090509050808061458b57600080fd5b82049050905061022052610240516101c051606480820282158284830414176145b357600080fd5b809050905090506102005180806145c957600080fd5b8204905090508181830110156145de57600080fd5b808201905090506102a0526101c0516102c0526102e0600060ff818352015b6102c051610280526102c0516102c051808202821582848304141761462157600080fd5b809050905090506102205181818301101561463b57600080fd5b8082019050905060026102c051808202821582848304141761465c57600080fd5b809050905090506102a05181818301101561467657600080fd5b808201905090506101c0518082101561468e57600080fd5b8082039050905080806146a057600080fd5b8204905090506102c052610280516102c05111156146f55760016102c05161028051808210156146cf57600080fd5b808203905090501115156146f0576102c05160005250506000516101e05156505b61472e565b6001610280516102c0518082101561470c57600080fd5b8082039050905011151561472d576102c05160005250506000516101e05156505b5b5b81516001018083528114156145fd575b505060006000fd005b600015614de3575b6101a0526101405261016052610180526101405161016051610180516101a0516101c05160065801610026565b6101e0526101c0526101a0526101805261016052610140526101e0516101c0526101405161016051610180516101a0516101c0516101e0516102005161018051610220526102205160065801610226565b610280526102a052610200526101e0526101c0526101a05261018052610160526101405261028080516101e052806020015161020052506101405161016051610180516101a0516101c0516101e05161020051610220516101e0516102405261020051610260526101c0516102805261028051610260516102405160065801610559565b6102e05261022052610200526101e0526101c0526101a0526101805261016052610140526102e0516102205260206102c060046318160ddd6102605261027c6005545afa61489f57600080fd5b601f3d116148ac57600080fd5b6000506102c0516102405261022051610140516102205180820282158284830414176148d757600080fd5b809050905090506102405180806148ed57600080fd5b8204905090508082101561490057600080fd5b80820390509050610260526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516101c0516102a052610160516102c0526101e0516102e0526102005161030052610260516103205261032051610300516102e0516102c0516102a051600658016143e3565b6103805261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103805161028052600254600280820282158284830414176149cd57600080fd5b809050905090506004808204905090506102a052670de0b6b3a76400006102c052670de0b6b3a76400006102e052610180516102e0526101e0516103005261020051610320526101e06101605160028110614a2757600080fd5b60200201516102805180821015614a3d57600080fd5b80820390509050670de0b6b3a76400008082028215828483041417614a6157600080fd5b809050905090506102c06101605160028110614a7c57600080fd5b60200201518080614a8c57600080fd5b8204905090506103405261036060006002818352015b60006103805261016051610360511415614b24576101e06103605160028110614aca57600080fd5b6020020151610260518082028215828483041417614ae757600080fd5b80905090509050610220518080614afd57600080fd5b8204905090506102805180821015614b1457600080fd5b8082039050905061038052614ba3565b6101e06103605160028110614b3857600080fd5b60200201516101e06103605160028110614b5157600080fd5b6020020151610260518082028215828483041417614b6e57600080fd5b80905090509050610220518080614b8457600080fd5b82049050905080821015614b9757600080fd5b80820390509050610380525b6103006103605160028110614bb757600080fd5b6020020180516102a051610380518082028215828483041417614bd957600080fd5b809050905090506402540be4008082049050905080821015614bfa57600080fd5b808203905090508152505b8151600101808352811415614aa2575b50506103006101605160028110614c2b57600080fd5b6020020151610140610380525b61038051516020610380510161038052610380610380511015614c5a57614c38565b6101c0516103a052610160516103c052610300516103e0526103205161040052610260516104205261042051610400516103e0516103c0516103a051600658016143e3565b61048052610360610380525b6103805152602061038051036103805261014061038051101515614cce57614cab565b6104805180821015614cdf57600080fd5b808203905090506103605261036051600180821015614cfd57600080fd5b80820390509050670de0b6b3a76400008082028215828483041417614d2157600080fd5b809050905090506102c06101605160028110614d3c57600080fd5b60200201518080614d4c57600080fd5b8204905090506103605261038080808061036051815250506020810190508080610340516103605180821015614d8157600080fd5b80820390509050815250506020810190508080610240518152505060609050905060c05260c0516103e0525b60006103e051111515614dbf57614ddb565b60206103e05103610380015160206103e051036103e052614dad565b6101a0515650005b63cc2b27d76000511415614eac5760243580806000811215614e0157195b607f1c15614e0e57600080fd5b90505061014051600658016104d2565b61016052610140526101605161014052610140516004356101605260243561018052610140516101a0526101a051610180516101605160065801614750565b61020052610220526102405261014052610200808080805161026052505060208101905080808051610280525050602081019050808080516102a052505050506102605160005260206000f350005b631a4d01d260005114156151a85762ffffff5415614ec957600080fd5b600162ffffff5560243580806000811215614ee057195b607f1c15614eed57600080fd5b90505060135415614efd57600080fd5b6101405160065801610438565b61016052610140526101605161014052606036610160376101405161016051610180516101a0516004356101c0526024356101e0526101405161020052610200516101e0516101c05160065801614750565b61026052610280526102a0526101a05261018052610160526101405261026080808080516102c0525050602081019050808080516102e05250506020810190508080805161030052505050506102c080516101605280602001516101805280604001516101a052506044356101605110151515615018576308c379a06101c05260206101e0526018610200527f4e6f7420656e6f75676820636f696e732072656d6f7665640000000000000000610220526102005060646101dcfd5b6024356002811061502857600080fd5b600160c052602060c0200180546101605161018051600354808202821582848304141761505457600080fd5b809050905090506402540be4008082049050905081818301101561507757600080fd5b808201905090508082101561508b57600080fd5b80820390509050815550602061026060446379cc67906101c052336101e052600435610200526101dc60006005545af16150c457600080fd5b601f3d116150d157600080fd5b600050610260506020610260604463a9059cbb6101c052336101e05261016051610200526101dc60006024356002811061510a57600080fd5b600060c052602060c02001545af161512157600080fd5b601f3d1161512e57600080fd5b600050610260506004356101c052610160516101e0526101a0516004358082101561515857600080fd5b8082039050905061020052337f5ad056f2e28a8cec232015406b843668c1e36cda598127ec3b8c59b8c72773a060606101c0a261016051600052600062ffffff5560206000f350600062ffffff55005b633c157e64600051141561534c5760045433146151c457600080fd5b600c54620151808181830110156151da57600080fd5b808201905090504210156151ed57600080fd5b426201518081818301101561520157600080fd5b80820190509050602435101561521657600080fd5b6101405160065801610026565b610160526101405261016051610140526004356064808202821582848304141761524c57600080fd5b80905090509050610160526000600435111561526f57620f424060043510615272565b60005b61527b57600080fd5b610140516101605110156152be576101405161016051600a80820282158284830414176152a757600080fd5b8090509050905010156152b957600080fd5b6152ef565b61014051600a80820282158284830414176152d857600080fd5b809050905090506101605111156152ee57600080fd5b5b61014051600a5561016051600b5542600c55602435600d556101405161018052610160516101a052426101c0526024356101e0527fa2b71ec6df949300b59aab36b55e189697b750119dd349fcfa8c0f779e83c2546080610180a1005b63551a658860005114156153d157600454331461536857600080fd5b6101405160065801610026565b6101605261014052610160516101405261014051600a5561014051600b5542600c5542600d55610140516101605242610180527f46e22fb3709ad289f62ce63d469248536dbc78d82b84a3d7e74ad606dc2019386040610160a1005b635b5a1467600051141561548f5760045433146153ed57600080fd5b600e54156153fa57600080fd5b64012a05f200600435111561540e57600080fd5b6402540be400602435111561542257600080fd5b426203f48081818301101561543657600080fd5b808201905090506101405261014051600e556004356010556024356011556004356101605260243561018052610140517f351fc5da2fbf480f2225debf3664a4bc90fa9923743aad58b4603f648e931fe06040610160a2005b634f12fe9760005114156155235760045433146154ab57600080fd5b600e544210156154ba57600080fd5b6000600e54186154c957600080fd5b6000600e55601054610140526011546101605261014051600255610160516003556101405161018052610160516101a0527fbe12859b636aed607d5230b2cc2711f68d70e51060e6cca1f575ef5d2fcc95d16040610180a1005b63226840fb600051141561554657600454331461553f57600080fd5b6000600e55005b636b441a4060005114156155da5760043560a01c1561556457600080fd5b600454331461557257600080fd5b600f541561557f57600080fd5b426203f48081818301101561559357600080fd5b808201905090506101405261014051600f55600435601255600435610140517f181aa3aa17d4cbf99265dd4443eba009433d3cde79d60164fde1d1a192beb93560006000a3005b636a1c05ae60005114156156535760045433146155f657600080fd5b600f5442101561560557600080fd5b6000600f541861561457600080fd5b6000600f556012546101405261014051600455610140517f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c60006000a2005b6386fbf193600051141561567657600454331461566f57600080fd5b6000600f55005b63e2e7d26460005114156157125760206101c060246370a0823161014052306101605261015c600435600281106156ac57600080fd5b600060c052602060c02001545afa6156c357600080fd5b601f3d116156d057600080fd5b6000506101c051600435600281106156e757600080fd5b600160c052602060c02001548082101561570057600080fd5b8082039050905060005260206000f350005b6330c54085600051141561583257600454331461572e57600080fd5b61014060006002818352015b610140516002811061574b57600080fd5b600060c052602060c020015461016052602061022060246370a082316101a052306101c0526101bc610160515afa61578257600080fd5b601f3d1161578f57600080fd5b6000506102205161014051600281106157a757600080fd5b600160c052602060c0200154808210156157c057600080fd5b8082039050905061018052600061018051111561581d576020610240604463a9059cbb6101a052336101c052610180516101e0526101bc6000610160515af161580857600080fd5b601f3d1161581557600080fd5b600050610240505b5b815160010180835281141561573a575b5050005b63524c390160005114156158e057600454331461584e57600080fd5b61014060006002818352015b60206101e060246370a0823161016052306101805261017c610140516002811061588357600080fd5b600060c052602060c02001545afa61589a57600080fd5b601f3d116158a757600080fd5b6000506101e05161014051600281106158bf57600080fd5b600160c052602060c02001555b815160010180835281141561585a575b5050005b63e369885360005114156159115760045433146158fc57600080fd5b426014541161590a57600080fd5b6001601355005b633046f972600051141561593457600454331461592d57600080fd5b6000601355005b63c66106576000511415615969576004356002811061595257600080fd5b600060c052602060c020015460005260206000f350005b634903b0d1600051141561599e576004356002811061598757600080fd5b600160c052602060c020015460005260206000f350005b63ddca3f4360005114156159ba5760025460005260206000f350005b63fee3f7f960005114156159d65760035460005260206000f350005b638da5cb5b60005114156159f25760045460005260206000f350005b6382c630666000511415615a0e5760055460005260206000f350005b635d6362bb6000511415615a2a5760065460005260206000f350005b6395ccc02f6000511415615a465760075460005260206000f350005b638296f84f6000511415615a625760085460005260206000f350005b6387cb4f576000511415615a975760043560038110615a8057600080fd5b600960c052602060c020015460005260206000f350005b635409491a6000511415615ab357600a5460005260206000f350005b63b4b577ad6000511415615acf57600b5460005260206000f350005b632081066c6000511415615aeb57600c5460005260206000f350005b63140522886000511415615b0757600d5460005260206000f350005b63405e28f86000511415615b2357600e5460005260206000f350005b63e0a0b5866000511415615b3f57600f5460005260206000f350005b6358680d0b6000511415615b5b5760105460005260206000f350005b63e38244626000511415615b775760115460005260206000f350005b631ec0cdc16000511415615b935760125460005260206000f350005b5b60006000fd
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007eeac6cddbd1d0b8af061742d41877d7f707289a0000000000000000000000001456688345527be1f37e9e627da0837d6f08c9250000000000000000000000006c3f90f043a72fa612cbac8115ee7e52bde6e4900000000000000000000000007eb40e450b9655f4b3cc4259bcc731c63ff55ae6000000000000000000000000bebc44782c7db0a1a60cb6fe97d0b483032ff1c7000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000003d0900000000000000000000000000000000000000000000000000000000012a05f200
-----Decoded View---------------
Arg [0] : _owner (address): 0x7EeAC6CDdbd1D0B8aF061742D41877D7F707289a
Arg [1] : _coins (address[2]): 0x1456688345527bE1f37E9e627DA0837D6f08C925,0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490
Arg [2] : _pool_token (address): 0x7Eb40E450b9655f4B3cC4259BCC731c63ff55ae6
Arg [3] : _base_pool (address): 0xbEbc44782C7dB0a1A60Cb6fe97d0b483032FF1C7
Arg [4] : _A (uint256): 100
Arg [5] : _fee (uint256): 4000000
Arg [6] : _admin_fee (uint256): 5000000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000007eeac6cddbd1d0b8af061742d41877d7f707289a
Arg [1] : 0000000000000000000000001456688345527be1f37e9e627da0837d6f08c925
Arg [2] : 0000000000000000000000006c3f90f043a72fa612cbac8115ee7e52bde6e490
Arg [3] : 0000000000000000000000007eb40e450b9655f4b3cc4259bcc731c63ff55ae6
Arg [4] : 000000000000000000000000bebc44782c7db0a1a60cb6fe97d0b483032ff1c7
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [6] : 00000000000000000000000000000000000000000000000000000000003d0900
Arg [7] : 000000000000000000000000000000000000000000000000000000012a05f200
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.