ETH Price: $3,067.71 (+3.18%)
Gas: 15 Gwei

Token

Konomi (KONO)
 

Overview

Max Total Supply

100,000,000 KONO

Holders

6,417 ( -0.016%)

Total Transfers

-

Market

Price

$0.02 @ 0.000005 ETH (+2.05%)

Onchain Market Cap

$1,534,249.31

Circulating Supply Market Cap

$1,534,249.31

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Konomi is a decentralized liquidity and money market protocol for cross-chain crypto assets. Using Substrate as the development framework, the network aims to provide money markets for assets in the Polkadot ecosystem.

Market

Volume (24H):$127,985.56
Market Capitalization:$1,534,249.31
Circulating Supply:100,000,000.00 KONO
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KonomiToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2021-03-07
*/

pragma solidity ^0.6.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.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://eips.ethereum.org/EIPS/eip-20
 * Originally based on code by FirstBlood:
 * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
contract ERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) internal _balances;

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

    uint256 internal _totalSupply;

    /**
     * @dev Total number of tokens in existence.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner The address to query the balance of.
     * @return A uint256 representing the amount owned by the passed address.
     */
    function balanceOf(address owner) public view returns (uint256) {
        return _balances[owner];
    }

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

    /**
     * @dev Transfer token to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * 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
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value) public virtual returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @param from address The address which you want to send tokens from
     * @param to address The address which you want to transfer to
     * @param value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        _transfer(from, to, value);
        _approve(from, msg.sender, _allowed[from][msg.sender].sub(value));
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowed[msg.sender][spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(msg.sender, spender, _allowed[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Transfer token for a specified addresses.
     * @param from The address to transfer from.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Internal function that mints an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */
    function _mint(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0));

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Approve an address to spend another addresses' tokens.
     * @param owner The address that owns the tokens.
     * @param spender The address that will spend the tokens.
     * @param value The number of tokens that can be spent.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(spender != address(0));
        require(owner != address(0));

        _allowed[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account, deducting from the sender's allowance for said account. Uses the
     * internal burn function.
     * Emits an Approval event (reflecting the reduced allowance).
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        _burn(account, value);
        _approve(account, msg.sender, _allowed[account][msg.sender].sub(value));
    }

    /**
     * @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);
}

contract KonomiToken is ERC20 {

    string public constant name = "Konomi";
    uint8 public constant decimals = 18;
    string public constant symbol = "KONO";
    uint public constant supply = 100 * 10**6 * 10**uint(decimals); // 100 million

    constructor() public {
        _mint(msg.sender, supply);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50610026336a52b7d2dcc80cd2e400000061002b565b61013e565b6001600160a01b03821661003e57600080fd5b610057816002546100dd60201b61044e1790919060201c565b6002556001600160a01b0382166000908152602081815260409091205461008791839061044e6100dd821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082820183811015610137576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6107008061014d6000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c8063395093511161007157806339509351146101ec57806370a082311461021857806395d89b411461023e578063a457c2d714610246578063a9059cbb14610272578063dd62ed3e1461029e576100b4565b8063047fc9aa146100b957806306fdde03146100d3578063095ea7b31461015057806318160ddd1461019057806323b872dd14610198578063313ce567146101ce575b600080fd5b6100c16102cc565b60408051918252519081900360200190f35b6100db6102db565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101155781810151838201526020016100fd565b50505050905090810190601f1680156101425780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017c6004803603604081101561016657600080fd5b506001600160a01b0381351690602001356102fd565b604080519115158252519081900360200190f35b6100c1610313565b61017c600480360360608110156101ae57600080fd5b506001600160a01b03813581169160208101359091169060400135610319565b6101d661036a565b6040805160ff9092168252519081900360200190f35b61017c6004803603604081101561020257600080fd5b506001600160a01b03813516906020013561036f565b6100c16004803603602081101561022e57600080fd5b50356001600160a01b03166103a5565b6100db6103c0565b61017c6004803603604081101561025c57600080fd5b506001600160a01b0381351690602001356103e0565b61017c6004803603604081101561028857600080fd5b506001600160a01b038135169060200135610416565b6100c1600480360360408110156102b457600080fd5b506001600160a01b0381358116916020013516610423565b6a52b7d2dcc80cd2e400000081565b604051806040016040528060068152602001654b6f6e6f6d6960d01b81525081565b600061030a3384846104af565b50600192915050565b60025490565b6000610326848484610537565b6001600160a01b03841660009081526001602090815260408083203380855292529091205461036091869161035b90866105f6565b6104af565b5060019392505050565b601281565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161030a91859061035b908661044e565b6001600160a01b031660009081526020819052604090205490565b604051806040016040528060048152602001634b4f4e4f60e01b81525081565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161030a91859061035b90866105f6565b600061030a338484610537565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000828201838110156104a8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166104c257600080fd5b6001600160a01b0383166104d557600080fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03821661054a57600080fd5b6001600160a01b03831660009081526020819052604090205461056d90826105f6565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461059c908261044e565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60006104a883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250600081848411156106c25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561068757818101518382015260200161066f565b50505050905090810190601f1680156106b45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea26469706673582212200a7d90233376a7b960e5aa95223fdb72ee3d2d87c4cf1c5cb60b6f0cc66f53db64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c8063395093511161007157806339509351146101ec57806370a082311461021857806395d89b411461023e578063a457c2d714610246578063a9059cbb14610272578063dd62ed3e1461029e576100b4565b8063047fc9aa146100b957806306fdde03146100d3578063095ea7b31461015057806318160ddd1461019057806323b872dd14610198578063313ce567146101ce575b600080fd5b6100c16102cc565b60408051918252519081900360200190f35b6100db6102db565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101155781810151838201526020016100fd565b50505050905090810190601f1680156101425780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61017c6004803603604081101561016657600080fd5b506001600160a01b0381351690602001356102fd565b604080519115158252519081900360200190f35b6100c1610313565b61017c600480360360608110156101ae57600080fd5b506001600160a01b03813581169160208101359091169060400135610319565b6101d661036a565b6040805160ff9092168252519081900360200190f35b61017c6004803603604081101561020257600080fd5b506001600160a01b03813516906020013561036f565b6100c16004803603602081101561022e57600080fd5b50356001600160a01b03166103a5565b6100db6103c0565b61017c6004803603604081101561025c57600080fd5b506001600160a01b0381351690602001356103e0565b61017c6004803603604081101561028857600080fd5b506001600160a01b038135169060200135610416565b6100c1600480360360408110156102b457600080fd5b506001600160a01b0381358116916020013516610423565b6a52b7d2dcc80cd2e400000081565b604051806040016040528060068152602001654b6f6e6f6d6960d01b81525081565b600061030a3384846104af565b50600192915050565b60025490565b6000610326848484610537565b6001600160a01b03841660009081526001602090815260408083203380855292529091205461036091869161035b90866105f6565b6104af565b5060019392505050565b601281565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161030a91859061035b908661044e565b6001600160a01b031660009081526020819052604090205490565b604051806040016040528060048152602001634b4f4e4f60e01b81525081565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161030a91859061035b90866105f6565b600061030a338484610537565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000828201838110156104a8576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0382166104c257600080fd5b6001600160a01b0383166104d557600080fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03821661054a57600080fd5b6001600160a01b03831660009081526020819052604090205461056d90826105f6565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461059c908261044e565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60006104a883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250600081848411156106c25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561068757818101518382015260200161066f565b50505050905090810190601f1680156106b45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea26469706673582212200a7d90233376a7b960e5aa95223fdb72ee3d2d87c4cf1c5cb60b6f0cc66f53db64736f6c634300060c0033

Deployed Bytecode Sourcemap

13609:327:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13780:62;;;:::i;:::-;;;;;;;;;;;;;;;;13648:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8034:156;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8034:156:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6178:91;;;:::i;8663:236::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;8663:236:0;;;;;;;;;;;;;;;;;:::i;13693:35::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9425:211;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;9425:211:0;;;;;;;;:::i;6488:106::-;;;;;;;;;;;;;;;;-1:-1:-1;6488:106:0;-1:-1:-1;;;;;6488:106:0;;:::i;13735:38::-;;;:::i;10167:221::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;10167:221:0;;;;;;;;:::i;7239:148::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;7239:148:0;;;;;;;;:::i;6933:131::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6933:131:0;;;;;;;;;;:::i;13780:62::-;13810:32;13780:62;:::o;13648:38::-;;;;;;;;;;;;;;-1:-1:-1;;;13648:38:0;;;;:::o;8034:156::-;8107:4;8124:36;8133:10;8145:7;8154:5;8124:8;:36::i;:::-;-1:-1:-1;8178:4:0;8034:156;;;;:::o;6178:91::-;6249:12;;6178:91;:::o;8663:236::-;8750:4;8767:26;8777:4;8783:2;8787:5;8767:9;:26::i;:::-;-1:-1:-1;;;;;8831:14:0;;;;;;:8;:14;;;;;;;;8819:10;8831:26;;;;;;;;;8804:65;;8813:4;;8831:37;;8862:5;8831:30;:37::i;:::-;8804:8;:65::i;:::-;-1:-1:-1;8887:4:0;8663:236;;;;;:::o;13693:35::-;13726:2;13693:35;:::o;9425:211::-;9539:10;9513:4;9560:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9560:29:0;;;;;;;;;;9513:4;;9530:76;;9551:7;;9560:45;;9594:10;9560:33;:45::i;6488:106::-;-1:-1:-1;;;;;6570:16:0;6543:7;6570:16;;;;;;;;;;;;6488:106::o;13735:38::-;;;;;;;;;;;;;;-1:-1:-1;;;13735:38:0;;;;:::o;10167:221::-;10286:10;10260:4;10307:20;;;:8;:20;;;;;;;;-1:-1:-1;;;;;10307:29:0;;;;;;;;;;10260:4;;10277:81;;10298:7;;10307:50;;10341:15;10307:33;:50::i;7239:148::-;7308:4;7325:32;7335:10;7347:2;7351:5;7325:9;:32::i;6933:131::-;-1:-1:-1;;;;;7032:15:0;;;7005:7;7032:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;6933:131::o;867:181::-;925:7;957:5;;;981:6;;;;973:46;;;;;-1:-1:-1;;;973:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1039:1;867:181;-1:-1:-1;;;867:181:0:o;12275:254::-;-1:-1:-1;;;;;12368:21:0;;12360:30;;;;;;-1:-1:-1;;;;;12409:19:0;;12401:28;;;;;;-1:-1:-1;;;;;12442:15:0;;;;;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;:32;;;12490:31;;;;;;;;;;;;;;;;;12275:254;;;:::o;10616:262::-;-1:-1:-1;;;;;10704:16:0;;10696:25;;;;;;-1:-1:-1;;;;;10752:15:0;;:9;:15;;;;;;;;;;;:26;;10772:5;10752:19;:26::i;:::-;-1:-1:-1;;;;;10734:15:0;;;:9;:15;;;;;;;;;;;:44;;;;10805:13;;;;;;;:24;;10823:5;10805:17;:24::i;:::-;-1:-1:-1;;;;;10789:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;10845:25;;;;;;;10789:13;;10845:25;;;;;;;;;;;;;10616:262;;;:::o;1331:136::-;1389:7;1416:43;1420:1;1423;1416:43;;;;;;;;;;;;;;;;;1856:7;1892:12;1884:6;;;;1876:29;;;;-1:-1:-1;;;1876:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1928:5:0;;;1770:192::o

Swarm Source

ipfs://0a7d90233376a7b960e5aa95223fdb72ee3d2d87c4cf1c5cb60b6f0cc66f53db
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.