ETH Price: $3,006.86 (+0.13%)
Gas: 10 Gwei

Token

Evanesco Network (EVA)
 

Overview

Max Total Supply

185,000,000 EVA

Holders

2,754 ( 0.036%)

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH (+6.89%)

Onchain Market Cap

$244,420.15

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

Evanesco committed to build the next generation of decentralized privacy financial ecology protocol family in a fair and reliable way.

Market

Volume (24H):$70,856.00
Market Capitalization:$0.00
Circulating Supply:0.00 EVA
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
1
LATOKEN
EVA-USDT$0.0013
0.0000004 Eth
$49,663.00
37,609,152.102 EVA
68.9837%
2
Gate.io
EVA-USDT$0.0013
0.0000004 Eth
$14,406.93
11,330,973.079 EVA
20.7836%
3
Gate.io
EVA-ETH$0.0013
0.0000004 Eth
$6,774.07
5,419,560.402 EVA
9.9407%
4
Uniswap V2 (Ethereum)
0XD6CAF5BD23CF057F5FCCCE295DCC50C01C198707-0XDAC17F958D2EE523A2206206994597C13D831EC7$0.0013
0.0000004 Eth
$200.37
159,179.603 0XD6CAF5BD23CF057F5FCCCE295DCC50C01C198707
0.2920%

Contract Source Code Verified (Exact Match)

Contract Name:
EvaToken

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-19
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.6.6;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

/*
 * @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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

/**
 * @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, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @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) {
        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, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * 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);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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;
    }
}

contract Owned {
    address public owner;

    event OwnershipTransferred(address indexed _from, address indexed _to);

    constructor() public {
        owner = msg.sender;
    }

    modifier onlyOwner {
        require(msg.sender == owner, "Owned: only owner can do it");
        _;
    }

    function transferOwnership(address _owner) public virtual onlyOwner {
        require(_owner != address(0), "Owned: set zero address to owner");
        owner = _owner;

        emit OwnershipTransferred(owner, _owner);
    }
}

contract ERC20 is Context, IERC20, Owned{
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

    // True if transfers are allowed
    bool public transferable = true;

    modifier canTransfer() {
        require(transferable == true);
        _;
    }

    function setTransferable(bool _transferable) public virtual onlyOwner {
        transferable = _transferable;
    }
    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override canTransfer returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override canTransfer returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function mint(address account, uint256 amount) public virtual onlyOwner returns(bool){
        _mint(account, amount);
        return true;
    }

    function burn(address account, uint256 amount) public virtual onlyOwner returns (bool){
        _burn(account, amount);
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

contract EvaToken is ERC20 {

    constructor() ERC20("Evanesco Network", "EVA") public {
        _mint(msg.sender, 0 * (10 ** uint256(decimals())));
    }
}

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"}],"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":"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":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_transferable","type":"bool"}],"name":"setTransferable","outputs":[],"stateMutability":"nonpayable","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526006805461ff0019166101001790553480156200002057600080fd5b50604080518082018252601081526f4576616e6573636f204e6574776f726b60801b60208083019182528351808501909452600384526245564160e81b90840152600080546001600160a01b031916331790558151919291620000869160049162000269565b5080516200009c90600590602084019062000269565b50506006805460ff1916601217905550620000d633620000c46001600160e01b03620000dc16565b5060006001600160e01b03620000e616565b6200030b565b60065460ff165b90565b6001600160a01b03821662000142576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000159600083836001600160e01b036200020216565b62000175816003546200020760201b62000c021790919060201c565b6003556001600160a01b038216600090815260016020908152604090912054620001aa91839062000c0262000207821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b60008282018381101562000262576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002ac57805160ff1916838001178555620002dc565b82800160010185558215620002dc579182015b82811115620002dc578251825591602001919060010190620002bf565b50620002ea929150620002ee565b5090565b620000e391905b80821115620002ea5760008155600101620002f5565b611065806200031b6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80638da5cb5b116100a25780639dc29fac116100715780639dc29fac1461030e578063a457c2d71461033a578063a9059cbb14610366578063dd62ed3e14610392578063f2fde38b146103c05761010b565b80638da5cb5b146102b957806392ff0d31146102dd57806395d89b41146102e55780639cd23707146102ed5761010b565b8063313ce567116100de578063313ce5671461021d578063395093511461023b57806340c10f191461026757806370a08231146102935761010b565b806306fdde0314610110578063095ea7b31461018d57806318160ddd146101cd57806323b872dd146101e7575b600080fd5b6101186103e6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b03813516906020013561047c565b604080519115158252519081900360200190f35b6101d5610499565b60408051918252519081900360200190f35b6101b9600480360360608110156101fd57600080fd5b506001600160a01b0381358116916020810135909116906040013561049f565b610225610547565b6040805160ff9092168252519081900360200190f35b6101b96004803603604081101561025157600080fd5b506001600160a01b038135169060200135610550565b6101b96004803603604081101561027d57600080fd5b506001600160a01b0381351690602001356105a4565b6101d5600480360360208110156102a957600080fd5b50356001600160a01b03166105fc565b6102c1610617565b604080516001600160a01b039092168252519081900360200190f35b6101b9610626565b610118610634565b61030c6004803603602081101561030357600080fd5b50351515610695565b005b6101b96004803603604081101561032457600080fd5b506001600160a01b0381351690602001356106fc565b6101b96004803603604081101561035057600080fd5b506001600160a01b038135169060200135610754565b6101b96004803603604081101561037c57600080fd5b506001600160a01b0381351690602001356107c2565b6101d5600480360360408110156103a857600080fd5b506001600160a01b03813581169160200135166107f1565b61030c600480360360208110156103d657600080fd5b50356001600160a01b031661081c565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104725780601f1061044757610100808354040283529160200191610472565b820191906000526020600020905b81548152906001019060200180831161045557829003601f168201915b5050505050905090565b6000610490610489610912565b8484610916565b50600192915050565b60035490565b60065460009060ff6101009091041615156001146104bc57600080fd5b6104c7848484610a02565b61053d846104d3610912565b61053885604051806060016040528060288152602001610f79602891396001600160a01b038a16600090815260026020526040812090610511610912565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610b6b16565b610916565b5060019392505050565b60065460ff1690565b600061049061055d610912565b84610538856002600061056e610912565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610c0216565b600080546001600160a01b031633146105f2576040805162461bcd60e51b815260206004820152601b6024820152600080516020610f59833981519152604482015290519081900360640190fd5b6104908383610c63565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031681565b600654610100900460ff1681565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104725780601f1061044757610100808354040283529160200191610472565b6000546001600160a01b031633146106e2576040805162461bcd60e51b815260206004820152601b6024820152600080516020610f59833981519152604482015290519081900360640190fd5b600680549115156101000261ff0019909216919091179055565b600080546001600160a01b0316331461074a576040805162461bcd60e51b815260206004820152601b6024820152600080516020610f59833981519152604482015290519081900360640190fd5b6104908383610d61565b6000610490610761610912565b846105388560405180606001604052806025815260200161100b602591396002600061078b610912565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610b6b16565b60065460009060ff6101009091041615156001146107df57600080fd5b6104906107ea610912565b8484610a02565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610869576040805162461bcd60e51b815260206004820152601b6024820152600080516020610f59833981519152604482015290519081900360640190fd5b6001600160a01b0381166108c4576040805162461bcd60e51b815260206004820181905260248201527f4f776e65643a20736574207a65726f206164647265737320746f206f776e6572604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0383811691821780845560405192939116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b3390565b6001600160a01b03831661095b5760405162461bcd60e51b8152600401808060200182810382526024815260200180610fe76024913960400191505060405180910390fd5b6001600160a01b0382166109a05760405162461bcd60e51b8152600401808060200182810382526022815260200180610f116022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610a475760405162461bcd60e51b8152600401808060200182810382526025815260200180610fc26025913960400191505060405180910390fd5b6001600160a01b038216610a8c5760405162461bcd60e51b8152600401808060200182810382526023815260200180610ecc6023913960400191505060405180910390fd5b610a97838383610e69565b610ada81604051806060016040528060268152602001610f33602691396001600160a01b038616600090815260016020526040902054919063ffffffff610b6b16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610b0f908263ffffffff610c0216565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610bfa5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610bbf578181015183820152602001610ba7565b50505050905090810190601f168015610bec5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c5c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610cbe576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610cca60008383610e69565b600354610cdd908263ffffffff610c0216565b6003556001600160a01b038216600090815260016020526040902054610d09908263ffffffff610c0216565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610da65760405162461bcd60e51b8152600401808060200182810382526021815260200180610fa16021913960400191505060405180910390fd5b610db282600083610e69565b610df581604051806060016040528060228152602001610eef602291396001600160a01b038516600090815260016020526040902054919063ffffffff610b6b16565b6001600160a01b038316600090815260016020526040902055600354610e21908263ffffffff610e6e16565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b505050565b600082821115610ec5576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f776e65643a206f6e6c79206f776e65722063616e20646f206974000000000045524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220861df269331cac40ab97dc0edf75ff01397daf5bf117d6f2190d37c0785736c464736f6c63430006060033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80638da5cb5b116100a25780639dc29fac116100715780639dc29fac1461030e578063a457c2d71461033a578063a9059cbb14610366578063dd62ed3e14610392578063f2fde38b146103c05761010b565b80638da5cb5b146102b957806392ff0d31146102dd57806395d89b41146102e55780639cd23707146102ed5761010b565b8063313ce567116100de578063313ce5671461021d578063395093511461023b57806340c10f191461026757806370a08231146102935761010b565b806306fdde0314610110578063095ea7b31461018d57806318160ddd146101cd57806323b872dd146101e7575b600080fd5b6101186103e6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b03813516906020013561047c565b604080519115158252519081900360200190f35b6101d5610499565b60408051918252519081900360200190f35b6101b9600480360360608110156101fd57600080fd5b506001600160a01b0381358116916020810135909116906040013561049f565b610225610547565b6040805160ff9092168252519081900360200190f35b6101b96004803603604081101561025157600080fd5b506001600160a01b038135169060200135610550565b6101b96004803603604081101561027d57600080fd5b506001600160a01b0381351690602001356105a4565b6101d5600480360360208110156102a957600080fd5b50356001600160a01b03166105fc565b6102c1610617565b604080516001600160a01b039092168252519081900360200190f35b6101b9610626565b610118610634565b61030c6004803603602081101561030357600080fd5b50351515610695565b005b6101b96004803603604081101561032457600080fd5b506001600160a01b0381351690602001356106fc565b6101b96004803603604081101561035057600080fd5b506001600160a01b038135169060200135610754565b6101b96004803603604081101561037c57600080fd5b506001600160a01b0381351690602001356107c2565b6101d5600480360360408110156103a857600080fd5b506001600160a01b03813581169160200135166107f1565b61030c600480360360208110156103d657600080fd5b50356001600160a01b031661081c565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104725780601f1061044757610100808354040283529160200191610472565b820191906000526020600020905b81548152906001019060200180831161045557829003601f168201915b5050505050905090565b6000610490610489610912565b8484610916565b50600192915050565b60035490565b60065460009060ff6101009091041615156001146104bc57600080fd5b6104c7848484610a02565b61053d846104d3610912565b61053885604051806060016040528060288152602001610f79602891396001600160a01b038a16600090815260026020526040812090610511610912565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610b6b16565b610916565b5060019392505050565b60065460ff1690565b600061049061055d610912565b84610538856002600061056e610912565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610c0216565b600080546001600160a01b031633146105f2576040805162461bcd60e51b815260206004820152601b6024820152600080516020610f59833981519152604482015290519081900360640190fd5b6104908383610c63565b6001600160a01b031660009081526001602052604090205490565b6000546001600160a01b031681565b600654610100900460ff1681565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104725780601f1061044757610100808354040283529160200191610472565b6000546001600160a01b031633146106e2576040805162461bcd60e51b815260206004820152601b6024820152600080516020610f59833981519152604482015290519081900360640190fd5b600680549115156101000261ff0019909216919091179055565b600080546001600160a01b0316331461074a576040805162461bcd60e51b815260206004820152601b6024820152600080516020610f59833981519152604482015290519081900360640190fd5b6104908383610d61565b6000610490610761610912565b846105388560405180606001604052806025815260200161100b602591396002600061078b610912565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610b6b16565b60065460009060ff6101009091041615156001146107df57600080fd5b6104906107ea610912565b8484610a02565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610869576040805162461bcd60e51b815260206004820152601b6024820152600080516020610f59833981519152604482015290519081900360640190fd5b6001600160a01b0381166108c4576040805162461bcd60e51b815260206004820181905260248201527f4f776e65643a20736574207a65726f206164647265737320746f206f776e6572604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b0383811691821780845560405192939116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b3390565b6001600160a01b03831661095b5760405162461bcd60e51b8152600401808060200182810382526024815260200180610fe76024913960400191505060405180910390fd5b6001600160a01b0382166109a05760405162461bcd60e51b8152600401808060200182810382526022815260200180610f116022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610a475760405162461bcd60e51b8152600401808060200182810382526025815260200180610fc26025913960400191505060405180910390fd5b6001600160a01b038216610a8c5760405162461bcd60e51b8152600401808060200182810382526023815260200180610ecc6023913960400191505060405180910390fd5b610a97838383610e69565b610ada81604051806060016040528060268152602001610f33602691396001600160a01b038616600090815260016020526040902054919063ffffffff610b6b16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610b0f908263ffffffff610c0216565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610bfa5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610bbf578181015183820152602001610ba7565b50505050905090810190601f168015610bec5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c5c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216610cbe576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610cca60008383610e69565b600354610cdd908263ffffffff610c0216565b6003556001600160a01b038216600090815260016020526040902054610d09908263ffffffff610c0216565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216610da65760405162461bcd60e51b8152600401808060200182810382526021815260200180610fa16021913960400191505060405180910390fd5b610db282600083610e69565b610df581604051806060016040528060228152602001610eef602291396001600160a01b038516600090815260016020526040902054919063ffffffff610b6b16565b6001600160a01b038316600090815260016020526040902055600354610e21908263ffffffff610e6e16565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b505050565b600082821115610ec5576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f776e65643a206f6e6c79206f776e65722063616e20646f206974000000000045524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220861df269331cac40ab97dc0edf75ff01397daf5bf117d6f2190d37c0785736c464736f6c63430006060033

Deployed Bytecode Sourcemap

21976:162:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;21976:162:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;12766:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;12766:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14924:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;14924:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;13865:108;;;:::i;:::-;;;;;;;;;;;;;;;;15575:333;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;15575:333:0;;;;;;;;;;;;;;;;;:::i;13709:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16317:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;16317:218:0;;;;;;;;:::i;17315:148::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;17315:148:0;;;;;;;;:::i;14036:127::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;14036:127:0;-1:-1:-1;;;;;14036:127:0;;:::i;11062:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;11062:20:0;;;;;;;;;;;;;;12450:31;;;:::i;12976:95::-;;;:::i;12581:117::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;12581:117:0;;;;:::i;:::-;;17471:149;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;17471:149:0;;;;;;;;:::i;17038:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;17038:269:0;;;;;;;;:::i;14376:187::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;14376:187:0;;;;;;;;:::i;14626:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;14626:151:0;;;;;;;;;;:::i;11353:230::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;11353:230:0;-1:-1:-1;;;;;11353:230:0;;:::i;12766:91::-;12844:5;12837:12;;;;;;;;-1:-1:-1;;12837:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12811:13;;12837:12;;12844:5;;12837:12;;12844:5;12837:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12766:91;:::o;14924:169::-;15007:4;15024:39;15033:12;:10;:12::i;:::-;15047:7;15056:6;15024:8;:39::i;:::-;-1:-1:-1;15081:4:0;14924:169;;;;:::o;13865:108::-;13953:12;;13865:108;:::o;15575:333::-;12532:12;;15693:4;;12532:12;;;;;;:20;;:12;:20;12524:29;;12:1:-1;9;2:12;12524:29:0;15710:36:::1;15720:6;15728:9;15739:6;15710:9;:36::i;:::-;15757:121;15766:6;15774:12;:10;:12::i;:::-;15788:89;15826:6;15788:89;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;15788:19:0;::::1;;::::0;;;:11:::1;:19;::::0;;;;;15808:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;15788:33:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;15788:33:0;;;:89;::::1;:37;:89;:::i;:::-;15757:8;:121::i;:::-;-1:-1:-1::0;15896:4:0::1;15575:333:::0;;;;;:::o;13709:91::-;13783:9;;;;13709:91;:::o;16317:218::-;16405:4;16422:83;16431:12;:10;:12::i;:::-;16445:7;16454:50;16493:10;16454:11;:25;16466:12;:10;:12::i;:::-;-1:-1:-1;;;;;16454:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16454:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;17315:148::-;17395:4;11288:5;;-1:-1:-1;;;;;11288:5:0;11274:10;:19;11266:59;;;;;-1:-1:-1;;;11266:59:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;11266:59:0;;;;;;;;;;;;;;;17411:22:::1;17417:7;17426:6;17411:5;:22::i;14036:127::-:0;-1:-1:-1;;;;;14137:18:0;14110:7;14137:18;;;:9;:18;;;;;;;14036:127::o;11062:20::-;;;-1:-1:-1;;;;;11062:20:0;;:::o;12450:31::-;;;;;;;;;:::o;12976:95::-;13056:7;13049:14;;;;;;;;-1:-1:-1;;13049:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13023:13;;13049:14;;13056:7;;13049:14;;13056:7;13049:14;;;;;;;;;;;;;;;;;;;;;;;;12581:117;11288:5;;-1:-1:-1;;;;;11288:5:0;11274:10;:19;11266:59;;;;;-1:-1:-1;;;11266:59:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;11266:59:0;;;;;;;;;;;;;;;12662:12:::1;:28:::0;;;::::1;;;;-1:-1:-1::0;;12662:28:0;;::::1;::::0;;;::::1;::::0;;12581:117::o;17471:149::-;17552:4;11288:5;;-1:-1:-1;;;;;11288:5:0;11274:10;:19;11266:59;;;;;-1:-1:-1;;;11266:59:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;11266:59:0;;;;;;;;;;;;;;;17568:22:::1;17574:7;17583:6;17568:5;:22::i;17038:269::-:0;17131:4;17148:129;17157:12;:10;:12::i;:::-;17171:7;17180:96;17219:15;17180:96;;;;;;;;;;;;;;;;;:11;:25;17192:12;:10;:12::i;:::-;-1:-1:-1;;;;;17180:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17180:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;14376:187::-;12532:12;;14474:4;;12532:12;;;;;;:20;;:12;:20;12524:29;;12:1:-1;9;2:12;12524:29:0;14491:42:::1;14501:12;:10;:12::i;:::-;14515:9;14526:6;14491:9;:42::i;14626:151::-:0;-1:-1:-1;;;;;14742:18:0;;;14715:7;14742:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14626:151::o;11353:230::-;11288:5;;-1:-1:-1;;;;;11288:5:0;11274:10;:19;11266:59;;;;;-1:-1:-1;;;11266:59:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;11266:59:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;11440:20:0;::::1;11432:65;;;::::0;;-1:-1:-1;;;11432:65:0;;::::1;;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;::::1;;11508:5;:14:::0;;-1:-1:-1;;;;;;11508:14:0::1;-1:-1:-1::0;;;;;11508:14:0;;::::1;::::0;;::::1;::::0;;;11540:35:::1;::::0;11508:14;;11561:5;::::1;::::0;11540:35:::1;::::0;11508:5;11540:35:::1;11353:230:::0;:::o;3315:106::-;3403:10;3315:106;:::o;20498:346::-;-1:-1:-1;;;;;20600:19:0;;20592:68;;;;-1:-1:-1;;;20592:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20679:21:0;;20671:68;;;;-1:-1:-1;;;20671:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20752:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20804:32;;;;;;;;;;;;;;;;;20498:346;;;:::o;18110:539::-;-1:-1:-1;;;;;18216:20:0;;18208:70;;;;-1:-1:-1;;;18208:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18297:23:0;;18289:71;;;;-1:-1:-1;;;18289:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18373:47;18394:6;18402:9;18413:6;18373:20;:47::i;:::-;18453:71;18475:6;18453:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18453:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;18433:17:0;;;;;;;:9;:17;;;;;;:91;;;;18558:20;;;;;;;:32;;18583:6;18558:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;18535:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;18606:35;;;;;;;18535:20;;18606:35;;;;;;;;;;;;;18110:539;;;:::o;9200:166::-;9286:7;9322:12;9314:6;;;;9306:29;;;;-1:-1:-1;;;9306:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;9306:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9353:5:0;;;9200:166::o;6373:179::-;6431:7;6463:5;;;6487:6;;;;6479:46;;;;;-1:-1:-1;;;6479:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6543:1;6373:179;-1:-1:-1;;;6373:179:0:o;18931:378::-;-1:-1:-1;;;;;19015:21:0;;19007:65;;;;;-1:-1:-1;;;19007:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19085:49;19114:1;19118:7;19127:6;19085:20;:49::i;:::-;19162:12;;:24;;19179:6;19162:24;:16;:24;:::i;:::-;19147:12;:39;-1:-1:-1;;;;;19218:18:0;;;;;;:9;:18;;;;;;:30;;19241:6;19218:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;19197:18:0;;;;;;:9;:18;;;;;;;;:51;;;;19264:37;;;;;;;19197:18;;;;19264:37;;;;;;;;;;18931:378;;:::o;19642:418::-;-1:-1:-1;;;;;19726:21:0;;19718:67;;;;-1:-1:-1;;;19718:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19798:49;19819:7;19836:1;19840:6;19798:20;:49::i;:::-;19881:68;19904:6;19881:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19881:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;19860:18:0;;;;;;:9;:18;;;;;:89;19975:12;;:24;;19992:6;19975:24;:16;:24;:::i;:::-;19960:12;:39;20015:37;;;;;;;;20041:1;;-1:-1:-1;;;;;20015:37:0;;;;;;;;;;;;19642:418;;:::o;21877:92::-;;;;:::o;6835:158::-;6893:7;6926:1;6921;:6;;6913:49;;;;;-1:-1:-1;;;6913:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6980:5:0;;;6835:158::o

Swarm Source

ipfs://861df269331cac40ab97dc0edf75ff01397daf5bf117d6f2190d37c0785736c4
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.