ETH Price: $3,485.95 (+1.96%)
Gas: 12 Gwei

Token

Lixir Finance lv_LIX-WETH Gauge Deposit (lv_LIX-WETH-gauge)
 

Overview

Max Total Supply

8,125.629183521126899217 lv_LIX-WETH-gauge

Holders

34

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
jeromeloo.eth
Balance
0.0066338267886783 lv_LIX-WETH-gauge

Value
$0.00
0x76149d87A6bA9eA3c864d0643210e71393dD7777
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# 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 0x94555c8B...Baf720F15
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.12

Optimization Enabled:
N/A

Other Settings:
None license
# @version 0.2.12
"""
@title Liquidity Gauge LIX
@author Lixir Finance
@license MIT
"""

from vyper.interfaces import ERC20

implements: ERC20

interface Controller:
    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 Distributor:
    # lifted from Minter
    def lix() -> address: view
    def controller() -> address: view
    def distributed(user: address, gauge: address) -> uint256: view

    # these two are lifted from CRV20
    def future_epoch_time_write() -> uint256: nonpayable
    def rate() -> uint256: view

interface VotingEscrow:
    def user_point_epoch(addr: address) -> uint256: view
    def user_point_history__ts(addr: address, epoch: uint256) -> uint256: view

interface ERC20Extended:
    def symbol() -> String[26]: view

interface LixirRegistry:
    def isGovOrDelegate(account: address) -> bool: view


# Interface for checking whether address belongs to a whitelisted
# type of a smart wallet.
# When new types are added - the whole contract is changed
# The check() method is modifying to be able to use caching
# for individual wallet addresses
interface SmartWalletChecker:
    def check(addr: address) -> bool: nonpayable


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 Transfer:
    _from: indexed(address)
    _to: indexed(address)
    _value: uint256

event Approval:
    _owner: indexed(address)
    _spender: indexed(address)
    _value: uint256


TOKENLESS_PRODUCTION: constant(uint256) = 40
WEEK: constant(uint256) = 604800

distributor: public(address) # minter: public(address)
lix_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)
allowance: public(HashMap[address, HashMap[address, uint256]])

name: public(String[64])
symbol: public(String[32])

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])

distribution_rate: public(uint256) # inflation_rate: public(uint256)

# Checker for whitelisted (smart contract) wallets which are allowed to deposit
# The goal is to prevent tokenizing the escrow
future_smart_wallet_checker: public(address)
smart_wallet_checker: public(address) # veCRV uses this on mainnet: 0xca719728ef172d0961768581fdf35cb116e0b7a4

registry: public(address)
is_killed: public(bool)

@external
def __init__(_lp_token: address, _distributor: address, _registry: address):
    """
    @notice Contract constructor
    @param _lp_token Liquidity Pool contract address
    @param _distributor Distributor contract address
    @param _registry Registry
    """

    symbol: String[26] = ERC20Extended(_lp_token).symbol()
    self.name = concat("Lixir Finance ", symbol, " Gauge Deposit")
    self.symbol = concat(symbol, "-gauge")

    lix_token: address = Distributor(_distributor).lix()
    controller: address = Distributor(_distributor).controller()

    self.lp_token = _lp_token
    self.distributor = _distributor
    self.registry = _registry
    self.lix_token = lix_token
    self.controller = controller
    self.voting_escrow = Controller(controller).voting_escrow()

    self.period_timestamp[0] = block.timestamp
    self.distribution_rate = Distributor(_distributor).rate()
    self.future_epoch_time = Distributor(_distributor).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]


@external
def commit_smart_wallet_checker(addr: address):
    """
    @notice Set an external contract to check for approved smart contract wallets
    @param addr Address of Smart contract checker
    """
    assert LixirRegistry(self.registry).isGovOrDelegate(msg.sender)
    self.future_smart_wallet_checker = addr


@external
def apply_smart_wallet_checker():
    """
    @notice Apply setting external contract to check approved smart contract wallets
    """
    assert LixirRegistry(self.registry).isGovOrDelegate(msg.sender)
    self.smart_wallet_checker = self.future_smart_wallet_checker


@internal
def assert_not_contract(addr: address):
    """
    @notice Check if the call is from a whitelisted smart contract, revert if not
    @param addr Address to be checked
    """
    if addr.is_contract:
        checker: address = self.smart_wallet_checker
        if checker != ZERO_ADDRESS:
            if SmartWalletChecker(checker).check(addr):
                return
        raise "Smart contract depositors not allowed"


@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:
        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(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.distribution_rate
    new_rate: uint256 = rate
    prev_future_epoch: uint256 = self.future_epoch_time
    if prev_future_epoch >= _period_time:
        _dist: address = self.distributor
        self.future_epoch_time = Distributor(self.distributor).future_epoch_time_write()
        new_rate = Distributor(self.distributor).rate()
        self.distribution_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.distributor) # 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] - Distributor(self.distributor).distributed(addr, self)


@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(_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
@nonreentrant('lock')
def deposit(_value: uint256, _addr: address = msg.sender, args: Bytes[128] = b""):
    """
    @notice Deposit `_value` LP tokens
    @param _value Number of tokens to deposit
    @param _addr Address to deposit for
    """
    self.assert_not_contract(msg.sender)
    self._checkpoint(_addr)

    if _value != 0:
        total_supply: uint256 = self.totalSupply

        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)

        if len(args) != 0:
            raw_call(
                self.lp_token,
                concat(
                    method_id("permit(address,address,uint256,uint256,uint8,bytes32,bytes32)"),
                    convert(_addr, bytes32),
                    convert(self, bytes32),
                    convert(_value, bytes32),
                    args
                )
            )
            ERC20(self.lp_token).transferFrom(_addr, self, _value)
        else:
            ERC20(self.lp_token).transferFrom(msg.sender, self, _value)


    log Deposit(_addr, _value)
    log Transfer(ZERO_ADDRESS, _addr, _value)


@external
@nonreentrant('lock')
def withdraw(_value: uint256):
    """
    @notice Withdraw `_value` LP tokens
    @param _value Number of tokens to withdraw
    """
    self._checkpoint(msg.sender)

    if _value != 0:
        total_supply: uint256 = self.totalSupply

        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)
        # TODO doesn't this need to check that _value is correct? How do you stop someone from just withdrawing everything when they don't have the balance??
        ERC20(self.lp_token).transfer(msg.sender, _value)

    log Withdraw(msg.sender, _value)
    log Transfer(msg.sender, ZERO_ADDRESS, _value)


@internal
def _transfer(_from: address, _to: address, _value: uint256):
    self._checkpoint(_from)
    self._checkpoint(_to)

    if _value != 0:
        total_supply: uint256 = self.totalSupply

        new_balance: uint256 = self.balanceOf[_from] - _value
        self.balanceOf[_from] = new_balance
        self._update_liquidity_limit(_from, new_balance, 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
    @param _to The address to transfer to.
    @param _value The amount to be transferred.
    """
    self.assert_not_contract(_to)
    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.
     @param _from address The address which you want to send tokens from
     @param _to address The address which you want to transfer to
     @param _value uint256 the amount of tokens to be transferred
    """
    self.assert_not_contract(_to)
    _allowance: uint256 = self.allowance[_from][msg.sender]
    if _allowance != MAX_UINT256:
        self.allowance[_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.assert_not_contract(_spender)
    self.allowance[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
    """
    self.assert_not_contract(_spender)
    allowance: uint256 = self.allowance[msg.sender][_spender] + _added_value
    self.allowance[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.allowance[msg.sender][_spender] - _subtracted_value
    self.allowance[msg.sender][_spender] = allowance

    log Approval(msg.sender, _spender, allowance)

    return True

@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 LixirRegistry(self.registry).isGovOrDelegate(msg.sender)

    self.is_killed = _is_killed

Contract Security Audit

Contract ABI

[{"name":"Deposit","inputs":[{"name":"provider","type":"address","indexed":true},{"name":"value","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"Withdraw","inputs":[{"name":"provider","type":"address","indexed":true},{"name":"value","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"UpdateLiquidityLimit","inputs":[{"name":"user","type":"address","indexed":false},{"name":"original_balance","type":"uint256","indexed":false},{"name":"original_supply","type":"uint256","indexed":false},{"name":"working_balance","type":"uint256","indexed":false},{"name":"working_supply","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"Transfer","inputs":[{"name":"_from","type":"address","indexed":true},{"name":"_to","type":"address","indexed":true},{"name":"_value","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"Approval","inputs":[{"name":"_owner","type":"address","indexed":true},{"name":"_spender","type":"address","indexed":true},{"name":"_value","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"stateMutability":"nonpayable","type":"constructor","inputs":[{"name":"_lp_token","type":"address"},{"name":"_distributor","type":"address"},{"name":"_registry","type":"address"}],"outputs":[]},{"stateMutability":"view","type":"function","name":"decimals","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":288},{"stateMutability":"view","type":"function","name":"integrate_checkpoint","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":4624},{"stateMutability":"nonpayable","type":"function","name":"commit_smart_wallet_checker","inputs":[{"name":"addr","type":"address"}],"outputs":[],"gas":39995},{"stateMutability":"nonpayable","type":"function","name":"apply_smart_wallet_checker","inputs":[],"outputs":[],"gas":42022},{"stateMutability":"nonpayable","type":"function","name":"user_checkpoint","inputs":[{"name":"addr","type":"address"}],"outputs":[{"name":"","type":"bool"}],"gas":3138012},{"stateMutability":"nonpayable","type":"function","name":"claimable_tokens","inputs":[{"name":"addr","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":3051019},{"stateMutability":"nonpayable","type":"function","name":"kick","inputs":[{"name":"addr","type":"address"}],"outputs":[],"gas":3152393},{"stateMutability":"nonpayable","type":"function","name":"deposit","inputs":[{"name":"_value","type":"uint256"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"deposit","inputs":[{"name":"_value","type":"uint256"},{"name":"_addr","type":"address"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"deposit","inputs":[{"name":"_value","type":"uint256"},{"name":"_addr","type":"address"},{"name":"args","type":"bytes"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"withdraw","inputs":[{"name":"_value","type":"uint256"}],"outputs":[],"gas":3271842},{"stateMutability":"nonpayable","type":"function","name":"transfer","inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}],"gas":12689444},{"stateMutability":"nonpayable","type":"function","name":"transferFrom","inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}],"gas":12727394},{"stateMutability":"nonpayable","type":"function","name":"approve","inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}],"gas":46010},{"stateMutability":"nonpayable","type":"function","name":"increaseAllowance","inputs":[{"name":"_spender","type":"address"},{"name":"_added_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}],"gas":48551},{"stateMutability":"nonpayable","type":"function","name":"decreaseAllowance","inputs":[{"name":"_spender","type":"address"},{"name":"_subtracted_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}],"gas":40629},{"stateMutability":"nonpayable","type":"function","name":"set_killed","inputs":[{"name":"_is_killed","type":"bool"}],"outputs":[],"gas":40355},{"stateMutability":"view","type":"function","name":"distributor","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":2838},{"stateMutability":"view","type":"function","name":"lix_token","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":2868},{"stateMutability":"view","type":"function","name":"lp_token","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":2898},{"stateMutability":"view","type":"function","name":"controller","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":2928},{"stateMutability":"view","type":"function","name":"voting_escrow","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":2958},{"stateMutability":"view","type":"function","name":"future_epoch_time","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":2988},{"stateMutability":"view","type":"function","name":"balanceOf","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":3233},{"stateMutability":"view","type":"function","name":"totalSupply","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3048},{"stateMutability":"view","type":"function","name":"allowance","inputs":[{"name":"arg0","type":"address"},{"name":"arg1","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":3508},{"stateMutability":"view","type":"function","name":"name","inputs":[],"outputs":[{"name":"","type":"string"}],"gas":13410},{"stateMutability":"view","type":"function","name":"symbol","inputs":[],"outputs":[{"name":"","type":"string"}],"gas":11163},{"stateMutability":"view","type":"function","name":"working_balances","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":3383},{"stateMutability":"view","type":"function","name":"working_supply","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3198},{"stateMutability":"view","type":"function","name":"period","inputs":[],"outputs":[{"name":"","type":"int128"}],"gas":3228},{"stateMutability":"view","type":"function","name":"period_timestamp","inputs":[{"name":"arg0","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}],"gas":3367},{"stateMutability":"view","type":"function","name":"integrate_inv_supply","inputs":[{"name":"arg0","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}],"gas":3397},{"stateMutability":"view","type":"function","name":"integrate_inv_supply_of","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":3533},{"stateMutability":"view","type":"function","name":"integrate_checkpoint_of","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":3563},{"stateMutability":"view","type":"function","name":"integrate_fraction","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":3593},{"stateMutability":"view","type":"function","name":"distribution_rate","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3408},{"stateMutability":"view","type":"function","name":"future_smart_wallet_checker","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":3438},{"stateMutability":"view","type":"function","name":"smart_wallet_checker","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":3468},{"stateMutability":"view","type":"function","name":"registry","inputs":[],"outputs":[{"name":"","type":"address"}],"gas":3498},{"stateMutability":"view","type":"function","name":"is_killed","inputs":[],"outputs":[{"name":"","type":"bool"}],"gas":3528}]

60606122bc6101403960206122bc60c03960c05160a01c1561002057600080fd5b602060206122bc0160c03960c05160a01c1561003b57600080fd5b602060406122bc0160c03960c05160a01c1561005657600080fd5b606061026060046395d89b416102005261021c610140515afa61007857600080fd5b603f3d1161008557600080fd5b601b6102606102605101511061009a57600080fd5b6000506102808051602001806101a08284600060045af16100ba57600080fd5b50506000600e610200527f4c697869722046696e616e63652000000000000000000000000000000000000061022052610200600e806020846102c001018260208501600060045af15050805182019150506101a0601a806020846102c001018260208501600060045af1505080518201915050600e610260527f204761756765204465706f73697400000000000000000000000000000000000061028052610260600e806020846102c001018260208501600060045af1505080518201915050806102c0526102c0905080600960c052602060c020602082510161012060006003818352015b826101205160200211156101b3576101d5565b61012051602002850151610120518501555b81516001018083528114156101a0575b50505050505060006101a0601a8060208461026001018260208501600060045af15050805182019150506006610200527f2d676175676500000000000000000000000000000000000000000000000000006102205261020060068060208461026001018260208501600060045af15050805182019150508061026052610260905080600a60c052602060c020602082510161012060006002818352015b82610120516020021115610285576102a7565b61012051602002850151610120518501555b8151600101808352811415610272575b5050505050506020610280600463777854796102205261023c610160515afa6102cf57600080fd5b601f3d116102dc57600080fd5b600050610280516102005260206102a0600463f77c47916102405261025c610160515afa61030957600080fd5b601f3d1161031657600080fd5b6000506102a05161022052610140516002556101605160005561018051601655610200516001556102205160035560206102a0600463dfe050316102405261025c610220515afa61036657600080fd5b601f3d1161037357600080fd5b6000506102a05160045542600e60c052602060c0205560206102a06004632c4e722e6102405261025c610160515afa6103ab57600080fd5b601f3d116103b857600080fd5b6000506102a05160135560206102a0600463b26b238e6102405261025c6000610160515af16103e657600080fd5b601f3d116103f357600080fd5b6000506102a0516005556122a456600436101561000d57611378565b600035601c52600051341561002157600080fd5b63313ce56781141561003857601260005260206000f35b63d31f3f6d81141561007557600d546c01431e0fae6d7217caa0000000811061006057600080fd5b600e60c052602060c020015460005260206000f35b6357f901e28114156100dc5760043560a01c1561009157600080fd5b60206101c0602463b1091d3361014052336101605261015c6016545afa6100b757600080fd5b601f3d116100c457600080fd5b6000506101c0516100d457600080fd5b600435601455005b638e5b490f8114156101335760206101c0602463b1091d3361014052336101605261015c6016545afa61010e57600080fd5b601f3d1161011b57600080fd5b6000506101c05161012b57600080fd5b601454601555005b634b8200938114156101cc5760043560a01c1561014f57600080fd5b600435331415610160576001610166565b60005433145b61016f57600080fd5b60043561014052610140516006580161168c565b60005060043561014052600660043560e05260c052604060c02054610160526007546101805261018051610160516101405160065801611461565b600050600160005260206000f35b633313458381141561026e5760043560a01c156101e857600080fd5b60043561014052610140516006580161168c565b600050601260043560e05260c052604060c0205460206101e06044638d09ef336101405260043561016052306101805261015c6000545afa61023d57600080fd5b601f3d1161024a57600080fd5b6000506101e0518082101561025e57600080fd5b8082039050905060005260206000f35b6396c551758114156104735760043560a01c1561028a57600080fd5b60045461014052601160043560e05260c052604060c020546101605260206102e0604463da020a1861024052600435610260526020610220602463010ae7576101a0526004356101c0526101bc610140515afa6102e657600080fd5b601f3d116102f357600080fd5b600050610220516102805261025c610140515afa61031057600080fd5b601f3d1161031d57600080fd5b6000506102e05161018052600660043560e05260c052604060c020546101a05260206102e060246370a08231610260526004356102805261027c610140515afa61036657600080fd5b601f3d1161037357600080fd5b6000506102e0511515610387576001610391565b6101605161018051115b61039a57600080fd5b6101a051602880820282158284830414176103b457600080fd5b80905090509050606480820490509050600b60043560e05260c052604060c02054116103df57600080fd5b6101405161016051610180516101a0516004356101c0526101c0516006580161168c565b6101a0526101805261016052610140526000506101405161016051610180516101a0516004356101c052600660043560e05260c052604060c020546101e05260075461020052610200516101e0516101c05160065801611461565b6101a052610180526101605261014052600050005b63b6b55f258114156104ae5733610140526000610220526102208051602001806101608284600060045af16104a757600080fd5b505061055c565b636e553f658114156104ff576000610260526102608051602001806101608284600060045af16104dd57600080fd5b505060243560a01c156104ef57600080fd5b602060246101403760005061055c565b63faa9bce98114156105575760243560a01c1561051b57600080fd5b602060246101403760a060443560040161016037608060443560040135111561054357600080fd5b60c06044356004016101603760005061055c565b61095b565b6018541561056957600080fd5b60016018556101405161016051610180516101a0516101c0516101e0516102005161022051610240516102605161028051336102a0526102a0516006580161137e565b61028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526000506101405161016051610180516101a0516101c0516101e0516102005161022051610240516102605161028051610140516102a0526102a0516006580161168c565b61028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052600050600060043518156108ee576007546102a0526102a0805160043581818301101561067457600080fd5b8082019050905081525060066101405160e05260c052604060c020546004358181830110156106a257600080fd5b808201905090506102c0526102c05160066101405160e05260c052604060c020556102a0516007556101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c051610140516102e0526102c051610300526102a0516103205261032051610300516102e05160065801611461565b6102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405260005060006101605118156108a557600060046102e0527fd505accf00000000000000000000000000000000000000000000000000000000610300526102e060048060208461034001018260208501600060045af1505080518201915050610140516020826103400101526020810190503060208261034001015260208101905060043560208261034001015260208101905061016060808060208461034001018260208501600060045af1505080518201915050806103405261034090508051602001806104808284600060045af161083857600080fd5b505060006000610480516104a060006002545af161085557600080fd5b60206103a060646323b872dd6102e05261014051610300523061032052600435610340526102fc60006002545af161088c57600080fd5b601f3d1161089957600080fd5b6000506103a0506108ee565b60206103a060646323b872dd6102e05233610300523061032052600435610340526102fc60006002545af16108d957600080fd5b601f3d116108e657600080fd5b6000506103a0505b6004356102a052610140517fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c60206102a0a26004356102a0526101405160007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206102a0a36000601855005b632e1a7d4d811415610aeb576018541561097457600080fd5b60016018553361014052610140516006580161168c565b60005060006004351815610a8457600754610140526101408051600435808210156109b557600080fd5b8082039050905081525060063360e05260c052604060c02054600435808210156109de57600080fd5b80820390509050610160526101605160063360e05260c052604060c020556101405160075561014051610160513361018052610160516101a052610140516101c0526101c0516101a0516101805160065801611461565b61016052610140526000506020610220604463a9059cbb61018052336101a0526004356101c05261019c60006002545af1610a6f57600080fd5b601f3d11610a7c57600080fd5b600050610220505b60043561014052337f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243646020610140a2600435610140526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610140a36000601855005b63a9059cbb811415610b6b5760185415610b0457600080fd5b600160185560043560a01c15610b1957600080fd5b60043561014052610140516006580161137e565b6000503361014052600435610160526024356101805261018051610160516101405160065801611c87565b6000506001600052600060185560206000f35b6323b872dd811415610c8a5760185415610b8457600080fd5b600160185560043560a01c15610b9957600080fd5b60243560a01c15610ba957600080fd5b60243561014052610140516006580161137e565b600050600860043560e05260c052604060c0203360e05260c052604060c02054610140527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610140511815610c45576101405160443580821015610c2057600080fd5b80820390509050600860043560e05260c052604060c0203360e05260c052604060c020555b6101405160043561016052602435610180526044356101a0526101a051610180516101605160065801611c87565b610140526000506001600052600060185560206000f35b63095ea7b3811415610d1a5760043560a01c15610ca657600080fd5b60043561014052610140516006580161137e565b60005060243560083360e05260c052604060c02060043560e05260c052604060c0205560243561014052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610140a3600160005260206000f35b6339509351811415610de65760043560a01c15610d3657600080fd5b60043561014052610140516006580161137e565b60005060083360e05260c052604060c02060043560e05260c052604060c02054602435818183011015610d7c57600080fd5b80820190509050610140526101405160083360e05260c052604060c02060043560e05260c052604060c020556101405161016052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610160a3600160005260206000f35b63a457c2d7811415610e995760043560a01c15610e0257600080fd5b60083360e05260c052604060c02060043560e05260c052604060c0205460243580821015610e2f57600080fd5b80820390509050610140526101405160083360e05260c052604060c02060043560e05260c052604060c020556101405161016052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610160a3600160005260206000f35b6390b22997811415610f005760043560011c15610eb557600080fd5b60206101c0602463b1091d3361014052336101605261015c6016545afa610edb57600080fd5b601f3d11610ee857600080fd5b6000506101c051610ef857600080fd5b600435601755005b63bfe10928811415610f185760005460005260206000f35b6357cd3d42811415610f305760015460005260206000f35b6382c63066811415610f485760025460005260206000f35b63f77c4791811415610f605760035460005260206000f35b63dfe05031811415610f785760045460005260206000f35b63be5d1be9811415610f905760055460005260206000f35b6370a08231811415610fc65760043560a01c15610fac57600080fd5b600660043560e05260c052604060c0205460005260206000f35b6318160ddd811415610fde5760075460005260206000f35b63dd62ed3e8114156110325760043560a01c15610ffa57600080fd5b60243560a01c1561100a57600080fd5b600860043560e05260c052604060c02060243560e05260c052604060c0205460005260206000f35b6306fdde038114156110d75760098060c052602060c020610180602082540161012060006003818352015b8261012051602002111561107057611092565b61012051850154610120516020028501525b815160010180835281141561105d575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f35b6395d89b4181141561117c57600a8060c052602060c020610180602082540161012060006002818352015b8261012051602002111561111557611137565b61012051850154610120516020028501525b8151600101808352811415611102575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f35b6313ecb1ca8114156111b25760043560a01c1561119857600080fd5b600b60043560e05260c052604060c0205460005260206000f35b6317e280898114156111ca57600c5460005260206000f35b63ef78d4fd8114156111e257600d5460005260206000f35b637598108c81141561121f576004356c01431e0fae6d7217caa0000000811061120a57600080fd5b600e60c052602060c020015460005260206000f35b63fec8ee0c81141561125c576004356c01431e0fae6d7217caa0000000811061124757600080fd5b600f60c052602060c020015460005260206000f35b63de263bfa8114156112925760043560a01c1561127857600080fd5b601060043560e05260c052604060c0205460005260206000f35b639bd324f28114156112c85760043560a01c156112ae57600080fd5b601160043560e05260c052604060c0205460005260206000f35b63094007078114156112fe5760043560a01c156112e457600080fd5b601260043560e05260c052604060c0205460005260206000f35b63248a0dac8114156113165760135460005260206000f35b638ff36fd181141561132e5760145460005260206000f35b637175d4f78114156113465760155460005260206000f35b637b10399981141561135e5760165460005260206000f35b639c868ac08114156113765760175460005260206000f35b505b60006000fd5b61016052610140526000610140513b111561145b576015546101805260006101805118156113f1576020610220602463c23697a86101a052610140516101c0526101bc6000610180515af16113d257600080fd5b601f3d116113df57600080fd5b60005061022051156113f15761016051565b6308c379a06101a05260206101c05260256101e0527f536d61727420636f6e7472616374206465706f7369746f7273206e6f7420616c610200527f6c6f776564000000000000000000000000000000000000000000000000000000610220526101e05060846101bcfd5b61016051565b6101a0526101405261016052610180526004546101c052602061028060246370a0823161020052610140516102205261021c6101c0515afa6114a257600080fd5b601f3d116114af57600080fd5b600050610280516101e052602061028060046318160ddd6102205261023c6101c0515afa6114dc57600080fd5b601f3d116114e957600080fd5b6000506102805161020052610160516028808202821582848304141761150e57600080fd5b809050905090506064808204905090506102205260006102005111156115ab576102208051610180516101e051808202821582848304141761154f57600080fd5b8090509050905061020051808061156557600080fd5b820490509050603c808202821582848304141761158157600080fd5b809050905090506064808204905090508181830110156115a057600080fd5b808201905090508152505b6101605161022051808211156115c157806115c3565b815b9050905061022052600b6101405160e05260c052604060c020546102405261022051600b6101405160e05260c052604060c02055600c546102205181818301101561160d57600080fd5b80820190509050610240518082101561162557600080fd5b808203905090506102605261026051600c556101405161028052610160516102a052610180516102c052610220516102e05261026051610300527f7ecd84343f76a23d2227290e0288da3251b045541698e575a5515af4f04197a360a0610280a16101a051565b6101605261014052600d5461018052610180516c01431e0fae6d7217caa000000081106116b857600080fd5b600e60c052602060c02001546101a052610180516c01431e0fae6d7217caa000000081106116e557600080fd5b600f60c052602060c02001546101c0526013546101e0526101e05161020052600554610220526101a0516102205110151561179c576000546102405260206102c0600463b26b238e6102605261027c60006000545af161174457600080fd5b601f3d1161175157600080fd5b6000506102c05160055560206102c06004632c4e722e6102605261027c6000545afa61177c57600080fd5b601f3d1161178957600080fd5b6000506102c05161020052610200516013555b601754156117ab5760006101e0525b6101a051421115611b3257600c546102405260035461026052610260513b6117d257600080fd5b60006000602463615e523761028052306102a05261029c6000610260515af16117fa57600080fd5b6101a051610280526101a05162093a8081818301101561181957600080fd5b8082019050905062093a808082049050905062093a80808202821582848304141761184357600080fd5b809050905090504280821115611859578061185b565b815b905090506102a0526102c060006101f4818352015b6102a051610280518082101561188557600080fd5b808203905090506102e05260206103c0604463d3078c946103205230610340526102805162093a808082049050905062093a8080820282158284830414176118cc57600080fd5b809050905090506103605261033c610260515afa6118e957600080fd5b601f3d116118f657600080fd5b6000506103c051610300526000610240511115611acf57610280516102205110151561192a576102a051610220511061192d565b60005b15611a59576101c080516101e05161030051808202821582848304141761195357600080fd5b8090509050905061022051610280518082101561196f57600080fd5b80820390509050808202821582848304141761198a57600080fd5b809050905090506102405180806119a057600080fd5b8204905090508181830110156119b557600080fd5b80820190509050815250610200516101e0526101c080516101e0516103005180820282158284830414176119e857600080fd5b809050905090506102a0516102205180821015611a0457600080fd5b808203905090508082028215828483041417611a1f57600080fd5b80905090509050610240518080611a3557600080fd5b820490509050818183011015611a4a57600080fd5b80820190509050815250611acf565b6101c080516101e051610300518082028215828483041417611a7a57600080fd5b809050905090506102e0518082028215828483041417611a9957600080fd5b80905090509050610240518080611aaf57600080fd5b820490509050818183011015611ac457600080fd5b808201905090508152505b426102a0511415611adf57611b2f565b6102a051610280526102a05162093a80818183011015611afe57600080fd5b808201905090504280821115611b145780611b16565b815b905090506102a0525b8151600101808352811415611870575b50505b6101808051600180820180806000811215611b4957195b607f1c15611b5657600080fd5b90509050905081525061018051600d5542610180516c01431e0fae6d7217caa00000008110611b8457600080fd5b600e60c052602060c02001556101c051610180516c01431e0fae6d7217caa00000008110611bb157600080fd5b600f60c052602060c0200155600b6101405160e05260c052604060c020546102405260126101405160e05260c052604060c0208054610240516101c05160106101405160e05260c052604060c0205480821015611c0d57600080fd5b808203905090508082028215828483041417611c2857600080fd5b80905090509050670de0b6b3a764000080820490509050818183011015611c4e57600080fd5b808201905090508155506101c05160106101405160e05260c052604060c020554260116101405160e05260c052604060c0205561016051565b6101a0526101405261016052610180526101405161016051610180516101a051610140516101c0526101c0516006580161168c565b6101a0526101805261016052610140526000506101405161016051610180516101a051610160516101c0526101c0516006580161168c565b6101a0526101805261016052610140526000506000610180511815611e65576007546101c05260066101405160e05260c052604060c020546101805180821015611d3d57600080fd5b808203905090506101e0526101e05160066101405160e05260c052604060c020556101405161016051610180516101a0516101c0516101e05161014051610200526101e051610220526101c0516102405261024051610220516102005160065801611461565b6101e0526101c0526101a05261018052610160526101405260005060066101605160e05260c052604060c0205461018051818183011015611de357600080fd5b808201905090506101e0526101e05160066101605160e05260c052604060c020556101405161016051610180516101a0516101c0516101e05161016051610200526101e051610220526101c0516102405261024051610220516102005160065801611461565b6101e0526101c0526101a0526101805261016052610140526000505b610180516101c05261016051610140517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101c0a36101a051565b6104026122a4036104026000396104026122a4036000f30000000000000000000000009e815d1c9a4be458e7f9a0add703e7545eda7c280000000000000000000000001af8ef20e0f447329933753baa28353efe21f53400000000000000000000000018bf8a3ee39be5730189a0c88d90f744e3c55b20

Deployed Bytecode

0x600436101561000d57611378565b600035601c52600051341561002157600080fd5b63313ce56781141561003857601260005260206000f35b63d31f3f6d81141561007557600d546c01431e0fae6d7217caa0000000811061006057600080fd5b600e60c052602060c020015460005260206000f35b6357f901e28114156100dc5760043560a01c1561009157600080fd5b60206101c0602463b1091d3361014052336101605261015c6016545afa6100b757600080fd5b601f3d116100c457600080fd5b6000506101c0516100d457600080fd5b600435601455005b638e5b490f8114156101335760206101c0602463b1091d3361014052336101605261015c6016545afa61010e57600080fd5b601f3d1161011b57600080fd5b6000506101c05161012b57600080fd5b601454601555005b634b8200938114156101cc5760043560a01c1561014f57600080fd5b600435331415610160576001610166565b60005433145b61016f57600080fd5b60043561014052610140516006580161168c565b60005060043561014052600660043560e05260c052604060c02054610160526007546101805261018051610160516101405160065801611461565b600050600160005260206000f35b633313458381141561026e5760043560a01c156101e857600080fd5b60043561014052610140516006580161168c565b600050601260043560e05260c052604060c0205460206101e06044638d09ef336101405260043561016052306101805261015c6000545afa61023d57600080fd5b601f3d1161024a57600080fd5b6000506101e0518082101561025e57600080fd5b8082039050905060005260206000f35b6396c551758114156104735760043560a01c1561028a57600080fd5b60045461014052601160043560e05260c052604060c020546101605260206102e0604463da020a1861024052600435610260526020610220602463010ae7576101a0526004356101c0526101bc610140515afa6102e657600080fd5b601f3d116102f357600080fd5b600050610220516102805261025c610140515afa61031057600080fd5b601f3d1161031d57600080fd5b6000506102e05161018052600660043560e05260c052604060c020546101a05260206102e060246370a08231610260526004356102805261027c610140515afa61036657600080fd5b601f3d1161037357600080fd5b6000506102e0511515610387576001610391565b6101605161018051115b61039a57600080fd5b6101a051602880820282158284830414176103b457600080fd5b80905090509050606480820490509050600b60043560e05260c052604060c02054116103df57600080fd5b6101405161016051610180516101a0516004356101c0526101c0516006580161168c565b6101a0526101805261016052610140526000506101405161016051610180516101a0516004356101c052600660043560e05260c052604060c020546101e05260075461020052610200516101e0516101c05160065801611461565b6101a052610180526101605261014052600050005b63b6b55f258114156104ae5733610140526000610220526102208051602001806101608284600060045af16104a757600080fd5b505061055c565b636e553f658114156104ff576000610260526102608051602001806101608284600060045af16104dd57600080fd5b505060243560a01c156104ef57600080fd5b602060246101403760005061055c565b63faa9bce98114156105575760243560a01c1561051b57600080fd5b602060246101403760a060443560040161016037608060443560040135111561054357600080fd5b60c06044356004016101603760005061055c565b61095b565b6018541561056957600080fd5b60016018556101405161016051610180516101a0516101c0516101e0516102005161022051610240516102605161028051336102a0526102a0516006580161137e565b61028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526000506101405161016051610180516101a0516101c0516101e0516102005161022051610240516102605161028051610140516102a0526102a0516006580161168c565b61028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052600050600060043518156108ee576007546102a0526102a0805160043581818301101561067457600080fd5b8082019050905081525060066101405160e05260c052604060c020546004358181830110156106a257600080fd5b808201905090506102c0526102c05160066101405160e05260c052604060c020556102a0516007556101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c051610140516102e0526102c051610300526102a0516103205261032051610300516102e05160065801611461565b6102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405260005060006101605118156108a557600060046102e0527fd505accf00000000000000000000000000000000000000000000000000000000610300526102e060048060208461034001018260208501600060045af1505080518201915050610140516020826103400101526020810190503060208261034001015260208101905060043560208261034001015260208101905061016060808060208461034001018260208501600060045af1505080518201915050806103405261034090508051602001806104808284600060045af161083857600080fd5b505060006000610480516104a060006002545af161085557600080fd5b60206103a060646323b872dd6102e05261014051610300523061032052600435610340526102fc60006002545af161088c57600080fd5b601f3d1161089957600080fd5b6000506103a0506108ee565b60206103a060646323b872dd6102e05233610300523061032052600435610340526102fc60006002545af16108d957600080fd5b601f3d116108e657600080fd5b6000506103a0505b6004356102a052610140517fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c60206102a0a26004356102a0526101405160007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206102a0a36000601855005b632e1a7d4d811415610aeb576018541561097457600080fd5b60016018553361014052610140516006580161168c565b60005060006004351815610a8457600754610140526101408051600435808210156109b557600080fd5b8082039050905081525060063360e05260c052604060c02054600435808210156109de57600080fd5b80820390509050610160526101605160063360e05260c052604060c020556101405160075561014051610160513361018052610160516101a052610140516101c0526101c0516101a0516101805160065801611461565b61016052610140526000506020610220604463a9059cbb61018052336101a0526004356101c05261019c60006002545af1610a6f57600080fd5b601f3d11610a7c57600080fd5b600050610220505b60043561014052337f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a94243646020610140a2600435610140526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610140a36000601855005b63a9059cbb811415610b6b5760185415610b0457600080fd5b600160185560043560a01c15610b1957600080fd5b60043561014052610140516006580161137e565b6000503361014052600435610160526024356101805261018051610160516101405160065801611c87565b6000506001600052600060185560206000f35b6323b872dd811415610c8a5760185415610b8457600080fd5b600160185560043560a01c15610b9957600080fd5b60243560a01c15610ba957600080fd5b60243561014052610140516006580161137e565b600050600860043560e05260c052604060c0203360e05260c052604060c02054610140527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610140511815610c45576101405160443580821015610c2057600080fd5b80820390509050600860043560e05260c052604060c0203360e05260c052604060c020555b6101405160043561016052602435610180526044356101a0526101a051610180516101605160065801611c87565b610140526000506001600052600060185560206000f35b63095ea7b3811415610d1a5760043560a01c15610ca657600080fd5b60043561014052610140516006580161137e565b60005060243560083360e05260c052604060c02060043560e05260c052604060c0205560243561014052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610140a3600160005260206000f35b6339509351811415610de65760043560a01c15610d3657600080fd5b60043561014052610140516006580161137e565b60005060083360e05260c052604060c02060043560e05260c052604060c02054602435818183011015610d7c57600080fd5b80820190509050610140526101405160083360e05260c052604060c02060043560e05260c052604060c020556101405161016052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610160a3600160005260206000f35b63a457c2d7811415610e995760043560a01c15610e0257600080fd5b60083360e05260c052604060c02060043560e05260c052604060c0205460243580821015610e2f57600080fd5b80820390509050610140526101405160083360e05260c052604060c02060043560e05260c052604060c020556101405161016052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610160a3600160005260206000f35b6390b22997811415610f005760043560011c15610eb557600080fd5b60206101c0602463b1091d3361014052336101605261015c6016545afa610edb57600080fd5b601f3d11610ee857600080fd5b6000506101c051610ef857600080fd5b600435601755005b63bfe10928811415610f185760005460005260206000f35b6357cd3d42811415610f305760015460005260206000f35b6382c63066811415610f485760025460005260206000f35b63f77c4791811415610f605760035460005260206000f35b63dfe05031811415610f785760045460005260206000f35b63be5d1be9811415610f905760055460005260206000f35b6370a08231811415610fc65760043560a01c15610fac57600080fd5b600660043560e05260c052604060c0205460005260206000f35b6318160ddd811415610fde5760075460005260206000f35b63dd62ed3e8114156110325760043560a01c15610ffa57600080fd5b60243560a01c1561100a57600080fd5b600860043560e05260c052604060c02060243560e05260c052604060c0205460005260206000f35b6306fdde038114156110d75760098060c052602060c020610180602082540161012060006003818352015b8261012051602002111561107057611092565b61012051850154610120516020028501525b815160010180835281141561105d575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f35b6395d89b4181141561117c57600a8060c052602060c020610180602082540161012060006002818352015b8261012051602002111561111557611137565b61012051850154610120516020028501525b8151600101808352811415611102575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f35b6313ecb1ca8114156111b25760043560a01c1561119857600080fd5b600b60043560e05260c052604060c0205460005260206000f35b6317e280898114156111ca57600c5460005260206000f35b63ef78d4fd8114156111e257600d5460005260206000f35b637598108c81141561121f576004356c01431e0fae6d7217caa0000000811061120a57600080fd5b600e60c052602060c020015460005260206000f35b63fec8ee0c81141561125c576004356c01431e0fae6d7217caa0000000811061124757600080fd5b600f60c052602060c020015460005260206000f35b63de263bfa8114156112925760043560a01c1561127857600080fd5b601060043560e05260c052604060c0205460005260206000f35b639bd324f28114156112c85760043560a01c156112ae57600080fd5b601160043560e05260c052604060c0205460005260206000f35b63094007078114156112fe5760043560a01c156112e457600080fd5b601260043560e05260c052604060c0205460005260206000f35b63248a0dac8114156113165760135460005260206000f35b638ff36fd181141561132e5760145460005260206000f35b637175d4f78114156113465760155460005260206000f35b637b10399981141561135e5760165460005260206000f35b639c868ac08114156113765760175460005260206000f35b505b60006000fd5b61016052610140526000610140513b111561145b576015546101805260006101805118156113f1576020610220602463c23697a86101a052610140516101c0526101bc6000610180515af16113d257600080fd5b601f3d116113df57600080fd5b60005061022051156113f15761016051565b6308c379a06101a05260206101c05260256101e0527f536d61727420636f6e7472616374206465706f7369746f7273206e6f7420616c610200527f6c6f776564000000000000000000000000000000000000000000000000000000610220526101e05060846101bcfd5b61016051565b6101a0526101405261016052610180526004546101c052602061028060246370a0823161020052610140516102205261021c6101c0515afa6114a257600080fd5b601f3d116114af57600080fd5b600050610280516101e052602061028060046318160ddd6102205261023c6101c0515afa6114dc57600080fd5b601f3d116114e957600080fd5b6000506102805161020052610160516028808202821582848304141761150e57600080fd5b809050905090506064808204905090506102205260006102005111156115ab576102208051610180516101e051808202821582848304141761154f57600080fd5b8090509050905061020051808061156557600080fd5b820490509050603c808202821582848304141761158157600080fd5b809050905090506064808204905090508181830110156115a057600080fd5b808201905090508152505b6101605161022051808211156115c157806115c3565b815b9050905061022052600b6101405160e05260c052604060c020546102405261022051600b6101405160e05260c052604060c02055600c546102205181818301101561160d57600080fd5b80820190509050610240518082101561162557600080fd5b808203905090506102605261026051600c556101405161028052610160516102a052610180516102c052610220516102e05261026051610300527f7ecd84343f76a23d2227290e0288da3251b045541698e575a5515af4f04197a360a0610280a16101a051565b6101605261014052600d5461018052610180516c01431e0fae6d7217caa000000081106116b857600080fd5b600e60c052602060c02001546101a052610180516c01431e0fae6d7217caa000000081106116e557600080fd5b600f60c052602060c02001546101c0526013546101e0526101e05161020052600554610220526101a0516102205110151561179c576000546102405260206102c0600463b26b238e6102605261027c60006000545af161174457600080fd5b601f3d1161175157600080fd5b6000506102c05160055560206102c06004632c4e722e6102605261027c6000545afa61177c57600080fd5b601f3d1161178957600080fd5b6000506102c05161020052610200516013555b601754156117ab5760006101e0525b6101a051421115611b3257600c546102405260035461026052610260513b6117d257600080fd5b60006000602463615e523761028052306102a05261029c6000610260515af16117fa57600080fd5b6101a051610280526101a05162093a8081818301101561181957600080fd5b8082019050905062093a808082049050905062093a80808202821582848304141761184357600080fd5b809050905090504280821115611859578061185b565b815b905090506102a0526102c060006101f4818352015b6102a051610280518082101561188557600080fd5b808203905090506102e05260206103c0604463d3078c946103205230610340526102805162093a808082049050905062093a8080820282158284830414176118cc57600080fd5b809050905090506103605261033c610260515afa6118e957600080fd5b601f3d116118f657600080fd5b6000506103c051610300526000610240511115611acf57610280516102205110151561192a576102a051610220511061192d565b60005b15611a59576101c080516101e05161030051808202821582848304141761195357600080fd5b8090509050905061022051610280518082101561196f57600080fd5b80820390509050808202821582848304141761198a57600080fd5b809050905090506102405180806119a057600080fd5b8204905090508181830110156119b557600080fd5b80820190509050815250610200516101e0526101c080516101e0516103005180820282158284830414176119e857600080fd5b809050905090506102a0516102205180821015611a0457600080fd5b808203905090508082028215828483041417611a1f57600080fd5b80905090509050610240518080611a3557600080fd5b820490509050818183011015611a4a57600080fd5b80820190509050815250611acf565b6101c080516101e051610300518082028215828483041417611a7a57600080fd5b809050905090506102e0518082028215828483041417611a9957600080fd5b80905090509050610240518080611aaf57600080fd5b820490509050818183011015611ac457600080fd5b808201905090508152505b426102a0511415611adf57611b2f565b6102a051610280526102a05162093a80818183011015611afe57600080fd5b808201905090504280821115611b145780611b16565b815b905090506102a0525b8151600101808352811415611870575b50505b6101808051600180820180806000811215611b4957195b607f1c15611b5657600080fd5b90509050905081525061018051600d5542610180516c01431e0fae6d7217caa00000008110611b8457600080fd5b600e60c052602060c02001556101c051610180516c01431e0fae6d7217caa00000008110611bb157600080fd5b600f60c052602060c0200155600b6101405160e05260c052604060c020546102405260126101405160e05260c052604060c0208054610240516101c05160106101405160e05260c052604060c0205480821015611c0d57600080fd5b808203905090508082028215828483041417611c2857600080fd5b80905090509050670de0b6b3a764000080820490509050818183011015611c4e57600080fd5b808201905090508155506101c05160106101405160e05260c052604060c020554260116101405160e05260c052604060c0205561016051565b6101a0526101405261016052610180526101405161016051610180516101a051610140516101c0526101c0516006580161168c565b6101a0526101805261016052610140526000506101405161016051610180516101a051610160516101c0526101c0516006580161168c565b6101a0526101805261016052610140526000506000610180511815611e65576007546101c05260066101405160e05260c052604060c020546101805180821015611d3d57600080fd5b808203905090506101e0526101e05160066101405160e05260c052604060c020556101405161016051610180516101a0516101c0516101e05161014051610200526101e051610220526101c0516102405261024051610220516102005160065801611461565b6101e0526101c0526101a05261018052610160526101405260005060066101605160e05260c052604060c0205461018051818183011015611de357600080fd5b808201905090506101e0526101e05160066101605160e05260c052604060c020556101405161016051610180516101a0516101c0516101e05161016051610200526101e051610220526101c0516102405261024051610220516102005160065801611461565b6101e0526101c0526101a0526101805261016052610140526000505b610180516101c05261016051610140517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101c0a36101a05156

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.