ETH Price: $3,407.65 (+3.42%)

Token

VEGETA (VEGETA)
 

Overview

Max Total Supply

19,708.921613951001878998 VEGETA

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Event Horizon: Deployer
Balance
561.195465399776529798 VEGETA

Value
$0.00
0xf3cd7261f2515c815d2bc0bc509ff38e45e05d6d
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.

Contract Source Code Verified (Exact Match)

Contract Name:
VEGETADelegator

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-09-30
*/

pragma solidity 0.5.17;

pragma experimental ABIEncoderV2;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


// Storage for a VEGETA token
contract VEGETATokenStorage {

    using SafeMath for uint256;

    /**
     * @dev Guard variable for re-entrancy checks. Not currently used
     */
    bool internal _notEntered;

    /**
     * @notice EIP-20 token name for this token
     */
    string public name;

    /**
     * @notice EIP-20 token symbol for this token
     */
    string public symbol;

    /**
     * @notice EIP-20 token decimals for this token
     */
    uint8 public decimals;

    /**
     * @notice Governor for this contract
     */
    address public gov;

    /**
     * @notice Pending governance for this contract
     */
    address public pendingGov;

    /**
     * @notice Approved rebaser for this contract
     */
    address public rebaser;

    /**
     * @notice Reserve address of VEGETA protocol
     */
    address public incentivizer;

    /**
     * @notice Airdrop address of VEGETA protocol
     */
    address public airdrop;

    /**
     * @notice Total supply of VEGETAs
     */
    uint256 public totalSupply;

    /**
     * @notice Internal decimals used to handle scaling factor
     */
    uint256 public constant internalDecimals = 10**24;

    /**
     * @notice Used for percentage maths
     */
    uint256 public constant BASE = 10**18;

    /**
     * @notice Scaling factor that adjusts everyone's balances
     */
    uint256 public vegetasScalingFactor;

    mapping (address => uint256) internal _vegetaBalances;

    mapping (address => mapping (address => uint256)) internal _allowedFragments;

    uint256 public initSupply;

}

contract VEGETAGovernanceStorage {
    /// @notice A record of each accounts delegate
    mapping (address => address) internal _delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;
}

contract VEGETATokenInterface is VEGETATokenStorage, VEGETAGovernanceStorage {

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /**
     * @notice Event emitted when tokens are rebased
     */
    event Rebase(uint256 epoch, uint256 prevVegetasScalingFactor, uint256 newVegetasScalingFactor);

    /*** Gov Events ***/

    /**
     * @notice Event emitted when pendingGov is changed
     */
    event NewPendingGov(address oldPendingGov, address newPendingGov);

    /**
     * @notice Event emitted when gov is changed
     */
    event NewGov(address oldGov, address newGov);

    /**
     * @notice Sets the rebaser contract
     */
    event NewRebaser(address oldRebaser, address newRebaser);

    /**
     * @notice Sets the incentivizer contract
     */
    event NewIncentivizer(address oldIncentivizer, address newIncentivizer);

    /**
     * @notice Sets the airdrop contract
     */
    event NewAirdrop(address oldAirdrop, address newAirdrop);

    /* - ERC20 Events - */

    /**
     * @notice EIP20 Transfer event
     */
    event Transfer(address indexed from, address indexed to, uint amount);

    /**
     * @notice EIP20 Approval event
     */
    event Approval(address indexed owner, address indexed spender, uint amount);

    /* - Extra Events - */
    /**
     * @notice Tokens minted event
     */
    event Mint(address to, uint256 amount);

    // Public functions
    function transfer(address to, uint256 value) external returns(bool);
    function transferFrom(address from, address to, uint256 value) external returns(bool);
    function balanceOf(address who) external view returns(uint256);
    function balanceOfUnderlying(address who) external view returns(uint256);
    function allowance(address owner_, address spender) external view returns(uint256);
    function approve(address spender, uint256 value) external returns (bool);
    function increaseAllowance(address spender, uint256 addedValue) external returns (bool);
    function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool);
    function maxScalingFactor() external view returns (uint256);

    /* - Governance Functions - */
    function getPriorVotes(address account, uint blockNumber) external view returns (uint256);
    function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) external;
    function delegate(address delegatee) external;
    function delegates(address delegator) external view returns (address);
    function getCurrentVotes(address account) external view returns (uint256);

    /* - Permissioned/Governance functions - */
    function mint(address to, uint256 amount) external returns (bool);
    function rebase(uint256 epoch, uint256 indexDelta, bool positive) external returns (uint256);
    function _setRebaser(address rebaser_) external;
    function _setIncentivizer(address incentivizer_) external;
    function _setAirdrop(address airdrop_) external;
    function _setPendingGov(address pendingGov_) external;
    function _acceptGov() external;
}


contract VEGETAGovernanceToken is VEGETATokenInterface {

      /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegator The address to get delegatee for
     */
    function delegates(address delegator)
        external
        view
        returns (address)
    {
        return _delegates[delegator];
    }

   /**
    * @notice Delegate votes from `msg.sender` to `delegatee`
    * @param delegatee The address to delegate votes to
    */
    function delegate(address delegatee) external {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(
        address delegatee,
        uint nonce,
        uint expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    )
        external
    {
        bytes32 domainSeparator = keccak256(
            abi.encode(
                DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                getChainId(),
                address(this)
            )
        );

        bytes32 structHash = keccak256(
            abi.encode(
                DELEGATION_TYPEHASH,
                delegatee,
                nonce,
                expiry
            )
        );

        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                domainSeparator,
                structHash
            )
        );

        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "VEGETA::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "VEGETA::delegateBySig: invalid nonce");
        require(now <= expiry, "VEGETA::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account)
        external
        view
        returns (uint256)
    {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber)
        external
        view
        returns (uint256)
    {
        require(blockNumber < block.number, "VEGETA::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee)
        internal
    {
        address currentDelegate = _delegates[delegator];
        uint256 delegatorBalance = _vegetaBalances[delegator]; // balance of underlying VEGETAs (not scaled);
        _delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                // decrease old representative
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = srcRepOld.sub(amount);
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                // increase new representative
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = dstRepOld.add(amount);
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(
        address delegatee,
        uint32 nCheckpoints,
        uint256 oldVotes,
        uint256 newVotes
    )
        internal
    {
        uint32 blockNumber = safe32(block.number, "VEGETA::_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }
}

contract VEGETAToken is VEGETAGovernanceToken {
    // Modifiers
    modifier onlyGov() {
        require(msg.sender == gov);
        _;
    }

    modifier onlyRebaser() {
        require(msg.sender == rebaser);
        _;
    }

    modifier onlyMinter() {
        require(msg.sender == rebaser || msg.sender == incentivizer || msg.sender == gov || msg.sender == airdrop, "not minter");
        _;
    }

    modifier validRecipient(address to) {
        require(to != address(0x0));
        require(to != address(this));
        _;
    }

    function initialize(
        string memory name_,
        string memory symbol_,
        uint8 decimals_
    )
        public
    {
        require(vegetasScalingFactor == 0, "already initialized");
        name = name_;
        symbol = symbol_;
        decimals = decimals_;
    }


    /**
    * @notice Computes the current max scaling factor
    */
    function maxScalingFactor()
        external
        view
        returns (uint256)
    {
        return _maxScalingFactor();
    }

    function _maxScalingFactor()
        internal
        view
        returns (uint256)
    {
        // scaling factor can only go up to 2**256-1 = initSupply * vegetasScalingFactor
        // this is used to check if vegetasScalingFactor will be too high to compute balances when rebasing.
        return uint256(-1) / initSupply;
    }

    /**
    * @notice Mints new tokens, increasing totalSupply, initSupply, and a users balance.
    * @dev Limited to onlyMinter modifier
    */
    function mint(address to, uint256 amount)
        external
        onlyMinter
        returns (bool)
    {
        _mint(to, amount);
        return true;
    }

    function _mint(address to, uint256 amount)
        internal
    {
      // increase totalSupply
      totalSupply = totalSupply.add(amount);

      // get underlying value
      uint256 vegetaValue = amount.mul(internalDecimals).div(vegetasScalingFactor);

      // increase initSupply
      initSupply = initSupply.add(vegetaValue);

      // make sure the mint didnt push maxScalingFactor too low
      require(vegetasScalingFactor <= _maxScalingFactor(), "max scaling factor too low");

      // add balance
      _vegetaBalances[to] = _vegetaBalances[to].add(vegetaValue);

      // add delegates to the minter
      _moveDelegates(address(0), _delegates[to], vegetaValue);
      emit Mint(to, amount);
    }

    /* - ERC20 functionality - */

    /**
    * @dev Transfer tokens to a specified address.
    * @param to The address to transfer to.
    * @param value The amount to be transferred.
    * @return True on success, false otherwise.
    */
    function transfer(address to, uint256 value)
        external
        validRecipient(to)
        returns (bool)
    {
        // underlying balance is stored in vegetas, so divide by current scaling factor

        // note, this means as scaling factor grows, dust will be untransferrable.
        // minimum transfer value == vegetasScalingFactor / 1e24;

        // get amount in underlying
        uint256 vegetaValue = value.mul(internalDecimals).div(vegetasScalingFactor);

        // sub from balance of sender
        _vegetaBalances[msg.sender] = _vegetaBalances[msg.sender].sub(vegetaValue);

        // add to balance of receiver
        _vegetaBalances[to] = _vegetaBalances[to].add(vegetaValue);
        emit Transfer(msg.sender, to, value);

        _moveDelegates(_delegates[msg.sender], _delegates[to], vegetaValue);
        return true;
    }

    /**
    * @dev Transfer tokens from one address to another.
    * @param from The address you want to send tokens from.
    * @param to The address you want to transfer to.
    * @param value The amount of tokens to be transferred.
    */
    function transferFrom(address from, address to, uint256 value)
        external
        validRecipient(to)
        returns (bool)
    {
        // decrease allowance
        _allowedFragments[from][msg.sender] = _allowedFragments[from][msg.sender].sub(value);

        // get value in vegetas
        uint256 vegetaValue = value.mul(internalDecimals).div(vegetasScalingFactor);

        // sub from from
        _vegetaBalances[from] = _vegetaBalances[from].sub(vegetaValue);
        _vegetaBalances[to] = _vegetaBalances[to].add(vegetaValue);
        emit Transfer(from, to, value);

        _moveDelegates(_delegates[from], _delegates[to], vegetaValue);
        return true;
    }

    /**
    * @param who The address to query.
    * @return The balance of the specified address.
    */
    function balanceOf(address who)
      external
      view
      returns (uint256)
    {
      return _vegetaBalances[who].mul(vegetasScalingFactor).div(internalDecimals);
    }

    /** @notice Currently returns the internal storage amount
    * @param who The address to query.
    * @return The underlying balance of the specified address.
    */
    function balanceOfUnderlying(address who)
      external
      view
      returns (uint256)
    {
      return _vegetaBalances[who];
    }

    /**
     * @dev Function to check the amount of tokens that an owner has allowed to a spender.
     * @param owner_ The address which owns the funds.
     * @param spender The address which will spend the funds.
     * @return The number of tokens still available for the spender.
     */
    function allowance(address owner_, address spender)
        external
        view
        returns (uint256)
    {
        return _allowedFragments[owner_][spender];
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of
     * msg.sender. This method is included for ERC20 compatibility.
     * increaseAllowance and decreaseAllowance should be used instead.
     * Changing an allowance with this method brings the risk that someone may transfer both
     * the old and the new allowance - if they are both greater than zero - if a transfer
     * transaction is mined before the later approve() call is mined.
     *
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value)
        external
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner has allowed to a spender.
     * This method should be used instead of approve() to avoid the double approval vulnerability
     * described above.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        external
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] =
            _allowedFragments[msg.sender][spender].add(addedValue);
        emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner has allowed to a spender.
     *
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        external
        returns (bool)
    {
        uint256 oldValue = _allowedFragments[msg.sender][spender];
        if (subtractedValue >= oldValue) {
            _allowedFragments[msg.sender][spender] = 0;
        } else {
            _allowedFragments[msg.sender][spender] = oldValue.sub(subtractedValue);
        }
        emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
        return true;
    }

    /* - Governance Functions - */

    /** @notice sets the rebaser
     * @param rebaser_ The address of the rebaser contract to use for authentication.
     */
    function _setRebaser(address rebaser_)
        external
        onlyGov
    {
        address oldRebaser = rebaser;
        rebaser = rebaser_;
        emit NewRebaser(oldRebaser, rebaser_);
    }

    /** @notice sets the incentivizer
     * @param incentivizer_ The address of the rebaser contract to use for authentication.
     */
    function _setIncentivizer(address incentivizer_)
        external
        onlyGov
    {
        address oldIncentivizer = incentivizer;
        incentivizer = incentivizer_;
        emit NewIncentivizer(oldIncentivizer, incentivizer_);
    }

    /** @notice sets the airdrop
     * @param airdrop_ The address of the airdrop contract to use for authentication.
     */
    function _setAirdrop(address airdrop_)
        external
        onlyGov
    {
        address oldAirdrop = airdrop;
        airdrop = airdrop_;
        emit NewAirdrop(oldAirdrop, airdrop_);
    }

    /** @notice sets the pendingGov
     * @param pendingGov_ The address of the rebaser contract to use for authentication.
     */
    function _setPendingGov(address pendingGov_)
        external
        onlyGov
    {
        address oldPendingGov = pendingGov;
        pendingGov = pendingGov_;
        emit NewPendingGov(oldPendingGov, pendingGov_);
    }

    /** @notice lets msg.sender accept governance
     *
     */
    function _acceptGov()
        external
    {
        require(msg.sender == pendingGov, "!pending");
        address oldGov = gov;
        gov = pendingGov;
        pendingGov = address(0);
        emit NewGov(oldGov, gov);
    }

    /* - Extras - */

    /**
    * @notice Initiates a new rebase operation, provided the minimum time period has elapsed.
    *
    * @dev The supply adjustment equals (totalSupply * DeviationFromTargetRate) / rebaseLag
    *      Where DeviationFromTargetRate is (MarketOracleRate - targetRate) / targetRate
    *      and targetRate is CpiOracleRate / baseCpi
    */
    function rebase(
        uint256 epoch,
        uint256 indexDelta,
        bool positive
    )
        external
        onlyRebaser
        returns (uint256)
    {
        if (indexDelta == 0) {
          emit Rebase(epoch, vegetasScalingFactor, vegetasScalingFactor);
          return totalSupply;
        }

        uint256 prevVegetasScalingFactor = vegetasScalingFactor;

        if (!positive) {
           vegetasScalingFactor = vegetasScalingFactor.mul(BASE.sub(indexDelta)).div(BASE);
        } else {
            uint256 newScalingFactor = vegetasScalingFactor.mul(BASE.add(indexDelta)).div(BASE);
            if (newScalingFactor < _maxScalingFactor()) {
                vegetasScalingFactor = newScalingFactor;
            } else {
              vegetasScalingFactor = _maxScalingFactor();
            }
        }

        totalSupply = initSupply.mul(vegetasScalingFactor);
        emit Rebase(epoch, prevVegetasScalingFactor, vegetasScalingFactor);
        return totalSupply;
    }
}

contract VEGETA is VEGETAToken {
    /**
     * @notice Initialize the new money market
     * @param name_ ERC-20 name of this token
     * @param symbol_ ERC-20 symbol of this token
     * @param decimals_ ERC-20 decimal precision of this token
     */
    function initialize(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        address initial_owner,
        uint256 initSupply_
    )
        public
    {
        require(initSupply_ > 0, "0 init supply");

        super.initialize(name_, symbol_, decimals_);

        initSupply = initSupply_.mul(10**24/ (BASE));
        totalSupply = initSupply_;
        vegetasScalingFactor = BASE;
        _vegetaBalances[initial_owner] = initSupply_.mul(10**24 / (BASE));

        // owner renounces ownership after deployment as they need to set
        // rebaser and incentivizer, airdrop
        // gov = gov_;
    }
}


contract VEGETADelegationStorage {
    /**
     * @notice Implementation address for this contract
     */
    address public implementation;
}

contract VEGETADelegatorInterface is VEGETADelegationStorage {
    /**
     * @notice Emitted when implementation is changed
     */
    event NewImplementation(address oldImplementation, address newImplementation);

    /**
     * @notice Called by the gov to update the implementation of the delegator
     * @param implementation_ The address of the new implementation for delegation
     * @param allowResign Flag to indicate whether to call _resignImplementation on the old implementation
     * @param becomeImplementationData The encoded bytes data to be passed to _becomeImplementation
     */
    function _setImplementation(address implementation_, bool allowResign, bytes memory becomeImplementationData) public;
}

contract VEGETADelegateInterface is VEGETADelegationStorage {
    /**
     * @notice Called by the delegator on a delegate to initialize it for duty
     * @dev Should revert if any issues arise which make it unfit for delegation
     * @param data The encoded bytes data for any initialization
     */
    function _becomeImplementation(bytes memory data) public;

    /**
     * @notice Called by the delegator on a delegate to forfeit its responsibility
     */
    function _resignImplementation() public;
}


contract VEGETADelegate is VEGETA, VEGETADelegateInterface {
    /**
     * @notice Construct an empty delegate
     */
    constructor() public {}

    /**
     * @notice Called by the delegator on a delegate to initialize it for duty
     * @param data The encoded bytes data for any initialization
     */
    function _becomeImplementation(bytes memory data) public {
        // Shh -- currently unused
        data;

        // Shh -- we don't ever want this hook to be marked pure
        if (false) {
            implementation = address(0);
        }

        require(msg.sender == gov, "only the gov may call _becomeImplementation");
    }

    /**
     * @notice Called by the delegator on a delegate to forfeit its responsibility
     */
    function _resignImplementation() public {
        // Shh -- we don't ever want this hook to be marked pure
        if (false) {
            implementation = address(0);
        }

        require(msg.sender == gov, "only the gov may call _resignImplementation");
    }
}

contract VEGETADelegator is VEGETATokenInterface, VEGETADelegatorInterface {
    /**
     * @notice Construct a new VEGETA
     * @param name_ ERC-20 name of this token
     * @param symbol_ ERC-20 symbol of this token
     * @param decimals_ ERC-20 decimal precision of this token
     * @param initSupply_ Initial token amount
     * @param implementation_ The address of the implementation the contract delegates to
     * @param becomeImplementationData The encoded args for becomeImplementation
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_,
        uint256 initSupply_,
        address implementation_,
        bytes memory becomeImplementationData
    )
        public
    {


        // Creator of the contract is gov during initialization
        gov = msg.sender;

        // First delegate gets to initialize the delegator (i.e. storage contract)
        delegateTo(
            implementation_,
            abi.encodeWithSignature(
                "initialize(string,string,uint8,address,uint256)",
                name_,
                symbol_,
                decimals_,
                msg.sender,
                initSupply_
            )
        );

        // New implementations always get set via the settor (post-initialize)
        _setImplementation(implementation_, false, becomeImplementationData);

    }

    /**
     * @notice Called by the gov to update the implementation of the delegator
     * @param implementation_ The address of the new implementation for delegation
     * @param allowResign Flag to indicate whether to call _resignImplementation on the old implementation
     * @param becomeImplementationData The encoded bytes data to be passed to _becomeImplementation
     */
    function _setImplementation(address implementation_, bool allowResign, bytes memory becomeImplementationData) public {
        require(msg.sender == gov, "VEGETADelegator::_setImplementation: Caller must be gov");

        if (allowResign) {
            delegateToImplementation(abi.encodeWithSignature("_resignImplementation()"));
        }

        address oldImplementation = implementation;
        implementation = implementation_;

        delegateToImplementation(abi.encodeWithSignature("_becomeImplementation(bytes)", becomeImplementationData));

        emit NewImplementation(oldImplementation, implementation);
    }

    /**
     * @notice Sender supplies assets into the market and receives cTokens in exchange
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param mintAmount The amount of the underlying asset to supply
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function mint(address to, uint256 mintAmount)
        external
        returns (bool)
    {
        to; mintAmount; // Shh
        delegateAndReturn();
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint256 amount)
        external
        returns (bool)
    {
        dst; amount; // Shh
        delegateAndReturn();
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(
        address src,
        address dst,
        uint256 amount
    )
        external
        returns (bool)
    {
        src; dst; amount; // Shh
        delegateAndReturn();
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param amount The number of tokens that are approved (-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(
        address spender,
        uint256 amount
    )
        external
        returns (bool)
    {
        spender; amount; // Shh
        delegateAndReturn();
    }

    /**
     * @dev Increase the amount of tokens that an owner has allowed to a spender.
     * This method should be used instead of approve() to avoid the double approval vulnerability
     * described above.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(
        address spender,
        uint256 addedValue
    )
        external
        returns (bool)
    {
        spender; addedValue; // Shh
        delegateAndReturn();
    }

    function maxScalingFactor()
        external
        view
        returns (uint256)
    {
        delegateToViewAndReturn();
    }

    function rebase(
        uint256 epoch,
        uint256 indexDelta,
        bool positive
    )
        external
        returns (uint256)
    {
        epoch; indexDelta; positive;
        delegateAndReturn();
    }

    /**
     * @dev Decrease the amount of tokens that an owner has allowed to a spender.
     *
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    )
        external
        returns (bool)
    {
        spender; subtractedValue; // Shh
        delegateAndReturn();
    }

    /**
     * @notice Get the current allowance from `owner` for `spender`
     * @param owner The address of the account which owns the tokens to be spent
     * @param spender The address of the account which may transfer tokens
     * @return The number of tokens allowed to be spent (-1 means infinite)
     */
    function allowance(
        address owner,
        address spender
    )
        external
        view
        returns (uint256)
    {
        owner; spender; // Shh
        delegateToViewAndReturn();
    }

    /**
     * @notice Get the current allowance from `owner` for `spender`
     * @param delegator The address of the account which has designated a delegate
     * @return Address of delegatee
     */
    function delegates(
        address delegator
    )
        external
        view
        returns (address)
    {
        delegator; // Shh
        delegateToViewAndReturn();
    }

    /**
     * @notice Get the token balance of the `owner`
     * @param owner The address of the account to query
     * @return The number of tokens owned by `owner`
     */
    function balanceOf(address owner)
        external
        view
        returns (uint256)
    {
        owner; // Shh
        delegateToViewAndReturn();
    }

    /**
     * @notice Currently unused. For future compatability
     * @param owner The address of the account to query
     * @return The number of underlying tokens owned by `owner`
     */
    function balanceOfUnderlying(address owner)
        external
        view
        returns (uint256)
    {
        owner; // Shh
        delegateToViewAndReturn();
    }

    /*** Gov Functions ***/

    /**
      * @notice Begins transfer of gov rights. The newPendingGov must call `_acceptGov` to finalize the transfer.
      * @dev Gov function to begin change of gov. The newPendingGov must call `_acceptGov` to finalize the transfer.
      * @param newPendingGov New pending gov.
      */
    function _setPendingGov(address newPendingGov)
        external
    {
        newPendingGov; // Shh
        delegateAndReturn();
    }

    function _setRebaser(address rebaser_)
        external
    {
        rebaser_; // Shh
        delegateAndReturn();
    }

    function _setIncentivizer(address incentivizer_)
        external
    {
        incentivizer_; // Shh
        delegateAndReturn();
    }

    function _setAirdrop(address airdrop_)
        external
    {
        airdrop_; // Shh
        delegateAndReturn();
    }

    /**
      * @notice Accepts transfer of gov rights. msg.sender must be pendingGov
      * @dev Gov function for pending gov to accept role and update gov
      * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
      */
    function _acceptGov()
        external
    {
        delegateAndReturn();
    }


    function getPriorVotes(address account, uint blockNumber)
        external
        view
        returns (uint256)
    {
        account; blockNumber;
        delegateToViewAndReturn();
    }

    function delegateBySig(
        address delegatee,
        uint nonce,
        uint expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    )
        external
    {
        delegatee; nonce; expiry; v; r; s;
        delegateAndReturn();
    }

    function delegate(address delegatee)
        external
    {
        delegatee;
        delegateAndReturn();
    }

    function getCurrentVotes(address account)
        external
        view
        returns (uint256)
    {
        account;
        delegateToViewAndReturn();
    }

    /**
     * @notice Internal method to delegate execution to another contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     * @param callee The contract to delegatecall
     * @param data The raw data to delegatecall
     * @return The returned bytes from the delegatecall
     */
    function delegateTo(address callee, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returnData) = callee.delegatecall(data);
        assembly {
            if eq(success, 0) {
                revert(add(returnData, 0x20), returndatasize)
            }
        }
        return returnData;
    }

    /**
     * @notice Delegates execution to the implementation contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     * @param data The raw data to delegatecall
     * @return The returned bytes from the delegatecall
     */
    function delegateToImplementation(bytes memory data) public returns (bytes memory) {
        return delegateTo(implementation, data);
    }

    /**
     * @notice Delegates execution to an implementation contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     *  There are an additional 2 prefix uints from the wrapper returndata, which we ignore since we make an extra hop.
     * @param data The raw data to delegatecall
     * @return The returned bytes from the delegatecall
     */
    function delegateToViewImplementation(bytes memory data) public view returns (bytes memory) {
        (bool success, bytes memory returnData) = address(this).staticcall(abi.encodeWithSignature("delegateToImplementation(bytes)", data));
        assembly {
            if eq(success, 0) {
                revert(add(returnData, 0x20), returndatasize)
            }
        }
        return abi.decode(returnData, (bytes));
    }

    function delegateToViewAndReturn() private view returns (bytes memory) {
        (bool success, ) = address(this).staticcall(abi.encodeWithSignature("delegateToImplementation(bytes)", msg.data));

        assembly {
            let free_mem_ptr := mload(0x40)
            returndatacopy(free_mem_ptr, 0, returndatasize)

            switch success
            case 0 { revert(free_mem_ptr, returndatasize) }
            default { return(add(free_mem_ptr, 0x40), returndatasize) }
        }
    }

    function delegateAndReturn() private returns (bytes memory) {
        (bool success, ) = implementation.delegatecall(msg.data);

        assembly {
            let free_mem_ptr := mload(0x40)
            returndatacopy(free_mem_ptr, 0, returndatasize)

            switch success
            case 0 { revert(free_mem_ptr, returndatasize) }
            default { return(free_mem_ptr, returndatasize) }
        }
    }

    /**
     * @notice Delegates execution to an implementation contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     */
    function () external payable {
        require(msg.value == 0,"VEGETADelegator:fallback: cannot send value to fallback");

        // delegate all other functions to current implementation
        delegateAndReturn();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"initSupply_","type":"uint256"},{"internalType":"address","name":"implementation_","type":"address"},{"internalType":"bytes","name":"becomeImplementationData","type":"bytes"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldAirdrop","type":"address"},{"indexed":false,"internalType":"address","name":"newAirdrop","type":"address"}],"name":"NewAirdrop","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldGov","type":"address"},{"indexed":false,"internalType":"address","name":"newGov","type":"address"}],"name":"NewGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldImplementation","type":"address"},{"indexed":false,"internalType":"address","name":"newImplementation","type":"address"}],"name":"NewImplementation","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldIncentivizer","type":"address"},{"indexed":false,"internalType":"address","name":"newIncentivizer","type":"address"}],"name":"NewIncentivizer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingGov","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingGov","type":"address"}],"name":"NewPendingGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldRebaser","type":"address"},{"indexed":false,"internalType":"address","name":"newRebaser","type":"address"}],"name":"NewRebaser","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"prevVegetasScalingFactor","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newVegetasScalingFactor","type":"uint256"}],"name":"Rebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[],"name":"BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"_acceptGov","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"airdrop_","type":"address"}],"name":"_setAirdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"implementation_","type":"address"},{"internalType":"bool","name":"allowResign","type":"bool"},{"internalType":"bytes","name":"becomeImplementationData","type":"bytes"}],"name":"_setImplementation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"incentivizer_","type":"address"}],"name":"_setIncentivizer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newPendingGov","type":"address"}],"name":"_setPendingGov","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"rebaser_","type":"address"}],"name":"_setRebaser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"airdrop","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"delegateToImplementation","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"delegateToViewImplementation","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"gov","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"incentivizer","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"internalDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingGov","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"},{"internalType":"uint256","name":"indexDelta","type":"uint256"},{"internalType":"bool","name":"positive","type":"bool"}],"name":"rebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rebaser","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"vegetasScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162001b0c38038062001b0c833981016040819052620000349162000329565b60038054610100600160a81b03191633610100810291909117909155604051620000a491849162000070918a918a918a918a9060240162000548565b60408051601f198184030181529190526020810180516001600160e01b03908116636c94522160e01b17909152620000c816565b50620000bc826000836001600160e01b036200014a16565b505050505050620006a5565b606060006060846001600160a01b031684604051620000e8919062000501565b600060405180830381855af49150503d806000811462000125576040519150601f19603f3d011682016040523d82523d6000602084013e6200012a565b606091505b5091509150600082141562000140573d60208201fd5b9150505b92915050565b60035461010090046001600160a01b03163314620001855760405162461bcd60e51b81526004016200017c90620005aa565b60405180910390fd5b8115620001c7576040805160048152602481019091526020810180516001600160e01b0390811663153ab50560e01b17909152620001c591906200028216565b505b601180546001600160a01b038581166001600160a01b031983161790925560405191169062000234906200020090849060240162000535565b60408051601f198184030181529190526020810180516001600160e01b03908116630adccee560e31b179091526200028216565b506011546040517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a91620002749184916001600160a01b03169062000516565b60405180910390a150505050565b60115460609062000144906001600160a01b0316836001600160e01b03620000c816565b8051620001448162000675565b600082601f830112620002c557600080fd5b8151620002dc620002d682620005e3565b620005bc565b91508082526020830160208301858383011115620002f957600080fd5b6200030683828462000638565b50505092915050565b805162000144816200068f565b805162000144816200069a565b60008060008060008060c087890312156200034357600080fd5b86516001600160401b038111156200035a57600080fd5b6200036889828a01620002b3565b96505060208701516001600160401b038111156200038557600080fd5b6200039389828a01620002b3565b9550506040620003a689828a016200031c565b9450506060620003b989828a016200030f565b9350506080620003cc89828a01620002a6565b92505060a08701516001600160401b03811115620003e957600080fd5b620003f789828a01620002b3565b9150509295509295509295565b6200040f816200061d565b82525050565b600062000422826200060b565b6200042e81856200060f565b93506200044081856020860162000638565b6200044b816200066b565b9093019392505050565b600062000462826200060b565b6200046e818562000618565b93506200048081856020860162000638565b9290920192915050565b6000620004996037836200060f565b7f56454745544144656c656761746f723a3a5f736574496d706c656d656e74617481527f696f6e3a2043616c6c6572206d75737420626520676f76000000000000000000602082015260400192915050565b6200040f816200062f565b6200040f8162000632565b60006200050f828462000455565b9392505050565b6040810162000526828562000404565b6200050f602083018462000404565b602080825281016200050f818462000415565b60a080825281016200055b818862000415565b9050818103602083015262000571818762000415565b9050620005826040830186620004f6565b62000591606083018562000404565b620005a06080830184620004eb565b9695505050505050565b6020808252810162000144816200048a565b6040518181016001600160401b0381118282101715620005db57600080fd5b604052919050565b60006001600160401b03821115620005fa57600080fd5b506020601f91909101601f19160190565b5190565b90815260200190565b919050565b60006001600160a01b03821662000144565b90565b60ff1690565b60005b83811015620006555781810151838201526020016200063b565b8381111562000665576000848401525b50505050565b601f01601f191690565b62000680816200061d565b81146200068c57600080fd5b50565b62000680816200062f565b620006808162000632565b61145780620006b56000396000f3fe60806040526004361061025c5760003560e01c80635c60da1b1161014457806397d63f93116100b6578063c3cda5201161007a578063c3cda520146105ad578063dd62ed3e146105cd578063e7a324dc146105e8578063ec342ad0146105fd578063f1127ed814610612578063fa8f34551461049c5761025c565b806397d63f931461059857806398dca2101461049c578063a457c2d7146102d9578063a9059cbb146102d9578063b4b5ea57146103f55761025c565b806373f03dff1161010857806373f03dff1461049c578063782d6fe1146105285780637af548c1146105485780637ecebe001461056357806380571b571461049c57806395d89b41146105835761025c565b80635c60da1b146104bc57806364dd48f5146104d15780636fc6407c146104e65780636fcfff45146104fb57806370a08231146103f55761025c565b8063313ce567116101dd5780634487152f116101a15780634487152f146104155780634b2833bc146104355780634bda2e201461044a578063555bcc4014610461578063587cde1e146104815780635c19a95c1461049c5761025c565b8063313ce567146103be5780633884d635146103e057806339509351146102d95780633af9e669146103f557806340c10f19146102d95761025c565b806312d43a511161022457806312d43a511461034a57806318160ddd1461035f57806320606b701461037457806323b872dd1461038957806325240810146103a95761025c565b806306fdde031461028e5780630933c1ed146102b9578063095ea7b3146102d957806311d3e6c41461030657806311fd8a8314610328575b34156102835760405162461bcd60e51b815260040161027a906112c0565b60405180910390fd5b61028b610640565b50005b34801561029a57600080fd5b506102a36106c0565b6040516102b0919061129f565b60405180910390f35b3480156102c557600080fd5b506102a36102d4366004610f37565b61074d565b3480156102e557600080fd5b506102f96102f4366004610e1b565b61076c565b6040516102b09190611271565b34801561031257600080fd5b5061031b61077d565b6040516102b0919061127f565b34801561033457600080fd5b5061033d61078b565b6040516102b09190611248565b34801561035657600080fd5b5061033d61079a565b34801561036b57600080fd5b5061031b6107ae565b34801561038057600080fd5b5061031b6107b4565b34801561039557600080fd5b506102f96103a4366004610d73565b6107cb565b3480156103b557600080fd5b5061033d6107dd565b3480156103ca57600080fd5b506103d36107ec565b6040516102b091906112f9565b3480156103ec57600080fd5b5061033d6107f5565b34801561040157600080fd5b5061031b610410366004610d1b565b610804565b34801561042157600080fd5b506102a3610430366004610f37565b610814565b34801561044157600080fd5b5061031b6108db565b34801561045657600080fd5b5061045f6108e1565b005b34801561046d57600080fd5b5061045f61047c366004610dc0565b6108ec565b34801561048d57600080fd5b5061033d610410366004610d1b565b3480156104a857600080fd5b5061045f6104b7366004610d1b565b610a06565b3480156104c857600080fd5b5061033d610a12565b3480156104dd57600080fd5b5061031b610a21565b3480156104f257600080fd5b5061033d610a2f565b34801561050757600080fd5b5061051b610516366004610d1b565b610a3e565b6040516102b091906112d0565b34801561053457600080fd5b5061031b610543366004610e1b565b610a56565b34801561055457600080fd5b5061031b6103a4366004610f6c565b34801561056f57600080fd5b5061031b61057e366004610d1b565b610a60565b34801561058f57600080fd5b506102a3610a72565b3480156105a457600080fd5b5061031b610aca565b3480156105b957600080fd5b5061045f6105c8366004610e4b565b610ad0565b3480156105d957600080fd5b5061031b610543366004610d39565b3480156105f457600080fd5b5061031b610ae1565b34801561060957600080fd5b5061031b610aed565b34801561061e57600080fd5b5061063261062d366004610ed2565b610af9565b6040516102b09291906112de565b6011546040516060916000916001600160a01b03909116906106659083903690611212565b600060405180830381855af49150503d80600081146106a0576040519150601f19603f3d011682016040523d82523d6000602084013e6106a5565b606091505b505090506040513d6000823e8180156106bc573d82f35b3d82fd5b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b505050505081565b601154606090610766906001600160a01b031683610b26565b92915050565b6000610776610640565b5092915050565b6000610787610b99565b5090565b6005546001600160a01b031681565b60035461010090046001600160a01b031681565b60085481565b6040516107c090611232565b604051809103902081565b60006107d5610640565b509392505050565b6004546001600160a01b031681565b60035460ff1681565b6007546001600160a01b031681565b600061080e610b99565b50919050565b606060006060306001600160a01b031684604051602401610835919061129f565b60408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b1790525161086a919061121f565b600060405180830381855afa9150503d80600081146108a5576040519150601f19603f3d011682016040523d82523d6000602084013e6108aa565b606091505b509150915060008214156108bf573d60208201fd5b808060200190516108d39190810190610f02565b949350505050565b60095481565b6108e9610640565b50565b60035461010090046001600160a01b0316331461091b5760405162461bcd60e51b815260040161027a906112b0565b8115610955576040805160048152602481019091526020810180516001600160e01b031663153ab50560e01b1790526109539061074d565b505b601180546001600160a01b038581166001600160a01b03198316179092556040519116906109ba9061098b90849060240161129f565b60408051601f198184030181529190526020810180516001600160e01b0316630adccee560e31b17905261074d565b506011546040517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a916109f89184916001600160a01b031690611256565b60405180910390a150505050565b610a0e610640565b5050565b6011546001600160a01b031681565b69d3c21bcecceda100000081565b6006546001600160a01b031681565b600f6020526000908152604090205463ffffffff1681565b6000610776610b99565b60106020526000908152604090205481565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156107455780601f1061071a57610100808354040283529160200191610745565b600c5481565b610ad8610640565b50505050505050565b6040516107c09061123d565b670de0b6b3a764000081565b600e6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b606060006060846001600160a01b031684604051610b44919061121f565b600060405180830381855af49150503d8060008114610b7f576040519150601f19603f3d011682016040523d82523d6000602084013e610b84565b606091505b509150915060008214156108d3573d60208201fd5b60606000306001600160a01b0316600036604051602401610bbb92919061128d565b60408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b17905251610bf0919061121f565b600060405180830381855afa9150503d8060008114610c2b576040519150601f19603f3d011682016040523d82523d6000602084013e610c30565b606091505b505090506040513d6000823e8180156106bc573d60408301f35b8035610766816113dc565b8035610766816113f0565b8035610766816113f9565b600082601f830112610c7c57600080fd5b8151610c8f610c8a8261132e565b611307565b91508082526020830160208301858383011115610cab57600080fd5b610cb68382846113a2565b50505092915050565b600082601f830112610cd057600080fd5b8135610cde610c8a8261132e565b91508082526020830160208301858383011115610cfa57600080fd5b610cb6838284611396565b803561076681611402565b80356107668161140b565b600060208284031215610d2d57600080fd5b60006108d38484610c4a565b60008060408385031215610d4c57600080fd5b6000610d588585610c4a565b9250506020610d6985828601610c4a565b9150509250929050565b600080600060608486031215610d8857600080fd5b6000610d948686610c4a565b9350506020610da586828701610c4a565b9250506040610db686828701610c60565b9150509250925092565b600080600060608486031215610dd557600080fd5b6000610de18686610c4a565b9350506020610df286828701610c55565b925050604084013567ffffffffffffffff811115610e0f57600080fd5b610db686828701610cbf565b60008060408385031215610e2e57600080fd5b6000610e3a8585610c4a565b9250506020610d6985828601610c60565b60008060008060008060c08789031215610e6457600080fd5b6000610e708989610c4a565b9650506020610e8189828a01610c60565b9550506040610e9289828a01610c60565b9450506060610ea389828a01610d10565b9350506080610eb489828a01610c60565b92505060a0610ec589828a01610c60565b9150509295509295509295565b60008060408385031215610ee557600080fd5b6000610ef18585610c4a565b9250506020610d6985828601610d05565b600060208284031215610f1457600080fd5b815167ffffffffffffffff811115610f2b57600080fd5b6108d384828501610c6b565b600060208284031215610f4957600080fd5b813567ffffffffffffffff811115610f6057600080fd5b6108d384828501610cbf565b600080600060608486031215610f8157600080fd5b6000610f8d8686610c60565b9350506020610f9e86828701610c60565b9250506040610db686828701610c55565b610fb881611368565b82525050565b610fb881611373565b610fb881611378565b6000610fdc838561135a565b9350610fe9838584611396565b610ff2836113d2565b9093019392505050565b60006110088385611363565b9350611015838584611396565b50500190565b600061102682611356565b611030818561135a565b93506110408185602086016113a2565b610ff2816113d2565b600061105482611356565b61105e8185611363565b935061106e8185602086016113a2565b9290920192915050565b6000611085604383611363565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b60006110f060378361135a565b7f56454745544144656c656761746f723a3a5f736574496d706c656d656e74617481527f696f6e3a2043616c6c6572206d75737420626520676f76000000000000000000602082015260400192915050565b600061114f60378361135a565b7f56454745544144656c656761746f723a66616c6c6261636b3a2063616e6e6f7481527f2073656e642076616c756520746f2066616c6c6261636b000000000000000000602082015260400192915050565b60006111ae603a83611363565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b610fb881611387565b610fb881611390565b60006108d3828486610ffc565b600061122b8284611049565b9392505050565b600061076682611078565b6000610766826111a1565b602081016107668284610faf565b604081016112648285610faf565b61122b6020830184610faf565b602081016107668284610fbe565b602081016107668284610fc7565b602080825281016108d3818486610fd0565b6020808252810161122b818461101b565b60208082528101610766816110e3565b6020808252810161076681611142565b602081016107668284611200565b604081016112ec8285611200565b61122b6020830184610fc7565b602081016107668284611209565b60405181810167ffffffffffffffff8111828210171561132657600080fd5b604052919050565b600067ffffffffffffffff82111561134557600080fd5b506020601f91909101601f19160190565b5190565b90815260200190565b919050565b60006107668261137b565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b82818337506000910152565b60005b838110156113bd5781810151838201526020016113a5565b838111156113cc576000848401525b50505050565b601f01601f191690565b6113e581611368565b81146108e957600080fd5b6113e581611373565b6113e581611378565b6113e581611387565b6113e58161139056fea365627a7a723158209d095c739c31a33d5bc53f36cef1a5b0dca169dcdae5a26211fbe2e1a05ea6506c6578706572696d656e74616cf564736f6c6343000511004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000021e19e0c9bab24000000000000000000000000000006805008a6195b1937b97206ae5a15e5ae9426ed4000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000065645474554410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000656454745544100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80635c60da1b1161014457806397d63f93116100b6578063c3cda5201161007a578063c3cda520146105ad578063dd62ed3e146105cd578063e7a324dc146105e8578063ec342ad0146105fd578063f1127ed814610612578063fa8f34551461049c5761025c565b806397d63f931461059857806398dca2101461049c578063a457c2d7146102d9578063a9059cbb146102d9578063b4b5ea57146103f55761025c565b806373f03dff1161010857806373f03dff1461049c578063782d6fe1146105285780637af548c1146105485780637ecebe001461056357806380571b571461049c57806395d89b41146105835761025c565b80635c60da1b146104bc57806364dd48f5146104d15780636fc6407c146104e65780636fcfff45146104fb57806370a08231146103f55761025c565b8063313ce567116101dd5780634487152f116101a15780634487152f146104155780634b2833bc146104355780634bda2e201461044a578063555bcc4014610461578063587cde1e146104815780635c19a95c1461049c5761025c565b8063313ce567146103be5780633884d635146103e057806339509351146102d95780633af9e669146103f557806340c10f19146102d95761025c565b806312d43a511161022457806312d43a511461034a57806318160ddd1461035f57806320606b701461037457806323b872dd1461038957806325240810146103a95761025c565b806306fdde031461028e5780630933c1ed146102b9578063095ea7b3146102d957806311d3e6c41461030657806311fd8a8314610328575b34156102835760405162461bcd60e51b815260040161027a906112c0565b60405180910390fd5b61028b610640565b50005b34801561029a57600080fd5b506102a36106c0565b6040516102b0919061129f565b60405180910390f35b3480156102c557600080fd5b506102a36102d4366004610f37565b61074d565b3480156102e557600080fd5b506102f96102f4366004610e1b565b61076c565b6040516102b09190611271565b34801561031257600080fd5b5061031b61077d565b6040516102b0919061127f565b34801561033457600080fd5b5061033d61078b565b6040516102b09190611248565b34801561035657600080fd5b5061033d61079a565b34801561036b57600080fd5b5061031b6107ae565b34801561038057600080fd5b5061031b6107b4565b34801561039557600080fd5b506102f96103a4366004610d73565b6107cb565b3480156103b557600080fd5b5061033d6107dd565b3480156103ca57600080fd5b506103d36107ec565b6040516102b091906112f9565b3480156103ec57600080fd5b5061033d6107f5565b34801561040157600080fd5b5061031b610410366004610d1b565b610804565b34801561042157600080fd5b506102a3610430366004610f37565b610814565b34801561044157600080fd5b5061031b6108db565b34801561045657600080fd5b5061045f6108e1565b005b34801561046d57600080fd5b5061045f61047c366004610dc0565b6108ec565b34801561048d57600080fd5b5061033d610410366004610d1b565b3480156104a857600080fd5b5061045f6104b7366004610d1b565b610a06565b3480156104c857600080fd5b5061033d610a12565b3480156104dd57600080fd5b5061031b610a21565b3480156104f257600080fd5b5061033d610a2f565b34801561050757600080fd5b5061051b610516366004610d1b565b610a3e565b6040516102b091906112d0565b34801561053457600080fd5b5061031b610543366004610e1b565b610a56565b34801561055457600080fd5b5061031b6103a4366004610f6c565b34801561056f57600080fd5b5061031b61057e366004610d1b565b610a60565b34801561058f57600080fd5b506102a3610a72565b3480156105a457600080fd5b5061031b610aca565b3480156105b957600080fd5b5061045f6105c8366004610e4b565b610ad0565b3480156105d957600080fd5b5061031b610543366004610d39565b3480156105f457600080fd5b5061031b610ae1565b34801561060957600080fd5b5061031b610aed565b34801561061e57600080fd5b5061063261062d366004610ed2565b610af9565b6040516102b09291906112de565b6011546040516060916000916001600160a01b03909116906106659083903690611212565b600060405180830381855af49150503d80600081146106a0576040519150601f19603f3d011682016040523d82523d6000602084013e6106a5565b606091505b505090506040513d6000823e8180156106bc573d82f35b3d82fd5b60018054604080516020600284861615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b505050505081565b601154606090610766906001600160a01b031683610b26565b92915050565b6000610776610640565b5092915050565b6000610787610b99565b5090565b6005546001600160a01b031681565b60035461010090046001600160a01b031681565b60085481565b6040516107c090611232565b604051809103902081565b60006107d5610640565b509392505050565b6004546001600160a01b031681565b60035460ff1681565b6007546001600160a01b031681565b600061080e610b99565b50919050565b606060006060306001600160a01b031684604051602401610835919061129f565b60408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b1790525161086a919061121f565b600060405180830381855afa9150503d80600081146108a5576040519150601f19603f3d011682016040523d82523d6000602084013e6108aa565b606091505b509150915060008214156108bf573d60208201fd5b808060200190516108d39190810190610f02565b949350505050565b60095481565b6108e9610640565b50565b60035461010090046001600160a01b0316331461091b5760405162461bcd60e51b815260040161027a906112b0565b8115610955576040805160048152602481019091526020810180516001600160e01b031663153ab50560e01b1790526109539061074d565b505b601180546001600160a01b038581166001600160a01b03198316179092556040519116906109ba9061098b90849060240161129f565b60408051601f198184030181529190526020810180516001600160e01b0316630adccee560e31b17905261074d565b506011546040517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a916109f89184916001600160a01b031690611256565b60405180910390a150505050565b610a0e610640565b5050565b6011546001600160a01b031681565b69d3c21bcecceda100000081565b6006546001600160a01b031681565b600f6020526000908152604090205463ffffffff1681565b6000610776610b99565b60106020526000908152604090205481565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156107455780601f1061071a57610100808354040283529160200191610745565b600c5481565b610ad8610640565b50505050505050565b6040516107c09061123d565b670de0b6b3a764000081565b600e6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b606060006060846001600160a01b031684604051610b44919061121f565b600060405180830381855af49150503d8060008114610b7f576040519150601f19603f3d011682016040523d82523d6000602084013e610b84565b606091505b509150915060008214156108d3573d60208201fd5b60606000306001600160a01b0316600036604051602401610bbb92919061128d565b60408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b17905251610bf0919061121f565b600060405180830381855afa9150503d8060008114610c2b576040519150601f19603f3d011682016040523d82523d6000602084013e610c30565b606091505b505090506040513d6000823e8180156106bc573d60408301f35b8035610766816113dc565b8035610766816113f0565b8035610766816113f9565b600082601f830112610c7c57600080fd5b8151610c8f610c8a8261132e565b611307565b91508082526020830160208301858383011115610cab57600080fd5b610cb68382846113a2565b50505092915050565b600082601f830112610cd057600080fd5b8135610cde610c8a8261132e565b91508082526020830160208301858383011115610cfa57600080fd5b610cb6838284611396565b803561076681611402565b80356107668161140b565b600060208284031215610d2d57600080fd5b60006108d38484610c4a565b60008060408385031215610d4c57600080fd5b6000610d588585610c4a565b9250506020610d6985828601610c4a565b9150509250929050565b600080600060608486031215610d8857600080fd5b6000610d948686610c4a565b9350506020610da586828701610c4a565b9250506040610db686828701610c60565b9150509250925092565b600080600060608486031215610dd557600080fd5b6000610de18686610c4a565b9350506020610df286828701610c55565b925050604084013567ffffffffffffffff811115610e0f57600080fd5b610db686828701610cbf565b60008060408385031215610e2e57600080fd5b6000610e3a8585610c4a565b9250506020610d6985828601610c60565b60008060008060008060c08789031215610e6457600080fd5b6000610e708989610c4a565b9650506020610e8189828a01610c60565b9550506040610e9289828a01610c60565b9450506060610ea389828a01610d10565b9350506080610eb489828a01610c60565b92505060a0610ec589828a01610c60565b9150509295509295509295565b60008060408385031215610ee557600080fd5b6000610ef18585610c4a565b9250506020610d6985828601610d05565b600060208284031215610f1457600080fd5b815167ffffffffffffffff811115610f2b57600080fd5b6108d384828501610c6b565b600060208284031215610f4957600080fd5b813567ffffffffffffffff811115610f6057600080fd5b6108d384828501610cbf565b600080600060608486031215610f8157600080fd5b6000610f8d8686610c60565b9350506020610f9e86828701610c60565b9250506040610db686828701610c55565b610fb881611368565b82525050565b610fb881611373565b610fb881611378565b6000610fdc838561135a565b9350610fe9838584611396565b610ff2836113d2565b9093019392505050565b60006110088385611363565b9350611015838584611396565b50500190565b600061102682611356565b611030818561135a565b93506110408185602086016113a2565b610ff2816113d2565b600061105482611356565b61105e8185611363565b935061106e8185602086016113a2565b9290920192915050565b6000611085604383611363565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b60006110f060378361135a565b7f56454745544144656c656761746f723a3a5f736574496d706c656d656e74617481527f696f6e3a2043616c6c6572206d75737420626520676f76000000000000000000602082015260400192915050565b600061114f60378361135a565b7f56454745544144656c656761746f723a66616c6c6261636b3a2063616e6e6f7481527f2073656e642076616c756520746f2066616c6c6261636b000000000000000000602082015260400192915050565b60006111ae603a83611363565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b610fb881611387565b610fb881611390565b60006108d3828486610ffc565b600061122b8284611049565b9392505050565b600061076682611078565b6000610766826111a1565b602081016107668284610faf565b604081016112648285610faf565b61122b6020830184610faf565b602081016107668284610fbe565b602081016107668284610fc7565b602080825281016108d3818486610fd0565b6020808252810161122b818461101b565b60208082528101610766816110e3565b6020808252810161076681611142565b602081016107668284611200565b604081016112ec8285611200565b61122b6020830184610fc7565b602081016107668284611209565b60405181810167ffffffffffffffff8111828210171561132657600080fd5b604052919050565b600067ffffffffffffffff82111561134557600080fd5b506020601f91909101601f19160190565b5190565b90815260200190565b919050565b60006107668261137b565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b82818337506000910152565b60005b838110156113bd5781810151838201526020016113a5565b838111156113cc576000848401525b50505050565b601f01601f191690565b6113e581611368565b81146108e957600080fd5b6113e581611373565b6113e581611378565b6113e581611387565b6113e58161139056fea365627a7a723158209d095c739c31a33d5bc53f36cef1a5b0dca169dcdae5a26211fbe2e1a05ea6506c6578706572696d656e74616cf564736f6c63430005110040

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000021e19e0c9bab24000000000000000000000000000006805008a6195b1937b97206ae5a15e5ae9426ed4000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000065645474554410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000656454745544100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): VEGETA
Arg [1] : symbol_ (string): VEGETA
Arg [2] : decimals_ (uint8): 18
Arg [3] : initSupply_ (uint256): 10000000000000000000000
Arg [4] : implementation_ (address): 0x6805008A6195B1937b97206aE5a15e5aE9426eD4
Arg [5] : becomeImplementationData (bytes): 0x

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000000021e19e0c9bab2400000
Arg [4] : 0000000000000000000000006805008a6195b1937b97206ae5a15e5ae9426ed4
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 5645474554410000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [9] : 5645474554410000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

33539:13141:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46497:9;:14;46489:81;;;;-1:-1:-1;;;46489:81:0;;;;;;;;;;;;;;;;;46650:19;:17;:19::i;:::-;;33539:13141;5659:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5659:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;44308:141;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;44308:141:0;;;;;;;;:::i;37951:193::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;37951:193:0;;;;;;;;:::i;:::-;;;;;;;;38736:136;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38736:136:0;;;:::i;:::-;;;;;;;;6147:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6147:22:0;;;:::i;:::-;;;;;;;;5946:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5946:18:0;;;:::i;6441:26::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6441:26:0;;;:::i;7676:122::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7676:122:0;;;:::i;37264:217::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;37264:217:0;;;;;;;;:::i;6044:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6044:25:0;;;:::i;5855:21::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5855:21:0;;;:::i;:::-;;;;;;;;6352:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6352:22:0;;;:::i;41102:175::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;41102:175:0;;;;;;;;:::i;44871:434::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;44871:434:0;;;;;;;;:::i;6804:35::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6804:35:0;;;:::i;42439:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42439:83:0;;;:::i;:::-;;35373:641;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;35373:641:0;;;;;;;;:::i;40351:189::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;40351:189:0;;;;;;43009:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;43009:118:0;;;;;;;;:::i;31171:29::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31171:29:0;;;:::i;6558:49::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6558:49:0;;;:::i;6247:27::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6247:27:0;;;:::i;7554:49::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7554:49:0;;;;;;;;:::i;:::-;;;;;;;;42532:197;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;42532:197:0;;;;;;;;:::i;38880:226::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;38880:226:0;;;;;;8090:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8090:39:0;;;;;;;;:::i;5755:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5755:20:0;;;:::i;6995:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6995:25:0;;;:::i;42737:264::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;42737:264:0;;;;;;;;:::i;39919:216::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;39919:216:0;;;;;;7892:117;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7892:117:0;;;:::i;6676:37::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6676:37:0;;;:::i;7415:70::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;7415:70:0;;;;;;;;:::i;:::-;;;;;;;;;45827:427;45917:14;;:37;;45873:12;;45899;;-1:-1:-1;;;;;45917:14:0;;;;:37;;45899:12;;45945:8;;45917:37;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;45898:56:0;;;46017:4;46011:11;46068:14;46065:1;46051:12;46036:47;46106:7;46127:47;;;;46219:14;46205:12;46198:36;46127:47;46157:14;46143:12;46136:36;5659:18;;;;;;;;;;;;;;;-1:-1:-1;;5659:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44308:141::-;44420:14;;44377:12;;44409:32;;-1:-1:-1;;;;;44420:14:0;44436:4;44409:10;:32::i;:::-;44402:39;44308:141;-1:-1:-1;;44308:141:0:o;37951:193::-;38062:4;38117:19;:17;:19::i;:::-;;37951:193;;;;:::o;38736:136::-;38814:7;38839:25;:23;:25::i;:::-;;38736:136;:::o;6147:22::-;;;-1:-1:-1;;;;;6147:22:0;;:::o;5946:18::-;;;;;;-1:-1:-1;;;;;5946:18:0;;:::o;6441:26::-;;;;:::o;7676:122::-;7718:80;;;;;;;;;;;;;;7676:122;:::o;37264:217::-;37398:4;37454:19;:17;:19::i;:::-;;37264:217;;;;;:::o;6044:25::-;;;-1:-1:-1;;;;;6044:25:0;;:::o;5855:21::-;;;;;;:::o;6352:22::-;;;-1:-1:-1;;;;;6352:22:0;;:::o;41102:175::-;41196:7;41244:25;:23;:25::i;:::-;;41102:175;;;:::o;44871:434::-;44949:12;44975;44989:23;45024:4;-1:-1:-1;;;;;45016:24:0;45100:4;45041:64;;;;;;;;;;;;;-1:-1:-1;;26:21;;;22:32;6:49;;45041:64:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;45016:90:0;;;45041:64;45016:90;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;44974:132:0;;;;45156:1;45147:7;45144:14;45141:2;;;45208:14;45201:4;45189:10;45185:21;45178:45;45141:2;45277:10;45266:31;;;;;;;;;;;;;;45259:38;44871:434;-1:-1:-1;;;;44871:434:0:o;6804:35::-;;;;:::o;42439:83::-;42495:19;:17;:19::i;:::-;;42439:83::o;35373:641::-;35523:3;;;;;-1:-1:-1;;;;;35523:3:0;35509:10;:17;35501:85;;;;-1:-1:-1;;;35501:85:0;;;;;;;;;35603:11;35599:120;;;35656:50;;;22:32:-1;6:49;;35656:50:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;35631:76:0;;:24;:76::i;:::-;;35599:120;35759:14;;;-1:-1:-1;;;;;35784:32:0;;;-1:-1:-1;;;;;;35784:32:0;;;;;;35854:81;;35759:14;;;35829:107;;35854:81;;35910:24;;35854:81;;;;;;;;-1:-1:-1;;26:21;;;22:32;6:49;;35854:81:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;35829:24:0;:107::i;:::-;-1:-1:-1;35991:14:0;;35954:52;;;;;;35972:17;;-1:-1:-1;;;;;35991:14:0;;35954:52;;;;;;;;;;35373:641;;;;:::o;43009:118::-;43100:19;:17;:19::i;:::-;;43009:118;:::o;31171:29::-;;;-1:-1:-1;;;;;31171:29:0;;:::o;6558:49::-;6601:6;6558:49;:::o;6247:27::-;;;-1:-1:-1;;;;;6247:27:0;;:::o;7554:49::-;;;;;;;;;;;;;;;:::o;42532:197::-;42640:7;42696:25;:23;:25::i;8090:39::-;;;;;;;;;;;;;:::o;5755:20::-;;;;;;;;;;;;;;-1:-1:-1;;5755:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6995:25;;;;:::o;42737:264::-;42974:19;:17;:19::i;:::-;;42737:264;;;;;;:::o;7892:117::-;7938:71;;;;;;6676:37;6707:6;6676:37;:::o;7415:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43663:343::-;43736:12;43762;43776:23;43803:6;-1:-1:-1;;;;;43803:19:0;43823:4;43803:25;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;43761:67:0;;;;43878:1;43869:7;43866:14;43863:2;;;43930:14;43923:4;43911:10;43907:21;43900:45;45313:506;45370:12;45396;45422:4;-1:-1:-1;;;;;45414:24:0;45498:8;;45439:68;;;;;;;;;;;;;;-1:-1:-1;;26:21;;;22:32;6:49;;45439:68:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;45414:94:0;;;45439:68;45414:94;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;45395:113:0;;;45571:4;45565:11;45622:14;45619:1;45605:12;45590:47;45660:7;45681:47;;;;45784:14;45777:4;45763:12;45759:23;45752:47;5:130:-1;72:20;;97:33;72:20;97:33;;142:124;206:20;;231:30;206:20;231:30;;273:130;340:20;;365:33;340:20;365:33;;411:434;;519:3;512:4;504:6;500:17;496:27;486:2;;537:1;534;527:12;486:2;567:6;561:13;589:60;604:44;641:6;604:44;;;589:60;;;580:69;;669:6;662:5;655:21;705:4;697:6;693:17;738:4;731:5;727:16;773:3;764:6;759:3;755:16;752:25;749:2;;;790:1;787;780:12;749:2;800:39;832:6;827:3;822;800:39;;;479:366;;;;;;;;854:440;;955:3;948:4;940:6;936:17;932:27;922:2;;973:1;970;963:12;922:2;1010:6;997:20;1032:64;1047:48;1088:6;1047:48;;1032:64;1023:73;;1116:6;1109:5;1102:21;1152:4;1144:6;1140:17;1185:4;1178:5;1174:16;1220:3;1211:6;1206:3;1202:16;1199:25;1196:2;;;1237:1;1234;1227:12;1196:2;1247:41;1281:6;1276:3;1271;1247:41;;1439:128;1505:20;;1530:32;1505:20;1530:32;;1574:126;1639:20;;1664:31;1639:20;1664:31;;1707:241;;1811:2;1799:9;1790:7;1786:23;1782:32;1779:2;;;1827:1;1824;1817:12;1779:2;1862:1;1879:53;1924:7;1904:9;1879:53;;1955:366;;;2076:2;2064:9;2055:7;2051:23;2047:32;2044:2;;;2092:1;2089;2082:12;2044:2;2127:1;2144:53;2189:7;2169:9;2144:53;;;2134:63;;2106:97;2234:2;2252:53;2297:7;2288:6;2277:9;2273:22;2252:53;;;2242:63;;2213:98;2038:283;;;;;;2328:491;;;;2466:2;2454:9;2445:7;2441:23;2437:32;2434:2;;;2482:1;2479;2472:12;2434:2;2517:1;2534:53;2579:7;2559:9;2534:53;;;2524:63;;2496:97;2624:2;2642:53;2687:7;2678:6;2667:9;2663:22;2642:53;;;2632:63;;2603:98;2732:2;2750:53;2795:7;2786:6;2775:9;2771:22;2750:53;;;2740:63;;2711:98;2428:391;;;;;;2826:589;;;;2970:2;2958:9;2949:7;2945:23;2941:32;2938:2;;;2986:1;2983;2976:12;2938:2;3021:1;3038:53;3083:7;3063:9;3038:53;;;3028:63;;3000:97;3128:2;3146:50;3188:7;3179:6;3168:9;3164:22;3146:50;;;3136:60;;3107:95;3261:2;3250:9;3246:18;3233:32;3285:18;3277:6;3274:30;3271:2;;;3317:1;3314;3307:12;3271:2;3337:62;3391:7;3382:6;3371:9;3367:22;3337:62;;3422:366;;;3543:2;3531:9;3522:7;3518:23;3514:32;3511:2;;;3559:1;3556;3549:12;3511:2;3594:1;3611:53;3656:7;3636:9;3611:53;;;3601:63;;3573:97;3701:2;3719:53;3764:7;3755:6;3744:9;3740:22;3719:53;;3795:865;;;;;;;3982:3;3970:9;3961:7;3957:23;3953:33;3950:2;;;3999:1;3996;3989:12;3950:2;4034:1;4051:53;4096:7;4076:9;4051:53;;;4041:63;;4013:97;4141:2;4159:53;4204:7;4195:6;4184:9;4180:22;4159:53;;;4149:63;;4120:98;4249:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;;;4257:63;;4228:98;4357:2;4375:51;4418:7;4409:6;4398:9;4394:22;4375:51;;;4365:61;;4336:96;4463:3;4482:53;4527:7;4518:6;4507:9;4503:22;4482:53;;;4472:63;;4442:99;4572:3;4591:53;4636:7;4627:6;4616:9;4612:22;4591:53;;;4581:63;;4551:99;3944:716;;;;;;;;;4667:364;;;4787:2;4775:9;4766:7;4762:23;4758:32;4755:2;;;4803:1;4800;4793:12;4755:2;4838:1;4855:53;4900:7;4880:9;4855:53;;;4845:63;;4817:97;4945:2;4963:52;5007:7;4998:6;4987:9;4983:22;4963:52;;5038:352;;5158:2;5146:9;5137:7;5133:23;5129:32;5126:2;;;5174:1;5171;5164:12;5126:2;5209:24;;5253:18;5242:30;;5239:2;;;5285:1;5282;5275:12;5239:2;5305:69;5366:7;5357:6;5346:9;5342:22;5305:69;;5397:345;;5510:2;5498:9;5489:7;5485:23;5481:32;5478:2;;;5526:1;5523;5516:12;5478:2;5561:31;;5612:18;5601:30;;5598:2;;;5644:1;5641;5634:12;5598:2;5664:62;5718:7;5709:6;5698:9;5694:22;5664:62;;5749:485;;;;5884:2;5872:9;5863:7;5859:23;5855:32;5852:2;;;5900:1;5897;5890:12;5852:2;5935:1;5952:53;5997:7;5977:9;5952:53;;;5942:63;;5914:97;6042:2;6060:53;6105:7;6096:6;6085:9;6081:22;6060:53;;;6050:63;;6021:98;6150:2;6168:50;6210:7;6201:6;6190:9;6186:22;6168:50;;6241:113;6324:24;6342:5;6324:24;;;6319:3;6312:37;6306:48;;;6361:104;6438:21;6453:5;6438:21;;6472:113;6555:24;6573:5;6555:24;;6615:297;;6729:70;6792:6;6787:3;6729:70;;;6722:77;;6811:43;6847:6;6842:3;6835:5;6811:43;;;6876:29;6898:6;6876:29;;;6867:39;;;;6715:197;-1:-1;;;6715:197;6943:310;;7075:88;7156:6;7151:3;7075:88;;;7068:95;;7175:43;7211:6;7206:3;7199:5;7175:43;;;-1:-1;;7231:16;;7061:192;7261:343;;7371:38;7403:5;7371:38;;;7421:70;7484:6;7479:3;7421:70;;;7414:77;;7496:52;7541:6;7536:3;7529:4;7522:5;7518:16;7496:52;;;7569:29;7591:6;7569:29;;7611:356;;7739:38;7771:5;7739:38;;;7789:88;7870:6;7865:3;7789:88;;;7782:95;;7882:52;7927:6;7922:3;7915:4;7908:5;7904:16;7882:52;;;7946:16;;;;;7719:248;-1:-1;;7719:248;8321:477;;8499:85;8581:2;8576:3;8499:85;;;8617:34;8597:55;;8686:34;8681:2;8672:12;;8665:56;-1:-1;;;8750:2;8741:12;;8734:27;8789:2;8780:12;;8485:313;-1:-1;;8485:313;8807:392;;8967:67;9031:2;9026:3;8967:67;;;9067:34;9047:55;;9136:25;9131:2;9122:12;;9115:47;9190:2;9181:12;;8953:246;-1:-1;;8953:246;9208:392;;9368:67;9432:2;9427:3;9368:67;;;9468:34;9448:55;;9537:25;9532:2;9523:12;;9516:47;9591:2;9582:12;;9354:246;-1:-1;;9354:246;9609:431;;9787:85;9869:2;9864:3;9787:85;;;9905:34;9885:55;;9974:28;9969:2;9960:12;;9953:50;10031:2;10022:12;;9773:267;-1:-1;;9773:267;10168:110;10249:23;10266:5;10249:23;;10285:107;10364:22;10380:5;10364:22;;10399:282;;10553:103;10652:3;10643:6;10635;10553:103;;10688:262;;10832:93;10921:3;10912:6;10832:93;;;10825:100;10813:137;-1:-1;;;10813:137;10957:372;;11156:148;11300:3;11156:148;;11336:372;;11535:148;11679:3;11535:148;;11715:213;11833:2;11818:18;;11847:71;11822:9;11891:6;11847:71;;11935:324;12081:2;12066:18;;12095:71;12070:9;12139:6;12095:71;;;12177:72;12245:2;12234:9;12230:18;12221:6;12177:72;;12266:201;12378:2;12363:18;;12392:65;12367:9;12430:6;12392:65;;12474:213;12592:2;12577:18;;12606:71;12581:9;12650:6;12606:71;;12694:317;12840:2;12854:47;;;12825:18;;12915:86;12825:18;12987:6;12979;12915:86;;13018:297;13154:2;13168:47;;;13139:18;;13229:76;13139:18;13291:6;13229:76;;13622:407;13813:2;13827:47;;;13798:18;;13888:131;13798:18;13888:131;;14036:407;14227:2;14241:47;;;14212:18;;14302:131;14212:18;14302:131;;14670:209;14786:2;14771:18;;14800:69;14775:9;14842:6;14800:69;;14886:320;15030:2;15015:18;;15044:69;15019:9;15086:6;15044:69;;;15124:72;15192:2;15181:9;15177:18;15168:6;15124:72;;15213:205;15327:2;15312:18;;15341:67;15316:9;15381:6;15341:67;;15425:256;15487:2;15481:9;15513:17;;;15588:18;15573:34;;15609:22;;;15570:62;15567:2;;;15645:1;15642;15635:12;15567:2;15661;15654:22;15465:216;;-1:-1;15465:216;15688:317;;15827:18;15819:6;15816:30;15813:2;;;15859:1;15856;15849:12;15813:2;-1:-1;15990:4;15926;15903:17;;;;-1:-1;;15899:33;15980:15;;15750:255;16340:121;16427:12;;16398:63;16594:162;16696:19;;;16745:4;16736:14;;16689:67;16765:144;16900:3;16878:31;-1:-1;16878:31;17243:91;;17305:24;17323:5;17305:24;;17341:85;17407:13;17400:21;;17383:43;17433:72;17495:5;17478:27;17512:121;-1:-1;;;;;17574:54;;17557:76;17719:88;17791:10;17780:22;;17763:44;17814:81;17885:4;17874:16;;17857:38;17903:145;17984:6;17979:3;17974;17961:30;-1:-1;18040:1;18022:16;;18015:27;17954:94;18057:268;18122:1;18129:101;18143:6;18140:1;18137:13;18129:101;;;18210:11;;;18204:18;18191:11;;;18184:39;18165:2;18158:10;18129:101;;;18245:6;18242:1;18239:13;18236:2;;;18310:1;18301:6;18296:3;18292:16;18285:27;18236:2;18106:219;;;;;18333:97;18421:2;18401:14;-1:-1;;18397:28;;18381:49;18438:117;18507:24;18525:5;18507:24;;;18500:5;18497:35;18487:2;;18546:1;18543;18536:12;18562:111;18628:21;18643:5;18628:21;;18680:117;18749:24;18767:5;18749:24;;18928:115;18996:23;19013:5;18996:23;;19050:113;19117:22;19133:5;19117:22;

Swarm Source

bzzr://9d095c739c31a33d5bc53f36cef1a5b0dca169dcdae5a26211fbe2e1a05ea650
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.