ETH Price: $3,210.80 (-1.36%)
Gas: 1 Gwei

Token

touch (grass)
 

Overview

Max Total Supply

978,080,339.236834243 grass

Holders

185

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
245,438.093844963 grass

Value
$0.00
0x6a8cc59ef199459cf91b3195d657ef93d06ea33f
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:
Touch

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : 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 2 of 7 : 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 3 of 7 : 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 4 of 7 : Erc20.sol
pragma solidity ^0.8.17;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/utils/Context.sol";

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) internal _balances;

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

    uint256 internal _totalSupply;
    uint8 internal constant _decimals = 9;

    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 pure returns (uint8) {
        return _decimals;
    }

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

        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);
    }

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);
    }

    /**
     * @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];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

File 5 of 7 : IUniswapV2Factory.sol
pragma solidity ^0.8.7;

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

File 6 of 7 : IUniswapV2Router02.sol
pragma solidity ^0.8.7;

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

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

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

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

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

    function getReserves(
        address factory,
        address tokenA,
        address tokenB
    ) external view returns (uint reserveA, uint reserveB);

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

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

File 7 of 7 : Touch.sol
pragma solidity ^0.8.17;

import "./Erc20.sol";
import "./Erc20.sol";
import "./IUniswapV2Router02.sol";
import "./IUniswapV2Factory.sol";

contract Touch is ERC20 {
    uint256 public constant rewardPercentMin = 10; // 1 %
    uint256 public constant rewardPercentMax = 200; // 20%
    uint256 public constant rewardInterwal = 180 seconds;
    uint256 public constant startTotalSupply = 1e9 * (10 ** _decimals);
    uint256 constant _startMaxBuyCount = startTotalSupply / 1000;
    uint256 constant _addMaxBuyPercentPerSec = 5; // add 0.005%/second
    IUniswapV2Router02 constant router =
        IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    bool _inSwap;
    address pair;
    uint256 _startTime;
    bool public canReward;
    uint256 public rewardVersion; // reward version
    uint256 public rewardedCurrentVersion; // rewarded on current version
    uint256 public rewards; // current rewards
    uint256 public nextRewardTime;
    uint256 public tokensOnAccounts; // tokens on all accounts
    uint256 public tokensOnAccountsCurrentVerstion;
    address public owner;
    uint256 _nonce = 1;
    mapping(address => uint256) _rewardVersionsByAccs;

    event OnReward(uint256 count);

    constructor() ERC20("touch", "grass") {
        owner = msg.sender;
    }

    modifier lockTheSwap() {
        _inSwap = true;
        _;
        _inSwap = false;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        _updateReward(from);
        _updateReward(to);

        if (_inSwap) {
            super._transfer(from, to, amount);
            return;
        }

        if (to == address(0)) {
            require(
                _balances[from] >= amount,
                "ERC20: transfer amount exceeds balance"
            );
            unchecked {
                _balances[from] -= amount;
                _totalSupply -= amount;
            }
            emit Transfer(from, to, amount);
            return;
        }

        if (from == pair) {
            transferFromPair(to, amount);
            return;
        }

        if (to == pair) {
            transferToPair(from, amount);
            return;
        }

        super._transfer(from, to, amount);
    }

    function transferFromPair(address to, uint256 amount) private {
        require(amount <= maxBuy(), "maximum buy count limit");
        uint256 burnCount = (amount * 25) / 10000;
        _burn(pair, burnCount);
        uint256 toAccCount = amount - burnCount;
        super._transfer(pair, to, toAccCount);
        if (_isAccount(to)) {
            tokensOnAccounts += toAccCount;
        }
    }

    function transferToPair(address from, uint256 amount) private {
        uint256 burnCount = (amount * 25) / 10000;
        _burn(from, burnCount);
        super._transfer(from, pair, amount - burnCount);
        if (_isAccount(from)) {
            tokensOnAccounts -= amount;
        }
    }

    function burned() public view returns (uint256) {
        return startTotalSupply - totalSupply();
    }

    function makePool() external payable lockTheSwap {
        pair = IUniswapV2Factory(router.factory()).createPair(
            address(this),
            router.WETH()
        );
        _mint(address(this), startTotalSupply);
        _approve(address(this), address(router), type(uint256).max);
        router.addLiquidityETH{value: msg.value}(
            address(this),
            startTotalSupply / 2,
            0,
            0,
            msg.sender,
            block.timestamp
        );
        _startTime = block.timestamp;
    }

    function maxBuy() public view returns (uint256) {
        if (pair == address(0)) return startTotalSupply;
        uint256 count = _startMaxBuyCount +
            (startTotalSupply *
                (block.timestamp - _startTime) *
                _addMaxBuyPercentPerSec) /
            100000;
        if (count > startTotalSupply) count = startTotalSupply;
        return count;
    }

    function maxBuyWithoutDecimals() public view returns (uint256) {
        return maxBuy() / (10 ** _decimals);
    }

    function _rand() private returns (uint256) {
        return _nonce++ * block.timestamp * block.number;
    }

    function _rand(uint256 min, uint256 max) private returns (uint256) {
        return min + (_rand() % (max - min + 1));
    }

    function balanceOf(
        address account
    ) public view virtual override returns (uint256) {
        if (account == address(this)) return _balances[account] - rewards;
        return _balances[account] + getReward(account);
    }

    function getReward(address account) public view returns (uint256) {
        if (tokensOnAccountsCurrentVerstion == 0) return 0;
        if (!_isAccount(account)) return 0;
        if (rewardVersion == 0) return 0;
        if (_rewardVersionsByAccs[account] == rewardVersion) return 0;
        return
            (rewardedCurrentVersion * _balances[account]) /
            tokensOnAccountsCurrentVerstion;
    }

    function updateReward(address account) external {
        // updates account reward (for emit events)
        _updateReward(account);
    }

    function _updateReward(address account) private {
        uint256 reward = getReward(account);
        _rewardVersionsByAccs[account] = rewardVersion;
        if (reward == 0) return;

        rewards -= reward;
        _balances[address(this)] -= reward;
        _balances[account] += reward;
        tokensOnAccounts += reward;
        emit Transfer(address(this), account, reward);
    }

    function _isAccount(address addr) private view returns (bool) {
        return addr != address(0) && addr != pair && addr != address(this);
    }

    function touchGrass() external {
        require(block.timestamp >= nextRewardTime, "can not grant rewards yet");
        nextRewardTime = block.timestamp + rewardInterwal;
        uint256 addRewards = (balanceOf(address(this)) *
            _rand(rewardPercentMin, rewardPercentMax)) / 1000;
        _grantRewards(addRewards);
    }

    function _grantRewards(uint256 count) internal {
        require(canReward, "can not reward yet");
        rewards += count;
        rewardedCurrentVersion = rewards;
        tokensOnAccountsCurrentVerstion = tokensOnAccounts;
        ++rewardVersion;
        emit OnReward(count);
    }

    function startProtocolAndRenounce() external {
        require(msg.sender == owner, "only owner");
        owner = address(0);
        canReward = true;
    }
}

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

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":false,"internalType":"uint256","name":"count","type":"uint256"}],"name":"OnReward","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":"burned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"account","type":"address"}],"name":"getReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"makePool","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyWithoutDecimals","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":"nextRewardTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardInterwal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPercentMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPercentMin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardVersion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardedCurrentVersion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startProtocolAndRenounce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensOnAccounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensOnAccountsCurrentVerstion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"touchGrass","outputs":[],"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"updateReward","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600f553480156200001657600080fd5b50604051806040016040528060058152602001640e8deeac6d60db1b81525060405180604001604052806005815260200164677261737360d81b815250816003908162000064919062000133565b50600462000073828262000133565b5050600e80546001600160a01b0319163317905550620001ff565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620000b957607f821691505b602082108103620000da57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200012e57600081815260208120601f850160051c81016020861015620001095750805b601f850160051c820191505b818110156200012a5782815560010162000115565b5050505b505050565b81516001600160401b038111156200014f576200014f6200008e565b6200016781620001608454620000a4565b84620000e0565b602080601f8311600181146200019f5760008415620001865750858301515b600019600386901b1c1916600185901b1785556200012a565b600085815260208120601f198616915b82811015620001d057888601518255948401946001909101908401620001af565b5085821015620001ef5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6119fe806200020f6000396000f3fe6080604052600436106101d85760003560e01c806370a08231116101025780639ce0bcde11610095578063c00007b011610064578063c00007b0146104be578063dd62ed3e146104de578063e5a30a7e146104fe578063e7b743e51461051457600080fd5b80639ce0bcde146104525780639ec5a89414610468578063a457c2d71461047e578063a9059cbb1461049e57600080fd5b80637f68e195116100d15780637f68e195146103d957806389135372146103ef5780638da5cb5b1461040557806395d89b411461043d57600080fd5b806370a082311461038757806370bbdf64146103a757806370db69d6146103af57806373f42561146103c457600080fd5b8063313ce5671161017a5780634b673c4b116101495780634b673c4b146103235780635a56098414610338578063632447c91461034d57806369d14dc71461036d57600080fd5b8063313ce567146102bc57806339361e3c146102d857806339509351146102ee5780634964cc351461030e57600080fd5b806313a4486c116101b657806313a4486c1461024f57806318160ddd1461027257806322194e6a1461028757806323b872dd1461029c57600080fd5b80630281d3d2146101dd57806306fdde03146101f4578063095ea7b31461021f575b600080fd5b3480156101e957600080fd5b506101f2610529565b005b34801561020057600080fd5b506102096105ca565b604051610216919061161a565b60405180910390f35b34801561022b57600080fd5b5061023f61023a36600461167d565b61065c565b6040519015158152602001610216565b34801561025b57600080fd5b50610264610676565b604051908152602001610216565b34801561027e57600080fd5b50600254610264565b34801561029357600080fd5b50610264610693565b3480156102a857600080fd5b5061023f6102b73660046116a9565b6106b8565b3480156102c857600080fd5b5060405160098152602001610216565b3480156102e457600080fd5b5061026460095481565b3480156102fa57600080fd5b5061023f61030936600461167d565b6106dc565b34801561031a57600080fd5b5061026460c881565b34801561032f57600080fd5b50610264600a81565b34801561034457600080fd5b5061026460b481565b34801561035957600080fd5b506101f26103683660046116ea565b6106fe565b34801561037957600080fd5b5060075461023f9060ff1681565b34801561039357600080fd5b506102646103a23660046116ea565b610707565b6101f261076b565b3480156103bb57600080fd5b50610264610a2b565b3480156103d057600080fd5b50610264610b21565b3480156103e557600080fd5b50610264600b5481565b3480156103fb57600080fd5b50610264600c5481565b34801561041157600080fd5b50600e54610425906001600160a01b031681565b6040516001600160a01b039091168152602001610216565b34801561044957600080fd5b50610209610b50565b34801561045e57600080fd5b50610264600d5481565b34801561047457600080fd5b50610264600a5481565b34801561048a57600080fd5b5061023f61049936600461167d565b610b5f565b3480156104aa57600080fd5b5061023f6104b936600461167d565b610bda565b3480156104ca57600080fd5b506102646104d93660046116ea565b610be8565b3480156104ea57600080fd5b506102646104f9366004611707565b610c7f565b34801561050a57600080fd5b5061026460085481565b34801561052057600080fd5b506101f2610caa565b600b544210156105805760405162461bcd60e51b815260206004820152601960248201527f63616e206e6f74206772616e742072657761726473207965740000000000000060448201526064015b60405180910390fd5b61058b60b442611756565b600b5560006103e861059f600a60c8610d10565b6105a830610707565b6105b29190611769565b6105bc9190611796565b90506105c781610d4a565b50565b6060600380546105d9906117aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610605906117aa565b80156106525780601f1061062757610100808354040283529160200191610652565b820191906000526020600020905b81548152906001019060200180831161063557829003601f168201915b5050505050905090565b60003361066a818585610dfe565b60019150505b92915050565b6106826009600a6118c8565b61069090633b9aca00611769565b81565b60006106a16009600a6118c8565b6106a9610a2b565b6106b39190611796565b905090565b6000336106c6858285610f23565b6106d1858585610f9d565b506001949350505050565b60003361066a8185856106ef8383610c7f565b6106f99190611756565b610dfe565b6105c7816110af565b6000306001600160a01b0383160361073f57600a546001600160a01b03831660009081526020819052604090205461067091906118d7565b61074882610be8565b6001600160a01b0383166000908152602081905260409020546106709190611756565b6005805460ff191660011790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163c45a01559160048083019260209291908290030181865afa1580156107c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ec91906118ea565b6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561084d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061087191906118ea565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156108be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e291906118ea565b600580546001600160a01b039290921661010002610100600160a81b031990921691909117905561092c306109196009600a6118c8565b61092790633b9aca00611769565b61119b565b61094d30737a250d5630b4cf539739df2c5dacb4c659f2488d600019610dfe565b737a250d5630b4cf539739df2c5dacb4c659f2488d63f305d719343060026109776009600a6118c8565b61098590633b9aca00611769565b61098f9190611796565b6040516001600160e01b031960e086901b1681526001600160a01b039092166004830152602482015260006044820181905260648201523360848201524260a482015260c40160606040518083038185885af11580156109f3573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a189190611907565b505042600655506005805460ff19169055565b60055460009061010090046001600160a01b0316610a5d57610a4f6009600a6118c8565b6106b390633b9aca00611769565b6000620186a0600560065442610a7391906118d7565b610a7f6009600a6118c8565b610a8d90633b9aca00611769565b610a979190611769565b610aa19190611769565b610aab9190611796565b6103e8610aba6009600a6118c8565b610ac890633b9aca00611769565b610ad29190611796565b610adc9190611756565b9050610aea6009600a6118c8565b610af890633b9aca00611769565b811115610b1c57610b0b6009600a6118c8565b610b1990633b9aca00611769565b90505b919050565b6000610b2c60025490565b610b386009600a6118c8565b610b4690633b9aca00611769565b6106b391906118d7565b6060600480546105d9906117aa565b60003381610b6d8286610c7f565b905083811015610bcd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610577565b6106d18286868403610dfe565b60003361066a818585610f9d565b6000600d54600003610bfc57506000919050565b610c0582611241565b610c1157506000919050565b600854600003610c2357506000919050565b6008546001600160a01b03831660009081526010602052604090205403610c4c57506000919050565b600d546001600160a01b038316600090815260208190526040902054600954610c759190611769565b6106709190611796565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600e546001600160a01b03163314610cf15760405162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b6044820152606401610577565b600e80546001600160a01b03191690556007805460ff19166001179055565b6000610d1c83836118d7565b610d27906001611756565b610d2f611288565b610d399190611935565b610d439084611756565b9392505050565b60075460ff16610d915760405162461bcd60e51b815260206004820152601260248201527118d85b881b9bdd081c995dd85c99081e595d60721b6044820152606401610577565b80600a6000828254610da39190611756565b9091555050600a54600955600c54600d5560088054600090610dc490611949565b909155506040518181527fe1531f913ce563c965b906a082914158a5a59b6e2bcdd4475556a38efee21da19060200160405180910390a150565b6001600160a01b038316610e605760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610577565b6001600160a01b038216610ec15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610577565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610f2f8484610c7f565b90506000198114610f975781811015610f8a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610577565b610f978484848403610dfe565b50505050565b610fa6836110af565b610faf826110af565b60055460ff1615610fca57610fc58383836112b5565b505050565b6001600160a01b03821661105a576001600160a01b0383166000908152602081905260409020548111156110105760405162461bcd60e51b815260040161057790611962565b6001600160a01b0383811660008181526020818152604091829020805486900390556002805486900390559051848152928516926000805160206119a98339815191529101610f16565b6005546001600160a01b0361010090910481169084160361107f57610fc582826113a7565b6005546001600160a01b036101009091048116908316036110a457610fc5838261148c565b610fc58383836112b5565b60006110ba82610be8565b6008546001600160a01b0384166000908152601060205260408120919091559091508190036110e7575050565b80600a60008282546110f991906118d7565b9091555050306000908152602081905260408120805483929061111d9084906118d7565b90915550506001600160a01b0382166000908152602081905260408120805483929061114a908490611756565b9250508190555080600c60008282546111639190611756565b90915550506040518181526001600160a01b0383169030906000805160206119a9833981519152906020015b60405180910390a35050565b6001600160a01b0382166111f15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610577565b80600260008282546112039190611756565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481526000805160206119a9833981519152910161118f565b60006001600160a01b0382161580159061126e57506005546001600160a01b038381166101009092041614155b801561067057506001600160a01b03821630141592915050565b600f8054600091439142918461129d83611949565b919050556112ab9190611769565b6106b39190611769565b6001600160a01b0383166113195760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610577565b6001600160a01b038316600090815260208190526040902054818110156113525760405162461bcd60e51b815260040161057790611962565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290926000805160206119a9833981519152910160405180910390a350505050565b6113af610a2b565b8111156113fe5760405162461bcd60e51b815260206004820152601760248201527f6d6178696d756d2062757920636f756e74206c696d69740000000000000000006044820152606401610577565b600061271061140e836019611769565b6114189190611796565b6005549091506114369061010090046001600160a01b031682611502565b600061144282846118d7565b6005549091506114619061010090046001600160a01b031685836112b5565b61146a84611241565b15610f975780600c60008282546114819190611756565b909155505050505050565b600061271061149c836019611769565b6114a69190611796565b90506114b28382611502565b6005546114d890849061010090046001600160a01b03166114d384866118d7565b6112b5565b6114e183611241565b15610fc55781600c60008282546114f891906118d7565b9091555050505050565b6001600160a01b0382166115625760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610577565b6001600160a01b038216600090815260208190526040902054818110156115d65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610577565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192916000805160206119a98339815191529101610f16565b600060208083528351808285015260005b818110156116475785810183015185820160400152820161162b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146105c757600080fd5b6000806040838503121561169057600080fd5b823561169b81611668565b946020939093013593505050565b6000806000606084860312156116be57600080fd5b83356116c981611668565b925060208401356116d981611668565b929592945050506040919091013590565b6000602082840312156116fc57600080fd5b8135610d4381611668565b6000806040838503121561171a57600080fd5b823561172581611668565b9150602083013561173581611668565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561067057610670611740565b808202811582820484141761067057610670611740565b634e487b7160e01b600052601260045260246000fd5b6000826117a5576117a5611780565b500490565b600181811c908216806117be57607f821691505b6020821081036117de57634e487b7160e01b600052602260045260246000fd5b50919050565b600181815b8085111561181f57816000190482111561180557611805611740565b8085161561181257918102915b93841c93908002906117e9565b509250929050565b60008261183657506001610670565b8161184357506000610670565b816001811461185957600281146118635761187f565b6001915050610670565b60ff84111561187457611874611740565b50506001821b610670565b5060208310610133831016604e8410600b84101617156118a2575081810a610670565b6118ac83836117e4565b80600019048211156118c0576118c0611740565b029392505050565b6000610d4360ff841683611827565b8181038181111561067057610670611740565b6000602082840312156118fc57600080fd5b8151610d4381611668565b60008060006060848603121561191c57600080fd5b8351925060208401519150604084015190509250925092565b60008261194457611944611780565b500690565b60006001820161195b5761195b611740565b5060010190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b60608201526080019056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212201cb9f2e83f92ef874faab5eaa031b35cbc424dcb0b1f61a7b1c0b60021b374ec64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806370a08231116101025780639ce0bcde11610095578063c00007b011610064578063c00007b0146104be578063dd62ed3e146104de578063e5a30a7e146104fe578063e7b743e51461051457600080fd5b80639ce0bcde146104525780639ec5a89414610468578063a457c2d71461047e578063a9059cbb1461049e57600080fd5b80637f68e195116100d15780637f68e195146103d957806389135372146103ef5780638da5cb5b1461040557806395d89b411461043d57600080fd5b806370a082311461038757806370bbdf64146103a757806370db69d6146103af57806373f42561146103c457600080fd5b8063313ce5671161017a5780634b673c4b116101495780634b673c4b146103235780635a56098414610338578063632447c91461034d57806369d14dc71461036d57600080fd5b8063313ce567146102bc57806339361e3c146102d857806339509351146102ee5780634964cc351461030e57600080fd5b806313a4486c116101b657806313a4486c1461024f57806318160ddd1461027257806322194e6a1461028757806323b872dd1461029c57600080fd5b80630281d3d2146101dd57806306fdde03146101f4578063095ea7b31461021f575b600080fd5b3480156101e957600080fd5b506101f2610529565b005b34801561020057600080fd5b506102096105ca565b604051610216919061161a565b60405180910390f35b34801561022b57600080fd5b5061023f61023a36600461167d565b61065c565b6040519015158152602001610216565b34801561025b57600080fd5b50610264610676565b604051908152602001610216565b34801561027e57600080fd5b50600254610264565b34801561029357600080fd5b50610264610693565b3480156102a857600080fd5b5061023f6102b73660046116a9565b6106b8565b3480156102c857600080fd5b5060405160098152602001610216565b3480156102e457600080fd5b5061026460095481565b3480156102fa57600080fd5b5061023f61030936600461167d565b6106dc565b34801561031a57600080fd5b5061026460c881565b34801561032f57600080fd5b50610264600a81565b34801561034457600080fd5b5061026460b481565b34801561035957600080fd5b506101f26103683660046116ea565b6106fe565b34801561037957600080fd5b5060075461023f9060ff1681565b34801561039357600080fd5b506102646103a23660046116ea565b610707565b6101f261076b565b3480156103bb57600080fd5b50610264610a2b565b3480156103d057600080fd5b50610264610b21565b3480156103e557600080fd5b50610264600b5481565b3480156103fb57600080fd5b50610264600c5481565b34801561041157600080fd5b50600e54610425906001600160a01b031681565b6040516001600160a01b039091168152602001610216565b34801561044957600080fd5b50610209610b50565b34801561045e57600080fd5b50610264600d5481565b34801561047457600080fd5b50610264600a5481565b34801561048a57600080fd5b5061023f61049936600461167d565b610b5f565b3480156104aa57600080fd5b5061023f6104b936600461167d565b610bda565b3480156104ca57600080fd5b506102646104d93660046116ea565b610be8565b3480156104ea57600080fd5b506102646104f9366004611707565b610c7f565b34801561050a57600080fd5b5061026460085481565b34801561052057600080fd5b506101f2610caa565b600b544210156105805760405162461bcd60e51b815260206004820152601960248201527f63616e206e6f74206772616e742072657761726473207965740000000000000060448201526064015b60405180910390fd5b61058b60b442611756565b600b5560006103e861059f600a60c8610d10565b6105a830610707565b6105b29190611769565b6105bc9190611796565b90506105c781610d4a565b50565b6060600380546105d9906117aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610605906117aa565b80156106525780601f1061062757610100808354040283529160200191610652565b820191906000526020600020905b81548152906001019060200180831161063557829003601f168201915b5050505050905090565b60003361066a818585610dfe565b60019150505b92915050565b6106826009600a6118c8565b61069090633b9aca00611769565b81565b60006106a16009600a6118c8565b6106a9610a2b565b6106b39190611796565b905090565b6000336106c6858285610f23565b6106d1858585610f9d565b506001949350505050565b60003361066a8185856106ef8383610c7f565b6106f99190611756565b610dfe565b6105c7816110af565b6000306001600160a01b0383160361073f57600a546001600160a01b03831660009081526020819052604090205461067091906118d7565b61074882610be8565b6001600160a01b0383166000908152602081905260409020546106709190611756565b6005805460ff191660011790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d9163c45a01559160048083019260209291908290030181865afa1580156107c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ec91906118ea565b6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561084d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061087191906118ea565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156108be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e291906118ea565b600580546001600160a01b039290921661010002610100600160a81b031990921691909117905561092c306109196009600a6118c8565b61092790633b9aca00611769565b61119b565b61094d30737a250d5630b4cf539739df2c5dacb4c659f2488d600019610dfe565b737a250d5630b4cf539739df2c5dacb4c659f2488d63f305d719343060026109776009600a6118c8565b61098590633b9aca00611769565b61098f9190611796565b6040516001600160e01b031960e086901b1681526001600160a01b039092166004830152602482015260006044820181905260648201523360848201524260a482015260c40160606040518083038185885af11580156109f3573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a189190611907565b505042600655506005805460ff19169055565b60055460009061010090046001600160a01b0316610a5d57610a4f6009600a6118c8565b6106b390633b9aca00611769565b6000620186a0600560065442610a7391906118d7565b610a7f6009600a6118c8565b610a8d90633b9aca00611769565b610a979190611769565b610aa19190611769565b610aab9190611796565b6103e8610aba6009600a6118c8565b610ac890633b9aca00611769565b610ad29190611796565b610adc9190611756565b9050610aea6009600a6118c8565b610af890633b9aca00611769565b811115610b1c57610b0b6009600a6118c8565b610b1990633b9aca00611769565b90505b919050565b6000610b2c60025490565b610b386009600a6118c8565b610b4690633b9aca00611769565b6106b391906118d7565b6060600480546105d9906117aa565b60003381610b6d8286610c7f565b905083811015610bcd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610577565b6106d18286868403610dfe565b60003361066a818585610f9d565b6000600d54600003610bfc57506000919050565b610c0582611241565b610c1157506000919050565b600854600003610c2357506000919050565b6008546001600160a01b03831660009081526010602052604090205403610c4c57506000919050565b600d546001600160a01b038316600090815260208190526040902054600954610c759190611769565b6106709190611796565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600e546001600160a01b03163314610cf15760405162461bcd60e51b815260206004820152600a60248201526937b7363c9037bbb732b960b11b6044820152606401610577565b600e80546001600160a01b03191690556007805460ff19166001179055565b6000610d1c83836118d7565b610d27906001611756565b610d2f611288565b610d399190611935565b610d439084611756565b9392505050565b60075460ff16610d915760405162461bcd60e51b815260206004820152601260248201527118d85b881b9bdd081c995dd85c99081e595d60721b6044820152606401610577565b80600a6000828254610da39190611756565b9091555050600a54600955600c54600d5560088054600090610dc490611949565b909155506040518181527fe1531f913ce563c965b906a082914158a5a59b6e2bcdd4475556a38efee21da19060200160405180910390a150565b6001600160a01b038316610e605760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610577565b6001600160a01b038216610ec15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610577565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610f2f8484610c7f565b90506000198114610f975781811015610f8a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610577565b610f978484848403610dfe565b50505050565b610fa6836110af565b610faf826110af565b60055460ff1615610fca57610fc58383836112b5565b505050565b6001600160a01b03821661105a576001600160a01b0383166000908152602081905260409020548111156110105760405162461bcd60e51b815260040161057790611962565b6001600160a01b0383811660008181526020818152604091829020805486900390556002805486900390559051848152928516926000805160206119a98339815191529101610f16565b6005546001600160a01b0361010090910481169084160361107f57610fc582826113a7565b6005546001600160a01b036101009091048116908316036110a457610fc5838261148c565b610fc58383836112b5565b60006110ba82610be8565b6008546001600160a01b0384166000908152601060205260408120919091559091508190036110e7575050565b80600a60008282546110f991906118d7565b9091555050306000908152602081905260408120805483929061111d9084906118d7565b90915550506001600160a01b0382166000908152602081905260408120805483929061114a908490611756565b9250508190555080600c60008282546111639190611756565b90915550506040518181526001600160a01b0383169030906000805160206119a9833981519152906020015b60405180910390a35050565b6001600160a01b0382166111f15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610577565b80600260008282546112039190611756565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481526000805160206119a9833981519152910161118f565b60006001600160a01b0382161580159061126e57506005546001600160a01b038381166101009092041614155b801561067057506001600160a01b03821630141592915050565b600f8054600091439142918461129d83611949565b919050556112ab9190611769565b6106b39190611769565b6001600160a01b0383166113195760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610577565b6001600160a01b038316600090815260208190526040902054818110156113525760405162461bcd60e51b815260040161057790611962565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290926000805160206119a9833981519152910160405180910390a350505050565b6113af610a2b565b8111156113fe5760405162461bcd60e51b815260206004820152601760248201527f6d6178696d756d2062757920636f756e74206c696d69740000000000000000006044820152606401610577565b600061271061140e836019611769565b6114189190611796565b6005549091506114369061010090046001600160a01b031682611502565b600061144282846118d7565b6005549091506114619061010090046001600160a01b031685836112b5565b61146a84611241565b15610f975780600c60008282546114819190611756565b909155505050505050565b600061271061149c836019611769565b6114a69190611796565b90506114b28382611502565b6005546114d890849061010090046001600160a01b03166114d384866118d7565b6112b5565b6114e183611241565b15610fc55781600c60008282546114f891906118d7565b9091555050505050565b6001600160a01b0382166115625760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610577565b6001600160a01b038216600090815260208190526040902054818110156115d65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610577565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192916000805160206119a98339815191529101610f16565b600060208083528351808285015260005b818110156116475785810183015185820160400152820161162b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146105c757600080fd5b6000806040838503121561169057600080fd5b823561169b81611668565b946020939093013593505050565b6000806000606084860312156116be57600080fd5b83356116c981611668565b925060208401356116d981611668565b929592945050506040919091013590565b6000602082840312156116fc57600080fd5b8135610d4381611668565b6000806040838503121561171a57600080fd5b823561172581611668565b9150602083013561173581611668565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561067057610670611740565b808202811582820484141761067057610670611740565b634e487b7160e01b600052601260045260246000fd5b6000826117a5576117a5611780565b500490565b600181811c908216806117be57607f821691505b6020821081036117de57634e487b7160e01b600052602260045260246000fd5b50919050565b600181815b8085111561181f57816000190482111561180557611805611740565b8085161561181257918102915b93841c93908002906117e9565b509250929050565b60008261183657506001610670565b8161184357506000610670565b816001811461185957600281146118635761187f565b6001915050610670565b60ff84111561187457611874611740565b50506001821b610670565b5060208310610133831016604e8410600b84101617156118a2575081810a610670565b6118ac83836117e4565b80600019048211156118c0576118c0611740565b029392505050565b6000610d4360ff841683611827565b8181038181111561067057610670611740565b6000602082840312156118fc57600080fd5b8151610d4381611668565b60008060006060848603121561191c57600080fd5b8351925060208401519150604084015190509250925092565b60008261194457611944611780565b500690565b60006001820161195b5761195b611740565b5060010190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b60608201526080019056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212201cb9f2e83f92ef874faab5eaa031b35cbc424dcb0b1f61a7b1c0b60021b374ec64736f6c63430008110033

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.