ETH Price: $2,919.23 (-7.84%)
Gas: 10 Gwei

Token

OpClouds (OPC)
 

Overview

Max Total Supply

100,000,000 OPC

Holders

533

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
OpClouds

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : OpClouds.sol
/**
 *Submitted for verification at Etherscan.io on 2024-03-10
 */

// SPDX-License-Identifier: MIT

/*

𝕆ℙℂ𝕃𝕆𝕌𝔻𝕊

Website: https://opclouds.tech/
Telegram: https://t.me/opclouds_tech
Twitter: https://twitter.com/opclouds_tech
Whitepaper: https://docs.opclouds.tech/

*/

pragma solidity 0.8.19;

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

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

contract OpClouds is ERC20, Ownable {
  using SafeMath for uint256;

  uint256 private constant TOTAL_SUPPLY = 100_000_000 * (10 ** 18); // Assuming 18 is the decimal
  uint256 private constant MAX_TRANSACTION_PERCENT = 100; // 1%
  uint256 private constant MAX_WALLET_PERCENT = 100; // 1%
  uint256 private constant SWAP_TOKENS_AT_AMOUNT_PERCENT = 50;
  uint256 private constant MAX_SWAPABLE_TOKENS_PERCENT = 100;
  uint256 private constant BUY_FEES = 3_000;
  uint256 private constant SELL_FEES = 3_000;

  // External addresses - should be passed in constructor if possible
  address private constant DEVELOPMENT_WALLET = 0x14ad6BC1482D5Fa35cc980C032BaF0eb29C01B37;
  address private constant TREASURY_WALLET = 0xE2BE3F9bAA5f4f763A66eFde29415399eE9C6F2b;
  address private constant MARKETING_WALLET = 0x773204DD8160BF28d498a38CE95D1Fdb1405d838;

  uint256 private constant TREASURY_RATIO = 400; // 40.0%
  uint256 private constant MARKETING_RATIO = 400; // 40.0%

  IUniswapV2Router02 public immutable uniswapV2Router;
  address public immutable uniswapV2Pair;
  address public router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;

  bool private swapping;

  address private developmentWallet;
  address private marketingWallet;
  address private treasuryWallet;
  uint256 public maxTransaction;
  uint256 public swapTokensAtAmount;
  uint256 public maxWallet;

  bool public limitsInEffect = true;
  bool public tradingActive = false;
  bool public swapEnabled = false;

  uint256 public launchBlockNo;

  uint256 public buyFees;
  uint256 public sellFees;
  uint256 private _maxSwapableTokens;

  uint256 public _preventSwapBefore = 20;
  uint256 public _totalBuys = 0;

  mapping(address => bool) private _isExcludedFromFees;
  mapping(address => bool) public _isExcludedmaxTransaction;
  mapping(address => bool) public automatedMarketMakerPairs;

  constructor() ERC20("OpClouds", "OPC") {
    IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);

    excludeFromMaxTransaction(address(_uniswapV2Router), true);
    uniswapV2Router = _uniswapV2Router;

    uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
    excludeFromMaxTransaction(address(uniswapV2Pair), true);
    _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

    uint256 totalSupply = TOTAL_SUPPLY;

    maxTransaction = (totalSupply * MAX_TRANSACTION_PERCENT) / 10_000;
    maxWallet = (totalSupply * MAX_WALLET_PERCENT) / 10_000;
    swapTokensAtAmount = (totalSupply * SWAP_TOKENS_AT_AMOUNT_PERCENT) / 10_000;
    _maxSwapableTokens = (totalSupply * MAX_SWAPABLE_TOKENS_PERCENT) / 10_000;

    buyFees = BUY_FEES;
    sellFees = SELL_FEES;

    developmentWallet = DEVELOPMENT_WALLET;
    treasuryWallet = TREASURY_WALLET;
    marketingWallet = MARKETING_WALLET;

    // exclude from paying fees or having max transaction amount
    excludeFromFees(owner(), true);
    excludeFromFees(address(this), true);
    excludeFromFees(address(0xdead), true);

    excludeFromMaxTransaction(owner(), true);
    excludeFromMaxTransaction(address(this), true);
    excludeFromMaxTransaction(address(0xdead), true);

    _mint(msg.sender, totalSupply);
  }

  receive() external payable {}

  function enableTrading() external onlyOwner {
    require(!tradingActive, "Token launched");
    tradingActive = true;
    launchBlockNo = block.number;
    swapEnabled = true;
  }

  function changeLimits(uint256 _buyFees, uint256 _sellFees) external onlyOwner {
    buyFees = _buyFees;
    sellFees = _sellFees;
  }

  function firstLimitsChange() external onlyOwner {
    maxWallet = totalSupply();
    buyFees = 1_000;
  }

  function removeLimits() external onlyOwner {
    limitsInEffect = false;
    sellFees = 2_000;
  }

  function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner {
    _isExcludedmaxTransaction[updAds] = isEx;
  }

  function excludeFromFees(address account, bool excluded) public onlyOwner {
    _isExcludedFromFees[account] = excluded;
    emit ExcludeFromFees(account, excluded);
  }

  function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
    require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");

    _setAutomatedMarketMakerPair(pair, value);
  }

  function _setAutomatedMarketMakerPair(address pair, bool value) private {
    automatedMarketMakerPairs[pair] = value;
    emit SetAutomatedMarketMakerPair(pair, value);
  }

  function updateTreasuryWallet(address newWallet) external onlyOwner {
    emit TreasuryWalletUpdated(newWallet, treasuryWallet);
    treasuryWallet = newWallet;
  }

  function updateMarketingWallet(address newWallet) external onlyOwner {
    emit MarketingWalletUpdated(newWallet, marketingWallet);
    marketingWallet = newWallet;
  }

  function updateDevelopmentWallet(address newWallet) external onlyOwner {
    emit DevelopmentWalletUpdated(newWallet, developmentWallet);
    developmentWallet = newWallet;
  }

  function isExcludedFromFees(address account) public view returns (bool) {
    return _isExcludedFromFees[account];
  }

  function _transfer(address from, address to, uint256 amount) internal override {
    require(from != address(0), "ERC20: transfer from the zero address");
    require(to != address(0), "ERC20: transfer to the zero address");

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

    if (limitsInEffect) {
      if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) {
        if (!tradingActive) {
          require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
        }

        // BUY
        if (automatedMarketMakerPairs[from] && !_isExcludedmaxTransaction[to]) {
          require(amount <= maxTransaction, "Buy transfer amount exceeds the maxTransaction.");
          require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
        }
        // SELL
        else if (automatedMarketMakerPairs[to] && !_isExcludedmaxTransaction[from]) {
          require(amount <= maxTransaction, "Sell transfer amount exceeds the maxTransaction.");
        } else if (!_isExcludedmaxTransaction[to]) {
          require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
        }
      }
    }

    uint256 contractTokenBalance = balanceOf(address(this));

    bool canSwap = contractTokenBalance >= swapTokensAtAmount;

    if (
      canSwap &&
      swapEnabled &&
      !swapping &&
      !automatedMarketMakerPairs[from] &&
      !_isExcludedFromFees[from] &&
      !_isExcludedFromFees[to] &&
      _totalBuys > _preventSwapBefore
    ) {
      swapping = true;
      swapBack(min(contractTokenBalance, _maxSwapableTokens));
      swapping = false;
    }

    bool takeFee = !swapping;

    if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
      takeFee = false;
    }

    uint256 fees = 0;

    if (takeFee) {
      // SELL
      if (automatedMarketMakerPairs[to] && sellFees > 0) {
        fees = amount.mul(sellFees).div(10_000);
      }
      // BUY
      else if (automatedMarketMakerPairs[from] && buyFees > 0) {
        fees = amount.mul(buyFees).div(10_000);
        _totalBuys++;
      }

      if (fees > 0) {
        super._transfer(from, address(this), fees);
      }

      amount -= fees;
    }

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

  function min(uint256 a, uint256 b) private pure returns (uint256) {
    return (a > b) ? b : a;
  }

  function swapTokensForEth(uint256 tokenAmount) private {
    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 swapBack(uint256 amount) private {
    bool success;

    if (amount == 0) {
      return;
    }

    uint256 amountToSwapForETH = amount;
    swapTokensForEth(amountToSwapForETH);
    uint256 ethBalance = address(this).balance;
    // Calculate allocations
    uint256 treasuryAmount = (ethBalance * TREASURY_RATIO) / 1000;
    uint256 marketingAmount = (ethBalance * MARKETING_RATIO) / 1000;
    uint256 developmentAmount = ethBalance - treasuryAmount - marketingAmount;

    (success, ) = address(treasuryWallet).call{ value: treasuryAmount }("");
    (success, ) = address(marketingWallet).call{ value: marketingAmount }("");
    (success, ) = address(developmentWallet).call{ value: developmentAmount }("");
  }

  function changeSwapTokensAtAmount(uint256 newValue) external onlyOwner returns (bool) {
    require(newValue >= (totalSupply() * 1) / 100_000, "Swap amount < 0.001% total supply.");
    require(newValue <= (totalSupply() * 100) / 10_000, "Swap amount > 1% total supply.");
    swapTokensAtAmount = newValue;
    return true;
  }

  function changeMaxTransaction(uint256 newValue) external onlyOwner {
    require(newValue >= ((totalSupply() * 10) / 10_000), "maxTransaction < 0.1%");
    maxTransaction = newValue * (10 ** decimals());
  }

  function changeMaxWallet(uint256 newValue) external onlyOwner {
    require(newValue >= ((totalSupply() * 50) / 10_000), "maxWallet < 0.5%");
    maxWallet = newValue * (10 ** decimals());
  }

  // only use to disable contract sales if absolutely necessary (emergency use only)
  function updateSwapEnabled(bool _isEnable) external onlyOwner {
    swapEnabled = _isEnable;
  }

  function updateBuyFee(uint256 _newFee) external onlyOwner {
    require(buyFees <= 5_000);
    buyFees = _newFee;
  }

  function updateSellFee(uint256 _newFee) external onlyOwner {
    require(sellFees <= 5_000);
    sellFees = _newFee;
  }

  function manualSwap(uint256 amount) external onlyOwner {
    require(amount <= balanceOf(address(this)) && amount > 0, "Wrong amount");
    swapBack(amount);
  }

  // Withdraw ERC20 tokens that are potentially stuck in Contract
  function recoverTokensFromContract(address _tokenAddress, uint256 _amount) external onlyOwner {
    bool succ = ERC20(_tokenAddress).transfer(marketingWallet, _amount);
    require(succ, "Transfer failed");
    emit Log("We have recovered tokens from contract:", _amount);
  }

  event Log(string, uint256);

  event ExcludeFromFees(address indexed account, bool isExcluded);

  event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

  event DevelopmentWalletUpdated(address indexed newWallet, address indexed oldWallet);

  event TreasuryWalletUpdated(address indexed newWallet, address indexed oldWallet);

  event MarketingWalletUpdated(address indexed newWallet, address indexed oldWallet);

  event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity);

  event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
}

File 2 of 10 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 3 of 10 : 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 4 of 10 : 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;

    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;
            // 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 5 of 10 : IUniswapV2Factory.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.19;

interface IUniswapV2Factory {
  event PairCreated(address indexed token0, address indexed token1, address pair, uint256);

  function feeTo() external view returns (address);

  function feeToSetter() external view returns (address);

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

  function allPairs(uint256) external view returns (address pair);

  function allPairsLength() external view returns (uint256);

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

  function setFeeTo(address) external;

  function setFeeToSetter(address) external;
}

File 6 of 10 : IUniswapV2Router02.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.6.2;

import { IUniswapV2Router01 } from "./IUniswapV2Router01.sol";

interface IUniswapV2Router02 is IUniswapV2Router01 {
  function removeLiquidityETHSupportingFeeOnTransferTokens(
    address token,
    uint256 liquidity,
    uint256 amountTokenMin,
    uint256 amountETHMin,
    address to,
    uint256 deadline
  ) external returns (uint256 amountETH);

  function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
    address token,
    uint256 liquidity,
    uint256 amountTokenMin,
    uint256 amountETHMin,
    address to,
    uint256 deadline,
    bool approveMax,
    uint8 v,
    bytes32 r,
    bytes32 s
  ) external returns (uint256 amountETH);

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

File 7 of 10 : 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 8 of 10 : 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 9 of 10 : 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 10 of 10 : IUniswapV2Router01.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    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 addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, 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 quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    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": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"DevelopmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"","type":"string"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Log","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"TreasuryWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedmaxTransaction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_preventSwapBefore","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalBuys","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","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":"buyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFees","type":"uint256"},{"internalType":"uint256","name":"_sellFees","type":"uint256"}],"name":"changeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"changeMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"changeMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"changeSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"firstLimitsChange","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":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchBlockNo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"recoverTokensFromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"updateSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isEnable","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d179055600d805462ffffff19166001179055601460125560006013553480156200005057600080fd5b50604051806040016040528060088152602001674f70436c6f75647360c01b815250604051806040016040528060038152602001624f504360e81b81525081600390816200009f919062000701565b506004620000ae828262000701565b505050620000cb620000c5620003eb60201b60201c565b620003ef565b6006546001600160a01b0316620000e481600162000441565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200012f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001559190620007cd565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c99190620007cd565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000217573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023d9190620007cd565b6001600160a01b031660a08190526200025890600162000441565b60a0516200026890600162000476565b6a52b7d2dcc80cd2e40000006127106200028460648362000815565b62000290919062000835565b600a55612710620002a360648362000815565b620002af919062000835565b600c55612710620002c260328362000815565b620002ce919062000835565b600b55612710620002e160648362000815565b620002ed919062000835565b601155610bb8600f819055601055600780546001600160a01b03199081167314ad6bc1482d5fa35cc980c032baf0eb29c01b371790915560098054821673e2be3f9baa5f4f763a66efde29415399ee9c6f2b1790556008805490911673773204dd8160bf28d498a38ce95d1fdb1405d83817905562000380620003786005546001600160a01b031690565b6001620004ca565b6200038d306001620004ca565b6200039c61dead6001620004ca565b620003bb620003b36005546001600160a01b031690565b600162000441565b620003c830600162000441565b620003d761dead600162000441565b620003e3338262000533565b50506200086e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200044b620005fa565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b620004d4620005fa565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200058f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620005a3919062000858565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000586565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200068857607f821691505b602082108103620006a957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200065857600081815260208120601f850160051c81016020861015620006d85750805b601f850160051c820191505b81811015620006f957828155600101620006e4565b505050505050565b81516001600160401b038111156200071d576200071d6200065d565b62000735816200072e845462000673565b84620006af565b602080601f8311600181146200076d5760008415620007545750858301515b600019600386901b1c1916600185901b178555620006f9565b600085815260208120601f198616915b828110156200079e578886015182559484019460019091019084016200077d565b5085821015620007bd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007e057600080fd5b81516001600160a01b0381168114620007f857600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200082f576200082f620007ff565b92915050565b6000826200085357634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200082f576200082f620007ff565b60805160a0516124bc620008b0600039600081816104740152610d1901526000818161036d01528181611e5f01528181611f180152611f5401526124bc6000f3fe6080604052600436106102b25760003560e01c8063924de9b711610175578063cd73ab02116100dc578063e2f4560511610095578063f023f5731161006f578063f023f5731461087f578063f2fde38b1461089f578063f887ea40146108bf578063f8b45b05146108df57600080fd5b8063e2f4560514610833578063e4748b9e14610849578063e6be4a721461085f57600080fd5b8063cd73ab0214610778578063d024379214610798578063d615841b146107b8578063dd62ed3e146107cd578063e0f3ccf5146107ed578063e1bc33941461080357600080fd5b8063b62496f51161012e578063b62496f5146106bd578063b70143c9146106ed578063bbc0c7421461070d578063c02466681461072c578063c3f70b521461074c578063c81d92461461076257600080fd5b8063924de9b71461060857806395d89b41146106285780639a7a23d61461063d578063a457c2d71461065d578063a9059cbb1461067d578063aacebbe31461069d57600080fd5b80634a62bb651161021957806373a94292116101d257806373a942921461056a578063751039fc146105805780637571336a14610595578063809d458d146105b55780638a8c523c146105d55780638da5cb5b146105ea57600080fd5b80634a62bb65146104965780634fbee193146104b057806363ee4d1c146104e95780636ddd1713146104ff57806370a082311461051f578063715018a61461055557600080fd5b80631d933a4a1161026b5780631d933a4a146103c657806323b872dd146103e6578063313ce567146104065780633950935114610422578063467abe0a1461044257806349bd5a5e1461046257600080fd5b806306fdde03146102be578063095ea7b3146102e957806309d6bf0a146103195780630b006d60146103395780631694505e1461035b57806318160ddd146103a757600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d36108f5565b6040516102e09190611fc8565b60405180910390f35b3480156102f557600080fd5b5061030961030436600461202b565b610987565b60405190151581526020016102e0565b34801561032557600080fd5b50610309610334366004612057565b6109a1565b34801561034557600080fd5b50610359610354366004612057565b610aa5565b005b34801561036757600080fd5b5061038f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102e0565b3480156103b357600080fd5b506002545b6040519081526020016102e0565b3480156103d257600080fd5b506103596103e1366004612057565b610b2c565b3480156103f257600080fd5b50610309610401366004612070565b610b4a565b34801561041257600080fd5b50604051601281526020016102e0565b34801561042e57600080fd5b5061030961043d36600461202b565b610b6e565b34801561044e57600080fd5b5061035961045d366004612057565b610b90565b34801561046e57600080fd5b5061038f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104a257600080fd5b50600d546103099060ff1681565b3480156104bc57600080fd5b506103096104cb3660046120b1565b6001600160a01b031660009081526014602052604090205460ff1690565b3480156104f557600080fd5b506103b8600e5481565b34801561050b57600080fd5b50600d546103099062010000900460ff1681565b34801561052b57600080fd5b506103b861053a3660046120b1565b6001600160a01b031660009081526020819052604090205490565b34801561056157600080fd5b50610359610bae565b34801561057657600080fd5b506103b860135481565b34801561058c57600080fd5b50610359610bc2565b3480156105a157600080fd5b506103596105b03660046120dc565b610bdc565b3480156105c157600080fd5b506103596105d03660046120b1565b610c0f565b3480156105e157600080fd5b50610359610c74565b3480156105f657600080fd5b506005546001600160a01b031661038f565b34801561061457600080fd5b50610359610623366004612115565b610cdc565b34801561063457600080fd5b506102d3610d00565b34801561064957600080fd5b506103596106583660046120dc565b610d0f565b34801561066957600080fd5b5061030961067836600461202b565b610dcc565b34801561068957600080fd5b5061030961069836600461202b565b610e47565b3480156106a957600080fd5b506103596106b83660046120b1565b610e55565b3480156106c957600080fd5b506103096106d83660046120b1565b60166020526000908152604090205460ff1681565b3480156106f957600080fd5b50610359610708366004612057565b610eba565b34801561071957600080fd5b50600d5461030990610100900460ff1681565b34801561073857600080fd5b506103596107473660046120dc565b610f28565b34801561075857600080fd5b506103b8600a5481565b34801561076e57600080fd5b506103b860125481565b34801561078457600080fd5b50610359610793366004612057565b610f8f565b3480156107a457600080fd5b506103596107b3366004612132565b61101b565b3480156107c457600080fd5b5061035961102e565b3480156107d957600080fd5b506103b86107e8366004612154565b611044565b3480156107f957600080fd5b506103b860105481565b34801561080f57600080fd5b5061030961081e3660046120b1565b60156020526000908152604090205460ff1681565b34801561083f57600080fd5b506103b8600b5481565b34801561085557600080fd5b506103b8600f5481565b34801561086b57600080fd5b5061035961087a36600461202b565b61106f565b34801561088b57600080fd5b5061035961089a3660046120b1565b6111ac565b3480156108ab57600080fd5b506103596108ba3660046120b1565b611211565b3480156108cb57600080fd5b5060065461038f906001600160a01b031681565b3480156108eb57600080fd5b506103b8600c5481565b60606003805461090490612182565b80601f016020809104026020016040519081016040528092919081815260200182805461093090612182565b801561097d5780601f106109525761010080835404028352916020019161097d565b820191906000526020600020905b81548152906001019060200180831161096057829003601f168201915b5050505050905090565b600033610995818585611287565b60019150505b92915050565b60006109ab6113ab565b620186a06109b860025490565b6109c39060016121d2565b6109cd91906121e9565b821015610a2c5760405162461bcd60e51b815260206004820152602260248201527f5377617020616d6f756e74203c20302e3030312520746f74616c20737570706c6044820152613c9760f11b60648201526084015b60405180910390fd5b612710610a3860025490565b610a439060646121d2565b610a4d91906121e9565b821115610a9c5760405162461bcd60e51b815260206004820152601e60248201527f5377617020616d6f756e74203e20312520746f74616c20737570706c792e00006044820152606401610a23565b50600b55600190565b610aad6113ab565b612710610ab960025490565b610ac49060326121d2565b610ace91906121e9565b811015610b105760405162461bcd60e51b815260206004820152601060248201526f6d617857616c6c6574203c20302e352560801b6044820152606401610a23565b610b1c6012600a6122ef565b610b2690826121d2565b600c5550565b610b346113ab565b6113886010541115610b4557600080fd5b601055565b600033610b58858285611405565b610b6385858561147f565b506001949350505050565b600033610995818585610b818383611044565b610b8b91906122fe565b611287565b610b986113ab565b611388600f541115610ba957600080fd5b600f55565b610bb66113ab565b610bc06000611a95565b565b610bca6113ab565b600d805460ff191690556107d0601055565b610be46113ab565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b610c176113ab565b6009546040516001600160a01b03918216918316907fa982575859d7ad2f390dc12b23f7dab8bbda047f9d0140ac68344b27bf34bfb490600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b610c7c6113ab565b600d54610100900460ff1615610cc55760405162461bcd60e51b815260206004820152600e60248201526d151bdad95b881b185d5b98da195960921b6044820152606401610a23565b600d805443600e5562ffff00191662010100179055565b610ce46113ab565b600d8054911515620100000262ff000019909216919091179055565b60606004805461090490612182565b610d176113ab565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610dbe5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a23565b610dc88282611ae7565b5050565b60003381610dda8286611044565b905083811015610e3a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a23565b610b638286868403611287565b60003361099581858561147f565b610e5d6113ab565b6008546040516001600160a01b03918216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b610ec26113ab565b306000908152602081905260409020548111158015610ee15750600081115b610f1c5760405162461bcd60e51b815260206004820152600c60248201526b15dc9bdb99c8185b5bdd5b9d60a21b6044820152606401610a23565b610f2581611b3b565b50565b610f306113ab565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610f976113ab565b612710610fa360025490565b610fae90600a6121d2565b610fb891906121e9565b811015610fff5760405162461bcd60e51b81526020600482015260156024820152746d61785472616e73616374696f6e203c20302e312560581b6044820152606401610a23565b61100b6012600a6122ef565b61101590826121d2565b600a5550565b6110236113ab565b600f91909155601055565b6110366113ab565b600254600c556103e8600f55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6110776113ab565b60085460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810183905260009184169063a9059cbb906044016020604051808303816000875af11580156110cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f09190612311565b9050806111315760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610a23565b604080518181526027818301527f57652068617665207265636f766572656420746f6b656e732066726f6d20636f606082015266373a3930b1ba1d60c91b60808201526020810184905290517fdd970dd9b5bfe707922155b058a407655cb18288b807e2216442bca8ad83d6b59181900360a00190a1505050565b6111b46113ab565b6007546040516001600160a01b03918216918316907f94cc1498503be9a145caf3e96f856665f29cf9b26c7179a93fbe1c1e5f56a0fd90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6112196113ab565b6001600160a01b03811661127e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a23565b610f2581611a95565b6001600160a01b0383166112e95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a23565b6001600160a01b03821661134a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a23565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610bc05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a23565b60006114118484611044565b90506000198114611479578181101561146c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a23565b6114798484848403611287565b50505050565b6001600160a01b0383166114a55760405162461bcd60e51b8152600401610a239061232e565b6001600160a01b0382166114cb5760405162461bcd60e51b8152600401610a2390612373565b806000036114e4576114df83836000611cae565b505050565b600d5460ff161561184e576005546001600160a01b0384811691161480159061151b57506005546001600160a01b03838116911614155b801561152f57506001600160a01b03821615155b801561154657506001600160a01b03821661dead14155b801561155c5750600654600160a01b900460ff16155b1561184e57600d54610100900460ff166115f4576001600160a01b03831660009081526014602052604090205460ff16806115af57506001600160a01b03821660009081526014602052604090205460ff165b6115f45760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a23565b6001600160a01b03831660009081526016602052604090205460ff16801561163557506001600160a01b03821660009081526015602052604090205460ff16155b1561171357600a548111156116a45760405162461bcd60e51b815260206004820152602f60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526e36b0bc2a3930b739b0b1ba34b7b71760891b6064820152608401610a23565b600c546001600160a01b0383166000908152602081905260409020546116ca90836122fe565b111561170e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a23565b61184e565b6001600160a01b03821660009081526016602052604090205460ff16801561175457506001600160a01b03831660009081526015602052604090205460ff16155b156117c457600a5481111561170e5760405162461bcd60e51b815260206004820152603060248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526f1036b0bc2a3930b739b0b1ba34b7b71760811b6064820152608401610a23565b6001600160a01b03821660009081526015602052604090205460ff1661184e57600c546001600160a01b03831660009081526020819052604090205461180a90836122fe565b111561184e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a23565b30600090815260208190526040902054600b548110801590819061187a5750600d5462010000900460ff165b80156118905750600654600160a01b900460ff16155b80156118b557506001600160a01b03851660009081526016602052604090205460ff16155b80156118da57506001600160a01b03851660009081526014602052604090205460ff16155b80156118ff57506001600160a01b03841660009081526014602052604090205460ff16155b801561190e5750601254601354115b1561194b576006805460ff60a01b1916600160a01b17905560115461193d90611938908490611dd8565b611b3b565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526014602052604090205460ff600160a01b90920482161591168061199957506001600160a01b03851660009081526014602052604090205460ff165b156119a2575060005b60008115611a81576001600160a01b03861660009081526016602052604090205460ff1680156119d457506000601054115b15611a01576119fa6127106119f460105488611df090919063ffffffff16565b90611dfc565b9050611a63565b6001600160a01b03871660009081526016602052604090205460ff168015611a2b57506000600f54115b15611a6357611a4b6127106119f4600f5488611df090919063ffffffff16565b601380549192506000611a5d836123b6565b91905055505b8015611a7457611a74873083611cae565b611a7e81866123cf565b94505b611a8c878787611cae565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600081600003611b49575050565b81611b5381611e08565b4760006103e8611b65610190846121d2565b611b6f91906121e9565b905060006103e8611b82610190856121d2565b611b8c91906121e9565b9050600081611b9b84866123cf565b611ba591906123cf565b6009546040519192506001600160a01b0316908490600081818185875af1925050503d8060008114611bf3576040519150601f19603f3d011682016040523d82523d6000602084013e611bf8565b606091505b50506008546040519197506001600160a01b0316908390600081818185875af1925050503d8060008114611c48576040519150601f19603f3d011682016040523d82523d6000602084013e611c4d565b606091505b50506007546040519197506001600160a01b0316908290600081818185875af1925050503d8060008114611c9d576040519150601f19603f3d011682016040523d82523d6000602084013e611ca2565b606091505b50505050505050505050565b6001600160a01b038316611cd45760405162461bcd60e51b8152600401610a239061232e565b6001600160a01b038216611cfa5760405162461bcd60e51b8152600401610a2390612373565b6001600160a01b03831660009081526020819052604090205481811015611d725760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a23565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611479565b6000818311611de75782611de9565b815b9392505050565b6000611de982846121d2565b6000611de982846121e9565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e3d57611e3d6123e2565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ebb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611edf91906123f8565b81600181518110611ef257611ef26123e2565b60200260200101906001600160a01b031690816001600160a01b031681525050611f3d307f000000000000000000000000000000000000000000000000000000000000000084611287565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f92908590600090869030904290600401612415565b600060405180830381600087803b158015611fac57600080fd5b505af1158015611fc0573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611ff557858101830151858201604001528201611fd9565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610f2557600080fd5b6000806040838503121561203e57600080fd5b823561204981612016565b946020939093013593505050565b60006020828403121561206957600080fd5b5035919050565b60008060006060848603121561208557600080fd5b833561209081612016565b925060208401356120a081612016565b929592945050506040919091013590565b6000602082840312156120c357600080fd5b8135611de981612016565b8015158114610f2557600080fd5b600080604083850312156120ef57600080fd5b82356120fa81612016565b9150602083013561210a816120ce565b809150509250929050565b60006020828403121561212757600080fd5b8135611de9816120ce565b6000806040838503121561214557600080fd5b50508035926020909101359150565b6000806040838503121561216757600080fd5b823561217281612016565b9150602083013561210a81612016565b600181811c9082168061219657607f821691505b6020821081036121b657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761099b5761099b6121bc565b60008261220657634e487b7160e01b600052601260045260246000fd5b500490565b600181815b8085111561224657816000190482111561222c5761222c6121bc565b8085161561223957918102915b93841c9390800290612210565b509250929050565b60008261225d5750600161099b565b8161226a5750600061099b565b8160018114612280576002811461228a576122a6565b600191505061099b565b60ff84111561229b5761229b6121bc565b50506001821b61099b565b5060208310610133831016604e8410600b84101617156122c9575081810a61099b565b6122d3838361220b565b80600019048211156122e7576122e76121bc565b029392505050565b6000611de960ff84168361224e565b8082018082111561099b5761099b6121bc565b60006020828403121561232357600080fd5b8151611de9816120ce565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000600182016123c8576123c86121bc565b5060010190565b8181038181111561099b5761099b6121bc565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561240a57600080fd5b8151611de981612016565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124655784516001600160a01b031683529383019391830191600101612440565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212204168a636d70e98ee5caa22fcb2ae616ca651132e5943647ee0013e75a4a0e6df64736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102b25760003560e01c8063924de9b711610175578063cd73ab02116100dc578063e2f4560511610095578063f023f5731161006f578063f023f5731461087f578063f2fde38b1461089f578063f887ea40146108bf578063f8b45b05146108df57600080fd5b8063e2f4560514610833578063e4748b9e14610849578063e6be4a721461085f57600080fd5b8063cd73ab0214610778578063d024379214610798578063d615841b146107b8578063dd62ed3e146107cd578063e0f3ccf5146107ed578063e1bc33941461080357600080fd5b8063b62496f51161012e578063b62496f5146106bd578063b70143c9146106ed578063bbc0c7421461070d578063c02466681461072c578063c3f70b521461074c578063c81d92461461076257600080fd5b8063924de9b71461060857806395d89b41146106285780639a7a23d61461063d578063a457c2d71461065d578063a9059cbb1461067d578063aacebbe31461069d57600080fd5b80634a62bb651161021957806373a94292116101d257806373a942921461056a578063751039fc146105805780637571336a14610595578063809d458d146105b55780638a8c523c146105d55780638da5cb5b146105ea57600080fd5b80634a62bb65146104965780634fbee193146104b057806363ee4d1c146104e95780636ddd1713146104ff57806370a082311461051f578063715018a61461055557600080fd5b80631d933a4a1161026b5780631d933a4a146103c657806323b872dd146103e6578063313ce567146104065780633950935114610422578063467abe0a1461044257806349bd5a5e1461046257600080fd5b806306fdde03146102be578063095ea7b3146102e957806309d6bf0a146103195780630b006d60146103395780631694505e1461035b57806318160ddd146103a757600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d36108f5565b6040516102e09190611fc8565b60405180910390f35b3480156102f557600080fd5b5061030961030436600461202b565b610987565b60405190151581526020016102e0565b34801561032557600080fd5b50610309610334366004612057565b6109a1565b34801561034557600080fd5b50610359610354366004612057565b610aa5565b005b34801561036757600080fd5b5061038f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102e0565b3480156103b357600080fd5b506002545b6040519081526020016102e0565b3480156103d257600080fd5b506103596103e1366004612057565b610b2c565b3480156103f257600080fd5b50610309610401366004612070565b610b4a565b34801561041257600080fd5b50604051601281526020016102e0565b34801561042e57600080fd5b5061030961043d36600461202b565b610b6e565b34801561044e57600080fd5b5061035961045d366004612057565b610b90565b34801561046e57600080fd5b5061038f7f000000000000000000000000c046b2e3542427d07f511a3a014cda9d471eda3a81565b3480156104a257600080fd5b50600d546103099060ff1681565b3480156104bc57600080fd5b506103096104cb3660046120b1565b6001600160a01b031660009081526014602052604090205460ff1690565b3480156104f557600080fd5b506103b8600e5481565b34801561050b57600080fd5b50600d546103099062010000900460ff1681565b34801561052b57600080fd5b506103b861053a3660046120b1565b6001600160a01b031660009081526020819052604090205490565b34801561056157600080fd5b50610359610bae565b34801561057657600080fd5b506103b860135481565b34801561058c57600080fd5b50610359610bc2565b3480156105a157600080fd5b506103596105b03660046120dc565b610bdc565b3480156105c157600080fd5b506103596105d03660046120b1565b610c0f565b3480156105e157600080fd5b50610359610c74565b3480156105f657600080fd5b506005546001600160a01b031661038f565b34801561061457600080fd5b50610359610623366004612115565b610cdc565b34801561063457600080fd5b506102d3610d00565b34801561064957600080fd5b506103596106583660046120dc565b610d0f565b34801561066957600080fd5b5061030961067836600461202b565b610dcc565b34801561068957600080fd5b5061030961069836600461202b565b610e47565b3480156106a957600080fd5b506103596106b83660046120b1565b610e55565b3480156106c957600080fd5b506103096106d83660046120b1565b60166020526000908152604090205460ff1681565b3480156106f957600080fd5b50610359610708366004612057565b610eba565b34801561071957600080fd5b50600d5461030990610100900460ff1681565b34801561073857600080fd5b506103596107473660046120dc565b610f28565b34801561075857600080fd5b506103b8600a5481565b34801561076e57600080fd5b506103b860125481565b34801561078457600080fd5b50610359610793366004612057565b610f8f565b3480156107a457600080fd5b506103596107b3366004612132565b61101b565b3480156107c457600080fd5b5061035961102e565b3480156107d957600080fd5b506103b86107e8366004612154565b611044565b3480156107f957600080fd5b506103b860105481565b34801561080f57600080fd5b5061030961081e3660046120b1565b60156020526000908152604090205460ff1681565b34801561083f57600080fd5b506103b8600b5481565b34801561085557600080fd5b506103b8600f5481565b34801561086b57600080fd5b5061035961087a36600461202b565b61106f565b34801561088b57600080fd5b5061035961089a3660046120b1565b6111ac565b3480156108ab57600080fd5b506103596108ba3660046120b1565b611211565b3480156108cb57600080fd5b5060065461038f906001600160a01b031681565b3480156108eb57600080fd5b506103b8600c5481565b60606003805461090490612182565b80601f016020809104026020016040519081016040528092919081815260200182805461093090612182565b801561097d5780601f106109525761010080835404028352916020019161097d565b820191906000526020600020905b81548152906001019060200180831161096057829003601f168201915b5050505050905090565b600033610995818585611287565b60019150505b92915050565b60006109ab6113ab565b620186a06109b860025490565b6109c39060016121d2565b6109cd91906121e9565b821015610a2c5760405162461bcd60e51b815260206004820152602260248201527f5377617020616d6f756e74203c20302e3030312520746f74616c20737570706c6044820152613c9760f11b60648201526084015b60405180910390fd5b612710610a3860025490565b610a439060646121d2565b610a4d91906121e9565b821115610a9c5760405162461bcd60e51b815260206004820152601e60248201527f5377617020616d6f756e74203e20312520746f74616c20737570706c792e00006044820152606401610a23565b50600b55600190565b610aad6113ab565b612710610ab960025490565b610ac49060326121d2565b610ace91906121e9565b811015610b105760405162461bcd60e51b815260206004820152601060248201526f6d617857616c6c6574203c20302e352560801b6044820152606401610a23565b610b1c6012600a6122ef565b610b2690826121d2565b600c5550565b610b346113ab565b6113886010541115610b4557600080fd5b601055565b600033610b58858285611405565b610b6385858561147f565b506001949350505050565b600033610995818585610b818383611044565b610b8b91906122fe565b611287565b610b986113ab565b611388600f541115610ba957600080fd5b600f55565b610bb66113ab565b610bc06000611a95565b565b610bca6113ab565b600d805460ff191690556107d0601055565b610be46113ab565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b610c176113ab565b6009546040516001600160a01b03918216918316907fa982575859d7ad2f390dc12b23f7dab8bbda047f9d0140ac68344b27bf34bfb490600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b610c7c6113ab565b600d54610100900460ff1615610cc55760405162461bcd60e51b815260206004820152600e60248201526d151bdad95b881b185d5b98da195960921b6044820152606401610a23565b600d805443600e5562ffff00191662010100179055565b610ce46113ab565b600d8054911515620100000262ff000019909216919091179055565b60606004805461090490612182565b610d176113ab565b7f000000000000000000000000c046b2e3542427d07f511a3a014cda9d471eda3a6001600160a01b0316826001600160a01b031603610dbe5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a23565b610dc88282611ae7565b5050565b60003381610dda8286611044565b905083811015610e3a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a23565b610b638286868403611287565b60003361099581858561147f565b610e5d6113ab565b6008546040516001600160a01b03918216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b610ec26113ab565b306000908152602081905260409020548111158015610ee15750600081115b610f1c5760405162461bcd60e51b815260206004820152600c60248201526b15dc9bdb99c8185b5bdd5b9d60a21b6044820152606401610a23565b610f2581611b3b565b50565b610f306113ab565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610f976113ab565b612710610fa360025490565b610fae90600a6121d2565b610fb891906121e9565b811015610fff5760405162461bcd60e51b81526020600482015260156024820152746d61785472616e73616374696f6e203c20302e312560581b6044820152606401610a23565b61100b6012600a6122ef565b61101590826121d2565b600a5550565b6110236113ab565b600f91909155601055565b6110366113ab565b600254600c556103e8600f55565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6110776113ab565b60085460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810183905260009184169063a9059cbb906044016020604051808303816000875af11580156110cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f09190612311565b9050806111315760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610a23565b604080518181526027818301527f57652068617665207265636f766572656420746f6b656e732066726f6d20636f606082015266373a3930b1ba1d60c91b60808201526020810184905290517fdd970dd9b5bfe707922155b058a407655cb18288b807e2216442bca8ad83d6b59181900360a00190a1505050565b6111b46113ab565b6007546040516001600160a01b03918216918316907f94cc1498503be9a145caf3e96f856665f29cf9b26c7179a93fbe1c1e5f56a0fd90600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6112196113ab565b6001600160a01b03811661127e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a23565b610f2581611a95565b6001600160a01b0383166112e95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a23565b6001600160a01b03821661134a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a23565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610bc05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a23565b60006114118484611044565b90506000198114611479578181101561146c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a23565b6114798484848403611287565b50505050565b6001600160a01b0383166114a55760405162461bcd60e51b8152600401610a239061232e565b6001600160a01b0382166114cb5760405162461bcd60e51b8152600401610a2390612373565b806000036114e4576114df83836000611cae565b505050565b600d5460ff161561184e576005546001600160a01b0384811691161480159061151b57506005546001600160a01b03838116911614155b801561152f57506001600160a01b03821615155b801561154657506001600160a01b03821661dead14155b801561155c5750600654600160a01b900460ff16155b1561184e57600d54610100900460ff166115f4576001600160a01b03831660009081526014602052604090205460ff16806115af57506001600160a01b03821660009081526014602052604090205460ff165b6115f45760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a23565b6001600160a01b03831660009081526016602052604090205460ff16801561163557506001600160a01b03821660009081526015602052604090205460ff16155b1561171357600a548111156116a45760405162461bcd60e51b815260206004820152602f60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526e36b0bc2a3930b739b0b1ba34b7b71760891b6064820152608401610a23565b600c546001600160a01b0383166000908152602081905260409020546116ca90836122fe565b111561170e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a23565b61184e565b6001600160a01b03821660009081526016602052604090205460ff16801561175457506001600160a01b03831660009081526015602052604090205460ff16155b156117c457600a5481111561170e5760405162461bcd60e51b815260206004820152603060248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526f1036b0bc2a3930b739b0b1ba34b7b71760811b6064820152608401610a23565b6001600160a01b03821660009081526015602052604090205460ff1661184e57600c546001600160a01b03831660009081526020819052604090205461180a90836122fe565b111561184e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a23565b30600090815260208190526040902054600b548110801590819061187a5750600d5462010000900460ff165b80156118905750600654600160a01b900460ff16155b80156118b557506001600160a01b03851660009081526016602052604090205460ff16155b80156118da57506001600160a01b03851660009081526014602052604090205460ff16155b80156118ff57506001600160a01b03841660009081526014602052604090205460ff16155b801561190e5750601254601354115b1561194b576006805460ff60a01b1916600160a01b17905560115461193d90611938908490611dd8565b611b3b565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526014602052604090205460ff600160a01b90920482161591168061199957506001600160a01b03851660009081526014602052604090205460ff165b156119a2575060005b60008115611a81576001600160a01b03861660009081526016602052604090205460ff1680156119d457506000601054115b15611a01576119fa6127106119f460105488611df090919063ffffffff16565b90611dfc565b9050611a63565b6001600160a01b03871660009081526016602052604090205460ff168015611a2b57506000600f54115b15611a6357611a4b6127106119f4600f5488611df090919063ffffffff16565b601380549192506000611a5d836123b6565b91905055505b8015611a7457611a74873083611cae565b611a7e81866123cf565b94505b611a8c878787611cae565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b600081600003611b49575050565b81611b5381611e08565b4760006103e8611b65610190846121d2565b611b6f91906121e9565b905060006103e8611b82610190856121d2565b611b8c91906121e9565b9050600081611b9b84866123cf565b611ba591906123cf565b6009546040519192506001600160a01b0316908490600081818185875af1925050503d8060008114611bf3576040519150601f19603f3d011682016040523d82523d6000602084013e611bf8565b606091505b50506008546040519197506001600160a01b0316908390600081818185875af1925050503d8060008114611c48576040519150601f19603f3d011682016040523d82523d6000602084013e611c4d565b606091505b50506007546040519197506001600160a01b0316908290600081818185875af1925050503d8060008114611c9d576040519150601f19603f3d011682016040523d82523d6000602084013e611ca2565b606091505b50505050505050505050565b6001600160a01b038316611cd45760405162461bcd60e51b8152600401610a239061232e565b6001600160a01b038216611cfa5760405162461bcd60e51b8152600401610a2390612373565b6001600160a01b03831660009081526020819052604090205481811015611d725760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a23565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611479565b6000818311611de75782611de9565b815b9392505050565b6000611de982846121d2565b6000611de982846121e9565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e3d57611e3d6123e2565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ebb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611edf91906123f8565b81600181518110611ef257611ef26123e2565b60200260200101906001600160a01b031690816001600160a01b031681525050611f3d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611287565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f92908590600090869030904290600401612415565b600060405180830381600087803b158015611fac57600080fd5b505af1158015611fc0573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611ff557858101830151858201604001528201611fd9565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610f2557600080fd5b6000806040838503121561203e57600080fd5b823561204981612016565b946020939093013593505050565b60006020828403121561206957600080fd5b5035919050565b60008060006060848603121561208557600080fd5b833561209081612016565b925060208401356120a081612016565b929592945050506040919091013590565b6000602082840312156120c357600080fd5b8135611de981612016565b8015158114610f2557600080fd5b600080604083850312156120ef57600080fd5b82356120fa81612016565b9150602083013561210a816120ce565b809150509250929050565b60006020828403121561212757600080fd5b8135611de9816120ce565b6000806040838503121561214557600080fd5b50508035926020909101359150565b6000806040838503121561216757600080fd5b823561217281612016565b9150602083013561210a81612016565b600181811c9082168061219657607f821691505b6020821081036121b657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761099b5761099b6121bc565b60008261220657634e487b7160e01b600052601260045260246000fd5b500490565b600181815b8085111561224657816000190482111561222c5761222c6121bc565b8085161561223957918102915b93841c9390800290612210565b509250929050565b60008261225d5750600161099b565b8161226a5750600061099b565b8160018114612280576002811461228a576122a6565b600191505061099b565b60ff84111561229b5761229b6121bc565b50506001821b61099b565b5060208310610133831016604e8410600b84101617156122c9575081810a61099b565b6122d3838361220b565b80600019048211156122e7576122e76121bc565b029392505050565b6000611de960ff84168361224e565b8082018082111561099b5761099b6121bc565b60006020828403121561232357600080fd5b8151611de9816120ce565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000600182016123c8576123c86121bc565b5060010190565b8181038181111561099b5761099b6121bc565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561240a57600080fd5b8151611de981612016565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124655784516001600160a01b031683529383019391830191600101612440565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212204168a636d70e98ee5caa22fcb2ae616ca651132e5943647ee0013e75a4a0e6df64736f6c63430008130033

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.