ETH Price: $3,458.55 (+0.12%)
Gas: 5 Gwei

Token

Empty Set Share (ESS)
 

Overview

Max Total Supply

1,252,698,088.236911249335221247 ESS

Holders

398 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
35,684.096219205882119225 ESS

Value
$0.00
0xb16Ff5f0399440d1180d3af7FD82C64F6A875dd5
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Stake

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : Interfaces.sol
/*
    Copyright 2020, 2021 Empty Set Squad <[email protected]>

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity 0.5.17;
pragma experimental ABIEncoderV2;

import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./lib/Decimal.sol";

/**
 * @title IManagedToken
 * @notice Generic interface for ERC20 tokens that can be minted and burned by their owner
 * @dev Used by Dollar and Stake in this protocol
 */
interface IManagedToken {

    /**
     * @notice Mints `amount` tokens to the {owner}
     * @param amount Amount of token to mint
     */
    function burn(uint256 amount) external;

    /**
     * @notice Burns `amount` tokens from the {owner}
     * @param amount Amount of token to burn
     */
    function mint(uint256 amount) external;
}

/**
 * @title IGovToken
 * @notice Generic interface for ERC20 tokens that have Compound-governance features
 * @dev Used by Stake and other compatible reserve-held tokens
 */
interface IGovToken {

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

/**
 * @title IReserve
 * @notice Interface for the protocol reserve
 */
interface IReserve {
    /**
     * @notice The price that one ESD can currently be sold to the reserve for
     * @dev Returned as a Decimal.D256
     *      Normalizes for decimals (e.g. 1.00 USDC == Decimal.one())
     * @return Current ESD redemption price
     */
    function redeemPrice() external view returns (Decimal.D256 memory);
}

interface IRegistry {
    /**
     * @notice USDC token contract
     */
    function usdc() external view returns (address);

    /**
     * @notice Compound protocol cUSDC pool
     */
    function cUsdc() external view returns (address);

    /**
     * @notice ESD stablecoin contract
     */
    function dollar() external view returns (address);

    /**
     * @notice ESDS governance token contract
     */
    function stake() external view returns (address);

    /**
     * @notice ESD reserve contract
     */
    function reserve() external view returns (address);

    /**
     * @notice ESD governor contract
     */
    function governor() external view returns (address);

    /**
     * @notice ESD timelock contract, owner for the protocol
     */
    function timelock() external view returns (address);

    /**
     * @notice Migration contract to bride v1 assets with current system
     */
    function migrator() external view returns (address);

    /**
     * @notice Registers a new address for USDC
     * @dev Owner only - governance hook
     * @param newValue New address to register
     */
    function setUsdc(address newValue) external;

    /**
     * @notice Registers a new address for cUSDC
     * @dev Owner only - governance hook
     * @param newValue New address to register
     */
    function setCUsdc(address newValue) external;

    /**
     * @notice Registers a new address for ESD
     * @dev Owner only - governance hook
     * @param newValue New address to register
     */
    function setDollar(address newValue) external;

    /**
     * @notice Registers a new address for ESDS
     * @dev Owner only - governance hook
     * @param newValue New address to register
     */
    function setStake(address newValue) external;

    /**
     * @notice Registers a new address for the reserve
     * @dev Owner only - governance hook
     * @param newValue New address to register
     */
    function setReserve(address newValue) external;

    /**
     * @notice Registers a new address for the governor
     * @dev Owner only - governance hook
     * @param newValue New address to register
     */
    function setGovernor(address newValue) external;

    /**
     * @notice Registers a new address for the timelock
     * @dev Owner only - governance hook
     *      Does not automatically update the owner of all owned protocol contracts
     * @param newValue New address to register
     */
    function setTimelock(address newValue) external;

    /**
     * @notice Registers a new address for the v1 migration contract
     * @dev Owner only - governance hook
     * @param newValue New address to register
     */
    function setMigrator(address newValue) external;
}

File 2 of 8 : Stake.sol
/*
    Copyright 2021 Empty Set Squad <[email protected]>

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity 0.5.17;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/ownership/Ownable.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "../Interfaces.sol";

/*
 * audit-info: Forked from Compound's Comp contract:
 *             https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol
 *
 *             Sections that have been changed from the original have been denoted with audit notes
 *             Additionally "Comp" has been renamed to "Stake" throughout
 */

/*
 * audit-info: Beginning of modified code section
 */

contract Stake is IManagedToken, Ownable {

    /// @notice EIP-20 token name for this token
    string public constant name = "Empty Set Share";

    /// @notice EIP-20 token symbol for this token
    string public constant symbol = "ESS";

    /// @notice EIP-20 token decimals for this token
    uint8 public constant decimals = 18;

    /// @notice Total number of tokens in circulation
    /// @dev Initialized at 0, use mint() for initial distribution to migrator & incentivizer(s)
    uint public totalSupply;

    /*
     * audit-info: End of modified code section
     */

    /// @notice Allowance amounts on behalf of others
    mapping (address => mapping (address => uint96)) internal allowances;

    /// @notice Official record of token balances for each account
    mapping (address => uint96) internal balances;

    /// @notice A record of each accounts delegate
    mapping (address => address) public delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint96 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;

    /// @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 The standard EIP-20 transfer event
    event Transfer(address indexed from, address indexed to, uint256 amount);

    /// @notice The standard EIP-20 approval event
    event Approval(address indexed owner, address indexed spender, uint256 amount);

    /*
     * audit-info: Beginning of modified code section
     */

    /**
     * @notice Mint new tokens
     * @param rawAmount The number of tokens to be minted
     */
    function mint(uint rawAmount) public onlyOwner {
        // mint the amount
        uint96 amount = safe96(rawAmount, "Stake::mint: amount exceeds 96 bits");
        totalSupply = safe96(SafeMath.add(totalSupply, amount), "Stake::mint: totalSupply exceeds 96 bits");

        // transfer the amount to the recipient
        balances[owner()] = add96(balances[owner()], amount, "Stake::mint: transfer amount overflows");
        emit Transfer(address(0), owner(), amount);

        // move delegates
        _moveDelegates(address(0), delegates[owner()], amount);
    }

    /**
     * @notice Mint new tokens
     * @param rawAmount The number of tokens to be minted
     */
    function burn(uint rawAmount) public onlyOwner {
        // burn the amount
        uint96 amount = safe96(rawAmount, "Stake::burn: amount exceeds 96 bits");
        totalSupply = safe96(
            SafeMath.sub(totalSupply, amount, "Stake::burn: amount exceeds totalSupply"),
            "Stake::burn: totalSupply exceeds 96 bits");

        // transfer the amount to the recipient
        balances[owner()] = sub96(balances[owner()], amount, "Stake::burn: transfer amount overflows");
        emit Transfer(owner(), address(0), amount);

        // move delegates
        _moveDelegates(delegates[owner()], address(0), amount);
    }

    /*
     * audit-info: End of modified code section
     */

    /**
     * @notice Get the number of tokens `spender` is approved to spend on behalf of `account`
     * @param account The address of the account holding the funds
     * @param spender The address of the account spending the funds
     * @return The number of tokens approved
     */
    function allowance(address account, address spender) external view returns (uint) {
        return allowances[account][spender];
    }

    /**
     * @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 rawAmount The number of tokens that are approved (2^256-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint rawAmount) external returns (bool) {
        uint96 amount;
        if (rawAmount == uint(-1)) {
            amount = uint96(-1);
        } else {
            amount = safe96(rawAmount, "Stake::approve: amount exceeds 96 bits");
        }

        allowances[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);
        return true;
    }

    /**
     * @notice Get the number of tokens held by the `account`
     * @param account The address of the account to get the balance of
     * @return The number of tokens held
     */
    function balanceOf(address account) external view returns (uint) {
        return balances[account];
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint rawAmount) external returns (bool) {
        uint96 amount = safe96(rawAmount, "Stake::transfer: amount exceeds 96 bits");
        _transferTokens(msg.sender, dst, amount);
        return true;
    }

    /**
     * @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 rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(address src, address dst, uint rawAmount) external returns (bool) {
        address spender = msg.sender;
        uint96 spenderAllowance = allowances[src][spender];
        uint96 amount = safe96(rawAmount, "Stake::approve: amount exceeds 96 bits");

        if (spender != src && spenderAllowance != uint96(-1)) {
            uint96 newAllowance = sub96(spenderAllowance, amount, "Stake::transferFrom: transfer amount exceeds spender allowance");
            allowances[src][spender] = newAllowance;

            emit Approval(src, spender, newAllowance);
        }

        _transferTokens(src, dst, amount);
        return true;
    }

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) public {
        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) public {
        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), "Stake::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "Stake::delegateBySig: invalid nonce");
        require(now <= expiry, "Stake::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 (uint96) {
        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) public view returns (uint96) {
        require(blockNumber < block.number, "Stake::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];
        uint96 delegatorBalance = balances[delegator];
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _transferTokens(address src, address dst, uint96 amount) internal {
        require(src != address(0), "Stake::_transferTokens: cannot transfer from the zero address");
        require(dst != address(0), "Stake::_transferTokens: cannot transfer to the zero address");

        balances[src] = sub96(balances[src], amount, "Stake::_transferTokens: transfer amount exceeds balance");
        balances[dst] = add96(balances[dst], amount, "Stake::_transferTokens: transfer amount overflows");
        emit Transfer(src, dst, amount);

        _moveDelegates(delegates[src], delegates[dst], amount);
    }

    function _moveDelegates(address srcRep, address dstRep, uint96 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint96 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint96 srcRepNew = sub96(srcRepOld, amount, "Stake::_moveVotes: vote amount underflows");
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint96 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint96 dstRepNew = add96(dstRepOld, amount, "Stake::_moveVotes: vote amount overflows");
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint96 oldVotes, uint96 newVotes) internal {
        uint32 blockNumber = safe32(block.number, "Stake::_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 safe96(uint n, string memory errorMessage) internal pure returns (uint96) {
        require(n < 2**96, errorMessage);
        return uint96(n);
    }

    function add96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) {
        uint96 c = a + b;
        require(c >= a, errorMessage);
        return c;
    }

    function sub96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) {
        require(b <= a, errorMessage);
        return a - b;
    }

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

File 3 of 8 : Decimal.sol
/*
    Copyright 2019 dYdX Trading Inc.
    Copyright 2020, 2021 Empty Set Squad <[email protected]>

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
*/

pragma solidity 0.5.17;
pragma experimental ABIEncoderV2;

import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol";

/**
 * @title Decimal
 * @notice Library that defines a fixed-point number with 18 decimal places.
 *
 * audit-info: Extended from dYdX's Decimal library:
 *             https://github.com/dydxprotocol/solo/blob/master/contracts/protocol/lib/Decimal.sol
 */
library Decimal {
    using SafeMath for uint256;

    // ============ Constants ============

    /**
     * @notice Fixed-point base for Decimal.D256 values
     */
    uint256 constant BASE = 10**18;

    // ============ Structs ============


    /**
     * @notice Main struct to hold Decimal.D256 state
     * @dev Represents the number value / BASE
     */
    struct D256 {
        /**
         * @notice Underlying value of the Decimal.D256
         */
        uint256 value;
    }

    // ============ Static Functions ============

    /**
     * @notice Returns a new Decimal.D256 struct initialized to represent 0.0
     * @return Decimal.D256 representation of 0.0
     */
    function zero()
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: 0 });
    }

    /**
     * @notice Returns a new Decimal.D256 struct initialized to represent 1.0
     * @return Decimal.D256 representation of 1.0
     */
    function one()
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: BASE });
    }

    /**
     * @notice Returns a new Decimal.D256 struct initialized to represent `a`
     * @param a Integer to transform to Decimal.D256 type
     * @return Decimal.D256 representation of integer`a`
     */
    function from(
        uint256 a
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: a.mul(BASE) });
    }

    /**
     * @notice Returns a new Decimal.D256 struct initialized to represent `a` / `b`
     * @param a Numerator of ratio to transform to Decimal.D256 type
     * @param b Denominator of ratio to transform to Decimal.D256 type
     * @return Decimal.D256 representation of ratio `a` / `b`
     */
    function ratio(
        uint256 a,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: getPartial(a, BASE, b) });
    }

    // ============ Self Functions ============

    /**
     * @notice Adds integer `b` to Decimal.D256 `self`
     * @param self Original Decimal.D256 number
     * @param b Integer to add to `self`
     * @return Resulting Decimal.D256
     */
    function add(
        D256 memory self,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.add(b.mul(BASE)) });
    }

    /**
     * @notice Subtracts integer `b` from Decimal.D256 `self`
     * @param self Original Decimal.D256 number
     * @param b Integer to subtract from `self`
     * @return Resulting Decimal.D256
     */
    function sub(
        D256 memory self,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.sub(b.mul(BASE)) });
    }

    /**
     * @notice Subtracts integer `b` from Decimal.D256 `self`
     * @dev Reverts on underflow with reason `reason`
     * @param self Original Decimal.D256 number
     * @param b Integer to subtract from `self`
     * @param reason Revert reason
     * @return Resulting Decimal.D256
     */
    function sub(
        D256 memory self,
        uint256 b,
        string memory reason
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.sub(b.mul(BASE), reason) });
    }

    /**
     * @notice Subtracts integer `b` from Decimal.D256 `self`
     * @param self Original Decimal.D256 number
     * @param b Integer to subtract from `self`
     * @return 0 on underflow, or the Resulting Decimal.D256
     */
    function subOrZero(
        D256 memory self,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        uint256 amount = b.mul(BASE);
        return D256({ value: self.value > amount ? self.value.sub(amount) : 0 });
    }

    /**
     * @notice Multiplies Decimal.D256 `self` by integer `b`
     * @param self Original Decimal.D256 number
     * @param b Integer to multiply `self` by
     * @return Resulting Decimal.D256
     */
    function mul(
        D256 memory self,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.mul(b) });
    }

    /**
     * @notice Divides Decimal.D256 `self` by integer `b`
     * @param self Original Decimal.D256 number
     * @param b Integer to divide `self` by
     * @return Resulting Decimal.D256
     */
    function div(
        D256 memory self,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.div(b) });
    }

    /**
     * @notice Divides Decimal.D256 `self` by integer `b`
     * @dev Reverts on divide-by-zero with reason `reason`
     * @param self Original Decimal.D256 number
     * @param b Integer to divide `self` by
     * @param reason Revert reason
     * @return Resulting Decimal.D256
     */
    function div(
        D256 memory self,
        uint256 b,
        string memory reason
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.div(b, reason) });
    }

    /**
     * @notice Exponentiates Decimal.D256 `self` to the power of integer `b`
     * @dev Not optimized - is only suitable to use with small exponents
     * @param self Original Decimal.D256 number
     * @param b Integer exponent
     * @return Resulting Decimal.D256
     */
    function pow(
        D256 memory self,
        uint256 b
    )
    internal
    pure
    returns (D256 memory)
    {
        if (b == 0) {
            return from(1);
        }

        D256 memory temp = D256({ value: self.value });
        for (uint256 i = 1; i < b; i++) {
            temp = mul(temp, self);
        }

        return temp;
    }

    /**
     * @notice Adds Decimal.D256 `b` to Decimal.D256 `self`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to add to `self`
     * @return Resulting Decimal.D256
     */
    function add(
        D256 memory self,
        D256 memory b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.add(b.value) });
    }

    /**
     * @notice Subtracts Decimal.D256 `b` from Decimal.D256 `self`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to subtract from `self`
     * @return Resulting Decimal.D256
     */
    function sub(
        D256 memory self,
        D256 memory b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.sub(b.value) });
    }

    /**
     * @notice Subtracts Decimal.D256 `b` from Decimal.D256 `self`
     * @dev Reverts on underflow with reason `reason`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to subtract from `self`
     * @param reason Revert reason
     * @return Resulting Decimal.D256
     */
    function sub(
        D256 memory self,
        D256 memory b,
        string memory reason
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value.sub(b.value, reason) });
    }

    /**
     * @notice Subtracts Decimal.D256 `b` from Decimal.D256 `self`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to subtract from `self`
     * @return 0 on underflow, or the Resulting Decimal.D256
     */
    function subOrZero(
        D256 memory self,
        D256 memory b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: self.value > b.value ? self.value.sub(b.value) : 0 });
    }

    /**
     * @notice Multiplies Decimal.D256 `self` by Decimal.D256 `b`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to multiply `self` by
     * @return Resulting Decimal.D256
     */
    function mul(
        D256 memory self,
        D256 memory b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: getPartial(self.value, b.value, BASE) });
    }

    /**
     * @notice Divides Decimal.D256 `self` by Decimal.D256 `b`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to divide `self` by
     * @return Resulting Decimal.D256
     */
    function div(
        D256 memory self,
        D256 memory b
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: getPartial(self.value, BASE, b.value) });
    }

    /**
     * @notice Divides Decimal.D256 `self` by Decimal.D256 `b`
     * @dev Reverts on divide-by-zero with reason `reason`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to divide `self` by
     * @param reason Revert reason
     * @return Resulting Decimal.D256
     */
    function div(
        D256 memory self,
        D256 memory b,
        string memory reason
    )
    internal
    pure
    returns (D256 memory)
    {
        return D256({ value: getPartial(self.value, BASE, b.value, reason) });
    }

    /**
     * @notice Checks if `b` is equal to `self`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to compare
     * @return Whether `b` is equal to `self`
     */
    function equals(D256 memory self, D256 memory b) internal pure returns (bool) {
        return self.value == b.value;
    }

    /**
     * @notice Checks if `b` is greater than `self`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to compare
     * @return Whether `b` is greater than `self`
     */
    function greaterThan(D256 memory self, D256 memory b) internal pure returns (bool) {
        return compareTo(self, b) == 2;
    }

    /**
     * @notice Checks if `b` is less than `self`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to compare
     * @return Whether `b` is less than `self`
     */
    function lessThan(D256 memory self, D256 memory b) internal pure returns (bool) {
        return compareTo(self, b) == 0;
    }

    /**
     * @notice Checks if `b` is greater than or equal to `self`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to compare
     * @return Whether `b` is greater than or equal to `self`
     */
    function greaterThanOrEqualTo(D256 memory self, D256 memory b) internal pure returns (bool) {
        return compareTo(self, b) > 0;
    }

    /**
     * @notice Checks if `b` is less than or equal to `self`
     * @param self Original Decimal.D256 number
     * @param b Decimal.D256 to compare
     * @return Whether `b` is less than or equal to `self`
     */
    function lessThanOrEqualTo(D256 memory self, D256 memory b) internal pure returns (bool) {
        return compareTo(self, b) < 2;
    }

    /**
     * @notice Checks if `self` is equal to 0
     * @param self Original Decimal.D256 number
     * @return Whether `self` is equal to 0
     */
    function isZero(D256 memory self) internal pure returns (bool) {
        return self.value == 0;
    }

    /**
     * @notice Truncates the decimal part of `self` and returns the integer value as a uint256
     * @param self Original Decimal.D256 number
     * @return Truncated Integer value as a uint256
     */
    function asUint256(D256 memory self) internal pure returns (uint256) {
        return self.value.div(BASE);
    }

    // ============ General Math ============

    /**
     * @notice Determines the minimum of `a` and `b`
     * @param a First Decimal.D256 number to compare
     * @param b Second Decimal.D256 number to compare
     * @return Resulting minimum Decimal.D256
     */
    function min(D256 memory a, D256 memory b) internal pure returns (Decimal.D256 memory) {
        return lessThan(a, b) ? a : b;
    }

    /**
     * @notice Determines the maximum of `a` and `b`
     * @param a First Decimal.D256 number to compare
     * @param b Second Decimal.D256 number to compare
     * @return Resulting maximum Decimal.D256
     */
    function max(D256 memory a, D256 memory b) internal pure returns (Decimal.D256 memory) {
        return greaterThan(a, b) ? a : b;
    }

    // ============ Core Methods ============

    /**
     * @notice Multiplies `target` by ratio `numerator` / `denominator`
     * @dev Internal only - helper
     * @param target Original Integer number
     * @param numerator Integer numerator of ratio
     * @param denominator Integer denominator of ratio
     * @return Resulting Decimal.D256 number
     */
    function getPartial(
        uint256 target,
        uint256 numerator,
        uint256 denominator
    )
    private
    pure
    returns (uint256)
    {
        return target.mul(numerator).div(denominator);
    }

    /**
     * @notice Multiplies `target` by ratio `numerator` / `denominator`
     * @dev Internal only - helper
     *      Reverts on divide-by-zero with reason `reason`
     * @param target Original Integer number
     * @param numerator Integer numerator of ratio
     * @param denominator Integer denominator of ratio
     * @param reason Revert reason
     * @return Resulting Decimal.D256 number
     */
    function getPartial(
        uint256 target,
        uint256 numerator,
        uint256 denominator,
        string memory reason
    )
    private
    pure
    returns (uint256)
    {
        return target.mul(numerator).div(denominator, reason);
    }

    /**
     * @notice Compares Decimal.D256 `a` to Decimal.D256 `b`
     * @dev Internal only - helper
     * @param a First Decimal.D256 number to compare
     * @param b Second Decimal.D256 number to compare
     * @return 0 if a < b, 1 if a == b, 2 if a > b
     */
    function compareTo(
        D256 memory a,
        D256 memory b
    )
    private
    pure
    returns (uint256)
    {
        if (a.value == b.value) {
            return 1;
        }
        return a.value > b.value ? 2 : 0;
    }
}

File 4 of 8 : Context.sol
pragma solidity ^0.5.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 5 of 8 : SafeMath.sol
pragma solidity ^0.5.0;

/**
 * @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.
     *
     * _Available since v2.4.0._
     */
    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.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        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.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

File 6 of 8 : Ownable.sol
pragma solidity ^0.5.0;

import "../GSN/Context.sol";
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 7 of 8 : IERC20.sol
pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 8 of 8 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"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":true,"inputs":[{"internalType":"address","name":"account","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":"rawAmount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"uint96","name":"votes","type":"uint96"}],"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":"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":true,"inputs":[{"internalType":"address","name":"","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":"uint96","name":"","type":"uint96"}],"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":"uint96","name":"","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"mint","outputs":[],"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"rawAmount","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":"rawAmount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405260006100176001600160e01b0361006616565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35061006a565b3390565b61227f806100796000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063782d6fe1116100de578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610315578063e7a324dc14610328578063f1127ed814610330578063f2fde38b1461035157610173565b8063a9059cbb146102dc578063b4b5ea57146102ef578063c3cda5201461030257610173565b8063782d6fe11461027e5780637ecebe001461029e5780638da5cb5b146102b15780638f32d59b146102b957806395d89b41146102c1578063a0712d68146102c957610173565b806342966c681161013057806342966c68146101fb578063587cde1e146102105780635c19a95c146102305780636fcfff451461024357806370a0823114610263578063715018a61461027657610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101b657806320606b70146101cb57806323b872dd146101d3578063313ce567146101e6575b600080fd5b610180610364565b60405161018d9190611def565b60405180910390f35b6101a96101a43660046117dc565b61038f565b60405161018d9190611d45565b6101be61044e565b60405161018d9190611d53565b6101be610454565b6101a96101e136600461178f565b61046b565b6101ee6105b4565b60405161018d9190611eb9565b61020e6102093660046118c3565b6105b9565b005b61022361021e36600461172f565b610792565b60405161018d9190611d37565b61020e61023e36600461172f565b6107ad565b61025661025136600461172f565b6107ba565b60405161018d9190611e90565b6101be61027136600461172f565b6107d2565b61020e6107f6565b61029161028c3660046117dc565b610864565b60405161018d9190611ed5565b6101be6102ac36600461172f565b610a72565b610223610a84565b6101a9610a93565b610180610ab7565b61020e6102d73660046118c3565b610ad6565b6101a96102ea3660046117dc565b610c8e565b6102916102fd36600461172f565b610cca565b61020e61031036600461180c565b610d3a565b6101be610323366004611755565b610f2b565b6101be610f5f565b61034361033e366004611893565b610f6b565b60405161018d929190611e9e565b61020e61035f36600461172f565b610fa0565b6040518060400160405280600f81526020016e456d7074792053657420536861726560881b81525081565b6000806000198314156103a557506000196103ca565b6103c78360405180606001604052806026815260200161201360269139610fcd565b90505b3360008181526002602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061043a908590611ec7565b60405180910390a360019150505b92915050565b60015481565b60405161046090611d21565b604051809103902081565b6001600160a01b03831660009081526002602090815260408083203380855290835281842054825160608101909352602680845291936001600160601b039091169285926104c3928892919061201390830139610fcd565b9050866001600160a01b0316836001600160a01b0316141580156104f057506001600160601b0382811614155b1561059a57600061051a83836040518060600160405280603e81526020016120aa603e9139610ffc565b6001600160a01b038981166000818152600260209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610590908590611ec7565b60405180910390a3505b6105a587878361103b565b600193505050505b9392505050565b601281565b6105c1610a93565b6105e65760405162461bcd60e51b81526004016105dd90611e70565b60405180910390fd5b600061060a8260405180606001604052806023815260200161208760239139610fcd565b905061065b61063d600154836001600160601b031660405180606001604052806027815260200161215f602791396111e6565b6040518060600160405280602881526020016120e860289139610fcd565b6001600160601b03166001556106c960036000610676610a84565b6001600160a01b03166001600160a01b0316815260200190815260200160002060009054906101000a90046001600160601b03168260405180606001604052806026815260200161213960269139610ffc565b600360006106d5610a84565b6001600160a01b031681526020810191909152604001600090812080546001600160601b0319166001600160601b039390931692909217909155610717610a84565b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161074f9190611ec7565b60405180910390a361078e60046000610766610a84565b6001600160a01b0390811682526020820192909252604001600090812054909116908361120a565b5050565b6004602052600090815260409020546001600160a01b031681565b6107b7338261139c565b50565b60066020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600360205260409020546001600160601b031690565b6107fe610a93565b61081a5760405162461bcd60e51b81526004016105dd90611e70565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60004382106108855760405162461bcd60e51b81526004016105dd90611e60565b6001600160a01b03831660009081526006602052604090205463ffffffff16806108b3576000915050610448565b6001600160a01b038416600090815260056020908152604080832063ffffffff60001986018116855292529091205416831061092f576001600160a01b03841660009081526005602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b03169050610448565b6001600160a01b038416600090815260056020908152604080832083805290915290205463ffffffff1683101561096a576000915050610448565b600060001982015b8163ffffffff168163ffffffff161115610a2d57600282820363ffffffff1604810361099c6116ec565b506001600160a01b038716600090815260056020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610a08576020015194506104489350505050565b805163ffffffff16871115610a1f57819350610a26565b6001820392505b5050610972565b506001600160a01b038516600090815260056020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60076020526000908152604090205481565b6000546001600160a01b031690565b600080546001600160a01b0316610aa8611426565b6001600160a01b031614905090565b6040518060400160405280600381526020016245535360e81b81525081565b610ade610a93565b610afa5760405162461bcd60e51b81526004016105dd90611e70565b6000610b1e82604051806060016040528060238152602001611ff060239139610fcd565b9050610b56610b38600154836001600160601b031661142a565b60405180606001604052806028815260200161205f60289139610fcd565b6001600160601b0316600155610bc460036000610b71610a84565b6001600160a01b03166001600160a01b0316815260200190815260200160002060009054906101000a90046001600160601b0316826040518060600160405280602681526020016120396026913961144f565b60036000610bd0610a84565b6001600160a01b03168152602081019190915260400160002080546001600160601b0319166001600160601b0392909216919091179055610c0f610a84565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c529190611ec7565b60405180910390a361078e600060046000610c6b610a84565b6001600160a01b039081168252602082019290925260400160002054168361120a565b600080610cb3836040518060600160405280602781526020016121df60279139610fcd565b9050610cc033858361103b565b5060019392505050565b6001600160a01b03811660009081526006602052604081205463ffffffff1680610cf55760006105ad565b6001600160a01b0383166000908152600560209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03169392505050565b6000604051610d4890611d21565b60408051918290038220828201909152600f82526e456d7074792053657420536861726560881b6020909201919091527f3efd950ea540ed0870d3edb5315468f4239258d7a8c3fb1cc0598cb7f8c67aa3610da161148b565b30604051602001610db59493929190611d9f565b6040516020818303038152906040528051906020012090506000604051610ddb90611d2c565b604051908190038120610df6918a908a908a90602001611d61565b60405160208183030381529060405280519060200120905060008282604051602001610e23929190611cf0565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610e609493929190611dd4565b6020604051602081039080840390855afa158015610e82573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610eb55760405162461bcd60e51b81526004016105dd90611e40565b6001600160a01b03811660009081526007602052604090208054600181019091558914610ef45760405162461bcd60e51b81526004016105dd90611e50565b87421115610f145760405162461bcd60e51b81526004016105dd90611e80565b610f1e818b61139c565b505050505b505050505050565b6001600160a01b0391821660009081526002602090815260408083209390941682529190915220546001600160601b031690565b60405161046090611d2c565b600560209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b610fa8610a93565b610fc45760405162461bcd60e51b81526004016105dd90611e70565b6107b78161148f565b600081600160601b8410610ff45760405162461bcd60e51b81526004016105dd9190611def565b509192915050565b6000836001600160601b0316836001600160601b0316111582906110335760405162461bcd60e51b81526004016105dd9190611def565b505050900390565b6001600160a01b0383166110615760405162461bcd60e51b81526004016105dd90611e00565b6001600160a01b0382166110875760405162461bcd60e51b81526004016105dd90611e30565b6001600160a01b0383166000908152600360209081526040918290205482516060810190935260378084526110d2936001600160601b03909216928592919061220690830139610ffc565b6001600160a01b03848116600090815260036020908152604080832080546001600160601b0319166001600160601b0396871617905592861682529082902054825160608101909352603180845261113a94919091169285929091906121869083013961144f565b6001600160a01b038381166000818152600360205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111a7908590611ec7565b60405180910390a36001600160a01b038084166000908152600460205260408082205485841683529120546111e19291821691168361120a565b505050565b600081848411156110335760405162461bcd60e51b81526004016105dd9190611def565b816001600160a01b0316836001600160a01b03161415801561123557506000816001600160601b0316115b156111e1576001600160a01b038316156112ed576001600160a01b03831660009081526006602052604081205463ffffffff1690816112755760006112b4565b6001600160a01b0385166000908152600560209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006112db828560405180606001604052806029815260200161211060299139610ffc565b90506112e986848484611510565b5050505b6001600160a01b038216156111e1576001600160a01b03821660009081526006602052604081205463ffffffff169081611328576000611367565b6001600160a01b0384166000908152600560209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061138e82856040518060600160405280602881526020016121b76028913961144f565b9050610f2385848484611510565b6001600160a01b03808316600081815260046020818152604080842080546003845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461142082848361120a565b50505050565b3390565b6000828201838110156105ad5760405162461bcd60e51b81526004016105dd90611e20565b6000838301826001600160601b0380871690831610156114825760405162461bcd60e51b81526004016105dd9190611def565b50949350505050565b4690565b6001600160a01b0381166114b55760405162461bcd60e51b81526004016105dd90611e10565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061153443604051806060016040528060358152602001611fbb603591396116c5565b905060008463ffffffff1611801561157d57506001600160a01b038516600090815260056020908152604080832063ffffffff6000198901811685529252909120548282169116145b156115dc576001600160a01b0385166000908152600560209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b0385160217905561167b565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600583528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600690935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72484846040516116b6929190611ee3565b60405180910390a25050505050565b600081600160201b8410610ff45760405162461bcd60e51b81526004016105dd9190611def565b604080518082019091526000808252602082015290565b803561044881611f8b565b803561044881611f9f565b803561044881611fa8565b803561044881611fb1565b60006020828403121561174157600080fd5b600061174d8484611703565b949350505050565b6000806040838503121561176857600080fd5b60006117748585611703565b925050602061178585828601611703565b9150509250929050565b6000806000606084860312156117a457600080fd5b60006117b08686611703565b93505060206117c186828701611703565b92505060406117d28682870161170e565b9150509250925092565b600080604083850312156117ef57600080fd5b60006117fb8585611703565b92505060206117858582860161170e565b60008060008060008060c0878903121561182557600080fd5b60006118318989611703565b965050602061184289828a0161170e565b955050604061185389828a0161170e565b945050606061186489828a01611724565b935050608061187589828a0161170e565b92505060a061188689828a0161170e565b9150509295509295509295565b600080604083850312156118a657600080fd5b60006118b28585611703565b925050602061178585828601611719565b6000602082840312156118d557600080fd5b600061174d848461170e565b6118ea81611f10565b82525050565b6118ea81611f1b565b6118ea81611f20565b6118ea61190e82611f20565b611f20565b600061191e82611efe565b6119288185611f02565b9350611938818560208601611f55565b61194181611f81565b9093019392505050565b6000611958603d83611f02565b7f5374616b653a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207481527f72616e736665722066726f6d20746865207a65726f2061646472657373000000602082015260400192915050565b60006119b7602683611f02565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526564647265737360d01b602082015260400192915050565b60006119ff600283611f0b565b61190160f01b815260020192915050565b6000611a1d601b83611f02565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000611a56603b83611f02565b7f5374616b653a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207481527f72616e7366657220746f20746865207a65726f20616464726573730000000000602082015260400192915050565b6000611ab5602783611f02565b7f5374616b653a3a64656c656761746542795369673a20696e76616c6964207369815266676e617475726560c81b602082015260400192915050565b6000611afe602383611f02565b7f5374616b653a3a64656c656761746542795369673a20696e76616c6964206e6f8152626e636560e81b602082015260400192915050565b6000611b43602883611f02565b7f5374616b653a3a6765745072696f72566f7465733a206e6f74207965742064658152671d195c9b5a5b995960c21b602082015260400192915050565b6000611b8d604383611f0b565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000611bf8602083611f02565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572815260200192915050565b6000611c31602783611f02565b7f5374616b653a3a64656c656761746542795369673a207369676e617475726520815266195e1c1a5c995960ca1b602082015260400192915050565b6000611c7a603a83611f0b565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b6118ea81611f2f565b6118ea81611f38565b6118ea81611f4a565b6118ea81611f3e565b6000611cfb826119f2565b9150611d078285611902565b602082019150611d178284611902565b5060200192915050565b600061044882611b80565b600061044882611c6d565b6020810161044882846118e1565b6020810161044882846118f0565b6020810161044882846118f9565b60808101611d6f82876118f9565b611d7c60208301866118e1565b611d8960408301856118f9565b611d9660608301846118f9565b95945050505050565b60808101611dad82876118f9565b611dba60208301866118f9565b611dc760408301856118f9565b611d9660608301846118e1565b60808101611de282876118f9565b611d7c6020830186611cd5565b602080825281016105ad8184611913565b602080825281016104488161194b565b60208082528101610448816119aa565b6020808252810161044881611a10565b6020808252810161044881611a49565b6020808252810161044881611aa8565b6020808252810161044881611af1565b6020808252810161044881611b36565b6020808252810161044881611beb565b6020808252810161044881611c24565b602081016104488284611ccc565b60408101611eac8285611ccc565b6105ad6020830184611ce7565b602081016104488284611cd5565b602081016104488284611cde565b602081016104488284611ce7565b60408101611ef18285611cde565b6105ad6020830184611cde565b5190565b90815260200190565b919050565b600061044882611f23565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b6001600160601b031690565b600061044882611f3e565b60005b83811015611f70578181015183820152602001611f58565b838111156114205750506000910152565b601f01601f191690565b611f9481611f10565b81146107b757600080fd5b611f9481611f20565b611f9481611f2f565b611f9481611f3856fe5374616b653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974735374616b653a3a6d696e743a20616d6f756e74206578636565647320393620626974735374616b653a3a617070726f76653a20616d6f756e74206578636565647320393620626974735374616b653a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f77735374616b653a3a6d696e743a20746f74616c537570706c79206578636565647320393620626974735374616b653a3a6275726e3a20616d6f756e74206578636565647320393620626974735374616b653a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63655374616b653a3a6275726e3a20746f74616c537570706c79206578636565647320393620626974735374616b653a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77735374616b653a3a6275726e3a207472616e7366657220616d6f756e74206f766572666c6f77735374616b653a3a6275726e3a20616d6f756e74206578636565647320746f74616c537570706c795374616b653a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77735374616b653a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f77735374616b653a3a7472616e736665723a20616d6f756e74206578636565647320393620626974735374616b653a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a365627a7a7231582042904cb1ccde5bc4a73536ca5c6873b1905e484bd4dd07617660539f617502c26c6578706572696d656e74616cf564736f6c63430005110040

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063782d6fe1116100de578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610315578063e7a324dc14610328578063f1127ed814610330578063f2fde38b1461035157610173565b8063a9059cbb146102dc578063b4b5ea57146102ef578063c3cda5201461030257610173565b8063782d6fe11461027e5780637ecebe001461029e5780638da5cb5b146102b15780638f32d59b146102b957806395d89b41146102c1578063a0712d68146102c957610173565b806342966c681161013057806342966c68146101fb578063587cde1e146102105780635c19a95c146102305780636fcfff451461024357806370a0823114610263578063715018a61461027657610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101b657806320606b70146101cb57806323b872dd146101d3578063313ce567146101e6575b600080fd5b610180610364565b60405161018d9190611def565b60405180910390f35b6101a96101a43660046117dc565b61038f565b60405161018d9190611d45565b6101be61044e565b60405161018d9190611d53565b6101be610454565b6101a96101e136600461178f565b61046b565b6101ee6105b4565b60405161018d9190611eb9565b61020e6102093660046118c3565b6105b9565b005b61022361021e36600461172f565b610792565b60405161018d9190611d37565b61020e61023e36600461172f565b6107ad565b61025661025136600461172f565b6107ba565b60405161018d9190611e90565b6101be61027136600461172f565b6107d2565b61020e6107f6565b61029161028c3660046117dc565b610864565b60405161018d9190611ed5565b6101be6102ac36600461172f565b610a72565b610223610a84565b6101a9610a93565b610180610ab7565b61020e6102d73660046118c3565b610ad6565b6101a96102ea3660046117dc565b610c8e565b6102916102fd36600461172f565b610cca565b61020e61031036600461180c565b610d3a565b6101be610323366004611755565b610f2b565b6101be610f5f565b61034361033e366004611893565b610f6b565b60405161018d929190611e9e565b61020e61035f36600461172f565b610fa0565b6040518060400160405280600f81526020016e456d7074792053657420536861726560881b81525081565b6000806000198314156103a557506000196103ca565b6103c78360405180606001604052806026815260200161201360269139610fcd565b90505b3360008181526002602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061043a908590611ec7565b60405180910390a360019150505b92915050565b60015481565b60405161046090611d21565b604051809103902081565b6001600160a01b03831660009081526002602090815260408083203380855290835281842054825160608101909352602680845291936001600160601b039091169285926104c3928892919061201390830139610fcd565b9050866001600160a01b0316836001600160a01b0316141580156104f057506001600160601b0382811614155b1561059a57600061051a83836040518060600160405280603e81526020016120aa603e9139610ffc565b6001600160a01b038981166000818152600260209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610590908590611ec7565b60405180910390a3505b6105a587878361103b565b600193505050505b9392505050565b601281565b6105c1610a93565b6105e65760405162461bcd60e51b81526004016105dd90611e70565b60405180910390fd5b600061060a8260405180606001604052806023815260200161208760239139610fcd565b905061065b61063d600154836001600160601b031660405180606001604052806027815260200161215f602791396111e6565b6040518060600160405280602881526020016120e860289139610fcd565b6001600160601b03166001556106c960036000610676610a84565b6001600160a01b03166001600160a01b0316815260200190815260200160002060009054906101000a90046001600160601b03168260405180606001604052806026815260200161213960269139610ffc565b600360006106d5610a84565b6001600160a01b031681526020810191909152604001600090812080546001600160601b0319166001600160601b039390931692909217909155610717610a84565b6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161074f9190611ec7565b60405180910390a361078e60046000610766610a84565b6001600160a01b0390811682526020820192909252604001600090812054909116908361120a565b5050565b6004602052600090815260409020546001600160a01b031681565b6107b7338261139c565b50565b60066020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600360205260409020546001600160601b031690565b6107fe610a93565b61081a5760405162461bcd60e51b81526004016105dd90611e70565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60004382106108855760405162461bcd60e51b81526004016105dd90611e60565b6001600160a01b03831660009081526006602052604090205463ffffffff16806108b3576000915050610448565b6001600160a01b038416600090815260056020908152604080832063ffffffff60001986018116855292529091205416831061092f576001600160a01b03841660009081526005602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b03169050610448565b6001600160a01b038416600090815260056020908152604080832083805290915290205463ffffffff1683101561096a576000915050610448565b600060001982015b8163ffffffff168163ffffffff161115610a2d57600282820363ffffffff1604810361099c6116ec565b506001600160a01b038716600090815260056020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610a08576020015194506104489350505050565b805163ffffffff16871115610a1f57819350610a26565b6001820392505b5050610972565b506001600160a01b038516600090815260056020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60076020526000908152604090205481565b6000546001600160a01b031690565b600080546001600160a01b0316610aa8611426565b6001600160a01b031614905090565b6040518060400160405280600381526020016245535360e81b81525081565b610ade610a93565b610afa5760405162461bcd60e51b81526004016105dd90611e70565b6000610b1e82604051806060016040528060238152602001611ff060239139610fcd565b9050610b56610b38600154836001600160601b031661142a565b60405180606001604052806028815260200161205f60289139610fcd565b6001600160601b0316600155610bc460036000610b71610a84565b6001600160a01b03166001600160a01b0316815260200190815260200160002060009054906101000a90046001600160601b0316826040518060600160405280602681526020016120396026913961144f565b60036000610bd0610a84565b6001600160a01b03168152602081019190915260400160002080546001600160601b0319166001600160601b0392909216919091179055610c0f610a84565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c529190611ec7565b60405180910390a361078e600060046000610c6b610a84565b6001600160a01b039081168252602082019290925260400160002054168361120a565b600080610cb3836040518060600160405280602781526020016121df60279139610fcd565b9050610cc033858361103b565b5060019392505050565b6001600160a01b03811660009081526006602052604081205463ffffffff1680610cf55760006105ad565b6001600160a01b0383166000908152600560209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03169392505050565b6000604051610d4890611d21565b60408051918290038220828201909152600f82526e456d7074792053657420536861726560881b6020909201919091527f3efd950ea540ed0870d3edb5315468f4239258d7a8c3fb1cc0598cb7f8c67aa3610da161148b565b30604051602001610db59493929190611d9f565b6040516020818303038152906040528051906020012090506000604051610ddb90611d2c565b604051908190038120610df6918a908a908a90602001611d61565b60405160208183030381529060405280519060200120905060008282604051602001610e23929190611cf0565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610e609493929190611dd4565b6020604051602081039080840390855afa158015610e82573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610eb55760405162461bcd60e51b81526004016105dd90611e40565b6001600160a01b03811660009081526007602052604090208054600181019091558914610ef45760405162461bcd60e51b81526004016105dd90611e50565b87421115610f145760405162461bcd60e51b81526004016105dd90611e80565b610f1e818b61139c565b505050505b505050505050565b6001600160a01b0391821660009081526002602090815260408083209390941682529190915220546001600160601b031690565b60405161046090611d2c565b600560209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b610fa8610a93565b610fc45760405162461bcd60e51b81526004016105dd90611e70565b6107b78161148f565b600081600160601b8410610ff45760405162461bcd60e51b81526004016105dd9190611def565b509192915050565b6000836001600160601b0316836001600160601b0316111582906110335760405162461bcd60e51b81526004016105dd9190611def565b505050900390565b6001600160a01b0383166110615760405162461bcd60e51b81526004016105dd90611e00565b6001600160a01b0382166110875760405162461bcd60e51b81526004016105dd90611e30565b6001600160a01b0383166000908152600360209081526040918290205482516060810190935260378084526110d2936001600160601b03909216928592919061220690830139610ffc565b6001600160a01b03848116600090815260036020908152604080832080546001600160601b0319166001600160601b0396871617905592861682529082902054825160608101909352603180845261113a94919091169285929091906121869083013961144f565b6001600160a01b038381166000818152600360205260409081902080546001600160601b0319166001600160601b0395909516949094179093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111a7908590611ec7565b60405180910390a36001600160a01b038084166000908152600460205260408082205485841683529120546111e19291821691168361120a565b505050565b600081848411156110335760405162461bcd60e51b81526004016105dd9190611def565b816001600160a01b0316836001600160a01b03161415801561123557506000816001600160601b0316115b156111e1576001600160a01b038316156112ed576001600160a01b03831660009081526006602052604081205463ffffffff1690816112755760006112b4565b6001600160a01b0385166000908152600560209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006112db828560405180606001604052806029815260200161211060299139610ffc565b90506112e986848484611510565b5050505b6001600160a01b038216156111e1576001600160a01b03821660009081526006602052604081205463ffffffff169081611328576000611367565b6001600160a01b0384166000908152600560209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061138e82856040518060600160405280602881526020016121b76028913961144f565b9050610f2385848484611510565b6001600160a01b03808316600081815260046020818152604080842080546003845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461142082848361120a565b50505050565b3390565b6000828201838110156105ad5760405162461bcd60e51b81526004016105dd90611e20565b6000838301826001600160601b0380871690831610156114825760405162461bcd60e51b81526004016105dd9190611def565b50949350505050565b4690565b6001600160a01b0381166114b55760405162461bcd60e51b81526004016105dd90611e10565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600061153443604051806060016040528060358152602001611fbb603591396116c5565b905060008463ffffffff1611801561157d57506001600160a01b038516600090815260056020908152604080832063ffffffff6000198901811685529252909120548282169116145b156115dc576001600160a01b0385166000908152600560209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b0385160217905561167b565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600583528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600690935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72484846040516116b6929190611ee3565b60405180910390a25050505050565b600081600160201b8410610ff45760405162461bcd60e51b81526004016105dd9190611def565b604080518082019091526000808252602082015290565b803561044881611f8b565b803561044881611f9f565b803561044881611fa8565b803561044881611fb1565b60006020828403121561174157600080fd5b600061174d8484611703565b949350505050565b6000806040838503121561176857600080fd5b60006117748585611703565b925050602061178585828601611703565b9150509250929050565b6000806000606084860312156117a457600080fd5b60006117b08686611703565b93505060206117c186828701611703565b92505060406117d28682870161170e565b9150509250925092565b600080604083850312156117ef57600080fd5b60006117fb8585611703565b92505060206117858582860161170e565b60008060008060008060c0878903121561182557600080fd5b60006118318989611703565b965050602061184289828a0161170e565b955050604061185389828a0161170e565b945050606061186489828a01611724565b935050608061187589828a0161170e565b92505060a061188689828a0161170e565b9150509295509295509295565b600080604083850312156118a657600080fd5b60006118b28585611703565b925050602061178585828601611719565b6000602082840312156118d557600080fd5b600061174d848461170e565b6118ea81611f10565b82525050565b6118ea81611f1b565b6118ea81611f20565b6118ea61190e82611f20565b611f20565b600061191e82611efe565b6119288185611f02565b9350611938818560208601611f55565b61194181611f81565b9093019392505050565b6000611958603d83611f02565b7f5374616b653a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207481527f72616e736665722066726f6d20746865207a65726f2061646472657373000000602082015260400192915050565b60006119b7602683611f02565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526564647265737360d01b602082015260400192915050565b60006119ff600283611f0b565b61190160f01b815260020192915050565b6000611a1d601b83611f02565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000611a56603b83611f02565b7f5374616b653a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207481527f72616e7366657220746f20746865207a65726f20616464726573730000000000602082015260400192915050565b6000611ab5602783611f02565b7f5374616b653a3a64656c656761746542795369673a20696e76616c6964207369815266676e617475726560c81b602082015260400192915050565b6000611afe602383611f02565b7f5374616b653a3a64656c656761746542795369673a20696e76616c6964206e6f8152626e636560e81b602082015260400192915050565b6000611b43602883611f02565b7f5374616b653a3a6765745072696f72566f7465733a206e6f74207965742064658152671d195c9b5a5b995960c21b602082015260400192915050565b6000611b8d604383611f0b565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b6000611bf8602083611f02565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572815260200192915050565b6000611c31602783611f02565b7f5374616b653a3a64656c656761746542795369673a207369676e617475726520815266195e1c1a5c995960ca1b602082015260400192915050565b6000611c7a603a83611f0b565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b6118ea81611f2f565b6118ea81611f38565b6118ea81611f4a565b6118ea81611f3e565b6000611cfb826119f2565b9150611d078285611902565b602082019150611d178284611902565b5060200192915050565b600061044882611b80565b600061044882611c6d565b6020810161044882846118e1565b6020810161044882846118f0565b6020810161044882846118f9565b60808101611d6f82876118f9565b611d7c60208301866118e1565b611d8960408301856118f9565b611d9660608301846118f9565b95945050505050565b60808101611dad82876118f9565b611dba60208301866118f9565b611dc760408301856118f9565b611d9660608301846118e1565b60808101611de282876118f9565b611d7c6020830186611cd5565b602080825281016105ad8184611913565b602080825281016104488161194b565b60208082528101610448816119aa565b6020808252810161044881611a10565b6020808252810161044881611a49565b6020808252810161044881611aa8565b6020808252810161044881611af1565b6020808252810161044881611b36565b6020808252810161044881611beb565b6020808252810161044881611c24565b602081016104488284611ccc565b60408101611eac8285611ccc565b6105ad6020830184611ce7565b602081016104488284611cd5565b602081016104488284611cde565b602081016104488284611ce7565b60408101611ef18285611cde565b6105ad6020830184611cde565b5190565b90815260200190565b919050565b600061044882611f23565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b6001600160601b031690565b600061044882611f3e565b60005b83811015611f70578181015183820152602001611f58565b838111156114205750506000910152565b601f01601f191690565b611f9481611f10565b81146107b757600080fd5b611f9481611f20565b611f9481611f2f565b611f9481611f3856fe5374616b653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974735374616b653a3a6d696e743a20616d6f756e74206578636565647320393620626974735374616b653a3a617070726f76653a20616d6f756e74206578636565647320393620626974735374616b653a3a6d696e743a207472616e7366657220616d6f756e74206f766572666c6f77735374616b653a3a6d696e743a20746f74616c537570706c79206578636565647320393620626974735374616b653a3a6275726e3a20616d6f756e74206578636565647320393620626974735374616b653a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63655374616b653a3a6275726e3a20746f74616c537570706c79206578636565647320393620626974735374616b653a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77735374616b653a3a6275726e3a207472616e7366657220616d6f756e74206f766572666c6f77735374616b653a3a6275726e3a20616d6f756e74206578636565647320746f74616c537570706c795374616b653a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77735374616b653a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f77735374616b653a3a7472616e736665723a20616d6f756e74206578636565647320393620626974735374616b653a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a365627a7a7231582042904cb1ccde5bc4a73536ca5c6873b1905e484bd4dd07617660539f617502c26c6578706572696d656e74616cf564736f6c63430005110040

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.