BNB Price: $612.38 (+2.46%)
 

Overview

BNB Balance

BNB Smart Chain LogoBNB Smart Chain LogoBNB Smart Chain Logo0 BNB

BNB Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

quq (quq) ($0.0022)

Multichain Info

Transaction Hash
Block
From
To
Transfer924311032026-04-14 5:32:132 mins ago1776144733IN
QUQ: quq Token
0 BNB0.000001830.05
Transfer924310812026-04-14 5:32:032 mins ago1776144723IN
QUQ: quq Token
0 BNB0.000001830.05
Transfer924310592026-04-14 5:31:532 mins ago1776144713IN
QUQ: quq Token
0 BNB0.000002680.05
Approve924302322026-04-14 5:25:419 mins ago1776144341IN
QUQ: quq Token
0 BNB0.000002320.05
Approve924291812026-04-14 5:17:4816 mins ago1776143868IN
QUQ: quq Token
0 BNB0.000002450.05274171
Approve924264842026-04-14 4:57:3337 mins ago1776142653IN
QUQ: quq Token
0 BNB0.000002320.05
Approve924261992026-04-14 4:55:2439 mins ago1776142524IN
QUQ: quq Token
0 BNB0.000002540.05459798
Approve924253632026-04-14 4:49:0845 mins ago1776142148IN
QUQ: quq Token
0 BNB0.000003280.0710165
Approve924253322026-04-14 4:48:5445 mins ago1776142134IN
QUQ: quq Token
0 BNB0.000002590.05564499
Approve924241692026-04-14 4:40:1054 mins ago1776141610IN
QUQ: quq Token
0 BNB0.000002320.05
Approve924241012026-04-14 4:39:3955 mins ago1776141579IN
QUQ: quq Token
0 BNB0.000002610.05615823
Approve924229892026-04-14 4:31:181 hr ago1776141078IN
QUQ: quq Token
0 BNB0.000002330.05021231
Approve924228812026-04-14 4:30:301 hr ago1776141030IN
QUQ: quq Token
0 BNB0.000001330.05488229
Approve924215552026-04-14 4:20:321 hr ago1776140432IN
QUQ: quq Token
0 BNB0.000002450.053
Approve924215172026-04-14 4:20:151 hr ago1776140415IN
QUQ: quq Token
0 BNB0.000002490.054
Approve924210362026-04-14 4:16:381 hr ago1776140198IN
QUQ: quq Token
0 BNB0.00000320.06937076
Approve924200282026-04-14 4:09:041 hr ago1776139744IN
QUQ: quq Token
0 BNB0.000002320.05
Transfer924182492026-04-14 3:55:431 hr ago1776138943IN
QUQ: quq Token
0 BNB0.000001750.05504838
Transfer924181782026-04-14 3:55:111 hr ago1776138911IN
QUQ: quq Token
0 BNB0.000001830.05
Transfer924181562026-04-14 3:55:011 hr ago1776138901IN
QUQ: quq Token
0 BNB0.000001830.05
Transfer924181332026-04-14 3:54:511 hr ago1776138891IN
QUQ: quq Token
0 BNB0.000001830.05
Transfer924181112026-04-14 3:54:411 hr ago1776138881IN
QUQ: quq Token
0 BNB0.000001830.05
Transfer924180892026-04-14 3:54:311 hr ago1776138871IN
QUQ: quq Token
0 BNB0.000002680.05
Transfer924176022026-04-14 3:50:511 hr ago1776138651IN
QUQ: quq Token
0 BNB0.000002770.05663624
Approve924163982026-04-14 3:41:471 hr ago1776138107IN
QUQ: quq Token
0 BNB0.000006070.1313
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
476520452025-03-21 6:17:00388 days ago1742537820  Contract Creation0 BNB
Cross-Chain Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x5cBaf1DC...30a43c53a
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Token

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at BscScan.com on 2024-09-07
*/

/**
 *Submitted for verification at BscScan.com on 2024-07-10
*/

// SPDX-License-Identifier: MIT
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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

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

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

/**
 * @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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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 {}
}

contract Token is ERC20, Ownable {
    uint public constant MODE_NORMAL = 0;
    uint public constant MODE_TRANSFER_RESTRICTED = 1;
    uint public constant MODE_TRANSFER_CONTROLLED = 2;
    uint public _mode;

    constructor(
        string memory name,
        string memory symbol,
        uint256 totalSupply) ERC20(name, symbol) {
        _mint(owner(), totalSupply);
        _mode = MODE_TRANSFER_RESTRICTED;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);
        if (_mode == MODE_TRANSFER_RESTRICTED) {
            revert("Token: Transfer is restricted");
        }
        if (_mode == MODE_TRANSFER_CONTROLLED) {
            require(from == owner() || to == owner(), "Token: Invalid transfer");
        }
    }

    function setMode(uint v) public onlyOwner {
        if (_mode != MODE_NORMAL) {
            _mode = v;
        }
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"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":[],"name":"MODE_NORMAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MODE_TRANSFER_CONTROLLED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MODE_TRANSFER_RESTRICTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mode","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"v","type":"uint256"}],"name":"setMode","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":"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"}]

0x608060405234801562000010575f80fd5b50604051620010a6380380620010a683398101604081905262000033916200035c565b8282600362000043838262000455565b50600462000052828262000455565b5050506200006f620000696200009b60201b60201c565b6200009f565b6200008d620000866005546001600160a01b031690565b82620000f0565b505060016006555062000543565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166200014c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001595f8383620001c2565b8060025f8282546200016c91906200051d565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600160065403620002165760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e3a205472616e736665722069732072657374726963746564000000604482015260640162000143565b60026006540362000299576005546001600160a01b03848116911614806200024b57506005546001600160a01b038381169116145b620002995760405162461bcd60e51b815260206004820152601760248201527f546f6b656e3a20496e76616c6964207472616e73666572000000000000000000604482015260640162000143565b505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112620002c2575f80fd5b81516001600160401b0380821115620002df57620002df6200029e565b604051601f8301601f19908116603f011681019082821181831017156200030a576200030a6200029e565b8160405283815260209250868385880101111562000326575f80fd5b5f91505b838210156200034957858201830151818301840152908201906200032a565b5f93810190920192909252949350505050565b5f805f606084860312156200036f575f80fd5b83516001600160401b038082111562000386575f80fd5b6200039487838801620002b2565b94506020860151915080821115620003aa575f80fd5b50620003b986828701620002b2565b925050604084015190509250925092565b600181811c90821680620003df57607f821691505b602082108103620003fe57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000299575f81815260208120601f850160051c810160208610156200042c5750805b601f850160051c820191505b818110156200044d5782815560010162000438565b505050505050565b81516001600160401b038111156200047157620004716200029e565b6200048981620004828454620003ca565b8462000404565b602080601f831160018114620004bf575f8415620004a75750858301515b5f19600386901b1c1916600185901b1785556200044d565b5f85815260208120601f198616915b82811015620004ef57888601518255948401946001909101908401620004ce565b50858210156200050d57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200053d57634e487b7160e01b5f52601160045260245ffd5b92915050565b610b5580620005515f395ff3fe608060405234801561000f575f80fd5b506004361061011c575f3560e01c806370a08231116100a9578063a9059cbb1161006e578063a9059cbb14610227578063c5c03af31461023a578063d72dd3b414610243578063dd62ed3e14610256578063f2fde38b14610269575f80fd5b806370a08231146101bf578063715018a6146101e75780638da5cb5b146101f157806395d89b411461020c578063a457c2d714610214575f80fd5b806323b872dd116100ef57806323b872dd1461017b578063313ce5671461018e57806332be63301461019d57806339509351146101a55780633af3d783146101b8575f80fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd146101615780631c8fc2c014610173575b5f80fd5b61012861027c565b6040516101359190610999565b60405180910390f35b61015161014c3660046109ff565b61030c565b6040519015158152602001610135565b6002545b604051908152602001610135565b610165600181565b610151610189366004610a27565b610325565b60405160128152602001610135565b610165600281565b6101516101b33660046109ff565b610348565b6101655f81565b6101656101cd366004610a60565b6001600160a01b03165f9081526020819052604090205490565b6101ef610369565b005b6005546040516001600160a01b039091168152602001610135565b61012861037c565b6101516102223660046109ff565b61038b565b6101516102353660046109ff565b61040a565b61016560065481565b6101ef610251366004610a80565b610417565b610165610264366004610a97565b610430565b6101ef610277366004610a60565b61045a565b60606003805461028b90610ac8565b80601f01602080910402602001604051908101604052809291908181526020018280546102b790610ac8565b80156103025780601f106102d957610100808354040283529160200191610302565b820191905f5260205f20905b8154815290600101906020018083116102e557829003601f168201915b5050505050905090565b5f336103198185856104d0565b60019150505b92915050565b5f336103328582856105f3565b61033d85858561066b565b506001949350505050565b5f3361031981858561035a8383610430565b6103649190610b00565b6104d0565b610371610818565b61037a5f610872565b565b60606004805461028b90610ac8565b5f33816103988286610430565b9050838110156103fd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61033d82868684036104d0565b5f3361031981858561066b565b61041f610818565b6006541561042d5760068190555b50565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610462610818565b6001600160a01b0381166104c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f4565b61042d81610872565b6001600160a01b0383166105325760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f4565b6001600160a01b0382166105935760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6105fe8484610430565b90505f19811461066557818110156106585760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f4565b61066584848484036104d0565b50505050565b6001600160a01b0383166106cf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f4565b6001600160a01b0382166107315760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f4565b61073c8383836108c3565b6001600160a01b0383165f90815260208190526040902054818110156107b35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f4565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610665565b6005546001600160a01b0316331461037a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f4565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600654036109155760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e3a205472616e73666572206973207265737472696374656400000060448201526064016103f4565b600260065403610994576005546001600160a01b038481169116148061094857506005546001600160a01b038381169116145b6109945760405162461bcd60e51b815260206004820152601760248201527f546f6b656e3a20496e76616c6964207472616e7366657200000000000000000060448201526064016103f4565b505050565b5f6020808352835180828501525f5b818110156109c4578581018301518582016040015282016109a8565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109fa575f80fd5b919050565b5f8060408385031215610a10575f80fd5b610a19836109e4565b946020939093013593505050565b5f805f60608486031215610a39575f80fd5b610a42846109e4565b9250610a50602085016109e4565b9150604084013590509250925092565b5f60208284031215610a70575f80fd5b610a79826109e4565b9392505050565b5f60208284031215610a90575f80fd5b5035919050565b5f8060408385031215610aa8575f80fd5b610ab1836109e4565b9150610abf602084016109e4565b90509250929050565b600181811c90821680610adc57607f821691505b602082108103610afa57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561031f57634e487b7160e01b5f52601160045260245ffdfea26469706673582212200e3289d218470812a51ce5e525426d7dc364fa07e9a33f625b7fe9686281d90764736f6c63430008140033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000000000000000000000000003717571000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000037175710000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061011c575f3560e01c806370a08231116100a9578063a9059cbb1161006e578063a9059cbb14610227578063c5c03af31461023a578063d72dd3b414610243578063dd62ed3e14610256578063f2fde38b14610269575f80fd5b806370a08231146101bf578063715018a6146101e75780638da5cb5b146101f157806395d89b411461020c578063a457c2d714610214575f80fd5b806323b872dd116100ef57806323b872dd1461017b578063313ce5671461018e57806332be63301461019d57806339509351146101a55780633af3d783146101b8575f80fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd146101615780631c8fc2c014610173575b5f80fd5b61012861027c565b6040516101359190610999565b60405180910390f35b61015161014c3660046109ff565b61030c565b6040519015158152602001610135565b6002545b604051908152602001610135565b610165600181565b610151610189366004610a27565b610325565b60405160128152602001610135565b610165600281565b6101516101b33660046109ff565b610348565b6101655f81565b6101656101cd366004610a60565b6001600160a01b03165f9081526020819052604090205490565b6101ef610369565b005b6005546040516001600160a01b039091168152602001610135565b61012861037c565b6101516102223660046109ff565b61038b565b6101516102353660046109ff565b61040a565b61016560065481565b6101ef610251366004610a80565b610417565b610165610264366004610a97565b610430565b6101ef610277366004610a60565b61045a565b60606003805461028b90610ac8565b80601f01602080910402602001604051908101604052809291908181526020018280546102b790610ac8565b80156103025780601f106102d957610100808354040283529160200191610302565b820191905f5260205f20905b8154815290600101906020018083116102e557829003601f168201915b5050505050905090565b5f336103198185856104d0565b60019150505b92915050565b5f336103328582856105f3565b61033d85858561066b565b506001949350505050565b5f3361031981858561035a8383610430565b6103649190610b00565b6104d0565b610371610818565b61037a5f610872565b565b60606004805461028b90610ac8565b5f33816103988286610430565b9050838110156103fd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61033d82868684036104d0565b5f3361031981858561066b565b61041f610818565b6006541561042d5760068190555b50565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610462610818565b6001600160a01b0381166104c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f4565b61042d81610872565b6001600160a01b0383166105325760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f4565b6001600160a01b0382166105935760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6105fe8484610430565b90505f19811461066557818110156106585760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f4565b61066584848484036104d0565b50505050565b6001600160a01b0383166106cf5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f4565b6001600160a01b0382166107315760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f4565b61073c8383836108c3565b6001600160a01b0383165f90815260208190526040902054818110156107b35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f4565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610665565b6005546001600160a01b0316331461037a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f4565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600654036109155760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e3a205472616e73666572206973207265737472696374656400000060448201526064016103f4565b600260065403610994576005546001600160a01b038481169116148061094857506005546001600160a01b038381169116145b6109945760405162461bcd60e51b815260206004820152601760248201527f546f6b656e3a20496e76616c6964207472616e7366657200000000000000000060448201526064016103f4565b505050565b5f6020808352835180828501525f5b818110156109c4578581018301518582016040015282016109a8565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146109fa575f80fd5b919050565b5f8060408385031215610a10575f80fd5b610a19836109e4565b946020939093013593505050565b5f805f60608486031215610a39575f80fd5b610a42846109e4565b9250610a50602085016109e4565b9150604084013590509250925092565b5f60208284031215610a70575f80fd5b610a79826109e4565b9392505050565b5f60208284031215610a90575f80fd5b5035919050565b5f8060408385031215610aa8575f80fd5b610ab1836109e4565b9150610abf602084016109e4565b90509250929050565b600181811c90821680610adc57607f821691505b602082108103610afa57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561031f57634e487b7160e01b5f52601160045260245ffdfea26469706673582212200e3289d218470812a51ce5e525426d7dc364fa07e9a33f625b7fe9686281d90764736f6c63430008140033

Deployed Bytecode Sourcemap

19710:1028:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8733:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11093:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11093:201:0;1004:187:1;9862:108:0;9950:12;;9862:108;;;1342:25:1;;;1330:2;1315:18;9862:108:0;1196:177:1;19793:49:0;;19841:1;19793:49;;11874:261;;;;;;:::i;:::-;;:::i;9704:93::-;;;9787:2;1853:36:1;;1841:2;1826:18;9704:93:0;1711:184:1;19849:49:0;;19897:1;19849:49;;12544:238;;;;;;:::i;:::-;;:::i;19750:36::-;;19785:1;19750:36;;10033:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10134:18:0;10107:7;10134:18;;;;;;;;;;;;10033:127;2709:103;;;:::i;:::-;;2068:87;2141:6;;2068:87;;-1:-1:-1;;;;;2141:6:0;;;2237:51:1;;2225:2;2210:18;2068:87:0;2091:203:1;8952:104:0;;;:::i;13285:436::-;;;;;;:::i;:::-;;:::i;10366:193::-;;;;;;:::i;:::-;;:::i;19905:17::-;;;;;;20613:122;;;;;;:::i;:::-;;:::i;10622:151::-;;;;;;:::i;:::-;;:::i;2967:201::-;;;;;;:::i;:::-;;:::i;8733:100::-;8787:13;8820:5;8813:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8733:100;:::o;11093:201::-;11176:4;750:10;11232:32;750:10;11248:7;11257:6;11232:8;:32::i;:::-;11282:4;11275:11;;;11093:201;;;;;:::o;11874:261::-;11971:4;750:10;12029:38;12045:4;750:10;12060:6;12029:15;:38::i;:::-;12078:27;12088:4;12094:2;12098:6;12078:9;:27::i;:::-;-1:-1:-1;12123:4:0;;11874:261;-1:-1:-1;;;;11874:261:0:o;12544:238::-;12632:4;750:10;12688:64;750:10;12704:7;12741:10;12713:25;750:10;12704:7;12713:9;:25::i;:::-;:38;;;;:::i;:::-;12688:8;:64::i;2709:103::-;1954:13;:11;:13::i;:::-;2774:30:::1;2801:1;2774:18;:30::i;:::-;2709:103::o:0;8952:104::-;9008:13;9041:7;9034:14;;;;;:::i;13285:436::-;13378:4;750:10;13378:4;13461:25;750:10;13478:7;13461:9;:25::i;:::-;13434:52;;13525:15;13505:16;:35;;13497:85;;;;-1:-1:-1;;;13497:85:0;;3563:2:1;13497:85:0;;;3545:21:1;3602:2;3582:18;;;3575:30;3641:34;3621:18;;;3614:62;-1:-1:-1;;;3692:18:1;;;3685:35;3737:19;;13497:85:0;;;;;;;;;13618:60;13627:5;13634:7;13662:15;13643:16;:34;13618:8;:60::i;10366:193::-;10445:4;750:10;10501:28;750:10;10518:2;10522:6;10501:9;:28::i;20613:122::-;1954:13;:11;:13::i;:::-;20670:5:::1;::::0;:20;20666:62:::1;;20707:5;:9:::0;;;20666:62:::1;20613:122:::0;:::o;10622:151::-;-1:-1:-1;;;;;10738:18:0;;;10711:7;10738:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10622:151::o;2967:201::-;1954:13;:11;:13::i;:::-;-1:-1:-1;;;;;3056:22:0;::::1;3048:73;;;::::0;-1:-1:-1;;;3048:73:0;;3969:2:1;3048:73:0::1;::::0;::::1;3951:21:1::0;4008:2;3988:18;;;3981:30;4047:34;4027:18;;;4020:62;-1:-1:-1;;;4098:18:1;;;4091:36;4144:19;;3048:73:0::1;3767:402:1::0;3048:73:0::1;3132:28;3151:8;3132:18;:28::i;17262:346::-:0;-1:-1:-1;;;;;17364:19:0;;17356:68;;;;-1:-1:-1;;;17356:68:0;;4376:2:1;17356:68:0;;;4358:21:1;4415:2;4395:18;;;4388:30;4454:34;4434:18;;;4427:62;-1:-1:-1;;;4505:18:1;;;4498:34;4549:19;;17356:68:0;4174:400:1;17356:68:0;-1:-1:-1;;;;;17443:21:0;;17435:68;;;;-1:-1:-1;;;17435:68:0;;4781:2:1;17435:68:0;;;4763:21:1;4820:2;4800:18;;;4793:30;4859:34;4839:18;;;4832:62;-1:-1:-1;;;4910:18:1;;;4903:32;4952:19;;17435:68:0;4579:398:1;17435:68:0;-1:-1:-1;;;;;17516:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17568:32;;1342:25:1;;;17568:32:0;;1315:18:1;17568:32:0;;;;;;;17262:346;;;:::o;17899:419::-;18000:24;18027:25;18037:5;18044:7;18027:9;:25::i;:::-;18000:52;;-1:-1:-1;;18067:16:0;:37;18063:248;;18149:6;18129:16;:26;;18121:68;;;;-1:-1:-1;;;18121:68:0;;5184:2:1;18121:68:0;;;5166:21:1;5223:2;5203:18;;;5196:30;5262:31;5242:18;;;5235:59;5311:18;;18121:68:0;4982:353:1;18121:68:0;18233:51;18242:5;18249:7;18277:6;18258:16;:25;18233:8;:51::i;:::-;17989:329;17899:419;;;:::o;14191:798::-;-1:-1:-1;;;;;14288:18:0;;14280:68;;;;-1:-1:-1;;;14280:68:0;;5542:2:1;14280:68:0;;;5524:21:1;5581:2;5561:18;;;5554:30;5620:34;5600:18;;;5593:62;-1:-1:-1;;;5671:18:1;;;5664:35;5716:19;;14280:68:0;5340:401:1;14280:68:0;-1:-1:-1;;;;;14367:16:0;;14359:64;;;;-1:-1:-1;;;14359:64:0;;5948:2:1;14359:64:0;;;5930:21:1;5987:2;5967:18;;;5960:30;6026:34;6006:18;;;5999:62;-1:-1:-1;;;6077:18:1;;;6070:33;6120:19;;14359:64:0;5746:399:1;14359:64:0;14436:38;14457:4;14463:2;14467:6;14436:20;:38::i;:::-;-1:-1:-1;;;;;14509:15:0;;14487:19;14509:15;;;;;;;;;;;14543:21;;;;14535:72;;;;-1:-1:-1;;;14535:72:0;;6352:2:1;14535:72:0;;;6334:21:1;6391:2;6371:18;;;6364:30;6430:34;6410:18;;;6403:62;-1:-1:-1;;;6481:18:1;;;6474:36;6527:19;;14535:72:0;6150:402:1;14535:72:0;-1:-1:-1;;;;;14643:15:0;;;:9;:15;;;;;;;;;;;14661:20;;;14643:38;;14853:13;;;;;;;;;;:23;;;;;;14905:26;;1342:25:1;;;14853:13:0;;14905:26;;1315:18:1;14905:26:0;;;;;;;14944:37;20151:454;2233:132;2141:6;;-1:-1:-1;;;;;2141:6:0;750:10;2297:23;2289:68;;;;-1:-1:-1;;;2289:68:0;;6759:2:1;2289:68:0;;;6741:21:1;;;6778:18;;;6771:30;6837:34;6817:18;;;6810:62;6889:18;;2289:68:0;6557:356:1;3328:191:0;3421:6;;;-1:-1:-1;;;;;3438:17:0;;;-1:-1:-1;;;;;;3438:17:0;;;;;;;3471:40;;3421:6;;;3438:17;3421:6;;3471:40;;3402:16;;3471:40;3391:128;3328:191;:::o;20151:454::-;19841:1;20353:5;;:33;20349:105;;20403:39;;-1:-1:-1;;;20403:39:0;;7120:2:1;20403:39:0;;;7102:21:1;7159:2;7139:18;;;7132:30;7198:31;7178:18;;;7171:59;7247:18;;20403:39:0;6918:353:1;20349:105:0;19897:1;20468:5;;:33;20464:134;;2141:6;;-1:-1:-1;;;;;20526:15:0;;;2141:6;;20526:15;;:32;;-1:-1:-1;2141:6:0;;-1:-1:-1;;;;;20545:13:0;;;2141:6;;20545:13;20526:32;20518:68;;;;-1:-1:-1;;;20518:68:0;;7478:2:1;20518:68:0;;;7460:21:1;7517:2;7497:18;;;7490:30;7556:25;7536:18;;;7529:53;7599:18;;20518:68:0;7276:347:1;20518:68:0;20151:454;;;:::o;14:548:1:-;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;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;:::-;2041:39;1900:186;-1:-1:-1;;;1900:186:1:o;2299:180::-;2358:6;2411:2;2399:9;2390:7;2386:23;2382:32;2379:52;;;2427:1;2424;2417:12;2379:52;-1:-1:-1;2450:23:1;;2299:180;-1:-1:-1;2299:180:1:o;2484:260::-;2552:6;2560;2613:2;2601:9;2592:7;2588:23;2584:32;2581:52;;;2629:1;2626;2619:12;2581:52;2652:29;2671:9;2652:29;:::i;:::-;2642:39;;2700:38;2734:2;2723:9;2719:18;2700:38;:::i;:::-;2690:48;;2484:260;;;;;:::o;2749:380::-;2828:1;2824:12;;;;2871;;;2892:61;;2946:4;2938:6;2934:17;2924:27;;2892:61;2999:2;2991:6;2988:14;2968:18;2965:38;2962:161;;3045:10;3040:3;3036:20;3033:1;3026:31;3080:4;3077:1;3070:15;3108:4;3105:1;3098:15;2962:161;;2749:380;;;:::o;3134:222::-;3199:9;;;3220:10;;;3217:133;;;3272:10;3267:3;3263:20;3260:1;3253:31;3307:4;3304:1;3297:15;3335:4;3332:1;3325:15

Swarm Source

ipfs://0e3289d218470812a51ce5e525426d7dc364fa07e9a33f625b7fe9686281d907

Block Transaction Gas Used Reward
view all blocks produced
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
View All Validatorset

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
0x4fa7C69a7B69f8Bc48233024D546bc299d6B03bf
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.