ETH Price: $2,670.17 (+1.25%)

Token

MC PEPE (MCPEPE)
 

Overview

Max Total Supply

420,690,000,000,000 MCPEPE

Holders

31

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,526,186,879,998.080384357140036632 MCPEPE

Value
$0.00
0x5b5d39bb62e6d83ae41b239bdda18d14c80a8fda
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:
MCPEPE

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 5 : Contract.sol
// Tg: https://t.me/mcpepecoineth

// SPDX-License-Identifier: MIT

pragma solidity >=0.8.18;

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

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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

library SafeMath {
    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);
        }
    }

    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

    uint256 public buyTotalFees;
    uint256 private buyMarketingFee;
    uint256 private buyBurnFee;

    uint256 public sellTotalFees;
    uint256 private sellMarketingFee;
    uint256 private sellBurnFee;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private automatedMarketMakerPairs;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address private constant deadAddress = address(0xdead);
    address public marketingWallet;

    uint256 private tokensForMarketing;
    uint256 private tokensForBurn;

    uint256 public startingTxnAmount;
    uint256 public startingWalletSize;
    uint256 public swapTokensAtAmount;

    bool public transferDelayEnabled = true;
    bool public burgers = false;
    bool private swapping;
    bool public limited;

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

    constructor(uint256 _totalSupply) ERC20("MC PEPE", " MCPEPE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D //UniswapV2 Router
        );
        uniswapV2Router = _uniswapV2Router;

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

        uint256 _buyMarketingFee = 4;
        uint256 _buyBurnFee = 0;

        uint256 _sellMarketingFee = 4;
        uint256 _sellBurnFee = 1;

        swapTokensAtAmount = (_totalSupply * 2) / 1000; // 0.2%

        buyMarketingFee = _buyMarketingFee;
        buyBurnFee = _buyBurnFee;
        buyTotalFees = buyMarketingFee + buyBurnFee;

        sellMarketingFee = _sellMarketingFee;
        sellBurnFee = _sellBurnFee;
        sellTotalFees = sellMarketingFee + sellBurnFee;

        marketingWallet = address(0xb4c1a66dccbd254854D0EfD6F88D0eFb0e55d144);

        // exclude from paying fees
        _isExcludedFromFees[msg.sender] = true;
        _isExcludedFromFees[marketingWallet] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[address(0xdead)] = true;

        _mint(msg.sender, _totalSupply);
    }

    receive() external payable {}

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

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

    function setRule(
        bool _limited,
        uint256 _startingTxnAmount,
        uint256 _startingWalletSize,
        bool _burgers
    ) external onlyOwner {
        limited = _limited;
        burgers = _burgers;
        startingTxnAmount = _startingTxnAmount;
        startingWalletSize = _startingWalletSize;
    }

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

    function RemoveLimit() public onlyOwner {
        limited = false;
        transferDelayEnabled = false;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        if (!burgers) {
            require(
                _isExcludedFromFees[from] || _isExcludedFromFees[to],
                "Trading is not active yet. Wait for Burgers delivery"
            );
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        if (transferDelayEnabled) {
            if (
                to != owner() &&
                to != address(uniswapV2Router) &&
                to != address(uniswapV2Pair)
            ) {
                require(
                    _holderLastTransferTimestamp[to] < block.number,
                    "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                );
                _holderLastTransferTimestamp[to] = block.number;
            }
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForBurn += (fees * sellBurnFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForBurn += (fees * buyBurnFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);

        //when buy
        if (
            limited &&
            automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[to]
        ) {
            require(
                amount <= startingTxnAmount,
                "Buy transfer amount exceeds the startingTxnAmount."
            );
        }
        //when sell
        else if (
            limited &&
            automatedMarketMakerPairs[to] &&
            !_isExcludedFromFees[from]
        ) {
            require(
                amount <= startingTxnAmount,
                "Sell transfer amount exceeds the startingTxnAmount."
            );
        }

        if (
            limited &&
            to != address(uniswapV2Router) &&
            to != address(uniswapV2Pair)
        ) {
            require(
                balanceOf(to) + amount <= startingWalletSize,
                "Transfer amount exceeds the startingWalletSize."
            );
        }
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForMarketing + tokensForBurn;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        uint256 burnTokens = (contractBalance * tokensForBurn) /
            totalTokensToSwap;
        super._transfer(address(this), deadAddress, burnTokens);

        uint256 amountToSwapForETH = contractBalance.sub(burnTokens);

        swapTokensForEth(amountToSwapForETH);

        tokensForMarketing = 0;
        tokensForBurn = 0;

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }

    function removeRandomTokens(
        address random_Token_Address,
        uint256 percent_of_Tokens
    ) public returns (bool _sent) {
        require(
            random_Token_Address != address(this),
            "Cannot remove native token"
        );
        uint256 totalRandom = IERC20(random_Token_Address).balanceOf(
            address(this)
        );
        uint256 removeRandom = (totalRandom * percent_of_Tokens) / 100;
        _sent = IERC20(random_Token_Address).transfer(
            marketingWallet,
            removeRandom
        );
    }

    function withdrawStuckETH() external {
        bool success;
        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }
}

File 2 of 5 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _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 value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 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 3 of 5 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 of 5 : 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;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"inputs":[],"name":"RemoveLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burgers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"random_Token_Address","type":"address"},{"internalType":"uint256","name":"percent_of_Tokens","type":"uint256"}],"name":"removeRandomTokens","outputs":[{"internalType":"bool","name":"_sent","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"uint256","name":"_startingTxnAmount","type":"uint256"},{"internalType":"uint256","name":"_startingWalletSize","type":"uint256"},{"internalType":"bool","name":"_burgers","type":"bool"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingTxnAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526015805461ffff191660011790553480156200001f57600080fd5b506040516200262c3803806200262c83398101604081905262000042916200046a565b604051806040016040528060078152602001664d43205045504560c81b81525060405180604001604052806007815260200166204d435045504560c81b8152506000620000946200039960201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506004620000ec838262000528565b506005620000fb828262000528565b5050737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b81529051919250829163c45a0155916004808201926020929091908290030181865afa15801562000158573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017e9190620005f4565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f29190620005f4565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000240573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002669190620005f4565b6001600160a01b031660a08190526000908152600d60205260409020805460ff19166001179055600460008160016103e8620002a48760026200063c565b620002b091906200065c565b60145560078490556008839055620002c983856200067f565b600655600a829055600b819055620002e281836200067f565b600955600f80546001600160a01b03191673b4c1a66dccbd254854d0efd6f88d0efb0e55d144178155336000818152600c6020526040808220805460ff19908116600190811790925594546001600160a01b031683528183208054861682179055308352908220805485168217905561dead9091527f45117a726ea4f344045dc210793664a28d2d320b7e03f6bffdae553d24c3586c8054909316179091556200038d90876200039d565b50505050505062000695565b3390565b6001600160a01b038216620003f85760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200040c91906200067f565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000602082840312156200047d57600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004af57607f821691505b602082108103620004d057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200046557600081815260208120601f850160051c81016020861015620004ff5750805b601f850160051c820191505b8181101562000520578281556001016200050b565b505050505050565b81516001600160401b0381111562000544576200054462000484565b6200055c816200055584546200049a565b84620004d6565b602080601f8311600181146200059457600084156200057b5750858301515b600019600386901b1c1916600185901b17855562000520565b600085815260208120601f198616915b82811015620005c557888601518255948401946001909101908401620005a4565b5085821015620005e45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200060757600080fd5b81516001600160a01b03811681146200061f57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141762000656576200065662000626565b92915050565b6000826200067a57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000656576200065662000626565b60805160a051611f40620006ec6000396000818161039e0152818161100d01526114d801526000818161026001528181610fcf0152818161149a0152818161199601528181611a4f0152611a8b0152611f406000f3fe6080604052600436106101e75760003560e01c8063715018a611610102578063c876d0b911610095578063df987c9311610064578063df987c93146105b3578063e2f45605146105c9578063f2fde38b146105df578063f5648a4f146105ff57600080fd5b8063c876d0b914610544578063d082c06f1461055e578063d85ba0631461057d578063dd62ed3e1461059357600080fd5b806395d89b41116100d157806395d89b41146104cf578063a457c2d7146104e4578063a9059cbb14610504578063c02466681461052457600080fd5b8063715018a61461045b57806375f0a87414610470578063860a32ec146104905780638da5cb5b146104b157600080fd5b8063395093511161017a5780634fbee193116101495780634fbee193146103c05780635d904e2a146103f95780636a486a8e1461040f57806370a082311461042557600080fd5b8063395093511461032c5780633a3ebcdb1461034c57806342966c681461036c57806349bd5a5e1461038c57600080fd5b8063194273d9116101b6578063194273d9146102b957806323b872dd146102db5780632d53e1bd146102fb578063313ce5671461031057600080fd5b806306fdde03146101f3578063095ea7b31461021e5780631694505e1461024e57806318160ddd1461029a57600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b50610208610614565b6040516102159190611aff565b60405180910390f35b34801561022a57600080fd5b5061023e610239366004611b62565b6106a6565b6040519015158152602001610215565b34801561025a57600080fd5b506102827f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610215565b3480156102a657600080fd5b506003545b604051908152602001610215565b3480156102c557600080fd5b506102d96102d4366004611b9c565b6106c0565b005b3480156102e757600080fd5b5061023e6102f6366004611be6565b610729565b34801561030757600080fd5b506102d961074d565b34801561031c57600080fd5b5060405160128152602001610215565b34801561033857600080fd5b5061023e610347366004611b62565b610786565b34801561035857600080fd5b5061023e610367366004611b62565b6107a8565b34801561037857600080fd5b506102d9610387366004611c27565b610909565b34801561039857600080fd5b506102827f000000000000000000000000000000000000000000000000000000000000000081565b3480156103cc57600080fd5b5061023e6103db366004611c40565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561040557600080fd5b506102ab60125481565b34801561041b57600080fd5b506102ab60095481565b34801561043157600080fd5b506102ab610440366004611c40565b6001600160a01b031660009081526001602052604090205490565b34801561046757600080fd5b506102d9610916565b34801561047c57600080fd5b50600f54610282906001600160a01b031681565b34801561049c57600080fd5b5060155461023e906301000000900460ff1681565b3480156104bd57600080fd5b506000546001600160a01b0316610282565b3480156104db57600080fd5b5061020861098a565b3480156104f057600080fd5b5061023e6104ff366004611b62565b610999565b34801561051057600080fd5b5061023e61051f366004611b62565b610a14565b34801561053057600080fd5b506102d961053f366004611c5d565b610a22565b34801561055057600080fd5b5060155461023e9060ff1681565b34801561056a57600080fd5b5060155461023e90610100900460ff1681565b34801561058957600080fd5b506102ab60065481565b34801561059f57600080fd5b506102ab6105ae366004611c96565b610a77565b3480156105bf57600080fd5b506102ab60135481565b3480156105d557600080fd5b506102ab60145481565b3480156105eb57600080fd5b506102d96105fa366004611c40565b610aa2565b34801561060b57600080fd5b506102d9610b8c565b60606004805461062390611cc4565b80601f016020809104026020016040519081016040528092919081815260200182805461064f90611cc4565b801561069c5780601f106106715761010080835404028352916020019161069c565b820191906000526020600020905b81548152906001019060200180831161067f57829003601f168201915b5050505050905090565b6000336106b4818585610be4565b60019150505b92915050565b6000546001600160a01b031633146106f35760405162461bcd60e51b81526004016106ea90611cfe565b60405180910390fd5b6015805463ff00ff00191663010000009515159590950261ff001916949094176101009115159190910217909255601255601355565b600033610737858285610d09565b610742858585610d7d565b506001949350505050565b6000546001600160a01b031633146107775760405162461bcd60e51b81526004016106ea90611cfe565b6015805463ff0000ff19169055565b6000336106b48185856107998383610a77565b6107a39190611d49565b610be4565b6000306001600160a01b038416036108025760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f742072656d6f7665206e617469766520746f6b656e00000000000060448201526064016106ea565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015610849573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086d9190611d5c565b90506000606461087d8584611d75565b6108879190611d8c565b600f5460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810183905291925086169063a9059cbb906044016020604051808303816000875af11580156108dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109009190611dae565b95945050505050565b61091333826115ae565b50565b6000546001600160a01b031633146109405760405162461bcd60e51b81526004016106ea90611cfe565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606005805461062390611cc4565b600033816109a78286610a77565b905083811015610a075760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106ea565b6107428286868403610be4565b6000336106b4818585610d7d565b6000546001600160a01b03163314610a4c5760405162461bcd60e51b81526004016106ea90611cfe565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610acc5760405162461bcd60e51b81526004016106ea90611cfe565b6001600160a01b038116610b315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ea565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600f546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610bd9576040519150601f19603f3d011682016040523d82523d6000602084013e610bde565b606091505b50505050565b6001600160a01b038316610c465760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106ea565b6001600160a01b038216610ca75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106ea565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610d158484610a77565b90506000198114610bde5781811015610d705760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106ea565b610bde8484848403610be4565b6001600160a01b038316610da35760405162461bcd60e51b81526004016106ea90611dcb565b6001600160a01b038216610dc95760405162461bcd60e51b81526004016106ea90611e10565b60008111610e2b5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016106ea565b601554610100900460ff16610ee2576001600160a01b0383166000908152600c602052604090205460ff1680610e7957506001600160a01b0382166000908152600c602052604090205460ff165b610ee25760405162461bcd60e51b815260206004820152603460248201527f54726164696e67206973206e6f7420616374697665207965742e205761697420604482015273666f7220427572676572732064656c697665727960601b60648201526084016106ea565b3060009081526001602052604090205460145481108015908190610f0f575060155462010000900460ff16155b8015610f3457506001600160a01b0385166000908152600d602052604090205460ff16155b8015610f5957506001600160a01b0385166000908152600c602052604090205460ff16155b8015610f7e57506001600160a01b0384166000908152600c602052604090205460ff16155b15610fa9576015805462ff0000191662010000179055610f9c6116da565b6015805462ff0000191690555b60155460ff1615611102576000546001600160a01b0385811691161480159061100457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614155b801561104257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614155b15611102576001600160a01b0384166000908152600e602052604090205443116110e65760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016106ea565b6001600160a01b0384166000908152600e602052604090204390555b6015546001600160a01b0386166000908152600c602052604090205460ff6201000090920482161591168061114f57506001600160a01b0385166000908152600c602052604090205460ff165b15611158575060005b600081156112e3576001600160a01b0386166000908152600d602052604090205460ff16801561118a57506000600954115b15611218576111af60646111a9600954886117e390919063ffffffff16565b906117f6565b9050600954600b54826111c29190611d75565b6111cc9190611d8c565b601160008282546111dd9190611d49565b9091555050600954600a546111f29083611d75565b6111fc9190611d8c565b6010600082825461120d9190611d49565b909155506112c59050565b6001600160a01b0387166000908152600d602052604090205460ff16801561124257506000600654115b156112c55761126160646111a9600654886117e390919063ffffffff16565b9050600654600854826112749190611d75565b61127e9190611d8c565b6011600082825461128f9190611d49565b90915550506006546007546112a49083611d75565b6112ae9190611d8c565b601060008282546112bf9190611d49565b90915550505b80156112d6576112d6873083611802565b6112e08186611e53565b94505b6112ee878787611802565b6015546301000000900460ff16801561131f57506001600160a01b0387166000908152600d602052604090205460ff165b801561134457506001600160a01b0386166000908152600c602052604090205460ff16155b156113bb576012548511156113b65760405162461bcd60e51b815260206004820152603260248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527139ba30b93a34b733aa3c3720b6b7bab73a1760711b60648201526084016106ea565b611484565b6015546301000000900460ff1680156113ec57506001600160a01b0386166000908152600d602052604090205460ff165b801561141157506001600160a01b0387166000908152600c602052604090205460ff16155b15611484576012548511156114845760405162461bcd60e51b815260206004820152603360248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152721039ba30b93a34b733aa3c3720b6b7bab73a1760691b60648201526084016106ea565b6015546301000000900460ff1680156114cf57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614155b801561150d57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614155b156115a55760135485611535886001600160a01b031660009081526001602052604090205490565b61153f9190611d49565b11156115a55760405162461bcd60e51b815260206004820152602f60248201527f5472616e7366657220616d6f756e74206578636565647320746865207374617260448201526e3a34b733abb0b63632ba29b4bd329760891b60648201526084016106ea565b50505050505050565b6001600160a01b03821661160e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106ea565b6001600160a01b038216600090815260016020526040902054818110156116825760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106ea565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610cfc565b30600090815260016020526040812054905060006011546010546116fe9190611d49565b9050600082158061170d575081155b1561171757505050565b6014805461172491611d75565b83111561173b576014805461173891611d75565b92505b6000826011548561174c9190611d75565b6117569190611d8c565b90506117653061dead83611802565b60006117718583611933565b905061177c8161193f565b600060108190556011819055600f546040516001600160a01b039091169147919081818185875af1925050503d80600081146117d4576040519150601f19603f3d011682016040523d82523d6000602084013e6117d9565b606091505b5050505050505050565b60006117ef8284611d75565b9392505050565b60006117ef8284611d8c565b6001600160a01b0383166118285760405162461bcd60e51b81526004016106ea90611dcb565b6001600160a01b03821661184e5760405162461bcd60e51b81526004016106ea90611e10565b6001600160a01b038316600090815260016020526040902054818110156118c65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106ea565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906119269086815260200190565b60405180910390a3610bde565b60006117ef8284611e53565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061197457611974611e66565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119f2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a169190611e7c565b81600181518110611a2957611a29611e66565b60200260200101906001600160a01b031690816001600160a01b031681525050611a74307f000000000000000000000000000000000000000000000000000000000000000084610be4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611ac9908590600090869030904290600401611e99565b600060405180830381600087803b158015611ae357600080fd5b505af1158015611af7573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611b2c57858101830151858201604001528201611b10565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461091357600080fd5b60008060408385031215611b7557600080fd5b8235611b8081611b4d565b946020939093013593505050565b801515811461091357600080fd5b60008060008060808587031215611bb257600080fd5b8435611bbd81611b8e565b935060208501359250604085013591506060850135611bdb81611b8e565b939692955090935050565b600080600060608486031215611bfb57600080fd5b8335611c0681611b4d565b92506020840135611c1681611b4d565b929592945050506040919091013590565b600060208284031215611c3957600080fd5b5035919050565b600060208284031215611c5257600080fd5b81356117ef81611b4d565b60008060408385031215611c7057600080fd5b8235611c7b81611b4d565b91506020830135611c8b81611b8e565b809150509250929050565b60008060408385031215611ca957600080fd5b8235611cb481611b4d565b91506020830135611c8b81611b4d565b600181811c90821680611cd857607f821691505b602082108103611cf857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156106ba576106ba611d33565b600060208284031215611d6e57600080fd5b5051919050565b80820281158282048414176106ba576106ba611d33565b600082611da957634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611dc057600080fd5b81516117ef81611b8e565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156106ba576106ba611d33565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611e8e57600080fd5b81516117ef81611b4d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ee95784516001600160a01b031683529383019391830191600101611ec4565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220469c32e36456d7a9ffe20a18a28c27db8c051b810a86ce43033b66af157cb03e64736f6c6343000812003300000000000000000000000000000000000014bddab3e51a57cff87a50000000

Deployed Bytecode

0x6080604052600436106101e75760003560e01c8063715018a611610102578063c876d0b911610095578063df987c9311610064578063df987c93146105b3578063e2f45605146105c9578063f2fde38b146105df578063f5648a4f146105ff57600080fd5b8063c876d0b914610544578063d082c06f1461055e578063d85ba0631461057d578063dd62ed3e1461059357600080fd5b806395d89b41116100d157806395d89b41146104cf578063a457c2d7146104e4578063a9059cbb14610504578063c02466681461052457600080fd5b8063715018a61461045b57806375f0a87414610470578063860a32ec146104905780638da5cb5b146104b157600080fd5b8063395093511161017a5780634fbee193116101495780634fbee193146103c05780635d904e2a146103f95780636a486a8e1461040f57806370a082311461042557600080fd5b8063395093511461032c5780633a3ebcdb1461034c57806342966c681461036c57806349bd5a5e1461038c57600080fd5b8063194273d9116101b6578063194273d9146102b957806323b872dd146102db5780632d53e1bd146102fb578063313ce5671461031057600080fd5b806306fdde03146101f3578063095ea7b31461021e5780631694505e1461024e57806318160ddd1461029a57600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b50610208610614565b6040516102159190611aff565b60405180910390f35b34801561022a57600080fd5b5061023e610239366004611b62565b6106a6565b6040519015158152602001610215565b34801561025a57600080fd5b506102827f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610215565b3480156102a657600080fd5b506003545b604051908152602001610215565b3480156102c557600080fd5b506102d96102d4366004611b9c565b6106c0565b005b3480156102e757600080fd5b5061023e6102f6366004611be6565b610729565b34801561030757600080fd5b506102d961074d565b34801561031c57600080fd5b5060405160128152602001610215565b34801561033857600080fd5b5061023e610347366004611b62565b610786565b34801561035857600080fd5b5061023e610367366004611b62565b6107a8565b34801561037857600080fd5b506102d9610387366004611c27565b610909565b34801561039857600080fd5b506102827f000000000000000000000000aa955bf22fc2d03d40d653c3197dc43e506c1ae581565b3480156103cc57600080fd5b5061023e6103db366004611c40565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561040557600080fd5b506102ab60125481565b34801561041b57600080fd5b506102ab60095481565b34801561043157600080fd5b506102ab610440366004611c40565b6001600160a01b031660009081526001602052604090205490565b34801561046757600080fd5b506102d9610916565b34801561047c57600080fd5b50600f54610282906001600160a01b031681565b34801561049c57600080fd5b5060155461023e906301000000900460ff1681565b3480156104bd57600080fd5b506000546001600160a01b0316610282565b3480156104db57600080fd5b5061020861098a565b3480156104f057600080fd5b5061023e6104ff366004611b62565b610999565b34801561051057600080fd5b5061023e61051f366004611b62565b610a14565b34801561053057600080fd5b506102d961053f366004611c5d565b610a22565b34801561055057600080fd5b5060155461023e9060ff1681565b34801561056a57600080fd5b5060155461023e90610100900460ff1681565b34801561058957600080fd5b506102ab60065481565b34801561059f57600080fd5b506102ab6105ae366004611c96565b610a77565b3480156105bf57600080fd5b506102ab60135481565b3480156105d557600080fd5b506102ab60145481565b3480156105eb57600080fd5b506102d96105fa366004611c40565b610aa2565b34801561060b57600080fd5b506102d9610b8c565b60606004805461062390611cc4565b80601f016020809104026020016040519081016040528092919081815260200182805461064f90611cc4565b801561069c5780601f106106715761010080835404028352916020019161069c565b820191906000526020600020905b81548152906001019060200180831161067f57829003601f168201915b5050505050905090565b6000336106b4818585610be4565b60019150505b92915050565b6000546001600160a01b031633146106f35760405162461bcd60e51b81526004016106ea90611cfe565b60405180910390fd5b6015805463ff00ff00191663010000009515159590950261ff001916949094176101009115159190910217909255601255601355565b600033610737858285610d09565b610742858585610d7d565b506001949350505050565b6000546001600160a01b031633146107775760405162461bcd60e51b81526004016106ea90611cfe565b6015805463ff0000ff19169055565b6000336106b48185856107998383610a77565b6107a39190611d49565b610be4565b6000306001600160a01b038416036108025760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f742072656d6f7665206e617469766520746f6b656e00000000000060448201526064016106ea565b6040516370a0823160e01b81523060048201526000906001600160a01b038516906370a0823190602401602060405180830381865afa158015610849573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061086d9190611d5c565b90506000606461087d8584611d75565b6108879190611d8c565b600f5460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810183905291925086169063a9059cbb906044016020604051808303816000875af11580156108dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109009190611dae565b95945050505050565b61091333826115ae565b50565b6000546001600160a01b031633146109405760405162461bcd60e51b81526004016106ea90611cfe565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606005805461062390611cc4565b600033816109a78286610a77565b905083811015610a075760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106ea565b6107428286868403610be4565b6000336106b4818585610d7d565b6000546001600160a01b03163314610a4c5760405162461bcd60e51b81526004016106ea90611cfe565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6000546001600160a01b03163314610acc5760405162461bcd60e51b81526004016106ea90611cfe565b6001600160a01b038116610b315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ea565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600f546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610bd9576040519150601f19603f3d011682016040523d82523d6000602084013e610bde565b606091505b50505050565b6001600160a01b038316610c465760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106ea565b6001600160a01b038216610ca75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106ea565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000610d158484610a77565b90506000198114610bde5781811015610d705760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106ea565b610bde8484848403610be4565b6001600160a01b038316610da35760405162461bcd60e51b81526004016106ea90611dcb565b6001600160a01b038216610dc95760405162461bcd60e51b81526004016106ea90611e10565b60008111610e2b5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b60648201526084016106ea565b601554610100900460ff16610ee2576001600160a01b0383166000908152600c602052604090205460ff1680610e7957506001600160a01b0382166000908152600c602052604090205460ff165b610ee25760405162461bcd60e51b815260206004820152603460248201527f54726164696e67206973206e6f7420616374697665207965742e205761697420604482015273666f7220427572676572732064656c697665727960601b60648201526084016106ea565b3060009081526001602052604090205460145481108015908190610f0f575060155462010000900460ff16155b8015610f3457506001600160a01b0385166000908152600d602052604090205460ff16155b8015610f5957506001600160a01b0385166000908152600c602052604090205460ff16155b8015610f7e57506001600160a01b0384166000908152600c602052604090205460ff16155b15610fa9576015805462ff0000191662010000179055610f9c6116da565b6015805462ff0000191690555b60155460ff1615611102576000546001600160a01b0385811691161480159061100457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316846001600160a01b031614155b801561104257507f000000000000000000000000aa955bf22fc2d03d40d653c3197dc43e506c1ae56001600160a01b0316846001600160a01b031614155b15611102576001600160a01b0384166000908152600e602052604090205443116110e65760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016106ea565b6001600160a01b0384166000908152600e602052604090204390555b6015546001600160a01b0386166000908152600c602052604090205460ff6201000090920482161591168061114f57506001600160a01b0385166000908152600c602052604090205460ff165b15611158575060005b600081156112e3576001600160a01b0386166000908152600d602052604090205460ff16801561118a57506000600954115b15611218576111af60646111a9600954886117e390919063ffffffff16565b906117f6565b9050600954600b54826111c29190611d75565b6111cc9190611d8c565b601160008282546111dd9190611d49565b9091555050600954600a546111f29083611d75565b6111fc9190611d8c565b6010600082825461120d9190611d49565b909155506112c59050565b6001600160a01b0387166000908152600d602052604090205460ff16801561124257506000600654115b156112c55761126160646111a9600654886117e390919063ffffffff16565b9050600654600854826112749190611d75565b61127e9190611d8c565b6011600082825461128f9190611d49565b90915550506006546007546112a49083611d75565b6112ae9190611d8c565b601060008282546112bf9190611d49565b90915550505b80156112d6576112d6873083611802565b6112e08186611e53565b94505b6112ee878787611802565b6015546301000000900460ff16801561131f57506001600160a01b0387166000908152600d602052604090205460ff165b801561134457506001600160a01b0386166000908152600c602052604090205460ff16155b156113bb576012548511156113b65760405162461bcd60e51b815260206004820152603260248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527139ba30b93a34b733aa3c3720b6b7bab73a1760711b60648201526084016106ea565b611484565b6015546301000000900460ff1680156113ec57506001600160a01b0386166000908152600d602052604090205460ff165b801561141157506001600160a01b0387166000908152600c602052604090205460ff16155b15611484576012548511156114845760405162461bcd60e51b815260206004820152603360248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152721039ba30b93a34b733aa3c3720b6b7bab73a1760691b60648201526084016106ea565b6015546301000000900460ff1680156114cf57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316866001600160a01b031614155b801561150d57507f000000000000000000000000aa955bf22fc2d03d40d653c3197dc43e506c1ae56001600160a01b0316866001600160a01b031614155b156115a55760135485611535886001600160a01b031660009081526001602052604090205490565b61153f9190611d49565b11156115a55760405162461bcd60e51b815260206004820152602f60248201527f5472616e7366657220616d6f756e74206578636565647320746865207374617260448201526e3a34b733abb0b63632ba29b4bd329760891b60648201526084016106ea565b50505050505050565b6001600160a01b03821661160e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106ea565b6001600160a01b038216600090815260016020526040902054818110156116825760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106ea565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610cfc565b30600090815260016020526040812054905060006011546010546116fe9190611d49565b9050600082158061170d575081155b1561171757505050565b6014805461172491611d75565b83111561173b576014805461173891611d75565b92505b6000826011548561174c9190611d75565b6117569190611d8c565b90506117653061dead83611802565b60006117718583611933565b905061177c8161193f565b600060108190556011819055600f546040516001600160a01b039091169147919081818185875af1925050503d80600081146117d4576040519150601f19603f3d011682016040523d82523d6000602084013e6117d9565b606091505b5050505050505050565b60006117ef8284611d75565b9392505050565b60006117ef8284611d8c565b6001600160a01b0383166118285760405162461bcd60e51b81526004016106ea90611dcb565b6001600160a01b03821661184e5760405162461bcd60e51b81526004016106ea90611e10565b6001600160a01b038316600090815260016020526040902054818110156118c65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106ea565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906119269086815260200190565b60405180910390a3610bde565b60006117ef8284611e53565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061197457611974611e66565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119f2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a169190611e7c565b81600181518110611a2957611a29611e66565b60200260200101906001600160a01b031690816001600160a01b031681525050611a74307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610be4565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611ac9908590600090869030904290600401611e99565b600060405180830381600087803b158015611ae357600080fd5b505af1158015611af7573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611b2c57858101830151858201604001528201611b10565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461091357600080fd5b60008060408385031215611b7557600080fd5b8235611b8081611b4d565b946020939093013593505050565b801515811461091357600080fd5b60008060008060808587031215611bb257600080fd5b8435611bbd81611b8e565b935060208501359250604085013591506060850135611bdb81611b8e565b939692955090935050565b600080600060608486031215611bfb57600080fd5b8335611c0681611b4d565b92506020840135611c1681611b4d565b929592945050506040919091013590565b600060208284031215611c3957600080fd5b5035919050565b600060208284031215611c5257600080fd5b81356117ef81611b4d565b60008060408385031215611c7057600080fd5b8235611c7b81611b4d565b91506020830135611c8b81611b8e565b809150509250929050565b60008060408385031215611ca957600080fd5b8235611cb481611b4d565b91506020830135611c8b81611b4d565b600181811c90821680611cd857607f821691505b602082108103611cf857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156106ba576106ba611d33565b600060208284031215611d6e57600080fd5b5051919050565b80820281158282048414176106ba576106ba611d33565b600082611da957634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215611dc057600080fd5b81516117ef81611b8e565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156106ba576106ba611d33565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611e8e57600080fd5b81516117ef81611b4d565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ee95784516001600160a01b031683529383019391830191600101611ec4565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220469c32e36456d7a9ffe20a18a28c27db8c051b810a86ce43033b66af157cb03e64736f6c63430008120033

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

00000000000000000000000000000000000014bddab3e51a57cff87a50000000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 420690000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000014bddab3e51a57cff87a50000000


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.