Overview
BNB Balance
0 BNB
BNB Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 104,228 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exchange | 45206466 | 4 days ago | IN | 0 BNB | 0.0001191 | ||||
Exchange | 45108653 | 7 days ago | IN | 0 BNB | 0.00011657 | ||||
Exchange | 45065860 | 9 days ago | IN | 0 BNB | 0.00010931 | ||||
Exchange | 44865436 | 15 days ago | IN | 0 BNB | 0.0001118 | ||||
Exchange | 44777914 | 19 days ago | IN | 0 BNB | 0.00013958 | ||||
Exchange | 44716509 | 21 days ago | IN | 0 BNB | 0.00010984 | ||||
Exchange | 44507542 | 28 days ago | IN | 0 BNB | 0.00011768 | ||||
Exchange | 44067900 | 43 days ago | IN | 0 BNB | 0.00012195 | ||||
Exchange | 43964895 | 47 days ago | IN | 0 BNB | 0.00022472 | ||||
Exchange | 43953602 | 47 days ago | IN | 0 BNB | 0.00012946 | ||||
Exchange | 43923804 | 48 days ago | IN | 0 BNB | 0.00012496 | ||||
Exchange | 43923780 | 48 days ago | IN | 0 BNB | 0.00012442 | ||||
Exchange | 43923765 | 48 days ago | IN | 0 BNB | 0.00012496 | ||||
Exchange | 43923724 | 48 days ago | IN | 0 BNB | 0.00012496 | ||||
Exchange | 43923630 | 48 days ago | IN | 0 BNB | 0.00014206 | ||||
Exchange | 43654913 | 58 days ago | IN | 0 BNB | 0.00010931 | ||||
Exchange | 43654877 | 58 days ago | IN | 0 BNB | 0.00010931 | ||||
Exchange | 43416206 | 66 days ago | IN | 0 BNB | 0.00032797 | ||||
Exchange | 43412166 | 66 days ago | IN | 0 BNB | 0.0004565 | ||||
Exchange | 43412158 | 66 days ago | IN | 0 BNB | 0.00034237 | ||||
Exchange | 43244418 | 72 days ago | IN | 0 BNB | 0.00045866 | ||||
Exchange | 43210673 | 73 days ago | IN | 0 BNB | 0.00011346 | ||||
Exchange | 43158207 | 75 days ago | IN | 0 BNB | 0.00076194 | ||||
Exchange | 43139973 | 75 days ago | IN | 0 BNB | 0.00032797 | ||||
Exchange | 43139458 | 75 days ago | IN | 0 BNB | 0.00076519 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
5471335 | 1393 days ago | 0 BNB | ||||
5471335 | 1393 days ago | 0 BNB | ||||
5471335 | 1393 days ago | 0 BNB | ||||
5471322 | 1393 days ago | 0 BNB | ||||
5471322 | 1393 days ago | 0 BNB | ||||
5471322 | 1393 days ago | 0 BNB | ||||
5471319 | 1393 days ago | 0 BNB | ||||
5471319 | 1393 days ago | 0 BNB | ||||
5471319 | 1393 days ago | 0 BNB | ||||
5471307 | 1393 days ago | 0 BNB | ||||
5471307 | 1393 days ago | 0 BNB | ||||
5471307 | 1393 days ago | 0 BNB | ||||
5471304 | 1393 days ago | 0 BNB | ||||
5471304 | 1393 days ago | 0 BNB | ||||
5471304 | 1393 days ago | 0 BNB | ||||
5471292 | 1393 days ago | 0 BNB | ||||
5471292 | 1393 days ago | 0 BNB | ||||
5471292 | 1393 days ago | 0 BNB | ||||
5471291 | 1393 days ago | 0 BNB | ||||
5471291 | 1393 days ago | 0 BNB | ||||
5471291 | 1393 days ago | 0 BNB | ||||
5471290 | 1393 days ago | 0 BNB | ||||
5471290 | 1393 days ago | 0 BNB | ||||
5471290 | 1393 days ago | 0 BNB | ||||
5471289 | 1393 days ago | 0 BNB |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Vyper_contract
Compiler Version
vyper:0.2.7
Contract Source Code (Vyper language format)
#https://github.com/curvefi/curve-contract/blob/e240a4c96cf94e717b39b51ecf50a30decdc95ac/contracts/pool-templates/base/SwapTemplateBase.vy # @version ^0.2.0 """ @title StableSwap @author Curve.Fi @license Copyright (c) Curve.Fi, 2020 - all rights reserved @notice Minimal pool implementation with no lending @dev This contract is only a template, pool-specific constants must be set prior to compiling """ from vyper.interfaces import ERC20 interface CurveToken: def mint(_to: address, _value: uint256) -> bool: nonpayable def burnFrom(_to: address, _value: uint256) -> bool: nonpayable # Events event TokenExchange: buyer: indexed(address) sold_id: int128 tokens_sold: uint256 bought_id: int128 tokens_bought: uint256 event AddLiquidity: provider: indexed(address) token_amounts: uint256[N_COINS] fees: uint256[N_COINS] invariant: uint256 token_supply: uint256 event RemoveLiquidity: provider: indexed(address) token_amounts: uint256[N_COINS] fees: uint256[N_COINS] token_supply: uint256 event RemoveLiquidityOne: provider: indexed(address) token_amount: uint256 coin_amount: uint256 token_supply: uint256 event RemoveLiquidityImbalance: provider: indexed(address) token_amounts: uint256[N_COINS] fees: uint256[N_COINS] invariant: uint256 token_supply: uint256 event 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 # These constants must be set prior to compiling N_COINS: constant(int128) = 4 PRECISION_MUL: constant(uint256[N_COINS]) = [1, 1, 1, 1] RATES: constant(uint256[N_COINS]) = [1000000000000000000, 1000000000000000000, 1000000000000000000, 1000000000000000000] # fixed constants FEE_DENOMINATOR: constant(uint256) = 10 ** 10 LENDING_PRECISION: constant(uint256) = 10 ** 18 PRECISION: constant(uint256) = 10 ** 18 # The precision to convert to 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 admin_fee_address: public(address) owner: public(address) lp_token: public(address) 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, _A: uint256, _fee: uint256, _admin_fee: uint256, _admin_fee_address: address ): """ @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 _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.admin_fee_address = _admin_fee_address self.owner = _owner self.kill_deadline = block.timestamp + KILL_DEADLINE_DT self.lp_token = _pool_token @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() -> uint256[N_COINS]: result: uint256[N_COINS] = RATES for i in range(N_COINS): result[i] = result[i] * self.balances[i] / LENDING_PRECISION return result @pure @internal def _xp_mem(_balances: uint256[N_COINS]) -> uint256[N_COINS]: result: uint256[N_COINS] = RATES for i in range(N_COINS): result[i] = result[i] * _balances[i] / PRECISION return result @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: break else: if Dprev - D <= 1: break return D @view @internal def get_D_mem(_balances: uint256[N_COINS], amp: uint256) -> uint256: return self.get_D(self._xp_mem(_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 """ D: uint256 = self.get_D(self._xp(), self._A()) # 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 = ERC20(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() _balances: uint256[N_COINS] = self.balances D0: uint256 = self.get_D_mem(_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(_balances, amp) token_amount: uint256 = ERC20(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() _lp_token: address = self.lp_token token_supply: uint256 = ERC20(_lp_token).totalSupply() # Initial invariant D0: uint256 = 0 old_balances: uint256[N_COINS] = self.balances if token_supply > 0: D0 = self.get_D_mem(old_balances, amp) 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(new_balances, amp) assert D1 > D0 # We need to recalculate the invariant accounting for fees # to calculate fair user's share D2: uint256 = D1 fees: uint256[N_COINS] = empty(uint256[N_COINS]) if token_supply > 0: # Only account for fees if we are not the first to deposit _fee: uint256 = self.fee * N_COINS / (4 * (N_COINS - 1)) _admin_fee: uint256 = self.admin_fee 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(new_balances, amp) else: self.balances = new_balances # Calculate, how much pool tokens to mint mint_amount: uint256 = 0 if token_supply == 0: mint_amount = D1 # Take the dust if there was any else: mint_amount = token_supply * (D2 - D0) / D0 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, ) # dev: failed transfer if len(_response) > 0: assert convert(_response, bool) # 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: # x in the input is converted to the same price/precision assert i != j # dev: same coin assert j >= 0 # dev: j below zero assert j < N_COINS # dev: j above N_COINS # should be unreachable, but good for safety assert i >= 0 assert i < N_COINS amp: uint256 = self._A() D: uint256 = self.get_D(xp_, amp) Ann: uint256 = amp * 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: break else: if y_prev - y <= 1: break return y @view @external def get_dy(i: int128, j: int128, dx: uint256) -> uint256: xp: uint256[N_COINS] = self._xp() rates: uint256[N_COINS] = RATES x: uint256 = xp[i] + (dx * rates[i] / PRECISION) y: uint256 = self.get_y(i, j, x, xp) dy: uint256 = (xp[j] - y - 1) _fee: uint256 = self.fee * dy / FEE_DENOMINATOR return (dy - _fee) * PRECISION / rates[j] @external @nonreentrant('lock') def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256) -> 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 old_balances: uint256[N_COINS] = self.balances xp: uint256[N_COINS] = self._xp_mem(old_balances) rates: uint256[N_COINS] = RATES x: uint256 = xp[i] + dx * rates[i] / PRECISION y: uint256 = self.get_y(i, j, x, xp) dy: uint256 = xp[j] - y - 1 # -1 just in case there were some rounding errors dy_fee: uint256 = dy * self.fee / FEE_DENOMINATOR # Convert all to real units dy = (dy - dy_fee) * PRECISION / rates[j] assert dy >= min_dy, "Exchange resulted in fewer coins than expected" dy_admin_fee: uint256 = dy_fee * 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 # "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(dx, bytes32), ), max_outsize=32, ) # dev: failed transfer 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, ) # dev: failed transfer if len(_response) > 0: assert convert(_response, bool) log TokenExchange(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 = ERC20(_lp_token).totalSupply() amounts: uint256[N_COINS] = empty(uint256[N_COINS]) fees: uint256[N_COINS] = empty(uint256[N_COINS]) # Fees are unused but we've got them historically in event for i in range(N_COINS): value: uint256 = self.balances[i] * _amount / total_supply assert value >= min_amounts[i], "Withdrawal resulted in fewer coins than expected" self.balances[i] -= value amounts[i] = value _response: Bytes[32] = raw_call( self.coins[i], concat( method_id("transfer(address,uint256)"), convert(msg.sender, bytes32), convert(value, bytes32), ), max_outsize=32, ) # dev: failed transfer if len(_response) > 0: assert convert(_response, bool) CurveToken(_lp_token).burnFrom(msg.sender, _amount) # dev: insufficient funds log RemoveLiquidity(msg.sender, amounts, fees, 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() old_balances: uint256[N_COINS] = self.balances new_balances: uint256[N_COINS] = old_balances D0: uint256 = self.get_D_mem(old_balances, amp) for i in range(N_COINS): new_balances[i] -= amounts[i] D1: uint256 = self.get_D_mem(new_balances, amp) _lp_token: address = self.lp_token token_supply: uint256 = ERC20(_lp_token).totalSupply() assert token_supply != 0 # dev: zero total supply _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(new_balances, amp) 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: _response: Bytes[32] = raw_call( self.coins[i], concat( method_id("transfer(address,uint256)"), convert(msg.sender, bytes32), convert(amounts[i], bytes32), ), max_outsize=32, ) # dev: failed transfer if len(_response) > 0: assert convert(_response, bool) log RemoveLiquidityImbalance(msg.sender, amounts, fees, D1, token_supply - token_amount) return token_amount @view @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 + x1 * (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: break else: if y_prev - y <= 1: break return y @view @internal def _calc_withdraw_one_coin(_token_amount: uint256, i: int128) -> (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() D0: uint256 = self.get_D(xp, amp) total_supply: uint256 = ERC20(self.lp_token).totalSupply() D1: uint256 = D0 - _token_amount * D0 / total_supply new_y: uint256 = self.get_y_D(amp, i, xp, D1) xp_reduced: uint256[N_COINS] = xp _fee: uint256 = self.fee * N_COINS / (4 * (N_COINS - 1)) 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) precisions: uint256[N_COINS] = PRECISION_MUL dy = (dy - 1) / precisions[i] # Withdraw less to account for rounding errors dy_0: uint256 = (xp[i] - new_y) / precisions[i] # w/o fees 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 """ return self._calc_withdraw_one_coin(_token_amount, i)[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 dy: uint256 = 0 dy_fee: uint256 = 0 total_supply: uint256 = 0 dy, dy_fee, total_supply = self._calc_withdraw_one_coin(_token_amount, i) 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 _response: Bytes[32] = raw_call( self.coins[i], 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) 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 or msg.sender == self.admin_fee_address # 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: _response: Bytes[32] = raw_call( coin, concat( method_id("transfer(address,uint256)"), convert(self.admin_fee_address, bytes32), convert(value, bytes32), ), max_outsize=32, ) # dev: failed transfer if len(_response) > 0: assert convert(_response, bool) @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 @external def set_admin_fee_address(_admin_fee_address: address): assert msg.sender == self.owner # dev: only owner self.admin_fee_address = _admin_fee_address
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":"AddLiquidity","inputs":[{"type":"address","name":"provider","indexed":true},{"type":"uint256[4]","name":"token_amounts","indexed":false},{"type":"uint256[4]","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[4]","name":"token_amounts","indexed":false},{"type":"uint256[4]","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[4]","name":"token_amounts","indexed":false},{"type":"uint256[4]","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[4]","name":"_coins"},{"type":"address","name":"_pool_token"},{"type":"uint256","name":"_A"},{"type":"uint256","name":"_fee"},{"type":"uint256","name":"_admin_fee"},{"type":"address","name":"_admin_fee_address"}],"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":1346183},{"name":"calc_token_amount","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256[4]","name":"amounts"},{"type":"bool","name":"is_deposit"}],"stateMutability":"view","type":"function","gas":5357629},{"name":"add_liquidity","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256[4]","name":"amounts"},{"type":"uint256","name":"min_mint_amount"}],"stateMutability":"nonpayable","type":"function","gas":8287631},{"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":3099381},{"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":3262485},{"name":"remove_liquidity","outputs":[{"type":"uint256[4]","name":""}],"inputs":[{"type":"uint256","name":"_amount"},{"type":"uint256[4]","name":"min_amounts"}],"stateMutability":"nonpayable","type":"function","gas":255557},{"name":"remove_liquidity_imbalance","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256[4]","name":"amounts"},{"type":"uint256","name":"max_burn_amount"}],"stateMutability":"nonpayable","type":"function","gas":8286723},{"name":"calc_withdraw_one_coin","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"_token_amount"},{"type":"int128","name":"i"}],"stateMutability":"view","type":"function","gas":1489},{"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":4478633},{"name":"ramp_A","outputs":[],"inputs":[{"type":"uint256","name":"_future_A"},{"type":"uint256","name":"_future_time"}],"stateMutability":"nonpayable","type":"function","gas":151774},{"name":"stop_ramp_A","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":148535},{"name":"commit_new_fee","outputs":[],"inputs":[{"type":"uint256","name":"new_fee"},{"type":"uint256","name":"new_admin_fee"}],"stateMutability":"nonpayable","type":"function","gas":110371},{"name":"apply_new_fee","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":97152},{"name":"revert_new_parameters","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":21805},{"name":"commit_transfer_ownership","outputs":[],"inputs":[{"type":"address","name":"_owner"}],"stateMutability":"nonpayable","type":"function","gas":74543},{"name":"apply_transfer_ownership","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":60620},{"name":"revert_transfer_ownership","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":21895},{"name":"admin_balances","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"i"}],"stateMutability":"view","type":"function","gas":3391},{"name":"withdraw_admin_fees","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":31898},{"name":"donate_admin_fees","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":147723},{"name":"kill_me","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":37908},{"name":"unkill_me","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":22045},{"name":"set_admin_fee_address","outputs":[],"inputs":[{"type":"address","name":"_admin_fee_address"}],"stateMutability":"nonpayable","type":"function","gas":37178},{"name":"coins","outputs":[{"type":"address","name":""}],"inputs":[{"type":"uint256","name":"arg0"}],"stateMutability":"view","type":"function","gas":2160},{"name":"balances","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"arg0"}],"stateMutability":"view","type":"function","gas":2190},{"name":"fee","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2111},{"name":"admin_fee","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2141},{"name":"admin_fee_address","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2171},{"name":"owner","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2201},{"name":"lp_token","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2231},{"name":"initial_A","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2261},{"name":"future_A","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2291},{"name":"initial_A_time","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2321},{"name":"future_A_time","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2351},{"name":"admin_actions_deadline","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2381},{"name":"transfer_ownership_deadline","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2411},{"name":"future_fee","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2441},{"name":"future_admin_fee","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2471},{"name":"future_owner","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2501}]
Contract Creation Code
61014061507f61014039602061507f60c03960c05160a01c1561002157600080fd5b6020602061507f0160c03960c05160a01c1561003c57600080fd5b6020604061507f0160c03960c05160a01c1561005757600080fd5b6020606061507f0160c03960c05160a01c1561007257600080fd5b6020608061507f0160c03960c05160a01c1561008d57600080fd5b602060a061507f0160c03960c05160a01c156100a857600080fd5b602061012061507f0160c03960c05160a01c156100c457600080fd5b61028060006004818352015b600061016061028051600481106100e657600080fd5b6020020151186100f557600080fd5b5b81516001018083528114156100d0575b5050600060c052602060c0206101605181556101805160018201556101a05160028201556101c051600382015550610200516064808202821582848304141761014e57600080fd5b80905090509050600755610200516064808202821582848304141761017257600080fd5b809050905090506008556102205160025561024051600355610260516004556101405160055542624f1a008181830110156101ac57600080fd5b808201905090506011556101e05160065561506756341561000a57600080fd5b600436101561001857614e9f565b600035601c526000156101c1575b61014052600a546101605260085461018052610160514210156101ae576007546101a0526009546101c0526101a051610180511115610107576101a051610180516101a0518082101561007857600080fd5b80820390509050426101c0518082101561009157600080fd5b8082039050905080820282158284830414176100ac57600080fd5b80905090509050610160516101c051808210156100c857600080fd5b8082039050905080806100da57600080fd5b8204905090508181830110156100ef57600080fd5b808201905090506000526000516101405156506101a9565b6101a0516101a051610180518082101561012057600080fd5b80820390509050426101c0518082101561013957600080fd5b80820390509050808202821582848304141761015457600080fd5b80905090509050610160516101c0518082101561017057600080fd5b80820390509050808061018257600080fd5b8204905090508082101561019557600080fd5b808203905090506000526000516101405156505b6101bf565b610180516000526000516101405156505b005b63f446c1d060005114156101f45760065801610026565b610140526101405160648082049050905060005260206000f350005b6376a2f0f0600051141561021e5760065801610026565b610140526101405160005260206000f350005b600015610333575b61014052670de0b6b3a764000061016052670de0b6b3a764000061018052670de0b6b3a76400006101a052670de0b6b3a76400006101c0526101e060006004818352015b6101606101e0516004811061027e57600080fd5b60200201516101e0516004811061029457600080fd5b600160c052602060c020015480820282158284830414176102b457600080fd5b80905090509050670de0b6b3a7640000808204905090506101606101e051600481106102df57600080fd5b60200201525b815160010180835281141561026a575b505060806101e0525b60006101e0511115156103105761032c565b60206101e05103610160015160206101e051036101e0526102fe565b6101405156005b600015610454575b6101c0526101405261016052610180526101a052670de0b6b3a76400006101e052670de0b6b3a764000061020052670de0b6b3a764000061022052670de0b6b3a76400006102405261026060006004818352015b6101e061026051600481106103a357600080fd5b602002015161014061026051600481106103bc57600080fd5b602002015180820282158284830414176103d557600080fd5b80905090509050670de0b6b3a7640000808204905090506101e0610260516004811061040057600080fd5b60200201525b815160010180835281141561038f575b50506080610260525b6000610260511115156104315761044d565b602061026051036101e00151602061026051036102605261041f565b6101c05156005b600015610753575b6101e0526101405261016052610180526101a0526101c0526040366102003761026060006004818352015b602061026051026101400151610240526102008051610240518181830110156104af57600080fd5b808201905090508152505b8151600101808352811415610487575b50506102005115156104e55760006000526000516101e05156505b61020051610240526101c0516004808202821582848304141761050757600080fd5b8090509050905061026052610280600060ff818352015b610240516102a0526102e060006004818352015b60206102e0510261014001516102c0526102a05161024051808202821582848304141761055e57600080fd5b809050905090506102c0516004808202821582848304141761057f57600080fd5b80905090509050808061059157600080fd5b8204905090506102a0525b8151600101808352811415610532575b50506102405161022052610260516102005180820282158284830414176105d257600080fd5b809050905090506064808204905090506102a051600480820282158284830414176105fc57600080fd5b8090509050905081818301101561061257600080fd5b8082019050905061024051808202821582848304141761063157600080fd5b809050905090506102605160648082101561064b57600080fd5b8082039050905061024051808202821582848304141761066a57600080fd5b8090509050905060648082049050905060056102a051808202821582848304141761069457600080fd5b809050905090508181830110156106aa57600080fd5b8082019050905080806106bc57600080fd5b82049050905061024052610220516102405111156107035760016102405161022051808210156106eb57600080fd5b808203905090501115156106fe5761073f565b61072e565b600161022051610240518082101561071a57600080fd5b8082039050905011151561072d5761073f565b5b5b815160010180835281141561051e575b5050610240516000526000516101e0515650005b60001561090c575b6101e0526101405261016052610180526101a0526101c0526101405161016051610180516101a0516101c0516101e0516101405161020052610160516102205261018051610240526101a05161026052610260516102405161022051610200516006580161033b565b6102c0526102e05261030052610320526101e0526101c0526101a0526101805261016052610140526102c080516103405280602001516103605280604001516103805280606001516103a052506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e05161030051610320516103405161036051610380516103a051610340516103c052610360516103e05261038051610400526103a051610420526101c051610440526104405161042051610400516103e0516103c0516006580161045c565b6104a0526103a05261038052610360526103405261032052610300526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526104a0516000526000516101e0515650005b63bb7b8b806000511415610ae7576101405160065801610226565b61016052610180526101a0526101c0526101405261016080516101e052806020015161020052806040015161022052806060015161024052506101405161016051610180516101a0516101c0516101e05161020051610220516102405160065801610026565b610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261026051610280526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516101e0516102a052610200516102c052610220516102e0526102405161030052610280516103205261032051610300516102e0516102c0516102a0516006580161045c565b6103805261028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610380516101405260206101e060046318160ddd6101805261019c6006545afa610a8757600080fd5b601f3d11610a9457600080fd5b6000506101e0516101605261014051670de0b6b3a76400008082028215828483041417610ac057600080fd5b80905090509050610160518080610ad657600080fd5b82049050905060005260206000f350005b63cf701ff76000511415610e015760843560011c15610b0557600080fd5b6101405160065801610026565b6101605261014052610160516101405260018060c052602060c020546101605260018160c052602060c02001546101805260028160c052602060c02001546101a05260038160c052602060c02001546101c052506101405161016051610180516101a0516101c0516101e051610160516102005261018051610220526101a051610240526101c05161026052610140516102805261028051610260516102405161022051610200516006580161075b565b6102e0526101e0526101c0526101a0526101805261016052610140526102e0516101e05261020060006004818352015b60843515610c4b576101606102005160048110610c0f57600080fd5b60200201805160046102005160048110610c2857600080fd5b6020020135818183011015610c3c57600080fd5b80820190509050815250610c95565b6101606102005160048110610c5f57600080fd5b60200201805160046102005160048110610c7857600080fd5b602002013580821015610c8a57600080fd5b808203905090508152505b5b8151600101808352811415610bf3575b50506101405161016051610180516101a0516101c0516101e05161020051610160516102205261018051610240526101a051610260526101c05161028052610140516102a0526102a051610280516102605161024051610220516006580161075b565b61030052610200526101e0526101c0526101a052610180526101605261014052610300516102005260206102a060046318160ddd6102405261025c6006545afa610d5257600080fd5b601f3d11610d5f57600080fd5b6000506102a0516102205260006102405260843515610d9d57610200516101e05180821015610d8d57600080fd5b8082039050905061024052610dbe565b6101e0516102005180821015610db257600080fd5b80820390509050610240525b61024051610220518082028215828483041417610dda57600080fd5b809050905090506101e0518080610df057600080fd5b82049050905060005260206000f350005b63029b2f3460005114156117d75762ffffff5415610e1e57600080fd5b600162ffffff5560105415610e3257600080fd5b6101405160065801610026565b6101605261014052610160516101405260065461016052602061020060046318160ddd6101a0526101bc610160515afa610e7857600080fd5b601f3d11610e8557600080fd5b600050610200516101805260006101a05260018060c052602060c020546101c05260018160c052602060c02001546101e05260028160c052602060c02001546102005260038160c052602060c020015461022052506000610180511115610f78576101405161016051610180516101a0516101c0516101e05161020051610220516101c051610240526101e051610260526102005161028052610220516102a052610140516102c0526102c0516102a0516102805161026051610240516006580161075b565b6103205261022052610200526101e0526101c0526101a052610180526101605261014052610320516101a0525b6101c051610240526101e051610260526102005161028052610220516102a0526102c060006004818352015b610180511515610fd357600060046102c05160048110610fc357600080fd5b602002013511610fd257600080fd5b5b6101c06102c05160048110610fe757600080fd5b602002015160046102c05160048110610fff57600080fd5b602002013581818301101561101357600080fd5b808201905090506102406102c0516004811061102e57600080fd5b60200201525b8151600101808352811415610fa4575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c051610240516102e052610260516103005261028051610320526102a051610340526101405161036052610360516103405161032051610300516102e0516006580161075b565b6103c0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103c0516102c0526101a0516102c0511161111157600080fd5b6102c0516102e052608036610300376000610180511115611436576002546004808202821582848304141761114557600080fd5b80905090509050600c80820490509050610380526003546103a0526103c060006004818352015b6102c0516101c06103c0516004811061118457600080fd5b6020020151808202821582848304141761119d57600080fd5b809050905090506101a05180806111b357600080fd5b8204905090506103e0526000610400526102406103c051600481106111d757600080fd5b60200201516103e0511115611220576103e0516102406103c051600481106111fe57600080fd5b60200201518082101561121057600080fd5b8082039050905061040052611256565b6102406103c0516004811061123457600080fd5b60200201516103e0518082101561124a57600080fd5b80820390509050610400525b6103805161040051808202821582848304141761127257600080fd5b809050905090506402540be400808204905090506103006103c0516004811061129a57600080fd5b60200201526102406103c051600481106112b357600080fd5b60200201516103006103c051600481106112cc57600080fd5b60200201516103a05180820282158284830414176112e957600080fd5b809050905090506402540be400808204905090508082101561130a57600080fd5b808203905090506103c0516004811061132257600080fd5b600160c052602060c02001556102406103c0516004811061134257600080fd5b6020020180516103006103c0516004811061135c57600080fd5b60200201518082101561136e57600080fd5b808203905090508152505b815160010180835281141561116c575b50506101406103c0525b6103c0515160206103c051016103c0526103c06103c05110156113b557611393565b610240516103e052610260516104005261028051610420526102a051610440526101405161046052610460516104405161042051610400516103e0516006580161075b565b6104c0526103a06103c0525b6103c0515260206103c051036103c0526101406103c05110151561142957611406565b6104c0516102e052611463565b600160c052602060c0206102405181556102605160018201556102805160028201556102a0516003820155505b600061038052610180511515611480576102c051610380526114d5565b610180516102e0516101a0518082101561149957600080fd5b8082039050905080820282158284830414176114b457600080fd5b809050905090506101a05180806114ca57600080fd5b820490509050610380525b6084356103805110151515611529576308c379a06103a05260206103c05260146103e0527f536c697070616765207363726577656420796f75000000000000000000000000610400526103e05060646103bcfd5b6103a060006004818352015b600060046103a0516004811061154a57600080fd5b602002013511156116d35760006004610420527f23b872dd000000000000000000000000000000000000000000000000000000006104405261042060048060208461048001018260208501600060045af1505080518201915050336020826104800101526020810190503060208261048001015260208101905060046103a051600481106115d757600080fd5b6020020135602082610480010152602081019050806104805261048090508051602001806105408284600060045af161160f57600080fd5b505060206106206105405161056060006103a0516004811061163057600080fd5b600060c052602060c02001545af161164757600080fd5b60203d80821115611658578061165a565b815b90509050610600526106008051602001806103c08284600060045af161167f57600080fd5b505060006103c05111156116d2576103c08060200151600082518060209013156116a857600080fd5b80919012156116b657600080fd5b806020036101000a820490509050905015156116d157600080fd5b5b5b5b8151600101808352811415611535575b5050602061044060446340c10f196103a052336103c052610380516103e0526103bc6000610160515af161171757600080fd5b601f3d1161172457600080fd5b600050610440506004356103a0526024356103c0526044356103e0526064356104005261030051610420526103205161044052610340516104605261036051610480526102c0516104a052610180516103805181818301101561178657600080fd5b808201905090506104c052337f3f1915775e0c9a38a57a7bb7f1f9005f486fb904e1f84aa215364d567319a58d6101406103a0a261038051600052600062ffffff5560206000f350600062ffffff55005b600015611c88575b610220526101405261016052610180526101a0526101c0526101e0526102005261016051610140511861181157600080fd5b600061016051121561182257600080fd5b6004610160511261183257600080fd5b600061014051121561184357600080fd5b6004610140511261185357600080fd5b6101405161016051610180516101a0516101c0516101e05161020051610220516102405160065801610026565b610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261026051610240526101405161016051610180516101a0516101c0516101e051610200516102205161024051610260516101a051610280526101c0516102a0526101e0516102c052610200516102e0526102405161030052610300516102e0516102c0516102a051610280516006580161045c565b61036052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103605161026052610240516004808202821582848304141761196b57600080fd5b8090509050905061028052610260516102a0526060366102c03761032060006004818352015b610140516103205114156119ac57610180516102e0526119e2565b610160516103205118156119dc576101a061032051600481106119ce57600080fd5b60200201516102e0526119e1565b611a5e565b5b6102c080516102e0518181830110156119fa57600080fd5b808201905090508152506102a051610260518082028215828483041417611a2057600080fd5b809050905090506102e05160048082028215828483041417611a4157600080fd5b809050905090508080611a5357600080fd5b8204905090506102a0525b8151600101808352811415611991575b50506102a051610260518082028215828483041417611a8c57600080fd5b8090509050905060648082028215828483041417611aa957600080fd5b809050905090506102805160048082028215828483041417611aca57600080fd5b809050905090508080611adc57600080fd5b8204905090506102a0526102c0516102605160648082028215828483041417611b0457600080fd5b80905090509050610280518080611b1a57600080fd5b820490509050818183011015611b2f57600080fd5b80820190509050610320526102605161034052610360600060ff818352015b610340516103005261034051610340518082028215828483041417611b7257600080fd5b809050905090506102a051818183011015611b8c57600080fd5b808201905090506002610340518082028215828483041417611bad57600080fd5b8090509050905061032051818183011015611bc757600080fd5b808201905090506102605180821015611bdf57600080fd5b808203905090508080611bf157600080fd5b8204905090506103405261030051610340511115611c38576001610340516103005180821015611c2057600080fd5b80820390509050111515611c3357611c74565b611c63565b6001610300516103405180821015611c4f57600080fd5b80820390509050111515611c6257611c74565b5b5b8151600101808352811415611b4e575b505061034051600052600051610220515650005b635e0d443f6000511415611f885760043580806000811215611ca657195b607f1c15611cb357600080fd5b90505060243580806000811215611cc657195b607f1c15611cd357600080fd5b9050506101405161016051610180516101a05160065801610226565b6101c0526101e05261020052610220526101a0526101805261016052610140526101c080516101405280602001516101605280604001516101805280606001516101a05250670de0b6b3a76400006101c052670de0b6b3a76400006101e052670de0b6b3a764000061020052670de0b6b3a76400006102205261014060043560048110611d7b57600080fd5b60200201516044356101c060043560048110611d9657600080fd5b60200201518082028215828483041417611daf57600080fd5b80905090509050670de0b6b3a764000080820490509050818183011015611dd557600080fd5b80820190509050610240526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051600435610280526024356102a052610240516102c052610140516102e052610160516103005261018051610320526101a051610340526103405161032051610300516102e0516102c0516102a05161028051600658016117df565b6103a052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103a0516102605261014060243560048110611eaa57600080fd5b60200201516102605180821015611ec057600080fd5b80820390509050600180821015611ed657600080fd5b8082039050905061028052600254610280518082028215828483041417611efc57600080fd5b809050905090506402540be400808204905090506102a052610280516102a05180821015611f2957600080fd5b80820390509050670de0b6b3a76400008082028215828483041417611f4d57600080fd5b809050905090506101c060243560048110611f6757600080fd5b60200201518080611f7757600080fd5b82049050905060005260206000f350005b633df02124600051141561282b5762ffffff5415611fa557600080fd5b600162ffffff5560043580806000811215611fbc57195b607f1c15611fc957600080fd5b90505060243580806000811215611fdc57195b607f1c15611fe957600080fd5b90505060105415611ff957600080fd5b60018060c052602060c020546101405260018160c052602060c02001546101605260028160c052602060c02001546101805260038160c052602060c02001546101a052506101405161016051610180516101a0516101c0516101e05161020051610220516101405161024052610160516102605261018051610280526101a0516102a0526102a0516102805161026051610240516006580161033b565b6103005261032052610340526103605261022052610200526101e0526101c0526101a05261018052610160526101405261030080516101c05280602001516101e05280604001516102005280606001516102205250670de0b6b3a764000061024052670de0b6b3a764000061026052670de0b6b3a764000061028052670de0b6b3a76400006102a0526101c06004356004811061213257600080fd5b60200201516044356102406004356004811061214d57600080fd5b6020020151808202821582848304141761216657600080fd5b80905090509050670de0b6b3a76400008082049050905081818301101561218c57600080fd5b808201905090506102c0526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e05160043561030052602435610320526102c051610340526101c051610360526101e05161038052610200516103a052610220516103c0526103c0516103a0516103805161036051610340516103205161030051600658016117df565b610420526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610420516102e0526101c06024356004811061228157600080fd5b60200201516102e0518082101561229757600080fd5b808203905090506001808210156122ad57600080fd5b80820390509050610300526103005160025480820282158284830414176122d357600080fd5b809050905090506402540be400808204905090506103205261030051610320518082101561230057600080fd5b80820390509050670de0b6b3a7640000808202821582848304141761232457600080fd5b809050905090506102406024356004811061233e57600080fd5b6020020151808061234e57600080fd5b8204905090506103005260643561030051101515156123d1576308c379a061034052602061036052602e610380527f45786368616e676520726573756c74656420696e20666577657220636f696e736103a0527f207468616e2065787065637465640000000000000000000000000000000000006103c05261038050608461035cfd5b6103205160035480820282158284830414176123ec57600080fd5b809050905090506402540be400808204905090506103405261034051670de0b6b3a7640000808202821582848304141761242557600080fd5b809050905090506102406024356004811061243f57600080fd5b6020020151808061244f57600080fd5b820490509050610340526101406004356004811061246c57600080fd5b602002015160443581818301101561248357600080fd5b808201905090506004356004811061249a57600080fd5b600160c052602060c0200155610140602435600481106124b957600080fd5b602002015161030051808210156124cf57600080fd5b8082039050905061034051808210156124e757600080fd5b80820390509050602435600481106124fe57600080fd5b600160c052602060c0200155600060046103c0527f23b872dd000000000000000000000000000000000000000000000000000000006103e0526103c060048060208461042001018260208501600060045af15050805182019150503360208261042001015260208101905030602082610420010152602081019050604435602082610420010152602081019050806104205261042090508051602001806104e08284600060045af16125af57600080fd5b505060206105c06104e0516105006000600435600481106125cf57600080fd5b600060c052602060c02001545af16125e657600080fd5b60203d808211156125f757806125f9565b815b905090506105a0526105a08051602001806103608284600060045af161261e57600080fd5b505060006103605111156126715761036080602001516000825180602090131561264757600080fd5b809190121561265557600080fd5b806020036101000a8204905090509050151561267057600080fd5b5b600060046103c0527fa9059cbb000000000000000000000000000000000000000000000000000000006103e0526103c060048060208461042001018260208501600060045af15050805182019150503360208261042001015260208101905061030051602082610420010152602081019050806104205261042090508051602001806104c08284600060045af161270757600080fd5b505060206105806104c0516104e060006024356004811061272757600080fd5b600060c052602060c02001545af161273e57600080fd5b60203d8082111561274f5780612751565b815b90509050610560526105608051602001806103608284600060045af161277657600080fd5b505060006103605111156127c95761036080602001516000825180602090131561279f57600080fd5b80919012156127ad57600080fd5b806020036101000a820490509050905015156127c857600080fd5b5b6004356103c0526044356103e052602435610400526103005161042052337f8b3e96f2b889fa771c53c981b40daf005f63f637f1869f707052d15a3dd9714060806103c0a261030051600052600062ffffff5560206000f350600062ffffff55005b637d49d8756000511415612c2a5762ffffff541561284857600080fd5b600162ffffff556006546101405260206101e060046318160ddd6101805261019c610140515afa61287857600080fd5b601f3d1161288557600080fd5b6000506101e05161016052610100366101803761028060006004818352015b61028051600481106128b557600080fd5b600160c052602060c020015460043580820282158284830414176128d857600080fd5b809050905090506101605180806128ee57600080fd5b8204905090506102a0526024610280516004811061290b57600080fd5b60200201356102a05110151515612986576308c379a06102c05260206102e0526030610300527f5769746864726177616c20726573756c74656420696e20666577657220636f69610320527f6e73207468616e20657870656374656400000000000000000000000000000000610340526103005060846102dcfd5b610280516004811061299757600080fd5b600160c052602060c0200180546102a051808210156129b557600080fd5b808203905090508155506102a05161018061028051600481106129d757600080fd5b602002015260006004610320527fa9059cbb000000000000000000000000000000000000000000000000000000006103405261032060048060208461038001018260208501600060045af1505080518201915050336020826103800101526020810190506102a051602082610380010152602081019050806103805261038090508051602001806104208284600060045af1612a7257600080fd5b505060206104e06104205161044060006102805160048110612a9357600080fd5b600060c052602060c02001545af1612aaa57600080fd5b60203d80821115612abb5780612abd565b815b905090506104c0526104c08051602001806102c08284600060045af1612ae257600080fd5b505060006102c0511115612b35576102c0806020015160008251806020901315612b0b57600080fd5b8091901215612b1957600080fd5b806020036101000a82049050905090501515612b3457600080fd5b5b5b81516001018083528114156128a4575b5050602061032060446379cc679061028052336102a0526004356102c05261029c6000610140515af1612b7857600080fd5b601f3d11612b8557600080fd5b6000506103205061018051610280526101a0516102a0526101c0516102c0526101e0516102e05261020051610300526102205161032052610240516103405261026051610360526101605160043580821015612be057600080fd5b8082039050905061038052337f9878ca375e106f2a43c3b599fc624568131c4c9a4ba66a14563715763be9d59d610120610280a2600062ffffff556080610180f3600062ffffff55005b6318a7bd76600051141561355f5762ffffff5415612c4757600080fd5b600162ffffff5560105415612c5b57600080fd5b6101405160065801610026565b6101605261014052610160516101405260018060c052602060c020546101605260018160c052602060c02001546101805260028160c052602060c02001546101a05260038160c052602060c02001546101c05250610160516101e05261018051610200526101a051610220526101c051610240526101405161016051610180516101a0516101c0516101e051610200516102205161024051610260516101605161028052610180516102a0526101a0516102c0526101c0516102e0526101405161030052610300516102e0516102c0516102a051610280516006580161075b565b61036052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610360516102605261028060006004818352015b6101e06102805160048110612d9d57600080fd5b60200201805160046102805160048110612db657600080fd5b602002013580821015612dc857600080fd5b808203905090508152505b8151600101808352811415612d89575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516101e0516102a052610200516102c052610220516102e0526102405161030052610140516103205261032051610300516102e0516102c0516102a0516006580161075b565b6103805261028052610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261038051610280526006546102a052602061034060046318160ddd6102e0526102fc6102a0515afa612eb757600080fd5b601f3d11612ec457600080fd5b600050610340516102c05260006102c05118612edf57600080fd5b60025460048082028215828483041417612ef857600080fd5b80905090509050600c808204905090506102e05260035461030052608036610320376103a060006004818352015b610280516101606103a05160048110612f3e57600080fd5b60200201518082028215828483041417612f5757600080fd5b80905090509050610260518080612f6d57600080fd5b8204905090506103c05260006103e0526101e06103a05160048110612f9157600080fd5b60200201516103c0511115612fda576103c0516101e06103a05160048110612fb857600080fd5b602002015180821015612fca57600080fd5b808203905090506103e052613010565b6101e06103a05160048110612fee57600080fd5b60200201516103c0518082101561300457600080fd5b808203905090506103e0525b6102e0516103e051808202821582848304141761302c57600080fd5b809050905090506402540be400808204905090506103206103a0516004811061305457600080fd5b60200201526101e06103a0516004811061306d57600080fd5b60200201516103206103a0516004811061308657600080fd5b60200201516103005180820282158284830414176130a357600080fd5b809050905090506402540be40080820490509050808210156130c457600080fd5b808203905090506103a051600481106130dc57600080fd5b600160c052602060c02001556101e06103a051600481106130fc57600080fd5b6020020180516103206103a0516004811061311657600080fd5b60200201518082101561312857600080fd5b808203905090508152505b8151600101808352811415612f26575b50506101406103c0525b6103c0515160206103c051016103c0526103c06103c051101561316f5761314d565b6101e0516103e0526102005161040052610220516104205261024051610440526101405161046052610460516104405161042051610400516103e0516006580161075b565b6104c0526103a06103c0525b6103c0515260206103c051036103c0526101406103c0511015156131e3576131c0565b6104c0516103a052610260516103a0518082101561320057600080fd5b808203905090506102c051808202821582848304141761321f57600080fd5b8090509050905061026051808061323557600080fd5b8204905090506103c05260006103c0511861324f57600080fd5b6103c08051600181818301101561326557600080fd5b808201905090508152506084356103c051111515156132c3576308c379a06103e0526020610400526014610420527f536c697070616765207363726577656420796f75000000000000000000000000610440526104205060646103fcfd5b602061048060446379cc67906103e05233610400526103c051610420526103fc60006102a0515af16132f457600080fd5b601f3d1161330157600080fd5b600050610480506103e060006004818352015b600060046103e0516004811061332957600080fd5b602002013518156134a25760006004610460527fa9059cbb00000000000000000000000000000000000000000000000000000000610480526104606004806020846104c001018260208501600060045af1505080518201915050336020826104c001015260208101905060046103e051600481106133a657600080fd5b60200201356020826104c0010152602081019050806104c0526104c090508051602001806105608284600060045af16133de57600080fd5b505060206106206105605161058060006103e051600481106133ff57600080fd5b600060c052602060c02001545af161341657600080fd5b60203d808211156134275780613429565b815b90509050610600526106008051602001806104008284600060045af161344e57600080fd5b505060006104005111156134a15761040080602001516000825180602090131561347757600080fd5b809190121561348557600080fd5b806020036101000a820490509050905015156134a057600080fd5b5b5b5b8151600101808352811415613314575b50506004356103e05260243561040052604435610420526064356104405261032051610460526103405161048052610360516104a052610380516104c052610280516104e0526102c0516103c0518082101561350e57600080fd5b8082039050905061050052337fb964b72f73f5ef5bf0fdc559b2fab9a7b12a39e47817a547f1f0aee47febd6026101406103e0a26103c051600052600062ffffff5560206000f350600062ffffff55005b6000156138c3575b610220526101405261016052610180526101a0526101c0526101e05261020052600061016051121561359857600080fd5b600461016051126135a857600080fd5b61014051600480820282158284830414176135c257600080fd5b80905090509050610240526102005161026052606036610280376102e060006004818352015b610160516102e0511815613618576101806102e0516004811061360a57600080fd5b60200201516102a05261361d565b613699565b61028080516102a05181818301101561363557600080fd5b808201905090508152506102605161020051808202821582848304141761365b57600080fd5b809050905090506102a0516004808202821582848304141761367c57600080fd5b80905090509050808061368e57600080fd5b820490509050610260525b81516001018083528114156135e8575b5050610260516102005180820282158284830414176136c757600080fd5b80905090509050606480820282158284830414176136e457600080fd5b80905090509050610240516004808202821582848304141761370557600080fd5b80905090509050808061371757600080fd5b8204905090506102605261028051610200516064808202821582848304141761373f57600080fd5b8090509050905061024051808061375557600080fd5b82049050905081818301101561376a57600080fd5b808201905090506102e0526102005161030052610320600060ff818352015b610300516102c052610300516103005180820282158284830414176137ad57600080fd5b80905090509050610260518181830110156137c757600080fd5b8082019050905060026103005180820282158284830414176137e857600080fd5b809050905090506102e05181818301101561380257600080fd5b80820190509050610200518082101561381a57600080fd5b80820390509050808061382c57600080fd5b820490509050610300526102c051610300511115613873576001610300516102c0518082101561385b57600080fd5b8082039050905011151561386e576138af565b61389e565b60016102c051610300518082101561388a57600080fd5b8082039050905011151561389d576138af565b5b5b8151600101808352811415613789575b505061030051600052600051610220515650005b600015613f7e575b6101805261014052610160526101405161016051610180516101a05160065801610026565b6101c0526101a0526101805261016052610140526101c0516101a0526101405161016051610180516101a0516101c0516101e051610200516102205160065801610226565b6102405261026052610280526102a05261022052610200526101e0526101c0526101a05261018052610160526101405261024080516101c05280602001516101e052806040015161020052806060015161022052506101405161016051610180516101a0516101c0516101e0516102005161022051610240516101c051610260526101e05161028052610200516102a052610220516102c0526101a0516102e0526102e0516102c0516102a05161028051610260516006580161045c565b610340526102405261022052610200526101e0526101c0526101a052610180526101605261014052610340516102405260206102e060046318160ddd6102805261029c6006545afa613a4457600080fd5b601f3d11613a5157600080fd5b6000506102e051610260526102405161014051610240518082028215828483041417613a7c57600080fd5b80905090509050610260518080613a9257600080fd5b82049050905080821015613aa557600080fd5b80820390509050610280526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516101a0516102c052610160516102e0526101c051610300526101e0516103205261020051610340526102205161036052610280516103805261038051610360516103405161032051610300516102e0516102c05160065801613567565b6103e0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103e0516102a0526101c0516102c0526101e0516102e0526102005161030052610220516103205260025460048082028215828483041417613bb257600080fd5b80905090509050600c808204905090506103405261036060006004818352015b60006103805261016051610360511415613c54576101c06103605160048110613bfa57600080fd5b6020020151610280518082028215828483041417613c1757600080fd5b80905090509050610240518080613c2d57600080fd5b8204905090506102a05180821015613c4457600080fd5b8082039050905061038052613cd3565b6101c06103605160048110613c6857600080fd5b60200201516101c06103605160048110613c8157600080fd5b6020020151610280518082028215828483041417613c9e57600080fd5b80905090509050610240518080613cb457600080fd5b82049050905080821015613cc757600080fd5b80820390509050610380525b6102c06103605160048110613ce757600080fd5b60200201805161034051610380518082028215828483041417613d0957600080fd5b809050905090506402540be4008082049050905080821015613d2a57600080fd5b808203905090508152505b8151600101808352811415613bd2575b50506102c06101605160048110613d5b57600080fd5b6020020151610140610380525b61038051516020610380510161038052610380610380511015613d8a57613d68565b6101a0516103a052610160516103c0526102c0516103e0526102e05161040052610300516104205261032051610440526102805161046052610460516104405161042051610400516103e0516103c0516103a05160065801613567565b6104c052610360610380525b6103805152602061038051036103805261014061038051101515613e1657613df3565b6104c05180821015613e2757600080fd5b808203905090506103605260016103805260016103a05260016103c05260016103e05261036051600180821015613e5d57600080fd5b808203905090506103806101605160048110613e7857600080fd5b60200201518080613e8857600080fd5b820490509050610360526101c06101605160048110613ea657600080fd5b60200201516102a05180821015613ebc57600080fd5b808203905090506103806101605160048110613ed757600080fd5b60200201518080613ee757600080fd5b8204905090506104005261042080808061036051815250506020810190508080610400516103605180821015613f1c57600080fd5b80820390509050815250506020810190508080610260518152505060609050905060c05260c051610480525b600061048051111515613f5a57613f76565b6020610480510361042001516020610480510361048052613f48565b610180515650005b63cc2b27d760005114156140165760243580806000811215613f9c57195b607f1c15613fa957600080fd5b90505060043561014052602435610160526101605161014051600658016138cb565b6101c0526101e052610200526101c08080808051610220525050602081019050808080516102405250506020810190508080805161026052505050506102205160005260206000f350005b631a4d01d260005114156143dc5762ffffff541561403357600080fd5b600162ffffff556024358080600081121561404a57195b607f1c1561405757600080fd5b9050506010541561406757600080fd5b606036610140376101405161016051610180516004356101a0526024356101c0526101c0516101a051600658016138cb565b6102205261024052610260526101805261016052610140526102208080808051610280525050602081019050808080516102a0525050602081019050808080516102c05250505050610280805161014052806020015161016052806040015161018052506044356101405110151515614151576308c379a06101a05260206101c05260186101e0527f4e6f7420656e6f75676820636f696e732072656d6f7665640000000000000000610200526101e05060646101bcfd5b6024356004811061416157600080fd5b600160c052602060c0200180546101405161016051600354808202821582848304141761418d57600080fd5b809050905090506402540be400808204905090508181830110156141b057600080fd5b80820190509050808210156141c457600080fd5b80820390509050815550602061024060446379cc67906101a052336101c0526004356101e0526101bc60006006545af16141fd57600080fd5b601f3d1161420a57600080fd5b6000506102405060006004610200527fa9059cbb000000000000000000000000000000000000000000000000000000006102205261020060048060208461026001018260208501600060045af15050805182019150503360208261026001015260208101905061014051602082610260010152602081019050806102605261026090508051602001806103008284600060045af16142a757600080fd5b505060206103c0610300516103206000602435600481106142c757600080fd5b600060c052602060c02001545af16142de57600080fd5b60203d808211156142ef57806142f1565b815b905090506103a0526103a08051602001806101a08284600060045af161431657600080fd5b505060006101a0511115614369576101a080602001516000825180602090131561433f57600080fd5b809190121561434d57600080fd5b806020036101000a8204905090509050151561436857600080fd5b5b600435610200526101405161022052610180516004358082101561438c57600080fd5b8082039050905061024052337f5ad056f2e28a8cec232015406b843668c1e36cda598127ec3b8c59b8c72773a06060610200a261014051600052600062ffffff5560206000f350600062ffffff55005b633c157e6460005114156145805760055433146143f857600080fd5b6009546201518081818301101561440e57600080fd5b8082019050905042101561442157600080fd5b426201518081818301101561443557600080fd5b80820190509050602435101561444a57600080fd5b6101405160065801610026565b610160526101405261016051610140526004356064808202821582848304141761448057600080fd5b8090509050905061016052600060043511156144a357620f4240600435106144a6565b60005b6144af57600080fd5b610140516101605110156144f2576101405161016051600a80820282158284830414176144db57600080fd5b8090509050905010156144ed57600080fd5b614523565b61014051600a808202821582848304141761450c57600080fd5b8090509050905061016051111561452257600080fd5b5b610140516007556101605160085542600955602435600a556101405161018052610160516101a052426101c0526024356101e0527fa2b71ec6df949300b59aab36b55e189697b750119dd349fcfa8c0f779e83c2546080610180a1005b63551a6588600051141561460557600554331461459c57600080fd5b6101405160065801610026565b6101605261014052610160516101405261014051600755610140516008554260095542600a55610140516101605242610180527f46e22fb3709ad289f62ce63d469248536dbc78d82b84a3d7e74ad606dc2019386040610160a1005b635b5a146760005114156146c357600554331461462157600080fd5b600b541561462e57600080fd5b64012a05f200600435111561464257600080fd5b6402540be400602435111561465657600080fd5b426203f48081818301101561466a57600080fd5b808201905090506101405261014051600b55600435600d55602435600e556004356101605260243561018052610140517f351fc5da2fbf480f2225debf3664a4bc90fa9923743aad58b4603f648e931fe06040610160a2005b634f12fe9760005114156147575760055433146146df57600080fd5b600b544210156146ee57600080fd5b6000600b54186146fd57600080fd5b6000600b55600d5461014052600e546101605261014051600255610160516003556101405161018052610160516101a0527fbe12859b636aed607d5230b2cc2711f68d70e51060e6cca1f575ef5d2fcc95d16040610180a1005b63226840fb600051141561477a57600554331461477357600080fd5b6000600b55005b636b441a40600051141561480e5760043560a01c1561479857600080fd5b60055433146147a657600080fd5b600c54156147b357600080fd5b426203f4808181830110156147c757600080fd5b808201905090506101405261014051600c55600435600f55600435610140517f181aa3aa17d4cbf99265dd4443eba009433d3cde79d60164fde1d1a192beb93560006000a3005b636a1c05ae600051141561488757600554331461482a57600080fd5b600c5442101561483957600080fd5b6000600c541861484857600080fd5b6000600c55600f546101405261014051600555610140517f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c60006000a2005b6386fbf19360005114156148aa5760055433146148a357600080fd5b6000600c55005b63e2e7d26460005114156149465760206101c060246370a0823161014052306101605261015c600435600481106148e057600080fd5b600060c052602060c02001545afa6148f757600080fd5b601f3d1161490457600080fd5b6000506101c0516004356004811061491b57600080fd5b600160c052602060c02001548082101561493457600080fd5b8082039050905060005260206000f350005b6330c540856000511415614b765760055433141561496557600161496b565b60045433145b5b61497557600080fd5b61014060006004818352015b610140516004811061499257600080fd5b600060c052602060c020015461016052602061022060246370a082316101a052306101c0526101bc610160515afa6149c957600080fd5b601f3d116149d657600080fd5b6000506102205161014051600481106149ee57600080fd5b600160c052602060c020015480821015614a0757600080fd5b80820390509050610180526000610180511115614b615760006004610200527fa9059cbb000000000000000000000000000000000000000000000000000000006102205261020060048060208461026001018260208501600060045af150508051820191505060045460208261026001015260208101905061018051602082610260010152602081019050806102605261026090508051602001806103008284600060045af1614ab657600080fd5b505060206103c0610300516103206000610160515af1614ad557600080fd5b60203d80821115614ae65780614ae8565b815b905090506103a0526103a08051602001806101a08284600060045af1614b0d57600080fd5b505060006101a0511115614b60576101a0806020015160008251806020901315614b3657600080fd5b8091901215614b4457600080fd5b806020036101000a82049050905090501515614b5f57600080fd5b5b5b5b8151600101808352811415614981575b5050005b63524c39016000511415614c24576005543314614b9257600080fd5b61014060006004818352015b60206101e060246370a0823161016052306101805261017c6101405160048110614bc757600080fd5b600060c052602060c02001545afa614bde57600080fd5b601f3d11614beb57600080fd5b6000506101e0516101405160048110614c0357600080fd5b600160c052602060c02001555b8151600101808352811415614b9e575b5050005b63e36988536000511415614c55576005543314614c4057600080fd5b4260115411614c4e57600080fd5b6001601055005b633046f9726000511415614c78576005543314614c7157600080fd5b6000601055005b63b57a6be76000511415614cac5760043560a01c15614c9657600080fd5b6005543314614ca457600080fd5b600435600455005b63c66106576000511415614ce15760043560048110614cca57600080fd5b600060c052602060c020015460005260206000f350005b634903b0d16000511415614d165760043560048110614cff57600080fd5b600160c052602060c020015460005260206000f350005b63ddca3f436000511415614d325760025460005260206000f350005b63fee3f7f96000511415614d4e5760035460005260206000f350005b63fc6bc81a6000511415614d6a5760045460005260206000f350005b638da5cb5b6000511415614d865760055460005260206000f350005b6382c630666000511415614da25760065460005260206000f350005b635409491a6000511415614dbe5760075460005260206000f350005b63b4b577ad6000511415614dda5760085460005260206000f350005b632081066c6000511415614df65760095460005260206000f350005b63140522886000511415614e1257600a5460005260206000f350005b63405e28f86000511415614e2e57600b5460005260206000f350005b63e0a0b5866000511415614e4a57600c5460005260206000f350005b6358680d0b6000511415614e6657600d5460005260206000f350005b63e38244626000511415614e8257600e5460005260206000f350005b631ec0cdc16000511415614e9e57600f5460005260206000f350005b5b60006000fd5b6101c2615067036101c26000396101c2615067036000f3000000000000000000000000b9a81e121d8c9d619682bb9ddb6823439178f2f8000000000000000000000000e9e7cea3dedca5984780bafc599bd69add087d5600000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d00000000000000000000000083d69ef5c9837e21e2389d47d791714f5771f29b000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000003d0900000000000000000000000000000000000000000000000000000000012a05f2000000000000000000000000008650ab7e2c53e705d484c3b98be14c1ba1e8d690
Deployed Bytecode
0x341561000a57600080fd5b600436101561001857614e9f565b600035601c526000156101c1575b61014052600a546101605260085461018052610160514210156101ae576007546101a0526009546101c0526101a051610180511115610107576101a051610180516101a0518082101561007857600080fd5b80820390509050426101c0518082101561009157600080fd5b8082039050905080820282158284830414176100ac57600080fd5b80905090509050610160516101c051808210156100c857600080fd5b8082039050905080806100da57600080fd5b8204905090508181830110156100ef57600080fd5b808201905090506000526000516101405156506101a9565b6101a0516101a051610180518082101561012057600080fd5b80820390509050426101c0518082101561013957600080fd5b80820390509050808202821582848304141761015457600080fd5b80905090509050610160516101c0518082101561017057600080fd5b80820390509050808061018257600080fd5b8204905090508082101561019557600080fd5b808203905090506000526000516101405156505b6101bf565b610180516000526000516101405156505b005b63f446c1d060005114156101f45760065801610026565b610140526101405160648082049050905060005260206000f350005b6376a2f0f0600051141561021e5760065801610026565b610140526101405160005260206000f350005b600015610333575b61014052670de0b6b3a764000061016052670de0b6b3a764000061018052670de0b6b3a76400006101a052670de0b6b3a76400006101c0526101e060006004818352015b6101606101e0516004811061027e57600080fd5b60200201516101e0516004811061029457600080fd5b600160c052602060c020015480820282158284830414176102b457600080fd5b80905090509050670de0b6b3a7640000808204905090506101606101e051600481106102df57600080fd5b60200201525b815160010180835281141561026a575b505060806101e0525b60006101e0511115156103105761032c565b60206101e05103610160015160206101e051036101e0526102fe565b6101405156005b600015610454575b6101c0526101405261016052610180526101a052670de0b6b3a76400006101e052670de0b6b3a764000061020052670de0b6b3a764000061022052670de0b6b3a76400006102405261026060006004818352015b6101e061026051600481106103a357600080fd5b602002015161014061026051600481106103bc57600080fd5b602002015180820282158284830414176103d557600080fd5b80905090509050670de0b6b3a7640000808204905090506101e0610260516004811061040057600080fd5b60200201525b815160010180835281141561038f575b50506080610260525b6000610260511115156104315761044d565b602061026051036101e00151602061026051036102605261041f565b6101c05156005b600015610753575b6101e0526101405261016052610180526101a0526101c0526040366102003761026060006004818352015b602061026051026101400151610240526102008051610240518181830110156104af57600080fd5b808201905090508152505b8151600101808352811415610487575b50506102005115156104e55760006000526000516101e05156505b61020051610240526101c0516004808202821582848304141761050757600080fd5b8090509050905061026052610280600060ff818352015b610240516102a0526102e060006004818352015b60206102e0510261014001516102c0526102a05161024051808202821582848304141761055e57600080fd5b809050905090506102c0516004808202821582848304141761057f57600080fd5b80905090509050808061059157600080fd5b8204905090506102a0525b8151600101808352811415610532575b50506102405161022052610260516102005180820282158284830414176105d257600080fd5b809050905090506064808204905090506102a051600480820282158284830414176105fc57600080fd5b8090509050905081818301101561061257600080fd5b8082019050905061024051808202821582848304141761063157600080fd5b809050905090506102605160648082101561064b57600080fd5b8082039050905061024051808202821582848304141761066a57600080fd5b8090509050905060648082049050905060056102a051808202821582848304141761069457600080fd5b809050905090508181830110156106aa57600080fd5b8082019050905080806106bc57600080fd5b82049050905061024052610220516102405111156107035760016102405161022051808210156106eb57600080fd5b808203905090501115156106fe5761073f565b61072e565b600161022051610240518082101561071a57600080fd5b8082039050905011151561072d5761073f565b5b5b815160010180835281141561051e575b5050610240516000526000516101e0515650005b60001561090c575b6101e0526101405261016052610180526101a0526101c0526101405161016051610180516101a0516101c0516101e0516101405161020052610160516102205261018051610240526101a05161026052610260516102405161022051610200516006580161033b565b6102c0526102e05261030052610320526101e0526101c0526101a0526101805261016052610140526102c080516103405280602001516103605280604001516103805280606001516103a052506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e05161030051610320516103405161036051610380516103a051610340516103c052610360516103e05261038051610400526103a051610420526101c051610440526104405161042051610400516103e0516103c0516006580161045c565b6104a0526103a05261038052610360526103405261032052610300526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526104a0516000526000516101e0515650005b63bb7b8b806000511415610ae7576101405160065801610226565b61016052610180526101a0526101c0526101405261016080516101e052806020015161020052806040015161022052806060015161024052506101405161016051610180516101a0516101c0516101e05161020051610220516102405160065801610026565b610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261026051610280526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516101e0516102a052610200516102c052610220516102e0526102405161030052610280516103205261032051610300516102e0516102c0516102a0516006580161045c565b6103805261028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610380516101405260206101e060046318160ddd6101805261019c6006545afa610a8757600080fd5b601f3d11610a9457600080fd5b6000506101e0516101605261014051670de0b6b3a76400008082028215828483041417610ac057600080fd5b80905090509050610160518080610ad657600080fd5b82049050905060005260206000f350005b63cf701ff76000511415610e015760843560011c15610b0557600080fd5b6101405160065801610026565b6101605261014052610160516101405260018060c052602060c020546101605260018160c052602060c02001546101805260028160c052602060c02001546101a05260038160c052602060c02001546101c052506101405161016051610180516101a0516101c0516101e051610160516102005261018051610220526101a051610240526101c05161026052610140516102805261028051610260516102405161022051610200516006580161075b565b6102e0526101e0526101c0526101a0526101805261016052610140526102e0516101e05261020060006004818352015b60843515610c4b576101606102005160048110610c0f57600080fd5b60200201805160046102005160048110610c2857600080fd5b6020020135818183011015610c3c57600080fd5b80820190509050815250610c95565b6101606102005160048110610c5f57600080fd5b60200201805160046102005160048110610c7857600080fd5b602002013580821015610c8a57600080fd5b808203905090508152505b5b8151600101808352811415610bf3575b50506101405161016051610180516101a0516101c0516101e05161020051610160516102205261018051610240526101a051610260526101c05161028052610140516102a0526102a051610280516102605161024051610220516006580161075b565b61030052610200526101e0526101c0526101a052610180526101605261014052610300516102005260206102a060046318160ddd6102405261025c6006545afa610d5257600080fd5b601f3d11610d5f57600080fd5b6000506102a0516102205260006102405260843515610d9d57610200516101e05180821015610d8d57600080fd5b8082039050905061024052610dbe565b6101e0516102005180821015610db257600080fd5b80820390509050610240525b61024051610220518082028215828483041417610dda57600080fd5b809050905090506101e0518080610df057600080fd5b82049050905060005260206000f350005b63029b2f3460005114156117d75762ffffff5415610e1e57600080fd5b600162ffffff5560105415610e3257600080fd5b6101405160065801610026565b6101605261014052610160516101405260065461016052602061020060046318160ddd6101a0526101bc610160515afa610e7857600080fd5b601f3d11610e8557600080fd5b600050610200516101805260006101a05260018060c052602060c020546101c05260018160c052602060c02001546101e05260028160c052602060c02001546102005260038160c052602060c020015461022052506000610180511115610f78576101405161016051610180516101a0516101c0516101e05161020051610220516101c051610240526101e051610260526102005161028052610220516102a052610140516102c0526102c0516102a0516102805161026051610240516006580161075b565b6103205261022052610200526101e0526101c0526101a052610180526101605261014052610320516101a0525b6101c051610240526101e051610260526102005161028052610220516102a0526102c060006004818352015b610180511515610fd357600060046102c05160048110610fc357600080fd5b602002013511610fd257600080fd5b5b6101c06102c05160048110610fe757600080fd5b602002015160046102c05160048110610fff57600080fd5b602002013581818301101561101357600080fd5b808201905090506102406102c0516004811061102e57600080fd5b60200201525b8151600101808352811415610fa4575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c051610240516102e052610260516103005261028051610320526102a051610340526101405161036052610360516103405161032051610300516102e0516006580161075b565b6103c0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103c0516102c0526101a0516102c0511161111157600080fd5b6102c0516102e052608036610300376000610180511115611436576002546004808202821582848304141761114557600080fd5b80905090509050600c80820490509050610380526003546103a0526103c060006004818352015b6102c0516101c06103c0516004811061118457600080fd5b6020020151808202821582848304141761119d57600080fd5b809050905090506101a05180806111b357600080fd5b8204905090506103e0526000610400526102406103c051600481106111d757600080fd5b60200201516103e0511115611220576103e0516102406103c051600481106111fe57600080fd5b60200201518082101561121057600080fd5b8082039050905061040052611256565b6102406103c0516004811061123457600080fd5b60200201516103e0518082101561124a57600080fd5b80820390509050610400525b6103805161040051808202821582848304141761127257600080fd5b809050905090506402540be400808204905090506103006103c0516004811061129a57600080fd5b60200201526102406103c051600481106112b357600080fd5b60200201516103006103c051600481106112cc57600080fd5b60200201516103a05180820282158284830414176112e957600080fd5b809050905090506402540be400808204905090508082101561130a57600080fd5b808203905090506103c0516004811061132257600080fd5b600160c052602060c02001556102406103c0516004811061134257600080fd5b6020020180516103006103c0516004811061135c57600080fd5b60200201518082101561136e57600080fd5b808203905090508152505b815160010180835281141561116c575b50506101406103c0525b6103c0515160206103c051016103c0526103c06103c05110156113b557611393565b610240516103e052610260516104005261028051610420526102a051610440526101405161046052610460516104405161042051610400516103e0516006580161075b565b6104c0526103a06103c0525b6103c0515260206103c051036103c0526101406103c05110151561142957611406565b6104c0516102e052611463565b600160c052602060c0206102405181556102605160018201556102805160028201556102a0516003820155505b600061038052610180511515611480576102c051610380526114d5565b610180516102e0516101a0518082101561149957600080fd5b8082039050905080820282158284830414176114b457600080fd5b809050905090506101a05180806114ca57600080fd5b820490509050610380525b6084356103805110151515611529576308c379a06103a05260206103c05260146103e0527f536c697070616765207363726577656420796f75000000000000000000000000610400526103e05060646103bcfd5b6103a060006004818352015b600060046103a0516004811061154a57600080fd5b602002013511156116d35760006004610420527f23b872dd000000000000000000000000000000000000000000000000000000006104405261042060048060208461048001018260208501600060045af1505080518201915050336020826104800101526020810190503060208261048001015260208101905060046103a051600481106115d757600080fd5b6020020135602082610480010152602081019050806104805261048090508051602001806105408284600060045af161160f57600080fd5b505060206106206105405161056060006103a0516004811061163057600080fd5b600060c052602060c02001545af161164757600080fd5b60203d80821115611658578061165a565b815b90509050610600526106008051602001806103c08284600060045af161167f57600080fd5b505060006103c05111156116d2576103c08060200151600082518060209013156116a857600080fd5b80919012156116b657600080fd5b806020036101000a820490509050905015156116d157600080fd5b5b5b5b8151600101808352811415611535575b5050602061044060446340c10f196103a052336103c052610380516103e0526103bc6000610160515af161171757600080fd5b601f3d1161172457600080fd5b600050610440506004356103a0526024356103c0526044356103e0526064356104005261030051610420526103205161044052610340516104605261036051610480526102c0516104a052610180516103805181818301101561178657600080fd5b808201905090506104c052337f3f1915775e0c9a38a57a7bb7f1f9005f486fb904e1f84aa215364d567319a58d6101406103a0a261038051600052600062ffffff5560206000f350600062ffffff55005b600015611c88575b610220526101405261016052610180526101a0526101c0526101e0526102005261016051610140511861181157600080fd5b600061016051121561182257600080fd5b6004610160511261183257600080fd5b600061014051121561184357600080fd5b6004610140511261185357600080fd5b6101405161016051610180516101a0516101c0516101e05161020051610220516102405160065801610026565b610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261026051610240526101405161016051610180516101a0516101c0516101e051610200516102205161024051610260516101a051610280526101c0516102a0526101e0516102c052610200516102e0526102405161030052610300516102e0516102c0516102a051610280516006580161045c565b61036052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103605161026052610240516004808202821582848304141761196b57600080fd5b8090509050905061028052610260516102a0526060366102c03761032060006004818352015b610140516103205114156119ac57610180516102e0526119e2565b610160516103205118156119dc576101a061032051600481106119ce57600080fd5b60200201516102e0526119e1565b611a5e565b5b6102c080516102e0518181830110156119fa57600080fd5b808201905090508152506102a051610260518082028215828483041417611a2057600080fd5b809050905090506102e05160048082028215828483041417611a4157600080fd5b809050905090508080611a5357600080fd5b8204905090506102a0525b8151600101808352811415611991575b50506102a051610260518082028215828483041417611a8c57600080fd5b8090509050905060648082028215828483041417611aa957600080fd5b809050905090506102805160048082028215828483041417611aca57600080fd5b809050905090508080611adc57600080fd5b8204905090506102a0526102c0516102605160648082028215828483041417611b0457600080fd5b80905090509050610280518080611b1a57600080fd5b820490509050818183011015611b2f57600080fd5b80820190509050610320526102605161034052610360600060ff818352015b610340516103005261034051610340518082028215828483041417611b7257600080fd5b809050905090506102a051818183011015611b8c57600080fd5b808201905090506002610340518082028215828483041417611bad57600080fd5b8090509050905061032051818183011015611bc757600080fd5b808201905090506102605180821015611bdf57600080fd5b808203905090508080611bf157600080fd5b8204905090506103405261030051610340511115611c38576001610340516103005180821015611c2057600080fd5b80820390509050111515611c3357611c74565b611c63565b6001610300516103405180821015611c4f57600080fd5b80820390509050111515611c6257611c74565b5b5b8151600101808352811415611b4e575b505061034051600052600051610220515650005b635e0d443f6000511415611f885760043580806000811215611ca657195b607f1c15611cb357600080fd5b90505060243580806000811215611cc657195b607f1c15611cd357600080fd5b9050506101405161016051610180516101a05160065801610226565b6101c0526101e05261020052610220526101a0526101805261016052610140526101c080516101405280602001516101605280604001516101805280606001516101a05250670de0b6b3a76400006101c052670de0b6b3a76400006101e052670de0b6b3a764000061020052670de0b6b3a76400006102205261014060043560048110611d7b57600080fd5b60200201516044356101c060043560048110611d9657600080fd5b60200201518082028215828483041417611daf57600080fd5b80905090509050670de0b6b3a764000080820490509050818183011015611dd557600080fd5b80820190509050610240526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051600435610280526024356102a052610240516102c052610140516102e052610160516103005261018051610320526101a051610340526103405161032051610300516102e0516102c0516102a05161028051600658016117df565b6103a052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103a0516102605261014060243560048110611eaa57600080fd5b60200201516102605180821015611ec057600080fd5b80820390509050600180821015611ed657600080fd5b8082039050905061028052600254610280518082028215828483041417611efc57600080fd5b809050905090506402540be400808204905090506102a052610280516102a05180821015611f2957600080fd5b80820390509050670de0b6b3a76400008082028215828483041417611f4d57600080fd5b809050905090506101c060243560048110611f6757600080fd5b60200201518080611f7757600080fd5b82049050905060005260206000f350005b633df02124600051141561282b5762ffffff5415611fa557600080fd5b600162ffffff5560043580806000811215611fbc57195b607f1c15611fc957600080fd5b90505060243580806000811215611fdc57195b607f1c15611fe957600080fd5b90505060105415611ff957600080fd5b60018060c052602060c020546101405260018160c052602060c02001546101605260028160c052602060c02001546101805260038160c052602060c02001546101a052506101405161016051610180516101a0516101c0516101e05161020051610220516101405161024052610160516102605261018051610280526101a0516102a0526102a0516102805161026051610240516006580161033b565b6103005261032052610340526103605261022052610200526101e0526101c0526101a05261018052610160526101405261030080516101c05280602001516101e05280604001516102005280606001516102205250670de0b6b3a764000061024052670de0b6b3a764000061026052670de0b6b3a764000061028052670de0b6b3a76400006102a0526101c06004356004811061213257600080fd5b60200201516044356102406004356004811061214d57600080fd5b6020020151808202821582848304141761216657600080fd5b80905090509050670de0b6b3a76400008082049050905081818301101561218c57600080fd5b808201905090506102c0526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e05160043561030052602435610320526102c051610340526101c051610360526101e05161038052610200516103a052610220516103c0526103c0516103a0516103805161036051610340516103205161030051600658016117df565b610420526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610420516102e0526101c06024356004811061228157600080fd5b60200201516102e0518082101561229757600080fd5b808203905090506001808210156122ad57600080fd5b80820390509050610300526103005160025480820282158284830414176122d357600080fd5b809050905090506402540be400808204905090506103205261030051610320518082101561230057600080fd5b80820390509050670de0b6b3a7640000808202821582848304141761232457600080fd5b809050905090506102406024356004811061233e57600080fd5b6020020151808061234e57600080fd5b8204905090506103005260643561030051101515156123d1576308c379a061034052602061036052602e610380527f45786368616e676520726573756c74656420696e20666577657220636f696e736103a0527f207468616e2065787065637465640000000000000000000000000000000000006103c05261038050608461035cfd5b6103205160035480820282158284830414176123ec57600080fd5b809050905090506402540be400808204905090506103405261034051670de0b6b3a7640000808202821582848304141761242557600080fd5b809050905090506102406024356004811061243f57600080fd5b6020020151808061244f57600080fd5b820490509050610340526101406004356004811061246c57600080fd5b602002015160443581818301101561248357600080fd5b808201905090506004356004811061249a57600080fd5b600160c052602060c0200155610140602435600481106124b957600080fd5b602002015161030051808210156124cf57600080fd5b8082039050905061034051808210156124e757600080fd5b80820390509050602435600481106124fe57600080fd5b600160c052602060c0200155600060046103c0527f23b872dd000000000000000000000000000000000000000000000000000000006103e0526103c060048060208461042001018260208501600060045af15050805182019150503360208261042001015260208101905030602082610420010152602081019050604435602082610420010152602081019050806104205261042090508051602001806104e08284600060045af16125af57600080fd5b505060206105c06104e0516105006000600435600481106125cf57600080fd5b600060c052602060c02001545af16125e657600080fd5b60203d808211156125f757806125f9565b815b905090506105a0526105a08051602001806103608284600060045af161261e57600080fd5b505060006103605111156126715761036080602001516000825180602090131561264757600080fd5b809190121561265557600080fd5b806020036101000a8204905090509050151561267057600080fd5b5b600060046103c0527fa9059cbb000000000000000000000000000000000000000000000000000000006103e0526103c060048060208461042001018260208501600060045af15050805182019150503360208261042001015260208101905061030051602082610420010152602081019050806104205261042090508051602001806104c08284600060045af161270757600080fd5b505060206105806104c0516104e060006024356004811061272757600080fd5b600060c052602060c02001545af161273e57600080fd5b60203d8082111561274f5780612751565b815b90509050610560526105608051602001806103608284600060045af161277657600080fd5b505060006103605111156127c95761036080602001516000825180602090131561279f57600080fd5b80919012156127ad57600080fd5b806020036101000a820490509050905015156127c857600080fd5b5b6004356103c0526044356103e052602435610400526103005161042052337f8b3e96f2b889fa771c53c981b40daf005f63f637f1869f707052d15a3dd9714060806103c0a261030051600052600062ffffff5560206000f350600062ffffff55005b637d49d8756000511415612c2a5762ffffff541561284857600080fd5b600162ffffff556006546101405260206101e060046318160ddd6101805261019c610140515afa61287857600080fd5b601f3d1161288557600080fd5b6000506101e05161016052610100366101803761028060006004818352015b61028051600481106128b557600080fd5b600160c052602060c020015460043580820282158284830414176128d857600080fd5b809050905090506101605180806128ee57600080fd5b8204905090506102a0526024610280516004811061290b57600080fd5b60200201356102a05110151515612986576308c379a06102c05260206102e0526030610300527f5769746864726177616c20726573756c74656420696e20666577657220636f69610320527f6e73207468616e20657870656374656400000000000000000000000000000000610340526103005060846102dcfd5b610280516004811061299757600080fd5b600160c052602060c0200180546102a051808210156129b557600080fd5b808203905090508155506102a05161018061028051600481106129d757600080fd5b602002015260006004610320527fa9059cbb000000000000000000000000000000000000000000000000000000006103405261032060048060208461038001018260208501600060045af1505080518201915050336020826103800101526020810190506102a051602082610380010152602081019050806103805261038090508051602001806104208284600060045af1612a7257600080fd5b505060206104e06104205161044060006102805160048110612a9357600080fd5b600060c052602060c02001545af1612aaa57600080fd5b60203d80821115612abb5780612abd565b815b905090506104c0526104c08051602001806102c08284600060045af1612ae257600080fd5b505060006102c0511115612b35576102c0806020015160008251806020901315612b0b57600080fd5b8091901215612b1957600080fd5b806020036101000a82049050905090501515612b3457600080fd5b5b5b81516001018083528114156128a4575b5050602061032060446379cc679061028052336102a0526004356102c05261029c6000610140515af1612b7857600080fd5b601f3d11612b8557600080fd5b6000506103205061018051610280526101a0516102a0526101c0516102c0526101e0516102e05261020051610300526102205161032052610240516103405261026051610360526101605160043580821015612be057600080fd5b8082039050905061038052337f9878ca375e106f2a43c3b599fc624568131c4c9a4ba66a14563715763be9d59d610120610280a2600062ffffff556080610180f3600062ffffff55005b6318a7bd76600051141561355f5762ffffff5415612c4757600080fd5b600162ffffff5560105415612c5b57600080fd5b6101405160065801610026565b6101605261014052610160516101405260018060c052602060c020546101605260018160c052602060c02001546101805260028160c052602060c02001546101a05260038160c052602060c02001546101c05250610160516101e05261018051610200526101a051610220526101c051610240526101405161016051610180516101a0516101c0516101e051610200516102205161024051610260516101605161028052610180516102a0526101a0516102c0526101c0516102e0526101405161030052610300516102e0516102c0516102a051610280516006580161075b565b61036052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610360516102605261028060006004818352015b6101e06102805160048110612d9d57600080fd5b60200201805160046102805160048110612db657600080fd5b602002013580821015612dc857600080fd5b808203905090508152505b8151600101808352811415612d89575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516101e0516102a052610200516102c052610220516102e0526102405161030052610140516103205261032051610300516102e0516102c0516102a0516006580161075b565b6103805261028052610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261038051610280526006546102a052602061034060046318160ddd6102e0526102fc6102a0515afa612eb757600080fd5b601f3d11612ec457600080fd5b600050610340516102c05260006102c05118612edf57600080fd5b60025460048082028215828483041417612ef857600080fd5b80905090509050600c808204905090506102e05260035461030052608036610320376103a060006004818352015b610280516101606103a05160048110612f3e57600080fd5b60200201518082028215828483041417612f5757600080fd5b80905090509050610260518080612f6d57600080fd5b8204905090506103c05260006103e0526101e06103a05160048110612f9157600080fd5b60200201516103c0511115612fda576103c0516101e06103a05160048110612fb857600080fd5b602002015180821015612fca57600080fd5b808203905090506103e052613010565b6101e06103a05160048110612fee57600080fd5b60200201516103c0518082101561300457600080fd5b808203905090506103e0525b6102e0516103e051808202821582848304141761302c57600080fd5b809050905090506402540be400808204905090506103206103a0516004811061305457600080fd5b60200201526101e06103a0516004811061306d57600080fd5b60200201516103206103a0516004811061308657600080fd5b60200201516103005180820282158284830414176130a357600080fd5b809050905090506402540be40080820490509050808210156130c457600080fd5b808203905090506103a051600481106130dc57600080fd5b600160c052602060c02001556101e06103a051600481106130fc57600080fd5b6020020180516103206103a0516004811061311657600080fd5b60200201518082101561312857600080fd5b808203905090508152505b8151600101808352811415612f26575b50506101406103c0525b6103c0515160206103c051016103c0526103c06103c051101561316f5761314d565b6101e0516103e0526102005161040052610220516104205261024051610440526101405161046052610460516104405161042051610400516103e0516006580161075b565b6104c0526103a06103c0525b6103c0515260206103c051036103c0526101406103c0511015156131e3576131c0565b6104c0516103a052610260516103a0518082101561320057600080fd5b808203905090506102c051808202821582848304141761321f57600080fd5b8090509050905061026051808061323557600080fd5b8204905090506103c05260006103c0511861324f57600080fd5b6103c08051600181818301101561326557600080fd5b808201905090508152506084356103c051111515156132c3576308c379a06103e0526020610400526014610420527f536c697070616765207363726577656420796f75000000000000000000000000610440526104205060646103fcfd5b602061048060446379cc67906103e05233610400526103c051610420526103fc60006102a0515af16132f457600080fd5b601f3d1161330157600080fd5b600050610480506103e060006004818352015b600060046103e0516004811061332957600080fd5b602002013518156134a25760006004610460527fa9059cbb00000000000000000000000000000000000000000000000000000000610480526104606004806020846104c001018260208501600060045af1505080518201915050336020826104c001015260208101905060046103e051600481106133a657600080fd5b60200201356020826104c0010152602081019050806104c0526104c090508051602001806105608284600060045af16133de57600080fd5b505060206106206105605161058060006103e051600481106133ff57600080fd5b600060c052602060c02001545af161341657600080fd5b60203d808211156134275780613429565b815b90509050610600526106008051602001806104008284600060045af161344e57600080fd5b505060006104005111156134a15761040080602001516000825180602090131561347757600080fd5b809190121561348557600080fd5b806020036101000a820490509050905015156134a057600080fd5b5b5b5b8151600101808352811415613314575b50506004356103e05260243561040052604435610420526064356104405261032051610460526103405161048052610360516104a052610380516104c052610280516104e0526102c0516103c0518082101561350e57600080fd5b8082039050905061050052337fb964b72f73f5ef5bf0fdc559b2fab9a7b12a39e47817a547f1f0aee47febd6026101406103e0a26103c051600052600062ffffff5560206000f350600062ffffff55005b6000156138c3575b610220526101405261016052610180526101a0526101c0526101e05261020052600061016051121561359857600080fd5b600461016051126135a857600080fd5b61014051600480820282158284830414176135c257600080fd5b80905090509050610240526102005161026052606036610280376102e060006004818352015b610160516102e0511815613618576101806102e0516004811061360a57600080fd5b60200201516102a05261361d565b613699565b61028080516102a05181818301101561363557600080fd5b808201905090508152506102605161020051808202821582848304141761365b57600080fd5b809050905090506102a0516004808202821582848304141761367c57600080fd5b80905090509050808061368e57600080fd5b820490509050610260525b81516001018083528114156135e8575b5050610260516102005180820282158284830414176136c757600080fd5b80905090509050606480820282158284830414176136e457600080fd5b80905090509050610240516004808202821582848304141761370557600080fd5b80905090509050808061371757600080fd5b8204905090506102605261028051610200516064808202821582848304141761373f57600080fd5b8090509050905061024051808061375557600080fd5b82049050905081818301101561376a57600080fd5b808201905090506102e0526102005161030052610320600060ff818352015b610300516102c052610300516103005180820282158284830414176137ad57600080fd5b80905090509050610260518181830110156137c757600080fd5b8082019050905060026103005180820282158284830414176137e857600080fd5b809050905090506102e05181818301101561380257600080fd5b80820190509050610200518082101561381a57600080fd5b80820390509050808061382c57600080fd5b820490509050610300526102c051610300511115613873576001610300516102c0518082101561385b57600080fd5b8082039050905011151561386e576138af565b61389e565b60016102c051610300518082101561388a57600080fd5b8082039050905011151561389d576138af565b5b5b8151600101808352811415613789575b505061030051600052600051610220515650005b600015613f7e575b6101805261014052610160526101405161016051610180516101a05160065801610026565b6101c0526101a0526101805261016052610140526101c0516101a0526101405161016051610180516101a0516101c0516101e051610200516102205160065801610226565b6102405261026052610280526102a05261022052610200526101e0526101c0526101a05261018052610160526101405261024080516101c05280602001516101e052806040015161020052806060015161022052506101405161016051610180516101a0516101c0516101e0516102005161022051610240516101c051610260526101e05161028052610200516102a052610220516102c0526101a0516102e0526102e0516102c0516102a05161028051610260516006580161045c565b610340526102405261022052610200526101e0526101c0526101a052610180526101605261014052610340516102405260206102e060046318160ddd6102805261029c6006545afa613a4457600080fd5b601f3d11613a5157600080fd5b6000506102e051610260526102405161014051610240518082028215828483041417613a7c57600080fd5b80905090509050610260518080613a9257600080fd5b82049050905080821015613aa557600080fd5b80820390509050610280526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516101a0516102c052610160516102e0526101c051610300526101e0516103205261020051610340526102205161036052610280516103805261038051610360516103405161032051610300516102e0516102c05160065801613567565b6103e0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103e0516102a0526101c0516102c0526101e0516102e0526102005161030052610220516103205260025460048082028215828483041417613bb257600080fd5b80905090509050600c808204905090506103405261036060006004818352015b60006103805261016051610360511415613c54576101c06103605160048110613bfa57600080fd5b6020020151610280518082028215828483041417613c1757600080fd5b80905090509050610240518080613c2d57600080fd5b8204905090506102a05180821015613c4457600080fd5b8082039050905061038052613cd3565b6101c06103605160048110613c6857600080fd5b60200201516101c06103605160048110613c8157600080fd5b6020020151610280518082028215828483041417613c9e57600080fd5b80905090509050610240518080613cb457600080fd5b82049050905080821015613cc757600080fd5b80820390509050610380525b6102c06103605160048110613ce757600080fd5b60200201805161034051610380518082028215828483041417613d0957600080fd5b809050905090506402540be4008082049050905080821015613d2a57600080fd5b808203905090508152505b8151600101808352811415613bd2575b50506102c06101605160048110613d5b57600080fd5b6020020151610140610380525b61038051516020610380510161038052610380610380511015613d8a57613d68565b6101a0516103a052610160516103c0526102c0516103e0526102e05161040052610300516104205261032051610440526102805161046052610460516104405161042051610400516103e0516103c0516103a05160065801613567565b6104c052610360610380525b6103805152602061038051036103805261014061038051101515613e1657613df3565b6104c05180821015613e2757600080fd5b808203905090506103605260016103805260016103a05260016103c05260016103e05261036051600180821015613e5d57600080fd5b808203905090506103806101605160048110613e7857600080fd5b60200201518080613e8857600080fd5b820490509050610360526101c06101605160048110613ea657600080fd5b60200201516102a05180821015613ebc57600080fd5b808203905090506103806101605160048110613ed757600080fd5b60200201518080613ee757600080fd5b8204905090506104005261042080808061036051815250506020810190508080610400516103605180821015613f1c57600080fd5b80820390509050815250506020810190508080610260518152505060609050905060c05260c051610480525b600061048051111515613f5a57613f76565b6020610480510361042001516020610480510361048052613f48565b610180515650005b63cc2b27d760005114156140165760243580806000811215613f9c57195b607f1c15613fa957600080fd5b90505060043561014052602435610160526101605161014051600658016138cb565b6101c0526101e052610200526101c08080808051610220525050602081019050808080516102405250506020810190508080805161026052505050506102205160005260206000f350005b631a4d01d260005114156143dc5762ffffff541561403357600080fd5b600162ffffff556024358080600081121561404a57195b607f1c1561405757600080fd5b9050506010541561406757600080fd5b606036610140376101405161016051610180516004356101a0526024356101c0526101c0516101a051600658016138cb565b6102205261024052610260526101805261016052610140526102208080808051610280525050602081019050808080516102a0525050602081019050808080516102c05250505050610280805161014052806020015161016052806040015161018052506044356101405110151515614151576308c379a06101a05260206101c05260186101e0527f4e6f7420656e6f75676820636f696e732072656d6f7665640000000000000000610200526101e05060646101bcfd5b6024356004811061416157600080fd5b600160c052602060c0200180546101405161016051600354808202821582848304141761418d57600080fd5b809050905090506402540be400808204905090508181830110156141b057600080fd5b80820190509050808210156141c457600080fd5b80820390509050815550602061024060446379cc67906101a052336101c0526004356101e0526101bc60006006545af16141fd57600080fd5b601f3d1161420a57600080fd5b6000506102405060006004610200527fa9059cbb000000000000000000000000000000000000000000000000000000006102205261020060048060208461026001018260208501600060045af15050805182019150503360208261026001015260208101905061014051602082610260010152602081019050806102605261026090508051602001806103008284600060045af16142a757600080fd5b505060206103c0610300516103206000602435600481106142c757600080fd5b600060c052602060c02001545af16142de57600080fd5b60203d808211156142ef57806142f1565b815b905090506103a0526103a08051602001806101a08284600060045af161431657600080fd5b505060006101a0511115614369576101a080602001516000825180602090131561433f57600080fd5b809190121561434d57600080fd5b806020036101000a8204905090509050151561436857600080fd5b5b600435610200526101405161022052610180516004358082101561438c57600080fd5b8082039050905061024052337f5ad056f2e28a8cec232015406b843668c1e36cda598127ec3b8c59b8c72773a06060610200a261014051600052600062ffffff5560206000f350600062ffffff55005b633c157e6460005114156145805760055433146143f857600080fd5b6009546201518081818301101561440e57600080fd5b8082019050905042101561442157600080fd5b426201518081818301101561443557600080fd5b80820190509050602435101561444a57600080fd5b6101405160065801610026565b610160526101405261016051610140526004356064808202821582848304141761448057600080fd5b8090509050905061016052600060043511156144a357620f4240600435106144a6565b60005b6144af57600080fd5b610140516101605110156144f2576101405161016051600a80820282158284830414176144db57600080fd5b8090509050905010156144ed57600080fd5b614523565b61014051600a808202821582848304141761450c57600080fd5b8090509050905061016051111561452257600080fd5b5b610140516007556101605160085542600955602435600a556101405161018052610160516101a052426101c0526024356101e0527fa2b71ec6df949300b59aab36b55e189697b750119dd349fcfa8c0f779e83c2546080610180a1005b63551a6588600051141561460557600554331461459c57600080fd5b6101405160065801610026565b6101605261014052610160516101405261014051600755610140516008554260095542600a55610140516101605242610180527f46e22fb3709ad289f62ce63d469248536dbc78d82b84a3d7e74ad606dc2019386040610160a1005b635b5a146760005114156146c357600554331461462157600080fd5b600b541561462e57600080fd5b64012a05f200600435111561464257600080fd5b6402540be400602435111561465657600080fd5b426203f48081818301101561466a57600080fd5b808201905090506101405261014051600b55600435600d55602435600e556004356101605260243561018052610140517f351fc5da2fbf480f2225debf3664a4bc90fa9923743aad58b4603f648e931fe06040610160a2005b634f12fe9760005114156147575760055433146146df57600080fd5b600b544210156146ee57600080fd5b6000600b54186146fd57600080fd5b6000600b55600d5461014052600e546101605261014051600255610160516003556101405161018052610160516101a0527fbe12859b636aed607d5230b2cc2711f68d70e51060e6cca1f575ef5d2fcc95d16040610180a1005b63226840fb600051141561477a57600554331461477357600080fd5b6000600b55005b636b441a40600051141561480e5760043560a01c1561479857600080fd5b60055433146147a657600080fd5b600c54156147b357600080fd5b426203f4808181830110156147c757600080fd5b808201905090506101405261014051600c55600435600f55600435610140517f181aa3aa17d4cbf99265dd4443eba009433d3cde79d60164fde1d1a192beb93560006000a3005b636a1c05ae600051141561488757600554331461482a57600080fd5b600c5442101561483957600080fd5b6000600c541861484857600080fd5b6000600c55600f546101405261014051600555610140517f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c60006000a2005b6386fbf19360005114156148aa5760055433146148a357600080fd5b6000600c55005b63e2e7d26460005114156149465760206101c060246370a0823161014052306101605261015c600435600481106148e057600080fd5b600060c052602060c02001545afa6148f757600080fd5b601f3d1161490457600080fd5b6000506101c0516004356004811061491b57600080fd5b600160c052602060c02001548082101561493457600080fd5b8082039050905060005260206000f350005b6330c540856000511415614b765760055433141561496557600161496b565b60045433145b5b61497557600080fd5b61014060006004818352015b610140516004811061499257600080fd5b600060c052602060c020015461016052602061022060246370a082316101a052306101c0526101bc610160515afa6149c957600080fd5b601f3d116149d657600080fd5b6000506102205161014051600481106149ee57600080fd5b600160c052602060c020015480821015614a0757600080fd5b80820390509050610180526000610180511115614b615760006004610200527fa9059cbb000000000000000000000000000000000000000000000000000000006102205261020060048060208461026001018260208501600060045af150508051820191505060045460208261026001015260208101905061018051602082610260010152602081019050806102605261026090508051602001806103008284600060045af1614ab657600080fd5b505060206103c0610300516103206000610160515af1614ad557600080fd5b60203d80821115614ae65780614ae8565b815b905090506103a0526103a08051602001806101a08284600060045af1614b0d57600080fd5b505060006101a0511115614b60576101a0806020015160008251806020901315614b3657600080fd5b8091901215614b4457600080fd5b806020036101000a82049050905090501515614b5f57600080fd5b5b5b5b8151600101808352811415614981575b5050005b63524c39016000511415614c24576005543314614b9257600080fd5b61014060006004818352015b60206101e060246370a0823161016052306101805261017c6101405160048110614bc757600080fd5b600060c052602060c02001545afa614bde57600080fd5b601f3d11614beb57600080fd5b6000506101e0516101405160048110614c0357600080fd5b600160c052602060c02001555b8151600101808352811415614b9e575b5050005b63e36988536000511415614c55576005543314614c4057600080fd5b4260115411614c4e57600080fd5b6001601055005b633046f9726000511415614c78576005543314614c7157600080fd5b6000601055005b63b57a6be76000511415614cac5760043560a01c15614c9657600080fd5b6005543314614ca457600080fd5b600435600455005b63c66106576000511415614ce15760043560048110614cca57600080fd5b600060c052602060c020015460005260206000f350005b634903b0d16000511415614d165760043560048110614cff57600080fd5b600160c052602060c020015460005260206000f350005b63ddca3f436000511415614d325760025460005260206000f350005b63fee3f7f96000511415614d4e5760035460005260206000f350005b63fc6bc81a6000511415614d6a5760045460005260206000f350005b638da5cb5b6000511415614d865760055460005260206000f350005b6382c630666000511415614da25760065460005260206000f350005b635409491a6000511415614dbe5760075460005260206000f350005b63b4b577ad6000511415614dda5760085460005260206000f350005b632081066c6000511415614df65760095460005260206000f350005b63140522886000511415614e1257600a5460005260206000f350005b63405e28f86000511415614e2e57600b5460005260206000f350005b63e0a0b5866000511415614e4a57600c5460005260206000f350005b6358680d0b6000511415614e6657600d5460005260206000f350005b63e38244626000511415614e8257600e5460005260206000f350005b631ec0cdc16000511415614e9e57600f5460005260206000f350005b5b60006000fd
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b9a81e121d8c9d619682bb9ddb6823439178f2f8000000000000000000000000e9e7cea3dedca5984780bafc599bd69add087d5600000000000000000000000055d398326f99059ff775485246999027b31979550000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc30000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d00000000000000000000000083d69ef5c9837e21e2389d47d791714f5771f29b000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000003d0900000000000000000000000000000000000000000000000000000000012a05f2000000000000000000000000008650ab7e2c53e705d484c3b98be14c1ba1e8d690
-----Decoded View---------------
Arg [0] : _owner (address): 0xB9a81e121d8C9D619682bB9dDB6823439178F2f8
Arg [1] : _coins (address[4]): 0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56,0x55d398326f99059fF775485246999027B3197955,0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3,0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d
Arg [2] : _pool_token (address): 0x83D69Ef5c9837E21E2389D47d791714F5771F29b
Arg [3] : _A (uint256): 100
Arg [4] : _fee (uint256): 4000000
Arg [5] : _admin_fee (uint256): 5000000000
Arg [6] : _admin_fee_address (address): 0x8650ab7e2C53E705d484c3b98bE14C1Ba1e8D690
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 000000000000000000000000b9a81e121d8c9d619682bb9ddb6823439178f2f8
Arg [1] : 000000000000000000000000e9e7cea3dedca5984780bafc599bd69add087d56
Arg [2] : 00000000000000000000000055d398326f99059ff775485246999027b3197955
Arg [3] : 0000000000000000000000001af3f329e8be154074d8769d1ffa4ee058b1dbc3
Arg [4] : 0000000000000000000000008ac76a51cc950d9822d68b83fe1ad97b32cd580d
Arg [5] : 00000000000000000000000083d69ef5c9837e21e2389d47d791714f5771f29b
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [7] : 00000000000000000000000000000000000000000000000000000000003d0900
Arg [8] : 000000000000000000000000000000000000000000000000000000012a05f200
Arg [9] : 0000000000000000000000008650ab7e2c53e705d484c3b98be14c1ba1e8d690
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.