ERC-20
Overview
Max Total Supply
421,771.036863590846420437 eursCRV-gauge
Holders
30
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000002998722946 eursCRV-gaugeValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xdFc7AdFa...d30492aeE The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Vyper_contract
Compiler Version
vyper:0.2.8
Contract Source Code (Vyper language format)
# @version 0.2.8 """ @title Liquidity Gauge v2 @author Curve Finance @license MIT """ from vyper.interfaces import ERC20 implements: ERC20 interface CRV20: def future_epoch_time_write() -> uint256: nonpayable def rate() -> uint256: view interface Controller: def period() -> int128: view def period_write() -> int128: nonpayable def period_timestamp(p: int128) -> uint256: view def gauge_relative_weight(addr: address, time: uint256) -> uint256: view def voting_escrow() -> address: view def checkpoint(): nonpayable def checkpoint_gauge(addr: address): nonpayable interface Minter: def token() -> address: view def controller() -> address: view def minted(user: address, gauge: address) -> uint256: view interface VotingEscrow: def user_point_epoch(addr: address) -> uint256: view def user_point_history__ts(addr: address, epoch: uint256) -> uint256: view event Deposit: provider: indexed(address) value: uint256 event Withdraw: provider: indexed(address) value: uint256 event UpdateLiquidityLimit: user: address original_balance: uint256 original_supply: uint256 working_balance: uint256 working_supply: uint256 event CommitOwnership: admin: address event ApplyOwnership: admin: address event Transfer: _from: indexed(address) _to: indexed(address) _value: uint256 event Approval: _owner: indexed(address) _spender: indexed(address) _value: uint256 MAX_REWARDS: constant(uint256) = 8 TOKENLESS_PRODUCTION: constant(uint256) = 40 BOOST_WARMUP: constant(uint256) = 2 * 7 * 86400 WEEK: constant(uint256) = 604800 minter: public(address) crv_token: public(address) lp_token: public(address) controller: public(address) voting_escrow: public(address) future_epoch_time: public(uint256) balanceOf: public(HashMap[address, uint256]) totalSupply: public(uint256) allowances: HashMap[address, HashMap[address, uint256]] name: public(String[64]) symbol: public(String[32]) # caller -> recipient -> can deposit? approved_to_deposit: public(HashMap[address, HashMap[address, bool]]) working_balances: public(HashMap[address, uint256]) working_supply: public(uint256) # The goal is to be able to calculate ∫(rate * balance / totalSupply dt) from 0 till checkpoint # All values are kept in units of being multiplied by 1e18 period: public(int128) period_timestamp: public(uint256[100000000000000000000000000000]) # 1e18 * ∫(rate(t) / totalSupply(t) dt) from 0 till checkpoint integrate_inv_supply: public(uint256[100000000000000000000000000000]) # bump epoch when rate() changes # 1e18 * ∫(rate(t) / totalSupply(t) dt) from (last_action) till checkpoint integrate_inv_supply_of: public(HashMap[address, uint256]) integrate_checkpoint_of: public(HashMap[address, uint256]) # ∫(balance * rate(t) / totalSupply(t) dt) from 0 till checkpoint # Units: rate * t = already number of coins per address to issue integrate_fraction: public(HashMap[address, uint256]) inflation_rate: public(uint256) # For tracking external rewards reward_contract: public(address) reward_tokens: public(address[MAX_REWARDS]) # deposit / withdraw / claim reward_sigs: bytes32 # reward token -> integral reward_integral: public(HashMap[address, uint256]) # reward token -> claiming address -> integral reward_integral_for: public(HashMap[address, HashMap[address, uint256]]) admin: public(address) future_admin: public(address) # Can and will be a smart contract is_killed: public(bool) @external def __init__( _name: String[64], _symbol: String[32], _lp_token: address, _minter: address, _admin: address, ): """ @notice Contract constructor @param _name Token full name @param _symbol Token symbol @param _lp_token Liquidity Pool contract address @param _minter Minter contract address @param _admin Admin who can kill the gauge """ self.name = _name self.symbol = _symbol crv_token: address = Minter(_minter).token() controller: address = Minter(_minter).controller() self.lp_token = _lp_token self.minter = _minter self.admin = _admin self.crv_token = crv_token self.controller = controller self.voting_escrow = Controller(controller).voting_escrow() self.period_timestamp[0] = block.timestamp self.inflation_rate = CRV20(crv_token).rate() self.future_epoch_time = CRV20(crv_token).future_epoch_time_write() @view @external def decimals() -> uint256: """ @notice Get the number of decimals for this token @dev Implemented as a view method to reduce gas costs @return uint256 decimal places """ return 18 @view @external def integrate_checkpoint() -> uint256: return self.period_timestamp[self.period] @internal def _update_liquidity_limit(addr: address, l: uint256, L: uint256): """ @notice Calculate limits which depend on the amount of CRV token per-user. Effectively it calculates working balances to apply amplification of CRV production by CRV @param addr User address @param l User's amount of liquidity (LP tokens) @param L Total amount of liquidity (LP tokens) """ # To be called after totalSupply is updated _voting_escrow: address = self.voting_escrow voting_balance: uint256 = ERC20(_voting_escrow).balanceOf(addr) voting_total: uint256 = ERC20(_voting_escrow).totalSupply() lim: uint256 = l * TOKENLESS_PRODUCTION / 100 if (voting_total > 0) and (block.timestamp > self.period_timestamp[0] + BOOST_WARMUP): lim += L * voting_balance / voting_total * (100 - TOKENLESS_PRODUCTION) / 100 lim = min(l, lim) old_bal: uint256 = self.working_balances[addr] self.working_balances[addr] = lim _working_supply: uint256 = self.working_supply + lim - old_bal self.working_supply = _working_supply log UpdateLiquidityLimit(addr, l, L, lim, _working_supply) @internal def _checkpoint_rewards(_addr: address, _total_supply: uint256): """ @notice Claim pending rewards and checkpoint rewards for a user """ if _total_supply == 0: return balances: uint256[MAX_REWARDS] = empty(uint256[MAX_REWARDS]) reward_tokens: address[MAX_REWARDS] = empty(address[MAX_REWARDS]) for i in range(MAX_REWARDS): token: address = self.reward_tokens[i] if token == ZERO_ADDRESS: break reward_tokens[i] = token balances[i] = ERC20(token).balanceOf(self) # claim from reward contract raw_call(self.reward_contract, slice(self.reward_sigs, 8, 4)) # dev: bad claim sig for i in range(MAX_REWARDS): token: address = reward_tokens[i] if token == ZERO_ADDRESS: break dI: uint256 = 10**18 * (ERC20(token).balanceOf(self) - balances[i]) / _total_supply if _addr == ZERO_ADDRESS: if dI != 0: self.reward_integral[token] += dI continue integral: uint256 = self.reward_integral[token] + dI if dI != 0: self.reward_integral[token] = integral integral_for: uint256 = self.reward_integral_for[token][_addr] if integral_for < integral: claimable: uint256 = self.balanceOf[_addr] * (integral - integral_for) / 10**18 self.reward_integral_for[token][_addr] = integral assert ERC20(token).transfer(_addr, claimable) @internal def _checkpoint(addr: address): """ @notice Checkpoint for a user @param addr User address """ _period: int128 = self.period _period_time: uint256 = self.period_timestamp[_period] _integrate_inv_supply: uint256 = self.integrate_inv_supply[_period] rate: uint256 = self.inflation_rate new_rate: uint256 = rate prev_future_epoch: uint256 = self.future_epoch_time if prev_future_epoch >= _period_time: _token: address = self.crv_token self.future_epoch_time = CRV20(_token).future_epoch_time_write() new_rate = CRV20(_token).rate() self.inflation_rate = new_rate if self.is_killed: # Stop distributing inflation as soon as killed rate = 0 # Update integral of 1/supply if block.timestamp > _period_time: _working_supply: uint256 = self.working_supply _controller: address = self.controller Controller(_controller).checkpoint_gauge(self) prev_week_time: uint256 = _period_time week_time: uint256 = min((_period_time + WEEK) / WEEK * WEEK, block.timestamp) for i in range(500): dt: uint256 = week_time - prev_week_time w: uint256 = Controller(_controller).gauge_relative_weight(self, prev_week_time / WEEK * WEEK) if _working_supply > 0: if prev_future_epoch >= prev_week_time and prev_future_epoch < week_time: # If we went across one or multiple epochs, apply the rate # of the first epoch until it ends, and then the rate of # the last epoch. # If more than one epoch is crossed - the gauge gets less, # but that'd meen it wasn't called for more than 1 year _integrate_inv_supply += rate * w * (prev_future_epoch - prev_week_time) / _working_supply rate = new_rate _integrate_inv_supply += rate * w * (week_time - prev_future_epoch) / _working_supply else: _integrate_inv_supply += rate * w * dt / _working_supply # On precisions of the calculation # rate ~= 10e18 # last_weight > 0.01 * 1e18 = 1e16 (if pool weight is 1%) # _working_supply ~= TVL * 1e18 ~= 1e26 ($100M for example) # The largest loss is at dt = 1 # Loss is 1e-9 - acceptable if week_time == block.timestamp: break prev_week_time = week_time week_time = min(week_time + WEEK, block.timestamp) _period += 1 self.period = _period self.period_timestamp[_period] = block.timestamp self.integrate_inv_supply[_period] = _integrate_inv_supply # Update user-specific integrals _working_balance: uint256 = self.working_balances[addr] self.integrate_fraction[addr] += _working_balance * (_integrate_inv_supply - self.integrate_inv_supply_of[addr]) / 10 ** 18 self.integrate_inv_supply_of[addr] = _integrate_inv_supply self.integrate_checkpoint_of[addr] = block.timestamp @external def user_checkpoint(addr: address) -> bool: """ @notice Record a checkpoint for `addr` @param addr User address @return bool success """ assert (msg.sender == addr) or (msg.sender == self.minter) # dev: unauthorized self._checkpoint(addr) self._update_liquidity_limit(addr, self.balanceOf[addr], self.totalSupply) return True @external def claimable_tokens(addr: address) -> uint256: """ @notice Get the number of claimable tokens per user @dev This function should be manually changed to "view" in the ABI @return uint256 number of claimable tokens per user """ self._checkpoint(addr) return self.integrate_fraction[addr] - Minter(self.minter).minted(addr, self) @external @nonreentrant('lock') def claimable_reward(_addr: address, _token: address) -> uint256: """ @notice Get the number of claimable reward tokens for a user @dev This function should be manually changed to "view" in the ABI Calling it via a transaction will claim available reward tokens @param _addr Account to get reward amount for @param _token Token to get reward amount for @return uint256 Claimable reward token amount """ claimable: uint256 = ERC20(_token).balanceOf(_addr) if self.reward_contract != ZERO_ADDRESS: self._checkpoint_rewards(_addr, self.totalSupply) claimable = ERC20(_token).balanceOf(_addr) - claimable integral: uint256 = self.reward_integral[_token] integral_for: uint256 = self.reward_integral_for[_token][_addr] if integral_for < integral: claimable += self.balanceOf[_addr] * (integral - integral_for) / 10**18 return claimable @external @nonreentrant('lock') def claim_rewards(_addr: address = msg.sender): """ @notice Claim available reward tokens for `_addr` @param _addr Address to claim for """ self._checkpoint_rewards(_addr, self.totalSupply) @external @nonreentrant('lock') def claim_historic_rewards(_reward_tokens: address[MAX_REWARDS], _addr: address = msg.sender): """ @notice Claim reward tokens available from a previously-set staking contract @param _reward_tokens Array of reward token addresses to claim @param _addr Address to claim for """ for token in _reward_tokens: if token == ZERO_ADDRESS: break integral: uint256 = self.reward_integral[token] integral_for: uint256 = self.reward_integral_for[token][_addr] if integral_for < integral: claimable: uint256 = self.balanceOf[_addr] * (integral - integral_for) / 10**18 self.reward_integral_for[token][_addr] = integral assert ERC20(token).transfer(_addr, claimable) @external def kick(addr: address): """ @notice Kick `addr` for abusing their boost @dev Only if either they had another voting event, or their voting escrow lock expired @param addr Address to kick """ _voting_escrow: address = self.voting_escrow t_last: uint256 = self.integrate_checkpoint_of[addr] t_ve: uint256 = VotingEscrow(_voting_escrow).user_point_history__ts( addr, VotingEscrow(_voting_escrow).user_point_epoch(addr) ) _balance: uint256 = self.balanceOf[addr] assert ERC20(self.voting_escrow).balanceOf(addr) == 0 or t_ve > t_last # dev: kick not allowed assert self.working_balances[addr] > _balance * TOKENLESS_PRODUCTION / 100 # dev: kick not needed self._checkpoint(addr) self._update_liquidity_limit(addr, self.balanceOf[addr], self.totalSupply) @external def set_approve_deposit(addr: address, can_deposit: bool): """ @notice Set whether `addr` can deposit tokens for `msg.sender` @param addr Address to set approval on @param can_deposit bool - can this account deposit for `msg.sender`? """ self.approved_to_deposit[addr][msg.sender] = can_deposit @external @nonreentrant('lock') def deposit(_value: uint256, _addr: address = msg.sender): """ @notice Deposit `_value` LP tokens @dev Depositting also claims pending reward tokens @param _value Number of tokens to deposit @param _addr Address to deposit for """ if _addr != msg.sender: assert self.approved_to_deposit[msg.sender][_addr], "Not approved" self._checkpoint(_addr) if _value != 0: reward_contract: address = self.reward_contract total_supply: uint256 = self.totalSupply if reward_contract != ZERO_ADDRESS: self._checkpoint_rewards(_addr, total_supply) total_supply += _value new_balance: uint256 = self.balanceOf[_addr] + _value self.balanceOf[_addr] = new_balance self.totalSupply = total_supply self._update_liquidity_limit(_addr, new_balance, total_supply) ERC20(self.lp_token).transferFrom(msg.sender, self, _value) if reward_contract != ZERO_ADDRESS: deposit_sig: Bytes[4] = slice(self.reward_sigs, 0, 4) if convert(deposit_sig, uint256) != 0: raw_call( reward_contract, concat(deposit_sig, convert(_value, bytes32)) ) log Deposit(_addr, _value) log Transfer(ZERO_ADDRESS, _addr, _value) @external @nonreentrant('lock') def withdraw(_value: uint256): """ @notice Withdraw `_value` LP tokens @dev Withdrawing also claims pending reward tokens @param _value Number of tokens to withdraw """ self._checkpoint(msg.sender) if _value != 0: reward_contract: address = self.reward_contract total_supply: uint256 = self.totalSupply if reward_contract != ZERO_ADDRESS: self._checkpoint_rewards(msg.sender, total_supply) total_supply -= _value new_balance: uint256 = self.balanceOf[msg.sender] - _value self.balanceOf[msg.sender] = new_balance self.totalSupply = total_supply self._update_liquidity_limit(msg.sender, new_balance, total_supply) if reward_contract != ZERO_ADDRESS: withdraw_sig: Bytes[4] = slice(self.reward_sigs, 4, 4) if convert(withdraw_sig, uint256) != 0: raw_call( reward_contract, concat(withdraw_sig, convert(_value, bytes32)) ) ERC20(self.lp_token).transfer(msg.sender, _value) log Withdraw(msg.sender, _value) log Transfer(msg.sender, ZERO_ADDRESS, _value) @view @external def allowance(_owner : address, _spender : address) -> uint256: """ @notice Check the amount of tokens that an owner allowed to a spender @param _owner The address which owns the funds @param _spender The address which will spend the funds @return uint256 Amount of tokens still available for the spender """ return self.allowances[_owner][_spender] @internal def _transfer(_from: address, _to: address, _value: uint256): self._checkpoint(_from) self._checkpoint(_to) reward_contract: address = self.reward_contract if _value != 0: total_supply: uint256 = self.totalSupply if reward_contract != ZERO_ADDRESS: self._checkpoint_rewards(_from, total_supply) new_balance: uint256 = self.balanceOf[_from] - _value self.balanceOf[_from] = new_balance self._update_liquidity_limit(_from, new_balance, total_supply) if reward_contract != ZERO_ADDRESS: self._checkpoint_rewards(_to, total_supply) new_balance = self.balanceOf[_to] + _value self.balanceOf[_to] = new_balance self._update_liquidity_limit(_to, new_balance, total_supply) log Transfer(_from, _to, _value) @external @nonreentrant('lock') def transfer(_to : address, _value : uint256) -> bool: """ @notice Transfer token for a specified address @dev Transferring claims pending reward tokens for the sender and receiver @param _to The address to transfer to. @param _value The amount to be transferred. """ self._transfer(msg.sender, _to, _value) return True @external @nonreentrant('lock') def transferFrom(_from : address, _to : address, _value : uint256) -> bool: """ @notice Transfer tokens from one address to another. @dev Transferring claims pending reward tokens for the sender and receiver @param _from address The address which you want to send tokens from @param _to address The address which you want to transfer to @param _value uint256 the amount of tokens to be transferred """ _allowance: uint256 = self.allowances[_from][msg.sender] if _allowance != MAX_UINT256: self.allowances[_from][msg.sender] = _allowance - _value self._transfer(_from, _to, _value) return True @external def approve(_spender : address, _value : uint256) -> bool: """ @notice Approve the passed address to transfer the specified amount of tokens on behalf of msg.sender @dev Beware that changing an allowance via this method brings the risk that someone may use both the old and new allowance by unfortunate transaction ordering. This may be mitigated with the use of {incraseAllowance} and {decreaseAllowance}. https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 @param _spender The address which will transfer the funds @param _value The amount of tokens that may be transferred @return bool success """ self.allowances[msg.sender][_spender] = _value log Approval(msg.sender, _spender, _value) return True @external def increaseAllowance(_spender: address, _added_value: uint256) -> bool: """ @notice Increase the allowance granted to `_spender` by the caller @dev This is alternative to {approve} that can be used as a mitigation for the potential race condition @param _spender The address which will transfer the funds @param _added_value The amount of to increase the allowance @return bool success """ allowance: uint256 = self.allowances[msg.sender][_spender] + _added_value self.allowances[msg.sender][_spender] = allowance log Approval(msg.sender, _spender, allowance) return True @external def decreaseAllowance(_spender: address, _subtracted_value: uint256) -> bool: """ @notice Decrease the allowance granted to `_spender` by the caller @dev This is alternative to {approve} that can be used as a mitigation for the potential race condition @param _spender The address which will transfer the funds @param _subtracted_value The amount of to decrease the allowance @return bool success """ allowance: uint256 = self.allowances[msg.sender][_spender] - _subtracted_value self.allowances[msg.sender][_spender] = allowance log Approval(msg.sender, _spender, allowance) return True @external @nonreentrant('lock') def set_rewards(_reward_contract: address, _sigs: bytes32, _reward_tokens: address[MAX_REWARDS]): """ @notice Set the active reward contract @dev A reward contract cannot be set while this contract has no deposits @param _reward_contract Reward contract address. Set to ZERO_ADDRESS to disable staking. @param _sigs Four byte selectors for staking, withdrawing and claiming, right padded with zero bytes. If the reward contract can be claimed from but does not require staking, the staking and withdraw selectors should be set to 0x00 @param _reward_tokens List of claimable tokens for this reward contract """ assert msg.sender == self.admin lp_token: address = self.lp_token current_reward_contract: address = self.reward_contract total_supply: uint256 = self.totalSupply if current_reward_contract != ZERO_ADDRESS: self._checkpoint_rewards(ZERO_ADDRESS, total_supply) withdraw_sig: Bytes[4] = slice(self.reward_sigs, 4, 4) if convert(withdraw_sig, uint256) != 0: if total_supply != 0: raw_call( current_reward_contract, concat(withdraw_sig, convert(total_supply, bytes32)) ) ERC20(lp_token).approve(current_reward_contract, 0) if _reward_contract != ZERO_ADDRESS: assert _reward_contract.is_contract # dev: not a contract sigs: bytes32 = _sigs deposit_sig: Bytes[4] = slice(sigs, 0, 4) withdraw_sig: Bytes[4] = slice(sigs, 4, 4) if convert(deposit_sig, uint256) != 0: # need a non-zero total supply to verify the sigs assert total_supply != 0 # dev: zero total supply ERC20(lp_token).approve(_reward_contract, MAX_UINT256) # it would be Very Bad if we get the signatures wrong here, so # we do a test deposit and withdrawal prior to setting them raw_call( _reward_contract, concat(deposit_sig, convert(total_supply, bytes32)) ) # dev: failed deposit assert ERC20(lp_token).balanceOf(self) == 0 raw_call( _reward_contract, concat(withdraw_sig, convert(total_supply, bytes32)) ) # dev: failed withdraw assert ERC20(lp_token).balanceOf(self) == total_supply # deposit and withdraw are good, time to make the actual deposit raw_call( _reward_contract, concat(deposit_sig, convert(total_supply, bytes32)) ) else: assert convert(withdraw_sig, uint256) == 0 # dev: withdraw without deposit self.reward_contract = _reward_contract self.reward_sigs = _sigs for i in range(MAX_REWARDS): if _reward_tokens[i] != ZERO_ADDRESS: self.reward_tokens[i] = _reward_tokens[i] elif self.reward_tokens[i] != ZERO_ADDRESS: self.reward_tokens[i] = ZERO_ADDRESS else: assert i != 0 # dev: no reward token break if _reward_contract != ZERO_ADDRESS: # do an initial checkpoint to verify that claims are working self._checkpoint_rewards(ZERO_ADDRESS, total_supply) @external def set_killed(_is_killed: bool): """ @notice Set the killed status for this contract @dev When killed, the gauge always yields a rate of 0 and so cannot mint CRV @param _is_killed Killed status to set """ assert msg.sender == self.admin self.is_killed = _is_killed @external def commit_transfer_ownership(addr: address): """ @notice Transfer ownership of GaugeController to `addr` @param addr Address to have ownership transferred to """ assert msg.sender == self.admin # dev: admin only self.future_admin = addr log CommitOwnership(addr) @external def accept_transfer_ownership(): """ @notice Accept a pending ownership transfer """ _admin: address = self.future_admin assert msg.sender == _admin # dev: future admin only self.admin = _admin log ApplyOwnership(_admin)
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"name":"Deposit","inputs":[{"type":"address","name":"provider","indexed":true},{"type":"uint256","name":"value","indexed":false}],"anonymous":false,"type":"event"},{"name":"Withdraw","inputs":[{"type":"address","name":"provider","indexed":true},{"type":"uint256","name":"value","indexed":false}],"anonymous":false,"type":"event"},{"name":"UpdateLiquidityLimit","inputs":[{"type":"address","name":"user","indexed":false},{"type":"uint256","name":"original_balance","indexed":false},{"type":"uint256","name":"original_supply","indexed":false},{"type":"uint256","name":"working_balance","indexed":false},{"type":"uint256","name":"working_supply","indexed":false}],"anonymous":false,"type":"event"},{"name":"CommitOwnership","inputs":[{"type":"address","name":"admin","indexed":false}],"anonymous":false,"type":"event"},{"name":"ApplyOwnership","inputs":[{"type":"address","name":"admin","indexed":false}],"anonymous":false,"type":"event"},{"name":"Transfer","inputs":[{"type":"address","name":"_from","indexed":true},{"type":"address","name":"_to","indexed":true},{"type":"uint256","name":"_value","indexed":false}],"anonymous":false,"type":"event"},{"name":"Approval","inputs":[{"type":"address","name":"_owner","indexed":true},{"type":"address","name":"_spender","indexed":true},{"type":"uint256","name":"_value","indexed":false}],"anonymous":false,"type":"event"},{"outputs":[],"inputs":[{"type":"string","name":"_name"},{"type":"string","name":"_symbol"},{"type":"address","name":"_lp_token"},{"type":"address","name":"_minter"},{"type":"address","name":"_admin"}],"stateMutability":"nonpayable","type":"constructor"},{"name":"decimals","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":261},{"name":"integrate_checkpoint","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1997},{"name":"user_checkpoint","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"addr"}],"stateMutability":"nonpayable","type":"function","gas":2070619},{"name":"claimable_tokens","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"addr"}],"stateMutability":"nonpayable","type":"function","gas":1989830},{"name":"claimable_reward","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"_addr"},{"type":"address","name":"_token"}],"stateMutability":"nonpayable","type":"function","gas":999922},{"name":"claim_rewards","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function"},{"name":"claim_rewards","outputs":[],"inputs":[{"type":"address","name":"_addr"}],"stateMutability":"nonpayable","type":"function"},{"name":"claim_historic_rewards","outputs":[],"inputs":[{"type":"address[8]","name":"_reward_tokens"}],"stateMutability":"nonpayable","type":"function"},{"name":"claim_historic_rewards","outputs":[],"inputs":[{"type":"address[8]","name":"_reward_tokens"},{"type":"address","name":"_addr"}],"stateMutability":"nonpayable","type":"function"},{"name":"kick","outputs":[],"inputs":[{"type":"address","name":"addr"}],"stateMutability":"nonpayable","type":"function","gas":2075807},{"name":"set_approve_deposit","outputs":[],"inputs":[{"type":"address","name":"addr"},{"type":"bool","name":"can_deposit"}],"stateMutability":"nonpayable","type":"function","gas":35981},{"name":"deposit","outputs":[],"inputs":[{"type":"uint256","name":"_value"}],"stateMutability":"nonpayable","type":"function"},{"name":"deposit","outputs":[],"inputs":[{"type":"uint256","name":"_value"},{"type":"address","name":"_addr"}],"stateMutability":"nonpayable","type":"function"},{"name":"withdraw","outputs":[],"inputs":[{"type":"uint256","name":"_value"}],"stateMutability":"nonpayable","type":"function","gas":3125023},{"name":"allowance","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"_owner"},{"type":"address","name":"_spender"}],"stateMutability":"view","type":"function","gas":1911},{"name":"transfer","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"_to"},{"type":"uint256","name":"_value"}],"stateMutability":"nonpayable","type":"function","gas":12092388},{"name":"transferFrom","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"_from"},{"type":"address","name":"_to"},{"type":"uint256","name":"_value"}],"stateMutability":"nonpayable","type":"function","gas":12129038},{"name":"approve","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"_spender"},{"type":"uint256","name":"_value"}],"stateMutability":"nonpayable","type":"function","gas":38244},{"name":"increaseAllowance","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"_spender"},{"type":"uint256","name":"_added_value"}],"stateMutability":"nonpayable","type":"function","gas":39488},{"name":"decreaseAllowance","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"_spender"},{"type":"uint256","name":"_subtracted_value"}],"stateMutability":"nonpayable","type":"function","gas":39512},{"name":"set_rewards","outputs":[],"inputs":[{"type":"address","name":"_reward_contract"},{"type":"bytes32","name":"_sigs"},{"type":"address[8]","name":"_reward_tokens"}],"stateMutability":"nonpayable","type":"function","gas":2268178},{"name":"set_killed","outputs":[],"inputs":[{"type":"bool","name":"_is_killed"}],"stateMutability":"nonpayable","type":"function","gas":36878},{"name":"commit_transfer_ownership","outputs":[],"inputs":[{"type":"address","name":"addr"}],"stateMutability":"nonpayable","type":"function","gas":38258},{"name":"accept_transfer_ownership","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":38203},{"name":"minter","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1811},{"name":"crv_token","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1841},{"name":"lp_token","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1871},{"name":"controller","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1901},{"name":"voting_escrow","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1931},{"name":"future_epoch_time","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1961},{"name":"balanceOf","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"arg0"}],"stateMutability":"view","type":"function","gas":2206},{"name":"totalSupply","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2021},{"name":"name","outputs":[{"type":"string","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":8453},{"name":"symbol","outputs":[{"type":"string","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":7506},{"name":"approved_to_deposit","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"arg0"},{"type":"address","name":"arg1"}],"stateMutability":"view","type":"function","gas":2541},{"name":"working_balances","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"arg0"}],"stateMutability":"view","type":"function","gas":2356},{"name":"working_supply","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2171},{"name":"period","outputs":[{"type":"int128","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2201},{"name":"period_timestamp","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"arg0"}],"stateMutability":"view","type":"function","gas":2340},{"name":"integrate_inv_supply","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"arg0"}],"stateMutability":"view","type":"function","gas":2370},{"name":"integrate_inv_supply_of","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"arg0"}],"stateMutability":"view","type":"function","gas":2506},{"name":"integrate_checkpoint_of","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"arg0"}],"stateMutability":"view","type":"function","gas":2536},{"name":"integrate_fraction","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"arg0"}],"stateMutability":"view","type":"function","gas":2566},{"name":"inflation_rate","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2381},{"name":"reward_contract","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2411},{"name":"reward_tokens","outputs":[{"type":"address","name":""}],"inputs":[{"type":"uint256","name":"arg0"}],"stateMutability":"view","type":"function","gas":2550},{"name":"reward_integral","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"arg0"}],"stateMutability":"view","type":"function","gas":2686},{"name":"reward_integral_for","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"arg0"},{"type":"address","name":"arg1"}],"stateMutability":"view","type":"function","gas":2931},{"name":"admin","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2531},{"name":"future_admin","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2561},{"name":"is_killed","outputs":[{"type":"bool","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2591}]
Contract Creation Code
60a061345d610140396060602061345d60c03960c05161345d016101e0396040602061345d60c03960c05160040135111561003957600080fd5b60406020602061345d0160c03960c05161345d016102603960206020602061345d0160c03960c05160040135111561007057600080fd5b6020604061345d0160c03960c05160a01c1561008b57600080fd5b6020606061345d0160c03960c05160a01c156100a657600080fd5b6020608061345d0160c03960c05160a01c156100c157600080fd5b6101e080600960c052602060c020602082510161012060006003818352015b826101205160200211156100f357610115565b61012051602002850151610120518501555b81516001018083528114156100e0575b50505050505061026080600a60c052602060c020602082510161012060006002818352015b8261012051602002111561014d5761016f565b61012051602002850151610120518501555b815160010180835281141561013a575b5050505050506020610340600463fc0c546a6102e0526102fc6101a0515afa61019757600080fd5b601f3d116101a457600080fd5b600050610340516102c0526020610360600463f77c47916103005261031c6101a0515afa6101d157600080fd5b601f3d116101de57600080fd5b600050610360516102e052610180516002556101a0516000556101c051601a556102c0516001556102e0516003556020610360600463dfe050316103005261031c6102e0515afa61022e57600080fd5b601f3d1161023b57600080fd5b6000506103605160045542600f60c052602060c0205560206103606004632c4e722e6103005261031c6102c0515afa61027357600080fd5b601f3d1161028057600080fd5b600050610360516014556020610360600463b26b238e6103005261031c60006102c0515af16102ae57600080fd5b601f3d116102bb57600080fd5b6000506103605160055561344556341561000a57600080fd5b600436101561001857613175565b600035601c5263313ce567600051141561003957601260005260206000f350005b63d31f3f6d600051141561007a57600e546c01431e0fae6d7217caa0000000811061006357600080fd5b600f60c052602060c020015460005260206000f350005b6000156102e1575b6101a0526101405261016052610180526004546101c052602061028060246370a0823161020052610140516102205261021c6101c0515afa6100c357600080fd5b601f3d116100d057600080fd5b600050610280516101e052602061028060046318160ddd6102205261023c6101c0515afa6100fd57600080fd5b601f3d1161010a57600080fd5b6000506102805161020052610160516028808202821582848304141761012f57600080fd5b8090509050905060648082049050905061022052600061020051111561017b57600f60c052602060c020546212750081818301101561016d57600080fd5b80820190509050421161017e565b60005b15610200576102208051610180516101e05180820282158284830414176101a457600080fd5b809050905090506102005180806101ba57600080fd5b820490509050603c80820282158284830414176101d657600080fd5b809050905090506064808204905090508181830110156101f557600080fd5b808201905090508152505b6101605161022051808211156102165780610218565b815b9050905061022052600c6101405160e05260c052604060c020546102405261022051600c6101405160e05260c052604060c02055600d546102205181818301101561026257600080fd5b80820190509050610240518082101561027a57600080fd5b808203905090506102605261026051600d556101405161028052610160516102a052610180516102c052610220516102e05261026051610300527f7ecd84343f76a23d2227290e0288da3251b045541698e575a5515af4f04197a360a0610280a16101a051565b600015610715575b6101805261014052610160526101605115156103055761018051565b610200366101a0376103a060006008818352015b6103a0516008811061032a57600080fd5b601660c052602060c02001546103c0526103c0511515610349576103cb565b6103c0516102a06103a0516008811061036157600080fd5b6020020152602061046060246370a082316103e05230610400526103fc6103c0515afa61038d57600080fd5b601f3d1161039a57600080fd5b600050610460516101a06103a051600881106103b557600080fd5b60200201525b8151600101808352811415610319575b505060086004602082066103a001602082840111156103e957600080fd5b60176103c06020840161012060006001818352015b8261012051602002111561041157610433565b61012051850154610120516020028501525b81516001018083528114156103fe575b5050505050818152809050905090508051602001806104208284600060045af161045c57600080fd5b5050600060006104205161044060006015545af161047957600080fd5b6103a060006008818352015b6102a06103a0516008811061049957600080fd5b60200201516103c0526103c05115156104b15761070d565b670de0b6b3a7640000602061048060246370a0823161040052306104205261041c6103c0515afa6104e157600080fd5b601f3d116104ee57600080fd5b600050610480516101a06103a0516008811061050957600080fd5b60200201518082101561051b57600080fd5b80820390509050808202821582848304141761053657600080fd5b8090509050905061016051808061054c57600080fd5b8204905090506103e0526101405115156105a25760006103e051181561059d5760186103c05160e05260c052604060c02080546103e05181818301101561059257600080fd5b808201905090508155505b6106fd565b60186103c05160e05260c052604060c020546103e0518181830110156105c757600080fd5b808201905090506104005260006103e05118156105f5576104005160186103c05160e05260c052604060c020555b60196103c05160e05260c052604060c0206101405160e05260c052604060c0205461042052610400516104205110156106fc5760066101405160e05260c052604060c0205461040051610420518082101561064f57600080fd5b80820390509050808202821582848304141761066a57600080fd5b80905090509050670de0b6b3a764000080820490509050610440526104005160196103c05160e05260c052604060c0206101405160e05260c052604060c020556020610500604463a9059cbb610460526101405161048052610440516104a05261047c60006103c0515af16106de57600080fd5b601f3d116106eb57600080fd5b600050610500516106fb57600080fd5b5b5b8151600101808352811415610485575b505061018051565b600015610d1b575b6101605261014052600e5461018052610180516c01431e0fae6d7217caa0000000811061074957600080fd5b600f60c052602060c02001546101a052610180516c01431e0fae6d7217caa0000000811061077657600080fd5b601060c052602060c02001546101c0526014546101e0526101e05161020052600554610220526101a0516102205110151561082f576001546102405260206102c0600463b26b238e6102605261027c6000610240515af16107d657600080fd5b601f3d116107e357600080fd5b6000506102c05160055560206102c06004632c4e722e6102605261027c610240515afa61080f57600080fd5b601f3d1161081c57600080fd5b6000506102c05161020052610200516014555b601c541561083e5760006101e0525b6101a051421115610bc657600d546102405260035461026052610260513b61086557600080fd5b60006000602463615e523761028052306102a05261029c6000610260515af161088d57600080fd5b6101a051610280526101a05162093a808181830110156108ac57600080fd5b8082019050905062093a808082049050905062093a8080820282158284830414176108d657600080fd5b8090509050905042808211156108ec57806108ee565b815b905090506102a0526102c060006101f4818352015b6102a051610280518082101561091857600080fd5b808203905090506102e05260206103c0604463d3078c946103205230610340526102805162093a808082049050905062093a80808202821582848304141761095f57600080fd5b809050905090506103605261033c610260515afa61097c57600080fd5b601f3d1161098957600080fd5b6000506103c051610300526000610240511115610b635761028051610220511015156109bd576102a05161022051106109c0565b60005b15610aec576101c080516101e0516103005180820282158284830414176109e657600080fd5b80905090509050610220516102805180821015610a0257600080fd5b808203905090508082028215828483041417610a1d57600080fd5b80905090509050610240518080610a3357600080fd5b820490509050818183011015610a4857600080fd5b80820190509050815250610200516101e0526101c080516101e051610300518082028215828483041417610a7b57600080fd5b809050905090506102a0516102205180821015610a9757600080fd5b808203905090508082028215828483041417610ab257600080fd5b80905090509050610240518080610ac857600080fd5b820490509050818183011015610add57600080fd5b80820190509050815250610b62565b6101c080516101e051610300518082028215828483041417610b0d57600080fd5b809050905090506102e0518082028215828483041417610b2c57600080fd5b80905090509050610240518080610b4257600080fd5b820490509050818183011015610b5757600080fd5b808201905090508152505b5b426102a0511415610b7357610bc3565b6102a051610280526102a05162093a80818183011015610b9257600080fd5b808201905090504280821115610ba85780610baa565b815b905090506102a0525b8151600101808352811415610903575b50505b6101808051600180820180806000811215610bdd57195b607f1c15610bea57600080fd5b90509050905081525061018051600e5542610180516c01431e0fae6d7217caa00000008110610c1857600080fd5b600f60c052602060c02001556101c051610180516c01431e0fae6d7217caa00000008110610c4557600080fd5b601060c052602060c0200155600c6101405160e05260c052604060c020546102405260136101405160e05260c052604060c0208054610240516101c05160116101405160e05260c052604060c0205480821015610ca157600080fd5b808203905090508082028215828483041417610cbc57600080fd5b80905090509050670de0b6b3a764000080820490509050818183011015610ce257600080fd5b808201905090508155506101c05160116101405160e05260c052604060c020554260126101405160e05260c052604060c0205561016051565b634b8200936000511415610db95760043560a01c15610d3957600080fd5b600435331415610d4a576001610d50565b60005433145b5b610d5a57600080fd5b60043561014052610140516006580161071d565b60005060043561014052600660043560e05260c052604060c02054610160526007546101805261018051610160516101405160065801610082565b600050600160005260206000f350005b63331345836000511415610e5f5760043560a01c15610dd757600080fd5b60043561014052610140516006580161071d565b600050601360043560e05260c052604060c0205460206101e06044638b752bb06101405260043561016052306101805261015c6000545afa610e2c57600080fd5b601f3d11610e3957600080fd5b6000506101e05180821015610e4d57600080fd5b8082039050905060005260206000f350005b6333fd6f74600051141561104b5762ffffff5415610e7c57600080fd5b600162ffffff5560043560a01c15610e9357600080fd5b60243560a01c15610ea357600080fd5b60206101e060246370a08231610160526004356101805261017c6024355afa610ecb57600080fd5b601f3d11610ed857600080fd5b6000506101e0516101405260006015541815610f19576101405160043561016052600754610180526101805161016051600658016102e9565b610140526000505b60206101e060246370a08231610160526004356101805261017c6024355afa610f4157600080fd5b601f3d11610f4e57600080fd5b6000506101e0516101405180821015610f6657600080fd5b8082039050905061014052601860243560e05260c052604060c0205461016052601960243560e05260c052604060c02060043560e05260c052604060c02054610180526101605161018051101561102e576101408051600660043560e05260c052604060c02054610160516101805180821015610fe257600080fd5b808203905090508082028215828483041417610ffd57600080fd5b80905090509050670de0b6b3a76400008082049050905081818301101561102357600080fd5b808201905090508152505b61014051600052600062ffffff5560206000f350600062ffffff55005b63e6f1daf26000511415611063573361014052611099565b6384e9bd7e60005114156110915760043560a01c1561108157600080fd5b6020600461014037600050611099565b6000156110e3575b62ffffff54156110a857600080fd5b600162ffffff55610140516101405161016052600754610180526101805161016051600658016102e9565b61014052600050600062ffffff55005b63b9fa7a6960005114156110fb573361014052611133565b637a22ef67600051141561112b576101043560a01c1561111a57600080fd5b602061010461014037600050611133565b6000156112e5575b62ffffff541561114257600080fd5b600162ffffff556000610120525b610120516004013560a01c1561116557600080fd5b602061012051016101205261010061012051101561118257611150565b61018060006008818352015b6020610180510260040135610160526101605115156111ac576112da565b60186101605160e05260c052604060c020546101a05260196101605160e05260c052604060c0206101405160e05260c052604060c020546101c0526101a0516101c05110156112c95760066101405160e05260c052604060c020546101a0516101c0518082101561121c57600080fd5b80820390509050808202821582848304141761123757600080fd5b80905090509050670de0b6b3a7640000808204905090506101e0526101a05160196101605160e05260c052604060c0206101405160e05260c052604060c0205560206102a0604463a9059cbb6102005261014051610220526101e0516102405261021c6000610160515af16112ab57600080fd5b601f3d116112b857600080fd5b6000506102a0516112c857600080fd5b5b5b815160010180835281141561118e575b5050600062ffffff55005b6396c5517560005114156114ec5760043560a01c1561130357600080fd5b60045461014052601260043560e05260c052604060c020546101605260206102e0604463da020a1861024052600435610260526020610220602463010ae7576101a0526004356101c0526101bc610140515afa61135f57600080fd5b601f3d1161136c57600080fd5b600050610220516102805261025c610140515afa61138957600080fd5b601f3d1161139657600080fd5b6000506102e05161018052600660043560e05260c052604060c020546101a05260206102e060246370a08231610260526004356102805261027c6004545afa6113de57600080fd5b601f3d116113eb57600080fd5b6000506102e05115156113ff576001611409565b6101605161018051115b5b61141357600080fd5b6101a0516028808202821582848304141761142d57600080fd5b80905090509050606480820490509050600c60043560e05260c052604060c020541161145857600080fd5b6101405161016051610180516101a0516004356101c0526101c0516006580161071d565b6101a0526101805261016052610140526000506101405161016051610180516101a0516004356101c052600660043560e05260c052604060c020546101e05260075461020052610200516101e0516101c05160065801610082565b6101a052610180526101605261014052600050005b631d2747d4600051141561153c5760043560a01c1561150a57600080fd5b60243560011c1561151a57600080fd5b602435600b60043560e05260c052604060c0203360e05260c052604060c02055005b63b6b55f25600051141561155457336101405261158a565b636e553f6560005114156115825760243560a01c1561157257600080fd5b602060246101403760005061158a565b600015611964575b62ffffff541561159957600080fd5b600162ffffff553361014051181561161557600b3360e05260c052604060c0206101405160e05260c052604060c020541515611614576308c379a061016052602061018052600c6101a0527f4e6f7420617070726f76656400000000000000000000000000000000000000006101c0526101a050606461017cfd5b5b610140516101405161016052610160516006580161071d565b61014052600050600060043518156118f5576015546101605260075461018052600061016051181561169757610140516101605161018051610140516101a052610180516101c0526101c0516101a051600658016102e9565b6101805261016052610140526000505b61018080516004358181830110156116ae57600080fd5b8082019050905081525060066101405160e05260c052604060c020546004358181830110156116dc57600080fd5b808201905090506101a0526101a05160066101405160e05260c052604060c02055610180516007556101405161016051610180516101a051610140516101c0526101a0516101e0526101805161020052610200516101e0516101c05160065801610082565b6101a052610180526101605261014052600050602061028060646323b872dd6101c052336101e0523061020052600435610220526101dc60006002545af161178857600080fd5b601f3d1161179557600080fd5b6000506102805060006101605118156118f457600060046020820661022001602082840111156117c457600080fd5b60176102406020840161012060006001818352015b826101205160200211156117ec5761180e565b61012051850154610120516020028501525b81516001018083528114156117d9575b5050505050818152809050905090508051602001806101c08284600060045af161183757600080fd5b505060006101c080602001516000825180602090131561185657600080fd5b809190121561186457600080fd5b806020036101000a820490509050905018156118f35760006101c060048060208461022001018260208501600060045af1505080518201915050600435602082610220010152602081019050806102205261022090508051602001806102a08284600060045af16118d457600080fd5b5050600060006102a0516102c06000610160515af16118f257600080fd5b5b5b5b60043561016052610140517fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c6020610160a2600435610160526101405160007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610160a3600062ffffff55005b632e1a7d4d6000511415611ca15762ffffff541561198157600080fd5b600162ffffff553361014052610140516006580161071d565b60005060006004351815611c3857601554610140526007546101605260006101405118156119f45761014051610160513361018052610160516101a0526101a05161018051600658016102e9565b61016052610140526000505b610160805160043580821015611a0957600080fd5b8082039050905081525060063360e05260c052604060c0205460043580821015611a3257600080fd5b80820390509050610180526101805160063360e05260c052604060c0205561016051600755610140516101605161018051336101a052610180516101c052610160516101e0526101e0516101c0516101a05160065801610082565b6101805261016052610140526000506000610140511815611bf45760046004602082066102000160208284011115611ac457600080fd5b60176102206020840161012060006001818352015b82610120516020021115611aec57611b0e565b61012051850154610120516020028501525b8151600101808352811415611ad9575b5050505050818152809050905090508051602001806101a08284600060045af1611b3757600080fd5b505060006101a0806020015160008251806020901315611b5657600080fd5b8091901215611b6457600080fd5b806020036101000a82049050905090501815611bf35760006101a060048060208461020001018260208501600060045af1505080518201915050600435602082610200010152602081019050806102005261020090508051602001806102808284600060045af1611bd457600080fd5b505060006000610280516102a06000610140515af1611bf257600080fd5b5b5b6020610240604463a9059cbb6101a052336101c0526004356101e0526101bc60006002545af1611c2357600080fd5b601f3d11611c3057600080fd5b600050610240505b60043561014052337f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243646020610140a2600435610140526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610140a3600062ffffff55005b63dd62ed3e6000511415611cf95760043560a01c15611cbf57600080fd5b60243560a01c15611ccf57600080fd5b600860043560e05260c052604060c02060243560e05260c052604060c0205460005260206000f350005b600015611ffd575b6101a0526101405261016052610180526101405161016051610180516101a051610140516101c0526101c0516006580161071d565b6101a0526101805261016052610140526000506101405161016051610180516101a051610160516101c0526101c0516006580161071d565b6101a0526101805261016052610140526000506015546101c0526000610180511815611fc0576007546101e05260006101c0511815611dfc576101405161016051610180516101a0516101c0516101e05161014051610200526101e051610220526102205161020051600658016102e9565b6101e0526101c0526101a0526101805261016052610140526000505b60066101405160e05260c052604060c020546101805180821015611e1f57600080fd5b80820390509050610200526102005160066101405160e05260c052604060c020556101405161016051610180516101a0516101c0516101e05161020051610140516102205261020051610240526101e0516102605261026051610240516102205160065801610082565b610200526101e0526101c0526101a05261018052610160526101405260005060006101c0511815611f11576101405161016051610180516101a0516101c0516101e0516102005161016051610220526101e051610240526102405161022051600658016102e9565b610200526101e0526101c0526101a0526101805261016052610140526000505b60066101605160e05260c052604060c0205461018051818183011015611f3657600080fd5b80820190509050610200526102005160066101605160e05260c052604060c020556101405161016051610180516101a0516101c0516101e05161020051610160516102205261020051610240526101e0516102605261026051610240516102205160065801610082565b610200526101e0526101c0526101a0526101805261016052610140526000505b610180516101e05261016051610140517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101e0a36101a051565b63a9059cbb60005114156120775762ffffff541561201a57600080fd5b600162ffffff5560043560a01c1561203157600080fd5b3361014052600435610160526024356101805261018051610160516101405160065801611d01565b6000506001600052600062ffffff5560206000f350600062ffffff55005b6323b872dd60005114156121905762ffffff541561209457600080fd5b600162ffffff5560043560a01c156120ab57600080fd5b60243560a01c156120bb57600080fd5b600860043560e05260c052604060c0203360e05260c052604060c02054610140527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61014051181561214057610140516044358082101561211b57600080fd5b80820390509050600860043560e05260c052604060c0203360e05260c052604060c020555b6101405160043561016052602435610180526044356101a0526101a051610180516101605160065801611d01565b610140526000506001600052600062ffffff5560206000f350600062ffffff55005b63095ea7b3600051141561220d5760043560a01c156121ae57600080fd5b60243560083360e05260c052604060c02060043560e05260c052604060c0205560243561014052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610140a3600160005260206000f350005b633950935160005114156122c65760043560a01c1561222b57600080fd5b60083360e05260c052604060c02060043560e05260c052604060c0205460243581818301101561225a57600080fd5b80820190509050610140526101405160083360e05260c052604060c02060043560e05260c052604060c020556101405161016052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610160a3600160005260206000f350005b63a457c2d7600051141561237d5760043560a01c156122e457600080fd5b60083360e05260c052604060c02060043560e05260c052604060c020546024358082101561231157600080fd5b80820390509050610140526101405160083360e05260c052604060c02060043560e05260c052604060c020556101405161016052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610160a3600160005260206000f350005b6347d2d5d36000511415612ae55762ffffff541561239a57600080fd5b600162ffffff5560043560a01c156123b157600080fd5b6000610120525b610120516044013560a01c156123cd57600080fd5b60206101205101610120526101006101205110156123ea576123b8565b601a5433146123f857600080fd5b60025461014052601554610160526007546101805260006101605118156125f35761014051610160516101805160006101a052610180516101c0526101c0516101a051600658016102e9565b6101805261016052610140526000506004600460208206610200016020828401111561246f57600080fd5b60176102206020840161012060006001818352015b82610120516020021115612497576124b9565b61012051850154610120516020028501525b8151600101808352811415612484575b5050505050818152809050905090508051602001806101a08284600060045af16124e257600080fd5b505060006101a080602001516000825180602090131561250157600080fd5b809190121561250f57600080fd5b806020036101000a820490509050905018156125f25760006101805118156125ab5760006101a060048060208461020001018260208501600060045af150508051820191505061018051602082610200010152602081019050806102005261020090508051602001806102808284600060045af161258c57600080fd5b505060006000610280516102a06000610160515af16125aa57600080fd5b5b60206102a0604463095ea7b361020052610160516102205260006102405261021c6000610140515af16125dd57600080fd5b601f3d116125ea57600080fd5b6000506102a0505b5b600060043518156129b25760006004353b1161260e57600080fd5b6024356101a0526000600460208206610220016020828401111561263157600080fd5b602080610240826101a0600060045af15050818152809050905090508051602001806101c08284600060045af161266757600080fd5b50506004600460208206610280016020828401111561268557600080fd5b6020806102a0826101a0600060045af15050818152809050905090508051602001806102208284600060045af16126bb57600080fd5b505060006101c08060200151600082518060209013156126da57600080fd5b80919012156126e857600080fd5b806020036101000a8204905090509050181561296d576000610180511861270e57600080fd5b6020610320604463095ea7b3610280526004356102a0527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6102c05261029c6000610140515af161275e57600080fd5b601f3d1161276b57600080fd5b6000506103205060006101c060048060208461028001018260208501600060045af150508051820191505061018051602082610280010152602081019050806102805261028090508051602001806103008284600060045af16127cd57600080fd5b5050600060006103005161032060006004355af16127ea57600080fd5b602061030060246370a0823161028052306102a05261029c610140515afa61281157600080fd5b601f3d1161281e57600080fd5b600050610300511561282f57600080fd5b600061022060048060208461028001018260208501600060045af150508051820191505061018051602082610280010152602081019050806102805261028090508051602001806103008284600060045af161288a57600080fd5b5050600060006103005161032060006004355af16128a757600080fd5b61018051602061030060246370a0823161028052306102a05261029c610140515afa6128d257600080fd5b601f3d116128df57600080fd5b60005061030051146128f057600080fd5b60006101c060048060208461028001018260208501600060045af150508051820191505061018051602082610280010152602081019050806102805261028090508051602001806103008284600060045af161294b57600080fd5b5050600060006103005161032060006004355af161296857600080fd5b6129b1565b61022080602001516000825180602090131561298857600080fd5b809190121561299657600080fd5b806020036101000a8204905090509050156129b057600080fd5b5b5b6004356015556024356017556101a060006008818352015b600060446101a051600881106129df57600080fd5b60200201351815612a245760446101a051600881106129fd57600080fd5b60200201356101a05160088110612a1357600080fd5b601660c052602060c0200155612a83565b60006101a05160088110612a3757600080fd5b601660c052602060c02001541815612a6d5760006101a05160088110612a5c57600080fd5b601660c052602060c0200155612a82565b60006101a05118612a7d57600080fd5b612a94565b5b5b81516001018083528114156129ca575b505060006004351815612adc5761014051610160516101805160006101a052610180516101c0526101c0516101a051600658016102e9565b6101805261016052610140526000505b600062ffffff55005b6390b229976000511415612b195760043560011c15612b0357600080fd5b601a543314612b1157600080fd5b600435601c55005b636b441a406000511415612b7b5760043560a01c15612b3757600080fd5b601a543314612b4557600080fd5b600435601b55600435610140527f2f56810a6bf40af059b96d3aea4db54081f378029a518390491093a7b67032e96020610140a1005b63e5ea47b86000511415612bd757601b5461014052610140513314612b9f57600080fd5b61014051601a5561014051610160527febee2d5739011062cb4f14113f3b36bf0ffe3da5c0568f64189d1012a11891056020610160a1005b63075461726000511415612bf35760005460005260206000f350005b6376d8b1176000511415612c0f5760015460005260206000f350005b6382c630666000511415612c2b5760025460005260206000f350005b63f77c47916000511415612c475760035460005260206000f350005b63dfe050316000511415612c635760045460005260206000f350005b63be5d1be96000511415612c7f5760055460005260206000f350005b6370a082316000511415612cb95760043560a01c15612c9d57600080fd5b600660043560e05260c052604060c0205460005260206000f350005b6318160ddd6000511415612cd55760075460005260206000f350005b6306fdde036000511415612d7e5760098060c052602060c020610180602082540161012060006003818352015b82610120516020021115612d1557612d37565b61012051850154610120516020028501525b8151600101808352811415612d02575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f350005b6395d89b416000511415612e2757600a8060c052602060c020610180602082540161012060006002818352015b82610120516020021115612dbe57612de0565b61012051850154610120516020028501525b8151600101808352811415612dab575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f350005b63e15225366000511415612e7f5760043560a01c15612e4557600080fd5b60243560a01c15612e5557600080fd5b600b60043560e05260c052604060c02060243560e05260c052604060c0205460005260206000f350005b6313ecb1ca6000511415612eb95760043560a01c15612e9d57600080fd5b600c60043560e05260c052604060c0205460005260206000f350005b6317e280896000511415612ed557600d5460005260206000f350005b63ef78d4fd6000511415612ef157600e5460005260206000f350005b637598108c6000511415612f32576004356c01431e0fae6d7217caa00000008110612f1b57600080fd5b600f60c052602060c020015460005260206000f350005b63fec8ee0c6000511415612f73576004356c01431e0fae6d7217caa00000008110612f5c57600080fd5b601060c052602060c020015460005260206000f350005b63de263bfa6000511415612fad5760043560a01c15612f9157600080fd5b601160043560e05260c052604060c0205460005260206000f350005b639bd324f26000511415612fe75760043560a01c15612fcb57600080fd5b601260043560e05260c052604060c0205460005260206000f350005b630940070760005114156130215760043560a01c1561300557600080fd5b601360043560e05260c052604060c0205460005260206000f350005b63180692d0600051141561303d5760145460005260206000f350005b63bf88a6ff60005114156130595760155460005260206000f350005b6354c49fe9600051141561308e576004356008811061307757600080fd5b601660c052602060c020015460005260206000f350005b6373861fb360005114156130c85760043560a01c156130ac57600080fd5b601860043560e05260c052604060c0205460005260206000f350005b63f05cc05860005114156131205760043560a01c156130e657600080fd5b60243560a01c156130f657600080fd5b601960043560e05260c052604060c02060243560e05260c052604060c0205460005260206000f350005b63f851a440600051141561313c57601a5460005260206000f350005b6317f7182a600051141561315857601b5460005260206000f350005b639c868ac0600051141561317457601c5460005260206000f350005b5b60006000fd5b6102ca613445036102ca6000396102ca613445036000f300000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000410e3e86ef427e30b9235497143881f717d93c2a000000000000000000000000d061d61a4d941c39e5453435b6345dc261c2fce00000000000000000000000007eeac6cddbd1d0b8af061742d41877d7f707289a000000000000000000000000000000000000000000000000000000000000002343757276652e666920624254432f73627463435256204761756765204465706f73697400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012624254432f736274634352562d67617567650000000000000000000000000000
Deployed Bytecode
0x341561000a57600080fd5b600436101561001857613175565b600035601c5263313ce567600051141561003957601260005260206000f350005b63d31f3f6d600051141561007a57600e546c01431e0fae6d7217caa0000000811061006357600080fd5b600f60c052602060c020015460005260206000f350005b6000156102e1575b6101a0526101405261016052610180526004546101c052602061028060246370a0823161020052610140516102205261021c6101c0515afa6100c357600080fd5b601f3d116100d057600080fd5b600050610280516101e052602061028060046318160ddd6102205261023c6101c0515afa6100fd57600080fd5b601f3d1161010a57600080fd5b6000506102805161020052610160516028808202821582848304141761012f57600080fd5b8090509050905060648082049050905061022052600061020051111561017b57600f60c052602060c020546212750081818301101561016d57600080fd5b80820190509050421161017e565b60005b15610200576102208051610180516101e05180820282158284830414176101a457600080fd5b809050905090506102005180806101ba57600080fd5b820490509050603c80820282158284830414176101d657600080fd5b809050905090506064808204905090508181830110156101f557600080fd5b808201905090508152505b6101605161022051808211156102165780610218565b815b9050905061022052600c6101405160e05260c052604060c020546102405261022051600c6101405160e05260c052604060c02055600d546102205181818301101561026257600080fd5b80820190509050610240518082101561027a57600080fd5b808203905090506102605261026051600d556101405161028052610160516102a052610180516102c052610220516102e05261026051610300527f7ecd84343f76a23d2227290e0288da3251b045541698e575a5515af4f04197a360a0610280a16101a051565b600015610715575b6101805261014052610160526101605115156103055761018051565b610200366101a0376103a060006008818352015b6103a0516008811061032a57600080fd5b601660c052602060c02001546103c0526103c0511515610349576103cb565b6103c0516102a06103a0516008811061036157600080fd5b6020020152602061046060246370a082316103e05230610400526103fc6103c0515afa61038d57600080fd5b601f3d1161039a57600080fd5b600050610460516101a06103a051600881106103b557600080fd5b60200201525b8151600101808352811415610319575b505060086004602082066103a001602082840111156103e957600080fd5b60176103c06020840161012060006001818352015b8261012051602002111561041157610433565b61012051850154610120516020028501525b81516001018083528114156103fe575b5050505050818152809050905090508051602001806104208284600060045af161045c57600080fd5b5050600060006104205161044060006015545af161047957600080fd5b6103a060006008818352015b6102a06103a0516008811061049957600080fd5b60200201516103c0526103c05115156104b15761070d565b670de0b6b3a7640000602061048060246370a0823161040052306104205261041c6103c0515afa6104e157600080fd5b601f3d116104ee57600080fd5b600050610480516101a06103a0516008811061050957600080fd5b60200201518082101561051b57600080fd5b80820390509050808202821582848304141761053657600080fd5b8090509050905061016051808061054c57600080fd5b8204905090506103e0526101405115156105a25760006103e051181561059d5760186103c05160e05260c052604060c02080546103e05181818301101561059257600080fd5b808201905090508155505b6106fd565b60186103c05160e05260c052604060c020546103e0518181830110156105c757600080fd5b808201905090506104005260006103e05118156105f5576104005160186103c05160e05260c052604060c020555b60196103c05160e05260c052604060c0206101405160e05260c052604060c0205461042052610400516104205110156106fc5760066101405160e05260c052604060c0205461040051610420518082101561064f57600080fd5b80820390509050808202821582848304141761066a57600080fd5b80905090509050670de0b6b3a764000080820490509050610440526104005160196103c05160e05260c052604060c0206101405160e05260c052604060c020556020610500604463a9059cbb610460526101405161048052610440516104a05261047c60006103c0515af16106de57600080fd5b601f3d116106eb57600080fd5b600050610500516106fb57600080fd5b5b5b8151600101808352811415610485575b505061018051565b600015610d1b575b6101605261014052600e5461018052610180516c01431e0fae6d7217caa0000000811061074957600080fd5b600f60c052602060c02001546101a052610180516c01431e0fae6d7217caa0000000811061077657600080fd5b601060c052602060c02001546101c0526014546101e0526101e05161020052600554610220526101a0516102205110151561082f576001546102405260206102c0600463b26b238e6102605261027c6000610240515af16107d657600080fd5b601f3d116107e357600080fd5b6000506102c05160055560206102c06004632c4e722e6102605261027c610240515afa61080f57600080fd5b601f3d1161081c57600080fd5b6000506102c05161020052610200516014555b601c541561083e5760006101e0525b6101a051421115610bc657600d546102405260035461026052610260513b61086557600080fd5b60006000602463615e523761028052306102a05261029c6000610260515af161088d57600080fd5b6101a051610280526101a05162093a808181830110156108ac57600080fd5b8082019050905062093a808082049050905062093a8080820282158284830414176108d657600080fd5b8090509050905042808211156108ec57806108ee565b815b905090506102a0526102c060006101f4818352015b6102a051610280518082101561091857600080fd5b808203905090506102e05260206103c0604463d3078c946103205230610340526102805162093a808082049050905062093a80808202821582848304141761095f57600080fd5b809050905090506103605261033c610260515afa61097c57600080fd5b601f3d1161098957600080fd5b6000506103c051610300526000610240511115610b635761028051610220511015156109bd576102a05161022051106109c0565b60005b15610aec576101c080516101e0516103005180820282158284830414176109e657600080fd5b80905090509050610220516102805180821015610a0257600080fd5b808203905090508082028215828483041417610a1d57600080fd5b80905090509050610240518080610a3357600080fd5b820490509050818183011015610a4857600080fd5b80820190509050815250610200516101e0526101c080516101e051610300518082028215828483041417610a7b57600080fd5b809050905090506102a0516102205180821015610a9757600080fd5b808203905090508082028215828483041417610ab257600080fd5b80905090509050610240518080610ac857600080fd5b820490509050818183011015610add57600080fd5b80820190509050815250610b62565b6101c080516101e051610300518082028215828483041417610b0d57600080fd5b809050905090506102e0518082028215828483041417610b2c57600080fd5b80905090509050610240518080610b4257600080fd5b820490509050818183011015610b5757600080fd5b808201905090508152505b5b426102a0511415610b7357610bc3565b6102a051610280526102a05162093a80818183011015610b9257600080fd5b808201905090504280821115610ba85780610baa565b815b905090506102a0525b8151600101808352811415610903575b50505b6101808051600180820180806000811215610bdd57195b607f1c15610bea57600080fd5b90509050905081525061018051600e5542610180516c01431e0fae6d7217caa00000008110610c1857600080fd5b600f60c052602060c02001556101c051610180516c01431e0fae6d7217caa00000008110610c4557600080fd5b601060c052602060c0200155600c6101405160e05260c052604060c020546102405260136101405160e05260c052604060c0208054610240516101c05160116101405160e05260c052604060c0205480821015610ca157600080fd5b808203905090508082028215828483041417610cbc57600080fd5b80905090509050670de0b6b3a764000080820490509050818183011015610ce257600080fd5b808201905090508155506101c05160116101405160e05260c052604060c020554260126101405160e05260c052604060c0205561016051565b634b8200936000511415610db95760043560a01c15610d3957600080fd5b600435331415610d4a576001610d50565b60005433145b5b610d5a57600080fd5b60043561014052610140516006580161071d565b60005060043561014052600660043560e05260c052604060c02054610160526007546101805261018051610160516101405160065801610082565b600050600160005260206000f350005b63331345836000511415610e5f5760043560a01c15610dd757600080fd5b60043561014052610140516006580161071d565b600050601360043560e05260c052604060c0205460206101e06044638b752bb06101405260043561016052306101805261015c6000545afa610e2c57600080fd5b601f3d11610e3957600080fd5b6000506101e05180821015610e4d57600080fd5b8082039050905060005260206000f350005b6333fd6f74600051141561104b5762ffffff5415610e7c57600080fd5b600162ffffff5560043560a01c15610e9357600080fd5b60243560a01c15610ea357600080fd5b60206101e060246370a08231610160526004356101805261017c6024355afa610ecb57600080fd5b601f3d11610ed857600080fd5b6000506101e0516101405260006015541815610f19576101405160043561016052600754610180526101805161016051600658016102e9565b610140526000505b60206101e060246370a08231610160526004356101805261017c6024355afa610f4157600080fd5b601f3d11610f4e57600080fd5b6000506101e0516101405180821015610f6657600080fd5b8082039050905061014052601860243560e05260c052604060c0205461016052601960243560e05260c052604060c02060043560e05260c052604060c02054610180526101605161018051101561102e576101408051600660043560e05260c052604060c02054610160516101805180821015610fe257600080fd5b808203905090508082028215828483041417610ffd57600080fd5b80905090509050670de0b6b3a76400008082049050905081818301101561102357600080fd5b808201905090508152505b61014051600052600062ffffff5560206000f350600062ffffff55005b63e6f1daf26000511415611063573361014052611099565b6384e9bd7e60005114156110915760043560a01c1561108157600080fd5b6020600461014037600050611099565b6000156110e3575b62ffffff54156110a857600080fd5b600162ffffff55610140516101405161016052600754610180526101805161016051600658016102e9565b61014052600050600062ffffff55005b63b9fa7a6960005114156110fb573361014052611133565b637a22ef67600051141561112b576101043560a01c1561111a57600080fd5b602061010461014037600050611133565b6000156112e5575b62ffffff541561114257600080fd5b600162ffffff556000610120525b610120516004013560a01c1561116557600080fd5b602061012051016101205261010061012051101561118257611150565b61018060006008818352015b6020610180510260040135610160526101605115156111ac576112da565b60186101605160e05260c052604060c020546101a05260196101605160e05260c052604060c0206101405160e05260c052604060c020546101c0526101a0516101c05110156112c95760066101405160e05260c052604060c020546101a0516101c0518082101561121c57600080fd5b80820390509050808202821582848304141761123757600080fd5b80905090509050670de0b6b3a7640000808204905090506101e0526101a05160196101605160e05260c052604060c0206101405160e05260c052604060c0205560206102a0604463a9059cbb6102005261014051610220526101e0516102405261021c6000610160515af16112ab57600080fd5b601f3d116112b857600080fd5b6000506102a0516112c857600080fd5b5b5b815160010180835281141561118e575b5050600062ffffff55005b6396c5517560005114156114ec5760043560a01c1561130357600080fd5b60045461014052601260043560e05260c052604060c020546101605260206102e0604463da020a1861024052600435610260526020610220602463010ae7576101a0526004356101c0526101bc610140515afa61135f57600080fd5b601f3d1161136c57600080fd5b600050610220516102805261025c610140515afa61138957600080fd5b601f3d1161139657600080fd5b6000506102e05161018052600660043560e05260c052604060c020546101a05260206102e060246370a08231610260526004356102805261027c6004545afa6113de57600080fd5b601f3d116113eb57600080fd5b6000506102e05115156113ff576001611409565b6101605161018051115b5b61141357600080fd5b6101a0516028808202821582848304141761142d57600080fd5b80905090509050606480820490509050600c60043560e05260c052604060c020541161145857600080fd5b6101405161016051610180516101a0516004356101c0526101c0516006580161071d565b6101a0526101805261016052610140526000506101405161016051610180516101a0516004356101c052600660043560e05260c052604060c020546101e05260075461020052610200516101e0516101c05160065801610082565b6101a052610180526101605261014052600050005b631d2747d4600051141561153c5760043560a01c1561150a57600080fd5b60243560011c1561151a57600080fd5b602435600b60043560e05260c052604060c0203360e05260c052604060c02055005b63b6b55f25600051141561155457336101405261158a565b636e553f6560005114156115825760243560a01c1561157257600080fd5b602060246101403760005061158a565b600015611964575b62ffffff541561159957600080fd5b600162ffffff553361014051181561161557600b3360e05260c052604060c0206101405160e05260c052604060c020541515611614576308c379a061016052602061018052600c6101a0527f4e6f7420617070726f76656400000000000000000000000000000000000000006101c0526101a050606461017cfd5b5b610140516101405161016052610160516006580161071d565b61014052600050600060043518156118f5576015546101605260075461018052600061016051181561169757610140516101605161018051610140516101a052610180516101c0526101c0516101a051600658016102e9565b6101805261016052610140526000505b61018080516004358181830110156116ae57600080fd5b8082019050905081525060066101405160e05260c052604060c020546004358181830110156116dc57600080fd5b808201905090506101a0526101a05160066101405160e05260c052604060c02055610180516007556101405161016051610180516101a051610140516101c0526101a0516101e0526101805161020052610200516101e0516101c05160065801610082565b6101a052610180526101605261014052600050602061028060646323b872dd6101c052336101e0523061020052600435610220526101dc60006002545af161178857600080fd5b601f3d1161179557600080fd5b6000506102805060006101605118156118f457600060046020820661022001602082840111156117c457600080fd5b60176102406020840161012060006001818352015b826101205160200211156117ec5761180e565b61012051850154610120516020028501525b81516001018083528114156117d9575b5050505050818152809050905090508051602001806101c08284600060045af161183757600080fd5b505060006101c080602001516000825180602090131561185657600080fd5b809190121561186457600080fd5b806020036101000a820490509050905018156118f35760006101c060048060208461022001018260208501600060045af1505080518201915050600435602082610220010152602081019050806102205261022090508051602001806102a08284600060045af16118d457600080fd5b5050600060006102a0516102c06000610160515af16118f257600080fd5b5b5b5b60043561016052610140517fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c6020610160a2600435610160526101405160007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610160a3600062ffffff55005b632e1a7d4d6000511415611ca15762ffffff541561198157600080fd5b600162ffffff553361014052610140516006580161071d565b60005060006004351815611c3857601554610140526007546101605260006101405118156119f45761014051610160513361018052610160516101a0526101a05161018051600658016102e9565b61016052610140526000505b610160805160043580821015611a0957600080fd5b8082039050905081525060063360e05260c052604060c0205460043580821015611a3257600080fd5b80820390509050610180526101805160063360e05260c052604060c0205561016051600755610140516101605161018051336101a052610180516101c052610160516101e0526101e0516101c0516101a05160065801610082565b6101805261016052610140526000506000610140511815611bf45760046004602082066102000160208284011115611ac457600080fd5b60176102206020840161012060006001818352015b82610120516020021115611aec57611b0e565b61012051850154610120516020028501525b8151600101808352811415611ad9575b5050505050818152809050905090508051602001806101a08284600060045af1611b3757600080fd5b505060006101a0806020015160008251806020901315611b5657600080fd5b8091901215611b6457600080fd5b806020036101000a82049050905090501815611bf35760006101a060048060208461020001018260208501600060045af1505080518201915050600435602082610200010152602081019050806102005261020090508051602001806102808284600060045af1611bd457600080fd5b505060006000610280516102a06000610140515af1611bf257600080fd5b5b5b6020610240604463a9059cbb6101a052336101c0526004356101e0526101bc60006002545af1611c2357600080fd5b601f3d11611c3057600080fd5b600050610240505b60043561014052337f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243646020610140a2600435610140526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610140a3600062ffffff55005b63dd62ed3e6000511415611cf95760043560a01c15611cbf57600080fd5b60243560a01c15611ccf57600080fd5b600860043560e05260c052604060c02060243560e05260c052604060c0205460005260206000f350005b600015611ffd575b6101a0526101405261016052610180526101405161016051610180516101a051610140516101c0526101c0516006580161071d565b6101a0526101805261016052610140526000506101405161016051610180516101a051610160516101c0526101c0516006580161071d565b6101a0526101805261016052610140526000506015546101c0526000610180511815611fc0576007546101e05260006101c0511815611dfc576101405161016051610180516101a0516101c0516101e05161014051610200526101e051610220526102205161020051600658016102e9565b6101e0526101c0526101a0526101805261016052610140526000505b60066101405160e05260c052604060c020546101805180821015611e1f57600080fd5b80820390509050610200526102005160066101405160e05260c052604060c020556101405161016051610180516101a0516101c0516101e05161020051610140516102205261020051610240526101e0516102605261026051610240516102205160065801610082565b610200526101e0526101c0526101a05261018052610160526101405260005060006101c0511815611f11576101405161016051610180516101a0516101c0516101e0516102005161016051610220526101e051610240526102405161022051600658016102e9565b610200526101e0526101c0526101a0526101805261016052610140526000505b60066101605160e05260c052604060c0205461018051818183011015611f3657600080fd5b80820190509050610200526102005160066101605160e05260c052604060c020556101405161016051610180516101a0516101c0516101e05161020051610160516102205261020051610240526101e0516102605261026051610240516102205160065801610082565b610200526101e0526101c0526101a0526101805261016052610140526000505b610180516101e05261016051610140517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101e0a36101a051565b63a9059cbb60005114156120775762ffffff541561201a57600080fd5b600162ffffff5560043560a01c1561203157600080fd5b3361014052600435610160526024356101805261018051610160516101405160065801611d01565b6000506001600052600062ffffff5560206000f350600062ffffff55005b6323b872dd60005114156121905762ffffff541561209457600080fd5b600162ffffff5560043560a01c156120ab57600080fd5b60243560a01c156120bb57600080fd5b600860043560e05260c052604060c0203360e05260c052604060c02054610140527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61014051181561214057610140516044358082101561211b57600080fd5b80820390509050600860043560e05260c052604060c0203360e05260c052604060c020555b6101405160043561016052602435610180526044356101a0526101a051610180516101605160065801611d01565b610140526000506001600052600062ffffff5560206000f350600062ffffff55005b63095ea7b3600051141561220d5760043560a01c156121ae57600080fd5b60243560083360e05260c052604060c02060043560e05260c052604060c0205560243561014052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610140a3600160005260206000f350005b633950935160005114156122c65760043560a01c1561222b57600080fd5b60083360e05260c052604060c02060043560e05260c052604060c0205460243581818301101561225a57600080fd5b80820190509050610140526101405160083360e05260c052604060c02060043560e05260c052604060c020556101405161016052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610160a3600160005260206000f350005b63a457c2d7600051141561237d5760043560a01c156122e457600080fd5b60083360e05260c052604060c02060043560e05260c052604060c020546024358082101561231157600080fd5b80820390509050610140526101405160083360e05260c052604060c02060043560e05260c052604060c020556101405161016052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610160a3600160005260206000f350005b6347d2d5d36000511415612ae55762ffffff541561239a57600080fd5b600162ffffff5560043560a01c156123b157600080fd5b6000610120525b610120516044013560a01c156123cd57600080fd5b60206101205101610120526101006101205110156123ea576123b8565b601a5433146123f857600080fd5b60025461014052601554610160526007546101805260006101605118156125f35761014051610160516101805160006101a052610180516101c0526101c0516101a051600658016102e9565b6101805261016052610140526000506004600460208206610200016020828401111561246f57600080fd5b60176102206020840161012060006001818352015b82610120516020021115612497576124b9565b61012051850154610120516020028501525b8151600101808352811415612484575b5050505050818152809050905090508051602001806101a08284600060045af16124e257600080fd5b505060006101a080602001516000825180602090131561250157600080fd5b809190121561250f57600080fd5b806020036101000a820490509050905018156125f25760006101805118156125ab5760006101a060048060208461020001018260208501600060045af150508051820191505061018051602082610200010152602081019050806102005261020090508051602001806102808284600060045af161258c57600080fd5b505060006000610280516102a06000610160515af16125aa57600080fd5b5b60206102a0604463095ea7b361020052610160516102205260006102405261021c6000610140515af16125dd57600080fd5b601f3d116125ea57600080fd5b6000506102a0505b5b600060043518156129b25760006004353b1161260e57600080fd5b6024356101a0526000600460208206610220016020828401111561263157600080fd5b602080610240826101a0600060045af15050818152809050905090508051602001806101c08284600060045af161266757600080fd5b50506004600460208206610280016020828401111561268557600080fd5b6020806102a0826101a0600060045af15050818152809050905090508051602001806102208284600060045af16126bb57600080fd5b505060006101c08060200151600082518060209013156126da57600080fd5b80919012156126e857600080fd5b806020036101000a8204905090509050181561296d576000610180511861270e57600080fd5b6020610320604463095ea7b3610280526004356102a0527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6102c05261029c6000610140515af161275e57600080fd5b601f3d1161276b57600080fd5b6000506103205060006101c060048060208461028001018260208501600060045af150508051820191505061018051602082610280010152602081019050806102805261028090508051602001806103008284600060045af16127cd57600080fd5b5050600060006103005161032060006004355af16127ea57600080fd5b602061030060246370a0823161028052306102a05261029c610140515afa61281157600080fd5b601f3d1161281e57600080fd5b600050610300511561282f57600080fd5b600061022060048060208461028001018260208501600060045af150508051820191505061018051602082610280010152602081019050806102805261028090508051602001806103008284600060045af161288a57600080fd5b5050600060006103005161032060006004355af16128a757600080fd5b61018051602061030060246370a0823161028052306102a05261029c610140515afa6128d257600080fd5b601f3d116128df57600080fd5b60005061030051146128f057600080fd5b60006101c060048060208461028001018260208501600060045af150508051820191505061018051602082610280010152602081019050806102805261028090508051602001806103008284600060045af161294b57600080fd5b5050600060006103005161032060006004355af161296857600080fd5b6129b1565b61022080602001516000825180602090131561298857600080fd5b809190121561299657600080fd5b806020036101000a8204905090509050156129b057600080fd5b5b5b6004356015556024356017556101a060006008818352015b600060446101a051600881106129df57600080fd5b60200201351815612a245760446101a051600881106129fd57600080fd5b60200201356101a05160088110612a1357600080fd5b601660c052602060c0200155612a83565b60006101a05160088110612a3757600080fd5b601660c052602060c02001541815612a6d5760006101a05160088110612a5c57600080fd5b601660c052602060c0200155612a82565b60006101a05118612a7d57600080fd5b612a94565b5b5b81516001018083528114156129ca575b505060006004351815612adc5761014051610160516101805160006101a052610180516101c0526101c0516101a051600658016102e9565b6101805261016052610140526000505b600062ffffff55005b6390b229976000511415612b195760043560011c15612b0357600080fd5b601a543314612b1157600080fd5b600435601c55005b636b441a406000511415612b7b5760043560a01c15612b3757600080fd5b601a543314612b4557600080fd5b600435601b55600435610140527f2f56810a6bf40af059b96d3aea4db54081f378029a518390491093a7b67032e96020610140a1005b63e5ea47b86000511415612bd757601b5461014052610140513314612b9f57600080fd5b61014051601a5561014051610160527febee2d5739011062cb4f14113f3b36bf0ffe3da5c0568f64189d1012a11891056020610160a1005b63075461726000511415612bf35760005460005260206000f350005b6376d8b1176000511415612c0f5760015460005260206000f350005b6382c630666000511415612c2b5760025460005260206000f350005b63f77c47916000511415612c475760035460005260206000f350005b63dfe050316000511415612c635760045460005260206000f350005b63be5d1be96000511415612c7f5760055460005260206000f350005b6370a082316000511415612cb95760043560a01c15612c9d57600080fd5b600660043560e05260c052604060c0205460005260206000f350005b6318160ddd6000511415612cd55760075460005260206000f350005b6306fdde036000511415612d7e5760098060c052602060c020610180602082540161012060006003818352015b82610120516020021115612d1557612d37565b61012051850154610120516020028501525b8151600101808352811415612d02575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f350005b6395d89b416000511415612e2757600a8060c052602060c020610180602082540161012060006002818352015b82610120516020021115612dbe57612de0565b61012051850154610120516020028501525b8151600101808352811415612dab575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f350005b63e15225366000511415612e7f5760043560a01c15612e4557600080fd5b60243560a01c15612e5557600080fd5b600b60043560e05260c052604060c02060243560e05260c052604060c0205460005260206000f350005b6313ecb1ca6000511415612eb95760043560a01c15612e9d57600080fd5b600c60043560e05260c052604060c0205460005260206000f350005b6317e280896000511415612ed557600d5460005260206000f350005b63ef78d4fd6000511415612ef157600e5460005260206000f350005b637598108c6000511415612f32576004356c01431e0fae6d7217caa00000008110612f1b57600080fd5b600f60c052602060c020015460005260206000f350005b63fec8ee0c6000511415612f73576004356c01431e0fae6d7217caa00000008110612f5c57600080fd5b601060c052602060c020015460005260206000f350005b63de263bfa6000511415612fad5760043560a01c15612f9157600080fd5b601160043560e05260c052604060c0205460005260206000f350005b639bd324f26000511415612fe75760043560a01c15612fcb57600080fd5b601260043560e05260c052604060c0205460005260206000f350005b630940070760005114156130215760043560a01c1561300557600080fd5b601360043560e05260c052604060c0205460005260206000f350005b63180692d0600051141561303d5760145460005260206000f350005b63bf88a6ff60005114156130595760155460005260206000f350005b6354c49fe9600051141561308e576004356008811061307757600080fd5b601660c052602060c020015460005260206000f350005b6373861fb360005114156130c85760043560a01c156130ac57600080fd5b601860043560e05260c052604060c0205460005260206000f350005b63f05cc05860005114156131205760043560a01c156130e657600080fd5b60243560a01c156130f657600080fd5b601960043560e05260c052604060c02060243560e05260c052604060c0205460005260206000f350005b63f851a440600051141561313c57601a5460005260206000f350005b6317f7182a600051141561315857601b5460005260206000f350005b639c868ac0600051141561317457601c5460005260206000f350005b5b60006000fd
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.