ETH Price: $3,131.92 (-0.75%)
Gas: 5 Gwei

Token

BiFi (BiFi)
 

Overview

Max Total Supply

1,000,000,000 BiFi

Holders

2,112 ( 0.047%)

Total Transfers

-

Market

Price

$0.00 @ 0.000001 ETH (+2.39%)

Onchain Market Cap

$3,796,960.00

Circulating Supply Market Cap

$2,205,319.00

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

BiFi is a multichain DeFi project powered by Bifrost. BiFi will offer multichain wallet, lending, borrowing, staking services, and other financial investments products.

Market

Volume (24H):$259,547.00
Market Capitalization:$2,205,319.00
Circulating Supply:580,971,014.00 BiFi
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
1
KuCoin
BIFI-USDT$0.0038
0.0000012 Eth
$188,753.00
49,888,327.865 BIFI
72.6711%
2
Bilaxy
BIFI-ETH$0.004
0.0000013 Eth
$36,580.00
9,238,526.000 BIFI
13.4575%
3
Gate.io
BIFIF-USDT$0.0037
0.0000012 Eth
$14,310.86
3,862,004.589 BIFIF
5.6257%
4
Gate.io
BIFIF-ETH$0.0037
0.0000012 Eth
$10,489.41
2,841,611.434 BIFIF
4.1393%
5
LATOKEN
BIFIF-USDT$0.0037
0.0000012 Eth
$9,476.28
2,534,093.800 BIFIF
3.6914%
6
Sushiswap
0X2791BFD60D232150BFF86B39B7146C0EAAA2BA81-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$0.0037
0.0000012 Eth
$1,062.25
282,625.628 0X2791BFD60D232150BFF86B39B7146C0EAAA2BA81
0.4117%
7
Uniswap V2 (Ethereum)
0X2791BFD60D232150BFF86B39B7146C0EAAA2BA81-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$0.0038
0.0000012 Eth
$8.53
2,269.064 0X2791BFD60D232150BFF86B39B7146C0EAAA2BA81
0.0033%

Contract Source Code Verified (Exact Match)

Contract Name:
ERC20

Compiler Version
v0.6.0+commit.26b70077

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license, Audited

Contract Source Code (Solidity)Audit Report

/**
 *Submitted for verification at Etherscan.io on 2021-01-04
*/

pragma solidity ^0.6.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 { }

    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 Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}




// SPDX-License-Identifier: MIT

/**
 * @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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * 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(_owner == _msgSender(), "Ownable: caller is not the 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 virtual 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 virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


/**
 * @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 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) {
        // 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.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


pragma solidity ^0.6.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call.value(amount)("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, Pausable, Ownable {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;
    string private constant _name = "BiFi";
    string private constant _symbol = "BiFi";
    uint8 private constant _decimals = 18;


    /**
     * @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 () public {
        _totalSupply = (10 ** 9) * (10 ** uint256(_decimals));
        _balances[msg.sender] = _totalSupply;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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 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 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;
    }

    /**
     * @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 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 is 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 Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }


    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }



    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */

    function pause() public onlyOwner {
        _pause();
    }


    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function unpause() public onlyOwner {
        _unpause();
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `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:using-hooks.adoc[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {
        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"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":[],"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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b506000805460ff1916815561002c6001600160e01b036100a516565b60008054610100600160a81b0319166101006001600160a01b038416908102919091178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506b033b2e3c9fd0803ce80000006003819055336000908152600160205260409020556100a9565b3390565b6110ea806100b86000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610126578063a457c2d714610332578063a9059cbb1461035e578063dd62ed3e1461038a578063f2fde38b146103b857610121565b806370a08231146102ac578063715018a6146102d257806379cc6790146102da5780638456cb59146103065780638da5cb5b1461030e57610121565b8063313ce567116100f4578063313ce5671461023357806339509351146102515780633f4ba83a1461027d57806342966c68146102875780635c975abb146102a457610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e357806323b872dd146101fd575b600080fd5b61012e6103de565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b0381351690602001356103fc565b604080519115158252519081900360200190f35b6101eb610419565b60408051918252519081900360200190f35b6101cf6004803603606081101561021357600080fd5b506001600160a01b0381358116916020810135909116906040013561041f565b61023b6104ac565b6040805160ff9092168252519081900360200190f35b6101cf6004803603604081101561026757600080fd5b506001600160a01b0381351690602001356104b1565b610285610505565b005b6102856004803603602081101561029d57600080fd5b503561056c565b6101cf610580565b6101eb600480360360208110156102c257600080fd5b50356001600160a01b0316610589565b6102856105a4565b610285600480360360408110156102f057600080fd5b506001600160a01b038135169060200135610650565b6102856106b0565b610316610715565b604080516001600160a01b039092168252519081900360200190f35b6101cf6004803603604081101561034857600080fd5b506001600160a01b038135169060200135610729565b6101cf6004803603604081101561037457600080fd5b506001600160a01b038135169060200135610797565b6101eb600480360360408110156103a057600080fd5b506001600160a01b03813581169160200135166107ab565b610285600480360360208110156103ce57600080fd5b50356001600160a01b03166107d6565b6040805180820190915260048152634269466960e01b602082015290565b60006104106104096108de565b84846108e2565b50600192915050565b60035490565b600061042c8484846109ce565b6104a2846104386108de565b61049d85604051806060016040528060288152602001610f90602891396001600160a01b038a166000908152600260205260408120906104766108de565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610b3716565b6108e2565b5060019392505050565b601290565b60006104106104be6108de565b8461049d85600260006104cf6108de565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610bce16565b61050d6108de565b60005461010090046001600160a01b03908116911614610562576040805162461bcd60e51b81526020600482018190526024820152600080516020610fb8833981519152604482015290519081900360640190fd5b61056a610c2f565b565b61057d6105776108de565b82610ccd565b50565b60005460ff1690565b6001600160a01b031660009081526001602052604090205490565b6105ac6108de565b60005461010090046001600160a01b03908116911614610601576040805162461bcd60e51b81526020600482018190526024820152600080516020610fb8833981519152604482015290519081900360640190fd5b600080546040516101009091046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360008054610100600160a81b0319169055565b600061068d82604051806060016040528060248152602001610fd8602491396106808661067b6108de565b6107ab565b919063ffffffff610b3716565b90506106a18361069b6108de565b836108e2565b6106ab8383610ccd565b505050565b6106b86108de565b60005461010090046001600160a01b0390811691161461070d576040805162461bcd60e51b81526020600482018190526024820152600080516020610fb8833981519152604482015290519081900360640190fd5b61056a610dd5565b60005461010090046001600160a01b031690565b60006104106107366108de565b8461049d8560405180606001604052806025815260200161106660259139600260006107606108de565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610b3716565b60006104106107a46108de565b84846109ce565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6107de6108de565b60005461010090046001600160a01b03908116911614610833576040805162461bcd60e51b81526020600482018190526024820152600080516020610fb8833981519152604482015290519081900360640190fd5b6001600160a01b0381166108785760405162461bcd60e51b8152600401808060200182810382526026815260200180610f226026913960400191505060405180910390fd5b600080546040516001600160a01b038085169361010090930416917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3390565b6001600160a01b0383166109275760405162461bcd60e51b81526004018080602001828103825260248152602001806110426024913960400191505060405180910390fd5b6001600160a01b03821661096c5760405162461bcd60e51b8152600401808060200182810382526022815260200180610f486022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610a135760405162461bcd60e51b815260040180806020018281038252602581526020018061101d6025913960400191505060405180910390fd5b6001600160a01b038216610a585760405162461bcd60e51b8152600401808060200182810382526023815260200180610edd6023913960400191505060405180910390fd5b610a63838383610e56565b610aa681604051806060016040528060268152602001610f6a602691396001600160a01b038616600090815260016020526040902054919063ffffffff610b3716565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610adb908263ffffffff610bce16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610bc65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b8b578181015183820152602001610b73565b50505050905090810190601f168015610bb85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c28576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60005460ff16610c7d576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610cb06108de565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b038216610d125760405162461bcd60e51b8152600401808060200182810382526021815260200180610ffc6021913960400191505060405180910390fd5b610d1e82600083610e56565b610d6181604051806060016040528060228152602001610f00602291396001600160a01b038516600090815260016020526040902054919063ffffffff610b3716565b6001600160a01b038316600090815260016020526040902055600354610d8d908263ffffffff610e9a16565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60005460ff1615610e20576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610cb06108de565b610e5e610580565b156106ab5760405162461bcd60e51b815260040180806020018281038252602a81526020018061108b602a913960400191505060405180910390fd5b6000610c2883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610b3756fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a264697066735822122083cfb7e310396d5f8b0772ab3ad12373aeb48136bd3a4394da1011f2de0778a164736f6c63430006000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b4114610126578063a457c2d714610332578063a9059cbb1461035e578063dd62ed3e1461038a578063f2fde38b146103b857610121565b806370a08231146102ac578063715018a6146102d257806379cc6790146102da5780638456cb59146103065780638da5cb5b1461030e57610121565b8063313ce567116100f4578063313ce5671461023357806339509351146102515780633f4ba83a1461027d57806342966c68146102875780635c975abb146102a457610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e357806323b872dd146101fd575b600080fd5b61012e6103de565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b0381351690602001356103fc565b604080519115158252519081900360200190f35b6101eb610419565b60408051918252519081900360200190f35b6101cf6004803603606081101561021357600080fd5b506001600160a01b0381358116916020810135909116906040013561041f565b61023b6104ac565b6040805160ff9092168252519081900360200190f35b6101cf6004803603604081101561026757600080fd5b506001600160a01b0381351690602001356104b1565b610285610505565b005b6102856004803603602081101561029d57600080fd5b503561056c565b6101cf610580565b6101eb600480360360208110156102c257600080fd5b50356001600160a01b0316610589565b6102856105a4565b610285600480360360408110156102f057600080fd5b506001600160a01b038135169060200135610650565b6102856106b0565b610316610715565b604080516001600160a01b039092168252519081900360200190f35b6101cf6004803603604081101561034857600080fd5b506001600160a01b038135169060200135610729565b6101cf6004803603604081101561037457600080fd5b506001600160a01b038135169060200135610797565b6101eb600480360360408110156103a057600080fd5b506001600160a01b03813581169160200135166107ab565b610285600480360360208110156103ce57600080fd5b50356001600160a01b03166107d6565b6040805180820190915260048152634269466960e01b602082015290565b60006104106104096108de565b84846108e2565b50600192915050565b60035490565b600061042c8484846109ce565b6104a2846104386108de565b61049d85604051806060016040528060288152602001610f90602891396001600160a01b038a166000908152600260205260408120906104766108de565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610b3716565b6108e2565b5060019392505050565b601290565b60006104106104be6108de565b8461049d85600260006104cf6108de565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610bce16565b61050d6108de565b60005461010090046001600160a01b03908116911614610562576040805162461bcd60e51b81526020600482018190526024820152600080516020610fb8833981519152604482015290519081900360640190fd5b61056a610c2f565b565b61057d6105776108de565b82610ccd565b50565b60005460ff1690565b6001600160a01b031660009081526001602052604090205490565b6105ac6108de565b60005461010090046001600160a01b03908116911614610601576040805162461bcd60e51b81526020600482018190526024820152600080516020610fb8833981519152604482015290519081900360640190fd5b600080546040516101009091046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360008054610100600160a81b0319169055565b600061068d82604051806060016040528060248152602001610fd8602491396106808661067b6108de565b6107ab565b919063ffffffff610b3716565b90506106a18361069b6108de565b836108e2565b6106ab8383610ccd565b505050565b6106b86108de565b60005461010090046001600160a01b0390811691161461070d576040805162461bcd60e51b81526020600482018190526024820152600080516020610fb8833981519152604482015290519081900360640190fd5b61056a610dd5565b60005461010090046001600160a01b031690565b60006104106107366108de565b8461049d8560405180606001604052806025815260200161106660259139600260006107606108de565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610b3716565b60006104106107a46108de565b84846109ce565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6107de6108de565b60005461010090046001600160a01b03908116911614610833576040805162461bcd60e51b81526020600482018190526024820152600080516020610fb8833981519152604482015290519081900360640190fd5b6001600160a01b0381166108785760405162461bcd60e51b8152600401808060200182810382526026815260200180610f226026913960400191505060405180910390fd5b600080546040516001600160a01b038085169361010090930416917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3390565b6001600160a01b0383166109275760405162461bcd60e51b81526004018080602001828103825260248152602001806110426024913960400191505060405180910390fd5b6001600160a01b03821661096c5760405162461bcd60e51b8152600401808060200182810382526022815260200180610f486022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610a135760405162461bcd60e51b815260040180806020018281038252602581526020018061101d6025913960400191505060405180910390fd5b6001600160a01b038216610a585760405162461bcd60e51b8152600401808060200182810382526023815260200180610edd6023913960400191505060405180910390fd5b610a63838383610e56565b610aa681604051806060016040528060268152602001610f6a602691396001600160a01b038616600090815260016020526040902054919063ffffffff610b3716565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610adb908263ffffffff610bce16565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610bc65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610b8b578181015183820152602001610b73565b50505050905090810190601f168015610bb85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c28576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60005460ff16610c7d576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610cb06108de565b604080516001600160a01b039092168252519081900360200190a1565b6001600160a01b038216610d125760405162461bcd60e51b8152600401808060200182810382526021815260200180610ffc6021913960400191505060405180910390fd5b610d1e82600083610e56565b610d6181604051806060016040528060228152602001610f00602291396001600160a01b038516600090815260016020526040902054919063ffffffff610b3716565b6001600160a01b038316600090815260016020526040902055600354610d8d908263ffffffff610e9a16565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60005460ff1615610e20576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610cb06108de565b610e5e610580565b156106ab5760405162461bcd60e51b815260040180806020018281038252602a81526020018061108b602a913960400191505060405180910390fd5b6000610c2883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610b3756fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a264697066735822122083cfb7e310396d5f8b0772ab3ad12373aeb48136bd3a4394da1011f2de0778a164736f6c63430006000033

Deployed Bytecode Sourcemap

17238:9927:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17238:9927:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18213:83;;;:::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;18213:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20319:169;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20319:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;19288:100;;;:::i;:::-;;;;;;;;;;;;;;;;20962:321;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20962:321:0;;;;;;;;;;;;;;;;;:::i;19140:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21692:218;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21692:218:0;;;;;;;;:::i;26426:65::-;;;:::i;:::-;;25365:91;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25365:91:0;;:::i;2090:78::-;;;:::i;19451:119::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19451:119:0;-1:-1:-1;;;;;19451:119:0;;:::i;4957:148::-;;;:::i;25777:295::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25777:295:0;;;;;;;;:::i;26222:61::-;;;:::i;4315:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;4315:79:0;;;;;;;;;;;;;;22413:269;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22413:269:0;;;;;;;;:::i;19783:175::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19783:175:0;;;;;;;;:::i;20021:151::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20021:151:0;;;;;;;;;;:::i;5260:244::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5260:244:0;-1:-1:-1;;;;;5260:244:0;;:::i;18213:83::-;18283:5;;;;;;;;;;;;-1:-1:-1;;;18283:5:0;;;;18213:83;:::o;20319:169::-;20402:4;20419:39;20428:12;:10;:12::i;:::-;20442:7;20451:6;20419:8;:39::i;:::-;-1:-1:-1;20476:4:0;20319:169;;;;:::o;19288:100::-;19368:12;;19288:100;:::o;20962:321::-;21068:4;21085:36;21095:6;21103:9;21114:6;21085:9;:36::i;:::-;21132:121;21141:6;21149:12;:10;:12::i;:::-;21163:89;21201:6;21163:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21163:19:0;;;;;;:11;:19;;;;;;21183:12;:10;:12::i;:::-;-1:-1:-1;;;;;21163:33:0;;;;;;;;;;;;-1:-1:-1;21163:33:0;;;:89;;:37;:89;:::i;:::-;21132:8;:121::i;:::-;-1:-1:-1;21271:4:0;20962:321;;;;;:::o;19140:83::-;17660:2;19140:83;:::o;21692:218::-;21780:4;21797:83;21806:12;:10;:12::i;:::-;21820:7;21829:50;21868:10;21829:11;:25;21841:12;:10;:12::i;:::-;-1:-1:-1;;;;;21829:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21829:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;26426:65::-;4537:12;:10;:12::i;:::-;4527:6;;;;;-1:-1:-1;;;;;4527:6:0;;;:22;;;4519:67;;;;;-1:-1:-1;;;4519:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4519:67:0;;;;;;;;;;;;;;;26473:10:::1;:8;:10::i;:::-;26426:65::o:0;25365:91::-;25421:27;25427:12;:10;:12::i;:::-;25441:6;25421:5;:27::i;:::-;25365:91;:::o;2090:78::-;2129:4;2153:7;;;2090:78;:::o;19451:119::-;-1:-1:-1;;;;;19544:18:0;19517:7;19544:18;;;:9;:18;;;;;;;19451:119::o;4957:148::-;4537:12;:10;:12::i;:::-;4527:6;;;;;-1:-1:-1;;;;;4527:6:0;;;:22;;;4519:67;;;;;-1:-1:-1;;;4519:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4519:67:0;;;;;;;;;;;;;;;5064:1:::1;5048:6:::0;;5027:40:::1;::::0;5048:6:::1;::::0;;::::1;-1:-1:-1::0;;;;;5048:6:0::1;::::0;5027:40:::1;::::0;5064:1;;5027:40:::1;5095:1;5078:19:::0;;-1:-1:-1;;;;;;5078:19:0::1;::::0;;4957:148::o;25777:295::-;25854:26;25883:84;25920:6;25883:84;;;;;;;;;;;;;;;;;:32;25893:7;25902:12;:10;:12::i;:::-;25883:9;:32::i;:::-;:36;:84;;:36;:84;:::i;:::-;25854:113;;25980:51;25989:7;25998:12;:10;:12::i;:::-;26012:18;25980:8;:51::i;:::-;26042:22;26048:7;26057:6;26042:5;:22::i;:::-;25777:295;;;:::o;26222:61::-;4537:12;:10;:12::i;:::-;4527:6;;;;;-1:-1:-1;;;;;4527:6:0;;;:22;;;4519:67;;;;;-1:-1:-1;;;4519:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4519:67:0;;;;;;;;;;;;;;;26267:8:::1;:6;:8::i;4315:79::-:0;4353:7;4380:6;;;;-1:-1:-1;;;;;4380:6:0;;4315:79::o;22413:269::-;22506:4;22523:129;22532:12;:10;:12::i;:::-;22546:7;22555:96;22594:15;22555:96;;;;;;;;;;;;;;;;;:11;:25;22567:12;:10;:12::i;:::-;-1:-1:-1;;;;;22555:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22555:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;19783:175::-;19869:4;19886:42;19896:12;:10;:12::i;:::-;19910:9;19921:6;19886:9;:42::i;20021:151::-;-1:-1:-1;;;;;20137:18:0;;;20110:7;20137:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20021:151::o;5260:244::-;4537:12;:10;:12::i;:::-;4527:6;;;;;-1:-1:-1;;;;;4527:6:0;;;:22;;;4519:67;;;;;-1:-1:-1;;;4519:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;4519:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;5349:22:0;::::1;5341:73;;;;-1:-1:-1::0;;;5341:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5451:6;::::0;;5430:38:::1;::::0;-1:-1:-1;;;;;5430:38:0;;::::1;::::0;5451:6:::1;::::0;;::::1;;::::0;5430:38:::1;::::0;::::1;5479:6;:17:::0;;-1:-1:-1;;;;;5479:17:0;;::::1;;;-1:-1:-1::0;;;;;;5479:17:0;;::::1;::::0;;;::::1;::::0;;5260:244::o;752:106::-;840:10;752:106;:::o;24901:346::-;-1:-1:-1;;;;;25003:19:0;;24995:68;;;;-1:-1:-1;;;24995:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25082:21:0;;25074:68;;;;-1:-1:-1;;;25074:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25155:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25207:32;;;;;;;;;;;;;;;;;24901:346;;;:::o;23172:539::-;-1:-1:-1;;;;;23278:20:0;;23270:70;;;;-1:-1:-1;;;23270:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23359:23:0;;23351:71;;;;-1:-1:-1;;;23351:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23435:47;23456:6;23464:9;23475:6;23435:20;:47::i;:::-;23515:71;23537:6;23515:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23515:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;23495:17:0;;;;;;;:9;:17;;;;;;:91;;;;23620:20;;;;;;;:32;;23645:6;23620:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;23597:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;23668:35;;;;;;;23597:20;;23668:35;;;;;;;;;;;;;23172:539;;;:::o;9949:192::-;10035:7;10071:12;10063:6;;;;10055:29;;;;-1:-1:-1;;;10055: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;10055:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;10107:5:0;;;9949:192::o;9062:181::-;9120:7;9152:5;;;9176:6;;;;9168:46;;;;;-1:-1:-1;;;9168:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9234:1;9062:181;-1:-1:-1;;;9062:181:0:o;3139:120::-;2684:7;;;;2676:40;;;;;-1:-1:-1;;;2676:40:0;;;;;;;;;;;;-1:-1:-1;;;2676:40:0;;;;;;;;;;;;;;;3208:5:::1;3198:15:::0;;-1:-1:-1;;3198:15:0::1;::::0;;3229:22:::1;3238:12;:10;:12::i;:::-;3229:22;::::0;;-1:-1:-1;;;;;3229:22:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;3139:120::o:0;24043:418::-;-1:-1:-1;;;;;24127:21:0;;24119:67;;;;-1:-1:-1;;;24119:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24199:49;24220:7;24237:1;24241:6;24199:20;:49::i;:::-;24282:68;24305:6;24282:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24282:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;24261:18:0;;;;;;:9;:18;;;;;:89;24376:12;;:24;;24393:6;24376:24;:16;:24;:::i;:::-;24361:12;:39;24416:37;;;;;;;;24442:1;;-1:-1:-1;;;;;24416:37:0;;;;;;;;;;;;24043:418;;:::o;2880:118::-;2408:7;;;;2407:8;2399:37;;;;;-1:-1:-1;;;2399:37:0;;;;;;;;;;;;-1:-1:-1;;;2399:37:0;;;;;;;;;;;;;;;2940:7:::1;:14:::0;;-1:-1:-1;;2940:14:0::1;2950:4;2940:14;::::0;;2970:20:::1;2977:12;:10;:12::i;26990:172::-:0;27099:8;:6;:8::i;:::-;27098:9;27090:64;;;;-1:-1:-1;;;27090:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9518:136;9576:7;9603:43;9607:1;9610;9603:43;;;;;;;;;;;;;;;;;:3;:43::i

Swarm Source

ipfs://83cfb7e310396d5f8b0772ab3ad12373aeb48136bd3a4394da1011f2de0778a1
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.