ETH Price: $3,361.52 (-1.62%)
Gas: 9 Gwei

Token

Billy Token (BILLY)
 

Overview

Max Total Supply

69,420,000,000 BILLY

Holders

2,086

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

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

Contract Source Code Verified (Exact Match)

Contract Name:
BillyToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Sources flattened with hardhat v2.14.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.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 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) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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.
 */
abstract 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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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:
     *
     * - `account` 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 += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File contracts/BillyToken.sol

pragma solidity ^0.8.0;


contract BillyToken is ERC20, Ownable {
    bool public limited;
    uint256 public maxHoldingAmount;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor(uint256 initialSupply) ERC20("Billy Token", "BILLY") {
        _mint(msg.sender, initialSupply);
        
        limited = true;
        maxHoldingAmount = initialSupply / 100;
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "trading is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount, "Forbid");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }

    function telegram() external pure returns(string memory){
        return "https://t.me/BillyCoinEth";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"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":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":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"telegram","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162001494380380620014948339810160408190526200003491620003c8565b6040518060400160405280600b81526020016a2134b6363c902a37b5b2b760a91b8152506040518060400160405280600581526020016442494c4c5960d81b815250816003908162000087919062000486565b50600462000096828262000486565b505050620000b3620000ad620000e960201b60201c565b620000ed565b620000bf33826200013f565b6005805460ff60a01b1916600160a01b179055620000df60648262000552565b600655506200059d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200019b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001a96000838362000214565b8060026000828254620001bd919062000575565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03821660009081526008602052604090205460ff161580156200025757506001600160a01b03831660009081526008602052604090205460ff16155b620002935760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640162000192565b6007546001600160a01b031662000321576005546001600160a01b0384811691161480620002ce57506005546001600160a01b038381169116145b6200031c5760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f74207374617274656400000000000000000000604482015260640162000192565b505050565b600554600160a01b900460ff1680156200034857506007546001600160a01b038481169116145b156200031c57600654816200036884620003ad60201b620004601760201c565b62000374919062000575565b11156200031c5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b604482015260640162000192565b6001600160a01b031660009081526020819052604090205490565b600060208284031215620003db57600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200040d57607f821691505b6020821081036200042e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200031c57600081815260208120601f850160051c810160208610156200045d5750805b601f850160051c820191505b818110156200047e5782815560010162000469565b505050505050565b81516001600160401b03811115620004a257620004a2620003e2565b620004ba81620004b38454620003f8565b8462000434565b602080601f831160018114620004f25760008415620004d95750858301515b600019600386901b1c1916600185901b1785556200047e565b600085815260208120601f198616915b82811015620005235788860151825594840194600190910190840162000502565b5085821015620005425787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000826200057057634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200059757634e487b7160e01b600052601160045260246000fd5b92915050565b610ee780620005ad6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b85780638da5cb5b1161007c5780638da5cb5b146102c957806395d89b41146102da578063a457c2d7146102e2578063a9059cbb146102f5578063dd62ed3e14610308578063f2fde38b1461031b57600080fd5b806370a082311461027e578063715018a6146102915780637abf9d2614610299578063860a32ec146102ac57806389f9a1d3146102c057600080fd5b8063313ce5671161010a578063313ce567146101d057806339509351146101df578063404e5129146101f257806342966c681461020757806347ecb6651461021a57806349bd5a5e1461025357600080fd5b806306fdde0314610147578063095ea7b31461016557806316c021291461018857806318160ddd146101ab57806323b872dd146101bd575b600080fd5b61014f61032e565b60405161015c9190610cc0565b60405180910390f35b610178610173366004610d2a565b6103c0565b604051901515815260200161015c565b610178610196366004610d54565b60086020526000908152604090205460ff1681565b6002545b60405190815260200161015c565b6101786101cb366004610d76565b6103da565b6040516012815260200161015c565b6101786101ed366004610d2a565b6103fe565b610205610200366004610dc2565b610420565b005b610205610215366004610df5565b610453565b60408051808201909152601981527f68747470733a2f2f742e6d652f42696c6c79436f696e45746800000000000000602082015261014f565b600754610266906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b6101af61028c366004610d54565b610460565b61020561047b565b6102056102a7366004610e0e565b61048f565b60055461017890600160a01b900460ff1681565b6101af60065481565b6005546001600160a01b0316610266565b61014f6104da565b6101786102f0366004610d2a565b6104e9565b610178610303366004610d2a565b610569565b6101af610316366004610e2c565b610577565b610205610329366004610d54565b6105a2565b60606003805461033d90610e56565b80601f016020809104026020016040519081016040528092919081815260200182805461036990610e56565b80156103b65780601f1061038b576101008083540402835291602001916103b6565b820191906000526020600020905b81548152906001019060200180831161039957829003601f168201915b5050505050905090565b6000336103ce818585610618565b60019150505b92915050565b6000336103e885828561073d565b6103f38585856107b7565b506001949350505050565b6000336103ce8185856104118383610577565b61041b9190610e90565b610618565b610428610966565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b61045d33826109c0565b50565b6001600160a01b031660009081526020819052604090205490565b610483610966565b61048d6000610afb565b565b610497610966565b60058054931515600160a01b0260ff60a01b1990941693909317909255600780546001600160a01b039092166001600160a01b0319909216919091179055600655565b60606004805461033d90610e56565b600033816104f78286610577565b90508381101561055c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103f38286868403610618565b6000336103ce8185856107b7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105aa610966565b6001600160a01b03811661060f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610553565b61045d81610afb565b6001600160a01b03831661067a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610553565b6001600160a01b0382166106db5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610553565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107498484610577565b905060001981146107b157818110156107a45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610553565b6107b18484848403610618565b50505050565b6001600160a01b03831661081b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610553565b6001600160a01b03821661087d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610553565b610888838383610b4d565b6001600160a01b038316600090815260208190526040902054818110156109005760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610553565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36107b1565b6005546001600160a01b0316331461048d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610553565b6001600160a01b038216610a205760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610553565b610a2c82600083610b4d565b6001600160a01b03821660009081526020819052604090205481811015610aa05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610553565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610730565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526008602052604090205460ff16158015610b8f57506001600160a01b03831660009081526008602052604090205460ff16155b610bc95760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610553565b6007546001600160a01b0316610c47576005546001600160a01b0384811691161480610c0257506005546001600160a01b038381169116145b610af65760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610553565b600554600160a01b900460ff168015610c6d57506007546001600160a01b038481169116145b15610af65760065481610c7f84610460565b610c899190610e90565b1115610af65760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610553565b600060208083528351808285015260005b81811015610ced57858101830151858201604001528201610cd1565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d2557600080fd5b919050565b60008060408385031215610d3d57600080fd5b610d4683610d0e565b946020939093013593505050565b600060208284031215610d6657600080fd5b610d6f82610d0e565b9392505050565b600080600060608486031215610d8b57600080fd5b610d9484610d0e565b9250610da260208501610d0e565b9150604084013590509250925092565b80358015158114610d2557600080fd5b60008060408385031215610dd557600080fd5b610dde83610d0e565b9150610dec60208401610db2565b90509250929050565b600060208284031215610e0757600080fd5b5035919050565b600080600060608486031215610e2357600080fd5b610d9484610db2565b60008060408385031215610e3f57600080fd5b610e4883610d0e565b9150610dec60208401610d0e565b600181811c90821680610e6a57607f821691505b602082108103610e8a57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103d457634e487b7160e01b600052601160045260246000fdfea2646970667358221220eb179f0f04e1f322a95127eb4a086b74001a16660c423e581ce9c4f133a64f8a64736f6c634300081200330000000000000000000000000000000000000000e04ee0ccb27ac646ac000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b85780638da5cb5b1161007c5780638da5cb5b146102c957806395d89b41146102da578063a457c2d7146102e2578063a9059cbb146102f5578063dd62ed3e14610308578063f2fde38b1461031b57600080fd5b806370a082311461027e578063715018a6146102915780637abf9d2614610299578063860a32ec146102ac57806389f9a1d3146102c057600080fd5b8063313ce5671161010a578063313ce567146101d057806339509351146101df578063404e5129146101f257806342966c681461020757806347ecb6651461021a57806349bd5a5e1461025357600080fd5b806306fdde0314610147578063095ea7b31461016557806316c021291461018857806318160ddd146101ab57806323b872dd146101bd575b600080fd5b61014f61032e565b60405161015c9190610cc0565b60405180910390f35b610178610173366004610d2a565b6103c0565b604051901515815260200161015c565b610178610196366004610d54565b60086020526000908152604090205460ff1681565b6002545b60405190815260200161015c565b6101786101cb366004610d76565b6103da565b6040516012815260200161015c565b6101786101ed366004610d2a565b6103fe565b610205610200366004610dc2565b610420565b005b610205610215366004610df5565b610453565b60408051808201909152601981527f68747470733a2f2f742e6d652f42696c6c79436f696e45746800000000000000602082015261014f565b600754610266906001600160a01b031681565b6040516001600160a01b03909116815260200161015c565b6101af61028c366004610d54565b610460565b61020561047b565b6102056102a7366004610e0e565b61048f565b60055461017890600160a01b900460ff1681565b6101af60065481565b6005546001600160a01b0316610266565b61014f6104da565b6101786102f0366004610d2a565b6104e9565b610178610303366004610d2a565b610569565b6101af610316366004610e2c565b610577565b610205610329366004610d54565b6105a2565b60606003805461033d90610e56565b80601f016020809104026020016040519081016040528092919081815260200182805461036990610e56565b80156103b65780601f1061038b576101008083540402835291602001916103b6565b820191906000526020600020905b81548152906001019060200180831161039957829003601f168201915b5050505050905090565b6000336103ce818585610618565b60019150505b92915050565b6000336103e885828561073d565b6103f38585856107b7565b506001949350505050565b6000336103ce8185856104118383610577565b61041b9190610e90565b610618565b610428610966565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b61045d33826109c0565b50565b6001600160a01b031660009081526020819052604090205490565b610483610966565b61048d6000610afb565b565b610497610966565b60058054931515600160a01b0260ff60a01b1990941693909317909255600780546001600160a01b039092166001600160a01b0319909216919091179055600655565b60606004805461033d90610e56565b600033816104f78286610577565b90508381101561055c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103f38286868403610618565b6000336103ce8185856107b7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6105aa610966565b6001600160a01b03811661060f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610553565b61045d81610afb565b6001600160a01b03831661067a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610553565b6001600160a01b0382166106db5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610553565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107498484610577565b905060001981146107b157818110156107a45760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610553565b6107b18484848403610618565b50505050565b6001600160a01b03831661081b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610553565b6001600160a01b03821661087d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610553565b610888838383610b4d565b6001600160a01b038316600090815260208190526040902054818110156109005760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610553565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36107b1565b6005546001600160a01b0316331461048d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610553565b6001600160a01b038216610a205760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610553565b610a2c82600083610b4d565b6001600160a01b03821660009081526020819052604090205481811015610aa05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610553565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610730565b505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526008602052604090205460ff16158015610b8f57506001600160a01b03831660009081526008602052604090205460ff16155b610bc95760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401610553565b6007546001600160a01b0316610c47576005546001600160a01b0384811691161480610c0257506005546001600160a01b038381169116145b610af65760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610553565b600554600160a01b900460ff168015610c6d57506007546001600160a01b038481169116145b15610af65760065481610c7f84610460565b610c899190610e90565b1115610af65760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401610553565b600060208083528351808285015260005b81811015610ced57858101830151858201604001528201610cd1565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d2557600080fd5b919050565b60008060408385031215610d3d57600080fd5b610d4683610d0e565b946020939093013593505050565b600060208284031215610d6657600080fd5b610d6f82610d0e565b9392505050565b600080600060608486031215610d8b57600080fd5b610d9484610d0e565b9250610da260208501610d0e565b9150604084013590509250925092565b80358015158114610d2557600080fd5b60008060408385031215610dd557600080fd5b610dde83610d0e565b9150610dec60208401610db2565b90509250929050565b600060208284031215610e0757600080fd5b5035919050565b600080600060608486031215610e2357600080fd5b610d9484610db2565b60008060408385031215610e3f57600080fd5b610e4883610d0e565b9150610dec60208401610d0e565b600181811c90821680610e6a57607f821691505b602082108103610e8a57634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103d457634e487b7160e01b600052601160045260246000fdfea2646970667358221220eb179f0f04e1f322a95127eb4a086b74001a16660c423e581ce9c4f133a64f8a64736f6c63430008120033

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

0000000000000000000000000000000000000000e04ee0ccb27ac646ac000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 69420000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000e04ee0ccb27ac646ac000000


Deployed Bytecode Sourcemap

20726:1505:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9471:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11822:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11822:201:0;1004:187:1;20870:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10591:108;10679:12;;10591:108;;;1533:25:1;;;1521:2;1506:18;10591:108:0;1387:177:1;12603:295:0;;;;;;:::i;:::-;;:::i;10433:93::-;;;10516:2;2044:36:1;;2032:2;2017:18;10433:93:0;1902:184:1;13307:238:0;;;;;;:::i;:::-;;:::i;21129:135::-;;;;;;:::i;:::-;;:::i;:::-;;22030:81;;;;;;:::i;:::-;;:::i;22119:109::-;22186:34;;;;;;;;;;;;;;;;;22119:109;;20835:28;;;;;-1:-1:-1;;;;;20835:28:0;;;;;;-1:-1:-1;;;;;2864:32:1;;;2846:51;;2834:2;2819:18;20835:28:0;2700:203:1;10762:127:0;;;;;;:::i;:::-;;:::i;2882:103::-;;;:::i;21272:227::-;;;;;;:::i;:::-;;:::i;20771:19::-;;;;;-1:-1:-1;;;20771:19:0;;;;;;20797:31;;;;;;2234:87;2307:6;;-1:-1:-1;;;;;2307:6:0;2234:87;;9690:104;;;:::i;14048:436::-;;;;;;:::i;:::-;;:::i;11095:193::-;;;;;;:::i;:::-;;:::i;11351:151::-;;;;;;:::i;:::-;;:::i;3140:201::-;;;;;;:::i;:::-;;:::i;9471:100::-;9525:13;9558:5;9551:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9471:100;:::o;11822:201::-;11905:4;861:10;11961:32;861:10;11977:7;11986:6;11961:8;:32::i;:::-;12011:4;12004:11;;;11822:201;;;;;:::o;12603:295::-;12734:4;861:10;12792:38;12808:4;861:10;12823:6;12792:15;:38::i;:::-;12841:27;12851:4;12857:2;12861:6;12841:9;:27::i;:::-;-1:-1:-1;12886:4:0;;12603:295;-1:-1:-1;;;;12603:295:0:o;13307:238::-;13395:4;861:10;13451:64;861:10;13467:7;13504:10;13476:25;861:10;13467:7;13476:9;:25::i;:::-;:38;;;;:::i;:::-;13451:8;:64::i;21129:135::-;2120:13;:11;:13::i;:::-;-1:-1:-1;;;;;21218:20:0;;;::::1;;::::0;;;:10:::1;:20;::::0;;;;:38;;-1:-1:-1;;21218:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;21129:135::o;22030:81::-;22079:24;22085:10;22097:5;22079;:24::i;:::-;22030:81;:::o;10762:127::-;-1:-1:-1;;;;;10863:18:0;10836:7;10863:18;;;;;;;;;;;;10762:127::o;2882:103::-;2120:13;:11;:13::i;:::-;2947:30:::1;2974:1;2947:18;:30::i;:::-;2882:103::o:0;21272:227::-;2120:13;:11;:13::i;:::-;21385:7:::1;:18:::0;;;::::1;;-1:-1:-1::0;;;21385:18:0::1;-1:-1:-1::0;;;;21385:18:0;;::::1;::::0;;;::::1;::::0;;;21414:13:::1;:30:::0;;-1:-1:-1;;;;;21414:30:0;;::::1;-1:-1:-1::0;;;;;;21414:30:0;;::::1;::::0;;;::::1;::::0;;21455:16:::1;:36:::0;21272:227::o;9690:104::-;9746:13;9779:7;9772:14;;;;;:::i;14048:436::-;14141:4;861:10;14141:4;14224:25;861:10;14241:7;14224:9;:25::i;:::-;14197:52;;14288:15;14268:16;:35;;14260:85;;;;-1:-1:-1;;;14260:85:0;;4314:2:1;14260:85:0;;;4296:21:1;4353:2;4333:18;;;4326:30;4392:34;4372:18;;;4365:62;-1:-1:-1;;;4443:18:1;;;4436:35;4488:19;;14260:85:0;;;;;;;;;14381:60;14390:5;14397:7;14425:15;14406:16;:34;14381:8;:60::i;11095:193::-;11174:4;861:10;11230:28;861:10;11247:2;11251:6;11230:9;:28::i;11351:151::-;-1:-1:-1;;;;;11467:18:0;;;11440:7;11467:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11351:151::o;3140:201::-;2120:13;:11;:13::i;:::-;-1:-1:-1;;;;;3229:22:0;::::1;3221:73;;;::::0;-1:-1:-1;;;3221:73:0;;4720:2:1;3221:73:0::1;::::0;::::1;4702:21:1::0;4759:2;4739:18;;;4732:30;4798:34;4778:18;;;4771:62;-1:-1:-1;;;4849:18:1;;;4842:36;4895:19;;3221:73:0::1;4518:402:1::0;3221:73:0::1;3305:28;3324:8;3305:18;:28::i;18075:380::-:0;-1:-1:-1;;;;;18211:19:0;;18203:68;;;;-1:-1:-1;;;18203:68:0;;5127:2:1;18203:68:0;;;5109:21:1;5166:2;5146:18;;;5139:30;5205:34;5185:18;;;5178:62;-1:-1:-1;;;5256:18:1;;;5249:34;5300:19;;18203:68:0;4925:400:1;18203:68:0;-1:-1:-1;;;;;18290:21:0;;18282:68;;;;-1:-1:-1;;;18282:68:0;;5532:2:1;18282:68:0;;;5514:21:1;5571:2;5551:18;;;5544:30;5610:34;5590:18;;;5583:62;-1:-1:-1;;;5661:18:1;;;5654:32;5703:19;;18282:68:0;5330:398:1;18282:68:0;-1:-1:-1;;;;;18363:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18415:32;;1533:25:1;;;18415:32:0;;1506:18:1;18415:32:0;;;;;;;;18075:380;;;:::o;18746:453::-;18881:24;18908:25;18918:5;18925:7;18908:9;:25::i;:::-;18881:52;;-1:-1:-1;;18948:16:0;:37;18944:248;;19030:6;19010:16;:26;;19002:68;;;;-1:-1:-1;;;19002:68:0;;5935:2:1;19002:68:0;;;5917:21:1;5974:2;5954:18;;;5947:30;6013:31;5993:18;;;5986:59;6062:18;;19002:68:0;5733:353:1;19002:68:0;19114:51;19123:5;19130:7;19158:6;19139:16;:25;19114:8;:51::i;:::-;18870:329;18746:453;;;:::o;14954:840::-;-1:-1:-1;;;;;15085:18:0;;15077:68;;;;-1:-1:-1;;;15077:68:0;;6293:2:1;15077:68:0;;;6275:21:1;6332:2;6312:18;;;6305:30;6371:34;6351:18;;;6344:62;-1:-1:-1;;;6422:18:1;;;6415:35;6467:19;;15077:68:0;6091:401:1;15077:68:0;-1:-1:-1;;;;;15164:16:0;;15156:64;;;;-1:-1:-1;;;15156:64:0;;6699:2:1;15156:64:0;;;6681:21:1;6738:2;6718:18;;;6711:30;6777:34;6757:18;;;6750:62;-1:-1:-1;;;6828:18:1;;;6821:33;6871:19;;15156:64:0;6497:399:1;15156:64:0;15233:38;15254:4;15260:2;15264:6;15233:20;:38::i;:::-;-1:-1:-1;;;;;15306:15:0;;15284:19;15306:15;;;;;;;;;;;15340:21;;;;15332:72;;;;-1:-1:-1;;;15332:72:0;;7103:2:1;15332:72:0;;;7085:21:1;7142:2;7122:18;;;7115:30;7181:34;7161:18;;;7154:62;-1:-1:-1;;;7232:18:1;;;7225:36;7278:19;;15332:72:0;6901:402:1;15332:72:0;-1:-1:-1;;;;;15440:15:0;;;:9;:15;;;;;;;;;;;15458:20;;;15440:38;;15658:13;;;;;;;;;;:23;;;;;;15710:26;;1533:25:1;;;15658:13:0;;15710:26;;1506:18:1;15710:26:0;;;;;;;15749:37;16962:675;2399:132;2307:6;;-1:-1:-1;;;;;2307:6:0;861:10;2463:23;2455:68;;;;-1:-1:-1;;;2455:68:0;;7510:2:1;2455:68:0;;;7492:21:1;;;7529:18;;;7522:30;7588:34;7568:18;;;7561:62;7640:18;;2455:68:0;7308:356:1;16962:675:0;-1:-1:-1;;;;;17046:21:0;;17038:67;;;;-1:-1:-1;;;17038:67:0;;7871:2:1;17038:67:0;;;7853:21:1;7910:2;7890:18;;;7883:30;7949:34;7929:18;;;7922:62;-1:-1:-1;;;8000:18:1;;;7993:31;8041:19;;17038:67:0;7669:397:1;17038:67:0;17118:49;17139:7;17156:1;17160:6;17118:20;:49::i;:::-;-1:-1:-1;;;;;17205:18:0;;17180:22;17205:18;;;;;;;;;;;17242:24;;;;17234:71;;;;-1:-1:-1;;;17234:71:0;;8273:2:1;17234:71:0;;;8255:21:1;8312:2;8292:18;;;8285:30;8351:34;8331:18;;;8324:62;-1:-1:-1;;;8402:18:1;;;8395:32;8444:19;;17234:71:0;8071:398:1;17234:71:0;-1:-1:-1;;;;;17341:18:0;;:9;:18;;;;;;;;;;;17362:23;;;17341:44;;17480:12;:22;;;;;;;17531:37;1533:25:1;;;17341:9:0;;:18;17531:37;;1506:18:1;17531:37:0;1387:177:1;17581:48:0;17027:610;16962:675;;:::o;3501:191::-;3594:6;;;-1:-1:-1;;;;;3611:17:0;;;-1:-1:-1;;;;;;3611:17:0;;;;;;;3644:40;;3594:6;;;3611:17;3594:6;;3644:40;;3575:16;;3644:40;3564:128;3501:191;:::o;21507:515::-;-1:-1:-1;;;;;21659:14:0;;;;;;:10;:14;;;;;;;;21658:15;:36;;;;-1:-1:-1;;;;;;21678:16:0;;;;;;:10;:16;;;;;;;;21677:17;21658:36;21650:60;;;;-1:-1:-1;;;21650:60:0;;8676:2:1;21650:60:0;;;8658:21:1;8715:2;8695:18;;;8688:30;-1:-1:-1;;;8734:18:1;;;8727:41;8785:18;;21650:60:0;8474:335:1;21650:60:0;21727:13;;-1:-1:-1;;;;;21727:13:0;21723:148;;2307:6;;-1:-1:-1;;;;;21779:15:0;;;2307:6;;21779:15;;:32;;-1:-1:-1;2307:6:0;;-1:-1:-1;;;;;21798:13:0;;;2307:6;;21798:13;21779:32;21771:67;;;;-1:-1:-1;;;21771:67:0;;9016:2:1;21771:67:0;;;8998:21:1;9055:2;9035:18;;;9028:30;-1:-1:-1;;;9074:18:1;;;9067:52;9136:18;;21771:67:0;8814:346:1;21723:148:0;21887:7;;-1:-1:-1;;;21887:7:0;;;;:32;;;;-1:-1:-1;21906:13:0;;-1:-1:-1;;;;;21898:21:0;;;21906:13;;21898:21;21887:32;21883:132;;;21976:16;;21966:6;21944:19;21960:2;21944:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;21936:67;;;;-1:-1:-1;;;21936:67:0;;9367:2:1;21936:67:0;;;9349:21:1;9406:1;9386:18;;;9379:29;-1:-1:-1;;;9424:18:1;;;9417:36;9470:18;;21936:67:0;9165:329:1;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:186::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;1347:29;1366:9;1347:29;:::i;:::-;1337:39;1196:186;-1:-1:-1;;;1196:186:1:o;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2091:160::-;2156:20;;2212:13;;2205:21;2195:32;;2185:60;;2241:1;2238;2231:12;2256:254;2321:6;2329;2382:2;2370:9;2361:7;2357:23;2353:32;2350:52;;;2398:1;2395;2388:12;2350:52;2421:29;2440:9;2421:29;:::i;:::-;2411:39;;2469:35;2500:2;2489:9;2485:18;2469:35;:::i;:::-;2459:45;;2256:254;;;;;:::o;2515:180::-;2574:6;2627:2;2615:9;2606:7;2602:23;2598:32;2595:52;;;2643:1;2640;2633:12;2595:52;-1:-1:-1;2666:23:1;;2515:180;-1:-1:-1;2515:180:1:o;2908:322::-;2982:6;2990;2998;3051:2;3039:9;3030:7;3026:23;3022:32;3019:52;;;3067:1;3064;3057:12;3019:52;3090:26;3106:9;3090:26;:::i;3235:260::-;3303:6;3311;3364:2;3352:9;3343:7;3339:23;3335:32;3332:52;;;3380:1;3377;3370:12;3332:52;3403:29;3422:9;3403:29;:::i;:::-;3393:39;;3451:38;3485:2;3474:9;3470:18;3451:38;:::i;3500:380::-;3579:1;3575:12;;;;3622;;;3643:61;;3697:4;3689:6;3685:17;3675:27;;3643:61;3750:2;3742:6;3739:14;3719:18;3716:38;3713:161;;3796:10;3791:3;3787:20;3784:1;3777:31;3831:4;3828:1;3821:15;3859:4;3856:1;3849:15;3713:161;;3500:380;;;:::o;3885:222::-;3950:9;;;3971:10;;;3968:133;;;4023:10;4018:3;4014:20;4011:1;4004:31;4058:4;4055:1;4048:15;4086:4;4083:1;4076:15

Swarm Source

ipfs://eb179f0f04e1f322a95127eb4a086b74001a16660c423e581ce9c4f133a64f8a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.