ETH Price: $3,407.76 (+6.21%)
 

Overview

Max Total Supply

991,524,061.134783686 INU

Holders

134

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
25,000,000 INU

Value
$0.00
0x26ed423c4687f3d65d0037f02500295f5cd04872
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
InuGames

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion
File 1 of 7 : InuGames.sol
// SPDX-License-Identifier: MIT

// ██ ███    ██ ██    ██  ██████   █████  ███    ███ ███████ ███████ 
// ██ ████   ██ ██    ██ ██       ██   ██ ████  ████ ██      ██      
// ██ ██ ██  ██ ██    ██ ██   ███ ███████ ██ ████ ██ █████   ███████ 
// ██ ██  ██ ██ ██    ██ ██    ██ ██   ██ ██  ██  ██ ██           ██ 
// ██ ██   ████  ██████   ██████  ██   ██ ██      ██ ███████ ███████ 
//
// Community-Driven Crypto Games
//
// https://inu.games
// https://t.me/inudotgames
// https://x.com/inudotgames

pragma solidity 0.8.28;

import "./ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

import "./interfaces/IDEXFactory.sol";
import "./interfaces/IDEXRouter.sol";

contract InuGames is ERC20, Ownable {
    mapping (address => bool) public isExcludedFromFee;
    address payable public treasuryAddress;
    uint256 public buyFeePercent;
    uint256 public sellFeePercent;
    uint256 public collectedTaxThreshold;
    address public uniswapV2Pair;
    bool public autoTaxDistributionEnabled = true;
    bool private inInternalSwap;
    bool private _tradingOpen;
    IDEXRouter public uniswapV2Router = IDEXRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    modifier lockTheSwap {
        inInternalSwap = true;
        _;
        inInternalSwap = false;
    }

    constructor(address payable _treasuryAddress, uint256 _feePercent, string memory name, string memory symbol) ERC20(name, symbol) {
        treasuryAddress = _treasuryAddress;
        buyFeePercent = _feePercent;
        sellFeePercent = _feePercent;
        isExcludedFromFee[owner()] = true;
        isExcludedFromFee[address(this)] = true;
        isExcludedFromFee[_treasuryAddress] = true;

        _mint(msg.sender, 1_000_000_000 * 10 ** decimals());
        collectedTaxThreshold = _totalSupply / 4000;
        uniswapV2Pair = IDEXFactory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
    }

    function enableTrading() external onlyOwner {
        require(!_tradingOpen, "Trading is already open");
        _tradingOpen = true;
    }

    function _transfer(address from, address to, uint256 amount) internal override(ERC20) {
        require(from != address(0), "ERC20: transfer from invalid");
        require(amount > 0, "Transfer amount must be greater than zero");
        uint256 taxAmount = 0;
        address _uniswapV2Pair = uniswapV2Pair;
        if (!isExcludedFromFee[from] && !isExcludedFromFee[to]) {
            require(_tradingOpen, "Trading closed");
            bool _isTransfer = from != _uniswapV2Pair && to != _uniswapV2Pair;
            uint256 _feePercent;
            if (!inInternalSwap && !_isTransfer) {
                if (to == _uniswapV2Pair) {
                    _feePercent = sellFeePercent;
                } else {
                    _feePercent = buyFeePercent;
                }
                uint256 _collectedTaxThreshold = collectedTaxThreshold;
                taxAmount = amount * _feePercent / 100;
                uint256 contractBalance = balanceOf(address(this));
                if (from != _uniswapV2Pair && autoTaxDistributionEnabled && contractBalance > _collectedTaxThreshold) {
                    if (contractBalance > _collectedTaxThreshold * 20) contractBalance = _collectedTaxThreshold * 20;
                    _distributeTaxes(contractBalance);
                }
            }
        }

        _balances[from]= _balances[from] - amount;
        _balances[to]= _balances[to] + amount - taxAmount;

        emit Transfer(from, to, amount - taxAmount);

        if (taxAmount > 0) {
          _balances[address(this)]=_balances[address(this)] + taxAmount;
          emit Transfer(from, address(this), taxAmount);
        }
    }

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

    function setAutoTaxDistributionEnabled(bool _enabled) external onlyOwner {
        autoTaxDistributionEnabled = _enabled;
    }

    function setFees(uint256 _buyFeePercent, uint256 _sellFeePercent) external onlyOwner{
        buyFeePercent = _buyFeePercent;
        sellFeePercent = _sellFeePercent;
    }

    function setExcludeFromFee(address _address, bool _excluded) external onlyOwner {
        isExcludedFromFee[_address] = _excluded;
    }

    function setTreasuryAddress(address payable _treasuryAddress) external onlyOwner {
        treasuryAddress = _treasuryAddress;
        isExcludedFromFee[_treasuryAddress] = true;
    }

    function setTaxThreshold(uint256 _newThreshold) external {
        require(msg.sender == treasuryAddress, "NOT_AUTHORIZED");
        collectedTaxThreshold = _newThreshold;
    }

    function distributeTaxes(uint256 amount) external {
        require(msg.sender == treasuryAddress, "NOT_AUTHORIZED");
        _distributeTaxes(amount);
    }

    function _distributeTaxes(uint256 amount) internal { 
        _swapTokensForEth(amount);
        uint256 contractETHBalance = address(this).balance;

        if (contractETHBalance > 0) {
            (bool sent, ) = treasuryAddress.call{value: contractETHBalance}("");
            require(sent, "Failed to send Eth");
        }
    }

    function recoverERC20(IERC20 token) external {
        require(msg.sender == treasuryAddress, "NOT_AUTHORIZED");
        uint256 balance = token.balanceOf(address(this));
        bool sent = token.transfer(msg.sender, balance);
        require(sent, "Failed to send token");
    }

    receive() external payable {}
}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 4 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

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

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

    uint256 internal _totalSupply;

    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 returns (string memory) {
        return _name;
    }

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

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

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

    /**
     * @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 = msg.sender;
        _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 = msg.sender;
        _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 = msg.sender;
        _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 = msg.sender;
        _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 = msg.sender;
        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 {
        //overriden
    }

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

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

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

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

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

File 6 of 7 : IDEXFactory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IDEXFactory {
  function createPair(address tokenA, address tokenB) external returns (address pair);
  function getPair(address tokenA, address tokenB) external view returns (address pair);
}

File 7 of 7 : IDEXRouter.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IDEXRouter {
  function factory() external pure returns (address);

  function WETH() external pure returns (address);

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

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

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

  function swapExactETHForTokensSupportingFeeOnTransferTokens(
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external payable;

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

  function removeLiquidity(
    address tokenA,
    address tokenB,
    uint256 liquidity,
    uint256 amountAMin,
    uint256 amountBMin,
    address to,
    uint256 deadline
  ) external returns (uint256 amountA, uint256 amountB);

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"_treasuryAddress","type":"address"},{"internalType":"uint256","name":"_feePercent","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"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":[],"name":"autoTaxDistributionEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectedTaxThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"distributeTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setAutoTaxDistributionEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"setExcludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFeePercent","type":"uint256"},{"internalType":"uint256","name":"_sellFeePercent","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"setTaxThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_treasuryAddress","type":"address"}],"name":"setTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[],"name":"treasuryAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IDEXRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600b805460ff60a01b1916600160a01b179055600c80546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d17905534801561004957600080fd5b50604051611f14380380611f14833981016040819052610068916104e3565b8181600361007683826105f2565b50600461008382826105f2565b50505061009c6100976102f960201b60201c565b6102fd565b600780546001600160a01b0319166001600160a01b038616179055600883905560098390556001600660006100d96005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600690935281832080548516600190811790915590881683529120805490921617905561015733610139601290565b61014490600a6107af565b61015290633b9aca006107c5565b61034f565b610fa060025461016791906107dc565b600a55600c546040805163c45a015560e01b815290516001600160a01b039092169163c45a0155916004808201926020929091908290030181865afa1580156101b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101d891906107fe565b6001600160a01b031663c9c6539630600c60009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561023a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061025e91906107fe565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156102ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102cf91906107fe565b600b80546001600160a01b0319166001600160a01b03929092169190911790555061082e92505050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166103a95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546103bb919061081b565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038116811461042757600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261045157600080fd5b81516001600160401b0381111561046a5761046a61042a565b604051601f8201601f19908116603f011681016001600160401b03811182821017156104985761049861042a565b6040528181528382016020018510156104b057600080fd5b60005b828110156104cf576020818601810151838301820152016104b3565b506000918101602001919091529392505050565b600080600080608085870312156104f957600080fd5b845161050481610412565b6020860151604087015191955093506001600160401b0381111561052757600080fd5b61053387828801610440565b606087015190935090506001600160401b0381111561055157600080fd5b61055d87828801610440565b91505092959194509250565b600181811c9082168061057d57607f821691505b60208210810361059d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156105ed57806000526020600020601f840160051c810160208510156105ca5750805b601f840160051c820191505b818110156105ea57600081556001016105d6565b50505b505050565b81516001600160401b0381111561060b5761060b61042a565b61061f816106198454610569565b846105a3565b6020601f821160018114610653576000831561063b5750848201515b600019600385901b1c1916600184901b1784556105ea565b600084815260208120601f198516915b828110156106835787850151825560209485019460019092019101610663565b50848210156106a15786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6001815b6001841115610701578085048111156106e5576106e56106b0565b60018416156106f357908102905b60019390931c9280026106ca565b935093915050565b600082610718575060016107a9565b81610725575060006107a9565b816001811461073b576002811461074557610761565b60019150506107a9565b60ff841115610756576107566106b0565b50506001821b6107a9565b5060208310610133831016604e8410600b8410161715610784575081810a6107a9565b61079160001984846106c6565b80600019048211156107a5576107a56106b0565b0290505b92915050565b60006107be60ff841683610709565b9392505050565b80820281158282048414176107a9576107a96106b0565b6000826107f957634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561081057600080fd5b81516107be81610412565b808201808211156107a9576107a96106b0565b6116d78061083d6000396000f3fe6080604052600436106101d15760003560e01c80638a8c523c116100f7578063c5f956af11610095578063de03e5fe11610064578063de03e5fe14610540578063e0d30d9b14610561578063f2fde38b14610577578063faad1b121461059757600080fd5b8063c5f956af146104d4578063cb88a449146104f4578063cc3fdd4c1461050a578063dd62ed3e1461052057600080fd5b80639e8c708e116100d15780639e8c708e14610454578063a457c2d714610474578063a9059cbb14610494578063af9549e0146104b457600080fd5b80638a8c523c1461040c5780638da5cb5b1461042157806395d89b411461043f57600080fd5b806323f7ee191161016f5780635342acb41161013e5780635342acb4146103715780636605bfda146103a157806370a08231146103c1578063715018a6146103f757600080fd5b806323f7ee19146102f5578063313ce56714610315578063395093511461033157806349bd5a5e1461035157600080fd5b80630b78f9c0116101ab5780630b78f9c01461025a5780631694505e1461027a57806318160ddd146102b257806323b872dd146102d557600080fd5b806306fdde03146101dd57806307a212be14610208578063095ea7b31461022a57600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f26105b7565b6040516101ff919061132e565b60405180910390f35b34801561021457600080fd5b5061022861022336600461137c565b610649565b005b34801561023657600080fd5b5061024a6102453660046113aa565b610681565b60405190151581526020016101ff565b34801561026657600080fd5b506102286102753660046113d6565b61069b565b34801561028657600080fd5b50600c5461029a906001600160a01b031681565b6040516001600160a01b0390911681526020016101ff565b3480156102be57600080fd5b506102c76106ae565b6040519081526020016101ff565b3480156102e157600080fd5b5061024a6102f03660046113f8565b6106ec565b34801561030157600080fd5b5061022861031036600461137c565b610710565b34801561032157600080fd5b50604051601281526020016101ff565b34801561033d57600080fd5b5061024a61034c3660046113aa565b610746565b34801561035d57600080fd5b50600b5461029a906001600160a01b031681565b34801561037d57600080fd5b5061024a61038c366004611439565b60066020526000908152604090205460ff1681565b3480156103ad57600080fd5b506102286103bc366004611439565b610768565b3480156103cd57600080fd5b506102c76103dc366004611439565b6001600160a01b031660009081526020819052604090205490565b34801561040357600080fd5b506102286107aa565b34801561041857600080fd5b506102286107be565b34801561042d57600080fd5b506005546001600160a01b031661029a565b34801561044b57600080fd5b506101f2610835565b34801561046057600080fd5b5061022861046f366004611439565b610844565b34801561048057600080fd5b5061024a61048f3660046113aa565b61099b565b3480156104a057600080fd5b5061024a6104af3660046113aa565b610a16565b3480156104c057600080fd5b506102286104cf36600461146b565b610a24565b3480156104e057600080fd5b5060075461029a906001600160a01b031681565b34801561050057600080fd5b506102c7600a5481565b34801561051657600080fd5b506102c760085481565b34801561052c57600080fd5b506102c761053b3660046114a4565b610a57565b34801561054c57600080fd5b50600b5461024a90600160a01b900460ff1681565b34801561056d57600080fd5b506102c760095481565b34801561058357600080fd5b50610228610592366004611439565b610a82565b3480156105a357600080fd5b506102286105b23660046114d2565b610af8565b6060600380546105c6906114ef565b80601f01602080910402602001604051908101604052809291908181526020018280546105f2906114ef565b801561063f5780601f106106145761010080835404028352916020019161063f565b820191906000526020600020905b81548152906001019060200180831161062257829003601f168201915b5050505050905090565b6007546001600160a01b0316331461067c5760405162461bcd60e51b815260040161067390611529565b60405180910390fd5b600a55565b60003361068f818585610b1e565b60019150505b92915050565b6106a3610c42565b600891909155600955565b600080805260208190527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5546002546106e79190611567565b905090565b6000336106fa858285610c9c565b610705858585610d16565b506001949350505050565b6007546001600160a01b0316331461073a5760405162461bcd60e51b815260040161067390611529565b610743816110b6565b50565b60003361068f8185856107598383610a57565b610763919061157a565b610b1e565b610770610c42565b600780546001600160a01b039092166001600160a01b0319909216821790556000908152600660205260409020805460ff19166001179055565b6107b2610c42565b6107bc6000611162565b565b6107c6610c42565b600b54600160b01b900460ff16156108205760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610673565b600b805460ff60b01b1916600160b01b179055565b6060600480546105c6906114ef565b6007546001600160a01b0316331461086e5760405162461bcd60e51b815260040161067390611529565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156108b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d9919061158d565b60405163a9059cbb60e01b8152336004820152602481018290529091506000906001600160a01b0384169063a9059cbb906044016020604051808303816000875af115801561092c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095091906115a6565b9050806109965760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b732103a37b5b2b760611b6044820152606401610673565b505050565b600033816109a98286610a57565b905083811015610a095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610673565b6107058286868403610b1e565b60003361068f818585610d16565b610a2c610c42565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a8a610c42565b6001600160a01b038116610aef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610673565b61074381611162565b610b00610c42565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b6001600160a01b038316610b805760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610673565b6001600160a01b038216610be15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610673565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146107bc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610673565b6000610ca88484610a57565b90506000198114610d105781811015610d035760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610673565b610d108484848403610b1e565b50505050565b6001600160a01b038316610d6c5760405162461bcd60e51b815260206004820152601c60248201527f45524332303a207472616e736665722066726f6d20696e76616c6964000000006044820152606401610673565b60008111610dce5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610673565b600b546001600160a01b038481166000908152600660205260408120549092919091169060ff16158015610e1b57506001600160a01b03841660009081526006602052604090205460ff16155b15610f8157600b54600160b01b900460ff16610e6a5760405162461bcd60e51b815260206004820152600e60248201526d151c98591a5b99c818db1bdcd95960921b6044820152606401610673565b6000816001600160a01b0316866001600160a01b031614158015610ea05750816001600160a01b0316856001600160a01b031614155b600b54909150600090600160a81b900460ff16158015610ebe575081155b15610f7e57826001600160a01b0316866001600160a01b031603610ee55750600954610eea565b506008545b600a546064610ef983886115c3565b610f0391906115da565b3060009081526020819052604081205491965050846001600160a01b0316896001600160a01b031614158015610f425750600b54600160a01b900460ff165b8015610f4d57508181115b15610f7b57610f5d8260146115c3565b811115610f7257610f6f8260146115c3565b90505b610f7b816110b6565b50505b50505b6001600160a01b038516600090815260208190526040902054610fa5908490611567565b6001600160a01b0380871660009081526020819052604080822093909355908616815220548290610fd790859061157a565b610fe19190611567565b6001600160a01b0380861660008181526020819052604090209290925586167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61102b8587611567565b60405190815260200160405180910390a381156110af573060009081526020819052604090205461105d90839061157a565b3060008181526020818152604091829020939093555184815290916001600160a01b038816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b5050505050565b6110bf816111b4565b47801561115e576007546040516000916001600160a01b03169083908381818185875af1925050503d8060008114611113576040519150601f19603f3d011682016040523d82523d6000602084013e611118565b606091505b50509050806109965760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408ae8d60731b6044820152606401610673565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b805460ff60a81b1916600160a81b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106111fc576111fc6115fc565b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611255573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112799190611612565b8160018151811061128c5761128c6115fc565b6001600160a01b039283166020918202929092010152600c546112b29130911684610b1e565b600c5460405163791ac94760e01b81526001600160a01b039091169063791ac947906112eb90859060009086903090429060040161162f565b600060405180830381600087803b15801561130557600080fd5b505af1158015611319573d6000803e3d6000fd5b5050600b805460ff60a81b1916905550505050565b602081526000825180602084015260005b8181101561135c576020818601810151604086840101520161133f565b506000604082850101526040601f19601f83011684010191505092915050565b60006020828403121561138e57600080fd5b5035919050565b6001600160a01b038116811461074357600080fd5b600080604083850312156113bd57600080fd5b82356113c881611395565b946020939093013593505050565b600080604083850312156113e957600080fd5b50508035926020909101359150565b60008060006060848603121561140d57600080fd5b833561141881611395565b9250602084013561142881611395565b929592945050506040919091013590565b60006020828403121561144b57600080fd5b813561145681611395565b9392505050565b801515811461074357600080fd5b6000806040838503121561147e57600080fd5b823561148981611395565b915060208301356114998161145d565b809150509250929050565b600080604083850312156114b757600080fd5b82356114c281611395565b9150602083013561149981611395565b6000602082840312156114e457600080fd5b81356114568161145d565b600181811c9082168061150357607f821691505b60208210810361152357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600e908201526d1393d517d055551213d49256915160921b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561069557610695611551565b8082018082111561069557610695611551565b60006020828403121561159f57600080fd5b5051919050565b6000602082840312156115b857600080fd5b81516114568161145d565b808202811582820484141761069557610695611551565b6000826115f757634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561162457600080fd5b815161145681611395565b600060a0820187835286602084015260a0604084015280865180835260c08501915060208801925060005b818110156116815783516001600160a01b031683526020938401939092019160010161165a565b50506001600160a01b03959095166060840152505060800152939250505056fea2646970667358221220dff48b3c61161707708807fe6cd3a6252fe56d4368262cccc8e4decc8dcfee4064736f6c634300081c003300000000000000000000000086d7075099c09d67ae6de1674cf26462cfafc9610000000000000000000000000000000000000000000000000000000000000023000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000008494e5547414d45530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003494e550000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d15760003560e01c80638a8c523c116100f7578063c5f956af11610095578063de03e5fe11610064578063de03e5fe14610540578063e0d30d9b14610561578063f2fde38b14610577578063faad1b121461059757600080fd5b8063c5f956af146104d4578063cb88a449146104f4578063cc3fdd4c1461050a578063dd62ed3e1461052057600080fd5b80639e8c708e116100d15780639e8c708e14610454578063a457c2d714610474578063a9059cbb14610494578063af9549e0146104b457600080fd5b80638a8c523c1461040c5780638da5cb5b1461042157806395d89b411461043f57600080fd5b806323f7ee191161016f5780635342acb41161013e5780635342acb4146103715780636605bfda146103a157806370a08231146103c1578063715018a6146103f757600080fd5b806323f7ee19146102f5578063313ce56714610315578063395093511461033157806349bd5a5e1461035157600080fd5b80630b78f9c0116101ab5780630b78f9c01461025a5780631694505e1461027a57806318160ddd146102b257806323b872dd146102d557600080fd5b806306fdde03146101dd57806307a212be14610208578063095ea7b31461022a57600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f26105b7565b6040516101ff919061132e565b60405180910390f35b34801561021457600080fd5b5061022861022336600461137c565b610649565b005b34801561023657600080fd5b5061024a6102453660046113aa565b610681565b60405190151581526020016101ff565b34801561026657600080fd5b506102286102753660046113d6565b61069b565b34801561028657600080fd5b50600c5461029a906001600160a01b031681565b6040516001600160a01b0390911681526020016101ff565b3480156102be57600080fd5b506102c76106ae565b6040519081526020016101ff565b3480156102e157600080fd5b5061024a6102f03660046113f8565b6106ec565b34801561030157600080fd5b5061022861031036600461137c565b610710565b34801561032157600080fd5b50604051601281526020016101ff565b34801561033d57600080fd5b5061024a61034c3660046113aa565b610746565b34801561035d57600080fd5b50600b5461029a906001600160a01b031681565b34801561037d57600080fd5b5061024a61038c366004611439565b60066020526000908152604090205460ff1681565b3480156103ad57600080fd5b506102286103bc366004611439565b610768565b3480156103cd57600080fd5b506102c76103dc366004611439565b6001600160a01b031660009081526020819052604090205490565b34801561040357600080fd5b506102286107aa565b34801561041857600080fd5b506102286107be565b34801561042d57600080fd5b506005546001600160a01b031661029a565b34801561044b57600080fd5b506101f2610835565b34801561046057600080fd5b5061022861046f366004611439565b610844565b34801561048057600080fd5b5061024a61048f3660046113aa565b61099b565b3480156104a057600080fd5b5061024a6104af3660046113aa565b610a16565b3480156104c057600080fd5b506102286104cf36600461146b565b610a24565b3480156104e057600080fd5b5060075461029a906001600160a01b031681565b34801561050057600080fd5b506102c7600a5481565b34801561051657600080fd5b506102c760085481565b34801561052c57600080fd5b506102c761053b3660046114a4565b610a57565b34801561054c57600080fd5b50600b5461024a90600160a01b900460ff1681565b34801561056d57600080fd5b506102c760095481565b34801561058357600080fd5b50610228610592366004611439565b610a82565b3480156105a357600080fd5b506102286105b23660046114d2565b610af8565b6060600380546105c6906114ef565b80601f01602080910402602001604051908101604052809291908181526020018280546105f2906114ef565b801561063f5780601f106106145761010080835404028352916020019161063f565b820191906000526020600020905b81548152906001019060200180831161062257829003601f168201915b5050505050905090565b6007546001600160a01b0316331461067c5760405162461bcd60e51b815260040161067390611529565b60405180910390fd5b600a55565b60003361068f818585610b1e565b60019150505b92915050565b6106a3610c42565b600891909155600955565b600080805260208190527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5546002546106e79190611567565b905090565b6000336106fa858285610c9c565b610705858585610d16565b506001949350505050565b6007546001600160a01b0316331461073a5760405162461bcd60e51b815260040161067390611529565b610743816110b6565b50565b60003361068f8185856107598383610a57565b610763919061157a565b610b1e565b610770610c42565b600780546001600160a01b039092166001600160a01b0319909216821790556000908152600660205260409020805460ff19166001179055565b6107b2610c42565b6107bc6000611162565b565b6107c6610c42565b600b54600160b01b900460ff16156108205760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610673565b600b805460ff60b01b1916600160b01b179055565b6060600480546105c6906114ef565b6007546001600160a01b0316331461086e5760405162461bcd60e51b815260040161067390611529565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156108b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108d9919061158d565b60405163a9059cbb60e01b8152336004820152602481018290529091506000906001600160a01b0384169063a9059cbb906044016020604051808303816000875af115801561092c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095091906115a6565b9050806109965760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b732103a37b5b2b760611b6044820152606401610673565b505050565b600033816109a98286610a57565b905083811015610a095760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610673565b6107058286868403610b1e565b60003361068f818585610d16565b610a2c610c42565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610a8a610c42565b6001600160a01b038116610aef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610673565b61074381611162565b610b00610c42565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b6001600160a01b038316610b805760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610673565b6001600160a01b038216610be15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610673565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146107bc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610673565b6000610ca88484610a57565b90506000198114610d105781811015610d035760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610673565b610d108484848403610b1e565b50505050565b6001600160a01b038316610d6c5760405162461bcd60e51b815260206004820152601c60248201527f45524332303a207472616e736665722066726f6d20696e76616c6964000000006044820152606401610673565b60008111610dce5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610673565b600b546001600160a01b038481166000908152600660205260408120549092919091169060ff16158015610e1b57506001600160a01b03841660009081526006602052604090205460ff16155b15610f8157600b54600160b01b900460ff16610e6a5760405162461bcd60e51b815260206004820152600e60248201526d151c98591a5b99c818db1bdcd95960921b6044820152606401610673565b6000816001600160a01b0316866001600160a01b031614158015610ea05750816001600160a01b0316856001600160a01b031614155b600b54909150600090600160a81b900460ff16158015610ebe575081155b15610f7e57826001600160a01b0316866001600160a01b031603610ee55750600954610eea565b506008545b600a546064610ef983886115c3565b610f0391906115da565b3060009081526020819052604081205491965050846001600160a01b0316896001600160a01b031614158015610f425750600b54600160a01b900460ff165b8015610f4d57508181115b15610f7b57610f5d8260146115c3565b811115610f7257610f6f8260146115c3565b90505b610f7b816110b6565b50505b50505b6001600160a01b038516600090815260208190526040902054610fa5908490611567565b6001600160a01b0380871660009081526020819052604080822093909355908616815220548290610fd790859061157a565b610fe19190611567565b6001600160a01b0380861660008181526020819052604090209290925586167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61102b8587611567565b60405190815260200160405180910390a381156110af573060009081526020819052604090205461105d90839061157a565b3060008181526020818152604091829020939093555184815290916001600160a01b038816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b5050505050565b6110bf816111b4565b47801561115e576007546040516000916001600160a01b03169083908381818185875af1925050503d8060008114611113576040519150601f19603f3d011682016040523d82523d6000602084013e611118565b606091505b50509050806109965760405162461bcd60e51b815260206004820152601260248201527108cc2d2d8cac840e8de40e6cadcc8408ae8d60731b6044820152606401610673565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b805460ff60a81b1916600160a81b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106111fc576111fc6115fc565b6001600160a01b03928316602091820292909201810191909152600c54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611255573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112799190611612565b8160018151811061128c5761128c6115fc565b6001600160a01b039283166020918202929092010152600c546112b29130911684610b1e565b600c5460405163791ac94760e01b81526001600160a01b039091169063791ac947906112eb90859060009086903090429060040161162f565b600060405180830381600087803b15801561130557600080fd5b505af1158015611319573d6000803e3d6000fd5b5050600b805460ff60a81b1916905550505050565b602081526000825180602084015260005b8181101561135c576020818601810151604086840101520161133f565b506000604082850101526040601f19601f83011684010191505092915050565b60006020828403121561138e57600080fd5b5035919050565b6001600160a01b038116811461074357600080fd5b600080604083850312156113bd57600080fd5b82356113c881611395565b946020939093013593505050565b600080604083850312156113e957600080fd5b50508035926020909101359150565b60008060006060848603121561140d57600080fd5b833561141881611395565b9250602084013561142881611395565b929592945050506040919091013590565b60006020828403121561144b57600080fd5b813561145681611395565b9392505050565b801515811461074357600080fd5b6000806040838503121561147e57600080fd5b823561148981611395565b915060208301356114998161145d565b809150509250929050565b600080604083850312156114b757600080fd5b82356114c281611395565b9150602083013561149981611395565b6000602082840312156114e457600080fd5b81356114568161145d565b600181811c9082168061150357607f821691505b60208210810361152357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600e908201526d1393d517d055551213d49256915160921b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561069557610695611551565b8082018082111561069557610695611551565b60006020828403121561159f57600080fd5b5051919050565b6000602082840312156115b857600080fd5b81516114568161145d565b808202811582820484141761069557610695611551565b6000826115f757634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561162457600080fd5b815161145681611395565b600060a0820187835286602084015260a0604084015280865180835260c08501915060208801925060005b818110156116815783516001600160a01b031683526020938401939092019160010161165a565b50506001600160a01b03959095166060840152505060800152939250505056fea2646970667358221220dff48b3c61161707708807fe6cd3a6252fe56d4368262cccc8e4decc8dcfee4064736f6c634300081c0033

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

00000000000000000000000086d7075099c09d67ae6de1674cf26462cfafc9610000000000000000000000000000000000000000000000000000000000000023000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000008494e5547414d45530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003494e550000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _treasuryAddress (address): 0x86D7075099c09d67Ae6de1674CF26462CfaFC961
Arg [1] : _feePercent (uint256): 35
Arg [2] : name (string): INUGAMES
Arg [3] : symbol (string): INU

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000086d7075099c09d67ae6de1674cf26462cfafc961
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 494e5547414d4553000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 494e550000000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.